From 254859ff551d0c7aa81882d8cd470c2cfc6008df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Mon, 13 Apr 2026 15:58:42 +0800 Subject: [PATCH 1/6] feat(api): support WebComponents --- .../tdesign-web-components/src/common.ts | 122 + .../src/link/defaultProps.ts | 7 + .../src/link/link.en-US.md | 19 + .../tdesign-web-components/src/link/link.md | 19 + .../tdesign-web-components/src/link/type.ts | 35 + packages/scripts/api.json | 10120 +++++++++++----- packages/scripts/config/index.js | 24 +- packages/scripts/docs/vue.js | 6 + packages/scripts/index.js | 4 +- packages/scripts/map.json | 4 + .../scripts/types/global/web-components.tpl | 47 + .../server/controllers/ComponentApi/const.ts | 3 +- 12 files changed, 7145 insertions(+), 3265 deletions(-) create mode 100644 packages/products/tdesign-web-components/src/common.ts create mode 100644 packages/products/tdesign-web-components/src/link/defaultProps.ts create mode 100644 packages/products/tdesign-web-components/src/link/link.en-US.md create mode 100644 packages/products/tdesign-web-components/src/link/link.md create mode 100644 packages/products/tdesign-web-components/src/link/type.ts create mode 100644 packages/scripts/types/global/web-components.tpl diff --git a/packages/products/tdesign-web-components/src/common.ts b/packages/products/tdesign-web-components/src/common.ts new file mode 100644 index 000000000..db9c002f7 --- /dev/null +++ b/packages/products/tdesign-web-components/src/common.ts @@ -0,0 +1,122 @@ +import { Component, VNode, WeElement } from 'omi'; + +export type TElement = T extends undefined ? WeElement : (props: T) => WeElement; +export type TNode = VNode | ((props: T) => VNode) | object | string | number | boolean | null; + +export type AttachNodeReturnValue = HTMLElement | Element | Document; +export type AttachNode = CSSSelector | ((triggerNode?: HTMLElement) => AttachNodeReturnValue); + +// 与滚动相关的容器类型,因为 document 上没有 scroll 相关属性, 因此排除 document +export type ScrollContainerElement = Window | HTMLElement; +export type ScrollContainer = (() => ScrollContainerElement) | CSSSelector; + +// 组件 TS 类型,暂定 any,可能调整为 () => JSX.Element +export type ComponentType = any; + +export type Styles = Record; + +export interface StyledProps { + className?: string; + style?: Styles; + // shadowDom内部根节点的class + innerClass?: string; + // shadowDom内部根节点的style + innerStyle?: Styles; +} + +/** + * 通用全局类型 + * */ +export type PlainObject = { [key: string]: any }; + +export type OptionData = { + label?: string; + value?: string | number; +} & PlainObject; + +export type TreeOptionData = { + children?: Array> | boolean; + /** option label content */ + label?: string | TNode; + /** option search text */ + text?: string; + /** option value */ + value?: T; + /** option node content */ + content?: string | TNode; +} & PlainObject; +/** + * 通用全局类型 + * */ +export type SizeEnum = 'small' | 'medium' | 'large'; + +export type ShapeEnum = 'circle' | 'round'; + +export type HorizontalAlignEnum = 'left' | 'center' | 'right'; + +export type VerticalAlignEnum = 'top' | 'middle' | 'bottom'; + +export type LayoutEnum = 'vertical' | 'horizontal'; + +export type ClassName = { [className: string]: any } | ClassName[] | string; + +export type CSSSelector = string; + +export interface KeysType { + value?: string; + label?: string; + disabled?: string; +} + +export interface TreeKeysType extends KeysType { + children?: string; +} + +export interface HTMLElementAttributes { + [attribute: string]: string; +} + +export interface TScroll { + /** + * 表示除可视区域外,额外渲染的行数,避免快速滚动过程中,新出现的内容来不及渲染从而出现空白 + * @default 20 + */ + bufferSize?: number; + /** + * 表示每行内容是否同一个固定高度,仅在 `scroll.type` 为 `virtual` 时有效,该属性设置为 `true` 时,可用于简化虚拟滚动内部计算逻辑,提升性能,此时则需要明确指定 `scroll.rowHeight` 属性的值 + * @default false + */ + isFixedRowHeight?: boolean; + /** + * 行高,不会给元素添加样式高度,仅作为滚动时的行高参考。一般情况不需要设置该属性。如果设置,可尽量将该属性设置为每行平均高度,从而使得滚动过程更加平滑 + */ + rowHeight?: number; + /** + * 启动虚拟滚动的阈值。为保证组件收益最大化,当数据量小于阈值 `scroll.threshold` 时,无论虚拟滚动的配置是否存在,组件内部都不会开启虚拟滚动 + * @default 100 + */ + threshold?: number; + /** + * 滚动加载类型,有两种:懒加载和虚拟滚动。
值为 `lazy` ,表示滚动时会进行懒加载,非可视区域内的内容将不会默认渲染,直到该内容可见时,才会进行渲染,并且已渲染的内容滚动到不可见时,不会被销毁;
值为`virtual`时,表示会进行虚拟滚动,无论滚动条滚动到哪个位置,同一时刻,仅渲染该可视区域内的内容,当需要展示的数据量较大时,建议开启该特性 + */ + type: 'lazy' | 'virtual'; +} + +/** + * @deprecated use TScroll instead + */ +export type InfinityScroll = TScroll; + +export interface ScrollToElementParams { + /** 跳转元素下标 */ + index?: number; + /** 跳转元素距离顶部的距离 */ + top?: number; + /** 单个元素高度非固定场景下,即 isFixedRowHeight = false。延迟设置元素位置,一般用于依赖不同高度异步渲染等场景,单位:毫秒 */ + time?: number; + behavior?: 'auto' | 'smooth'; +} + +export interface ComponentScrollToElementParams extends ScrollToElementParams { + key?: string | number; +} diff --git a/packages/products/tdesign-web-components/src/link/defaultProps.ts b/packages/products/tdesign-web-components/src/link/defaultProps.ts new file mode 100644 index 000000000..bd3d6c3db --- /dev/null +++ b/packages/products/tdesign-web-components/src/link/defaultProps.ts @@ -0,0 +1,7 @@ +/** + * 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC + * */ + +import { TdLinkProps } from './type'; + +export const linkDefaultProps: TdLinkProps = { disabled: undefined, hover: 'underline' }; diff --git a/packages/products/tdesign-web-components/src/link/link.en-US.md b/packages/products/tdesign-web-components/src/link/link.en-US.md new file mode 100644 index 000000000..b1918baf0 --- /dev/null +++ b/packages/products/tdesign-web-components/src/link/link.en-US.md @@ -0,0 +1,19 @@ +:: BASE_DOC :: + +## API + +### Link Props + +name | type | default | description | required +-- | -- | -- | -- | -- +className | String | - | className of component | N +style | Object | - | CSS(Cascading Style Sheets) | N +content | String / TNode | - | Typescript: `string \| TNode`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/common.ts) | N +disabled | Boolean | undefined | make link to be disabled | N +download | String / Boolean | - | Causes the browser to treat the linked URL as a download | N +hover | String | underline | hover link style。options: color/underline | N +href | String | - | \- | N +prefixIcon | TNode | - | Typescript: `TNode`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/common.ts) | N +suffixIcon | TNode | - | Typescript: `TNode`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/common.ts) | N +target | String | - | target is an attribute of `` | N +onClick | Function | | Typescript: `(e: MouseEvent) => void`
click event, it won't trigger when it's disabled | N diff --git a/packages/products/tdesign-web-components/src/link/link.md b/packages/products/tdesign-web-components/src/link/link.md new file mode 100644 index 000000000..d0d7055c1 --- /dev/null +++ b/packages/products/tdesign-web-components/src/link/link.md @@ -0,0 +1,19 @@ +:: BASE_DOC :: + +## API + +### Link Props + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +className | String | - | 类名 | N +style | Object | - | 样式 | N +content | String / TNode | - | 链接内容。TS 类型:`string \| TNode`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/common.ts) | N +disabled | Boolean | undefined | 禁用链接。优先级:Link.disabled > Form.disabled | N +download | String / Boolean | - | 使得浏览器将链接的 URL 视为可下载资源 | N +hover | String | underline | 链接悬浮态样式,有 文本颜色变化、添加下划线等 2 种方法。可选项:color/underline | N +href | String | - | 跳转链接 | N +prefixIcon | TNode | - | 前置图标。TS 类型:`TNode`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/common.ts) | N +suffixIcon | TNode | - | 后置图标。TS 类型:`TNode`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/common.ts) | N +target | String | - | 跳转方式,如:当前页面打开、新页面打开等,同 HTML 属性 target 含义相同 | N +onClick | Function | | TS 类型:`(e: MouseEvent) => void`
点击事件,禁用状态不会触发点击事件 | N diff --git a/packages/products/tdesign-web-components/src/link/type.ts b/packages/products/tdesign-web-components/src/link/type.ts new file mode 100644 index 000000000..76c771493 --- /dev/null +++ b/packages/products/tdesign-web-components/src/link/type.ts @@ -0,0 +1,35 @@ +/* eslint-disable */ + +/** + * 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC + * */ + +export interface TdLinkProps { + /** + * 禁用链接。优先级:Link.disabled > Form.disabled + */ + disabled?: boolean; + /** + * 使得浏览器将链接的 URL 视为可下载资源 + */ + download?: string | boolean; + /** + * 链接悬浮态样式,有 文本颜色变化、添加下划线等 2 种方法 + * @default underline + */ + hover?: 'color' | 'underline'; + /** + * 跳转链接 + * @default '' + */ + href?: string; + /** + * 跳转方式,如:当前页面打开、新页面打开等,同 HTML 属性 target 含义相同 + * @default '' + */ + target?: string; + /** + * 点击事件,禁用状态不会触发点击事件 + */ + onClick?: (e: MouseEvent) => void; +} diff --git a/packages/scripts/api.json b/packages/scripts/api.json index 260525c05..99319181f 100644 --- a/packages/scripts/api.json +++ b/packages/scripts/api.json @@ -79,6 +79,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -108,6 +109,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -118,6 +120,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -147,6 +150,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -190,6 +194,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -221,6 +226,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -233,6 +239,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -262,6 +269,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -305,6 +313,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -334,6 +343,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -344,6 +354,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -373,6 +384,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -416,6 +428,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -445,6 +458,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -521,6 +535,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -552,6 +567,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -564,6 +580,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -593,6 +610,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -635,7 +653,8 @@ "id": 434, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message", "field_category": 1, @@ -664,7 +683,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -715,7 +735,8 @@ "id": 432, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message", "field_category": 1, @@ -744,7 +765,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -754,7 +776,8 @@ "id": 260, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message", "field_category": 32, @@ -781,14 +804,16 @@ "field_category_text": "Return", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, { "id": 431, "platform_framework": [ - "1" + "1", + "4" ], "component": "$Message.close", "field_category": 1, @@ -816,7 +841,8 @@ "support_default_value": 0, "field_category_text": "Props", "platform_framework_text": [ - "Vue(PC)" + "Vue(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -826,7 +852,8 @@ "id": 448, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message.closeAll", "field_category": 1, @@ -853,7 +880,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -861,7 +889,8 @@ "id": 2883, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message.config", "field_category": 1, @@ -890,7 +919,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -933,7 +963,8 @@ "id": 446, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message.error", "field_category": 1, @@ -962,7 +993,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -1013,7 +1045,8 @@ "id": 261, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message.error", "field_category": 32, @@ -1040,7 +1073,8 @@ "field_category_text": "Return", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -1081,7 +1115,8 @@ "id": 436, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message.info", "field_category": 1, @@ -1110,7 +1145,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -1161,7 +1197,8 @@ "id": 262, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message.info", "field_category": 32, @@ -1188,7 +1225,8 @@ "field_category_text": "Return", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -1229,7 +1267,8 @@ "id": 445, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message.loading", "field_category": 1, @@ -1258,7 +1297,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -1309,7 +1349,8 @@ "id": 263, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message.loading", "field_category": 32, @@ -1336,7 +1377,8 @@ "field_category_text": "Return", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -1377,7 +1419,8 @@ "id": 444, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message.question", "field_category": 1, @@ -1406,7 +1449,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -1457,7 +1501,8 @@ "id": 264, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message.question", "field_category": 32, @@ -1484,7 +1529,8 @@ "field_category_text": "Return", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -1525,7 +1571,8 @@ "id": 443, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message.success", "field_category": 1, @@ -1554,7 +1601,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -1605,7 +1653,8 @@ "id": 265, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message.success", "field_category": 32, @@ -1632,7 +1681,8 @@ "field_category_text": "Return", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -1673,7 +1723,8 @@ "id": 442, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message.warning", "field_category": 1, @@ -1702,7 +1753,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -1753,7 +1805,8 @@ "id": 266, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Message.warning", "field_category": 32, @@ -1780,7 +1833,8 @@ "field_category_text": "Return", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -1821,7 +1875,8 @@ "id": 472, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Notification", "field_category": 1, @@ -1850,7 +1905,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -1860,7 +1916,8 @@ "id": 471, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Notification", "field_category": 1, @@ -1889,7 +1946,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -1899,7 +1957,8 @@ "id": 469, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Notification", "field_category": 32, @@ -1926,14 +1985,16 @@ "field_category_text": "Return", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, { "id": 474, "platform_framework": [ - "1" + "1", + "4" ], "component": "$Notification.close", "field_category": 1, @@ -1961,7 +2022,8 @@ "support_default_value": 0, "field_category_text": "Props", "platform_framework_text": [ - "Vue(PC)" + "Vue(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -2008,7 +2070,8 @@ "id": 2026, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Notification.closeAll", "field_category": 1, @@ -2035,7 +2098,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -2043,7 +2107,8 @@ "id": 2982, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Notification.config", "field_category": 1, @@ -2072,7 +2137,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -2115,7 +2181,8 @@ "id": 478, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Notification.error", "field_category": 1, @@ -2144,7 +2211,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -2154,7 +2222,8 @@ "id": 485, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Notification.error", "field_category": 32, @@ -2181,7 +2250,8 @@ "field_category_text": "Return", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -2222,7 +2292,8 @@ "id": 476, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Notification.info", "field_category": 1, @@ -2251,7 +2322,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -2261,7 +2333,8 @@ "id": 486, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Notification.info", "field_category": 32, @@ -2288,7 +2361,8 @@ "field_category_text": "Return", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -2329,7 +2403,8 @@ "id": 479, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Notification.success", "field_category": 1, @@ -2358,7 +2433,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -2368,7 +2444,8 @@ "id": 487, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Notification.success", "field_category": 32, @@ -2395,7 +2472,8 @@ "field_category_text": "Return", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -2436,7 +2514,8 @@ "id": 480, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Notification.warning", "field_category": 1, @@ -2465,7 +2544,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -2475,7 +2555,8 @@ "id": 488, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "$Notification.warning", "field_category": 32, @@ -2502,7 +2583,8 @@ "field_category_text": "Return", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -3627,7 +3709,8 @@ "id": 1237, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Affix", "field_category": 1, @@ -3657,7 +3740,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -3668,7 +3752,8 @@ "id": 2768, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Affix", "field_category": 1, @@ -3698,7 +3783,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -3748,7 +3834,8 @@ "id": 1236, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Affix", "field_category": 1, @@ -3777,7 +3864,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -3787,7 +3875,8 @@ "id": 1235, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Affix", "field_category": 1, @@ -3816,7 +3905,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -3826,7 +3916,8 @@ "id": 1250, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Affix", "field_category": 1, @@ -3855,7 +3946,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -3865,7 +3957,8 @@ "id": 1238, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Affix", "field_category": 2, @@ -3892,7 +3985,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -3900,7 +3994,8 @@ "id": 375, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Alert", "field_category": 1, @@ -3931,7 +4026,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -3943,7 +4039,8 @@ "id": 1750247844, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Alert", "field_category": 1, @@ -3974,7 +4071,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -4025,7 +4123,8 @@ "id": 373, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Alert", "field_category": 1, @@ -4054,7 +4153,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -4064,7 +4164,8 @@ "id": 376, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Alert", "field_category": 1, @@ -4093,7 +4194,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -4103,7 +4205,8 @@ "id": 370, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Alert", "field_category": 1, @@ -4133,7 +4236,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -4144,7 +4248,8 @@ "id": 374, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Alert", "field_category": 1, @@ -4173,7 +4278,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -4183,7 +4289,8 @@ "id": 372, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Alert", "field_category": 1, @@ -4212,7 +4319,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -4222,7 +4330,8 @@ "id": 371, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Alert", "field_category": 1, @@ -4252,7 +4361,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -4263,7 +4373,8 @@ "id": 918, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Alert", "field_category": 2, @@ -4290,7 +4401,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -4298,7 +4410,8 @@ "id": 917, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Alert", "field_category": 2, @@ -4325,7 +4438,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -4333,7 +4447,8 @@ "id": 2403, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AlertConfig", "field_category": 1, @@ -4362,7 +4477,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -4372,7 +4488,8 @@ "id": 2402, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AlertConfig", "field_category": 1, @@ -4401,7 +4518,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -4410,7 +4528,8 @@ { "id": 1263, "platform_framework": [ - "1" + "1", + "4" ], "component": "Anchor", "field_category": 1, @@ -4438,7 +4557,8 @@ "support_default_value": 0, "field_category_text": "Props", "platform_framework_text": [ - "Vue(PC)" + "Vue(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -4485,7 +4605,8 @@ "id": 190, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Anchor", "field_category": 1, @@ -4514,7 +4635,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -4524,7 +4646,8 @@ "id": 192, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Anchor", "field_category": 1, @@ -4554,7 +4677,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -4565,7 +4689,8 @@ "id": 1652, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Anchor", "field_category": 1, @@ -4594,7 +4719,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -4604,7 +4730,8 @@ "id": 1691741305, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Anchor", "field_category": 1, @@ -4633,7 +4760,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -4643,7 +4771,8 @@ "id": 193, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Anchor", "field_category": 1, @@ -4672,7 +4801,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -4682,7 +4812,8 @@ "id": 191, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Anchor", "field_category": 1, @@ -4711,7 +4842,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -4721,7 +4853,8 @@ "id": 194, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Anchor", "field_category": 2, @@ -4748,7 +4881,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -4756,7 +4890,8 @@ "id": 195, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Anchor", "field_category": 2, @@ -4783,7 +4918,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -4791,7 +4927,8 @@ "id": 2404, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AnchorConfig", "field_category": 1, @@ -4820,7 +4957,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -4830,7 +4968,8 @@ "id": 2405, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AnchorConfig", "field_category": 1, @@ -4859,7 +4998,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -4869,7 +5009,8 @@ "id": 1732006279, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AnchorItem", "field_category": 1, @@ -4898,7 +5039,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -4908,7 +5050,8 @@ "id": 196, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AnchorItem", "field_category": 1, @@ -4937,7 +5080,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -4947,7 +5091,8 @@ "id": 202, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AnchorItem", "field_category": 1, @@ -4976,7 +5121,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -4986,7 +5132,8 @@ "id": 197, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AnchorItem", "field_category": 1, @@ -5016,7 +5163,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -5027,7 +5175,8 @@ "id": 199, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AnchorTarget", "field_category": 1, @@ -5056,7 +5205,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -5066,7 +5216,8 @@ "id": 200, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AnchorTarget", "field_category": 1, @@ -5095,7 +5246,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -5105,7 +5257,8 @@ "id": 219, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Aside", "field_category": 1, @@ -5134,7 +5287,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -5417,7 +5571,8 @@ "id": 3152, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -5446,7 +5601,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -5456,7 +5612,8 @@ "id": 1715162252, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -5485,7 +5642,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -5534,7 +5692,8 @@ "id": 3151, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -5563,7 +5722,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -5612,7 +5772,8 @@ "id": 3153, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -5641,7 +5802,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -5651,7 +5813,8 @@ "id": 1736344917, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -5681,7 +5844,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -5692,7 +5856,8 @@ "id": 3158, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -5721,7 +5886,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -5731,7 +5897,8 @@ "id": 3157, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -5760,7 +5927,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -5770,7 +5938,8 @@ "id": 3165, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -5799,7 +5968,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -5809,7 +5979,8 @@ "id": 3155, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -5838,7 +6009,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -5848,7 +6020,8 @@ "id": 3163, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -5877,7 +6050,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -5887,7 +6061,8 @@ "id": 3191, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -5917,7 +6092,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -5928,7 +6104,8 @@ "id": 3190, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -5958,7 +6135,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -5969,7 +6147,8 @@ "id": 3160, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -5998,7 +6177,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -6008,7 +6188,8 @@ "id": 3154, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -6037,7 +6218,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -6047,7 +6229,8 @@ "id": 3188, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -6076,7 +6259,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -6086,7 +6270,8 @@ "id": 3177, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -6115,7 +6300,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -6125,7 +6311,8 @@ "id": 3161, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -6154,7 +6341,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -6164,7 +6352,8 @@ "id": 3156, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -6193,7 +6382,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -6203,7 +6393,8 @@ "id": 3162, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -6233,7 +6424,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -6244,7 +6436,8 @@ "id": 3174, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -6274,7 +6467,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -6285,7 +6479,8 @@ "id": 3164, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 1, @@ -6314,7 +6509,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -6324,7 +6520,8 @@ "id": 3166, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 2, @@ -6351,7 +6548,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -6359,7 +6557,8 @@ "id": 3167, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 2, @@ -6386,7 +6585,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -6394,7 +6594,8 @@ "id": 3169, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 2, @@ -6421,7 +6622,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -6429,7 +6631,8 @@ "id": 3172, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 2, @@ -6456,7 +6659,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -6464,7 +6668,8 @@ "id": 3171, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 2, @@ -6491,7 +6696,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -6499,7 +6705,8 @@ "id": 3168, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 2, @@ -6526,7 +6733,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -6534,7 +6742,8 @@ "id": 3170, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 2, @@ -6561,7 +6770,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -6569,7 +6779,8 @@ "id": 3173, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 2, @@ -6596,7 +6807,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -6604,7 +6816,8 @@ "id": 3159, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoComplete", "field_category": 64, @@ -6631,7 +6844,8 @@ "field_category_text": "", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -6639,7 +6853,8 @@ "id": 1736330829, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AutoCompleteConfig", "field_category": 1, @@ -6668,7 +6883,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -6883,7 +7099,8 @@ "id": 3293, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Avatar", "field_category": 1, @@ -6913,7 +7130,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -7011,6 +7229,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -7042,6 +7261,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -7282,7 +7502,8 @@ "id": 1715844313, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Avatar", "field_category": 2, @@ -7309,7 +7530,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -7317,7 +7539,8 @@ "id": 1715845387, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Avatar", "field_category": 2, @@ -7344,7 +7567,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -7395,7 +7619,8 @@ "id": 1715844682, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Avatar", "field_category": 2, @@ -7422,7 +7647,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -7680,6 +7906,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -7711,6 +7938,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -7818,7 +8046,8 @@ "id": 1598, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "AvatarGroup", "field_category": 1, @@ -7847,7 +8076,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -8173,7 +8403,8 @@ "id": 3029, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BackTop", "field_category": 1, @@ -8203,7 +8434,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -8253,7 +8485,8 @@ "id": 3024, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BackTop", "field_category": 1, @@ -8283,7 +8516,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -8294,7 +8528,8 @@ "id": 3328, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BackTop", "field_category": 1, @@ -8324,7 +8559,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -8335,7 +8571,8 @@ "id": 3026, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BackTop", "field_category": 1, @@ -8364,7 +8601,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -8536,7 +8774,8 @@ "id": 3025, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BackTop", "field_category": 1, @@ -8565,7 +8804,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -8614,7 +8854,8 @@ "id": 3027, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BackTop", "field_category": 1, @@ -8643,7 +8884,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -8653,7 +8895,8 @@ "id": 3330, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BackTop", "field_category": 1, @@ -8682,7 +8925,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -8731,7 +8975,8 @@ "id": 3030, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BackTop", "field_category": 1, @@ -8761,7 +9006,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -8858,7 +9104,8 @@ "id": 3329, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BackTop", "field_category": 1, @@ -8887,7 +9134,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -8940,7 +9188,8 @@ "id": 3028, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BackTop", "field_category": 1, @@ -8970,7 +9219,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -8981,7 +9231,8 @@ "id": 3022, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BackTop", "field_category": 2, @@ -9008,7 +9259,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -9319,6 +9571,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -9351,6 +9604,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -9403,6 +9657,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -9436,6 +9691,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -9715,7 +9971,8 @@ "id": 1799, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Badge", "field_category": 1, @@ -9744,7 +10001,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -9801,7 +10059,8 @@ "id": 898, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Badge", "field_category": 1, @@ -9830,7 +10089,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -10058,7 +10318,8 @@ "id": 1694262363, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -10087,7 +10348,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -10097,7 +10359,8 @@ "id": 1694267086, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -10126,7 +10389,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -10173,7 +10437,8 @@ "id": 3260, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -10203,7 +10468,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -10261,7 +10527,8 @@ "id": 2526, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -10291,7 +10558,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -10445,7 +10713,8 @@ "id": 2081, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -10474,7 +10743,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -10484,7 +10754,8 @@ "id": 1694319326, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -10513,7 +10784,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -10572,7 +10844,8 @@ "id": 2054, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -10602,7 +10875,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -10660,7 +10934,8 @@ "id": 2348, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -10689,7 +10964,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -10738,7 +11014,8 @@ "id": 2632, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -10768,7 +11045,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -10779,7 +11057,8 @@ "id": 2878, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -10809,7 +11088,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -10859,7 +11139,8 @@ "id": 2381, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -10889,7 +11170,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -10949,7 +11231,8 @@ "id": 2761, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -10979,7 +11262,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -10990,7 +11274,8 @@ "id": 326, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -11019,7 +11304,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -11029,7 +11315,8 @@ "id": 1694314241, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -11058,7 +11345,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -11068,7 +11356,8 @@ "id": 2056, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -11098,7 +11387,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -11109,7 +11399,8 @@ "id": 1690078441, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -11138,7 +11429,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -11197,7 +11489,8 @@ "id": 2278, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -11226,7 +11519,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -11279,7 +11573,8 @@ "id": 1694516888, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -11308,7 +11603,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -11367,7 +11663,8 @@ "id": 331, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -11396,7 +11693,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -11406,7 +11704,8 @@ "id": 2762, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -11436,7 +11735,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -11447,7 +11747,8 @@ "id": 2731, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -11476,7 +11777,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -11487,6 +11789,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -11520,6 +11823,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -11534,6 +11838,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -11568,6 +11873,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -11672,7 +11978,8 @@ "id": 2879, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -11701,7 +12008,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -11711,7 +12019,8 @@ "id": 2188, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -11740,7 +12049,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -11797,7 +12107,8 @@ "id": 2798, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -11826,7 +12137,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -11930,7 +12242,8 @@ "id": 322, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -11959,7 +12272,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -12012,7 +12326,8 @@ "id": 2055, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 1, @@ -12042,7 +12357,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -12100,7 +12416,8 @@ "id": 1694262856, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 2, @@ -12127,7 +12444,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -12135,7 +12453,8 @@ "id": 1694316289, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 2, @@ -12162,7 +12481,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -12248,7 +12568,8 @@ "id": 1111, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 2, @@ -12275,7 +12596,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -12283,7 +12605,8 @@ "id": 354, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 2, @@ -12310,7 +12633,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -12357,7 +12681,8 @@ "id": 355, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 2, @@ -12384,7 +12709,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -12392,7 +12718,8 @@ "id": 589, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 2, @@ -12419,7 +12746,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -12427,7 +12755,8 @@ "id": 1826, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 2, @@ -12454,7 +12783,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -12462,7 +12792,8 @@ "id": 1827, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 2, @@ -12489,7 +12820,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -12497,7 +12829,8 @@ "id": 587, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 2, @@ -12524,7 +12857,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -12532,7 +12866,8 @@ "id": 588, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 2, @@ -12559,7 +12894,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -12567,7 +12903,8 @@ "id": 2380, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 2, @@ -12594,7 +12931,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -12668,7 +13006,8 @@ "id": 591, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 2, @@ -12695,7 +13034,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -12703,7 +13043,8 @@ "id": 590, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 2, @@ -12730,7 +13071,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -12739,6 +13081,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -12768,6 +13111,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -12777,7 +13121,8 @@ "id": 3433, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTable", "field_category": 4, @@ -12804,7 +13149,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -12937,7 +13283,8 @@ "id": 801, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTableCol", "field_category": 1, @@ -12967,7 +13314,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object", @@ -13019,6 +13367,7 @@ "id": 1056, "platform_framework": [ "1", + "4", "8" ], "component": "BaseTableCol", @@ -13049,6 +13398,7 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", + "WebComponents(PC)", "Vue(Mobile)" ], "field_type_text": [ @@ -13060,7 +13410,8 @@ "id": 1267, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTableCol", "field_category": 1, @@ -13089,7 +13440,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -13199,7 +13551,8 @@ "id": 3017, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTableCol", "field_category": 1, @@ -13228,7 +13581,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -13238,7 +13592,8 @@ "id": 802, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTableCol", "field_category": 1, @@ -13269,7 +13624,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -13324,7 +13680,8 @@ "id": 2653, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTableCol", "field_category": 1, @@ -13355,7 +13712,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -13456,7 +13814,8 @@ { "id": 2275, "platform_framework": [ - "1" + "1", + "4" ], "component": "BaseTableCol", "field_category": 1, @@ -13485,7 +13844,8 @@ "support_default_value": 0, "field_category_text": "Props", "platform_framework_text": [ - "Vue(PC)" + "Vue(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -13627,7 +13987,8 @@ "id": 3012, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTableCol", "field_category": 1, @@ -13656,7 +14017,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -13666,7 +14028,8 @@ "id": 2732, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTableCol", "field_category": 1, @@ -13695,7 +14058,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -13705,7 +14069,8 @@ "id": 3219, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTableCol", "field_category": 1, @@ -13734,7 +14099,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -13744,7 +14110,8 @@ "id": 3364, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BaseTableCol", "field_category": 1, @@ -13776,7 +14143,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -13789,6 +14157,7 @@ "id": 804, "platform_framework": [ "1", + "4", "8" ], "component": "BaseTableCol", @@ -13819,6 +14188,7 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", + "WebComponents(PC)", "Vue(Mobile)" ], "field_type_text": [ @@ -13921,6 +14291,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -13950,6 +14321,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -13959,7 +14331,8 @@ "id": 1743170896, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Breadcrumb", "field_category": 1, @@ -13989,7 +14362,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -14000,7 +14374,8 @@ "id": 1743167580, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Breadcrumb", "field_category": 1, @@ -14029,7 +14404,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -14039,7 +14415,8 @@ "id": 1743167627, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Breadcrumb", "field_category": 1, @@ -14068,7 +14445,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -14078,7 +14456,8 @@ "id": 605, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Breadcrumb", "field_category": 1, @@ -14107,7 +14486,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -14117,7 +14497,8 @@ "id": 1743167656, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Breadcrumb", "field_category": 1, @@ -14146,7 +14527,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -14156,7 +14538,8 @@ "id": 722, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Breadcrumb", "field_category": 1, @@ -14185,7 +14568,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -14195,7 +14579,8 @@ "id": 223, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Breadcrumb", "field_category": 1, @@ -14225,7 +14610,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -14312,7 +14698,8 @@ "id": 1000, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BreadcrumbItem", "field_category": 1, @@ -14342,7 +14729,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -14392,7 +14780,8 @@ "id": 607, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BreadcrumbItem", "field_category": 1, @@ -14421,7 +14810,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -14431,7 +14821,8 @@ "id": 608, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BreadcrumbItem", "field_category": 1, @@ -14460,7 +14851,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -14470,7 +14862,8 @@ "id": 3185, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BreadcrumbItem", "field_category": 1, @@ -14499,7 +14892,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -14509,7 +14903,8 @@ "id": 606, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BreadcrumbItem", "field_category": 1, @@ -14538,7 +14933,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -14548,7 +14944,8 @@ "id": 226, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BreadcrumbItem", "field_category": 1, @@ -14577,7 +14974,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -14626,7 +15024,8 @@ "id": 609, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BreadcrumbItem", "field_category": 1, @@ -14655,7 +15054,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -14665,7 +15065,8 @@ "id": 224, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BreadcrumbItem", "field_category": 1, @@ -14695,7 +15096,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -14743,7 +15145,8 @@ "id": 1710248858, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "BreadcrumbItem", "field_category": 2, @@ -14770,7 +15173,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -15196,7 +15600,8 @@ "id": 1725604537, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Button", "field_category": 1, @@ -15225,7 +15630,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -15438,7 +15844,8 @@ "id": 2833, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Button", "field_category": 1, @@ -15467,7 +15874,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -15478,6 +15886,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -15509,6 +15918,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -15681,6 +16091,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16", "64" @@ -15713,6 +16124,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)", "Miniprogram" @@ -16082,7 +16494,8 @@ "id": 30, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Button", "field_category": 1, @@ -16111,7 +16524,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -16250,7 +16664,8 @@ "id": 2832, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Button", "field_category": 1, @@ -16279,7 +16694,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -16289,7 +16705,8 @@ "id": 6, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Button", "field_category": 1, @@ -16318,7 +16735,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -16372,6 +16790,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -16403,6 +16822,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -17187,7 +17607,8 @@ "id": 656, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -17217,7 +17638,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -17228,7 +17650,8 @@ "id": 657, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -17258,7 +17681,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -17316,7 +17740,8 @@ "id": 658, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -17346,7 +17771,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -17357,7 +17783,8 @@ "id": 1840, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -17386,7 +17813,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -17396,7 +17824,8 @@ "id": 647, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -17425,7 +17854,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -17478,7 +17908,8 @@ "id": 667, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -17507,7 +17938,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -17560,7 +17992,8 @@ "id": 655, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -17590,7 +18023,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -17601,7 +18035,8 @@ "id": 650, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -17630,7 +18065,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -17839,7 +18275,8 @@ "id": 645, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -17868,7 +18305,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -17878,7 +18316,8 @@ "id": 2622, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -17908,7 +18347,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -17919,7 +18359,8 @@ "id": 3193, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -17948,7 +18389,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -17995,7 +18437,8 @@ "id": 649, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -18024,7 +18467,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -18159,7 +18603,8 @@ "id": 644, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -18188,7 +18633,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -18368,7 +18814,8 @@ "id": 643, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -18399,7 +18846,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -18538,7 +18986,8 @@ "id": 1255, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -18568,7 +19017,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array", @@ -18579,7 +19029,8 @@ "id": 2621, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 1, @@ -18609,7 +19060,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -18620,7 +19072,8 @@ "id": 651, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 2, @@ -18647,7 +19100,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -18655,7 +19109,8 @@ "id": 652, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 2, @@ -18682,7 +19137,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -18690,7 +19146,8 @@ "id": 653, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 2, @@ -18717,7 +19174,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -18997,7 +19455,8 @@ "id": 654, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 2, @@ -19024,7 +19483,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -19032,7 +19492,8 @@ "id": 2036, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 2, @@ -19059,7 +19520,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -19343,7 +19805,8 @@ "id": 1707207245, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Calendar", "field_category": 4, @@ -19370,7 +19833,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -19448,7 +19912,8 @@ "id": 674, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarCell", "field_category": 1, @@ -19477,7 +19942,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -19487,7 +19953,8 @@ "id": 669, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarCell", "field_category": 1, @@ -19516,7 +19983,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -19526,7 +19994,8 @@ "id": 671, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarCell", "field_category": 1, @@ -19555,7 +20024,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -19565,7 +20035,8 @@ "id": 670, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarCell", "field_category": 1, @@ -19594,7 +20065,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -19604,7 +20076,8 @@ "id": 673, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarCell", "field_category": 1, @@ -19633,7 +20106,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -19643,7 +20117,8 @@ "id": 672, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarCell", "field_category": 1, @@ -19672,7 +20147,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -19682,7 +20158,8 @@ "id": 678, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarCell", "field_category": 16, @@ -19709,7 +20186,8 @@ "field_category_text": "Extends", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -19717,7 +20195,8 @@ "id": 1901, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarConfig", "field_category": 1, @@ -19746,7 +20225,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -19799,7 +20279,8 @@ "id": 1964, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarConfig", "field_category": 1, @@ -19828,7 +20309,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -19838,7 +20320,8 @@ "id": 1891, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarConfig", "field_category": 1, @@ -19867,7 +20350,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -19877,7 +20361,8 @@ "id": 1934, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarConfig", "field_category": 1, @@ -19906,7 +20391,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -19916,7 +20402,8 @@ "id": 1896, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarConfig", "field_category": 1, @@ -19945,7 +20432,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -19955,7 +20443,8 @@ "id": 1895, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarConfig", "field_category": 1, @@ -19984,7 +20473,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -19994,7 +20484,8 @@ "id": 1893, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarConfig", "field_category": 1, @@ -20024,7 +20515,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -20121,7 +20613,8 @@ "id": 1897, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarConfig", "field_category": 1, @@ -20150,7 +20643,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -20160,7 +20654,8 @@ "id": 1899, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarConfig", "field_category": 1, @@ -20189,7 +20684,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -20242,7 +20738,8 @@ "id": 1898, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarConfig", "field_category": 1, @@ -20271,7 +20768,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -20281,7 +20779,8 @@ "id": 1900, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarConfig", "field_category": 1, @@ -20310,7 +20809,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -20363,7 +20863,8 @@ "id": 1894, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarConfig", "field_category": 1, @@ -20392,7 +20893,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -20402,7 +20904,8 @@ "id": 1892, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarConfig", "field_category": 1, @@ -20431,7 +20934,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -20441,7 +20945,8 @@ "id": 666, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarController", "field_category": 1, @@ -20470,7 +20975,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -20480,7 +20986,8 @@ "id": 660, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarController", "field_category": 1, @@ -20509,7 +21016,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -20519,7 +21027,8 @@ "id": 662, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarController", "field_category": 1, @@ -20548,7 +21057,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -20558,7 +21068,8 @@ "id": 664, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarController", "field_category": 1, @@ -20587,7 +21098,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -20597,7 +21109,8 @@ "id": 665, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarController", "field_category": 1, @@ -20626,7 +21139,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -20636,7 +21150,8 @@ "id": 663, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CalendarController", "field_category": 1, @@ -20665,7 +21180,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -20675,7 +21191,8 @@ "id": 2030, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -20705,7 +21222,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -20716,7 +21234,8 @@ "id": 2175, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -20746,7 +21265,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -20757,7 +21277,8 @@ "id": 1755079195, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -20786,7 +21307,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -20796,7 +21318,8 @@ "id": 1755079040, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -20825,7 +21348,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -20835,7 +21359,8 @@ "id": 2028, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -20864,7 +21389,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -20913,7 +21439,8 @@ "id": 2177, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -20943,7 +21470,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -20954,7 +21482,8 @@ "id": 2031, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -20984,7 +21513,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -21034,7 +21564,8 @@ "id": 2564, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21064,7 +21595,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -21075,7 +21607,8 @@ "id": 2033, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21105,7 +21638,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -21116,7 +21650,8 @@ "id": 1755079220, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21145,7 +21680,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -21155,7 +21691,8 @@ "id": 1755079064, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21184,7 +21721,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -21194,7 +21732,8 @@ "id": 2176, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21224,7 +21763,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -21235,7 +21775,8 @@ "id": 2561, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21264,7 +21805,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -21274,7 +21816,8 @@ "id": 1755079231, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21303,7 +21846,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -21313,7 +21857,8 @@ "id": 1755079135, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21342,7 +21887,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -21352,7 +21898,8 @@ "id": 2565, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21381,7 +21928,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -21391,7 +21939,8 @@ "id": 2034, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21421,7 +21970,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -21432,7 +21982,8 @@ "id": 1701155589, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21461,7 +22012,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -21471,7 +22023,8 @@ "id": 2032, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21500,7 +22053,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -21510,7 +22064,8 @@ "id": 2029, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21539,7 +22094,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -21549,7 +22105,8 @@ "id": 2174, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21578,7 +22135,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -21588,7 +22146,8 @@ "id": 2562, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21618,7 +22177,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -21629,7 +22189,8 @@ "id": 2173, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21658,7 +22219,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -21668,7 +22230,8 @@ "id": 2027, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Card", "field_category": 1, @@ -21698,7 +22261,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -21709,7 +22273,8 @@ "id": 3300, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -21738,7 +22303,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -21748,7 +22314,8 @@ "id": 1691465578, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -21777,7 +22344,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -21787,7 +22355,8 @@ "id": 397, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -21816,7 +22385,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -21826,7 +22396,8 @@ "id": 391, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -21855,7 +22426,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -21908,7 +22480,8 @@ "id": 388, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -21937,7 +22510,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -21992,7 +22566,8 @@ "id": 1823, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22021,7 +22596,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -22031,7 +22607,8 @@ "id": 1135, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22060,7 +22637,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -22070,7 +22648,8 @@ "id": 405, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22100,7 +22679,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -22111,7 +22691,8 @@ "id": 2765, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22140,7 +22721,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -22150,7 +22732,8 @@ "id": 393, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22179,7 +22762,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -22232,7 +22816,8 @@ "id": 2805, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22261,7 +22846,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -22271,7 +22857,8 @@ "id": 382, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22300,7 +22887,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -22353,7 +22941,8 @@ "id": 3318, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22383,7 +22972,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -22394,7 +22984,8 @@ "id": 395, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22423,7 +23014,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -22585,7 +23177,8 @@ "id": 1970, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22614,7 +23207,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -22624,7 +23218,8 @@ "id": 1971, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22654,7 +23249,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -22665,7 +23261,8 @@ "id": 1187, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22694,7 +23291,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -22747,7 +23345,8 @@ "id": 1824, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22776,7 +23375,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -22786,7 +23386,8 @@ "id": 390, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22815,7 +23416,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -22950,7 +23552,8 @@ "id": 1725941069, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -22980,7 +23583,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -22991,7 +23595,8 @@ "id": 1725941091, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23021,7 +23626,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -23032,7 +23638,8 @@ "id": 386, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23061,7 +23668,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -23151,7 +23759,8 @@ "id": 398, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23180,7 +23789,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -23227,7 +23837,8 @@ "id": 2397, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23256,7 +23867,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -23266,7 +23878,8 @@ "id": 1695533113, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23295,7 +23908,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -23305,7 +23919,8 @@ "id": 2389, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23334,7 +23949,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -23344,7 +23960,8 @@ "id": 3332, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23373,7 +23990,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -23418,7 +24036,8 @@ "id": 2332, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23447,7 +24066,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -23457,7 +24077,8 @@ "id": 392, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23486,7 +24107,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -23496,7 +24118,8 @@ "id": 385, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23525,7 +24148,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -23535,7 +24159,8 @@ "id": 2903, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23564,7 +24189,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -23617,7 +24243,8 @@ "id": 3319, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23647,7 +24274,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -23658,7 +24286,8 @@ "id": 3320, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23687,7 +24316,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -23697,7 +24327,8 @@ "id": 2806, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23726,7 +24357,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -23736,7 +24368,8 @@ "id": 2807, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23765,7 +24398,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -23818,7 +24452,8 @@ "id": 2904, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23848,7 +24483,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -23904,7 +24540,8 @@ "id": 389, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23933,7 +24570,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -23943,7 +24581,8 @@ "id": 379, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -23974,7 +24613,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -24105,7 +24745,8 @@ "id": 3324, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -24135,7 +24776,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -24146,7 +24788,8 @@ "id": 396, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -24175,7 +24818,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -24185,7 +24829,8 @@ "id": 2053, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 1, @@ -24214,7 +24859,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -24267,7 +24913,8 @@ "id": 402, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 2, @@ -24294,7 +24941,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -24302,7 +24950,8 @@ "id": 400, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 2, @@ -24329,7 +24978,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -24471,7 +25121,8 @@ "id": 1744870803, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 2, @@ -24498,7 +25149,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -24576,7 +25228,8 @@ "id": 403, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 2, @@ -24603,7 +25256,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -24712,7 +25366,8 @@ "id": 2398, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 2, @@ -24739,7 +25394,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -24747,7 +25403,8 @@ "id": 404, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Cascader", "field_category": 2, @@ -24774,7 +25431,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -24825,7 +25483,8 @@ "id": 1888, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CascaderConfig", "field_category": 1, @@ -24854,7 +25513,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -24864,7 +25524,8 @@ "id": 1972, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CascaderConfig", "field_category": 1, @@ -24893,7 +25554,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -24903,7 +25565,8 @@ "id": 1890, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CascaderConfig", "field_category": 1, @@ -24932,7 +25595,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -26477,7 +27141,8 @@ "id": 1742888318, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 1, @@ -26506,7 +27171,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -26516,7 +27182,8 @@ "id": 1742888278, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 1, @@ -26545,7 +27212,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -26555,7 +27223,8 @@ "id": 1742888347, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 1, @@ -26584,7 +27253,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -26594,7 +27264,8 @@ "id": 1742888047, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 1, @@ -26623,7 +27294,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -26633,7 +27305,8 @@ "id": 1742896202, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 1, @@ -26662,7 +27335,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -26672,7 +27346,8 @@ "id": 1742888253, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 1, @@ -26701,7 +27376,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -26711,7 +27387,8 @@ "id": 1742888357, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 1, @@ -26740,7 +27417,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -26750,7 +27428,8 @@ "id": 1742888120, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 1, @@ -26779,7 +27458,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -26789,7 +27469,8 @@ "id": 1742882517, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 1, @@ -26818,7 +27499,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -26828,7 +27510,8 @@ "id": 1742888334, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 1, @@ -26857,7 +27540,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -26867,7 +27551,8 @@ "id": 1743493366, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 1, @@ -26896,7 +27581,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -26906,7 +27592,8 @@ "id": 1742888069, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 1, @@ -26935,7 +27622,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -26945,7 +27633,8 @@ "id": 1742888094, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 1, @@ -26974,7 +27663,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -26984,7 +27674,8 @@ "id": 1742888379, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 2, @@ -27013,7 +27704,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -27023,7 +27715,8 @@ "id": 1742888419, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 2, @@ -27052,7 +27745,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -27062,7 +27756,8 @@ "id": 1742888518, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Chat", "field_category": 4, @@ -27089,7 +27784,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -27097,7 +27793,8 @@ "id": 1742882297, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatAction", "field_category": 1, @@ -27126,7 +27823,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -27136,7 +27834,8 @@ "id": 1742882320, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatAction", "field_category": 1, @@ -27165,7 +27864,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -27175,7 +27875,8 @@ "id": 1742882276, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatAction", "field_category": 1, @@ -27204,7 +27905,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -27214,7 +27916,8 @@ "id": 1742882227, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatAction", "field_category": 1, @@ -27243,7 +27946,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -27253,7 +27957,8 @@ "id": 1742882371, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatAction", "field_category": 1, @@ -27282,7 +27987,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -27292,7 +27998,8 @@ "id": 1742882448, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatAction", "field_category": 2, @@ -27319,7 +28026,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -27713,7 +28421,8 @@ "id": 1742883575, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatContent", "field_category": 1, @@ -27742,7 +28451,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -27830,7 +28540,8 @@ "id": 1742883540, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatContent", "field_category": 1, @@ -27859,7 +28570,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -27982,7 +28694,8 @@ "id": 1742884968, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatInput", "field_category": 1, @@ -28011,7 +28724,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -28021,7 +28735,8 @@ "id": 1742885300, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatInput", "field_category": 1, @@ -28051,7 +28766,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -28062,7 +28778,8 @@ "id": 1742884930, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatInput", "field_category": 1, @@ -28091,7 +28808,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -28101,7 +28819,8 @@ "id": 1742884754, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatInput", "field_category": 1, @@ -28130,7 +28849,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -28140,7 +28860,8 @@ "id": 1742883827, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatInput", "field_category": 1, @@ -28169,7 +28890,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -28179,7 +28901,8 @@ "id": 1743345588, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatInput", "field_category": 1, @@ -28208,7 +28931,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -28218,7 +28942,8 @@ "id": 1743345240, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatInput", "field_category": 1, @@ -28247,7 +28972,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -28257,7 +28983,8 @@ "id": 1742885940, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatInput", "field_category": 2, @@ -28284,7 +29011,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -28292,7 +29020,8 @@ "id": 1742885911, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatInput", "field_category": 2, @@ -28319,7 +29048,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -28327,7 +29057,8 @@ "id": 1742885930, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatInput", "field_category": 2, @@ -28354,7 +29085,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -28362,7 +29094,8 @@ "id": 1742885865, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatInput", "field_category": 2, @@ -28389,7 +29122,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -28397,7 +29131,8 @@ "id": 1742885891, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatInput", "field_category": 2, @@ -28424,7 +29159,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -28432,7 +29168,8 @@ "id": 1742886989, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatItem", "field_category": 1, @@ -28462,7 +29199,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -28473,7 +29211,8 @@ "id": 1742887762, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatItem", "field_category": 1, @@ -28502,7 +29241,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -28512,7 +29252,8 @@ "id": 1742887213, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatItem", "field_category": 1, @@ -28543,7 +29284,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -28555,7 +29297,8 @@ "id": 1742887477, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatItem", "field_category": 1, @@ -28585,7 +29328,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -28596,7 +29340,8 @@ "id": 1742887654, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatItem", "field_category": 1, @@ -28626,7 +29371,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -28637,7 +29383,8 @@ "id": 1742887067, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatItem", "field_category": 1, @@ -28667,7 +29414,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -28678,7 +29426,8 @@ "id": 1742887828, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatItem", "field_category": 1, @@ -28709,7 +29458,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -28721,7 +29471,8 @@ "id": 1742887703, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatItem", "field_category": 1, @@ -28750,7 +29501,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -28760,7 +29512,8 @@ "id": 1742886870, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatItem", "field_category": 1, @@ -28789,7 +29542,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -28799,7 +29553,8 @@ "id": 1742887448, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatItem", "field_category": 1, @@ -28828,7 +29583,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -29068,7 +29824,8 @@ "id": 1742882111, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatLoading", "field_category": 1, @@ -29097,7 +29854,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -29807,7 +30565,8 @@ "id": 1742886437, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatReasoning", "field_category": 1, @@ -29836,7 +30595,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -29846,7 +30606,8 @@ "id": 1742886498, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatReasoning", "field_category": 1, @@ -29875,7 +30636,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -29885,7 +30647,8 @@ "id": 1742886303, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatReasoning", "field_category": 1, @@ -29914,7 +30677,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -29924,7 +30688,8 @@ "id": 1742886466, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatReasoning", "field_category": 1, @@ -29953,7 +30718,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -29963,7 +30729,8 @@ "id": 1742886481, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatReasoning", "field_category": 1, @@ -29992,7 +30759,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -30002,7 +30770,8 @@ "id": 1742886536, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatReasoning", "field_category": 2, @@ -30031,7 +30800,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -30361,7 +31131,8 @@ "id": 1742886190, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatSender", "field_category": 1, @@ -30391,7 +31162,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -30441,7 +31213,8 @@ "id": 1742886100, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatSender", "field_category": 1, @@ -30470,7 +31243,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -30480,7 +31254,8 @@ "id": 1742886164, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ChatSender", "field_category": 1, @@ -30510,7 +31285,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -31661,7 +32437,8 @@ "id": 1695545685, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CheckTag", "field_category": 1, @@ -31690,7 +32467,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -31785,6 +32563,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -31819,6 +32598,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -32138,7 +32918,8 @@ "id": 1695545724, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CheckTag", "field_category": 1, @@ -32167,7 +32948,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -32177,7 +32959,8 @@ "id": 1695615361, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CheckTag", "field_category": 1, @@ -32207,7 +32990,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -32261,7 +33045,8 @@ "id": 960, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CheckTag", "field_category": 2, @@ -32288,7 +33073,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -32588,7 +33374,8 @@ "id": 1695565419, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CheckTagGroup", "field_category": 1, @@ -32617,7 +33404,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -32627,7 +33415,8 @@ "id": 1695554166, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CheckTagGroup", "field_category": 1, @@ -32656,7 +33445,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -32666,7 +33456,8 @@ "id": 1695564598, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CheckTagGroup", "field_category": 1, @@ -32695,7 +33486,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -32705,7 +33497,8 @@ "id": 1695564897, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CheckTagGroup", "field_category": 1, @@ -32734,7 +33527,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -32744,7 +33538,8 @@ "id": 1695554043, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CheckTagGroup", "field_category": 1, @@ -32773,7 +33568,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -32783,7 +33579,8 @@ "id": 1695564191, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CheckTagGroup", "field_category": 2, @@ -32810,7 +33607,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -32952,6 +33750,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16", "64" @@ -32984,6 +33783,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)", "Miniprogram" @@ -33430,7 +34230,8 @@ "id": 3529, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Checkbox", "field_category": 1, @@ -33459,7 +34260,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -33729,7 +34531,8 @@ "id": 1707208468, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Checkbox", "field_category": 1, @@ -33758,7 +34561,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -33854,6 +34658,7 @@ "id": 1232, "platform_framework": [ "1", + "4", "8" ], "component": "Checkbox", @@ -33881,6 +34686,7 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", + "WebComponents(PC)", "Vue(Mobile)" ], "field_type_text": [] @@ -34331,7 +35137,8 @@ "id": 1689498234, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "CheckboxGroup", "field_category": 1, @@ -34360,7 +35167,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -34465,6 +35273,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -34496,6 +35305,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -34631,6 +35441,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16", "64" @@ -34663,6 +35474,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)", "Miniprogram" @@ -34711,7 +35523,8 @@ { "id": 152, "platform_framework": [ - "1" + "1", + "4" ], "component": "CheckboxGroup", "field_category": 2, @@ -34737,7 +35550,8 @@ "support_default_value": 0, "field_category_text": "Events", "platform_framework_text": [ - "Vue(PC)" + "Vue(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -34957,7 +35771,8 @@ "id": 203, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Col", "field_category": 1, @@ -34987,7 +35802,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -34998,7 +35814,8 @@ "id": 213, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Col", "field_category": 1, @@ -35028,7 +35845,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number", @@ -35039,7 +35857,8 @@ "id": 212, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Col", "field_category": 1, @@ -35069,7 +35888,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number", @@ -35080,7 +35900,8 @@ "id": 204, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Col", "field_category": 1, @@ -35109,7 +35930,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -35164,7 +35986,8 @@ "id": 205, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Col", "field_category": 1, @@ -35193,7 +36016,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -35203,7 +36027,8 @@ "id": 206, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Col", "field_category": 1, @@ -35232,7 +36057,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -35242,7 +36068,8 @@ "id": 207, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Col", "field_category": 1, @@ -35271,7 +36098,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -35281,7 +36109,8 @@ "id": 211, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Col", "field_category": 1, @@ -35311,7 +36140,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number", @@ -35322,7 +36152,8 @@ "id": 208, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Col", "field_category": 1, @@ -35351,7 +36182,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -35406,7 +36238,8 @@ "id": 209, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Col", "field_category": 1, @@ -35435,7 +36268,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -35445,7 +36279,8 @@ "id": 214, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Col", "field_category": 1, @@ -35475,7 +36310,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number", @@ -35486,7 +36322,8 @@ "id": 210, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Col", "field_category": 1, @@ -35516,7 +36353,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number", @@ -35527,7 +36365,8 @@ "id": 215, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Col", "field_category": 1, @@ -35557,7 +36396,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number", @@ -35603,7 +36443,8 @@ "id": 2384, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Collapse", "field_category": 1, @@ -35632,7 +36473,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -35776,6 +36618,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -35808,6 +36651,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -35859,7 +36703,8 @@ "id": 2364, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Collapse", "field_category": 1, @@ -35888,7 +36733,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -35945,7 +36791,8 @@ "id": 2360, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Collapse", "field_category": 1, @@ -35974,7 +36821,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -36028,6 +36876,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16", "64" @@ -36060,6 +36909,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)", "Miniprogram" @@ -36319,6 +37169,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -36350,6 +37201,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -36906,7 +37758,8 @@ "id": 1715162325, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPicker", "field_category": 1, @@ -36935,7 +37788,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -36946,6 +37800,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -36977,6 +37832,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -36988,7 +37844,8 @@ "id": 2341, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPicker", "field_category": 1, @@ -37017,7 +37874,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -37070,7 +37928,8 @@ "id": 2119, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPicker", "field_category": 1, @@ -37099,7 +37958,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -37157,6 +38017,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16", "64" @@ -37189,6 +38050,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)", "Miniprogram" @@ -37369,7 +38231,8 @@ "id": 2344, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPicker", "field_category": 1, @@ -37398,7 +38261,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -37408,7 +38272,8 @@ "id": 2122, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPicker", "field_category": 1, @@ -37437,7 +38302,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -37486,7 +38352,8 @@ "id": 2342, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPicker", "field_category": 1, @@ -37515,7 +38382,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -37525,7 +38393,8 @@ "id": 2345, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPicker", "field_category": 1, @@ -37554,7 +38423,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -37564,7 +38434,8 @@ "id": 3206, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPicker", "field_category": 1, @@ -37593,7 +38464,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -37603,7 +38475,8 @@ "id": 1715691745, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPicker", "field_category": 1, @@ -37632,7 +38505,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -37771,7 +38645,8 @@ "id": 2118, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPicker", "field_category": 1, @@ -37800,7 +38675,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -37892,7 +38768,8 @@ "id": 2126, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPicker", "field_category": 2, @@ -37919,7 +38796,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -37966,7 +38844,8 @@ "id": 1741675522, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPicker", "field_category": 2, @@ -37993,7 +38872,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -38036,7 +38916,8 @@ "id": 2125, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPicker", "field_category": 2, @@ -38063,7 +38944,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -38110,7 +38992,8 @@ "id": 2424, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPicker", "field_category": 2, @@ -38137,7 +39020,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -38145,7 +39029,8 @@ "id": 2423, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerConfig", "field_category": 1, @@ -38174,7 +39059,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -38184,7 +39070,8 @@ "id": 2415, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerConfig", "field_category": 1, @@ -38213,7 +39100,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -38223,7 +39111,8 @@ "id": 2416, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerConfig", "field_category": 1, @@ -38252,7 +39141,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -38262,7 +39152,8 @@ "id": 1748927769, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerPanel", "field_category": 1, @@ -38291,7 +39182,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -38301,7 +39193,8 @@ "id": 1748927779, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerPanel", "field_category": 1, @@ -38330,7 +39223,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -38340,7 +39234,8 @@ "id": 1748927789, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerPanel", "field_category": 1, @@ -38369,7 +39264,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -38379,7 +39275,8 @@ "id": 1748927798, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerPanel", "field_category": 1, @@ -38408,7 +39305,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -38418,7 +39316,8 @@ "id": 1748927813, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerPanel", "field_category": 1, @@ -38447,7 +39346,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -38457,7 +39357,8 @@ "id": 1748927824, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerPanel", "field_category": 1, @@ -38486,7 +39387,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -38496,7 +39398,8 @@ "id": 1748927833, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerPanel", "field_category": 1, @@ -38525,7 +39428,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -38535,7 +39439,8 @@ "id": 1748927987, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerPanel", "field_category": 1, @@ -38564,7 +39469,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -38574,7 +39480,8 @@ "id": 1748927871, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerPanel", "field_category": 1, @@ -38603,7 +39510,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -38613,7 +39521,8 @@ "id": 1748927879, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerPanel", "field_category": 2, @@ -38640,7 +39549,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -38648,7 +39558,8 @@ "id": 1748927896, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerPanel", "field_category": 2, @@ -38675,7 +39586,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -38683,7 +39595,8 @@ "id": 1748927906, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ColorPickerPanel", "field_category": 2, @@ -38710,7 +39623,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -38718,7 +39632,8 @@ "id": 1640, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Comment", "field_category": 1, @@ -38747,7 +39662,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -38757,7 +39673,8 @@ "id": 1637, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Comment", "field_category": 1, @@ -38787,7 +39704,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -38798,7 +39716,8 @@ "id": 1636, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Comment", "field_category": 1, @@ -38829,7 +39748,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -38841,7 +39761,8 @@ "id": 1639, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Comment", "field_category": 1, @@ -38871,7 +39792,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -38882,7 +39804,8 @@ "id": 1638, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Comment", "field_category": 1, @@ -38912,7 +39835,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -38923,7 +39847,8 @@ "id": 1641, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Comment", "field_category": 1, @@ -38953,7 +39878,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -38964,7 +39890,8 @@ "id": 1802, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Comment", "field_category": 1, @@ -38994,7 +39921,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -39130,7 +40058,8 @@ "id": 1740540122, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Content", "field_category": 1, @@ -39160,7 +40089,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -39813,7 +40743,8 @@ "id": 1009, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -39842,7 +40773,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -39852,7 +40784,8 @@ "id": 1715162144, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -39881,7 +40814,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -39930,7 +40864,8 @@ "id": 1002, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -39959,7 +40894,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -40008,7 +40944,8 @@ "id": 1015, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40039,7 +40976,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object", @@ -40051,7 +40989,8 @@ "id": 1731052685, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40080,7 +41019,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -40129,7 +41069,8 @@ "id": 1205, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40158,7 +41099,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -40168,7 +41110,8 @@ "id": 1962, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40197,7 +41140,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -40207,7 +41151,8 @@ "id": 1011, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40236,7 +41181,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -40246,7 +41192,8 @@ "id": 1223, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40275,7 +41222,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -40285,7 +41233,8 @@ "id": 1715406453, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40315,7 +41264,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -40326,7 +41276,8 @@ "id": 1005, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40355,7 +41306,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -40365,7 +41317,8 @@ "id": 1730291580, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40394,7 +41347,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -40404,7 +41358,8 @@ "id": 1721207919, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40433,7 +41388,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -40482,7 +41438,8 @@ "id": 1007, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40512,7 +41469,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -40523,7 +41481,8 @@ "id": 1222, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40552,7 +41511,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -40562,7 +41522,8 @@ "id": 1207, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40591,7 +41552,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -40642,7 +41604,8 @@ "id": 2427, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40671,7 +41634,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -40759,7 +41723,8 @@ "id": 1710846991, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40788,7 +41753,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -40798,7 +41764,8 @@ "id": 3448, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40827,7 +41794,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -40837,7 +41805,8 @@ "id": 2906, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40866,7 +41835,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -40876,7 +41846,8 @@ "id": 1574, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40905,7 +41876,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -40915,7 +41887,8 @@ "id": 2079, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40944,7 +41917,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -40954,7 +41928,8 @@ "id": 2905, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -40984,7 +41959,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -40995,7 +41971,8 @@ "id": 1012, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -41027,7 +42004,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -41040,7 +42018,8 @@ "id": 1710991955, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -41070,7 +42049,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -41081,7 +42061,8 @@ "id": 3014, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 1, @@ -41110,7 +42091,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -41120,7 +42102,8 @@ "id": 1036, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 2, @@ -41147,7 +42130,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -41155,7 +42139,8 @@ "id": 1014, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 2, @@ -41182,7 +42167,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -41190,7 +42176,8 @@ "id": 1744819556, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 2, @@ -41217,7 +42204,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -41225,7 +42213,8 @@ "id": 3496, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 2, @@ -41252,7 +42241,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -41260,7 +42250,8 @@ "id": 1033, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 2, @@ -41287,7 +42278,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -41330,7 +42322,8 @@ "id": 2693, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 2, @@ -41357,7 +42350,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -41365,7 +42359,8 @@ "id": 3446, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePicker", "field_category": 2, @@ -41392,7 +42387,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -41435,7 +42431,8 @@ "id": 1943, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -41464,7 +42461,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -41474,7 +42472,8 @@ "id": 1939, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -41503,7 +42502,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -41513,7 +42513,8 @@ "id": 3309, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -41542,7 +42543,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -41552,7 +42554,8 @@ "id": 1937, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -41581,7 +42584,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -41591,7 +42595,8 @@ "id": 1933, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -41620,7 +42625,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -41630,7 +42636,8 @@ "id": 1938, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -41659,7 +42666,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -41669,7 +42677,8 @@ "id": 2251, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -41698,7 +42707,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -41708,7 +42718,8 @@ "id": 1932, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -41737,7 +42748,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -41747,7 +42759,8 @@ "id": 1951, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -41776,7 +42789,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -41786,7 +42800,8 @@ "id": 1948, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -41815,7 +42830,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -41825,7 +42841,8 @@ "id": 1946, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -41854,7 +42871,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -41864,7 +42882,8 @@ "id": 1952, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -41893,7 +42912,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -41903,7 +42923,8 @@ "id": 1930, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -41932,7 +42953,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -41942,7 +42964,8 @@ "id": 1950, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -41971,7 +42994,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -41981,7 +43005,8 @@ "id": 1949, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -42010,7 +43035,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -42020,7 +43046,8 @@ "id": 1947, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -42049,7 +43076,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -42059,7 +43087,8 @@ "id": 1961, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -42088,7 +43117,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -42098,7 +43128,8 @@ "id": 2920, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -42127,7 +43158,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -42137,7 +43169,8 @@ "id": 1936, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -42166,7 +43199,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -42176,7 +43210,8 @@ "id": 1945, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -42205,7 +43240,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -42215,7 +43251,8 @@ "id": 1944, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -42244,7 +43281,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -42254,7 +43292,8 @@ "id": 1940, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -42283,7 +43322,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -42293,7 +43333,8 @@ "id": 1931, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -42322,7 +43363,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -42332,7 +43374,8 @@ "id": 1941, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerConfig", "field_category": 1, @@ -42361,7 +43404,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -42410,7 +43454,8 @@ "id": 2740, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerPanel", "field_category": 2, @@ -42437,7 +43482,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -42445,7 +43491,8 @@ "id": 2738, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerPanel", "field_category": 2, @@ -42472,7 +43519,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -42480,7 +43528,8 @@ "id": 2741, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerPanel", "field_category": 2, @@ -42507,7 +43556,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -42515,7 +43565,8 @@ "id": 2744, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerPanel", "field_category": 2, @@ -42542,7 +43593,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -42550,7 +43602,8 @@ "id": 2739, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerPanel", "field_category": 2, @@ -42577,7 +43630,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -42585,7 +43639,8 @@ "id": 2742, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerPanel", "field_category": 2, @@ -42612,7 +43667,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -42620,7 +43676,8 @@ "id": 2745, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerPanel", "field_category": 2, @@ -42647,7 +43704,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -42655,7 +43713,8 @@ "id": 2743, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerPanel", "field_category": 2, @@ -42682,7 +43741,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -42690,7 +43750,8 @@ "id": 2737, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DatePickerPanel", "field_category": 16, @@ -42717,7 +43778,8 @@ "field_category_text": "Extends", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -42725,7 +43787,8 @@ "id": 1019, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -42754,7 +43817,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -42764,7 +43828,8 @@ "id": 1715162164, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -42793,7 +43858,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -42803,7 +43869,8 @@ "id": 1702466637, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -42832,7 +43899,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -42881,7 +43949,8 @@ "id": 1020, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -42910,7 +43979,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -42959,7 +44029,8 @@ "id": 1022, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -42990,7 +44061,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object", @@ -43002,7 +44074,8 @@ "id": 1731055533, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43031,7 +44104,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -43123,7 +44197,8 @@ "id": 1963, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43152,7 +44227,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -43162,7 +44238,8 @@ "id": 1023, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43191,7 +44268,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -43201,7 +44279,8 @@ "id": 1715406318, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43231,7 +44310,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -43242,7 +44322,8 @@ "id": 1024, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43271,7 +44352,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -43281,7 +44363,8 @@ "id": 1721207957, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43310,7 +44393,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -43359,7 +44443,8 @@ "id": 2801, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43388,7 +44473,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -43398,7 +44484,8 @@ "id": 1026, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43428,7 +44515,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -43439,7 +44527,8 @@ "id": 2484, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43468,7 +44557,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -43478,7 +44568,8 @@ "id": 1208, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43507,7 +44598,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -43558,7 +44650,8 @@ "id": 2490, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43587,7 +44680,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -43638,7 +44732,8 @@ "id": 2485, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43667,7 +44762,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -43714,7 +44810,8 @@ "id": 1224, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43743,7 +44840,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -43753,7 +44851,8 @@ "id": 3449, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43782,7 +44881,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -43792,7 +44892,8 @@ "id": 2909, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43821,7 +44922,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -43831,7 +44933,8 @@ "id": 1210, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43860,7 +44963,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -43870,7 +44974,8 @@ "id": 2488, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43899,7 +45004,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -43909,7 +45015,8 @@ "id": 2910, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43939,7 +45046,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -43950,7 +45058,8 @@ "id": 1028, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -43979,7 +45088,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -43989,7 +45099,8 @@ "id": 3015, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 1, @@ -44018,7 +45129,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -44028,7 +45140,8 @@ "id": 1032, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 2, @@ -44055,7 +45168,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44063,7 +45177,8 @@ "id": 1029, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 2, @@ -44090,7 +45205,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44098,7 +45214,8 @@ "id": 3497, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 2, @@ -44125,7 +45242,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44133,7 +45251,8 @@ "id": 1034, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 2, @@ -44160,7 +45279,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44168,7 +45288,8 @@ "id": 1035, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 2, @@ -44195,7 +45316,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44238,7 +45360,8 @@ "id": 1828, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 2, @@ -44265,7 +45388,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44273,7 +45397,8 @@ "id": 3447, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePicker", "field_category": 2, @@ -44300,7 +45425,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44382,7 +45508,8 @@ "id": 2748, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePickerPanel", "field_category": 2, @@ -44409,7 +45536,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44417,7 +45545,8 @@ "id": 2750, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePickerPanel", "field_category": 2, @@ -44444,7 +45573,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44452,7 +45582,8 @@ "id": 2749, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePickerPanel", "field_category": 2, @@ -44479,7 +45610,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44487,7 +45619,8 @@ "id": 2751, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePickerPanel", "field_category": 2, @@ -44514,7 +45647,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44522,7 +45656,8 @@ "id": 2747, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePickerPanel", "field_category": 2, @@ -44549,7 +45684,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44557,7 +45693,8 @@ "id": 2763, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePickerPanel", "field_category": 2, @@ -44584,7 +45721,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44592,7 +45730,8 @@ "id": 2752, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePickerPanel", "field_category": 2, @@ -44619,7 +45758,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44627,7 +45767,8 @@ "id": 2753, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePickerPanel", "field_category": 2, @@ -44654,7 +45795,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -44662,7 +45804,8 @@ "id": 2746, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DateRangePickerPanel", "field_category": 16, @@ -44689,7 +45832,8 @@ "field_category_text": "Extends", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -47025,7 +48169,8 @@ "id": 3503, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Descriptions", "field_category": 1, @@ -47054,7 +48199,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -47064,7 +48210,8 @@ "id": 3507, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Descriptions", "field_category": 1, @@ -47093,7 +48240,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -47103,7 +48251,8 @@ "id": 3504, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Descriptions", "field_category": 1, @@ -47132,7 +48281,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -47142,7 +48292,8 @@ "id": 1703752844, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Descriptions", "field_category": 1, @@ -47171,7 +48322,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -47181,7 +48333,8 @@ "id": 1703751056, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Descriptions", "field_category": 1, @@ -47210,7 +48363,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -47220,7 +48374,8 @@ "id": 1703751197, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Descriptions", "field_category": 1, @@ -47249,7 +48404,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -47259,7 +48415,8 @@ "id": 1703752820, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Descriptions", "field_category": 1, @@ -47288,7 +48445,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -47298,7 +48456,8 @@ "id": 3505, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Descriptions", "field_category": 1, @@ -47327,7 +48486,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -47337,7 +48497,8 @@ "id": 3506, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Descriptions", "field_category": 1, @@ -47366,7 +48527,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -47376,7 +48538,8 @@ "id": 1717655432, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Descriptions", "field_category": 1, @@ -47405,7 +48568,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -47415,7 +48579,8 @@ "id": 1703751109, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Descriptions", "field_category": 1, @@ -47445,7 +48610,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -47456,7 +48622,8 @@ "id": 3510, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DescriptionsConfig", "field_category": 1, @@ -47485,7 +48652,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -47495,7 +48663,8 @@ "id": 1703750907, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DescriptionsItem", "field_category": 1, @@ -47525,7 +48694,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -47575,7 +48745,8 @@ "id": 3500, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DescriptionsItem", "field_category": 1, @@ -47605,7 +48776,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -47616,7 +48788,8 @@ "id": 3501, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DescriptionsItem", "field_category": 1, @@ -47645,7 +48818,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -47700,7 +48874,8 @@ "id": 61, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -47730,7 +48905,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -47778,7 +48954,8 @@ "id": 53, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -47808,7 +48985,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -47862,7 +49040,8 @@ "id": 56, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -47893,7 +49072,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -48030,7 +49210,8 @@ "id": 55, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -48061,7 +49242,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -48153,7 +49335,8 @@ "id": 708, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -48182,7 +49365,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -48192,7 +49376,8 @@ "id": 709, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -48221,7 +49406,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -48274,7 +49460,8 @@ "id": 57, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -48305,7 +49492,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -48403,7 +49591,8 @@ "id": 1693635335, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -48432,7 +49621,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -48442,7 +49632,8 @@ "id": 2935, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -48471,7 +49662,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -48566,6 +49758,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -48597,6 +49790,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -48608,7 +49802,8 @@ "id": 1708683804, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -48637,7 +49832,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -48647,7 +49843,8 @@ "id": 1719484808, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -48676,7 +49873,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -48725,7 +49923,8 @@ "id": 54, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -48755,7 +49954,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -48803,7 +50003,8 @@ "id": 52, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -48834,7 +50035,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -48928,7 +50130,8 @@ "id": 46, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -48957,7 +50160,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -49010,7 +50214,8 @@ "id": 49, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -49039,7 +50244,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -49096,7 +50302,8 @@ "id": 2466, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -49125,7 +50332,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -49223,7 +50431,8 @@ "id": 715, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -49252,7 +50461,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -49307,7 +50517,8 @@ "id": 734, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 1, @@ -49337,7 +50548,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -49478,6 +50690,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -49510,6 +50723,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -49523,6 +50737,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -49554,6 +50769,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -49604,7 +50820,8 @@ "id": 1731453332, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 2, @@ -49631,7 +50848,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -49639,7 +50857,8 @@ "id": 1731453190, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 2, @@ -49666,7 +50885,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -49674,7 +50894,8 @@ "id": 66, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 2, @@ -49701,7 +50922,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -49748,7 +50970,8 @@ "id": 72, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 2, @@ -49775,7 +50998,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -49853,7 +51077,8 @@ "id": 65, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 2, @@ -49880,7 +51105,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -49889,6 +51115,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -49918,6 +51145,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -49927,7 +51155,8 @@ "id": 68, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 2, @@ -49954,7 +51183,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -50001,7 +51231,8 @@ "id": 64, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 2, @@ -50028,7 +51259,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -50036,7 +51268,8 @@ "id": 70, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dialog", "field_category": 2, @@ -50063,7 +51296,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -50786,7 +52020,8 @@ "id": 3325, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DialogCard", "field_category": 16, @@ -50816,7 +52051,8 @@ "field_category_text": "Extends", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -50827,7 +52063,8 @@ "id": 1966, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DialogConfig", "field_category": 1, @@ -50856,7 +52093,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -50866,7 +52104,8 @@ "id": 2782, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DialogConfig", "field_category": 1, @@ -50895,7 +52134,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -50905,7 +52145,8 @@ "id": 2783, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DialogConfig", "field_category": 1, @@ -50934,7 +52175,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -50944,7 +52186,8 @@ "id": 1965, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DialogConfig", "field_category": 1, @@ -50973,7 +52216,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -50983,7 +52227,8 @@ "id": 1954, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DialogConfig", "field_category": 1, @@ -51012,7 +52257,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -51023,6 +52269,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -51052,6 +52299,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -51062,6 +52310,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -51091,6 +52340,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -51100,7 +52350,8 @@ "id": 1693635704, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DialogInstance", "field_category": 4, @@ -51127,7 +52378,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -51136,6 +52388,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -51165,6 +52418,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -51175,6 +52429,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -51204,6 +52459,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -51213,7 +52469,8 @@ "id": 600, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DialogOptions", "field_category": 1, @@ -51243,7 +52500,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -51255,6 +52513,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -51286,6 +52545,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -51376,6 +52636,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -51405,6 +52666,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -51839,6 +53101,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -51871,6 +53134,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -51883,7 +53147,8 @@ "id": 1127, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -51913,7 +53178,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -51924,7 +53190,8 @@ "id": 1061, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -51955,7 +53222,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -52006,7 +53274,8 @@ "id": 680, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -52037,7 +53306,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -52049,7 +53319,8 @@ "id": 695, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -52078,7 +53349,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -52088,7 +53360,8 @@ "id": 696, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -52117,7 +53390,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -52170,7 +53444,8 @@ "id": 1062, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -52201,7 +53476,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -52299,7 +53575,8 @@ "id": 1740207527, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -52328,7 +53605,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -52338,7 +53616,8 @@ "id": 681, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -52368,7 +53647,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -52459,7 +53739,8 @@ "id": 683, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -52490,7 +53771,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -52580,7 +53862,8 @@ "id": 1745545785, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -52609,7 +53892,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -52619,7 +53903,8 @@ "id": 686, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -52648,7 +53933,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -52701,7 +53987,8 @@ "id": 689, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -52730,7 +54017,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -52783,7 +54071,8 @@ "id": 2082, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -52812,7 +54101,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -52822,7 +54112,8 @@ "id": 1130, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -52851,7 +54142,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -52908,7 +54200,8 @@ "id": 729, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -52937,7 +54230,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -52947,7 +54241,8 @@ "id": 1839, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 1, @@ -52977,7 +54272,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -53120,6 +54416,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -53151,6 +54448,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -53201,7 +54499,8 @@ "id": 1731453410, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 2, @@ -53228,7 +54527,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -53236,7 +54536,8 @@ "id": 1731453385, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 2, @@ -53263,7 +54564,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -53271,7 +54573,8 @@ "id": 701, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 2, @@ -53298,7 +54601,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -53306,7 +54610,8 @@ "id": 699, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 2, @@ -53333,7 +54638,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -53380,7 +54686,8 @@ "id": 700, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 2, @@ -53407,7 +54714,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -53415,7 +54723,8 @@ "id": 1755087499, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 2, @@ -53442,7 +54751,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -53450,7 +54760,8 @@ "id": 706, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 2, @@ -53477,7 +54788,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -53485,7 +54797,8 @@ "id": 702, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 2, @@ -53512,7 +54825,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -53625,7 +54939,8 @@ "id": 1754230138, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 2, @@ -53652,7 +54967,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -53661,6 +54977,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -53690,6 +55007,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -53734,7 +55052,8 @@ "id": 1709520529, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Drawer", "field_category": 2, @@ -53761,7 +55080,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -53833,7 +55153,8 @@ "id": 1915, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DrawerConfig", "field_category": 1, @@ -53862,7 +55183,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -53872,7 +55194,8 @@ "id": 2785, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DrawerConfig", "field_category": 1, @@ -53901,7 +55224,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -53911,7 +55235,8 @@ "id": 2784, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DrawerConfig", "field_category": 1, @@ -53940,7 +55265,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -53950,7 +55276,8 @@ "id": 1909, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DrawerConfig", "field_category": 1, @@ -53979,7 +55306,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -53989,7 +55317,8 @@ "id": 2766, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DrawerConfig", "field_category": 1, @@ -54018,7 +55347,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -54029,6 +55359,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -54058,6 +55389,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -54068,6 +55400,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -54097,6 +55430,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -54107,6 +55441,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -54136,6 +55471,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -54146,6 +55482,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -54175,6 +55512,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -54184,7 +55522,8 @@ "id": 3039, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DrawerOptions", "field_category": 1, @@ -54214,7 +55553,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -54226,6 +55566,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -54257,6 +55598,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -54307,6 +55649,7 @@ "id": 3037, "platform_framework": [ "1", + "4", "8" ], "component": "DrawerOptions", @@ -54337,6 +55680,7 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", + "WebComponents(PC)", "Vue(Mobile)" ], "field_type_text": [ @@ -54349,6 +55693,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -54378,6 +55723,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -54387,7 +55733,8 @@ "id": 127, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dropdown", "field_category": 1, @@ -54416,7 +55763,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -54426,7 +55774,8 @@ "id": 113, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dropdown", "field_category": 1, @@ -54455,7 +55804,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -54465,7 +55815,8 @@ "id": 112, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dropdown", "field_category": 1, @@ -54494,7 +55845,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -54504,7 +55856,8 @@ "id": 118, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dropdown", "field_category": 1, @@ -54534,7 +55887,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -54545,7 +55899,8 @@ "id": 116, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dropdown", "field_category": 1, @@ -54574,7 +55929,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -54584,7 +55940,8 @@ "id": 117, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dropdown", "field_category": 1, @@ -54614,7 +55971,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -54625,7 +55983,8 @@ "id": 111, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dropdown", "field_category": 1, @@ -54654,7 +56013,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -54664,7 +56024,8 @@ "id": 1690256011, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dropdown", "field_category": 1, @@ -54694,7 +56055,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -54705,7 +56067,8 @@ "id": 1690256029, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dropdown", "field_category": 1, @@ -54735,7 +56098,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -54746,7 +56110,8 @@ "id": 114, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dropdown", "field_category": 1, @@ -54775,7 +56140,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -54785,7 +56151,8 @@ "id": 462, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dropdown", "field_category": 1, @@ -54814,7 +56181,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -54824,7 +56192,8 @@ "id": 115, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dropdown", "field_category": 1, @@ -54853,7 +56222,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -54863,7 +56233,8 @@ "id": 759, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Dropdown", "field_category": 2, @@ -54890,7 +56261,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -54898,7 +56270,8 @@ "id": 427, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DropdownItem", "field_category": 1, @@ -54927,7 +56300,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -54937,7 +56311,8 @@ "id": 426, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DropdownItem", "field_category": 1, @@ -54967,7 +56342,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -55025,7 +56401,8 @@ "id": 428, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DropdownItem", "field_category": 1, @@ -55054,7 +56431,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -55447,7 +56825,8 @@ "id": 2912, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DropdownItem", "field_category": 1, @@ -55476,7 +56855,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -55486,7 +56866,8 @@ "id": 2890, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DropdownItem", "field_category": 1, @@ -55515,7 +56896,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -55525,7 +56907,8 @@ "id": 761, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DropdownItem", "field_category": 1, @@ -55556,7 +56939,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -55724,7 +57108,8 @@ "id": 758, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "DropdownItem", "field_category": 2, @@ -55751,7 +57136,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -57141,7 +58527,8 @@ "id": 1385, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Empty", "field_category": 1, @@ -57171,7 +58558,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -57227,7 +58615,8 @@ "id": 1701690759, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Empty", "field_category": 1, @@ -57256,7 +58645,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -57266,7 +58656,8 @@ "id": 1724231461, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Empty", "field_category": 1, @@ -57295,7 +58686,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -57305,7 +58697,8 @@ "id": 1701690668, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Empty", "field_category": 1, @@ -57335,7 +58728,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -57346,7 +58740,8 @@ "id": 1701691111, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Empty", "field_category": 1, @@ -57375,7 +58770,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -57490,7 +58886,8 @@ "id": 1723455343, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EmptyConfig", "field_category": 1, @@ -57519,7 +58916,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -57529,7 +58927,8 @@ "id": 1723455232, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EmptyConfig", "field_category": 1, @@ -57558,7 +58957,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -57568,7 +58968,8 @@ "id": 2690, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 1, @@ -57597,7 +58998,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -57607,7 +59009,8 @@ "id": 1692431600, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 1, @@ -57636,7 +59039,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -57646,7 +59050,8 @@ "id": 1832, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 1, @@ -57675,7 +59080,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -57685,7 +59091,8 @@ "id": 2672, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 1, @@ -57714,7 +59121,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -57724,7 +59132,8 @@ "id": 2689, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 2, @@ -57751,7 +59160,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -57759,7 +59169,8 @@ "id": 1692431687, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 2, @@ -57786,7 +59197,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -57794,7 +59206,8 @@ "id": 2588, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 2, @@ -57821,7 +59234,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -57829,7 +59243,8 @@ "id": 2704, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 4, @@ -57856,7 +59271,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -57864,7 +59280,8 @@ "id": 2687, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 4, @@ -57891,7 +59308,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -57899,7 +59317,8 @@ "id": 2688, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 4, @@ -57926,7 +59345,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -57934,7 +59354,8 @@ "id": 2008, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 4, @@ -57961,7 +59382,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -57969,7 +59391,8 @@ "id": 2983, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 4, @@ -57996,7 +59419,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -58004,7 +59428,8 @@ "id": 2708, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 4, @@ -58031,7 +59456,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -58039,7 +59465,8 @@ "id": 2705, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 4, @@ -58066,7 +59493,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -58074,7 +59502,8 @@ "id": 2706, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 4, @@ -58101,7 +59530,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -58109,7 +59539,8 @@ "id": 2007, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 4, @@ -58136,7 +59567,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -58144,7 +59576,8 @@ "id": 1692519609, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 4, @@ -58171,7 +59604,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -58179,7 +59613,8 @@ "id": 2876, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 4, @@ -58206,7 +59641,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -58214,7 +59650,8 @@ "id": 2006, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 4, @@ -58241,7 +59678,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -58249,7 +59687,8 @@ "id": 2707, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 4, @@ -58276,7 +59715,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -58284,7 +59724,8 @@ "id": 2506, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 4, @@ -58311,7 +59752,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -58319,7 +59761,8 @@ "id": 2361, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "EnhancedTable", "field_category": 16, @@ -58346,7 +59789,8 @@ "field_category_text": "Extends", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -59066,7 +60510,8 @@ "id": 218, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Footer", "field_category": 1, @@ -59095,7 +60540,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -59638,7 +61084,8 @@ "id": 2203, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Form", "field_category": 1, @@ -59667,7 +61114,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -59678,6 +61126,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -59709,6 +61158,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -59804,7 +61254,8 @@ "id": 285, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Form", "field_category": 1, @@ -59834,7 +61285,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -59890,7 +61342,8 @@ "id": 169, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Form", "field_category": 1, @@ -59919,7 +61372,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -59930,6 +61384,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -59961,6 +61416,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -60297,7 +61753,8 @@ "id": 413, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Form", "field_category": 1, @@ -60327,7 +61784,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -61053,6 +62511,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -61082,6 +62541,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -62643,7 +64103,8 @@ "id": 2933, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "FormItem", "field_category": 1, @@ -62672,7 +64133,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -62682,7 +64144,8 @@ "id": 411, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "FormItem", "field_category": 1, @@ -62712,7 +64175,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -62723,7 +64187,8 @@ "id": 1830, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "FormItem", "field_category": 1, @@ -62752,7 +64217,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -62762,7 +64228,8 @@ "id": 2932, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "FormItem", "field_category": 1, @@ -62792,7 +64259,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -63971,7 +65439,8 @@ "id": 2400, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64000,7 +65469,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64010,7 +65480,8 @@ "id": 2406, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64039,7 +65510,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64049,7 +65521,8 @@ "id": 2346, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64078,7 +65551,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64088,7 +65562,8 @@ "id": 1721378181, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64119,7 +65594,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -64131,7 +65607,8 @@ "id": 1736340408, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64160,7 +65637,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64311,7 +65789,8 @@ "id": 2417, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64340,7 +65819,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64350,7 +65830,8 @@ "id": 1877, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64379,7 +65860,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64432,7 +65914,8 @@ "id": 1723620343, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64461,7 +65944,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64471,7 +65955,8 @@ "id": 1878, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64500,7 +65985,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64510,7 +65996,8 @@ "id": 1879, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64539,7 +66026,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64592,7 +66080,8 @@ "id": 1723455728, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64621,7 +66110,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64632,6 +66122,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -64663,6 +66154,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -64721,7 +66213,8 @@ "id": 2986, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64750,7 +66243,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64760,7 +66254,8 @@ "id": 3306, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64789,7 +66284,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64799,7 +66295,8 @@ "id": 3305, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64828,7 +66325,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64838,7 +66336,8 @@ "id": 2078, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64867,7 +66366,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64915,6 +66415,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -64946,6 +66447,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -64957,7 +66459,8 @@ "id": 3217, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -64986,7 +66489,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -64996,7 +66500,8 @@ "id": 1866, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -65025,7 +66530,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -65078,7 +66584,8 @@ "id": 1880, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -65107,7 +66614,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -65254,7 +66762,8 @@ "id": 1868, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -65283,7 +66792,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -65293,7 +66803,8 @@ "id": 1959, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -65322,7 +66833,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -65376,6 +66888,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -65407,6 +66920,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -65418,7 +66932,8 @@ "id": 1881, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -65447,7 +66962,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -65457,7 +66973,8 @@ "id": 1876, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -65486,7 +67003,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -65496,7 +67014,8 @@ "id": 1875, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -65525,7 +67044,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -65535,7 +67055,8 @@ "id": 1869, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -65564,7 +67085,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -65574,7 +67096,8 @@ "id": 1870, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -65603,7 +67126,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -65613,7 +67137,8 @@ "id": 1723519338, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -65642,7 +67167,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -67015,7 +68541,8 @@ "id": 2970, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Guide", "field_category": 1, @@ -67044,7 +68571,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -67279,7 +68807,8 @@ "id": 2977, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Guide", "field_category": 1, @@ -67308,7 +68837,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -67366,6 +68896,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -67397,6 +68928,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -67447,7 +68979,8 @@ "id": 2968, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Guide", "field_category": 1, @@ -67476,7 +69009,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -67576,7 +69110,8 @@ "id": 2973, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Guide", "field_category": 1, @@ -67605,7 +69140,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -68010,7 +69546,8 @@ "id": 2951, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Guide", "field_category": 2, @@ -68037,7 +69574,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -68559,7 +70097,8 @@ "id": 3212, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GuideConfig", "field_category": 1, @@ -68588,7 +70127,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -68641,7 +70181,8 @@ "id": 3213, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GuideConfig", "field_category": 1, @@ -68670,7 +70211,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -68680,7 +70222,8 @@ "id": 3214, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GuideConfig", "field_category": 1, @@ -68709,7 +70252,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -68762,7 +70306,8 @@ "id": 3215, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GuideConfig", "field_category": 1, @@ -68791,7 +70336,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -68843,6 +70389,7 @@ "platform_framework": [ "1", "2", + "4", "8" ], "component": "GuideStep", @@ -68874,6 +70421,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)" ], "field_type_text": [ @@ -68964,6 +70512,7 @@ "platform_framework": [ "1", "2", + "4", "8" ], "component": "GuideStep", @@ -68994,6 +70543,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)" ], "field_type_text": [ @@ -69005,6 +70555,7 @@ "platform_framework": [ "1", "2", + "4", "8" ], "component": "GuideStep", @@ -69036,6 +70587,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)" ], "field_type_text": [ @@ -69125,7 +70677,8 @@ "id": 2966, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GuideStep", "field_category": 1, @@ -69154,7 +70707,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -69202,6 +70756,7 @@ "platform_framework": [ "1", "2", + "4", "8" ], "component": "GuideStep", @@ -69232,6 +70787,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)" ], "field_type_text": [ @@ -69281,7 +70837,8 @@ "id": 2967, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GuideStep", "field_category": 1, @@ -69310,7 +70867,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -69407,6 +70965,7 @@ "platform_framework": [ "1", "2", + "4", "8" ], "component": "GuideStep", @@ -69437,6 +70996,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)" ], "field_type_text": [ @@ -69486,7 +71046,8 @@ "id": 2959, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GuideStep", "field_category": 1, @@ -69515,7 +71076,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -69603,7 +71165,8 @@ "id": 3307, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GuideStep", "field_category": 1, @@ -69632,7 +71195,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -69642,7 +71206,8 @@ "id": 2960, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GuideStep", "field_category": 1, @@ -69671,7 +71236,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -69771,7 +71337,8 @@ "id": 2963, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "GuideStep", "field_category": 1, @@ -69800,7 +71367,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -69811,6 +71379,7 @@ "platform_framework": [ "1", "2", + "4", "8" ], "component": "GuideStep", @@ -69842,6 +71411,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)" ], "field_type_text": [ @@ -69892,7 +71462,8 @@ "id": 862, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "HeadMenu", "field_category": 1, @@ -69921,7 +71492,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -69931,7 +71503,8 @@ "id": 861, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "HeadMenu", "field_category": 1, @@ -69960,7 +71533,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -69970,7 +71544,8 @@ "id": 1266, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "HeadMenu", "field_category": 1, @@ -69999,7 +71574,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -70009,7 +71585,8 @@ "id": 1265, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "HeadMenu", "field_category": 1, @@ -70038,7 +71615,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -70048,7 +71626,8 @@ "id": 859, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "HeadMenu", "field_category": 1, @@ -70077,7 +71656,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -70087,7 +71667,8 @@ "id": 860, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "HeadMenu", "field_category": 1, @@ -70117,7 +71698,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -70128,7 +71710,8 @@ "id": 863, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "HeadMenu", "field_category": 2, @@ -70155,7 +71738,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -70163,7 +71747,8 @@ "id": 865, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "HeadMenu", "field_category": 2, @@ -70190,7 +71775,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -70198,7 +71784,8 @@ "id": 217, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Header", "field_category": 1, @@ -70227,7 +71814,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -70509,6 +72097,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -70540,6 +72129,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -70552,6 +72142,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -70583,6 +72174,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -70595,6 +72187,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -70626,6 +72219,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -70638,6 +72232,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -70669,6 +72264,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -70681,6 +72277,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -70712,6 +72309,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -70724,6 +72322,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -70756,6 +72355,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -70769,6 +72369,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -70798,6 +72399,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -70808,6 +72410,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -70839,6 +72442,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -70851,6 +72455,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -70882,6 +72487,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -70894,6 +72500,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -70925,6 +72532,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -70937,6 +72545,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -70968,6 +72577,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -70980,6 +72590,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -71012,6 +72623,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -71025,6 +72637,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -71054,6 +72667,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -71142,6 +72756,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -71173,6 +72788,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -71218,6 +72834,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -71250,6 +72867,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -71304,6 +72922,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -71335,6 +72954,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -71347,6 +72967,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -71378,6 +72999,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -71389,7 +73011,8 @@ "id": 2869, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Image", "field_category": 1, @@ -71418,7 +73041,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -71517,6 +73141,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -71549,6 +73174,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -71641,7 +73267,8 @@ "id": 2872, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Image", "field_category": 1, @@ -71671,7 +73298,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -71682,7 +73310,8 @@ "id": 2873, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Image", "field_category": 1, @@ -71711,7 +73340,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -71721,7 +73351,8 @@ "id": 2870, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Image", "field_category": 1, @@ -71751,7 +73382,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -71763,6 +73395,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -71794,6 +73427,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -71806,6 +73440,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -71837,6 +73472,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -71934,7 +73570,8 @@ "id": 2207, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Image", "field_category": 1, @@ -71964,7 +73601,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -72019,6 +73657,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -72050,6 +73689,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -72547,7 +74187,8 @@ "id": 1721025806, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewer", "field_category": 1, @@ -72577,7 +74218,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -72628,6 +74270,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -72660,6 +74303,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -72717,7 +74361,8 @@ "id": 1699168758, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewer", "field_category": 1, @@ -72746,7 +74391,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -72756,7 +74402,8 @@ "id": 2721, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewer", "field_category": 1, @@ -72785,7 +74432,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -72920,7 +74568,8 @@ "id": 2717, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewer", "field_category": 1, @@ -72949,7 +74598,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -73037,7 +74687,8 @@ "id": 1711596997, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewer", "field_category": 1, @@ -73066,7 +74717,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -73076,7 +74728,8 @@ "id": 2723, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewer", "field_category": 1, @@ -73105,7 +74758,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -73154,7 +74808,8 @@ "id": 2724, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewer", "field_category": 1, @@ -73183,7 +74838,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -73233,6 +74889,7 @@ "platform_framework": [ "1", "2", + "4", "16" ], "component": "ImageViewer", @@ -73263,6 +74920,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "React(Mobile)" ], "field_type_text": [ @@ -73470,7 +75128,8 @@ "id": 2716, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewer", "field_category": 1, @@ -73499,7 +75158,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -73509,7 +75169,8 @@ "id": 2718, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewer", "field_category": 1, @@ -73539,7 +75200,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -73593,7 +75255,8 @@ "id": 2722, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewer", "field_category": 1, @@ -73622,7 +75285,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -73632,7 +75296,8 @@ "id": 2992, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewer", "field_category": 1, @@ -73662,7 +75327,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -73753,7 +75419,8 @@ "id": 2719, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewer", "field_category": 1, @@ -73782,7 +75449,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -73944,7 +75612,8 @@ "id": 2712, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewer", "field_category": 2, @@ -73971,7 +75640,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -74150,7 +75820,8 @@ "id": 1740567887, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewer", "field_category": 2, @@ -74177,7 +75848,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -74186,6 +75858,7 @@ "platform_framework": [ "1", "2", + "4", "16" ], "component": "ImageViewer", @@ -74214,6 +75887,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "React(Mobile)" ], "field_type_text": [] @@ -74358,7 +76032,8 @@ "id": 3301, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewerConfig", "field_category": 1, @@ -74387,7 +76062,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -74397,7 +76073,8 @@ "id": 3302, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewerConfig", "field_category": 1, @@ -74426,7 +76103,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -74436,7 +76114,8 @@ "id": 3304, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewerConfig", "field_category": 1, @@ -74465,7 +76144,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -74514,7 +76194,8 @@ "id": 3303, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ImageViewerConfig", "field_category": 1, @@ -74543,7 +76224,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -75394,7 +77076,8 @@ "id": 2320, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 1, @@ -75423,7 +77106,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -75434,6 +77118,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -75465,6 +77150,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -75477,6 +77163,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -75508,6 +77195,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -75610,6 +77298,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -75641,6 +77330,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -76171,7 +77861,8 @@ "id": 2198, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 1, @@ -76200,7 +77891,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -76292,7 +77984,8 @@ "id": 2429, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 1, @@ -76323,7 +78016,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -76475,6 +78169,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -76507,6 +78202,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -76559,6 +78255,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -76590,6 +78287,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -76801,6 +78499,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -76832,6 +78531,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -77245,7 +78945,8 @@ "id": 2358, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 1, @@ -77274,7 +78975,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -77284,7 +78986,8 @@ "id": 2926, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 1, @@ -77313,7 +79016,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -77323,7 +79027,8 @@ "id": 741, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 1, @@ -77352,7 +79057,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -77441,6 +79147,7 @@ "platform_framework": [ "1", "2", + "4", "8" ], "component": "Input", @@ -77471,6 +79178,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)" ], "field_type_text": [ @@ -77615,6 +79323,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -77646,6 +79355,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -77749,7 +79459,8 @@ "id": 751, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 1, @@ -77778,7 +79489,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -77866,7 +79578,8 @@ "id": 740, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 1, @@ -77896,7 +79609,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -77989,7 +79703,8 @@ "id": 756, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78016,7 +79731,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78094,7 +79810,8 @@ "id": 754, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78121,7 +79838,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78199,7 +79917,8 @@ "id": 821, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78226,7 +79945,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78304,7 +80024,8 @@ "id": 2322, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78331,7 +80052,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78374,7 +80096,8 @@ "id": 2281, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78401,7 +80124,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78409,7 +80133,8 @@ "id": 2280, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78436,7 +80161,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78444,7 +80170,8 @@ "id": 753, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78471,7 +80198,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78514,7 +80242,8 @@ "id": 755, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78541,7 +80270,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78654,7 +80384,8 @@ "id": 818, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78681,7 +80412,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78689,7 +80421,8 @@ "id": 820, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78716,7 +80449,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78724,7 +80458,8 @@ "id": 819, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78751,7 +80486,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78759,7 +80495,8 @@ "id": 2109, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78786,7 +80523,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78794,7 +80532,8 @@ "id": 2110, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78821,7 +80560,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78864,7 +80604,8 @@ "id": 2116, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78891,7 +80632,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78942,7 +80684,8 @@ "id": 2279, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 2, @@ -78969,7 +80712,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -78977,7 +80721,8 @@ "id": 1699771883, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Input", "field_category": 64, @@ -79004,7 +80749,8 @@ "field_category_text": "", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -79397,7 +81143,8 @@ "id": 2735, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputAdornment", "field_category": 1, @@ -79427,7 +81174,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -79438,7 +81186,8 @@ "id": 2734, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputAdornment", "field_category": 1, @@ -79468,7 +81217,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -79479,7 +81229,8 @@ "id": 2786, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputConfig", "field_category": 1, @@ -79508,7 +81259,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -79602,7 +81354,8 @@ "id": 3296, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputGroup", "field_category": 1, @@ -79631,7 +81384,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -79641,7 +81395,8 @@ "id": 2204, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -79670,7 +81425,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -79680,7 +81436,8 @@ "id": 3192, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -79709,7 +81466,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -79719,7 +81477,8 @@ "id": 2325, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -79748,7 +81507,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -79758,7 +81518,8 @@ "id": 1001, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -79788,7 +81549,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number", @@ -79799,7 +81561,8 @@ "id": 768, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -79828,7 +81591,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -79838,7 +81602,8 @@ "id": 769, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -79867,7 +81632,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -79877,7 +81643,8 @@ "id": 2702, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -79906,7 +81673,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -79916,7 +81684,8 @@ "id": 2887, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -79946,7 +81715,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -79957,7 +81727,8 @@ "id": 2880, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -79986,7 +81757,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -79996,7 +81768,8 @@ "id": 764, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -80026,7 +81799,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -80037,7 +81811,8 @@ "id": 765, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -80067,7 +81842,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -80078,7 +81854,8 @@ "id": 996, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -80107,7 +81884,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -80117,7 +81895,8 @@ "id": 2386, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -80146,7 +81925,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -80156,7 +81936,8 @@ "id": 767, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -80185,7 +81966,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -80195,7 +81977,8 @@ "id": 2168, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -80224,7 +82007,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -80234,7 +82018,8 @@ "id": 766, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -80264,7 +82049,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -80275,7 +82061,8 @@ "id": 2886, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -80305,7 +82092,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -80316,7 +82104,8 @@ "id": 763, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -80345,7 +82134,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -80355,7 +82145,8 @@ "id": 2170, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -80385,7 +82176,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -80396,7 +82188,8 @@ "id": 762, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 1, @@ -80426,7 +82219,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -80437,7 +82231,8 @@ "id": 2881, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 2, @@ -80464,7 +82259,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -80472,7 +82268,8 @@ "id": 770, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 2, @@ -80499,7 +82296,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -80507,7 +82305,8 @@ "id": 817, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 2, @@ -80534,7 +82333,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -80542,7 +82342,8 @@ "id": 815, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 2, @@ -80569,7 +82370,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -80577,7 +82379,8 @@ "id": 823, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 2, @@ -80604,7 +82407,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -80612,7 +82416,8 @@ "id": 825, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 2, @@ -80639,7 +82444,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -80647,7 +82453,8 @@ "id": 824, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 2, @@ -80674,7 +82481,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -80682,7 +82490,8 @@ "id": 2882, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 2, @@ -80709,7 +82518,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -80717,7 +82527,8 @@ "id": 2925, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "InputNumber", "field_category": 64, @@ -80744,7 +82555,8 @@ "field_category_text": "", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -80752,7 +82564,8 @@ "id": 2108, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Layout", "field_category": 1, @@ -80781,7 +82594,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -80833,6 +82647,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -80865,6 +82680,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -80960,6 +82776,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -80991,6 +82808,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -81041,7 +82859,8 @@ "id": 1690964502, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Link", "field_category": 1, @@ -81071,7 +82890,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -81082,7 +82902,8 @@ "id": 2900, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Link", "field_category": 1, @@ -81111,7 +82932,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -81165,6 +82987,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -81196,6 +83019,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -81282,6 +83106,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -81313,6 +83138,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -81454,6 +83280,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -81485,6 +83312,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -81540,6 +83368,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -81571,6 +83400,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -81712,6 +83542,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -81741,6 +83572,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -82216,7 +84048,8 @@ "id": 907, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "List", "field_category": 1, @@ -82245,7 +84078,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -82294,7 +84128,8 @@ "id": 903, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "List", "field_category": 1, @@ -82323,7 +84158,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -82333,7 +84169,8 @@ "id": 905, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "List", "field_category": 1, @@ -82362,7 +84199,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -82372,7 +84210,8 @@ "id": 906, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "List", "field_category": 1, @@ -82401,7 +84240,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -82411,7 +84251,8 @@ "id": 910, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "List", "field_category": 2, @@ -82438,7 +84279,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -82481,7 +84323,8 @@ "id": 911, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "List", "field_category": 2, @@ -82508,7 +84351,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -82551,7 +84395,8 @@ "id": 1733196291, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "List", "field_category": 4, @@ -82578,7 +84423,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -82626,6 +84472,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -82657,6 +84504,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -82668,7 +84516,8 @@ "id": 2253, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ListConfig", "field_category": 1, @@ -82697,7 +84546,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -83035,7 +84885,8 @@ "id": 916, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ListItemMeta", "field_category": 1, @@ -83065,7 +84916,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -83076,7 +84928,8 @@ "id": 914, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ListItemMeta", "field_category": 1, @@ -83106,7 +84959,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -83117,7 +84971,8 @@ "id": 915, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "ListItemMeta", "field_category": 1, @@ -83147,7 +85002,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -83159,6 +85015,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -83191,6 +85048,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -83245,6 +85103,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -83277,6 +85136,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -83697,6 +85557,7 @@ "platform_framework": [ "1", "2", + "4", "16" ], "component": "Loading", @@ -83727,6 +85588,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "React(Mobile)" ], "field_type_text": [ @@ -83819,7 +85681,8 @@ "id": 953, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Loading", "field_category": 1, @@ -83848,7 +85711,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -83858,7 +85722,8 @@ "id": 1298, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Loading", "field_category": 1, @@ -83887,7 +85752,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -84032,7 +85898,8 @@ "id": 1251, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Loading", "field_category": 1, @@ -84061,7 +85928,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -84211,7 +86079,8 @@ "id": 843, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Menu", "field_category": 1, @@ -84240,7 +86109,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -84250,7 +86120,8 @@ "id": 840, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Menu", "field_category": 1, @@ -84279,7 +86150,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -84289,7 +86161,8 @@ "id": 844, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Menu", "field_category": 1, @@ -84318,7 +86191,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -84328,7 +86202,8 @@ "id": 839, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Menu", "field_category": 1, @@ -84357,7 +86232,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -84367,7 +86243,8 @@ "id": 1264, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Menu", "field_category": 1, @@ -84396,7 +86273,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -84406,7 +86284,8 @@ "id": 1328, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Menu", "field_category": 1, @@ -84435,7 +86314,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -84445,7 +86325,8 @@ "id": 837, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Menu", "field_category": 1, @@ -84474,7 +86355,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -84484,7 +86366,8 @@ "id": 838, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Menu", "field_category": 1, @@ -84514,7 +86397,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -84525,7 +86409,8 @@ "id": 841, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Menu", "field_category": 1, @@ -84556,7 +86441,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -84568,7 +86454,8 @@ "id": 856, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Menu", "field_category": 2, @@ -84595,7 +86482,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -84603,7 +86491,8 @@ "id": 857, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Menu", "field_category": 2, @@ -84630,7 +86519,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -84638,7 +86528,8 @@ "id": 1343, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MenuGroup", "field_category": 1, @@ -84668,7 +86559,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -84718,7 +86610,8 @@ "id": 849, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MenuItem", "field_category": 1, @@ -84748,7 +86641,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -84798,7 +86692,8 @@ "id": 846, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MenuItem", "field_category": 1, @@ -84827,7 +86722,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -84837,7 +86733,8 @@ "id": 853, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MenuItem", "field_category": 1, @@ -84866,7 +86763,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -84876,7 +86774,8 @@ "id": 1327, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MenuItem", "field_category": 1, @@ -84905,7 +86804,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -85026,7 +86926,8 @@ "id": 854, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MenuItem", "field_category": 1, @@ -85055,7 +86956,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -85104,7 +87006,8 @@ "id": 1731555489, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MenuItem", "field_category": 1, @@ -85133,7 +87036,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -85143,7 +87047,8 @@ "id": 845, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MenuItem", "field_category": 1, @@ -85173,7 +87078,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -85184,7 +87090,8 @@ "id": 1445, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MenuItem", "field_category": 2, @@ -85211,7 +87118,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -85304,6 +87212,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -85337,6 +87246,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -85537,6 +87447,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -85569,6 +87480,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -85837,7 +87749,8 @@ "id": 98, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Message", "field_category": 1, @@ -85866,7 +87779,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -86112,7 +88026,8 @@ "id": 3016, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Message", "field_category": 2, @@ -86139,7 +88054,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -86772,7 +88688,8 @@ "id": 3218, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MessageConfig", "field_category": 16, @@ -86799,7 +88716,8 @@ "field_category_text": "Extends", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -86807,7 +88725,8 @@ "id": 126, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MessageOptions", "field_category": 1, @@ -86837,7 +88756,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -86848,7 +88768,8 @@ "id": 2889, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MessageOptions", "field_category": 1, @@ -86877,7 +88798,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -86887,7 +88809,8 @@ "id": 123, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MessageOptions", "field_category": 1, @@ -86916,7 +88839,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -86926,7 +88850,8 @@ "id": 122, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MessageOptions", "field_category": 1, @@ -86955,7 +88880,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -86965,7 +88891,8 @@ "id": 2888, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MessageOptions", "field_category": 1, @@ -86994,7 +88921,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -87004,7 +88932,8 @@ "id": 124, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MessageOptions", "field_category": 1, @@ -87033,7 +88962,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -87043,7 +88973,8 @@ "id": 249, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "MessageOptions", "field_category": 16, @@ -87070,7 +89001,8 @@ "field_category_text": "Extends", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -89561,7 +91493,8 @@ "id": 453, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Notification", "field_category": 1, @@ -89592,7 +91525,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -89604,7 +91538,8 @@ "id": 450, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Notification", "field_category": 1, @@ -89634,7 +91569,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -89684,7 +91620,8 @@ "id": 460, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Notification", "field_category": 1, @@ -89713,7 +91650,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -89723,7 +91661,8 @@ "id": 454, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Notification", "field_category": 1, @@ -89753,7 +91692,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -89764,7 +91704,8 @@ "id": 452, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Notification", "field_category": 1, @@ -89794,7 +91735,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -89805,7 +91747,8 @@ "id": 451, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Notification", "field_category": 1, @@ -89834,7 +91777,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -89845,6 +91789,7 @@ "platform_framework": [ "1", "2", + "4", "16" ], "component": "Notification", @@ -89876,6 +91821,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "React(Mobile)" ], "field_type_text": [ @@ -89887,7 +91833,8 @@ "id": 1758783866, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Notification", "field_category": 2, @@ -89914,7 +91861,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -89922,7 +91870,8 @@ "id": 455, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Notification", "field_category": 2, @@ -89949,7 +91898,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -89957,7 +91907,8 @@ "id": 457, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Notification", "field_category": 2, @@ -89984,7 +91935,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -89992,7 +91944,8 @@ "id": 467, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "NotificationOptions", "field_category": 1, @@ -90022,7 +91975,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -90072,7 +92026,8 @@ "id": 466, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "NotificationOptions", "field_category": 1, @@ -90101,7 +92056,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -90111,7 +92067,8 @@ "id": 465, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "NotificationOptions", "field_category": 1, @@ -90140,7 +92097,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -90191,7 +92149,8 @@ "id": 468, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "NotificationOptions", "field_category": 1, @@ -90220,7 +92179,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -90230,7 +92190,8 @@ "id": 470, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "NotificationOptions", "field_category": 16, @@ -90257,7 +92218,8 @@ "field_category_text": "Extends", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -90265,7 +92227,8 @@ "id": 2944, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Option", "field_category": 1, @@ -90294,7 +92257,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -90343,7 +92307,8 @@ "id": 1862, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Option", "field_category": 1, @@ -90373,7 +92338,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -90423,7 +92389,8 @@ "id": 314, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Option", "field_category": 1, @@ -90452,7 +92419,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -90462,7 +92430,8 @@ "id": 313, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Option", "field_category": 1, @@ -90491,7 +92460,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -90501,7 +92471,8 @@ "id": 3326, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Option", "field_category": 1, @@ -90530,7 +92501,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -90585,7 +92557,8 @@ "id": 1865, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "OptionGroup", "field_category": 1, @@ -90614,7 +92587,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -90624,7 +92598,8 @@ "id": 363, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "OptionGroup", "field_category": 1, @@ -90653,7 +92628,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -91341,7 +93317,8 @@ "id": 76, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91370,7 +93347,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -91380,7 +93358,8 @@ "id": 86, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91409,7 +93388,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -91419,7 +93399,8 @@ "id": 410, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91448,7 +93429,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -91458,7 +93440,8 @@ "id": 409, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91487,7 +93470,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -91536,7 +93520,8 @@ "id": 80, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91565,7 +93550,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -91575,7 +93561,8 @@ "id": 408, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91604,7 +93591,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -91614,7 +93602,8 @@ "id": 3042, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91643,7 +93632,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -91653,7 +93643,8 @@ "id": 2634, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91682,7 +93673,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -91692,7 +93684,8 @@ "id": 84, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91721,7 +93714,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -91731,7 +93725,8 @@ "id": 2638, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91760,7 +93755,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -91770,7 +93766,8 @@ "id": 2637, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91799,7 +93796,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -91809,7 +93807,8 @@ "id": 2636, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91838,7 +93837,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -91848,7 +93848,8 @@ "id": 78, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91877,7 +93878,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -91887,7 +93889,8 @@ "id": 77, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91916,7 +93919,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -91926,7 +93930,8 @@ "id": 79, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91955,7 +93960,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -91965,7 +93971,8 @@ "id": 83, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 1, @@ -91995,7 +94002,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -92006,7 +94014,8 @@ "id": 1166, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 2, @@ -92033,7 +94042,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -92041,7 +94051,8 @@ "id": 87, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 2, @@ -92068,7 +94079,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -92076,7 +94088,8 @@ "id": 88, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Pagination", "field_category": 2, @@ -92103,7 +94116,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -92111,7 +94125,8 @@ "id": 1882, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PaginationConfig", "field_category": 1, @@ -92140,7 +94155,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -92150,7 +94166,8 @@ "id": 1883, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PaginationConfig", "field_category": 1, @@ -92179,7 +94196,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -92189,7 +94207,8 @@ "id": 1884, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PaginationConfig", "field_category": 1, @@ -92218,7 +94237,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -92228,7 +94248,8 @@ "id": 1887, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PaginationConfig", "field_category": 1, @@ -92257,7 +94278,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -92302,7 +94324,8 @@ "id": 2791, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PaginationMini", "field_category": 1, @@ -92332,7 +94355,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -92343,7 +94367,8 @@ "id": 2787, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PaginationMini", "field_category": 1, @@ -92372,7 +94397,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -92382,7 +94408,8 @@ "id": 2792, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PaginationMini", "field_category": 1, @@ -92411,7 +94438,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -92421,7 +94449,8 @@ "id": 2793, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PaginationMini", "field_category": 1, @@ -92450,7 +94479,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -92460,7 +94490,8 @@ "id": 2790, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PaginationMini", "field_category": 1, @@ -92489,7 +94520,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -92499,7 +94531,8 @@ "id": 2794, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PaginationMini", "field_category": 1, @@ -92528,7 +94561,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -92538,7 +94572,8 @@ "id": 2789, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PaginationMini", "field_category": 2, @@ -92567,7 +94602,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -92616,7 +94652,8 @@ "id": 1706635275, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Paragraph", "field_category": 1, @@ -92646,7 +94683,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -92696,7 +94734,8 @@ "id": 1706638282, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Paragraph", "field_category": 1, @@ -92726,7 +94765,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -94408,7 +96448,8 @@ "id": 940, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popconfirm", "field_category": 1, @@ -94439,7 +96480,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -94490,7 +96532,8 @@ "id": 941, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popconfirm", "field_category": 1, @@ -94521,7 +96564,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -94572,7 +96616,8 @@ "id": 1362, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popconfirm", "field_category": 1, @@ -94601,7 +96646,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -94611,7 +96657,8 @@ "id": 943, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popconfirm", "field_category": 1, @@ -94640,7 +96687,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -94650,7 +96698,8 @@ "id": 1363, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popconfirm", "field_category": 1, @@ -94679,7 +96728,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -94689,7 +96739,8 @@ "id": 946, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popconfirm", "field_category": 1, @@ -94718,7 +96769,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -94728,7 +96780,8 @@ "id": 1361, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popconfirm", "field_category": 1, @@ -94757,7 +96810,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -94767,7 +96821,8 @@ "id": 939, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popconfirm", "field_category": 1, @@ -94796,7 +96851,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -94806,7 +96862,8 @@ "id": 1212, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popconfirm", "field_category": 1, @@ -94836,7 +96893,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -94847,7 +96905,8 @@ "id": 944, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popconfirm", "field_category": 2, @@ -94874,7 +96933,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -94882,7 +96942,8 @@ "id": 945, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popconfirm", "field_category": 2, @@ -94909,7 +96970,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -94917,7 +96979,8 @@ "id": 1211, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popconfirm", "field_category": 2, @@ -94944,7 +97007,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -94952,7 +97016,8 @@ "id": 1916, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PopconfirmConfig", "field_category": 1, @@ -94982,7 +97047,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -94993,7 +97059,8 @@ "id": 1917, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PopconfirmConfig", "field_category": 1, @@ -95023,7 +97090,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -95034,7 +97102,8 @@ "id": 1955, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PopconfirmConfig", "field_category": 1, @@ -95063,7 +97132,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -95671,6 +97741,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -95703,6 +97774,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -95965,7 +98037,8 @@ "id": 2939, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 1, @@ -95995,7 +98068,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number", @@ -96006,7 +98080,8 @@ "id": 1309, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 1, @@ -96035,7 +98110,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -96084,7 +98160,8 @@ "id": 90, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 1, @@ -96113,7 +98190,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -96166,7 +98244,8 @@ "id": 2250, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 1, @@ -96195,7 +98274,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -96238,7 +98318,8 @@ "id": 131, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 1, @@ -96269,7 +98350,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -96281,7 +98363,8 @@ "id": 2934, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 1, @@ -96312,7 +98395,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -96324,7 +98408,8 @@ "id": 2921, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 1, @@ -96355,7 +98440,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -96410,7 +98496,8 @@ "id": 130, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 1, @@ -96441,7 +98528,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -96453,7 +98541,8 @@ "id": 91, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 1, @@ -96482,7 +98571,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -96535,7 +98625,8 @@ "id": 2988, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 1, @@ -96564,7 +98655,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -96650,7 +98742,8 @@ "id": 1360, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 1, @@ -96679,7 +98772,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -96802,7 +98896,8 @@ "id": 93, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 1, @@ -96831,7 +98926,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -96841,7 +98937,8 @@ "id": 1227, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 1, @@ -96871,7 +98968,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -96969,6 +99067,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -97000,6 +99099,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -97206,7 +99306,8 @@ "id": 1695438218, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 2, @@ -97233,7 +99334,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -97241,7 +99343,8 @@ "id": 2193, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 2, @@ -97268,7 +99371,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -97276,7 +99380,8 @@ "id": 3327, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 2, @@ -97303,7 +99408,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -97311,7 +99417,8 @@ "id": 97, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 2, @@ -97340,7 +99447,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -97498,7 +99606,8 @@ "id": 1695463043, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Popup", "field_category": 4, @@ -97525,7 +99634,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -97638,7 +99748,8 @@ "id": 333, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -97668,7 +99779,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -97679,7 +99791,8 @@ "id": 2005, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -97708,7 +99821,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -97718,7 +99832,8 @@ "id": 2527, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -97747,7 +99862,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -97757,7 +99873,8 @@ "id": 593, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -97786,7 +99903,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -97796,7 +99914,8 @@ "id": 2491, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -97825,7 +99944,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -97835,7 +99955,8 @@ "id": 2349, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -97864,7 +99985,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -97874,7 +99996,8 @@ "id": 2589, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -97903,7 +100026,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -97913,7 +100037,8 @@ "id": 2937, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -97942,7 +100067,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -97952,7 +100078,8 @@ "id": 2817, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -97981,7 +100108,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -97991,7 +100119,8 @@ "id": 1240, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98021,7 +100150,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -98032,7 +100162,8 @@ "id": 1219, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98061,7 +100192,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -98071,7 +100203,8 @@ "id": 809, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98101,7 +100234,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -98112,7 +100246,8 @@ "id": 335, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98141,7 +100276,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -98151,7 +100287,8 @@ "id": 830, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98180,7 +100317,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -98190,7 +100328,8 @@ "id": 2063, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98220,7 +100359,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -98231,7 +100371,8 @@ "id": 836, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98260,7 +100401,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -98270,7 +100412,8 @@ "id": 2675, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98299,7 +100442,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -98309,7 +100453,8 @@ "id": 2799, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98338,7 +100483,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -98348,7 +100494,8 @@ "id": 985, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98377,7 +100524,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -98426,7 +100574,8 @@ "id": 1702875824, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98455,7 +100604,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -98465,7 +100615,8 @@ "id": 1702872178, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98494,7 +100645,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -98504,7 +100656,8 @@ "id": 3209, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98533,7 +100686,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -98543,7 +100697,8 @@ "id": 337, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98572,7 +100727,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -98582,7 +100738,8 @@ "id": 3011, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98611,7 +100768,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -98621,7 +100779,8 @@ "id": 834, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98651,7 +100810,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object", @@ -98662,7 +100822,8 @@ "id": 2379, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98691,7 +100852,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -98701,7 +100863,8 @@ "id": 1457, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 1, @@ -98730,7 +100893,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -98740,7 +100904,8 @@ "id": 1448, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -98767,7 +100932,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -98775,7 +100941,8 @@ "id": 2197, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -98802,7 +100969,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -98810,7 +100978,8 @@ "id": 1270, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -98837,14 +101006,16 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, { "id": 2353, "platform_framework": [ - "1" + "1", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -98870,7 +101041,8 @@ "support_default_value": 0, "field_category_text": "Events", "platform_framework_text": [ - "Vue(PC)" + "Vue(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -98911,7 +101083,8 @@ "id": 2529, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -98938,7 +101111,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -98946,7 +101120,8 @@ "id": 1447, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -98973,7 +101148,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -98981,7 +101157,8 @@ "id": 2492, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -99008,7 +101185,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -99016,7 +101194,8 @@ "id": 1496, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -99043,7 +101222,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -99051,7 +101231,8 @@ "id": 353, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -99078,7 +101259,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -99086,7 +101268,8 @@ "id": 829, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -99113,7 +101296,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -99121,7 +101305,8 @@ "id": 2819, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -99148,7 +101333,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -99156,7 +101342,8 @@ "id": 2820, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -99183,7 +101370,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -99191,7 +101379,8 @@ "id": 338, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -99218,7 +101407,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -99226,7 +101416,8 @@ "id": 339, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -99253,7 +101444,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -99261,7 +101453,8 @@ "id": 2907, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 2, @@ -99288,7 +101481,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -99296,7 +101490,8 @@ "id": 1707217419, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 4, @@ -99323,7 +101518,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -99331,7 +101527,8 @@ "id": 2821, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 4, @@ -99358,7 +101555,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -99366,7 +101564,8 @@ "id": 1737484100, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 4, @@ -99393,7 +101592,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -99401,7 +101601,8 @@ "id": 2908, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 4, @@ -99428,7 +101629,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -99436,7 +101638,8 @@ "id": 596, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 16, @@ -99463,7 +101666,8 @@ "field_category_text": "Extends", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -99471,7 +101675,8 @@ "id": 595, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTable", "field_category": 64, @@ -99498,14 +101703,16 @@ "field_category_text": "", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, { "id": 993, "platform_framework": [ - "1" + "1", + "4" ], "component": "PrimaryTableCol", "field_category": 1, @@ -99534,7 +101741,8 @@ "support_default_value": 0, "field_category_text": "Props", "platform_framework_text": [ - "Vue(PC)" + "Vue(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -99584,7 +101792,8 @@ "id": 347, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTableCol", "field_category": 1, @@ -99614,7 +101823,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object", @@ -99625,7 +101835,8 @@ "id": 2554, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTableCol", "field_category": 1, @@ -99654,7 +101865,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -99664,7 +101876,8 @@ "id": 2391, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTableCol", "field_category": 1, @@ -99693,7 +101906,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -99703,7 +101917,8 @@ "id": 348, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTableCol", "field_category": 1, @@ -99732,7 +101947,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -99742,7 +101958,8 @@ "id": 2700, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTableCol", "field_category": 1, @@ -99771,7 +101988,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -99781,7 +101999,8 @@ "id": 828, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTableCol", "field_category": 1, @@ -99810,7 +102029,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -99820,7 +102040,8 @@ "id": 995, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTableCol", "field_category": 1, @@ -99849,7 +102070,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -99859,7 +102081,8 @@ "id": 831, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTableCol", "field_category": 1, @@ -99888,7 +102111,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -99898,7 +102122,8 @@ "id": 833, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTableCol", "field_category": 1, @@ -99928,7 +102153,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -99939,7 +102165,8 @@ "id": 994, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTableCol", "field_category": 1, @@ -99969,7 +102196,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -99980,7 +102208,8 @@ "id": 592, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTableCol", "field_category": 1, @@ -100009,7 +102238,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -100019,7 +102249,8 @@ "id": 991, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTableCol", "field_category": 16, @@ -100046,7 +102277,8 @@ "field_category_text": "Extends", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -100054,7 +102286,8 @@ "id": 814, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "PrimaryTableCol", "field_category": 64, @@ -100081,7 +102314,8 @@ "field_category_text": "", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -100372,6 +102606,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -100404,6 +102639,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -103040,6 +105276,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -103071,6 +105308,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -103515,6 +105753,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -103548,6 +105787,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -103604,6 +105844,7 @@ "id": 494, "platform_framework": [ "1", + "4", "8" ], "component": "Radio", @@ -103631,6 +105872,7 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", + "WebComponents(PC)", "Vue(Mobile)" ], "field_type_text": [] @@ -103709,7 +105951,8 @@ "id": 3257, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Radio", "field_category": 2, @@ -103736,7 +105979,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -104228,6 +106472,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -104259,6 +106504,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -104482,6 +106728,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -104513,6 +106760,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -104690,7 +106938,8 @@ "id": 497, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RadioGroup", "field_category": 1, @@ -104719,7 +106968,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -104729,7 +106979,8 @@ "id": 1735405582, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RadioGroup", "field_category": 1, @@ -104758,7 +107009,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -104819,7 +107071,8 @@ "id": 1651, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RadioGroup", "field_category": 1, @@ -104848,7 +107101,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -104858,6 +107112,7 @@ "id": 501, "platform_framework": [ "1", + "4", "8" ], "component": "RadioGroup", @@ -104885,6 +107140,7 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", + "WebComponents(PC)", "Vue(Mobile)" ], "field_type_text": [] @@ -105041,7 +107297,8 @@ "id": 2568, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105070,7 +107327,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -105080,7 +107338,8 @@ "id": 1715162151, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105109,7 +107368,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -105119,7 +107379,8 @@ "id": 2455, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105148,7 +107409,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -105199,7 +107461,8 @@ "id": 2435, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105229,7 +107492,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array", @@ -105240,7 +107504,8 @@ "id": 2436, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105270,7 +107535,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object", @@ -105281,7 +107547,8 @@ "id": 2434, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105311,7 +107578,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -105322,7 +107590,8 @@ "id": 2438, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105352,7 +107621,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -105363,7 +107633,8 @@ "id": 2452, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105392,7 +107663,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -105402,7 +107674,8 @@ "id": 2440, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105431,7 +107704,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -105441,7 +107715,8 @@ "id": 2441, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105471,7 +107746,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -105482,7 +107758,8 @@ "id": 2456, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105511,7 +107788,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -105521,7 +107799,8 @@ "id": 2471, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105550,7 +107829,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -105560,7 +107840,8 @@ "id": 2442, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105589,7 +107870,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -105599,7 +107881,8 @@ "id": 2453, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105629,7 +107912,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -105640,7 +107924,8 @@ "id": 2451, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105669,7 +107954,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -105679,7 +107965,8 @@ "id": 2443, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105709,7 +107996,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -105720,7 +108008,8 @@ "id": 2445, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 1, @@ -105749,7 +108038,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -105759,7 +108049,8 @@ "id": 2459, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 2, @@ -105786,7 +108077,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -105794,7 +108086,8 @@ "id": 2446, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 2, @@ -105821,7 +108114,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -105829,7 +108123,8 @@ "id": 2457, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 2, @@ -105858,7 +108153,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -105868,7 +108164,8 @@ "id": 2569, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 2, @@ -105895,7 +108192,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -105903,7 +108201,8 @@ "id": 2487, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 2, @@ -105930,7 +108229,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -105938,7 +108238,8 @@ "id": 2458, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 2, @@ -105965,7 +108266,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -105973,7 +108275,8 @@ "id": 2481, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 2, @@ -106000,7 +108303,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -106008,7 +108312,8 @@ "id": 2482, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 2, @@ -106035,7 +108340,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -106043,7 +108349,8 @@ "id": 2480, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 4, @@ -106070,7 +108377,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -106078,7 +108386,8 @@ "id": 2478, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 4, @@ -106107,7 +108416,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -106117,7 +108427,8 @@ "id": 2479, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInput", "field_category": 4, @@ -106146,7 +108457,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -106156,7 +108468,8 @@ "id": 2473, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInputPopup", "field_category": 1, @@ -106185,7 +108498,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -106195,7 +108509,8 @@ "id": 2468, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInputPopup", "field_category": 1, @@ -106224,7 +108539,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -106234,7 +108550,8 @@ "id": 2469, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInputPopup", "field_category": 1, @@ -106263,7 +108580,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -106273,7 +108591,8 @@ "id": 1715410545, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInputPopup", "field_category": 1, @@ -106303,7 +108622,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -106314,7 +108634,8 @@ "id": 2464, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInputPopup", "field_category": 1, @@ -106344,7 +108665,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -106355,7 +108677,8 @@ "id": 2462, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInputPopup", "field_category": 1, @@ -106384,7 +108707,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -106394,7 +108718,8 @@ "id": 2461, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInputPopup", "field_category": 1, @@ -106423,7 +108748,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -106433,7 +108759,8 @@ "id": 2463, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInputPopup", "field_category": 1, @@ -106462,7 +108789,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -106472,7 +108800,8 @@ "id": 2467, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInputPopup", "field_category": 1, @@ -106501,7 +108830,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -106511,7 +108841,8 @@ "id": 2914, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInputPopup", "field_category": 1, @@ -106540,7 +108871,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -106550,7 +108882,8 @@ "id": 2915, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInputPopup", "field_category": 1, @@ -106580,7 +108913,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -106591,7 +108925,8 @@ "id": 2470, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInputPopup", "field_category": 2, @@ -106620,7 +108955,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -106630,7 +108966,8 @@ "id": 2465, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RangeInputPopup", "field_category": 2, @@ -106659,7 +108996,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -106716,7 +109054,8 @@ "id": 2075, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Rate", "field_category": 1, @@ -106745,7 +109084,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -106756,6 +109096,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -106788,6 +109129,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -106935,7 +109277,8 @@ "id": 1354, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Rate", "field_category": 1, @@ -106964,7 +109307,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -107019,7 +109363,8 @@ "id": 2884, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Rate", "field_category": 1, @@ -107048,7 +109393,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -107640,7 +109986,8 @@ "id": 1723453113, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "RateConfig", "field_category": 1, @@ -107669,7 +110016,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -108120,7 +110468,8 @@ "id": 1326, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Row", "field_category": 1, @@ -108149,7 +110498,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -108159,7 +110509,8 @@ "id": 186, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Row", "field_category": 1, @@ -108190,7 +110541,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number", @@ -108247,7 +110599,8 @@ "id": 187, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Row", "field_category": 1, @@ -108276,7 +110629,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -108286,7 +110640,8 @@ "id": 188, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Row", "field_category": 1, @@ -108315,7 +110670,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -108520,7 +110876,8 @@ "id": 2864, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 1, @@ -108549,7 +110906,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -108592,7 +110950,8 @@ "id": 2865, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 1, @@ -108621,7 +110980,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -108703,7 +111063,8 @@ "id": 1543, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 1, @@ -108732,7 +111093,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -108742,7 +111104,8 @@ "id": 2863, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 1, @@ -108771,7 +111134,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -109300,7 +111664,8 @@ "id": 2853, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 1, @@ -109329,7 +111694,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -109421,7 +111787,8 @@ "id": 2845, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 1, @@ -109450,7 +111817,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -109460,7 +111828,8 @@ "id": 1546, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 1, @@ -109490,7 +111859,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -109741,7 +112111,8 @@ "id": 2841, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 1, @@ -109770,7 +112141,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -109940,7 +112312,8 @@ "id": 2847, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 1, @@ -109969,7 +112342,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -110051,7 +112425,8 @@ "id": 2854, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 1, @@ -110080,7 +112455,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -110217,7 +112593,8 @@ "id": 2844, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 1, @@ -110246,7 +112623,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -110377,7 +112755,8 @@ "id": 2858, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 1, @@ -110407,7 +112786,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -110455,7 +112835,8 @@ "id": 2856, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 1, @@ -110484,7 +112865,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -110529,7 +112911,8 @@ "id": 2867, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 1, @@ -110558,7 +112941,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -110608,6 +112992,7 @@ "platform_framework": [ "1", "2", + "4", "16" ], "component": "Search", @@ -110638,6 +113023,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "React(Mobile)" ], "field_type_text": [ @@ -110830,6 +113216,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -110861,6 +113248,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -111050,6 +113438,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -111081,6 +113470,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -111158,7 +113548,8 @@ "id": 2850, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 2, @@ -111185,7 +113576,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -111194,6 +113586,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -111225,6 +113618,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -111302,7 +113696,8 @@ "id": 2848, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Search", "field_category": 2, @@ -111331,7 +113726,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -111763,7 +114159,8 @@ "id": 2374, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -111792,7 +114189,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -111802,7 +114200,8 @@ "id": 3299, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -111831,7 +114230,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -111841,7 +114241,8 @@ "id": 2377, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -111870,7 +114271,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -111880,7 +114282,8 @@ "id": 289, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -111909,7 +114312,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -111919,7 +114323,8 @@ "id": 1805, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -111948,7 +114353,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -111958,7 +114364,8 @@ "id": 295, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -111987,7 +114394,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -111997,7 +114405,8 @@ "id": 291, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112026,7 +114435,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -112036,7 +114446,8 @@ "id": 300, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112066,7 +114477,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -112077,7 +114489,8 @@ "id": 1139, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112106,7 +114519,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -112116,7 +114530,8 @@ "id": 293, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112145,7 +114560,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -112155,7 +114571,8 @@ "id": 2191, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112184,7 +114601,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -112194,7 +114612,8 @@ "id": 2369, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112224,7 +114643,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -112235,7 +114655,8 @@ "id": 307, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112264,7 +114685,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -112274,7 +114696,8 @@ "id": 3317, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112304,7 +114727,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -112315,7 +114739,8 @@ "id": 298, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112344,7 +114769,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -112354,7 +114780,8 @@ "id": 299, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112384,7 +114811,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -112395,7 +114823,8 @@ "id": 356, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112424,7 +114853,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -112434,7 +114864,8 @@ "id": 1668, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112463,7 +114894,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -112473,7 +114905,8 @@ "id": 290, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112502,7 +114935,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -112512,7 +114946,8 @@ "id": 304, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112541,7 +114976,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -112590,7 +115026,8 @@ "id": 2089, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112620,7 +115057,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -112631,7 +115069,8 @@ "id": 2088, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112661,7 +115100,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -112672,7 +115112,8 @@ "id": 292, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112701,7 +115142,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -112711,7 +115153,8 @@ "id": 303, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112740,7 +115183,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -112750,7 +115194,8 @@ "id": 2393, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112779,7 +115224,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -112789,7 +115235,8 @@ "id": 305, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112818,7 +115265,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -112828,7 +115276,8 @@ "id": 2388, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112857,7 +115306,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -112867,7 +115317,8 @@ "id": 302, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112896,7 +115347,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -112945,7 +115397,8 @@ "id": 2331, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -112974,7 +115427,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -112984,7 +115438,8 @@ "id": 2087, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -113013,7 +115468,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -113023,7 +115479,8 @@ "id": 288, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -113052,7 +115509,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -113062,7 +115520,8 @@ "id": 2901, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -113091,7 +115550,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -113101,7 +115561,8 @@ "id": 3315, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -113131,7 +115592,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -113142,7 +115604,8 @@ "id": 3316, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -113171,7 +115634,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -113181,7 +115645,8 @@ "id": 2334, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -113210,7 +115675,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -113220,7 +115686,8 @@ "id": 2333, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -113249,7 +115716,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -113259,7 +115727,8 @@ "id": 2902, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -113289,7 +115758,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -113349,7 +115819,8 @@ "id": 1807, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -113379,7 +115850,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -113390,7 +115862,8 @@ "id": 301, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 1, @@ -113419,7 +115892,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -113429,7 +115903,8 @@ "id": 361, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 2, @@ -113456,7 +115931,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -113464,7 +115940,8 @@ "id": 315, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 2, @@ -113491,7 +115968,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -113499,7 +115977,8 @@ "id": 359, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 2, @@ -113526,7 +116005,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -113534,7 +116014,8 @@ "id": 362, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 2, @@ -113561,7 +116042,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -113569,7 +116051,8 @@ "id": 1808, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 2, @@ -113596,7 +116079,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -113604,7 +116088,8 @@ "id": 360, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 2, @@ -113631,7 +116116,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -113639,7 +116125,8 @@ "id": 2371, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 2, @@ -113666,7 +116153,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -113674,7 +116162,8 @@ "id": 2394, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 2, @@ -113701,7 +116190,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -113709,7 +116199,8 @@ "id": 358, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 2, @@ -113736,7 +116227,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -113744,7 +116236,8 @@ "id": 297, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 2, @@ -113773,7 +116266,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -113783,7 +116277,8 @@ "id": 597, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Select", "field_category": 64, @@ -113812,7 +116307,8 @@ "field_category_text": "", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -113822,7 +116318,8 @@ "id": 1928, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectConfig", "field_category": 1, @@ -113851,7 +116348,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -113861,7 +116359,8 @@ "id": 1924, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectConfig", "field_category": 1, @@ -113890,7 +116389,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -113900,7 +116400,8 @@ "id": 2781, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectConfig", "field_category": 1, @@ -113929,7 +116430,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -113939,7 +116441,8 @@ "id": 1925, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectConfig", "field_category": 1, @@ -113968,7 +116471,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -113978,7 +116482,8 @@ "id": 1927, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectConfig", "field_category": 1, @@ -114007,7 +116512,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -114017,7 +116523,8 @@ "id": 2293, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114046,7 +116553,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -114056,7 +116564,8 @@ "id": 2324, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114085,7 +116594,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -114095,7 +116605,8 @@ "id": 3297, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114124,7 +116635,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -114134,7 +116646,8 @@ "id": 2218, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114163,7 +116676,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -114173,7 +116687,8 @@ "id": 2132, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114202,7 +116717,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -114212,7 +116728,8 @@ "id": 2133, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114241,7 +116758,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -114251,7 +116769,8 @@ "id": 2134, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114280,7 +116799,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -114290,7 +116810,8 @@ "id": 2135, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114319,7 +116840,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -114329,7 +116851,8 @@ "id": 2356, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114359,7 +116882,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -114370,7 +116894,8 @@ "id": 2290, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114399,7 +116924,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -114409,7 +116935,8 @@ "id": 2136, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114439,7 +116966,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -114450,7 +116978,8 @@ "id": 2359, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114479,7 +117008,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -114489,7 +117019,8 @@ "id": 2139, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114518,7 +117049,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -114528,7 +117060,8 @@ "id": 2295, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114557,7 +117090,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -114567,7 +117101,8 @@ "id": 2300, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114597,7 +117132,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -114608,7 +117144,8 @@ "id": 2146, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114637,7 +117174,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -114647,7 +117185,8 @@ "id": 2166, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114676,7 +117215,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -114686,7 +117226,8 @@ "id": 2164, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114715,7 +117256,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -114725,7 +117267,8 @@ "id": 1716901782, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114754,7 +117297,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -114764,7 +117308,8 @@ "id": 2147, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114793,7 +117338,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -114803,7 +117349,8 @@ "id": 3331, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114832,7 +117379,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -114842,7 +117390,8 @@ "id": 1715565629, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114871,7 +117420,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -114881,7 +117431,8 @@ "id": 2148, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114910,7 +117461,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -114920,7 +117472,8 @@ "id": 2149, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114950,7 +117503,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -114961,7 +117515,8 @@ "id": 2150, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -114990,7 +117545,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -115000,7 +117556,8 @@ "id": 2302, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -115030,7 +117587,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -115041,7 +117599,8 @@ "id": 2141, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -115070,7 +117629,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -115080,7 +117640,8 @@ "id": 2163, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -115109,7 +117670,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -115119,7 +117681,8 @@ "id": 2288, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -115149,7 +117712,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -115160,7 +117724,8 @@ "id": 2160, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -115194,7 +117759,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -115209,7 +117775,8 @@ "id": 2144, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 1, @@ -115239,7 +117806,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -115250,7 +117818,8 @@ "id": 2151, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 2, @@ -115277,7 +117846,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -115285,7 +117855,8 @@ "id": 2145, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 2, @@ -115312,7 +117883,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -115320,7 +117892,8 @@ "id": 2154, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 2, @@ -115347,7 +117920,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -115355,7 +117929,8 @@ "id": 2155, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 2, @@ -115382,7 +117957,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -115390,7 +117966,8 @@ "id": 2357, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 2, @@ -115417,7 +117994,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -115425,7 +118003,8 @@ "id": 2156, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 2, @@ -115452,7 +118031,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -115460,7 +118040,8 @@ "id": 2157, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 2, @@ -115487,7 +118068,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -115495,7 +118077,8 @@ "id": 2158, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 2, @@ -115522,7 +118105,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -115530,7 +118114,8 @@ "id": 2165, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 2, @@ -115557,7 +118142,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -115565,7 +118151,8 @@ "id": 2298, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SelectInput", "field_category": 2, @@ -115592,7 +118179,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -116217,7 +118805,8 @@ "id": 1786, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Skeleton", "field_category": 1, @@ -116247,7 +118836,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -116431,6 +119021,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -116462,6 +119053,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -116516,7 +119108,8 @@ "id": 1843, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Skeleton", "field_category": 1, @@ -116545,7 +119138,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -116820,7 +119414,8 @@ "id": 1201, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Slider", "field_category": 1, @@ -116850,7 +119445,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -116861,7 +119457,8 @@ "id": 2418, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Slider", "field_category": 1, @@ -116892,7 +119489,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -116990,7 +119588,8 @@ "id": 1193, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Slider", "field_category": 1, @@ -117019,7 +119618,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -117030,6 +119630,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -117062,6 +119663,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -117299,7 +119901,8 @@ "id": 2875, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Slider", "field_category": 1, @@ -117328,7 +119931,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -117428,7 +120032,8 @@ "id": 1200, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Slider", "field_category": 1, @@ -117457,7 +120062,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -117635,7 +120241,8 @@ "id": 1703150122, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Slider", "field_category": 2, @@ -117662,7 +120269,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -117985,7 +120593,8 @@ "id": 2772, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Space", "field_category": 1, @@ -118014,7 +120623,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -118024,7 +120634,8 @@ "id": 2775, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Space", "field_category": 1, @@ -118053,7 +120664,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -118063,7 +120675,8 @@ "id": 2773, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Space", "field_category": 1, @@ -118092,7 +120705,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -118102,7 +120716,8 @@ "id": 2776, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Space", "field_category": 1, @@ -118132,7 +120747,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -118143,7 +120759,8 @@ "id": 2774, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Space", "field_category": 1, @@ -118174,7 +120791,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -118186,7 +120804,8 @@ "id": 3457, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118215,7 +120834,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -118225,7 +120845,8 @@ "id": 3455, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118254,7 +120875,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -118264,7 +120886,8 @@ "id": 3459, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118293,7 +120916,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -118303,7 +120927,8 @@ "id": 3453, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118332,7 +120957,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -118342,7 +120968,8 @@ "id": 3462, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118372,7 +120999,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -118383,7 +121011,8 @@ "id": 3452, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118412,7 +121041,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -118422,7 +121052,8 @@ "id": 3456, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118451,7 +121082,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -118461,7 +121093,8 @@ "id": 3463, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118491,7 +121124,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -118502,7 +121136,8 @@ "id": 3454, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118531,7 +121166,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -118541,7 +121177,8 @@ "id": 3464, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118571,7 +121208,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -118582,7 +121220,8 @@ "id": 3450, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118612,7 +121251,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -118623,7 +121263,8 @@ "id": 3460, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118652,7 +121293,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -118662,7 +121304,8 @@ "id": 3461, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118691,7 +121334,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -118701,7 +121345,8 @@ "id": 3465, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118731,7 +121376,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -118742,7 +121388,8 @@ "id": 3451, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 1, @@ -118771,7 +121418,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -118781,7 +121429,8 @@ "id": 1700880500, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Statistic", "field_category": 4, @@ -118808,7 +121457,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -118945,7 +121595,8 @@ "id": 620, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StepItem", "field_category": 1, @@ -118975,7 +121626,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -119032,6 +121684,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -119064,6 +121717,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -119293,7 +121947,8 @@ "id": 623, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StepItem", "field_category": 1, @@ -119323,7 +121978,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -120629,7 +123285,8 @@ "id": 616, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Steps", "field_category": 1, @@ -120658,7 +123315,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -120715,7 +123373,8 @@ "id": 1731659548, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Steps", "field_category": 1, @@ -120744,7 +123403,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -120849,6 +123509,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -120878,6 +123539,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -120992,7 +123654,8 @@ "id": 1723520866, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StepsConfig", "field_category": 1, @@ -121021,7 +123684,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -121031,7 +123695,8 @@ "id": 1960, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StepsConfig", "field_category": 1, @@ -121060,7 +123725,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -121462,7 +124128,8 @@ "id": 1853, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StickyItem", "field_category": 1, @@ -121491,7 +124158,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -121501,7 +124169,8 @@ "id": 1852, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StickyItem", "field_category": 1, @@ -121531,7 +124200,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -121542,7 +124212,8 @@ "id": 1854, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StickyItem", "field_category": 1, @@ -121572,7 +124243,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -121583,7 +124255,8 @@ "id": 1855, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StickyItem", "field_category": 1, @@ -121612,7 +124285,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -121622,7 +124296,8 @@ "id": 1856, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StickyItem", "field_category": 1, @@ -121651,7 +124326,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -121661,7 +124337,8 @@ "id": 1845, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StickyTool", "field_category": 1, @@ -121690,7 +124367,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -121700,7 +124378,8 @@ "id": 1847, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StickyTool", "field_category": 1, @@ -121729,7 +124408,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -121739,7 +124419,8 @@ "id": 1846, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StickyTool", "field_category": 1, @@ -121768,7 +124449,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -121778,7 +124460,8 @@ "id": 3336, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StickyTool", "field_category": 1, @@ -121807,7 +124490,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -121817,7 +124501,8 @@ "id": 3334, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StickyTool", "field_category": 1, @@ -121846,7 +124531,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -121856,7 +124542,8 @@ "id": 3335, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StickyTool", "field_category": 1, @@ -121885,7 +124572,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -121895,7 +124583,8 @@ "id": 1848, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StickyTool", "field_category": 1, @@ -121925,7 +124614,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -121936,7 +124626,8 @@ "id": 1857, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StickyTool", "field_category": 2, @@ -121963,7 +124654,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -121971,7 +124663,8 @@ "id": 1858, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "StickyTool", "field_category": 2, @@ -121998,7 +124691,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -122045,7 +124739,8 @@ "id": 869, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Submenu", "field_category": 1, @@ -122075,7 +124770,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -122125,7 +124821,8 @@ "id": 867, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Submenu", "field_category": 1, @@ -122154,7 +124851,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -122164,7 +124862,8 @@ "id": 847, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Submenu", "field_category": 1, @@ -122193,7 +124892,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -122203,7 +124903,8 @@ "id": 3512, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Submenu", "field_category": 1, @@ -122232,7 +124933,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -122242,7 +124944,8 @@ "id": 871, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Submenu", "field_category": 1, @@ -122272,7 +124975,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -122283,7 +124987,8 @@ "id": 866, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Submenu", "field_category": 1, @@ -122313,7 +125018,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -122991,7 +125697,8 @@ "id": 2048, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Swiper", "field_category": 1, @@ -123020,7 +125727,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -123077,7 +125785,8 @@ "id": 1744614994, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Swiper", "field_category": 1, @@ -123106,7 +125815,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -123370,7 +126080,8 @@ "id": 1662, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Swiper", "field_category": 1, @@ -123399,7 +126110,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -123736,6 +126448,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -123768,6 +126481,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -124065,7 +126779,8 @@ "id": 2047, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Swiper", "field_category": 1, @@ -124094,7 +126809,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -124104,7 +126820,8 @@ "id": 2046, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Swiper", "field_category": 1, @@ -124133,7 +126850,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -124144,6 +126862,7 @@ "platform_framework": [ "1", "2", + "4", "16" ], "component": "Swiper", @@ -124174,6 +126893,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "React(Mobile)" ], "field_type_text": [ @@ -124252,7 +126972,8 @@ "id": 2051, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Swiper", "field_category": 2, @@ -124279,7 +127000,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -125144,7 +127866,8 @@ "id": 2039, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SwiperNavigation", "field_category": 1, @@ -125173,7 +127896,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -125265,7 +127989,8 @@ "id": 2040, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SwiperNavigation", "field_category": 1, @@ -125294,7 +128019,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -125304,7 +128030,8 @@ "id": 2038, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SwiperNavigation", "field_category": 1, @@ -125333,7 +128060,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -125382,7 +128110,8 @@ "id": 2037, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "SwiperNavigation", "field_category": 1, @@ -125411,7 +128140,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -125464,7 +128194,8 @@ "id": 1730199095, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Switch", "field_category": 1, @@ -125493,7 +128224,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -125541,6 +128273,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -125572,6 +128305,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -125746,6 +128480,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -125778,6 +128513,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -125924,6 +128660,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -125957,6 +128694,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -126013,7 +128751,8 @@ "id": 132, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Switch", "field_category": 2, @@ -126042,7 +128781,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -126309,7 +129049,8 @@ "id": 2186, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TScroll", "field_category": 1, @@ -126338,7 +129079,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -126348,7 +129090,8 @@ "id": 2187, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TScroll", "field_category": 1, @@ -126377,7 +129120,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -126387,7 +129131,8 @@ "id": 2185, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TScroll", "field_category": 1, @@ -126416,7 +129161,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -126426,7 +129172,8 @@ "id": 2399, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TScroll", "field_category": 1, @@ -126455,7 +129202,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -126465,7 +129213,8 @@ "id": 2184, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TScroll", "field_category": 1, @@ -126494,7 +129243,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -127688,6 +130438,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -127719,6 +130470,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -127777,7 +130529,8 @@ "id": 3337, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TabPanel", "field_category": 1, @@ -127806,7 +130559,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -127897,6 +130651,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -127929,6 +130684,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -128076,7 +130832,8 @@ "id": 164, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TabPanel", "field_category": 1, @@ -128105,7 +130862,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -128116,6 +130874,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -128148,6 +130907,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -128201,7 +130961,8 @@ "id": 727, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TabPanel", "field_category": 2, @@ -128228,7 +130989,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -128271,7 +131033,8 @@ "id": 2525, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnController", "field_category": 1, @@ -128300,7 +131063,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -128310,7 +131074,8 @@ "id": 2522, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnController", "field_category": 1, @@ -128339,7 +131104,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -128349,7 +131115,8 @@ "id": 1694519913, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnController", "field_category": 1, @@ -128378,7 +131145,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -128388,7 +131156,8 @@ "id": 1694519569, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnController", "field_category": 1, @@ -128417,7 +131186,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -128427,7 +131197,8 @@ "id": 2523, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnController", "field_category": 1, @@ -128456,7 +131227,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -128466,7 +131238,8 @@ "id": 2521, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnController", "field_category": 1, @@ -128495,7 +131268,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -128505,7 +131279,8 @@ "id": 2520, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnController", "field_category": 1, @@ -128534,7 +131309,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -128544,7 +131320,8 @@ "id": 1694508459, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnController", "field_category": 1, @@ -128573,7 +131350,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -128583,7 +131361,8 @@ "id": 2528, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnController", "field_category": 1, @@ -128612,7 +131391,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -128622,7 +131402,8 @@ "id": 2524, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnController", "field_category": 1, @@ -128651,7 +131432,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -128661,7 +131443,8 @@ "id": 1690444114, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnFilter", "field_category": 1, @@ -128690,7 +131473,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -128700,7 +131484,8 @@ "id": 1690445477, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnFilter", "field_category": 1, @@ -128729,7 +131514,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -128739,7 +131525,8 @@ "id": 2060, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnFilter", "field_category": 1, @@ -128768,7 +131555,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -128778,7 +131566,8 @@ "id": 2730, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnFilter", "field_category": 1, @@ -128807,7 +131596,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -128817,7 +131607,8 @@ "id": 1693805055, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnFilter", "field_category": 1, @@ -128847,7 +131638,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -128858,7 +131650,8 @@ "id": 2058, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnFilter", "field_category": 1, @@ -128887,7 +131680,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -128897,7 +131691,8 @@ "id": 1709366584, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnFilter", "field_category": 1, @@ -128926,7 +131721,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -128936,7 +131732,8 @@ "id": 3208, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnFilter", "field_category": 1, @@ -128965,7 +131762,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -128975,7 +131773,8 @@ "id": 2059, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnFilter", "field_category": 1, @@ -129004,7 +131803,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -129014,7 +131814,8 @@ "id": 2062, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnFilter", "field_category": 1, @@ -129041,7 +131842,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -129049,7 +131851,8 @@ "id": 2061, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnFilter", "field_category": 1, @@ -129078,7 +131881,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -129088,7 +131892,8 @@ "id": 1690445626, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnFilter", "field_category": 1, @@ -129117,7 +131922,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -129127,7 +131933,8 @@ "id": 2057, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableColumnFilter", "field_category": 1, @@ -129156,7 +131963,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129166,7 +131974,8 @@ "id": 2516, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129195,7 +132004,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129205,7 +132015,8 @@ "id": 2514, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129234,7 +132045,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129244,7 +132056,8 @@ "id": 2513, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129273,7 +132086,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129283,7 +132097,8 @@ "id": 2519, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129312,7 +132127,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129322,7 +132138,8 @@ "id": 2518, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129351,7 +132168,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129361,7 +132179,8 @@ "id": 2512, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129390,7 +132209,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129401,6 +132221,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -129433,6 +132254,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -129445,7 +132267,8 @@ "id": 1919, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129474,7 +132297,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -129484,7 +132308,8 @@ "id": 2378, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129513,7 +132338,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -129523,7 +132349,8 @@ "id": 2676, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129552,7 +132379,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -129562,7 +132390,8 @@ "id": 2246, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129591,7 +132420,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129601,7 +132431,8 @@ "id": 2242, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129630,7 +132461,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129640,7 +132472,8 @@ "id": 2511, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129669,7 +132502,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129679,7 +132513,8 @@ "id": 2515, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129708,7 +132543,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129718,7 +132554,8 @@ "id": 2517, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129747,7 +132584,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129757,7 +132595,8 @@ "id": 1709288328, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129786,7 +132625,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129796,7 +132636,8 @@ "id": 2244, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129825,7 +132666,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129835,7 +132677,8 @@ "id": 2245, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129864,7 +132707,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129874,7 +132718,8 @@ "id": 2243, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129903,7 +132748,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -129913,7 +132759,8 @@ "id": 1920, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129942,7 +132789,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -129952,7 +132800,8 @@ "id": 2671, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableConfig", "field_category": 1, @@ -129981,7 +132830,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -129991,7 +132841,8 @@ "id": 2697, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableEditableCellConfig", "field_category": 1, @@ -130020,7 +132871,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -130030,7 +132882,8 @@ "id": 2695, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableEditableCellConfig", "field_category": 1, @@ -130057,7 +132910,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -130065,7 +132919,8 @@ "id": 2938, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableEditableCellConfig", "field_category": 1, @@ -130094,7 +132949,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -130104,7 +132960,8 @@ "id": 1691031950, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableEditableCellConfig", "field_category": 1, @@ -130133,7 +132990,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -130143,7 +133001,8 @@ "id": 3259, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableEditableCellConfig", "field_category": 1, @@ -130172,7 +133031,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -130182,7 +133042,8 @@ "id": 2698, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableEditableCellConfig", "field_category": 1, @@ -130211,7 +133072,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -130221,7 +133083,8 @@ "id": 2696, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableEditableCellConfig", "field_category": 1, @@ -130251,7 +133114,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object", @@ -130262,7 +133126,8 @@ "id": 2699, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableEditableCellConfig", "field_category": 1, @@ -130291,7 +133156,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -130301,7 +133167,8 @@ "id": 2818, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableEditableCellConfig", "field_category": 1, @@ -130330,7 +133197,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -130340,7 +133208,8 @@ "id": 3359, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableEditableCellConfig", "field_category": 1, @@ -130369,7 +133238,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -130379,7 +133249,8 @@ "id": 2701, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableEditableCellConfig", "field_category": 64, @@ -130406,7 +133277,8 @@ "field_category_text": "", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -130414,7 +133286,8 @@ "id": 2020, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableRowState", "field_category": 1, @@ -130443,7 +133316,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -130453,7 +133327,8 @@ "id": 2016, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableRowState", "field_category": 1, @@ -130482,7 +133357,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -130492,7 +133368,8 @@ "id": 2012, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableRowState", "field_category": 1, @@ -130521,7 +133398,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -130531,7 +133409,8 @@ "id": 2679, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableRowState", "field_category": 1, @@ -130561,7 +133440,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -130572,7 +133452,8 @@ "id": 2014, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableRowState", "field_category": 1, @@ -130601,7 +133482,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -130611,7 +133493,8 @@ "id": 2013, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableRowState", "field_category": 1, @@ -130638,7 +133521,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -130646,7 +133530,8 @@ "id": 2015, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableRowState", "field_category": 1, @@ -130675,7 +133560,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -130685,7 +133571,8 @@ "id": 2010, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableRowState", "field_category": 1, @@ -130712,7 +133599,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -130720,7 +133608,8 @@ "id": 2011, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableRowState", "field_category": 1, @@ -130749,7 +133638,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -130759,7 +133649,8 @@ "id": 2009, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableRowState", "field_category": 64, @@ -130786,7 +133677,8 @@ "field_category_text": "", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -130794,7 +133686,8 @@ "id": 2685, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableTreeConfig", "field_category": 1, @@ -130823,7 +133716,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -130833,7 +133727,8 @@ "id": 2684, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableTreeConfig", "field_category": 1, @@ -130862,7 +133757,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -130872,7 +133768,8 @@ "id": 2686, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableTreeConfig", "field_category": 1, @@ -130901,7 +133798,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -130911,7 +133809,8 @@ "id": 3211, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableTreeConfig", "field_category": 1, @@ -130940,7 +133839,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -130950,7 +133850,8 @@ "id": 2682, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableTreeConfig", "field_category": 1, @@ -130979,7 +133880,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -130989,7 +133891,8 @@ "id": 2683, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TableTreeConfig", "field_category": 1, @@ -131018,7 +133921,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -131028,7 +133932,8 @@ "id": 2874, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tabs", "field_category": 1, @@ -131058,7 +133963,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -131069,7 +133975,8 @@ "id": 159, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tabs", "field_category": 1, @@ -131098,7 +134005,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -131229,7 +134137,8 @@ "id": 156, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tabs", "field_category": 1, @@ -131258,7 +134167,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -131268,7 +134178,8 @@ "id": 2673, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tabs", "field_category": 1, @@ -131297,7 +134208,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -131308,6 +134220,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -131339,6 +134252,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -131426,7 +134340,8 @@ "id": 158, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tabs", "field_category": 1, @@ -131455,7 +134370,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -131465,7 +134381,8 @@ "id": 1717604259, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tabs", "field_category": 1, @@ -131494,7 +134411,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -131548,6 +134466,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -131579,6 +134498,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -131840,7 +134760,8 @@ "id": 157, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tabs", "field_category": 1, @@ -131869,7 +134790,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -131971,7 +134893,8 @@ "id": 725, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tabs", "field_category": 2, @@ -131998,7 +134921,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -132045,7 +134969,8 @@ "id": 3525, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tabs", "field_category": 2, @@ -132072,7 +134997,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -132119,7 +135045,8 @@ "id": 2674, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tabs", "field_category": 2, @@ -132146,7 +135073,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -132154,7 +135082,8 @@ "id": 726, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tabs", "field_category": 2, @@ -132181,7 +135110,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -132480,6 +135410,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -132511,6 +135442,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -132565,7 +135497,8 @@ "id": 1710397655, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tag", "field_category": 1, @@ -132594,7 +135527,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -132605,6 +135539,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -132637,6 +135572,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -132771,6 +135707,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -132802,6 +135739,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -132952,7 +135890,8 @@ "id": 23, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tag", "field_category": 1, @@ -132981,7 +135920,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -133081,7 +136021,8 @@ "id": 1724231877, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tag", "field_category": 1, @@ -133110,7 +136051,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -133393,7 +136335,8 @@ "id": 1953, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagConfig", "field_category": 1, @@ -133422,7 +136365,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -133432,7 +136376,8 @@ "id": 2321, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -133461,7 +136406,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -133471,7 +136417,8 @@ "id": 1715162187, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -133500,7 +136447,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -133510,7 +136458,8 @@ "id": 2099, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -133539,7 +136488,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -133549,7 +136499,8 @@ "id": 2105, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -133578,7 +136529,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -133588,7 +136540,8 @@ "id": 2114, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -133617,7 +136570,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -133627,7 +136581,8 @@ "id": 2131, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -133656,7 +136611,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -133666,7 +136622,8 @@ "id": 2115, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -133695,7 +136652,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -133705,7 +136663,8 @@ "id": 2092, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -133734,7 +136693,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -133744,7 +136704,8 @@ "id": 2355, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -133774,7 +136735,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -133785,7 +136747,8 @@ "id": 2097, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -133815,7 +136778,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -133826,7 +136790,8 @@ "id": 2101, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -133855,7 +136820,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -133865,7 +136831,8 @@ "id": 2104, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -133894,7 +136861,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -133904,7 +136872,8 @@ "id": 2094, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -133933,7 +136902,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -133943,7 +136913,8 @@ "id": 1693985396, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -133972,7 +136943,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -133982,7 +136954,8 @@ "id": 2095, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -134011,7 +136984,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -134021,7 +136995,8 @@ "id": 2194, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -134050,7 +137025,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -134060,7 +137036,8 @@ "id": 2098, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -134089,7 +137066,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -134099,7 +137077,8 @@ "id": 2130, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -134129,7 +137108,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -134140,7 +137120,8 @@ "id": 2129, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -134169,7 +137150,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -134179,7 +137161,8 @@ "id": 2107, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -134209,7 +137192,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -134220,7 +137204,8 @@ "id": 2096, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -134249,7 +137234,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -134259,7 +137245,8 @@ "id": 2171, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -134289,7 +137276,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -134300,7 +137288,8 @@ "id": 2090, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -134329,7 +137318,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -134339,7 +137329,8 @@ "id": 2102, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 1, @@ -134369,7 +137360,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -134380,7 +137372,8 @@ "id": 2127, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 2, @@ -134407,7 +137400,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -134415,7 +137409,8 @@ "id": 2091, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 2, @@ -134442,7 +137437,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -134450,7 +137446,8 @@ "id": 2100, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 2, @@ -134477,7 +137474,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -134485,7 +137483,8 @@ "id": 2323, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 2, @@ -134512,7 +137511,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -134520,7 +137520,8 @@ "id": 2350, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 2, @@ -134547,7 +137548,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -134555,7 +137557,8 @@ "id": 2093, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 2, @@ -134582,7 +137585,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -134590,7 +137594,8 @@ "id": 2128, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 2, @@ -134617,7 +137622,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -134625,7 +137631,8 @@ "id": 2335, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 2, @@ -134652,7 +137659,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -134660,7 +137668,8 @@ "id": 2111, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 2, @@ -134687,7 +137696,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -134695,7 +137705,8 @@ "id": 2112, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 2, @@ -134722,7 +137733,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -134730,7 +137742,8 @@ "id": 2117, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 2, @@ -134757,7 +137770,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -134765,7 +137779,8 @@ "id": 2113, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TagInput", "field_category": 2, @@ -134792,7 +137807,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -134839,7 +137855,8 @@ "id": 1706635187, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Text", "field_category": 1, @@ -134868,7 +137885,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -134917,7 +137935,8 @@ "id": 1706638324, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Text", "field_category": 1, @@ -134947,7 +137966,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -134997,7 +138017,8 @@ "id": 1706635746, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Text", "field_category": 1, @@ -135026,7 +138047,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -135036,7 +138058,8 @@ "id": 1706635833, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Text", "field_category": 1, @@ -135065,7 +138088,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -135075,7 +138099,8 @@ "id": 1706636550, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Text", "field_category": 1, @@ -135105,7 +138130,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -135116,7 +138142,8 @@ "id": 1706635810, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Text", "field_category": 1, @@ -135145,7 +138172,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -135155,7 +138183,8 @@ "id": 1706635845, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Text", "field_category": 1, @@ -135184,7 +138213,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -135194,7 +138224,8 @@ "id": 1706635902, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Text", "field_category": 1, @@ -135224,7 +138255,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -135235,7 +138267,8 @@ "id": 1706635791, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Text", "field_category": 1, @@ -135264,7 +138297,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -135274,7 +138308,8 @@ "id": 1706635970, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Text", "field_category": 1, @@ -135303,7 +138338,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -135313,7 +138349,8 @@ "id": 1706635764, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Text", "field_category": 1, @@ -135342,7 +138379,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -135486,6 +138524,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -135518,6 +138557,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -136267,6 +139307,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -136299,6 +139340,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -136351,6 +139393,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -136382,6 +139425,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -136682,7 +139726,8 @@ "id": 2167, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Textarea", "field_category": 1, @@ -136711,7 +139756,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -136721,7 +139767,8 @@ "id": 2169, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Textarea", "field_category": 1, @@ -136751,7 +139798,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -136812,6 +139860,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -136841,6 +139890,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -136886,6 +139936,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -136915,6 +139966,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -137061,6 +140113,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -137090,6 +140143,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -137169,7 +140223,8 @@ "id": 969, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Textarea", "field_category": 2, @@ -137196,7 +140251,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -137204,7 +140260,8 @@ "id": 971, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Textarea", "field_category": 2, @@ -137231,7 +140288,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -137239,7 +140297,8 @@ "id": 970, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Textarea", "field_category": 2, @@ -137266,7 +140325,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -137309,7 +140369,8 @@ "id": 1712560690, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Textarea", "field_category": 2, @@ -137336,7 +140397,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -137484,7 +140546,8 @@ "id": 630, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -137513,7 +140576,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -137523,7 +140587,8 @@ "id": 1715162131, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -137552,7 +140617,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -137562,7 +140628,8 @@ "id": 629, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -137591,7 +140658,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -137601,7 +140669,8 @@ "id": 637, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -137630,7 +140699,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -137640,7 +140710,8 @@ "id": 632, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -137669,7 +140740,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -137679,7 +140751,8 @@ "id": 628, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -137708,7 +140781,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -137718,7 +140792,8 @@ "id": 636, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -137747,7 +140822,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -137757,7 +140833,8 @@ "id": 2663, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -137786,7 +140863,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -137796,7 +140874,8 @@ "id": 1715826159, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -137826,7 +140905,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -137837,7 +140917,8 @@ "id": 631, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -137866,7 +140947,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -137876,7 +140958,8 @@ "id": 2662, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -137905,7 +140988,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -137954,7 +141038,8 @@ "id": 2942, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -137983,7 +141068,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -137993,7 +141079,8 @@ "id": 1747148051, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -138022,7 +141109,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -138032,7 +141120,8 @@ "id": 1710847014, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -138061,7 +141150,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -138071,7 +141161,8 @@ "id": 1053, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -138100,7 +141191,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -138110,7 +141202,8 @@ "id": 3202, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -138139,7 +141232,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -138149,7 +141243,8 @@ "id": 633, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -138178,7 +141273,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -138227,7 +141323,8 @@ "id": 3204, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -138257,7 +141354,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -138268,7 +141366,8 @@ "id": 627, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -138297,7 +141396,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -138307,7 +141407,8 @@ "id": 1710991987, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 1, @@ -138337,7 +141438,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -138348,7 +141450,8 @@ "id": 639, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 2, @@ -138375,7 +141478,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -138383,7 +141487,8 @@ "id": 642, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 2, @@ -138410,7 +141515,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -138418,7 +141524,8 @@ "id": 1744870559, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 2, @@ -138445,7 +141552,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -138453,7 +141561,8 @@ "id": 641, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 2, @@ -138480,7 +141589,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -138488,7 +141598,8 @@ "id": 1747147791, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 2, @@ -138515,7 +141626,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -138523,7 +141635,8 @@ "id": 638, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 2, @@ -138550,7 +141663,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -138558,7 +141672,8 @@ "id": 1031, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 2, @@ -138585,7 +141700,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -138593,7 +141709,8 @@ "id": 640, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 2, @@ -138620,7 +141737,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -138628,7 +141746,8 @@ "id": 3148, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePicker", "field_category": 2, @@ -138655,7 +141774,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -138663,7 +141783,8 @@ "id": 1911, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePickerConfig", "field_category": 1, @@ -138692,7 +141813,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -138702,7 +141824,8 @@ "id": 1906, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePickerConfig", "field_category": 1, @@ -138731,7 +141854,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -138741,7 +141865,8 @@ "id": 1905, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePickerConfig", "field_category": 1, @@ -138770,7 +141895,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -138780,7 +141906,8 @@ "id": 1913, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePickerConfig", "field_category": 1, @@ -138809,7 +141936,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -138819,7 +141947,8 @@ "id": 1912, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimePickerConfig", "field_category": 1, @@ -138848,7 +141977,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -138858,7 +141988,8 @@ "id": 1038, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -138887,7 +142018,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -138897,7 +142029,8 @@ "id": 1729051739, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -138926,7 +142059,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -138936,7 +142070,8 @@ "id": 1715162174, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -138965,7 +142100,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -138975,7 +142111,8 @@ "id": 1039, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139004,7 +142141,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -139014,7 +142152,8 @@ "id": 1041, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139043,7 +142182,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -139053,7 +142193,8 @@ "id": 1040, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139083,7 +142224,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -139094,7 +142236,8 @@ "id": 1042, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139123,7 +142266,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -139133,7 +142277,8 @@ "id": 1043, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139162,7 +142307,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -139172,7 +142318,8 @@ "id": 1715826184, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139202,7 +142349,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -139213,7 +142361,8 @@ "id": 1045, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139243,7 +142392,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -139254,7 +142404,8 @@ "id": 2664, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139283,7 +142434,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -139293,7 +142445,8 @@ "id": 2943, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139322,7 +142475,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -139332,7 +142486,8 @@ "id": 2665, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139361,7 +142516,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -139371,7 +142527,8 @@ "id": 1747148631, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139400,7 +142557,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -139410,7 +142568,8 @@ "id": 1052, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139439,7 +142598,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -139449,7 +142609,8 @@ "id": 3203, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139478,7 +142639,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -139488,7 +142650,8 @@ "id": 1046, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139517,7 +142680,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -139527,7 +142691,8 @@ "id": 3205, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139557,7 +142722,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -139568,7 +142734,8 @@ "id": 1047, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 1, @@ -139597,7 +142764,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -139607,7 +142775,8 @@ "id": 1048, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 2, @@ -139634,7 +142803,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -139642,7 +142812,8 @@ "id": 1049, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 2, @@ -139669,7 +142840,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -139677,7 +142849,8 @@ "id": 2668, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 2, @@ -139704,7 +142877,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -139712,7 +142886,8 @@ "id": 1051, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 2, @@ -139739,7 +142914,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -139747,7 +142923,8 @@ "id": 3149, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimeRangePicker", "field_category": 2, @@ -139774,7 +142951,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -139782,7 +142960,8 @@ "id": 2823, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Timeline", "field_category": 1, @@ -139811,7 +142990,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -139821,7 +143001,8 @@ "id": 2824, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Timeline", "field_category": 1, @@ -139850,7 +143031,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -139860,7 +143042,8 @@ "id": 2913, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Timeline", "field_category": 1, @@ -139889,7 +143072,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -139899,7 +143083,8 @@ "id": 2826, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Timeline", "field_category": 1, @@ -139928,7 +143113,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -139938,7 +143124,8 @@ "id": 2825, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Timeline", "field_category": 1, @@ -139967,7 +143154,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -140016,7 +143204,8 @@ "id": 2836, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimelineItem", "field_category": 1, @@ -140046,7 +143235,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -140057,7 +143247,8 @@ "id": 2828, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimelineItem", "field_category": 1, @@ -140086,7 +143277,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -140096,7 +143288,8 @@ "id": 2827, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimelineItem", "field_category": 1, @@ -140125,7 +143318,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -140135,7 +143329,8 @@ "id": 2835, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimelineItem", "field_category": 1, @@ -140165,7 +143360,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -140176,7 +143372,8 @@ "id": 2830, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimelineItem", "field_category": 1, @@ -140205,7 +143402,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -140215,7 +143413,8 @@ "id": 2931, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimelineItem", "field_category": 1, @@ -140244,7 +143443,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -140254,7 +143454,8 @@ "id": 1697115042, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TimelineItem", "field_category": 2, @@ -140281,7 +143482,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -140328,7 +143530,8 @@ "id": 1706635466, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Title", "field_category": 1, @@ -140358,7 +143561,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -140408,7 +143612,8 @@ "id": 1706638273, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Title", "field_category": 1, @@ -140438,7 +143643,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -140449,7 +143655,8 @@ "id": 1706635230, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Title", "field_category": 1, @@ -140478,7 +143685,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -141329,7 +144537,8 @@ "id": 3210, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tooltip", "field_category": 1, @@ -141359,7 +144568,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number", @@ -141370,7 +144580,8 @@ "id": 1359, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tooltip", "field_category": 1, @@ -141399,7 +144610,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -141409,7 +144621,8 @@ "id": 1279, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tooltip", "field_category": 1, @@ -141438,7 +144651,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -141448,7 +144662,8 @@ "id": 2620, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tooltip", "field_category": 1, @@ -141477,7 +144692,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -141487,7 +144703,8 @@ "id": 129, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tooltip", "field_category": 1, @@ -141516,7 +144733,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -141526,7 +144744,8 @@ "id": 934, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tooltip", "field_category": 1, @@ -141555,7 +144774,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -141565,7 +144785,8 @@ "id": 3195, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tooltip", "field_category": 16, @@ -141592,7 +144813,8 @@ "field_category_text": "Extends", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -141639,7 +144861,8 @@ "id": 3000, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TooltipLite", "field_category": 1, @@ -141669,7 +144892,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -141680,7 +144904,8 @@ "id": 3002, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TooltipLite", "field_category": 1, @@ -141709,7 +144934,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -141719,7 +144945,8 @@ "id": 3003, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TooltipLite", "field_category": 1, @@ -141748,7 +144975,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -141758,7 +144986,8 @@ "id": 3013, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TooltipLite", "field_category": 1, @@ -141787,7 +145016,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -141797,7 +145027,8 @@ "id": 3004, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TooltipLite", "field_category": 1, @@ -141826,7 +145057,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -141836,7 +145068,8 @@ "id": 3007, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TooltipLite", "field_category": 1, @@ -141866,7 +145099,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -142200,7 +145434,8 @@ "id": 784, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Transfer", "field_category": 1, @@ -142229,7 +145464,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -142429,7 +145665,8 @@ "id": 1690185530, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Transfer", "field_category": 1, @@ -142458,7 +145695,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -142605,7 +145843,8 @@ "id": 2217, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Transfer", "field_category": 1, @@ -142634,7 +145873,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -142910,7 +146150,8 @@ "id": 1214, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Transfer", "field_category": 64, @@ -142939,7 +146180,8 @@ "field_category_text": "", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -142949,7 +146191,8 @@ "id": 1903, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TransferConfig", "field_category": 1, @@ -142978,7 +146221,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -142988,7 +146232,8 @@ "id": 1904, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TransferConfig", "field_category": 1, @@ -143017,7 +146262,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -143027,7 +146273,8 @@ "id": 1902, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TransferConfig", "field_category": 1, @@ -143056,7 +146303,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -143263,7 +146511,8 @@ "id": 536, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 1, @@ -143292,7 +146541,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -143302,7 +146552,8 @@ "id": 537, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 1, @@ -143331,7 +146582,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -143652,7 +146904,8 @@ "id": 1859, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 1, @@ -143682,7 +146935,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean", @@ -143738,7 +146992,8 @@ "id": 2808, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 1, @@ -143767,7 +147022,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -144139,7 +147395,8 @@ "id": 3356, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 1, @@ -144169,7 +147426,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -144503,7 +147761,8 @@ "id": 3357, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 1, @@ -144533,7 +147792,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -144589,7 +147849,8 @@ "id": 3355, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 1, @@ -144618,7 +147879,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -144886,7 +148148,8 @@ "id": 3181, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 2, @@ -144913,7 +148176,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -144921,7 +148185,8 @@ "id": 3183, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 2, @@ -144948,7 +148213,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -144956,7 +148222,8 @@ "id": 3182, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 2, @@ -144983,7 +148250,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -144991,7 +148259,8 @@ "id": 3180, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 2, @@ -145018,7 +148287,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -145026,7 +148296,8 @@ "id": 3184, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 2, @@ -145053,7 +148324,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -145143,7 +148415,8 @@ "id": 3358, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 2, @@ -145170,7 +148443,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -145588,7 +148862,8 @@ "id": 1707275700, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 4, @@ -145615,7 +148890,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -145664,7 +148940,8 @@ "id": 1692780713, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Tree", "field_category": 4, @@ -145691,7 +148968,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -145781,7 +149059,8 @@ "id": 1921, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeConfig", "field_category": 1, @@ -145810,7 +149089,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -145820,7 +149100,8 @@ "id": 1922, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeConfig", "field_category": 1, @@ -145849,7 +149130,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -145859,7 +149141,8 @@ "id": 716, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 1, @@ -145888,7 +149171,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -145898,7 +149182,8 @@ "id": 719, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 1, @@ -145927,7 +149212,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -145937,7 +149223,8 @@ "id": 564, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 1, @@ -145966,7 +149253,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -145976,7 +149264,8 @@ "id": 1701315118, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 1, @@ -146005,7 +149294,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -146015,7 +149305,8 @@ "id": 718, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 1, @@ -146044,7 +149335,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -146054,7 +149346,8 @@ "id": 720, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 1, @@ -146083,7 +149376,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -146093,7 +149387,8 @@ "id": 721, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 1, @@ -146122,7 +149417,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -146132,7 +149428,8 @@ "id": 557, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146159,7 +149456,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146167,7 +149465,8 @@ "id": 1063, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146194,7 +149493,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146202,7 +149502,8 @@ "id": 558, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146229,7 +149530,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146237,7 +149539,8 @@ "id": 559, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146264,7 +149567,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146272,7 +149576,8 @@ "id": 560, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146299,7 +149604,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146307,7 +149613,8 @@ "id": 561, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146334,7 +149641,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146342,7 +149650,8 @@ "id": 555, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146369,7 +149678,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146377,7 +149687,8 @@ "id": 573, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146404,7 +149715,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146412,7 +149724,8 @@ "id": 574, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146439,7 +149752,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146447,7 +149761,8 @@ "id": 576, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146474,7 +149789,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146482,7 +149798,8 @@ "id": 575, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146509,7 +149826,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146517,7 +149835,8 @@ "id": 578, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146544,7 +149863,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146552,7 +149872,8 @@ "id": 579, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146579,7 +149900,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146587,7 +149909,8 @@ "id": 580, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146614,7 +149937,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146622,7 +149946,8 @@ "id": 2021, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146649,7 +149974,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146657,7 +149983,8 @@ "id": 2022, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 4, @@ -146684,7 +150011,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146692,7 +150020,8 @@ "id": 554, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 16, @@ -146719,7 +150048,8 @@ "field_category_text": "Extends", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -146727,7 +150057,8 @@ "id": 556, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeNodeModel", "field_category": 64, @@ -146754,7 +150085,8 @@ "field_category_text": "", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -147349,7 +150681,8 @@ "id": 2375, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -147378,7 +150711,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -147388,7 +150722,8 @@ "id": 3298, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -147417,7 +150752,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -147427,7 +150763,8 @@ "id": 2376, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -147456,7 +150793,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -147466,7 +150804,8 @@ "id": 1133, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -147495,7 +150834,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -147505,7 +150845,8 @@ "id": 1822, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -147534,7 +150875,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -147591,7 +150933,8 @@ "id": 1149, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -147620,7 +150963,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -147630,7 +150974,8 @@ "id": 1136, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -147659,7 +151004,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -147669,7 +151015,8 @@ "id": 1142, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -147699,7 +151046,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -147710,7 +151058,8 @@ "id": 294, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -147739,7 +151088,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -147749,7 +151099,8 @@ "id": 1138, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -147778,7 +151129,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -147833,7 +151185,8 @@ "id": 2367, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -147862,7 +151215,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -147872,7 +151226,8 @@ "id": 2368, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -147902,7 +151257,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -147913,7 +151269,8 @@ "id": 3228, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -147942,7 +151299,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -147995,7 +151353,8 @@ "id": 3323, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148025,7 +151384,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -148036,7 +151396,8 @@ "id": 1140, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148065,7 +151426,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -148075,7 +151437,8 @@ "id": 1141, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148105,7 +151468,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -148116,7 +151480,8 @@ "id": 1190, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148145,7 +151510,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -148155,7 +151521,8 @@ "id": 1821, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148184,7 +151551,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -148284,7 +151652,8 @@ "id": 3484, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148314,7 +151683,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -148325,7 +151695,8 @@ "id": 3483, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148355,7 +151726,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -148366,7 +151738,8 @@ "id": 1137, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148395,7 +151768,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -148405,7 +151779,8 @@ "id": 1144, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148434,7 +151809,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -148444,7 +151820,8 @@ "id": 2396, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148473,7 +151850,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -148483,7 +151861,8 @@ "id": 1145, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148512,7 +151891,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -148522,7 +151902,8 @@ "id": 2387, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148551,7 +151932,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -148561,7 +151943,8 @@ "id": 3333, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148590,7 +151973,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -148600,7 +151984,8 @@ "id": 2330, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148629,7 +152014,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -148639,7 +152025,8 @@ "id": 1132, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148668,7 +152055,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -148678,7 +152066,8 @@ "id": 2916, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148707,7 +152096,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -148717,7 +152107,8 @@ "id": 3321, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148747,7 +152138,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -148758,7 +152150,8 @@ "id": 3322, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148787,7 +152180,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -148797,7 +152191,8 @@ "id": 2329, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148826,7 +152221,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -148836,7 +152232,8 @@ "id": 2917, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148866,7 +152263,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -148877,7 +152275,8 @@ "id": 1156, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148906,7 +152305,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -148916,7 +152316,8 @@ "id": 1131, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -148948,7 +152349,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -149008,7 +152410,8 @@ "id": 1833, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -149037,7 +152440,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -149047,7 +152451,8 @@ "id": 1143, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 1, @@ -149076,7 +152481,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -149086,7 +152492,8 @@ "id": 1155, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 2, @@ -149113,7 +152520,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -149121,7 +152529,8 @@ "id": 1148, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 2, @@ -149148,7 +152557,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -149195,7 +152605,8 @@ "id": 1153, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 2, @@ -149222,7 +152633,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -149230,7 +152642,8 @@ "id": 3314, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 2, @@ -149257,7 +152670,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -149265,7 +152679,8 @@ "id": 1154, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 2, @@ -149292,7 +152707,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -149300,7 +152716,8 @@ "id": 2370, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 2, @@ -149327,7 +152744,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -149335,7 +152753,8 @@ "id": 2395, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 2, @@ -149362,7 +152781,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -149370,7 +152790,8 @@ "id": 1152, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 2, @@ -149397,7 +152818,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -149405,7 +152827,8 @@ "id": 1151, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 2, @@ -149434,7 +152857,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -149444,7 +152868,8 @@ "id": 1150, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelect", "field_category": 64, @@ -149471,7 +152896,8 @@ "field_category_text": "", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -149763,7 +153189,8 @@ "id": 1923, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelectConfig", "field_category": 1, @@ -149792,7 +153219,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -149802,7 +153230,8 @@ "id": 1926, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelectConfig", "field_category": 1, @@ -149831,7 +153260,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -149841,7 +153271,8 @@ "id": 2202, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TreeSelectConfig", "field_category": 1, @@ -149870,7 +153301,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -149880,7 +153312,8 @@ "id": 1723517427, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TypographyConfig", "field_category": 1, @@ -149909,7 +153342,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -149919,7 +153353,8 @@ "id": 1723518937, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TypographyConfig", "field_category": 1, @@ -149948,7 +153383,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -149958,7 +153394,8 @@ "id": 1723517557, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TypographyConfig", "field_category": 1, @@ -149987,7 +153424,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -149997,7 +153435,8 @@ "id": 1706638036, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TypographyCopyable", "field_category": 1, @@ -150026,7 +153465,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -150036,7 +153476,8 @@ "id": 1706638088, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TypographyCopyable", "field_category": 1, @@ -150065,7 +153506,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -150075,7 +153517,8 @@ "id": 1706638172, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TypographyCopyable", "field_category": 1, @@ -150104,7 +153547,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -150114,7 +153558,8 @@ "id": 1706638129, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TypographyCopyable", "field_category": 2, @@ -150141,7 +153586,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -150149,7 +153595,8 @@ "id": 1706637229, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TypographyEllipsis", "field_category": 1, @@ -150178,7 +153625,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -150188,7 +153636,8 @@ "id": 1706637150, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TypographyEllipsis", "field_category": 1, @@ -150217,7 +153666,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -150227,7 +153677,8 @@ "id": 1706637000, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TypographyEllipsis", "field_category": 1, @@ -150256,7 +153707,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -150266,7 +153718,8 @@ "id": 1706637830, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TypographyEllipsis", "field_category": 1, @@ -150295,7 +153748,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -150305,7 +153759,8 @@ "id": 1706637302, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TypographyEllipsis", "field_category": 1, @@ -150334,7 +153789,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -150344,7 +153800,8 @@ "id": 1706637464, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "TypographyEllipsis", "field_category": 2, @@ -150371,7 +153828,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -150379,7 +153837,8 @@ "id": 2995, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -150408,7 +153867,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Array" @@ -150419,6 +153879,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -150450,6 +153911,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -150462,6 +153924,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -150493,6 +153956,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -150710,6 +154174,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -150741,6 +154206,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -150752,7 +154218,8 @@ "id": 2928, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -150781,7 +154248,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -150792,6 +154260,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -150823,6 +154292,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -150834,7 +154304,8 @@ "id": 1699181253, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -150864,7 +154335,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object", @@ -150997,6 +154469,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -151028,6 +154501,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -151160,7 +154634,8 @@ "id": 2991, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -151190,7 +154665,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -151201,7 +154677,8 @@ "id": 886, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -151230,7 +154707,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -151281,7 +154759,8 @@ "id": 2383, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -151310,7 +154789,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -151321,6 +154801,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -151352,6 +154833,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -151403,6 +154885,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -151434,6 +154917,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -151446,6 +154930,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -151477,6 +154962,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -151488,7 +154974,8 @@ "id": 1220, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -151517,7 +155004,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Function" @@ -151645,6 +155133,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -151676,6 +155165,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -151730,7 +155220,8 @@ "id": 1736168020, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -151759,7 +155250,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -151769,7 +155261,8 @@ "id": 1699169820, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -151798,7 +155291,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -151808,7 +155302,8 @@ "id": 3421, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -151837,7 +155332,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -151847,7 +155343,8 @@ "id": 2363, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -151876,7 +155373,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -151886,7 +155384,8 @@ "id": 2733, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -151915,7 +155414,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -151926,6 +155426,7 @@ "platform_framework": [ "1", "2", + "4", "16" ], "component": "Upload", @@ -151956,6 +155457,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "React(Mobile)" ], "field_type_text": [ @@ -152082,6 +155584,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -152113,6 +155616,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -152124,7 +155628,8 @@ "id": 3253, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -152153,7 +155658,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Number" @@ -152164,6 +155670,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -152195,6 +155702,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -152206,7 +155714,8 @@ "id": 881, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -152235,7 +155744,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -152245,7 +155755,8 @@ "id": 1167, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -152274,7 +155785,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -152408,6 +155920,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -152439,6 +155952,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -152487,7 +156001,8 @@ "id": 1699179031, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -152516,7 +156031,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -152526,7 +156042,8 @@ "id": 1689991478, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -152555,7 +156072,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -152565,7 +156083,8 @@ "id": 1790, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -152594,7 +156113,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -152692,7 +156212,8 @@ "id": 2994, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -152721,7 +156242,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -152731,7 +156253,8 @@ "id": 1182, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -152760,7 +156283,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -152770,7 +156294,8 @@ "id": 1183, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -152800,7 +156325,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String", @@ -152850,7 +156376,8 @@ "id": 889, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -152879,7 +156406,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "TNode" @@ -152889,7 +156417,8 @@ "id": 2985, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -152918,7 +156447,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -152928,7 +156458,8 @@ "id": 2362, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -152957,7 +156488,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -152967,7 +156499,8 @@ "id": 1699181198, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -152997,7 +156530,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object", @@ -153008,7 +156542,8 @@ "id": 3486, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 1, @@ -153037,7 +156572,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Boolean" @@ -153048,6 +156584,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -153079,6 +156616,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -153130,6 +156668,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -153161,6 +156700,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -153238,7 +156778,8 @@ "id": 1791, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 2, @@ -153265,7 +156806,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -153274,6 +156816,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -153303,6 +156846,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -153448,7 +156992,8 @@ "id": 1184, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 2, @@ -153475,7 +157020,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -153483,7 +157029,8 @@ "id": 1185, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 2, @@ -153510,7 +157057,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -153518,7 +157066,8 @@ "id": 2628, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 2, @@ -153545,7 +157094,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -153620,6 +157170,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -153649,6 +157200,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -153693,7 +157245,8 @@ "id": 2984, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 2, @@ -153720,7 +157273,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -153728,7 +157282,8 @@ "id": 2945, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 2, @@ -153755,7 +157310,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -153764,6 +157320,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -153793,6 +157350,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -153803,6 +157361,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -153832,6 +157391,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -153842,6 +157402,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -153871,6 +157432,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -153947,6 +157509,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -153976,6 +157539,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -154052,6 +157616,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -154081,6 +157646,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -154157,6 +157723,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -154186,6 +157753,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -154195,7 +157763,8 @@ "id": 2947, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 2, @@ -154222,7 +157791,8 @@ "field_category_text": "Events", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -154230,7 +157800,8 @@ "id": 2989, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 4, @@ -154257,7 +157828,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -154265,7 +157837,8 @@ "id": 3527, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 4, @@ -154292,7 +157865,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -154300,7 +157874,8 @@ "id": 2990, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "Upload", "field_category": 4, @@ -154327,7 +157902,8 @@ "field_category_text": "Functions", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [] }, @@ -154336,6 +157912,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16" ], @@ -154365,6 +157942,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)" ], @@ -154374,7 +157952,8 @@ "id": 1958, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "UploadConfig", "field_category": 1, @@ -154403,7 +157982,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -154413,7 +157993,8 @@ "id": 2234, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "UploadConfig", "field_category": 1, @@ -154442,7 +158023,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -154452,7 +158034,8 @@ "id": 2235, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "UploadConfig", "field_category": 1, @@ -154481,7 +158064,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -154538,7 +158122,8 @@ "id": 1929, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "UploadConfig", "field_category": 1, @@ -154567,7 +158152,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -154577,7 +158163,8 @@ "id": 2241, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "UploadConfig", "field_category": 1, @@ -154606,7 +158193,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "Object" @@ -154616,7 +158204,8 @@ "id": 2229, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "UploadConfigDragger", "field_category": 1, @@ -154645,7 +158234,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -154655,7 +158245,8 @@ "id": 2230, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "UploadConfigDragger", "field_category": 1, @@ -154684,7 +158275,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -154694,7 +158286,8 @@ "id": 2231, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "UploadConfigDragger", "field_category": 1, @@ -154723,7 +158316,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -154733,7 +158327,8 @@ "id": 2236, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "UploadConfigFileList", "field_category": 1, @@ -154762,7 +158357,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -154772,7 +158368,8 @@ "id": 2240, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "UploadConfigFileList", "field_category": 1, @@ -154801,7 +158398,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -154811,7 +158409,8 @@ "id": 2239, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "UploadConfigFileList", "field_category": 1, @@ -154840,7 +158439,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -154850,7 +158450,8 @@ "id": 2237, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "UploadConfigFileList", "field_category": 1, @@ -154879,7 +158480,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" @@ -154889,7 +158491,8 @@ "id": 2238, "platform_framework": [ "1", - "2" + "2", + "4" ], "component": "UploadConfigFileList", "field_category": 1, @@ -154918,7 +158521,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(PC)", - "React(PC)" + "React(PC)", + "WebComponents(PC)" ], "field_type_text": [ "String" diff --git a/packages/scripts/config/index.js b/packages/scripts/config/index.js index 4229dd0cb..7f86bbcae 100644 --- a/packages/scripts/config/index.js +++ b/packages/scripts/config/index.js @@ -109,11 +109,27 @@ const FRAMEWORK_MAP = { vscodePath: `${BASE_PATH_URL}/vscode-tdesign/document/react`, TNode, }, - 'Angular(PC)': { - apiBasePath: '', + 'WebComponents(PC)': { + iconPath: 'tdesign-icons-web-components', + apiBasePath: `${BASE_PATH_URL}/tdesign-web-components/src`, apiEnglishBasePath: '', - tsBasePath: '', + usageDemoBasePath: `${BASE_PATH_URL}/tdesign-web-components/src/$compName/_usage`, + tsBasePath: `${BASE_PATH_URL}/tdesign-web-components/src`, + propsBasePath: `${BASE_PATH_URL}/tdesign-web-components/src`, + tsBaseFileName: 'USE_TYPE_NAME', + globalPath: `${BASE_PATH_URL}/tdesign-web-components/src/common.ts`, + globalTplPath: path.resolve(__dirname, '../types/global/web-components.tpl'), unitBasePath: '', + getDocs: getVueApiDocs, + titleMap: VUE_TITLE_MAP, + commonTypePath: + 'https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/common.ts', + componentPath: + 'https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/', + commonRelativePath: '../common', + componentRelativiePath: '../', + vscodePath: `${BASE_PATH_URL}/vscode-tdesign/document/react`, + TNode, }, 'Vue(Mobile)': { iconPath: 'tdesign-icons-vue-next', @@ -188,7 +204,7 @@ const FRAMEWORK_MAP = { getDocs: getVueApiDocs, titleMap: VUE_TITLE_MAP, }, - UniApp: { + UniApp: { iconPath: 'tdesign-icons-uniapp', apiBasePath: `${BASE_PATH_URL}/tdesign-miniprogram/packages/uniapp-components`, apiEnglishBasePath: '', diff --git a/packages/scripts/docs/vue.js b/packages/scripts/docs/vue.js index 87c32fbb1..ceedddef1 100644 --- a/packages/scripts/docs/vue.js +++ b/packages/scripts/docs/vue.js @@ -35,6 +35,7 @@ const API_DOC_BLOCKS = { 'Vue(PC)': ['Props', 'Events', 'Functions'], 'VueNext(PC)': ['Props', 'Events', 'Functions'], 'React(PC)': ['Props', 'Functions'], + 'WebComponents(PC)': ['Props', 'Functions'], 'Vue(Mobile)': ['Props', 'Events', 'Functions'], 'React(Mobile)': ['Props', 'Functions'], Miniprogram: ['Props', 'Events', 'Functions', 'Slots', 'External Classes', 'CSS Variables'], @@ -433,6 +434,11 @@ function addCommonProperties({ md[category].apis.push(...[ `custom-style | Object | - | ${languageInfo.customStyleTextInUniApp} | N`, ]); + } else if (framework === 'WebComponents(PC)') { + md[category].apis = md[category].apis.concat([ + `className | String | - | ${languageInfo.classNameText} | N`, + `style | Object | - | ${languageInfo.styleText} | N`, + ]); } } diff --git a/packages/scripts/index.js b/packages/scripts/index.js index dfc1fa6ca..16c1d7d1f 100644 --- a/packages/scripts/index.js +++ b/packages/scripts/index.js @@ -139,7 +139,7 @@ function generateComponentApi() { // 生成 props 文件 generateVueProps(baseData, framework, selfUseDefault); // 生成 React defaultProps 文件 - if (framework.indexOf('React') !== -1) { + if (framework.indexOf('React') !== -1 || framework.indexOf('WebComponents') !== -1) { generateReactDefaultProps(baseData, framework); } // 生成 props 单元测试文件 @@ -235,7 +235,7 @@ function validateParams(components) { 'Vue(PC)', 'VueNext(PC)', 'React(PC)', - 'Angular(PC)', + 'WebComponents(PC)', 'Vue(Mobile)', 'React(Mobile)', 'Angular(Mobile)', diff --git a/packages/scripts/map.json b/packages/scripts/map.json index acf25eb6b..68ea23d73 100644 --- a/packages/scripts/map.json +++ b/packages/scripts/map.json @@ -76,6 +76,10 @@ "label": "React(PC)", "value": "2" }, + { + "label": "WebComponents(PC)", + "value": "4" + }, { "label": "Vue(Mobile)", "value": "8" diff --git a/packages/scripts/types/global/web-components.tpl b/packages/scripts/types/global/web-components.tpl new file mode 100644 index 000000000..a264d17c7 --- /dev/null +++ b/packages/scripts/types/global/web-components.tpl @@ -0,0 +1,47 @@ +import { Component, VNode, WeElement } from 'omi'; + +export type TElement = T extends undefined ? WeElement : (props: T) => WeElement; +export type TNode = VNode | ((props: T) => VNode) | object | string | number | boolean | null; + +export type AttachNodeReturnValue = HTMLElement | Element | Document; +export type AttachNode = CSSSelector | ((triggerNode?: HTMLElement) => AttachNodeReturnValue); + +// 与滚动相关的容器类型,因为 document 上没有 scroll 相关属性, 因此排除 document +export type ScrollContainerElement = Window | HTMLElement; +export type ScrollContainer = (() => ScrollContainerElement) | CSSSelector; + +// 组件 TS 类型,暂定 any,可能调整为 () => JSX.Element +export type ComponentType = any; + +export type Styles = Record; + +export interface StyledProps { + className?: string; + style?: Styles; + // shadowDom内部根节点的class + innerClass?: string; + // shadowDom内部根节点的style + innerStyle?: Styles; +} + +/** + * 通用全局类型 + * */ +export type PlainObject = { [key: string]: any }; + +export type OptionData = { + label?: string; + value?: string | number; +} & PlainObject; + +export type TreeOptionData = { + children?: Array> | boolean; + /** option label content */ + label?: string | TNode; + /** option search text */ + text?: string; + /** option value */ + value?: T; + /** option node content */ + content?: string | TNode; +} & PlainObject; \ No newline at end of file diff --git a/packages/server/controllers/ComponentApi/const.ts b/packages/server/controllers/ComponentApi/const.ts index 8992d9e96..cb7c04143 100644 --- a/packages/server/controllers/ComponentApi/const.ts +++ b/packages/server/controllers/ComponentApi/const.ts @@ -21,7 +21,7 @@ const BIGINT = 1024; const P_VUE_PC = 1; const P_REACT_PC = 2; -const P_ANGULAR_PC = 4; +const P_WEB_COMPONENTS_PC = 4; const P_VUE_MOBILE = 8; const P_REACT_MOBILE = 16; const P_ANGULAR_MOBILE = 32; @@ -81,6 +81,7 @@ export const FIELD_TYPE_MAP: MapOptions = { export const PLATFORM_FRAMEWORK: MapOptions = { [P_VUE_PC]: 'Vue(PC)', [P_REACT_PC]: 'React(PC)', + [P_WEB_COMPONENTS_PC]: 'WebComponents(PC)', [P_VUE_MOBILE]: 'Vue(Mobile)', [P_REACT_MOBILE]: 'React(Mobile)', // Angular 暂未有开发计划 From afd41f89781e011cf3c24b88c705dd62edadd18a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Mon, 13 Apr 2026 16:03:46 +0800 Subject: [PATCH 2/6] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=20tdesign-web-co?= =?UTF-8?q?mponents=20=E8=B7=AF=E5=BE=84=E5=B9=B6=E6=B7=BB=E5=8A=A0=20Exte?= =?UTF-8?q?ndedElement=20=E7=B1=BB=E5=9E=8B=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/scripts/config/index.js | 4 ++-- .../scripts/types/global/web-components.tpl | 22 ++++++++++++++++++- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/packages/scripts/config/index.js b/packages/scripts/config/index.js index 7f86bbcae..ffc24334f 100644 --- a/packages/scripts/config/index.js +++ b/packages/scripts/config/index.js @@ -123,9 +123,9 @@ const FRAMEWORK_MAP = { getDocs: getVueApiDocs, titleMap: VUE_TITLE_MAP, commonTypePath: - 'https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/common.ts', + 'https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts', componentPath: - 'https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/', + 'https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/', commonRelativePath: '../common', componentRelativiePath: '../', vscodePath: `${BASE_PATH_URL}/vscode-tdesign/document/react`, diff --git a/packages/scripts/types/global/web-components.tpl b/packages/scripts/types/global/web-components.tpl index a264d17c7..9d9624caf 100644 --- a/packages/scripts/types/global/web-components.tpl +++ b/packages/scripts/types/global/web-components.tpl @@ -44,4 +44,24 @@ export type TreeOptionData = { value?: T; /** option node content */ content?: string | TNode; -} & PlainObject; \ No newline at end of file +} & PlainObject; + +export type ExtendedElement = (HTMLElement | SVGAElement | HTMLInputElement) & { + receiveProps: Function; + update: Function; + queuedUpdate: Function; + store?: unknown; + className?: string; + props: Record; + splitText?: Function; + prevProps?: Record & { + ref?: + | { + current?: unknown; + } + | Function; + }; + attributes: NamedNodeMap; + _component?: Component; + _listeners: Record; +} & Record; \ No newline at end of file From 288966bb7aedbc864499c097aafb5c64e91bce03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Mon, 13 Apr 2026 16:32:31 +0800 Subject: [PATCH 3/6] =?UTF-8?q?feat(scripts):=20=E6=94=AF=E6=8C=81=20WebCo?= =?UTF-8?q?mponents=20=E6=A1=86=E6=9E=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/TDesign.db | Bin 1130496 -> 1130496 bytes .../tdesign-web-components/src/common.ts | 20 +++++++++++ .../src/link/defaultProps.ts | 7 +++- .../src/link/link.en-US.md | 10 ++++-- .../tdesign-web-components/src/link/link.md | 10 ++++-- .../tdesign-web-components/src/link/type.ts | 32 ++++++++++++++++++ packages/scripts/api.json | 8 +++++ packages/scripts/docs/vue.js | 2 +- packages/scripts/types/index.js | 2 ++ packages/scripts/types/t-node.js | 2 ++ 10 files changed, 85 insertions(+), 8 deletions(-) diff --git a/db/TDesign.db b/db/TDesign.db index 5c298a546e2391eb9b576d4c279b592496de2a60..eee78c5a50e7a801269f7c6976dbd48e0d1d4b41 100644 GIT binary patch delta 169 zcmZo@aBXOCogmHlWulBT2h76AQ_ BI5_|S delta 169 zcmZo@aBXOCogmHlcA|_k2h7629A BIC}s9 diff --git a/packages/products/tdesign-web-components/src/common.ts b/packages/products/tdesign-web-components/src/common.ts index db9c002f7..d1b368f79 100644 --- a/packages/products/tdesign-web-components/src/common.ts +++ b/packages/products/tdesign-web-components/src/common.ts @@ -45,6 +45,26 @@ export type TreeOptionData = { /** option node content */ content?: string | TNode; } & PlainObject; + +export type ExtendedElement = (HTMLElement | SVGAElement | HTMLInputElement) & { + receiveProps: Function; + update: Function; + queuedUpdate: Function; + store?: unknown; + className?: string; + props: Record; + splitText?: Function; + prevProps?: Record & { + ref?: + | { + current?: unknown; + } + | Function; + }; + attributes: NamedNodeMap; + _component?: Component; + _listeners: Record; +} & Record; /** * 通用全局类型 * */ diff --git a/packages/products/tdesign-web-components/src/link/defaultProps.ts b/packages/products/tdesign-web-components/src/link/defaultProps.ts index bd3d6c3db..b36190970 100644 --- a/packages/products/tdesign-web-components/src/link/defaultProps.ts +++ b/packages/products/tdesign-web-components/src/link/defaultProps.ts @@ -4,4 +4,9 @@ import { TdLinkProps } from './type'; -export const linkDefaultProps: TdLinkProps = { disabled: undefined, hover: 'underline' }; +export const linkDefaultProps: TdLinkProps = { + disabled: undefined, + hover: 'underline', + size: 'medium', + theme: 'default', +}; diff --git a/packages/products/tdesign-web-components/src/link/link.en-US.md b/packages/products/tdesign-web-components/src/link/link.en-US.md index b1918baf0..da745d9fd 100644 --- a/packages/products/tdesign-web-components/src/link/link.en-US.md +++ b/packages/products/tdesign-web-components/src/link/link.en-US.md @@ -8,12 +8,16 @@ name | type | default | description | required -- | -- | -- | -- | -- className | String | - | className of component | N style | Object | - | CSS(Cascading Style Sheets) | N -content | String / TNode | - | Typescript: `string \| TNode`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/common.ts) | N +children | TNode | - | Typescript: `string \| TNode`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +content | TNode | - | Typescript: `string \| TNode`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N disabled | Boolean | undefined | make link to be disabled | N download | String / Boolean | - | Causes the browser to treat the linked URL as a download | N hover | String | underline | hover link style。options: color/underline | N href | String | - | \- | N -prefixIcon | TNode | - | Typescript: `TNode`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/common.ts) | N -suffixIcon | TNode | - | Typescript: `TNode`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/common.ts) | N +prefixIcon | TElement | - | Typescript: `TNode`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +size | String | medium | options: small/medium/large。Typescript: `SizeEnum`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +suffixIcon | TElement | - | Typescript: `TNode`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N target | String | - | target is an attribute of `
` | N +theme | String | default | options: default/primary/danger/warning/success | N +underline | Boolean | - | \- | N onClick | Function | | Typescript: `(e: MouseEvent) => void`
click event, it won't trigger when it's disabled | N diff --git a/packages/products/tdesign-web-components/src/link/link.md b/packages/products/tdesign-web-components/src/link/link.md index d0d7055c1..660ce10ff 100644 --- a/packages/products/tdesign-web-components/src/link/link.md +++ b/packages/products/tdesign-web-components/src/link/link.md @@ -8,12 +8,16 @@ -- | -- | -- | -- | -- className | String | - | 类名 | N style | Object | - | 样式 | N -content | String / TNode | - | 链接内容。TS 类型:`string \| TNode`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/common.ts) | N +children | TNode | - | 链接内容,同 content。TS 类型:`string \| TNode`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +content | TNode | - | 链接内容。TS 类型:`string \| TNode`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N disabled | Boolean | undefined | 禁用链接。优先级:Link.disabled > Form.disabled | N download | String / Boolean | - | 使得浏览器将链接的 URL 视为可下载资源 | N hover | String | underline | 链接悬浮态样式,有 文本颜色变化、添加下划线等 2 种方法。可选项:color/underline | N href | String | - | 跳转链接 | N -prefixIcon | TNode | - | 前置图标。TS 类型:`TNode`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/common.ts) | N -suffixIcon | TNode | - | 后置图标。TS 类型:`TNode`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/packages/components/common.ts) | N +prefixIcon | TElement | - | 前置图标。TS 类型:`TNode`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +size | String | medium | 尺寸。可选项:small/medium/large。TS 类型:`SizeEnum`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +suffixIcon | TElement | - | 后置图标。TS 类型:`TNode`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N target | String | - | 跳转方式,如:当前页面打开、新页面打开等,同 HTML 属性 target 含义相同 | N +theme | String | default | 组件风格,依次为默认色、品牌色、危险色、警告色、成功色。可选项:default/primary/danger/warning/success | N +underline | Boolean | - | 是否显示链接下划线 | N onClick | Function | | TS 类型:`(e: MouseEvent) => void`
点击事件,禁用状态不会触发点击事件 | N diff --git a/packages/products/tdesign-web-components/src/link/type.ts b/packages/products/tdesign-web-components/src/link/type.ts index 76c771493..4e9ec2b84 100644 --- a/packages/products/tdesign-web-components/src/link/type.ts +++ b/packages/products/tdesign-web-components/src/link/type.ts @@ -4,7 +4,17 @@ * 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC * */ +import type { TNode, TElement, SizeEnum } from '../common'; + export interface TdLinkProps { + /** + * 链接内容,同 content + */ + children?: TNode; + /** + * 链接内容 + */ + content?: TNode; /** * 禁用链接。优先级:Link.disabled > Form.disabled */ @@ -23,11 +33,33 @@ export interface TdLinkProps { * @default '' */ href?: string; + /** + * 前置图标 + */ + prefixIcon?: TElement; + /** + * 尺寸 + * @default medium + */ + size?: SizeEnum; + /** + * 后置图标 + */ + suffixIcon?: TElement; /** * 跳转方式,如:当前页面打开、新页面打开等,同 HTML 属性 target 含义相同 * @default '' */ target?: string; + /** + * 组件风格,依次为默认色、品牌色、危险色、警告色、成功色 + * @default default + */ + theme?: 'default' | 'primary' | 'danger' | 'warning' | 'success'; + /** + * 是否显示链接下划线 + */ + underline?: boolean; /** * 点击事件,禁用状态不会触发点击事件 */ diff --git a/packages/scripts/api.json b/packages/scripts/api.json index 99319181f..309e1c3b6 100644 --- a/packages/scripts/api.json +++ b/packages/scripts/api.json @@ -82605,6 +82605,7 @@ "id": 2892, "platform_framework": [ "2", + "4", "16" ], "component": "Link", @@ -82635,6 +82636,7 @@ "field_category_text": "Props", "platform_framework_text": [ "React(PC)", + "WebComponents(PC)", "React(Mobile)" ], "field_type_text": [ @@ -83194,6 +83196,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16", "64", @@ -83227,6 +83230,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)", "Miniprogram", @@ -83413,6 +83417,7 @@ "platform_framework": [ "1", "2", + "4", "8", "16", "64", @@ -83446,6 +83451,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "Vue(Mobile)", "React(Mobile)", "Miniprogram", @@ -83460,6 +83466,7 @@ "platform_framework": [ "1", "2", + "4", "16", "64", "128" @@ -83492,6 +83499,7 @@ "platform_framework_text": [ "Vue(PC)", "React(PC)", + "WebComponents(PC)", "React(Mobile)", "Miniprogram", "UniApp" diff --git a/packages/scripts/docs/vue.js b/packages/scripts/docs/vue.js index ceedddef1..37d85e3ad 100644 --- a/packages/scripts/docs/vue.js +++ b/packages/scripts/docs/vue.js @@ -322,7 +322,7 @@ function formatToVueApi(api, params) { tmp.splice(i, 1, 'Slot', 'Function'); } else if (isMiniprogram || isUniApp) { tmp.splice(i, 1); // 小程序端插槽部分独立输出 - } else if (params.framework.indexOf('React') !== -1) { + } else if (params.framework.indexOf('React') !== -1 || params.framework.indexOf('WebComponents') !== -1) { tmp = type.join() === 'TNode' ? ['TElement'] : ['TNode']; } type = tmp; diff --git a/packages/scripts/types/index.js b/packages/scripts/types/index.js index c23533679..4d36a0f03 100644 --- a/packages/scripts/types/index.js +++ b/packages/scripts/types/index.js @@ -456,6 +456,7 @@ function formatImportsPath(imports, framework) { 'React(PC)', 'Vue(PC)', 'VueNext(PC)', + 'WebComponents(PC)', 'Vue(Mobile)', 'React(Mobile)', 'Miniprogram', @@ -739,6 +740,7 @@ function combineTsFile(componentMap, framework) { 'React(PC)', 'Vue(PC)', 'VueNext(PC)', + 'WebComponents(PC)', 'Vue(Mobile)', 'Miniprogram', 'React(Mobile)', diff --git a/packages/scripts/types/t-node.js b/packages/scripts/types/t-node.js index fd5e998e3..31e2a7bb1 100644 --- a/packages/scripts/types/t-node.js +++ b/packages/scripts/types/t-node.js @@ -68,6 +68,8 @@ function formatTNode(framework, type, customType) { return getVueTNodeType(type, newCustomType); case 'React(PC)': return getReactTNodeType(type, newCustomType); + case 'WebComponents(PC)': + return getReactTNodeType(type, newCustomType); case 'React(Mobile)': return getReactTNodeType(type, newCustomType); case 'Miniprogram': From 6643a15e49de69d166f5604fd1d46529306b0f01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Mon, 13 Apr 2026 18:16:05 +0800 Subject: [PATCH 4/6] =?UTF-8?q?docs(button):=20=E6=B7=BB=E5=8A=A0=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E7=BB=84=E4=BB=B6=E6=96=87=E6=A1=A3=E5=92=8C=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/TDesign.db | Bin 1130496 -> 1130496 bytes .../src/button/button.en-US.md | 29 ++++++ .../src/button/button.md | 29 ++++++ .../src/button/defaultProps.ts | 18 ++++ .../tdesign-web-components/src/button/type.ts | 96 ++++++++++++++++++ packages/scripts/api.json | 57 +++++++++++ 6 files changed, 229 insertions(+) create mode 100644 packages/products/tdesign-web-components/src/button/button.en-US.md create mode 100644 packages/products/tdesign-web-components/src/button/button.md create mode 100644 packages/products/tdesign-web-components/src/button/defaultProps.ts create mode 100644 packages/products/tdesign-web-components/src/button/type.ts diff --git a/db/TDesign.db b/db/TDesign.db index eee78c5a50e7a801269f7c6976dbd48e0d1d4b41..f2bbc593a97fae7c90af5977ba840eb2eb56d94f 100644 GIT binary patch delta 401 zcmZo@aBXOCogmHlf1->t zZizymfUacZJ)pq55342@iz;mn{xP+h@qYWuV#e(+iLgoxv;Ep1g?#h*^P{4T#x+m}7hLCe9T=yW4q=asn|I5OV`D4-oSL zG2eEcqx?Ur*qoVmF!1_K|C7iUF+Hq_Uu=7YgMbJV6Tiy#J|}_q+>EQH*ZB#oV#~a9 z@Vub-c0GTAYY+HXx&AQlP2_Fisp9VB`m+XMSRgLXOwY?NN_8wLDauSLElDjFh>m?aXGKPSamljHfXXr!IXytL5p&dCwY_8yOgx=^B{m8X7AY8dw<`TN#^T3h|jb78NB{+7tuL O%}cl2-f1mZ&H@0`K$s5z delta 254 zcmZo@aBXOCogmHlWulBT zZizymfUacZJ)pq55342@iz;mn{xP+h@pk*mV#e(+iLgoxv;Ep1g?#h*^P{4T#x+m}7hLCe9T=yW4q=asn|I5OV`D4-oSL zG2eEcqx?Ur*qoSlF!1_K|C7iUF+Hq_Uu=7YgMbJV6DRZbJ|}_q+>BeM*ZB#on$FYA q&$ZpiU*OUM9v1FS2EK{BEj(4+om&+-b2&E~Jm6v4-f1mZ&H?}~Ibs?B diff --git a/packages/products/tdesign-web-components/src/button/button.en-US.md b/packages/products/tdesign-web-components/src/button/button.en-US.md new file mode 100644 index 000000000..761c181a2 --- /dev/null +++ b/packages/products/tdesign-web-components/src/button/button.en-US.md @@ -0,0 +1,29 @@ +:: BASE_DOC :: + +## API + +### Button Props + +name | type | default | description | required +-- | -- | -- | -- | -- +className | String | - | className of component | N +style | Object | - | CSS(Cascading Style Sheets) | N +block | Boolean | false | make button to be a block-level element | N +children | TNode | - | button's children elements。Typescript: `string \| TNode`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +content | TNode | - | button's children elements。Typescript: `string \| TNode`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +disabled | Boolean | undefined | disable the button, make it can not be clicked | N +form | String | undefined | native `form` attribute,which supports triggering events for a form with a specified id through the use of the form attribute | N +ghost | Boolean | false | make background-color to be transparent | N +href | String | - | \- | N +icon | TElement | - | use it to set left icon in button。Typescript: `TNode`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +ignoreAttributes | Array | [] | Typescript: `Array` | N +loading | Boolean | false | set button to be loading state | N +loadingProps | Object | - | Typescript: `LoadingProps`,[Loading API Documents](./loading?tab=api)。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/button/type.ts) | N +shape | String | rectangle | button shape。options: rectangle/square/round/circle | N +size | String | medium | a button has four size。options: small/medium/large。Typescript: `SizeEnum`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +suffix | TElement | - | Typescript: `TNode`。[see more ts definition](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +tag | String | - | HTML Tag Element。options: button/a/div | N +theme | String | - | button theme。options: default/primary/danger/warning/success | N +type | String | button | type of button element in html。options: submit/reset/button | N +variant | String | base | variant of button。options: base/outline/dashed/text | N +onClick | Function | | Typescript: `(e: MouseEvent) => void`
trigger on click | N diff --git a/packages/products/tdesign-web-components/src/button/button.md b/packages/products/tdesign-web-components/src/button/button.md new file mode 100644 index 000000000..63d6b579f --- /dev/null +++ b/packages/products/tdesign-web-components/src/button/button.md @@ -0,0 +1,29 @@ +:: BASE_DOC :: + +## API + +### Button Props + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +className | String | - | 类名 | N +style | Object | - | 样式 | N +block | Boolean | false | 是否为块级元素 | N +children | TNode | - | 按钮内容,同 content。TS 类型:`string \| TNode`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +content | TNode | - | 按钮内容。TS 类型:`string \| TNode`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +disabled | Boolean | undefined | 禁用状态。优先级:Button.disabled > Form.disabled | N +form | String | undefined | 原生的form属性,支持用于通过 form 属性触发对应 id 的 form 的表单事件 | N +ghost | Boolean | false | 是否为幽灵按钮(镂空按钮) | N +href | String | - | 跳转地址。href 存在时,按钮标签默认使用 `
` 渲染;如果指定了 `tag` 则使用指定的标签渲染 | N +icon | TElement | - | 按钮内部图标,可完全自定义。TS 类型:`TNode`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +ignoreAttributes | Array | [] | 在host标签上忽略的属性。TS 类型:`Array` | N +loading | Boolean | false | 是否显示为加载状态 | N +loadingProps | Object | - | 透传 Loading 组件全部属性。TS 类型:`LoadingProps`,[Loading API Documents](./loading?tab=api)。[详细类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/button/type.ts) | N +shape | String | rectangle | 按钮形状,有 4 种:长方形、正方形、圆角长方形、圆形。可选项:rectangle/square/round/circle | N +size | String | medium | 组件尺寸。可选项:small/medium/large。TS 类型:`SizeEnum`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +suffix | TElement | - | 右侧内容,可用于定义右侧图标。TS 类型:`TNode`。[通用类型定义](https://github.com/TDesignOteam/tdesign-web-components/blob/develop/src/common.ts) | N +tag | String | - | 渲染按钮的 HTML 标签,默认使用标签 `