@plasmicpkgs/antd 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/antd.cjs.development.js +1343 -0
- package/dist/antd.cjs.development.js.map +1 -0
- package/dist/antd.cjs.production.min.js +2 -0
- package/dist/antd.cjs.production.min.js.map +1 -0
- package/dist/antd.esm.js +1290 -0
- package/dist/antd.esm.js.map +1 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +8 -0
- package/dist/registerButton.d.ts +5 -0
- package/dist/registerCarousel.d.ts +5 -0
- package/dist/registerCheckbox.d.ts +8 -0
- package/dist/registerCollapse.d.ts +7 -0
- package/dist/registerDropdown.d.ts +11 -0
- package/dist/registerInput.d.ts +14 -0
- package/dist/registerMenu.d.ts +15 -0
- package/dist/registerOption.d.ts +8 -0
- package/dist/registerSelect.d.ts +5 -0
- package/dist/registerSlider.d.ts +5 -0
- package/dist/registerSwitch.d.ts +5 -0
- package/dist/registerable.d.ts +4 -0
- package/package.json +47 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"antd.cjs.development.js","sources":["../src/registerButton.ts","../src/registerCheckbox.tsx","../src/registerCarousel.ts","../src/registerCollapse.ts","../src/registerDropdown.tsx","../src/registerInput.ts","../src/registerMenu.ts","../src/registerOption.ts","../src/registerSelect.ts","../src/registerSlider.ts","../src/registerSwitch.ts","../src/index.ts"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { Button, ButtonProps } from \"antd\";\nimport { Registerable } from \"./registerable\";\n\nexport const buttonMeta: ComponentMeta<ButtonProps> = {\n name: \"AntdButton\",\n displayName: \"Antd Button\",\n props: {\n type: {\n type: \"choice\",\n options: [\"default\", \"primary\", \"ghost\", \"dashed\", \"link\", \"text\"],\n description: \"Can be set to primary, ghost, dashed, link, text, default\",\n },\n size: {\n type: \"choice\",\n options: [\"small\", \"medium\", \"large\"],\n description: \"Set the size of button\",\n },\n shape: {\n type: \"choice\",\n options: [\"default\", \"circle\", \"round\"],\n description: \"Can be set button shape\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Disabled state of button\",\n },\n ghost: {\n type: \"boolean\",\n description:\n \"Make background transparent and invert text and border colors\",\n },\n danger: {\n type: \"boolean\",\n description: \"Set the danger status of button\",\n },\n block: {\n type: \"boolean\",\n description: \"Option to fit button width to its parent width\",\n },\n loading: {\n type: \"boolean\",\n description: \"Set the loading status of button\",\n },\n href: {\n type: \"string\",\n description: \"Redirect url of link button\",\n },\n target: {\n type: \"choice\",\n options: [\"_blank\", \"_self\", \"_parent\", \"_top\"],\n description:\n \"Same as target attribute of a, works when href is specified\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Button\",\n },\n ],\n },\n },\n importPath: \"antd\",\n importName: \"Button\",\n};\n\nexport function registerButton(\n loader?: Registerable,\n customButtonMeta?: ComponentMeta<ButtonProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Button, customButtonMeta ?? buttonMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport React from \"react\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport Checkbox, { CheckboxProps } from \"antd/lib/checkbox/Checkbox\";\nimport CheckboxGroup, { CheckboxGroupProps } from \"antd/lib/checkbox/Group\";\nimport { Registerable } from \"./registerable\";\n\nclass CheckboxWrapper extends React.Component<CheckboxProps> {\n render() {\n return <Checkbox {...this.props} />;\n }\n}\n\nexport const checkboxMeta: ComponentMeta<CheckboxProps> = {\n name: \"AntdCheckbox\",\n displayName: \"Antd Checkbox\",\n props: {\n autoFocus: {\n type: \"boolean\",\n description: \"If get focus when component mounted\",\n },\n checked: {\n type: \"boolean\",\n editOnly: true,\n uncontrolledProp: \"defaultChecked\",\n description:\n \"Specifies the initial state: whether or not the checkbox is selected\",\n },\n disabled: {\n type: \"boolean\",\n description: \"If disable checkbox\",\n },\n indeterminate: {\n type: \"boolean\",\n description: \"The indeterminate checked state of checkbox\",\n },\n value: {\n type: \"string\",\n description: \"The checkbox value\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Checkbox\",\n },\n ],\n },\n },\n importPath: \"antd/lib/checkbox/Checkbox\",\n importName: \"Checkbox\",\n defaultStyles: {\n marginLeft: \"0\",\n },\n isDefaultExport: true,\n};\n\nexport function registerCheckbox(\n loader?: Registerable,\n customCheckboxMeta?: ComponentMeta<CheckboxProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(CheckboxWrapper, customCheckboxMeta ?? checkboxMeta);\n}\n\nexport const checkboxGroupMeta: ComponentMeta<CheckboxGroupProps> = {\n name: \"AntdCheckboxGroup\",\n displayName: \"Antd Checkbox Group\",\n props: {\n disabled: {\n type: \"boolean\",\n description: \"If disable all checkboxes\",\n },\n value: {\n type: \"object\",\n editOnly: true,\n uncontrolledProp: \"defaultValue\",\n description: \"Default selected value\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [\"AntdCheckbox\"],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdCheckbox\",\n },\n ],\n },\n },\n importPath: \"antd/lib/checkbox/Group\",\n importName: \"CheckboxGroup\",\n isDefaultExport: true,\n};\n\nexport function registerCheckboxGroup(\n loader?: Registerable,\n customCheckboxGroupMeta?: ComponentMeta<CheckboxGroupProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(\n CheckboxGroup,\n customCheckboxGroupMeta ?? checkboxGroupMeta\n );\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { Carousel, CarouselProps } from \"antd\";\nimport { CSSProperties } from \"react\";\nimport { Registerable } from \"./registerable\";\n\nconst contentStyle: CSSProperties = {\n height: \"160px\",\n color: \"#fff\",\n lineHeight: \"160px\",\n textAlign: \"center\",\n backgroundColor: \"#364d79\",\n};\n\nexport const carouselMeta: ComponentMeta<CarouselProps> = {\n name: \"AntdCarousel\",\n displayName: \"Antd Carousel\",\n props: {\n autoplay: {\n type: \"boolean\",\n description: \"Whether to scroll automatically\",\n },\n dotPosition: {\n type: \"choice\",\n options: [\"top\", \"bottom\", \"left\", \"right\"],\n description: \"The position of the dots\",\n },\n dots: {\n type: \"boolean\",\n description: \"Whether to show the dots at the bottom of the gallery\",\n },\n effect: {\n type: \"choice\",\n options: [\"scrollx\", \"fade\"],\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"vbox\",\n children: {\n type: \"text\",\n value: \"1\",\n styles: contentStyle,\n },\n },\n {\n type: \"vbox\",\n children: {\n type: \"text\",\n value: \"2\",\n styles: contentStyle,\n },\n },\n ],\n },\n },\n importPath: \"antd\",\n importName: \"Carousel\",\n};\n\nexport function registerCarousel(\n loader?: Registerable,\n customCarouselMeta?: ComponentMeta<CarouselProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Carousel, customCarouselMeta ?? carouselMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { CollapseProps, CollapsePanelProps } from \"antd\";\nimport CollapsePanel from \"antd/lib/collapse/CollapsePanel\";\nimport Collapse from \"antd/lib/collapse/Collapse\";\nimport { Registerable } from \"./registerable\";\n\nexport const collapstePanelMeta: ComponentMeta<CollapsePanelProps> = {\n name: \"AntdCollapsePanel\",\n displayName: \"Antd Collapse Panel\",\n props: {\n collapsible: {\n type: \"choice\",\n options: [\"header\", \"disabled\"],\n description:\n \"Specify whether the panel be collapsible or the trigger area of collapsible\",\n },\n forceRender: {\n type: \"boolean\",\n description:\n \"Forced render of content on panel, instead of lazy rending after clicking on header\",\n },\n header: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Header\",\n },\n ],\n },\n key: {\n type: \"string\",\n description: \"Unique key identifying the panel from among its siblings\",\n },\n showArrow: {\n type: \"boolean\",\n description: \"If false, panel will not show arrow icon\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Insert text here\",\n },\n ],\n },\n },\n importPath: \"antd/lib/collapse/CollapsePanel\",\n importName: \"CollapsePanel\",\n isDefaultExport: true,\n};\n\nexport function registerCollapsePanel(\n loader?: Registerable,\n customCollapsePanelMeta?: ComponentMeta<CollapsePanelProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(\n CollapsePanel,\n customCollapsePanelMeta ?? collapstePanelMeta\n );\n}\n\nexport const collapsteMeta: ComponentMeta<CollapseProps> = {\n name: \"AntdCollapse\",\n displayName: \"Antd Collapse\",\n props: {\n accordion: {\n type: \"boolean\",\n description: \"If true, Collapse renders as Accordion\",\n },\n activeKey: {\n type: \"object\",\n editOnly: true,\n uncontrolledProp: \"defaultActiveKey\",\n description: \"Key of the active panel\",\n },\n bordered: {\n type: \"boolean\",\n description: \"Toggles rendering of the border around the collapse block\",\n },\n collapsible: {\n type: \"choice\",\n options: [\"header\", \"disabled\"],\n description:\n \"Specify whether the panels of children be collapsible or the trigger area of collapsible\",\n },\n expandIconPosition: {\n type: \"choice\",\n options: [\"left\", \"right\"],\n description: \"Set expand icon position\",\n },\n ghost: {\n type: \"boolean\",\n description:\n \"Make the collapse borderless and its background transparent\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [\"AntdCollapsePanel\"],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdCollapsePanel\",\n },\n ],\n },\n },\n importPath: \"antd/lib/collapse/Collapse\",\n importName: \"Collapse\",\n isDefaultExport: true,\n};\n\nexport function registerCollapse(\n loader?: Registerable,\n customCollapseMeta?: ComponentMeta<CollapseProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Collapse, customCollapseMeta ?? collapsteMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport React from \"react\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport AntdDropdown, {\n DropdownButtonProps,\n DropDownProps,\n} from \"antd/lib/dropdown\";\nimport { Registerable } from \"./registerable\";\nimport DropdownButton from \"antd/lib/dropdown/dropdown-button\";\n\nexport class Dropdown extends React.Component<DropDownProps> {\n render() {\n const finalProps = { ...this.props };\n finalProps.children =\n typeof this.props.children === \"string\" ? (\n <div>{this.props.children}</div>\n ) : (\n this.props.children\n );\n return <AntdDropdown {...finalProps}>{}</AntdDropdown>;\n }\n}\n\nexport const dropdownMeta: ComponentMeta<DropDownProps> = {\n name: \"AntdDropdown\",\n displayName: \"Antd Dropdown\",\n props: {\n arrow: {\n type: \"boolean\",\n description: \"Whether the dropdown arrow should be visible\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Whether the dropdown menu is disabled\",\n },\n overlay: {\n type: \"slot\",\n allowedComponents: [\"AntdMenu\"],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdMenu\",\n },\n ],\n },\n placement: {\n type: \"choice\",\n options: [\n \"bottomLeft\",\n \"bottomCenter\",\n \"bottomRight\",\n \"topLeft\",\n \"topCenter\",\n \"topRight\",\n ],\n description: \"Placement of popup menu\",\n },\n trigger: {\n type: \"choice\",\n options: [\"click\", \"hover\", \"contextMenu\"],\n description: \"The trigger mode which executes the dropdown action\",\n },\n visible: {\n type: \"boolean\",\n description: \"Whether the dropdown menu is currently visible\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Dropdown\",\n },\n ],\n },\n },\n importPath: \"@plasmicpkgs/antd\",\n importName: \"Dropdown\",\n};\n\nexport function registerDropdown(\n loader?: Registerable,\n customDropdownMeta?: ComponentMeta<DropDownProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Dropdown, customDropdownMeta ?? dropdownMeta);\n}\n\nexport const dropdownButtonMeta: ComponentMeta<DropdownButtonProps> = {\n name: \"AntdDropdownButton\",\n displayName: \"Antd Dropdown Button\",\n props: {\n disabled: {\n type: \"boolean\",\n description: \"Whether the dropdown menu is disabled\",\n },\n icon: \"slot\",\n overlay: {\n type: \"slot\",\n allowedComponents: [\"AntdMenu\"],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdMenu\",\n },\n ],\n },\n placement: {\n type: \"choice\",\n options: [\n \"bottomLeft\",\n \"bottomCenter\",\n \"bottomRight\",\n \"topLeft\",\n \"topCenter\",\n \"topRight\",\n ],\n description: \"Placement of popup menu\",\n },\n size: {\n type: \"choice\",\n options: [\"small\", \"medium\", \"large\"],\n description: \"Set the size of button\",\n },\n trigger: {\n type: \"choice\",\n options: [\"click\", \"hover\", \"contextMenu\"],\n description: \"The trigger mode which executes the dropdown action\",\n },\n type: {\n type: \"choice\",\n options: [\"default\", \"primary\", \"ghost\", \"dashed\", \"link\", \"text\"],\n description: \"Can be set to primary, ghost, dashed, link, text, default\",\n },\n visible: {\n type: \"boolean\",\n description: \"Whether the dropdown menu is currently visible\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Dropdown\",\n },\n ],\n },\n },\n importPath: \"antd/lib/dropdown/dropdown-button\",\n importName: \"DropdownButton\",\n isDefaultExport: true,\n};\n\nexport function registerDropdownButton(\n loader?: Registerable,\n customDropdownButtonMeta?: ComponentMeta<DropDownProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(\n DropdownButton,\n customDropdownButtonMeta ?? dropdownButtonMeta\n );\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { Input, InputProps } from \"antd\";\nimport {\n GroupProps,\n PasswordProps,\n SearchProps,\n TextAreaProps,\n} from \"antd/lib/input\";\nimport TextArea from \"antd/lib/input/TextArea\";\nimport Search from \"antd/lib/input/Search\";\nimport Password from \"antd/lib/input/Password\";\nimport InputGroup from \"antd/lib/input/Group\";\nimport { Registerable } from \"./registerable\";\n\nexport const inputMeta: ComponentMeta<InputProps> = {\n name: \"AntdInput\",\n displayName: \"Antd Input\",\n props: {\n addonAfter: \"slot\",\n addonBefore: \"slot\",\n allowClear: {\n type: \"boolean\",\n description: \"If allow to remove input content with clear icon\",\n },\n bordered: {\n type: \"boolean\",\n description: \"Whether has border style\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Whether the input is disabled\",\n },\n id: {\n type: \"string\",\n description: \"The ID for input\",\n },\n maxLength: {\n type: \"number\",\n description: \"The max length\",\n },\n placeholder: {\n type: \"string\",\n description: \"Placeholder for the input\",\n },\n prefix: \"slot\",\n size: {\n type: \"choice\",\n options: [\"small\", \"middle\", \"large\"],\n description: \"The size of the input box\",\n },\n suffix: \"slot\",\n type: {\n type: \"string\",\n description: \"The type of input\",\n },\n value: {\n type: \"string\",\n editOnly: true,\n uncontrolledProp: \"defaultValue\",\n },\n },\n importPath: \"antd\",\n importName: \"Input\",\n};\n\nexport function registerInput(\n loader?: Registerable,\n customInputMeta?: ComponentMeta<InputProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Input, customInputMeta ?? inputMeta);\n}\n\nexport const inputTextAreaMeta: ComponentMeta<TextAreaProps> = {\n name: \"AntdInputTextArea\",\n displayName: \"Antd Input Text Area\",\n props: {\n allowClear: {\n type: \"boolean\",\n description: \"If allow to remove input content with clear icon\",\n },\n autoSize: {\n type: \"object\",\n description:\n \"Height autosize feature, can be set to true | false or an object { minRows: 2, maxRows: 6 }\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Whether the input is disabled\",\n },\n bordered: {\n type: \"boolean\",\n description: \"Whether has border style\",\n },\n showCount: {\n type: \"boolean\",\n description: \"Whether show text count\",\n },\n id: {\n type: \"string\",\n description: \"The ID for input\",\n },\n maxLength: {\n type: \"number\",\n description: \"The max length\",\n },\n placeholder: {\n type: \"string\",\n description: \"Placeholder for the input\",\n },\n value: {\n type: \"string\",\n editOnly: true,\n uncontrolledProp: \"defaultValue\",\n },\n },\n importPath: \"antd/lib/input/TextArea\",\n importName: \"TextArea\",\n isDefaultExport: true,\n};\n\nexport function registerInputTextArea(\n loader?: Registerable,\n customInputTextAreaMeta?: ComponentMeta<TextAreaProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(TextArea, customInputTextAreaMeta ?? inputTextAreaMeta);\n}\n\nexport const inputSearchMeta: ComponentMeta<SearchProps> = {\n name: \"AntdInputSearch\",\n displayName: \"Antd Input Search\",\n props: {\n addonBefore: \"slot\",\n allowClear: {\n type: \"boolean\",\n description: \"If allow to remove input content with clear icon\",\n },\n bordered: {\n type: \"boolean\",\n description: \"Whether has border style\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Whether the input is disabled\",\n },\n enterButton: \"slot\",\n id: {\n type: \"string\",\n description: \"The ID for input\",\n },\n loading: {\n type: \"boolean\",\n description: \"Search box with loading\",\n },\n maxLength: {\n type: \"number\",\n description: \"The max length\",\n },\n placeholder: {\n type: \"string\",\n description: \"Placeholder for the input\",\n },\n prefix: \"slot\",\n size: {\n type: \"choice\",\n options: [\"small\", \"middle\", \"large\"],\n description: \"The size of the input box\",\n },\n suffix: \"slot\",\n type: {\n type: \"string\",\n description: \"The type of input\",\n },\n value: {\n type: \"string\",\n editOnly: true,\n uncontrolledProp: \"defaultValue\",\n },\n },\n importPath: \"antd/lib/input/Search\",\n importName: \"Search\",\n isDefaultExport: true,\n};\n\nexport function registerInputSearch(\n loader?: Registerable,\n customInputSearchMeta?: ComponentMeta<SearchProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Search, customInputSearchMeta ?? inputSearchMeta);\n}\n\nexport const inputPasswordMeta: ComponentMeta<PasswordProps> = {\n name: \"AntdInputPassword\",\n displayName: \"Antd Input Password\",\n props: {\n addonAfter: \"slot\",\n addonBefore: \"slot\",\n allowClear: {\n type: \"boolean\",\n description: \"If allow to remove input content with clear icon\",\n },\n bordered: {\n type: \"boolean\",\n description: \"Whether has border style\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Whether the input is disabled\",\n },\n id: {\n type: \"string\",\n description: \"The ID for input\",\n },\n maxLength: {\n type: \"number\",\n description: \"The max length\",\n },\n placeholder: {\n type: \"string\",\n description: \"Placeholder for the input\",\n },\n prefix: \"slot\",\n size: {\n type: \"choice\",\n options: [\"small\", \"middle\", \"large\"],\n description: \"The size of the input box\",\n },\n suffix: \"slot\",\n type: {\n type: \"string\",\n description: \"The type of input\",\n },\n value: {\n type: \"string\",\n editOnly: true,\n uncontrolledProp: \"defaultValue\",\n },\n visibilityToggle: {\n type: \"boolean\",\n description: \"Whether show toggle button\",\n },\n },\n importPath: \"antd/lib/input/Password\",\n importName: \"Password\",\n isDefaultExport: true,\n};\n\nexport function registerInputPassword(\n loader?: Registerable,\n customInputPasswordMeta?: ComponentMeta<PasswordProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Password, customInputPasswordMeta ?? inputPasswordMeta);\n}\n\nexport const inputGroupMeta: ComponentMeta<GroupProps> = {\n name: \"AntdInputGroup\",\n displayName: \"Antd Input Group\",\n props: {\n compact: {\n type: \"boolean\",\n description: \"Whether use compact style\",\n },\n size: {\n type: \"choice\",\n options: [\"small\", \"default\", \"large\"],\n description:\n \"The size of Input.Group specifies the size of the included Input fields\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdInput\",\n },\n {\n type: \"component\",\n name: \"AntdInput\",\n },\n ],\n },\n },\n importPath: \"antd/lib/input/Group\",\n importName: \"InputGroup\",\n isDefaultExport: true,\n};\n\nexport function registerInputGroup(\n loader?: Registerable,\n customInputGroupMeta?: ComponentMeta<GroupProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(InputGroup, customInputGroupMeta ?? inputGroupMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { MenuItemProps, MenuProps, SubMenuProps } from \"antd\";\nimport { MenuDividerProps } from \"antd/lib/menu\";\nimport MenuDivider from \"antd/lib/menu/MenuDivider\";\nimport MenuItem from \"antd/lib/menu/MenuItem\";\nimport SubMenu from \"antd/lib/menu/SubMenu\";\nimport Menu from \"antd/lib/menu/index\";\nimport { ItemGroup, MenuItemGroupProps } from \"rc-menu\";\nimport { Registerable } from \"./registerable\";\n\nexport const menuDividerMeta: ComponentMeta<MenuDividerProps> = {\n name: \"AntdMenuDivider\",\n displayName: \"Antd Menu Divider\",\n props: {\n dashed: {\n type: \"boolean\",\n description: \"Whether line is dashed\",\n },\n },\n importPath: \"antd/lib/menu/MenuDivider\",\n importName: \"MenuDivider\",\n isDefaultExport: true,\n};\n\nexport function registerMenuDivider(\n loader?: Registerable,\n customMenuDividerMeta?: ComponentMeta<MenuDividerProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(MenuDivider, customMenuDividerMeta ?? menuDividerMeta);\n}\n\nexport const menuItemMeta: ComponentMeta<MenuItemProps> = {\n name: \"AntdMenuItem\",\n displayName: \"Antd Menu Item\",\n props: {\n danger: {\n type: \"boolean\",\n description: \"Display the danger style\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Whether disabled select\",\n },\n key: {\n type: \"string\",\n description: \"Unique ID of the menu item\",\n },\n title: {\n type: \"string\",\n description: \"Set display title for collapsed item\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Option\",\n },\n ],\n },\n },\n importPath: \"antd/lib/menu/MenuItem\",\n importName: \"MenuItem\",\n isDefaultExport: true,\n};\n\nexport function registerMenuItem(\n loader?: Registerable,\n customMenuItemMeta?: ComponentMeta<MenuItemProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(MenuItem, customMenuItemMeta ?? menuItemMeta);\n}\n\nexport const menuItemGroupMeta: ComponentMeta<MenuItemGroupProps> = {\n name: \"AntdMenuItemGroup\",\n displayName: \"Antd Menu Item Group\",\n props: {\n title: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Group\",\n },\n ],\n },\n children: {\n type: \"slot\",\n allowedComponents: [\n \"AntdMenuItem\",\n \"AntdMenuDivider\",\n \"AntdMenuItemGroup\",\n ],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdMenuItem\",\n },\n ],\n },\n },\n importPath: \"rc-menu\",\n importName: \"ItemGroup\",\n};\n\nexport function registerMenuItemGroup(\n loader?: Registerable,\n customMenuItemGroupMeta?: ComponentMeta<MenuItemProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(ItemGroup, customMenuItemGroupMeta ?? menuItemGroupMeta);\n}\n\nexport const subMenuMeta: ComponentMeta<SubMenuProps> = {\n name: \"AntdSubMenu\",\n displayName: \"Antd SubMenu\",\n props: {\n disabled: {\n type: \"boolean\",\n description: \"Whether sub-menu is disabled\",\n },\n key: {\n type: \"string\",\n description: \"Unique ID of the sub-menu\",\n },\n title: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Sub-menu\",\n },\n ],\n },\n children: {\n type: \"slot\",\n allowedComponents: [\n \"AntdMenuItem\",\n \"AntdMenuDivider\",\n \"AntdMenuItemGroup\",\n \"AntdSubMenu\",\n ],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdMenuItem\",\n },\n ],\n },\n },\n importPath: \"antd/lib/menu/SubMenu\",\n importName: \"SubMenu\",\n isDefaultExport: true,\n};\n\nexport function registerSubMenu(\n loader?: Registerable,\n customSubMenuMeta?: ComponentMeta<SubMenuProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(SubMenu, customSubMenuMeta ?? subMenuMeta);\n}\n\nexport const menuMeta: ComponentMeta<MenuProps> = {\n name: \"AntdMenu\",\n displayName: \"Antd Menu\",\n props: {\n expandIcon: {\n type: \"slot\",\n },\n forceSubMenuRender: {\n type: \"boolean\",\n description: \"Render submenu into DOM before it becomes visible\",\n },\n inlineIndent: {\n type: \"number\",\n description: \"Indent (in pixels) of inline menu items on each level\",\n },\n mode: {\n type: \"choice\",\n options: [\"horizontal\", \"vertical\", \"inline\"],\n description: \"Type of menu\",\n },\n multiple: {\n type: \"boolean\",\n description: \"Allows selection of multiple items\",\n },\n openKeys: {\n type: \"object\",\n editOnly: true,\n uncontrolledProp: \"defaultOpenKeys\",\n description: \"Array with the keys of default opened sub menus\",\n },\n overflowedIndicator: {\n type: \"slot\",\n },\n selectable: {\n type: \"boolean\",\n description: \"Allows selecting menu items\",\n },\n selectedKeys: {\n type: \"object\",\n editOnly: true,\n uncontrolledProp: \"defaultSelectedKeys\",\n description: \"Array with the keys of default selected menu items\",\n },\n subMenuCloseDelay: {\n type: \"number\",\n description: \"Delay time to hide submenu when mouse leaves (in seconds)\",\n },\n subMenuOpenDelay: {\n type: \"number\",\n description: \"Delay time to show submenu when mouse enters, (in seconds)\",\n },\n theme: {\n type: \"choice\",\n options: [\"light\", \"dark\"],\n description: \"Color theme of the menu\",\n },\n triggerSubMenuAction: {\n type: \"choice\",\n options: [\"hover\", \"click\"],\n description: \"Which action can trigger submenu open/close\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [\"AntdMenuItem\", \"AntdMenuDivider\", \"AntdSubMenu\"],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdMenuItem\",\n },\n {\n type: \"component\",\n name: \"AntdSubMenu\",\n },\n ],\n },\n },\n importPath: \"antd/lib/menu/index\",\n importName: \"Menu\",\n isDefaultExport: true,\n};\n\nexport function registerMenu(\n loader?: Registerable,\n customMenuMeta?: ComponentMeta<MenuProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Menu, customMenuMeta ?? menuMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { OptGroupProps } from \"rc-select/lib/OptGroup\";\nimport { OptionProps } from \"rc-select/lib/Option\";\nimport { Option, OptGroup } from \"rc-select\";\nimport { Registerable } from \"./registerable\";\n\nexport const optionMeta: ComponentMeta<OptionProps> = {\n name: \"AntdOption\",\n displayName: \"Antd Option\",\n props: {\n disabled: {\n type: \"boolean\",\n description: \"Disable this option\",\n },\n title: {\n type: \"string\",\n description: \"title of Select after select this Option\",\n },\n value: {\n type: \"string\",\n description: \"Default to filter with this property\",\n },\n key: {\n type: \"string\",\n description: \"Option key\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Option\",\n },\n ],\n },\n },\n importPath: \"rc-select\",\n importName: \"Option\",\n};\n\nexport function registerOption(\n loader?: Registerable,\n customOptionMeta?: ComponentMeta<OptionProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Option, customOptionMeta ?? optionMeta);\n}\n\nexport const optGroupMeta: ComponentMeta<OptGroupProps> = {\n name: \"AntdOptionGroup\",\n displayName: \"Antd Option Group\",\n props: {\n key: {\n type: \"string\",\n description: \"Group key\",\n },\n label: {\n type: \"string\",\n description: \"Group label\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [\"AntdOption\"],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdOption\",\n },\n ],\n },\n },\n importPath: \"rc-select\",\n importName: \"OptGroup\",\n};\n\nexport function registerOptGroup(\n loader?: Registerable,\n customOptGroupMeta?: ComponentMeta<OptGroupProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(OptGroup, customOptGroupMeta ?? optGroupMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { Select } from \"antd\";\nimport { SelectProps } from \"rc-select\";\nimport { Registerable } from \"./registerable\";\n\nexport const selectMeta: ComponentMeta<SelectProps> = {\n name: \"AntdSelect\",\n displayName: \"Antd Select\",\n props: {\n autoFocus: {\n type: \"boolean\",\n description: \"Get focus by default\",\n },\n bordered: {\n type: \"boolean\",\n description: \"Whether has border style\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Whether disabled select\",\n },\n listHeight: {\n type: \"number\",\n description: \"Config popup height\",\n },\n loading: {\n type: \"boolean\",\n description: \"Indicate loading state\",\n },\n mode: {\n type: \"choice\",\n options: [\"multiple\", \"tags\"],\n description: \"Set mode of Select\",\n },\n open: {\n type: \"boolean\",\n editOnly: true,\n uncontrolledProp: \"defaultOpen\",\n description: \"Initial open state of dropdown\",\n },\n placeholder: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Select\",\n },\n ],\n },\n showArrow: {\n type: \"boolean\",\n description: \"Whether to show the drop-down arrow\",\n },\n showSearch: {\n type: \"boolean\",\n description: \"Whether show search input in single mode\",\n },\n size: {\n type: \"choice\",\n options: [\"large\", \"middle\", \"small\"],\n description: \"Set mode of Select\",\n },\n value: {\n type: \"object\",\n editOnly: true,\n uncontrolledProp: \"defaultValue\",\n description: \"Initial selected option\",\n },\n virtual: {\n type: \"boolean\",\n description: \"Disable virtual scroll when set to false\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [\"AntdOption, AntdOptionGroup\"],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdOption\",\n props: {\n value: \"Option\",\n children: {\n type: \"text\",\n value: \"Option\",\n },\n },\n },\n ],\n },\n },\n importPath: \"antd\",\n importName: \"Select\",\n};\n\nexport function registerSelect(\n loader?: Registerable,\n customSelectMeta?: ComponentMeta<SelectProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Select, customSelectMeta ?? selectMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { Slider, SliderSingleProps } from \"antd\";\nimport { Registerable } from \"./registerable\";\n\nexport const sliderMeta: ComponentMeta<SliderSingleProps> = {\n name: \"AntdSlider\",\n displayName: \"Antd Slider\",\n props: {\n max: {\n type: \"number\",\n description: \"The maximum value the slider can slide to\",\n },\n min: {\n type: \"number\",\n description: \"The minimum value the slider can slide to\",\n },\n included: {\n type: \"boolean\",\n description:\n \"Make effect when marks not null, true means containment and false means coordinative\",\n },\n disabled: {\n type: \"boolean\",\n description: \"If true, the slider will not be interactable\",\n },\n reverse: {\n type: \"boolean\",\n description: \"Reverse the component\",\n },\n vertical: {\n type: \"boolean\",\n description: \"If true, the slider will be vertical\",\n },\n value: {\n type: \"number\",\n editOnly: true,\n uncontrolledProp: \"defaultValue\",\n description: \"The default value of slider\",\n },\n step: {\n type: \"object\",\n description:\n \"The granularity the slider can step through values. Must greater than 0, and be divided by (max - min).\" +\n \" When marks no null, step can be null\",\n defaultValue: 1,\n },\n marks: {\n type: \"object\",\n description:\n \"Tick mark of Slider, type of key must be number, and must in closed interval [min, max],\" +\n \" each mark can declare its own style\",\n },\n },\n importPath: \"antd\",\n importName: \"Slider\",\n};\n\nexport function registerSlider(\n loader?: Registerable,\n customSliderMeta?: ComponentMeta<SliderSingleProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Slider, customSliderMeta ?? sliderMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { Switch, SwitchProps } from \"antd\";\nimport { Registerable } from \"./registerable\";\n\nexport const switchMeta: ComponentMeta<SwitchProps> = {\n name: \"AntdSwitch\",\n displayName: \"Antd Switch\",\n props: {\n autoFocus: {\n type: \"boolean\",\n description: \"Whether get focus when component mounted\",\n },\n checked: {\n type: \"boolean\",\n editOnly: true,\n uncontrolledProp: \"defaultChecked\",\n description: \"Whether to set the initial state\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Disable switch\",\n },\n loading: {\n type: \"boolean\",\n description: \"Loading state of switch\",\n },\n checkedChildren: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"1\",\n },\n ],\n },\n unCheckedChildren: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"0\",\n },\n ],\n },\n size: {\n type: \"choice\",\n options: [\"small\", \"default\"],\n description: \"The size of the Switch\",\n },\n },\n importPath: \"antd\",\n importName: \"Switch\",\n};\n\nexport function registerSwitch(\n loader?: Registerable,\n customSwitchMeta?: ComponentMeta<SwitchProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Switch, customSwitchMeta ?? switchMeta);\n}\n","import { Registerable } from \"./registerable\";\nimport { registerButton } from \"./registerButton\";\nimport { registerCheckbox, registerCheckboxGroup } from \"./registerCheckbox\";\nimport { registerCarousel } from \"./registerCarousel\";\nimport { registerCollapse, registerCollapsePanel } from \"./registerCollapse\";\nimport { registerDropdown, registerDropdownButton } from \"./registerDropdown\";\nimport {\n registerInput,\n registerInputTextArea,\n registerInputSearch,\n registerInputPassword,\n registerInputGroup,\n} from \"./registerInput\";\nimport {\n registerMenu,\n registerMenuDivider,\n registerMenuItem,\n registerMenuItemGroup,\n registerSubMenu,\n} from \"./registerMenu\";\nimport { registerOptGroup, registerOption } from \"./registerOption\";\nimport { registerSelect } from \"./registerSelect\";\nimport { registerSlider } from \"./registerSlider\";\nimport { registerSwitch } from \"./registerSwitch\";\n\nexport * from \"./registerable\";\nexport * from \"./registerButton\";\nexport * from \"./registerCheckbox\";\nexport * from \"./registerCollapse\";\nexport * from \"./registerDropdown\";\nexport * from \"./registerInput\";\nexport * from \"./registerMenu\";\nexport * from \"./registerOption\";\nexport * from \"./registerSelect\";\nexport * from \"./registerSlider\";\nexport * from \"./registerSwitch\";\nexport * from \"./registerCarousel\";\n\nexport function registerAll(loader?: Registerable) {\n registerButton(loader);\n registerSlider(loader);\n registerSwitch(loader);\n registerOption(loader);\n registerOptGroup(loader);\n registerSelect(loader);\n registerCollapsePanel(loader);\n registerCollapse(loader);\n registerCheckbox(loader);\n registerCheckboxGroup(loader);\n registerMenuDivider(loader);\n registerMenuItem(loader);\n registerMenuItemGroup(loader);\n registerSubMenu(loader);\n registerMenu(loader);\n registerDropdown(loader);\n registerDropdownButton(loader);\n registerCarousel(loader);\n registerInput(loader);\n registerInputTextArea(loader);\n registerInputSearch(loader);\n registerInputPassword(loader);\n registerInputGroup(loader);\n}\n"],"names":["buttonMeta","name","displayName","props","type","options","description","size","shape","disabled","ghost","danger","block","loading","href","target","children","defaultValue","value","importPath","importName","registerButton","loader","customButtonMeta","doRegisterComponent","registerComponent","Button","CheckboxWrapper","render","React","Checkbox","Component","checkboxMeta","autoFocus","checked","editOnly","uncontrolledProp","indeterminate","defaultStyles","marginLeft","isDefaultExport","registerCheckbox","customCheckboxMeta","checkboxGroupMeta","allowedComponents","registerCheckboxGroup","customCheckboxGroupMeta","CheckboxGroup","contentStyle","height","color","lineHeight","textAlign","backgroundColor","carouselMeta","autoplay","dotPosition","dots","effect","styles","registerCarousel","customCarouselMeta","Carousel","collapstePanelMeta","collapsible","forceRender","header","key","showArrow","registerCollapsePanel","customCollapsePanelMeta","CollapsePanel","collapsteMeta","accordion","activeKey","bordered","expandIconPosition","registerCollapse","customCollapseMeta","Collapse","Dropdown","finalProps","AntdDropdown","dropdownMeta","arrow","overlay","placement","trigger","visible","registerDropdown","customDropdownMeta","dropdownButtonMeta","icon","registerDropdownButton","customDropdownButtonMeta","DropdownButton","inputMeta","addonAfter","addonBefore","allowClear","id","maxLength","placeholder","prefix","suffix","registerInput","customInputMeta","Input","inputTextAreaMeta","autoSize","showCount","registerInputTextArea","customInputTextAreaMeta","TextArea","inputSearchMeta","enterButton","registerInputSearch","customInputSearchMeta","Search","inputPasswordMeta","visibilityToggle","registerInputPassword","customInputPasswordMeta","Password","inputGroupMeta","compact","registerInputGroup","customInputGroupMeta","InputGroup","menuDividerMeta","dashed","registerMenuDivider","customMenuDividerMeta","MenuDivider","menuItemMeta","title","registerMenuItem","customMenuItemMeta","MenuItem","menuItemGroupMeta","registerMenuItemGroup","customMenuItemGroupMeta","ItemGroup","subMenuMeta","registerSubMenu","customSubMenuMeta","SubMenu","menuMeta","expandIcon","forceSubMenuRender","inlineIndent","mode","multiple","openKeys","overflowedIndicator","selectable","selectedKeys","subMenuCloseDelay","subMenuOpenDelay","theme","triggerSubMenuAction","registerMenu","customMenuMeta","Menu","optionMeta","registerOption","customOptionMeta","Option","optGroupMeta","label","registerOptGroup","customOptGroupMeta","OptGroup","selectMeta","listHeight","open","showSearch","virtual","registerSelect","customSelectMeta","Select","sliderMeta","max","min","included","reverse","vertical","step","marks","registerSlider","customSliderMeta","Slider","switchMeta","checkedChildren","unCheckedChildren","registerSwitch","customSwitchMeta","Switch","registerAll"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;IAKaA,UAAU,GAA+B;AACpDC,EAAAA,IAAI,EAAE,YAD8C;AAEpDC,EAAAA,WAAW,EAAE,aAFuC;AAGpDC,EAAAA,KAAK,EAAE;AACLC,IAAAA,IAAI,EAAE;AACJA,MAAAA,IAAI,EAAE,QADF;AAEJC,MAAAA,OAAO,EAAE,CAAC,SAAD,EAAY,SAAZ,EAAuB,OAAvB,EAAgC,QAAhC,EAA0C,MAA1C,EAAkD,MAAlD,CAFL;AAGJC,MAAAA,WAAW,EAAE;AAHT,KADD;AAMLC,IAAAA,IAAI,EAAE;AACJH,MAAAA,IAAI,EAAE,QADF;AAEJC,MAAAA,OAAO,EAAE,CAAC,OAAD,EAAU,QAAV,EAAoB,OAApB,CAFL;AAGJC,MAAAA,WAAW,EAAE;AAHT,KAND;AAWLE,IAAAA,KAAK,EAAE;AACLJ,MAAAA,IAAI,EAAE,QADD;AAELC,MAAAA,OAAO,EAAE,CAAC,SAAD,EAAY,QAAZ,EAAsB,OAAtB,CAFJ;AAGLC,MAAAA,WAAW,EAAE;AAHR,KAXF;AAgBLG,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KAhBL;AAoBLI,IAAAA,KAAK,EAAE;AACLN,MAAAA,IAAI,EAAE,SADD;AAELE,MAAAA,WAAW,EACT;AAHG,KApBF;AAyBLK,IAAAA,MAAM,EAAE;AACNP,MAAAA,IAAI,EAAE,SADA;AAENE,MAAAA,WAAW,EAAE;AAFP,KAzBH;AA6BLM,IAAAA,KAAK,EAAE;AACLR,MAAAA,IAAI,EAAE,SADD;AAELE,MAAAA,WAAW,EAAE;AAFR,KA7BF;AAiCLO,IAAAA,OAAO,EAAE;AACPT,MAAAA,IAAI,EAAE,SADC;AAEPE,MAAAA,WAAW,EAAE;AAFN,KAjCJ;AAqCLQ,IAAAA,IAAI,EAAE;AACJV,MAAAA,IAAI,EAAE,QADF;AAEJE,MAAAA,WAAW,EAAE;AAFT,KArCD;AAyCLS,IAAAA,MAAM,EAAE;AACNX,MAAAA,IAAI,EAAE,QADA;AAENC,MAAAA,OAAO,EAAE,CAAC,QAAD,EAAW,OAAX,EAAoB,SAApB,EAA+B,MAA/B,CAFH;AAGNC,MAAAA,WAAW,EACT;AAJI,KAzCH;AA+CLU,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,MADR;AAEEc,QAAAA,KAAK,EAAE;AAFT,OADY;AAFN;AA/CL,GAH6C;AA4DpDC,EAAAA,UAAU,EAAE,MA5DwC;AA6DpDC,EAAAA,UAAU,EAAE;AA7DwC;SAgEtCC,eACdC,QACAC;AAEA,MAAMC,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAACE,WAAD,EAASH,gBAAT,WAASA,gBAAT,GAA6BvB,UAA7B,CAAnB;AACD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ICrEK2B;;;;;;;;;SACJC,SAAA;AACE,WAAOC,mBAAA,CAACC,QAAD,oBAAc,KAAK3B,MAAnB,CAAP;AACD;;;EAH2B0B,KAAK,CAACE;;AAMpC,IAAaC,YAAY,GAAiC;AACxD/B,EAAAA,IAAI,EAAE,cADkD;AAExDC,EAAAA,WAAW,EAAE,eAF2C;AAGxDC,EAAAA,KAAK,EAAE;AACL8B,IAAAA,SAAS,EAAE;AACT7B,MAAAA,IAAI,EAAE,SADG;AAETE,MAAAA,WAAW,EAAE;AAFJ,KADN;AAKL4B,IAAAA,OAAO,EAAE;AACP9B,MAAAA,IAAI,EAAE,SADC;AAEP+B,MAAAA,QAAQ,EAAE,IAFH;AAGPC,MAAAA,gBAAgB,EAAE,gBAHX;AAIP9B,MAAAA,WAAW,EACT;AALK,KALJ;AAYLG,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KAZL;AAgBL+B,IAAAA,aAAa,EAAE;AACbjC,MAAAA,IAAI,EAAE,SADO;AAEbE,MAAAA,WAAW,EAAE;AAFA,KAhBV;AAoBLY,IAAAA,KAAK,EAAE;AACLd,MAAAA,IAAI,EAAE,QADD;AAELE,MAAAA,WAAW,EAAE;AAFR,KApBF;AAwBLU,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,MADR;AAEEc,QAAAA,KAAK,EAAE;AAFT,OADY;AAFN;AAxBL,GAHiD;AAqCxDC,EAAAA,UAAU,EAAE,4BArC4C;AAsCxDC,EAAAA,UAAU,EAAE,UAtC4C;AAuCxDkB,EAAAA,aAAa,EAAE;AACbC,IAAAA,UAAU,EAAE;AADC,GAvCyC;AA0CxDC,EAAAA,eAAe,EAAE;AA1CuC,CAAnD;AA6CP,SAAgBC,iBACdnB,QACAoB;AAEA,MAAMlB,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAACG,eAAD,EAAkBe,kBAAlB,WAAkBA,kBAAlB,GAAwCV,YAAxC,CAAnB;AACD;AAED,IAAaW,iBAAiB,GAAsC;AAClE1C,EAAAA,IAAI,EAAE,mBAD4D;AAElEC,EAAAA,WAAW,EAAE,qBAFqD;AAGlEC,EAAAA,KAAK,EAAE;AACLM,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KADL;AAKLY,IAAAA,KAAK,EAAE;AACLd,MAAAA,IAAI,EAAE,QADD;AAEL+B,MAAAA,QAAQ,EAAE,IAFL;AAGLC,MAAAA,gBAAgB,EAAE,cAHb;AAIL9B,MAAAA,WAAW,EAAE;AAJR,KALF;AAWLU,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERwC,MAAAA,iBAAiB,EAAE,CAAC,cAAD,CAFX;AAGR3B,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,WADR;AAEEH,QAAAA,IAAI,EAAE;AAFR,OADY;AAHN;AAXL,GAH2D;AAyBlEkB,EAAAA,UAAU,EAAE,yBAzBsD;AA0BlEC,EAAAA,UAAU,EAAE,eA1BsD;AA2BlEoB,EAAAA,eAAe,EAAE;AA3BiD,CAA7D;AA8BP,SAAgBK,sBACdvB,QACAwB;AAEA,MAAMtB,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CACjBuB,aADiB,EAEjBD,uBAFiB,WAEjBA,uBAFiB,GAEUH,iBAFV,CAAnB;AAID;;ACrGD,IAAMK,YAAY,GAAkB;AAClCC,EAAAA,MAAM,EAAE,OAD0B;AAElCC,EAAAA,KAAK,EAAE,MAF2B;AAGlCC,EAAAA,UAAU,EAAE,OAHsB;AAIlCC,EAAAA,SAAS,EAAE,QAJuB;AAKlCC,EAAAA,eAAe,EAAE;AALiB,CAApC;AAQA,IAAaC,YAAY,GAAiC;AACxDrD,EAAAA,IAAI,EAAE,cADkD;AAExDC,EAAAA,WAAW,EAAE,eAF2C;AAGxDC,EAAAA,KAAK,EAAE;AACLoD,IAAAA,QAAQ,EAAE;AACRnD,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KADL;AAKLkD,IAAAA,WAAW,EAAE;AACXpD,MAAAA,IAAI,EAAE,QADK;AAEXC,MAAAA,OAAO,EAAE,CAAC,KAAD,EAAQ,QAAR,EAAkB,MAAlB,EAA0B,OAA1B,CAFE;AAGXC,MAAAA,WAAW,EAAE;AAHF,KALR;AAULmD,IAAAA,IAAI,EAAE;AACJrD,MAAAA,IAAI,EAAE,SADF;AAEJE,MAAAA,WAAW,EAAE;AAFT,KAVD;AAcLoD,IAAAA,MAAM,EAAE;AACNtD,MAAAA,IAAI,EAAE,QADA;AAENC,MAAAA,OAAO,EAAE,CAAC,SAAD,EAAY,MAAZ;AAFH,KAdH;AAkBLW,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,MADR;AAEEY,QAAAA,QAAQ,EAAE;AACRZ,UAAAA,IAAI,EAAE,MADE;AAERc,UAAAA,KAAK,EAAE,GAFC;AAGRyC,UAAAA,MAAM,EAAEX;AAHA;AAFZ,OADY,EASZ;AACE5C,QAAAA,IAAI,EAAE,MADR;AAEEY,QAAAA,QAAQ,EAAE;AACRZ,UAAAA,IAAI,EAAE,MADE;AAERc,UAAAA,KAAK,EAAE,GAFC;AAGRyC,UAAAA,MAAM,EAAEX;AAHA;AAFZ,OATY;AAFN;AAlBL,GAHiD;AA2CxD7B,EAAAA,UAAU,EAAE,MA3C4C;AA4CxDC,EAAAA,UAAU,EAAE;AA5C4C,CAAnD;AA+CP,SAAgBwC,iBACdtC,QACAuC;AAEA,MAAMrC,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAACsC,aAAD,EAAWD,kBAAX,WAAWA,kBAAX,GAAiCP,YAAjC,CAAnB;AACD;;IC7DYS,kBAAkB,GAAsC;AACnE9D,EAAAA,IAAI,EAAE,mBAD6D;AAEnEC,EAAAA,WAAW,EAAE,qBAFsD;AAGnEC,EAAAA,KAAK,EAAE;AACL6D,IAAAA,WAAW,EAAE;AACX5D,MAAAA,IAAI,EAAE,QADK;AAEXC,MAAAA,OAAO,EAAE,CAAC,QAAD,EAAW,UAAX,CAFE;AAGXC,MAAAA,WAAW,EACT;AAJS,KADR;AAOL2D,IAAAA,WAAW,EAAE;AACX7D,MAAAA,IAAI,EAAE,SADK;AAEXE,MAAAA,WAAW,EACT;AAHS,KAPR;AAYL4D,IAAAA,MAAM,EAAE;AACN9D,MAAAA,IAAI,EAAE,MADA;AAENa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,MADR;AAEEc,QAAAA,KAAK,EAAE;AAFT,OADY;AAFR,KAZH;AAqBLiD,IAAAA,GAAG,EAAE;AACH/D,MAAAA,IAAI,EAAE,QADH;AAEHE,MAAAA,WAAW,EAAE;AAFV,KArBA;AAyBL8D,IAAAA,SAAS,EAAE;AACThE,MAAAA,IAAI,EAAE,SADG;AAETE,MAAAA,WAAW,EAAE;AAFJ,KAzBN;AA6BLU,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,MADR;AAEEc,QAAAA,KAAK,EAAE;AAFT,OADY;AAFN;AA7BL,GAH4D;AA0CnEC,EAAAA,UAAU,EAAE,iCA1CuD;AA2CnEC,EAAAA,UAAU,EAAE,eA3CuD;AA4CnEoB,EAAAA,eAAe,EAAE;AA5CkD,CAA9D;AA+CP,SAAgB6B,sBACd/C,QACAgD;AAEA,MAAM9C,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CACjB+C,aADiB,EAEjBD,uBAFiB,WAEjBA,uBAFiB,GAEUP,kBAFV,CAAnB;AAID;AAED,IAAaS,aAAa,GAAiC;AACzDvE,EAAAA,IAAI,EAAE,cADmD;AAEzDC,EAAAA,WAAW,EAAE,eAF4C;AAGzDC,EAAAA,KAAK,EAAE;AACLsE,IAAAA,SAAS,EAAE;AACTrE,MAAAA,IAAI,EAAE,SADG;AAETE,MAAAA,WAAW,EAAE;AAFJ,KADN;AAKLoE,IAAAA,SAAS,EAAE;AACTtE,MAAAA,IAAI,EAAE,QADG;AAET+B,MAAAA,QAAQ,EAAE,IAFD;AAGTC,MAAAA,gBAAgB,EAAE,kBAHT;AAIT9B,MAAAA,WAAW,EAAE;AAJJ,KALN;AAWLqE,IAAAA,QAAQ,EAAE;AACRvE,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KAXL;AAeL0D,IAAAA,WAAW,EAAE;AACX5D,MAAAA,IAAI,EAAE,QADK;AAEXC,MAAAA,OAAO,EAAE,CAAC,QAAD,EAAW,UAAX,CAFE;AAGXC,MAAAA,WAAW,EACT;AAJS,KAfR;AAqBLsE,IAAAA,kBAAkB,EAAE;AAClBxE,MAAAA,IAAI,EAAE,QADY;AAElBC,MAAAA,OAAO,EAAE,CAAC,MAAD,EAAS,OAAT,CAFS;AAGlBC,MAAAA,WAAW,EAAE;AAHK,KArBf;AA0BLI,IAAAA,KAAK,EAAE;AACLN,MAAAA,IAAI,EAAE,SADD;AAELE,MAAAA,WAAW,EACT;AAHG,KA1BF;AA+BLU,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERwC,MAAAA,iBAAiB,EAAE,CAAC,mBAAD,CAFX;AAGR3B,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,WADR;AAEEH,QAAAA,IAAI,EAAE;AAFR,OADY;AAHN;AA/BL,GAHkD;AA6CzDkB,EAAAA,UAAU,EAAE,4BA7C6C;AA8CzDC,EAAAA,UAAU,EAAE,UA9C6C;AA+CzDoB,EAAAA,eAAe,EAAE;AA/CwC,CAApD;AAkDP,SAAgBqC,iBACdvD,QACAwD;AAEA,MAAMtD,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAACuD,QAAD,EAAWD,kBAAX,WAAWA,kBAAX,GAAiCN,aAAjC,CAAnB;AACD;;ICjHYQ,QAAb;AAAA;;AAAA;AAAA;AAAA;;AAAA;;AAAA,SACEpD,MADF,GACE;AACE,QAAMqD,UAAU,gBAAQ,KAAK9E,KAAb,CAAhB;;AACA8E,IAAAA,UAAU,CAACjE,QAAX,GACE,OAAO,KAAKb,KAAL,CAAWa,QAAlB,KAA+B,QAA/B,GACEa,mBAAA,MAAA,MAAA,EAAM,KAAK1B,KAAL,CAAWa,QAAjB,CADF,GAGE,KAAKb,KAAL,CAAWa,QAJf;AAMA,WAAOa,mBAAA,CAACqD,YAAD,oBAAkBD,WAAlB,CAAP;AACD,GAVH;;AAAA;AAAA,EAA8BpD,KAAK,CAACE,SAApC;AAaA,IAAaoD,YAAY,GAAiC;AACxDlF,EAAAA,IAAI,EAAE,cADkD;AAExDC,EAAAA,WAAW,EAAE,eAF2C;AAGxDC,EAAAA,KAAK,EAAE;AACLiF,IAAAA,KAAK,EAAE;AACLhF,MAAAA,IAAI,EAAE,SADD;AAELE,MAAAA,WAAW,EAAE;AAFR,KADF;AAKLG,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KALL;AASL+E,IAAAA,OAAO,EAAE;AACPjF,MAAAA,IAAI,EAAE,MADC;AAEPwC,MAAAA,iBAAiB,EAAE,CAAC,UAAD,CAFZ;AAGP3B,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,WADR;AAEEH,QAAAA,IAAI,EAAE;AAFR,OADY;AAHP,KATJ;AAmBLqF,IAAAA,SAAS,EAAE;AACTlF,MAAAA,IAAI,EAAE,QADG;AAETC,MAAAA,OAAO,EAAE,CACP,YADO,EAEP,cAFO,EAGP,aAHO,EAIP,SAJO,EAKP,WALO,EAMP,UANO,CAFA;AAUTC,MAAAA,WAAW,EAAE;AAVJ,KAnBN;AA+BLiF,IAAAA,OAAO,EAAE;AACPnF,MAAAA,IAAI,EAAE,QADC;AAEPC,MAAAA,OAAO,EAAE,CAAC,OAAD,EAAU,OAAV,EAAmB,aAAnB,CAFF;AAGPC,MAAAA,WAAW,EAAE;AAHN,KA/BJ;AAoCLkF,IAAAA,OAAO,EAAE;AACPpF,MAAAA,IAAI,EAAE,SADC;AAEPE,MAAAA,WAAW,EAAE;AAFN,KApCJ;AAwCLU,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,MADR;AAEEc,QAAAA,KAAK,EAAE;AAFT,OADY;AAFN;AAxCL,GAHiD;AAqDxDC,EAAAA,UAAU,EAAE,mBArD4C;AAsDxDC,EAAAA,UAAU,EAAE;AAtD4C,CAAnD;AAyDP,SAAgBqE,iBACdnE,QACAoE;AAEA,MAAMlE,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAACwD,QAAD,EAAWU,kBAAX,WAAWA,kBAAX,GAAiCP,YAAjC,CAAnB;AACD;AAED,IAAaQ,kBAAkB,GAAuC;AACpE1F,EAAAA,IAAI,EAAE,oBAD8D;AAEpEC,EAAAA,WAAW,EAAE,sBAFuD;AAGpEC,EAAAA,KAAK,EAAE;AACLM,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KADL;AAKLsF,IAAAA,IAAI,EAAE,MALD;AAMLP,IAAAA,OAAO,EAAE;AACPjF,MAAAA,IAAI,EAAE,MADC;AAEPwC,MAAAA,iBAAiB,EAAE,CAAC,UAAD,CAFZ;AAGP3B,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,WADR;AAEEH,QAAAA,IAAI,EAAE;AAFR,OADY;AAHP,KANJ;AAgBLqF,IAAAA,SAAS,EAAE;AACTlF,MAAAA,IAAI,EAAE,QADG;AAETC,MAAAA,OAAO,EAAE,CACP,YADO,EAEP,cAFO,EAGP,aAHO,EAIP,SAJO,EAKP,WALO,EAMP,UANO,CAFA;AAUTC,MAAAA,WAAW,EAAE;AAVJ,KAhBN;AA4BLC,IAAAA,IAAI,EAAE;AACJH,MAAAA,IAAI,EAAE,QADF;AAEJC,MAAAA,OAAO,EAAE,CAAC,OAAD,EAAU,QAAV,EAAoB,OAApB,CAFL;AAGJC,MAAAA,WAAW,EAAE;AAHT,KA5BD;AAiCLiF,IAAAA,OAAO,EAAE;AACPnF,MAAAA,IAAI,EAAE,QADC;AAEPC,MAAAA,OAAO,EAAE,CAAC,OAAD,EAAU,OAAV,EAAmB,aAAnB,CAFF;AAGPC,MAAAA,WAAW,EAAE;AAHN,KAjCJ;AAsCLF,IAAAA,IAAI,EAAE;AACJA,MAAAA,IAAI,EAAE,QADF;AAEJC,MAAAA,OAAO,EAAE,CAAC,SAAD,EAAY,SAAZ,EAAuB,OAAvB,EAAgC,QAAhC,EAA0C,MAA1C,EAAkD,MAAlD,CAFL;AAGJC,MAAAA,WAAW,EAAE;AAHT,KAtCD;AA2CLkF,IAAAA,OAAO,EAAE;AACPpF,MAAAA,IAAI,EAAE,SADC;AAEPE,MAAAA,WAAW,EAAE;AAFN,KA3CJ;AA+CLU,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,MADR;AAEEc,QAAAA,KAAK,EAAE;AAFT,OADY;AAFN;AA/CL,GAH6D;AA4DpEC,EAAAA,UAAU,EAAE,mCA5DwD;AA6DpEC,EAAAA,UAAU,EAAE,gBA7DwD;AA8DpEoB,EAAAA,eAAe,EAAE;AA9DmD,CAA/D;AAiEP,SAAgBqD,uBACdvE,QACAwE;AAEA,MAAMtE,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CACjBuE,cADiB,EAEjBD,wBAFiB,WAEjBA,wBAFiB,GAEWH,kBAFX,CAAnB;AAID;;ICrJYK,SAAS,GAA8B;AAClD/F,EAAAA,IAAI,EAAE,WAD4C;AAElDC,EAAAA,WAAW,EAAE,YAFqC;AAGlDC,EAAAA,KAAK,EAAE;AACL8F,IAAAA,UAAU,EAAE,MADP;AAELC,IAAAA,WAAW,EAAE,MAFR;AAGLC,IAAAA,UAAU,EAAE;AACV/F,MAAAA,IAAI,EAAE,SADI;AAEVE,MAAAA,WAAW,EAAE;AAFH,KAHP;AAOLqE,IAAAA,QAAQ,EAAE;AACRvE,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KAPL;AAWLG,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KAXL;AAeL8F,IAAAA,EAAE,EAAE;AACFhG,MAAAA,IAAI,EAAE,QADJ;AAEFE,MAAAA,WAAW,EAAE;AAFX,KAfC;AAmBL+F,IAAAA,SAAS,EAAE;AACTjG,MAAAA,IAAI,EAAE,QADG;AAETE,MAAAA,WAAW,EAAE;AAFJ,KAnBN;AAuBLgG,IAAAA,WAAW,EAAE;AACXlG,MAAAA,IAAI,EAAE,QADK;AAEXE,MAAAA,WAAW,EAAE;AAFF,KAvBR;AA2BLiG,IAAAA,MAAM,EAAE,MA3BH;AA4BLhG,IAAAA,IAAI,EAAE;AACJH,MAAAA,IAAI,EAAE,QADF;AAEJC,MAAAA,OAAO,EAAE,CAAC,OAAD,EAAU,QAAV,EAAoB,OAApB,CAFL;AAGJC,MAAAA,WAAW,EAAE;AAHT,KA5BD;AAiCLkG,IAAAA,MAAM,EAAE,MAjCH;AAkCLpG,IAAAA,IAAI,EAAE;AACJA,MAAAA,IAAI,EAAE,QADF;AAEJE,MAAAA,WAAW,EAAE;AAFT,KAlCD;AAsCLY,IAAAA,KAAK,EAAE;AACLd,MAAAA,IAAI,EAAE,QADD;AAEL+B,MAAAA,QAAQ,EAAE,IAFL;AAGLC,MAAAA,gBAAgB,EAAE;AAHb;AAtCF,GAH2C;AA+ClDjB,EAAAA,UAAU,EAAE,MA/CsC;AAgDlDC,EAAAA,UAAU,EAAE;AAhDsC,CAA7C;AAmDP,SAAgBqF,cACdnF,QACAoF;AAEA,MAAMlF,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAACmF,UAAD,EAAQD,eAAR,WAAQA,eAAR,GAA2BV,SAA3B,CAAnB;AACD;AAED,IAAaY,iBAAiB,GAAiC;AAC7D3G,EAAAA,IAAI,EAAE,mBADuD;AAE7DC,EAAAA,WAAW,EAAE,sBAFgD;AAG7DC,EAAAA,KAAK,EAAE;AACLgG,IAAAA,UAAU,EAAE;AACV/F,MAAAA,IAAI,EAAE,SADI;AAEVE,MAAAA,WAAW,EAAE;AAFH,KADP;AAKLuG,IAAAA,QAAQ,EAAE;AACRzG,MAAAA,IAAI,EAAE,QADE;AAERE,MAAAA,WAAW,EACT;AAHM,KALL;AAULG,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KAVL;AAcLqE,IAAAA,QAAQ,EAAE;AACRvE,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KAdL;AAkBLwG,IAAAA,SAAS,EAAE;AACT1G,MAAAA,IAAI,EAAE,SADG;AAETE,MAAAA,WAAW,EAAE;AAFJ,KAlBN;AAsBL8F,IAAAA,EAAE,EAAE;AACFhG,MAAAA,IAAI,EAAE,QADJ;AAEFE,MAAAA,WAAW,EAAE;AAFX,KAtBC;AA0BL+F,IAAAA,SAAS,EAAE;AACTjG,MAAAA,IAAI,EAAE,QADG;AAETE,MAAAA,WAAW,EAAE;AAFJ,KA1BN;AA8BLgG,IAAAA,WAAW,EAAE;AACXlG,MAAAA,IAAI,EAAE,QADK;AAEXE,MAAAA,WAAW,EAAE;AAFF,KA9BR;AAkCLY,IAAAA,KAAK,EAAE;AACLd,MAAAA,IAAI,EAAE,QADD;AAEL+B,MAAAA,QAAQ,EAAE,IAFL;AAGLC,MAAAA,gBAAgB,EAAE;AAHb;AAlCF,GAHsD;AA2C7DjB,EAAAA,UAAU,EAAE,yBA3CiD;AA4C7DC,EAAAA,UAAU,EAAE,UA5CiD;AA6C7DoB,EAAAA,eAAe,EAAE;AA7C4C,CAAxD;AAgDP,SAAgBuE,sBACdzF,QACA0F;AAEA,MAAMxF,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAACyF,QAAD,EAAWD,uBAAX,WAAWA,uBAAX,GAAsCJ,iBAAtC,CAAnB;AACD;AAED,IAAaM,eAAe,GAA+B;AACzDjH,EAAAA,IAAI,EAAE,iBADmD;AAEzDC,EAAAA,WAAW,EAAE,mBAF4C;AAGzDC,EAAAA,KAAK,EAAE;AACL+F,IAAAA,WAAW,EAAE,MADR;AAELC,IAAAA,UAAU,EAAE;AACV/F,MAAAA,IAAI,EAAE,SADI;AAEVE,MAAAA,WAAW,EAAE;AAFH,KAFP;AAMLqE,IAAAA,QAAQ,EAAE;AACRvE,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KANL;AAULG,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KAVL;AAcL6G,IAAAA,WAAW,EAAE,MAdR;AAeLf,IAAAA,EAAE,EAAE;AACFhG,MAAAA,IAAI,EAAE,QADJ;AAEFE,MAAAA,WAAW,EAAE;AAFX,KAfC;AAmBLO,IAAAA,OAAO,EAAE;AACPT,MAAAA,IAAI,EAAE,SADC;AAEPE,MAAAA,WAAW,EAAE;AAFN,KAnBJ;AAuBL+F,IAAAA,SAAS,EAAE;AACTjG,MAAAA,IAAI,EAAE,QADG;AAETE,MAAAA,WAAW,EAAE;AAFJ,KAvBN;AA2BLgG,IAAAA,WAAW,EAAE;AACXlG,MAAAA,IAAI,EAAE,QADK;AAEXE,MAAAA,WAAW,EAAE;AAFF,KA3BR;AA+BLiG,IAAAA,MAAM,EAAE,MA/BH;AAgCLhG,IAAAA,IAAI,EAAE;AACJH,MAAAA,IAAI,EAAE,QADF;AAEJC,MAAAA,OAAO,EAAE,CAAC,OAAD,EAAU,QAAV,EAAoB,OAApB,CAFL;AAGJC,MAAAA,WAAW,EAAE;AAHT,KAhCD;AAqCLkG,IAAAA,MAAM,EAAE,MArCH;AAsCLpG,IAAAA,IAAI,EAAE;AACJA,MAAAA,IAAI,EAAE,QADF;AAEJE,MAAAA,WAAW,EAAE;AAFT,KAtCD;AA0CLY,IAAAA,KAAK,EAAE;AACLd,MAAAA,IAAI,EAAE,QADD;AAEL+B,MAAAA,QAAQ,EAAE,IAFL;AAGLC,MAAAA,gBAAgB,EAAE;AAHb;AA1CF,GAHkD;AAmDzDjB,EAAAA,UAAU,EAAE,uBAnD6C;AAoDzDC,EAAAA,UAAU,EAAE,QApD6C;AAqDzDoB,EAAAA,eAAe,EAAE;AArDwC,CAApD;AAwDP,SAAgB4E,oBACd9F,QACA+F;AAEA,MAAM7F,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAAC8F,MAAD,EAASD,qBAAT,WAASA,qBAAT,GAAkCH,eAAlC,CAAnB;AACD;AAED,IAAaK,iBAAiB,GAAiC;AAC7DtH,EAAAA,IAAI,EAAE,mBADuD;AAE7DC,EAAAA,WAAW,EAAE,qBAFgD;AAG7DC,EAAAA,KAAK,EAAE;AACL8F,IAAAA,UAAU,EAAE,MADP;AAELC,IAAAA,WAAW,EAAE,MAFR;AAGLC,IAAAA,UAAU,EAAE;AACV/F,MAAAA,IAAI,EAAE,SADI;AAEVE,MAAAA,WAAW,EAAE;AAFH,KAHP;AAOLqE,IAAAA,QAAQ,EAAE;AACRvE,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KAPL;AAWLG,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KAXL;AAeL8F,IAAAA,EAAE,EAAE;AACFhG,MAAAA,IAAI,EAAE,QADJ;AAEFE,MAAAA,WAAW,EAAE;AAFX,KAfC;AAmBL+F,IAAAA,SAAS,EAAE;AACTjG,MAAAA,IAAI,EAAE,QADG;AAETE,MAAAA,WAAW,EAAE;AAFJ,KAnBN;AAuBLgG,IAAAA,WAAW,EAAE;AACXlG,MAAAA,IAAI,EAAE,QADK;AAEXE,MAAAA,WAAW,EAAE;AAFF,KAvBR;AA2BLiG,IAAAA,MAAM,EAAE,MA3BH;AA4BLhG,IAAAA,IAAI,EAAE;AACJH,MAAAA,IAAI,EAAE,QADF;AAEJC,MAAAA,OAAO,EAAE,CAAC,OAAD,EAAU,QAAV,EAAoB,OAApB,CAFL;AAGJC,MAAAA,WAAW,EAAE;AAHT,KA5BD;AAiCLkG,IAAAA,MAAM,EAAE,MAjCH;AAkCLpG,IAAAA,IAAI,EAAE;AACJA,MAAAA,IAAI,EAAE,QADF;AAEJE,MAAAA,WAAW,EAAE;AAFT,KAlCD;AAsCLY,IAAAA,KAAK,EAAE;AACLd,MAAAA,IAAI,EAAE,QADD;AAEL+B,MAAAA,QAAQ,EAAE,IAFL;AAGLC,MAAAA,gBAAgB,EAAE;AAHb,KAtCF;AA2CLoF,IAAAA,gBAAgB,EAAE;AAChBpH,MAAAA,IAAI,EAAE,SADU;AAEhBE,MAAAA,WAAW,EAAE;AAFG;AA3Cb,GAHsD;AAmD7Da,EAAAA,UAAU,EAAE,yBAnDiD;AAoD7DC,EAAAA,UAAU,EAAE,UApDiD;AAqD7DoB,EAAAA,eAAe,EAAE;AArD4C,CAAxD;AAwDP,SAAgBiF,sBACdnG,QACAoG;AAEA,MAAMlG,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAACmG,QAAD,EAAWD,uBAAX,WAAWA,uBAAX,GAAsCH,iBAAtC,CAAnB;AACD;AAED,IAAaK,cAAc,GAA8B;AACvD3H,EAAAA,IAAI,EAAE,gBADiD;AAEvDC,EAAAA,WAAW,EAAE,kBAF0C;AAGvDC,EAAAA,KAAK,EAAE;AACL0H,IAAAA,OAAO,EAAE;AACPzH,MAAAA,IAAI,EAAE,SADC;AAEPE,MAAAA,WAAW,EAAE;AAFN,KADJ;AAKLC,IAAAA,IAAI,EAAE;AACJH,MAAAA,IAAI,EAAE,QADF;AAEJC,MAAAA,OAAO,EAAE,CAAC,OAAD,EAAU,SAAV,EAAqB,OAArB,CAFL;AAGJC,MAAAA,WAAW,EACT;AAJE,KALD;AAWLU,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,WADR;AAEEH,QAAAA,IAAI,EAAE;AAFR,OADY,EAKZ;AACEG,QAAAA,IAAI,EAAE,WADR;AAEEH,QAAAA,IAAI,EAAE;AAFR,OALY;AAFN;AAXL,GAHgD;AA4BvDkB,EAAAA,UAAU,EAAE,sBA5B2C;AA6BvDC,EAAAA,UAAU,EAAE,YA7B2C;AA8BvDoB,EAAAA,eAAe,EAAE;AA9BsC,CAAlD;AAiCP,SAAgBsF,mBACdxG,QACAyG;AAEA,MAAMvG,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAACwG,UAAD,EAAaD,oBAAb,WAAaA,oBAAb,GAAqCH,cAArC,CAAnB;AACD;;ICnSYK,eAAe,GAAoC;AAC9DhI,EAAAA,IAAI,EAAE,iBADwD;AAE9DC,EAAAA,WAAW,EAAE,mBAFiD;AAG9DC,EAAAA,KAAK,EAAE;AACL+H,IAAAA,MAAM,EAAE;AACN9H,MAAAA,IAAI,EAAE,SADA;AAENE,MAAAA,WAAW,EAAE;AAFP;AADH,GAHuD;AAS9Da,EAAAA,UAAU,EAAE,2BATkD;AAU9DC,EAAAA,UAAU,EAAE,aAVkD;AAW9DoB,EAAAA,eAAe,EAAE;AAX6C,CAAzD;AAcP,SAAgB2F,oBACd7G,QACA8G;AAEA,MAAM5G,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAAC6G,WAAD,EAAcD,qBAAd,WAAcA,qBAAd,GAAuCH,eAAvC,CAAnB;AACD;AAED,IAAaK,YAAY,GAAiC;AACxDrI,EAAAA,IAAI,EAAE,cADkD;AAExDC,EAAAA,WAAW,EAAE,gBAF2C;AAGxDC,EAAAA,KAAK,EAAE;AACLQ,IAAAA,MAAM,EAAE;AACNP,MAAAA,IAAI,EAAE,SADA;AAENE,MAAAA,WAAW,EAAE;AAFP,KADH;AAKLG,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KALL;AASL6D,IAAAA,GAAG,EAAE;AACH/D,MAAAA,IAAI,EAAE,QADH;AAEHE,MAAAA,WAAW,EAAE;AAFV,KATA;AAaLiI,IAAAA,KAAK,EAAE;AACLnI,MAAAA,IAAI,EAAE,QADD;AAELE,MAAAA,WAAW,EAAE;AAFR,KAbF;AAiBLU,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,MADR;AAEEc,QAAAA,KAAK,EAAE;AAFT,OADY;AAFN;AAjBL,GAHiD;AA8BxDC,EAAAA,UAAU,EAAE,wBA9B4C;AA+BxDC,EAAAA,UAAU,EAAE,UA/B4C;AAgCxDoB,EAAAA,eAAe,EAAE;AAhCuC,CAAnD;AAmCP,SAAgBgG,iBACdlH,QACAmH;AAEA,MAAMjH,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAACkH,QAAD,EAAWD,kBAAX,WAAWA,kBAAX,GAAiCH,YAAjC,CAAnB;AACD;AAED,IAAaK,iBAAiB,GAAsC;AAClE1I,EAAAA,IAAI,EAAE,mBAD4D;AAElEC,EAAAA,WAAW,EAAE,sBAFqD;AAGlEC,EAAAA,KAAK,EAAE;AACLoI,IAAAA,KAAK,EAAE;AACLnI,MAAAA,IAAI,EAAE,MADD;AAELa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,MADR;AAEEc,QAAAA,KAAK,EAAE;AAFT,OADY;AAFT,KADF;AAULF,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERwC,MAAAA,iBAAiB,EAAE,CACjB,cADiB,EAEjB,iBAFiB,EAGjB,mBAHiB,CAFX;AAOR3B,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,WADR;AAEEH,QAAAA,IAAI,EAAE;AAFR,OADY;AAPN;AAVL,GAH2D;AA4BlEkB,EAAAA,UAAU,EAAE,SA5BsD;AA6BlEC,EAAAA,UAAU,EAAE;AA7BsD,CAA7D;AAgCP,SAAgBwH,sBACdtH,QACAuH;AAEA,MAAMrH,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAACsH,gBAAD,EAAYD,uBAAZ,WAAYA,uBAAZ,GAAuCF,iBAAvC,CAAnB;AACD;AAED,IAAaI,WAAW,GAAgC;AACtD9I,EAAAA,IAAI,EAAE,aADgD;AAEtDC,EAAAA,WAAW,EAAE,cAFyC;AAGtDC,EAAAA,KAAK,EAAE;AACLM,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KADL;AAKL6D,IAAAA,GAAG,EAAE;AACH/D,MAAAA,IAAI,EAAE,QADH;AAEHE,MAAAA,WAAW,EAAE;AAFV,KALA;AASLiI,IAAAA,KAAK,EAAE;AACLnI,MAAAA,IAAI,EAAE,MADD;AAELa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,MADR;AAEEc,QAAAA,KAAK,EAAE;AAFT,OADY;AAFT,KATF;AAkBLF,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERwC,MAAAA,iBAAiB,EAAE,CACjB,cADiB,EAEjB,iBAFiB,EAGjB,mBAHiB,EAIjB,aAJiB,CAFX;AAQR3B,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,WADR;AAEEH,QAAAA,IAAI,EAAE;AAFR,OADY;AARN;AAlBL,GAH+C;AAqCtDkB,EAAAA,UAAU,EAAE,uBArC0C;AAsCtDC,EAAAA,UAAU,EAAE,SAtC0C;AAuCtDoB,EAAAA,eAAe,EAAE;AAvCqC,CAAjD;AA0CP,SAAgBwG,gBACd1H,QACA2H;AAEA,MAAMzH,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAAC0H,OAAD,EAAUD,iBAAV,WAAUA,iBAAV,GAA+BF,WAA/B,CAAnB;AACD;AAED,IAAaI,QAAQ,GAA6B;AAChDlJ,EAAAA,IAAI,EAAE,UAD0C;AAEhDC,EAAAA,WAAW,EAAE,WAFmC;AAGhDC,EAAAA,KAAK,EAAE;AACLiJ,IAAAA,UAAU,EAAE;AACVhJ,MAAAA,IAAI,EAAE;AADI,KADP;AAILiJ,IAAAA,kBAAkB,EAAE;AAClBjJ,MAAAA,IAAI,EAAE,SADY;AAElBE,MAAAA,WAAW,EAAE;AAFK,KAJf;AAQLgJ,IAAAA,YAAY,EAAE;AACZlJ,MAAAA,IAAI,EAAE,QADM;AAEZE,MAAAA,WAAW,EAAE;AAFD,KART;AAYLiJ,IAAAA,IAAI,EAAE;AACJnJ,MAAAA,IAAI,EAAE,QADF;AAEJC,MAAAA,OAAO,EAAE,CAAC,YAAD,EAAe,UAAf,EAA2B,QAA3B,CAFL;AAGJC,MAAAA,WAAW,EAAE;AAHT,KAZD;AAiBLkJ,IAAAA,QAAQ,EAAE;AACRpJ,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KAjBL;AAqBLmJ,IAAAA,QAAQ,EAAE;AACRrJ,MAAAA,IAAI,EAAE,QADE;AAER+B,MAAAA,QAAQ,EAAE,IAFF;AAGRC,MAAAA,gBAAgB,EAAE,iBAHV;AAIR9B,MAAAA,WAAW,EAAE;AAJL,KArBL;AA2BLoJ,IAAAA,mBAAmB,EAAE;AACnBtJ,MAAAA,IAAI,EAAE;AADa,KA3BhB;AA8BLuJ,IAAAA,UAAU,EAAE;AACVvJ,MAAAA,IAAI,EAAE,SADI;AAEVE,MAAAA,WAAW,EAAE;AAFH,KA9BP;AAkCLsJ,IAAAA,YAAY,EAAE;AACZxJ,MAAAA,IAAI,EAAE,QADM;AAEZ+B,MAAAA,QAAQ,EAAE,IAFE;AAGZC,MAAAA,gBAAgB,EAAE,qBAHN;AAIZ9B,MAAAA,WAAW,EAAE;AAJD,KAlCT;AAwCLuJ,IAAAA,iBAAiB,EAAE;AACjBzJ,MAAAA,IAAI,EAAE,QADW;AAEjBE,MAAAA,WAAW,EAAE;AAFI,KAxCd;AA4CLwJ,IAAAA,gBAAgB,EAAE;AAChB1J,MAAAA,IAAI,EAAE,QADU;AAEhBE,MAAAA,WAAW,EAAE;AAFG,KA5Cb;AAgDLyJ,IAAAA,KAAK,EAAE;AACL3J,MAAAA,IAAI,EAAE,QADD;AAELC,MAAAA,OAAO,EAAE,CAAC,OAAD,EAAU,MAAV,CAFJ;AAGLC,MAAAA,WAAW,EAAE;AAHR,KAhDF;AAqDL0J,IAAAA,oBAAoB,EAAE;AACpB5J,MAAAA,IAAI,EAAE,QADc;AAEpBC,MAAAA,OAAO,EAAE,CAAC,OAAD,EAAU,OAAV,CAFW;AAGpBC,MAAAA,WAAW,EAAE;AAHO,KArDjB;AA0DLU,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERwC,MAAAA,iBAAiB,EAAE,CAAC,cAAD,EAAiB,iBAAjB,EAAoC,aAApC,CAFX;AAGR3B,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,WADR;AAEEH,QAAAA,IAAI,EAAE;AAFR,OADY,EAKZ;AACEG,QAAAA,IAAI,EAAE,WADR;AAEEH,QAAAA,IAAI,EAAE;AAFR,OALY;AAHN;AA1DL,GAHyC;AA4EhDkB,EAAAA,UAAU,EAAE,qBA5EoC;AA6EhDC,EAAAA,UAAU,EAAE,MA7EoC;AA8EhDoB,EAAAA,eAAe,EAAE;AA9E+B,CAA3C;AAiFP,SAAgByH,aACd3I,QACA4I;AAEA,MAAM1I,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAAC2I,IAAD,EAAOD,cAAP,WAAOA,cAAP,GAAyBf,QAAzB,CAAnB;AACD;;IC3PYiB,UAAU,GAA+B;AACpDnK,EAAAA,IAAI,EAAE,YAD8C;AAEpDC,EAAAA,WAAW,EAAE,aAFuC;AAGpDC,EAAAA,KAAK,EAAE;AACLM,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KADL;AAKLiI,IAAAA,KAAK,EAAE;AACLnI,MAAAA,IAAI,EAAE,QADD;AAELE,MAAAA,WAAW,EAAE;AAFR,KALF;AASLY,IAAAA,KAAK,EAAE;AACLd,MAAAA,IAAI,EAAE,QADD;AAELE,MAAAA,WAAW,EAAE;AAFR,KATF;AAaL6D,IAAAA,GAAG,EAAE;AACH/D,MAAAA,IAAI,EAAE,QADH;AAEHE,MAAAA,WAAW,EAAE;AAFV,KAbA;AAiBLU,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,MADR;AAEEc,QAAAA,KAAK,EAAE;AAFT,OADY;AAFN;AAjBL,GAH6C;AA8BpDC,EAAAA,UAAU,EAAE,WA9BwC;AA+BpDC,EAAAA,UAAU,EAAE;AA/BwC,CAA/C;AAkCP,SAAgBiJ,eACd/I,QACAgJ;AAEA,MAAM9I,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAAC+I,eAAD,EAASD,gBAAT,WAASA,gBAAT,GAA6BF,UAA7B,CAAnB;AACD;AAED,IAAaI,YAAY,GAAiC;AACxDvK,EAAAA,IAAI,EAAE,iBADkD;AAExDC,EAAAA,WAAW,EAAE,mBAF2C;AAGxDC,EAAAA,KAAK,EAAE;AACLgE,IAAAA,GAAG,EAAE;AACH/D,MAAAA,IAAI,EAAE,QADH;AAEHE,MAAAA,WAAW,EAAE;AAFV,KADA;AAKLmK,IAAAA,KAAK,EAAE;AACLrK,MAAAA,IAAI,EAAE,QADD;AAELE,MAAAA,WAAW,EAAE;AAFR,KALF;AASLU,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERwC,MAAAA,iBAAiB,EAAE,CAAC,YAAD,CAFX;AAGR3B,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,WADR;AAEEH,QAAAA,IAAI,EAAE;AAFR,OADY;AAHN;AATL,GAHiD;AAuBxDkB,EAAAA,UAAU,EAAE,WAvB4C;AAwBxDC,EAAAA,UAAU,EAAE;AAxB4C,CAAnD;AA2BP,SAAgBsJ,iBACdpJ,QACAqJ;AAEA,MAAMnJ,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAACoJ,iBAAD,EAAWD,kBAAX,WAAWA,kBAAX,GAAiCH,YAAjC,CAAnB;AACD;;IC9EYK,UAAU,GAA+B;AACpD5K,EAAAA,IAAI,EAAE,YAD8C;AAEpDC,EAAAA,WAAW,EAAE,aAFuC;AAGpDC,EAAAA,KAAK,EAAE;AACL8B,IAAAA,SAAS,EAAE;AACT7B,MAAAA,IAAI,EAAE,SADG;AAETE,MAAAA,WAAW,EAAE;AAFJ,KADN;AAKLqE,IAAAA,QAAQ,EAAE;AACRvE,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KALL;AASLG,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KATL;AAaLwK,IAAAA,UAAU,EAAE;AACV1K,MAAAA,IAAI,EAAE,QADI;AAEVE,MAAAA,WAAW,EAAE;AAFH,KAbP;AAiBLO,IAAAA,OAAO,EAAE;AACPT,MAAAA,IAAI,EAAE,SADC;AAEPE,MAAAA,WAAW,EAAE;AAFN,KAjBJ;AAqBLiJ,IAAAA,IAAI,EAAE;AACJnJ,MAAAA,IAAI,EAAE,QADF;AAEJC,MAAAA,OAAO,EAAE,CAAC,UAAD,EAAa,MAAb,CAFL;AAGJC,MAAAA,WAAW,EAAE;AAHT,KArBD;AA0BLyK,IAAAA,IAAI,EAAE;AACJ3K,MAAAA,IAAI,EAAE,SADF;AAEJ+B,MAAAA,QAAQ,EAAE,IAFN;AAGJC,MAAAA,gBAAgB,EAAE,aAHd;AAIJ9B,MAAAA,WAAW,EAAE;AAJT,KA1BD;AAgCLgG,IAAAA,WAAW,EAAE;AACXlG,MAAAA,IAAI,EAAE,MADK;AAEXa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,MADR;AAEEc,QAAAA,KAAK,EAAE;AAFT,OADY;AAFH,KAhCR;AAyCLkD,IAAAA,SAAS,EAAE;AACThE,MAAAA,IAAI,EAAE,SADG;AAETE,MAAAA,WAAW,EAAE;AAFJ,KAzCN;AA6CL0K,IAAAA,UAAU,EAAE;AACV5K,MAAAA,IAAI,EAAE,SADI;AAEVE,MAAAA,WAAW,EAAE;AAFH,KA7CP;AAiDLC,IAAAA,IAAI,EAAE;AACJH,MAAAA,IAAI,EAAE,QADF;AAEJC,MAAAA,OAAO,EAAE,CAAC,OAAD,EAAU,QAAV,EAAoB,OAApB,CAFL;AAGJC,MAAAA,WAAW,EAAE;AAHT,KAjDD;AAsDLY,IAAAA,KAAK,EAAE;AACLd,MAAAA,IAAI,EAAE,QADD;AAEL+B,MAAAA,QAAQ,EAAE,IAFL;AAGLC,MAAAA,gBAAgB,EAAE,cAHb;AAIL9B,MAAAA,WAAW,EAAE;AAJR,KAtDF;AA4DL2K,IAAAA,OAAO,EAAE;AACP7K,MAAAA,IAAI,EAAE,SADC;AAEPE,MAAAA,WAAW,EAAE;AAFN,KA5DJ;AAgELU,IAAAA,QAAQ,EAAE;AACRZ,MAAAA,IAAI,EAAE,MADE;AAERwC,MAAAA,iBAAiB,EAAE,CAAC,6BAAD,CAFX;AAGR3B,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,WADR;AAEEH,QAAAA,IAAI,EAAE,YAFR;AAGEE,QAAAA,KAAK,EAAE;AACLe,UAAAA,KAAK,EAAE,QADF;AAELF,UAAAA,QAAQ,EAAE;AACRZ,YAAAA,IAAI,EAAE,MADE;AAERc,YAAAA,KAAK,EAAE;AAFC;AAFL;AAHT,OADY;AAHN;AAhEL,GAH6C;AAqFpDC,EAAAA,UAAU,EAAE,MArFwC;AAsFpDC,EAAAA,UAAU,EAAE;AAtFwC,CAA/C;AAyFP,SAAgB8J,eACd5J,QACA6J;AAEA,MAAM3J,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAAC4J,WAAD,EAASD,gBAAT,WAASA,gBAAT,GAA6BN,UAA7B,CAAnB;AACD;;ICjGYQ,UAAU,GAAqC;AAC1DpL,EAAAA,IAAI,EAAE,YADoD;AAE1DC,EAAAA,WAAW,EAAE,aAF6C;AAG1DC,EAAAA,KAAK,EAAE;AACLmL,IAAAA,GAAG,EAAE;AACHlL,MAAAA,IAAI,EAAE,QADH;AAEHE,MAAAA,WAAW,EAAE;AAFV,KADA;AAKLiL,IAAAA,GAAG,EAAE;AACHnL,MAAAA,IAAI,EAAE,QADH;AAEHE,MAAAA,WAAW,EAAE;AAFV,KALA;AASLkL,IAAAA,QAAQ,EAAE;AACRpL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EACT;AAHM,KATL;AAcLG,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KAdL;AAkBLmL,IAAAA,OAAO,EAAE;AACPrL,MAAAA,IAAI,EAAE,SADC;AAEPE,MAAAA,WAAW,EAAE;AAFN,KAlBJ;AAsBLoL,IAAAA,QAAQ,EAAE;AACRtL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KAtBL;AA0BLY,IAAAA,KAAK,EAAE;AACLd,MAAAA,IAAI,EAAE,QADD;AAEL+B,MAAAA,QAAQ,EAAE,IAFL;AAGLC,MAAAA,gBAAgB,EAAE,cAHb;AAIL9B,MAAAA,WAAW,EAAE;AAJR,KA1BF;AAgCLqL,IAAAA,IAAI,EAAE;AACJvL,MAAAA,IAAI,EAAE,QADF;AAEJE,MAAAA,WAAW,EACT,4GACA,uCAJE;AAKJW,MAAAA,YAAY,EAAE;AALV,KAhCD;AAuCL2K,IAAAA,KAAK,EAAE;AACLxL,MAAAA,IAAI,EAAE,QADD;AAELE,MAAAA,WAAW,EACT,6FACA;AAJG;AAvCF,GAHmD;AAiD1Da,EAAAA,UAAU,EAAE,MAjD8C;AAkD1DC,EAAAA,UAAU,EAAE;AAlD8C,CAArD;AAqDP,SAAgByK,eACdvK,QACAwK;AAEA,MAAMtK,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAACuK,WAAD,EAASD,gBAAT,WAASA,gBAAT,GAA6BT,UAA7B,CAAnB;AACD;;IC5DYW,UAAU,GAA+B;AACpD/L,EAAAA,IAAI,EAAE,YAD8C;AAEpDC,EAAAA,WAAW,EAAE,aAFuC;AAGpDC,EAAAA,KAAK,EAAE;AACL8B,IAAAA,SAAS,EAAE;AACT7B,MAAAA,IAAI,EAAE,SADG;AAETE,MAAAA,WAAW,EAAE;AAFJ,KADN;AAKL4B,IAAAA,OAAO,EAAE;AACP9B,MAAAA,IAAI,EAAE,SADC;AAEP+B,MAAAA,QAAQ,EAAE,IAFH;AAGPC,MAAAA,gBAAgB,EAAE,gBAHX;AAIP9B,MAAAA,WAAW,EAAE;AAJN,KALJ;AAWLG,IAAAA,QAAQ,EAAE;AACRL,MAAAA,IAAI,EAAE,SADE;AAERE,MAAAA,WAAW,EAAE;AAFL,KAXL;AAeLO,IAAAA,OAAO,EAAE;AACPT,MAAAA,IAAI,EAAE,SADC;AAEPE,MAAAA,WAAW,EAAE;AAFN,KAfJ;AAmBL2L,IAAAA,eAAe,EAAE;AACf7L,MAAAA,IAAI,EAAE,MADS;AAEfa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,MADR;AAEEc,QAAAA,KAAK,EAAE;AAFT,OADY;AAFC,KAnBZ;AA4BLgL,IAAAA,iBAAiB,EAAE;AACjB9L,MAAAA,IAAI,EAAE,MADW;AAEjBa,MAAAA,YAAY,EAAE,CACZ;AACEb,QAAAA,IAAI,EAAE,MADR;AAEEc,QAAAA,KAAK,EAAE;AAFT,OADY;AAFG,KA5Bd;AAqCLX,IAAAA,IAAI,EAAE;AACJH,MAAAA,IAAI,EAAE,QADF;AAEJC,MAAAA,OAAO,EAAE,CAAC,OAAD,EAAU,SAAV,CAFL;AAGJC,MAAAA,WAAW,EAAE;AAHT;AArCD,GAH6C;AA8CpDa,EAAAA,UAAU,EAAE,MA9CwC;AA+CpDC,EAAAA,UAAU,EAAE;AA/CwC,CAA/C;AAkDP,SAAgB+K,eACd7K,QACA8K;AAEA,MAAM5K,mBAAmB,GAA6B,SAAhDA,mBAAgD;AAAA,WACpDF,MAAM,GAAGA,MAAM,CAACG,iBAAP,OAAAH,MAAM,YAAT,GAAuCG,iBAAiB,MAAjB,mBADO;AAAA,GAAtD;;AAEAD,EAAAA,mBAAmB,CAAC6K,WAAD,EAASD,gBAAT,WAASA,gBAAT,GAA6BJ,UAA7B,CAAnB;AACD;;SCxBeM,YAAYhL;AAC1BD,EAAAA,cAAc,CAACC,MAAD,CAAd;AACAuK,EAAAA,cAAc,CAACvK,MAAD,CAAd;AACA6K,EAAAA,cAAc,CAAC7K,MAAD,CAAd;AACA+I,EAAAA,cAAc,CAAC/I,MAAD,CAAd;AACAoJ,EAAAA,gBAAgB,CAACpJ,MAAD,CAAhB;AACA4J,EAAAA,cAAc,CAAC5J,MAAD,CAAd;AACA+C,EAAAA,qBAAqB,CAAC/C,MAAD,CAArB;AACAuD,EAAAA,gBAAgB,CAACvD,MAAD,CAAhB;AACAmB,EAAAA,gBAAgB,CAACnB,MAAD,CAAhB;AACAuB,EAAAA,qBAAqB,CAACvB,MAAD,CAArB;AACA6G,EAAAA,mBAAmB,CAAC7G,MAAD,CAAnB;AACAkH,EAAAA,gBAAgB,CAAClH,MAAD,CAAhB;AACAsH,EAAAA,qBAAqB,CAACtH,MAAD,CAArB;AACA0H,EAAAA,eAAe,CAAC1H,MAAD,CAAf;AACA2I,EAAAA,YAAY,CAAC3I,MAAD,CAAZ;AACAmE,EAAAA,gBAAgB,CAACnE,MAAD,CAAhB;AACAuE,EAAAA,sBAAsB,CAACvE,MAAD,CAAtB;AACAsC,EAAAA,gBAAgB,CAACtC,MAAD,CAAhB;AACAmF,EAAAA,aAAa,CAACnF,MAAD,CAAb;AACAyF,EAAAA,qBAAqB,CAACzF,MAAD,CAArB;AACA8F,EAAAA,mBAAmB,CAAC9F,MAAD,CAAnB;AACAmG,EAAAA,qBAAqB,CAACnG,MAAD,CAArB;AACAwG,EAAAA,kBAAkB,CAACxG,MAAD,CAAlB;AACD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";function e(e){return e&&"object"==typeof e&&"default"in e?e.default:e}Object.defineProperty(exports,"__esModule",{value:!0});var t=e(require("@plasmicapp/host/registerComponent")),o=require("antd"),n=e(require("react")),i=e(require("antd/lib/checkbox/Checkbox")),p=e(require("antd/lib/checkbox/Group")),r=e(require("antd/lib/collapse/CollapsePanel")),l=e(require("antd/lib/collapse/Collapse")),a=e(require("antd/lib/dropdown")),s=e(require("antd/lib/dropdown/dropdown-button")),d=e(require("antd/lib/input/TextArea")),u=e(require("antd/lib/input/Search")),c=e(require("antd/lib/input/Password")),h=e(require("antd/lib/input/Group")),m=e(require("antd/lib/menu/MenuDivider")),y=e(require("antd/lib/menu/MenuItem")),b=e(require("antd/lib/menu/SubMenu")),f=e(require("antd/lib/menu/index")),g=require("rc-menu"),x=require("rc-select"),v={name:"AntdButton",displayName:"Antd Button",props:{type:{type:"choice",options:["default","primary","ghost","dashed","link","text"],description:"Can be set to primary, ghost, dashed, link, text, default"},size:{type:"choice",options:["small","medium","large"],description:"Set the size of button"},shape:{type:"choice",options:["default","circle","round"],description:"Can be set button shape"},disabled:{type:"boolean",description:"Disabled state of button"},ghost:{type:"boolean",description:"Make background transparent and invert text and border colors"},danger:{type:"boolean",description:"Set the danger status of button"},block:{type:"boolean",description:"Option to fit button width to its parent width"},loading:{type:"boolean",description:"Set the loading status of button"},href:{type:"string",description:"Redirect url of link button"},target:{type:"choice",options:["_blank","_self","_parent","_top"],description:"Same as target attribute of a, works when href is specified"},children:{type:"slot",defaultValue:[{type:"text",value:"Button"}]}},importPath:"antd",importName:"Button"};function w(e,n){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(o.Button,null!=n?n:v)}function A(){return(A=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var o=arguments[t];for(var n in o)Object.prototype.hasOwnProperty.call(o,n)&&(e[n]=o[n])}return e}).apply(this,arguments)}function C(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,(Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var M=function(e){function t(){return e.apply(this,arguments)||this}return C(t,e),t.prototype.render=function(){return n.createElement(i,Object.assign({},this.props))},t}(n.Component),k={name:"AntdCheckbox",displayName:"Antd Checkbox",props:{autoFocus:{type:"boolean",description:"If get focus when component mounted"},checked:{type:"boolean",editOnly:!0,uncontrolledProp:"defaultChecked",description:"Specifies the initial state: whether or not the checkbox is selected"},disabled:{type:"boolean",description:"If disable checkbox"},indeterminate:{type:"boolean",description:"The indeterminate checked state of checkbox"},value:{type:"string",description:"The checkbox value"},children:{type:"slot",defaultValue:[{type:"text",value:"Checkbox"}]}},importPath:"antd/lib/checkbox/Checkbox",importName:"Checkbox",defaultStyles:{marginLeft:"0"},isDefaultExport:!0};function I(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(M,null!=o?o:k)}var P={name:"AntdCheckboxGroup",displayName:"Antd Checkbox Group",props:{disabled:{type:"boolean",description:"If disable all checkboxes"},value:{type:"object",editOnly:!0,uncontrolledProp:"defaultValue",description:"Default selected value"},children:{type:"slot",allowedComponents:["AntdCheckbox"],defaultValue:[{type:"component",name:"AntdCheckbox"}]}},importPath:"antd/lib/checkbox/Group",importName:"CheckboxGroup",isDefaultExport:!0};function S(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(p,null!=o?o:P)}var D={height:"160px",color:"#fff",lineHeight:"160px",textAlign:"center",backgroundColor:"#364d79"},O={name:"AntdCarousel",displayName:"Antd Carousel",props:{autoplay:{type:"boolean",description:"Whether to scroll automatically"},dotPosition:{type:"choice",options:["top","bottom","left","right"],description:"The position of the dots"},dots:{type:"boolean",description:"Whether to show the dots at the bottom of the gallery"},effect:{type:"choice",options:["scrollx","fade"]},children:{type:"slot",defaultValue:[{type:"vbox",children:{type:"text",value:"1",styles:D}},{type:"vbox",children:{type:"text",value:"2",styles:D}}]}},importPath:"antd",importName:"Carousel"};function N(e,n){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(o.Carousel,null!=n?n:O)}var T={name:"AntdCollapsePanel",displayName:"Antd Collapse Panel",props:{collapsible:{type:"choice",options:["header","disabled"],description:"Specify whether the panel be collapsible or the trigger area of collapsible"},forceRender:{type:"boolean",description:"Forced render of content on panel, instead of lazy rending after clicking on header"},header:{type:"slot",defaultValue:[{type:"text",value:"Header"}]},key:{type:"string",description:"Unique key identifying the panel from among its siblings"},showArrow:{type:"boolean",description:"If false, panel will not show arrow icon"},children:{type:"slot",defaultValue:[{type:"text",value:"Insert text here"}]}},importPath:"antd/lib/collapse/CollapsePanel",importName:"CollapsePanel",isDefaultExport:!0};function G(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(r,null!=o?o:T)}var V={name:"AntdCollapse",displayName:"Antd Collapse",props:{accordion:{type:"boolean",description:"If true, Collapse renders as Accordion"},activeKey:{type:"object",editOnly:!0,uncontrolledProp:"defaultActiveKey",description:"Key of the active panel"},bordered:{type:"boolean",description:"Toggles rendering of the border around the collapse block"},collapsible:{type:"choice",options:["header","disabled"],description:"Specify whether the panels of children be collapsible or the trigger area of collapsible"},expandIconPosition:{type:"choice",options:["left","right"],description:"Set expand icon position"},ghost:{type:"boolean",description:"Make the collapse borderless and its background transparent"},children:{type:"slot",allowedComponents:["AntdCollapsePanel"],defaultValue:[{type:"component",name:"AntdCollapsePanel"}]}},importPath:"antd/lib/collapse/Collapse",importName:"Collapse",isDefaultExport:!0};function W(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(l,null!=o?o:V)}var q=function(e){function t(){return e.apply(this,arguments)||this}return C(t,e),t.prototype.render=function(){var e=A({},this.props);return e.children="string"==typeof this.props.children?n.createElement("div",null,this.props.children):this.props.children,n.createElement(a,Object.assign({},e))},t}(n.Component),z={name:"AntdDropdown",displayName:"Antd Dropdown",props:{arrow:{type:"boolean",description:"Whether the dropdown arrow should be visible"},disabled:{type:"boolean",description:"Whether the dropdown menu is disabled"},overlay:{type:"slot",allowedComponents:["AntdMenu"],defaultValue:[{type:"component",name:"AntdMenu"}]},placement:{type:"choice",options:["bottomLeft","bottomCenter","bottomRight","topLeft","topCenter","topRight"],description:"Placement of popup menu"},trigger:{type:"choice",options:["click","hover","contextMenu"],description:"The trigger mode which executes the dropdown action"},visible:{type:"boolean",description:"Whether the dropdown menu is currently visible"},children:{type:"slot",defaultValue:[{type:"text",value:"Dropdown"}]}},importPath:"@plasmicpkgs/antd",importName:"Dropdown"};function j(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(q,null!=o?o:z)}var E={name:"AntdDropdownButton",displayName:"Antd Dropdown Button",props:{disabled:{type:"boolean",description:"Whether the dropdown menu is disabled"},icon:"slot",overlay:{type:"slot",allowedComponents:["AntdMenu"],defaultValue:[{type:"component",name:"AntdMenu"}]},placement:{type:"choice",options:["bottomLeft","bottomCenter","bottomRight","topLeft","topCenter","topRight"],description:"Placement of popup menu"},size:{type:"choice",options:["small","medium","large"],description:"Set the size of button"},trigger:{type:"choice",options:["click","hover","contextMenu"],description:"The trigger mode which executes the dropdown action"},type:{type:"choice",options:["default","primary","ghost","dashed","link","text"],description:"Can be set to primary, ghost, dashed, link, text, default"},visible:{type:"boolean",description:"Whether the dropdown menu is currently visible"},children:{type:"slot",defaultValue:[{type:"text",value:"Dropdown"}]}},importPath:"antd/lib/dropdown/dropdown-button",importName:"DropdownButton",isDefaultExport:!0};function B(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(s,null!=o?o:E)}var R={name:"AntdInput",displayName:"Antd Input",props:{addonAfter:"slot",addonBefore:"slot",allowClear:{type:"boolean",description:"If allow to remove input content with clear icon"},bordered:{type:"boolean",description:"Whether has border style"},disabled:{type:"boolean",description:"Whether the input is disabled"},id:{type:"string",description:"The ID for input"},maxLength:{type:"number",description:"The max length"},placeholder:{type:"string",description:"Placeholder for the input"},prefix:"slot",size:{type:"choice",options:["small","middle","large"],description:"The size of the input box"},suffix:"slot",type:{type:"string",description:"The type of input"},value:{type:"string",editOnly:!0,uncontrolledProp:"defaultValue"}},importPath:"antd",importName:"Input"};function L(e,n){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(o.Input,null!=n?n:R)}var _={name:"AntdInputTextArea",displayName:"Antd Input Text Area",props:{allowClear:{type:"boolean",description:"If allow to remove input content with clear icon"},autoSize:{type:"object",description:"Height autosize feature, can be set to true | false or an object { minRows: 2, maxRows: 6 }"},disabled:{type:"boolean",description:"Whether the input is disabled"},bordered:{type:"boolean",description:"Whether has border style"},showCount:{type:"boolean",description:"Whether show text count"},id:{type:"string",description:"The ID for input"},maxLength:{type:"number",description:"The max length"},placeholder:{type:"string",description:"Placeholder for the input"},value:{type:"string",editOnly:!0,uncontrolledProp:"defaultValue"}},importPath:"antd/lib/input/TextArea",importName:"TextArea",isDefaultExport:!0};function K(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(d,null!=o?o:_)}var F={name:"AntdInputSearch",displayName:"Antd Input Search",props:{addonBefore:"slot",allowClear:{type:"boolean",description:"If allow to remove input content with clear icon"},bordered:{type:"boolean",description:"Whether has border style"},disabled:{type:"boolean",description:"Whether the input is disabled"},enterButton:"slot",id:{type:"string",description:"The ID for input"},loading:{type:"boolean",description:"Search box with loading"},maxLength:{type:"number",description:"The max length"},placeholder:{type:"string",description:"Placeholder for the input"},prefix:"slot",size:{type:"choice",options:["small","middle","large"],description:"The size of the input box"},suffix:"slot",type:{type:"string",description:"The type of input"},value:{type:"string",editOnly:!0,uncontrolledProp:"defaultValue"}},importPath:"antd/lib/input/Search",importName:"Search",isDefaultExport:!0};function H(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(u,null!=o?o:F)}var U={name:"AntdInputPassword",displayName:"Antd Input Password",props:{addonAfter:"slot",addonBefore:"slot",allowClear:{type:"boolean",description:"If allow to remove input content with clear icon"},bordered:{type:"boolean",description:"Whether has border style"},disabled:{type:"boolean",description:"Whether the input is disabled"},id:{type:"string",description:"The ID for input"},maxLength:{type:"number",description:"The max length"},placeholder:{type:"string",description:"Placeholder for the input"},prefix:"slot",size:{type:"choice",options:["small","middle","large"],description:"The size of the input box"},suffix:"slot",type:{type:"string",description:"The type of input"},value:{type:"string",editOnly:!0,uncontrolledProp:"defaultValue"},visibilityToggle:{type:"boolean",description:"Whether show toggle button"}},importPath:"antd/lib/input/Password",importName:"Password",isDefaultExport:!0};function J(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(c,null!=o?o:U)}var Q={name:"AntdInputGroup",displayName:"Antd Input Group",props:{compact:{type:"boolean",description:"Whether use compact style"},size:{type:"choice",options:["small","default","large"],description:"The size of Input.Group specifies the size of the included Input fields"},children:{type:"slot",defaultValue:[{type:"component",name:"AntdInput"},{type:"component",name:"AntdInput"}]}},importPath:"antd/lib/input/Group",importName:"InputGroup",isDefaultExport:!0};function X(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(h,null!=o?o:Q)}var Y={name:"AntdMenuDivider",displayName:"Antd Menu Divider",props:{dashed:{type:"boolean",description:"Whether line is dashed"}},importPath:"antd/lib/menu/MenuDivider",importName:"MenuDivider",isDefaultExport:!0};function Z(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(m,null!=o?o:Y)}var $={name:"AntdMenuItem",displayName:"Antd Menu Item",props:{danger:{type:"boolean",description:"Display the danger style"},disabled:{type:"boolean",description:"Whether disabled select"},key:{type:"string",description:"Unique ID of the menu item"},title:{type:"string",description:"Set display title for collapsed item"},children:{type:"slot",defaultValue:[{type:"text",value:"Option"}]}},importPath:"antd/lib/menu/MenuItem",importName:"MenuItem",isDefaultExport:!0};function ee(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(y,null!=o?o:$)}var te={name:"AntdMenuItemGroup",displayName:"Antd Menu Item Group",props:{title:{type:"slot",defaultValue:[{type:"text",value:"Group"}]},children:{type:"slot",allowedComponents:["AntdMenuItem","AntdMenuDivider","AntdMenuItemGroup"],defaultValue:[{type:"component",name:"AntdMenuItem"}]}},importPath:"rc-menu",importName:"ItemGroup"};function oe(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(g.ItemGroup,null!=o?o:te)}var ne={name:"AntdSubMenu",displayName:"Antd SubMenu",props:{disabled:{type:"boolean",description:"Whether sub-menu is disabled"},key:{type:"string",description:"Unique ID of the sub-menu"},title:{type:"slot",defaultValue:[{type:"text",value:"Sub-menu"}]},children:{type:"slot",allowedComponents:["AntdMenuItem","AntdMenuDivider","AntdMenuItemGroup","AntdSubMenu"],defaultValue:[{type:"component",name:"AntdMenuItem"}]}},importPath:"antd/lib/menu/SubMenu",importName:"SubMenu",isDefaultExport:!0};function ie(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(b,null!=o?o:ne)}var pe={name:"AntdMenu",displayName:"Antd Menu",props:{expandIcon:{type:"slot"},forceSubMenuRender:{type:"boolean",description:"Render submenu into DOM before it becomes visible"},inlineIndent:{type:"number",description:"Indent (in pixels) of inline menu items on each level"},mode:{type:"choice",options:["horizontal","vertical","inline"],description:"Type of menu"},multiple:{type:"boolean",description:"Allows selection of multiple items"},openKeys:{type:"object",editOnly:!0,uncontrolledProp:"defaultOpenKeys",description:"Array with the keys of default opened sub menus"},overflowedIndicator:{type:"slot"},selectable:{type:"boolean",description:"Allows selecting menu items"},selectedKeys:{type:"object",editOnly:!0,uncontrolledProp:"defaultSelectedKeys",description:"Array with the keys of default selected menu items"},subMenuCloseDelay:{type:"number",description:"Delay time to hide submenu when mouse leaves (in seconds)"},subMenuOpenDelay:{type:"number",description:"Delay time to show submenu when mouse enters, (in seconds)"},theme:{type:"choice",options:["light","dark"],description:"Color theme of the menu"},triggerSubMenuAction:{type:"choice",options:["hover","click"],description:"Which action can trigger submenu open/close"},children:{type:"slot",allowedComponents:["AntdMenuItem","AntdMenuDivider","AntdSubMenu"],defaultValue:[{type:"component",name:"AntdMenuItem"},{type:"component",name:"AntdSubMenu"}]}},importPath:"antd/lib/menu/index",importName:"Menu",isDefaultExport:!0};function re(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(f,null!=o?o:pe)}var le={name:"AntdOption",displayName:"Antd Option",props:{disabled:{type:"boolean",description:"Disable this option"},title:{type:"string",description:"title of Select after select this Option"},value:{type:"string",description:"Default to filter with this property"},key:{type:"string",description:"Option key"},children:{type:"slot",defaultValue:[{type:"text",value:"Option"}]}},importPath:"rc-select",importName:"Option"};function ae(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(x.Option,null!=o?o:le)}var se={name:"AntdOptionGroup",displayName:"Antd Option Group",props:{key:{type:"string",description:"Group key"},label:{type:"string",description:"Group label"},children:{type:"slot",allowedComponents:["AntdOption"],defaultValue:[{type:"component",name:"AntdOption"}]}},importPath:"rc-select",importName:"OptGroup"};function de(e,o){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(x.OptGroup,null!=o?o:se)}var ue={name:"AntdSelect",displayName:"Antd Select",props:{autoFocus:{type:"boolean",description:"Get focus by default"},bordered:{type:"boolean",description:"Whether has border style"},disabled:{type:"boolean",description:"Whether disabled select"},listHeight:{type:"number",description:"Config popup height"},loading:{type:"boolean",description:"Indicate loading state"},mode:{type:"choice",options:["multiple","tags"],description:"Set mode of Select"},open:{type:"boolean",editOnly:!0,uncontrolledProp:"defaultOpen",description:"Initial open state of dropdown"},placeholder:{type:"slot",defaultValue:[{type:"text",value:"Select"}]},showArrow:{type:"boolean",description:"Whether to show the drop-down arrow"},showSearch:{type:"boolean",description:"Whether show search input in single mode"},size:{type:"choice",options:["large","middle","small"],description:"Set mode of Select"},value:{type:"object",editOnly:!0,uncontrolledProp:"defaultValue",description:"Initial selected option"},virtual:{type:"boolean",description:"Disable virtual scroll when set to false"},children:{type:"slot",allowedComponents:["AntdOption, AntdOptionGroup"],defaultValue:[{type:"component",name:"AntdOption",props:{value:"Option",children:{type:"text",value:"Option"}}}]}},importPath:"antd",importName:"Select"};function ce(e,n){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(o.Select,null!=n?n:ue)}var he={name:"AntdSlider",displayName:"Antd Slider",props:{max:{type:"number",description:"The maximum value the slider can slide to"},min:{type:"number",description:"The minimum value the slider can slide to"},included:{type:"boolean",description:"Make effect when marks not null, true means containment and false means coordinative"},disabled:{type:"boolean",description:"If true, the slider will not be interactable"},reverse:{type:"boolean",description:"Reverse the component"},vertical:{type:"boolean",description:"If true, the slider will be vertical"},value:{type:"number",editOnly:!0,uncontrolledProp:"defaultValue",description:"The default value of slider"},step:{type:"object",description:"The granularity the slider can step through values. Must greater than 0, and be divided by (max - min). When marks no null, step can be null",defaultValue:1},marks:{type:"object",description:"Tick mark of Slider, type of key must be number, and must in closed interval [min, max], each mark can declare its own style"}},importPath:"antd",importName:"Slider"};function me(e,n){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(o.Slider,null!=n?n:he)}var ye={name:"AntdSwitch",displayName:"Antd Switch",props:{autoFocus:{type:"boolean",description:"Whether get focus when component mounted"},checked:{type:"boolean",editOnly:!0,uncontrolledProp:"defaultChecked",description:"Whether to set the initial state"},disabled:{type:"boolean",description:"Disable switch"},loading:{type:"boolean",description:"Loading state of switch"},checkedChildren:{type:"slot",defaultValue:[{type:"text",value:"1"}]},unCheckedChildren:{type:"slot",defaultValue:[{type:"text",value:"0"}]},size:{type:"choice",options:["small","default"],description:"The size of the Switch"}},importPath:"antd",importName:"Switch"};function be(e,n){!function(){e?e.registerComponent.apply(e,arguments):t.apply(void 0,arguments)}(o.Switch,null!=n?n:ye)}exports.Dropdown=q,exports.buttonMeta=v,exports.carouselMeta=O,exports.checkboxGroupMeta=P,exports.checkboxMeta=k,exports.collapsteMeta=V,exports.collapstePanelMeta=T,exports.dropdownButtonMeta=E,exports.dropdownMeta=z,exports.inputGroupMeta=Q,exports.inputMeta=R,exports.inputPasswordMeta=U,exports.inputSearchMeta=F,exports.inputTextAreaMeta=_,exports.menuDividerMeta=Y,exports.menuItemGroupMeta=te,exports.menuItemMeta=$,exports.menuMeta=pe,exports.optGroupMeta=se,exports.optionMeta=le,exports.registerAll=function(e){w(e),me(e),be(e),ae(e),de(e),ce(e),G(e),W(e),I(e),S(e),Z(e),ee(e),oe(e),ie(e),re(e),j(e),B(e),N(e),L(e),K(e),H(e),J(e),X(e)},exports.registerButton=w,exports.registerCarousel=N,exports.registerCheckbox=I,exports.registerCheckboxGroup=S,exports.registerCollapse=W,exports.registerCollapsePanel=G,exports.registerDropdown=j,exports.registerDropdownButton=B,exports.registerInput=L,exports.registerInputGroup=X,exports.registerInputPassword=J,exports.registerInputSearch=H,exports.registerInputTextArea=K,exports.registerMenu=re,exports.registerMenuDivider=Z,exports.registerMenuItem=ee,exports.registerMenuItemGroup=oe,exports.registerOptGroup=de,exports.registerOption=ae,exports.registerSelect=ce,exports.registerSlider=me,exports.registerSubMenu=ie,exports.registerSwitch=be,exports.selectMeta=ue,exports.sliderMeta=he,exports.subMenuMeta=ne,exports.switchMeta=ye;
|
|
2
|
+
//# sourceMappingURL=antd.cjs.production.min.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"antd.cjs.production.min.js","sources":["../src/registerButton.ts","../src/registerCheckbox.tsx","../src/registerCarousel.ts","../src/registerCollapse.ts","../src/registerDropdown.tsx","../src/registerInput.ts","../src/registerMenu.ts","../src/registerOption.ts","../src/registerSelect.ts","../src/registerSlider.ts","../src/registerSwitch.ts","../src/index.ts"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { Button, ButtonProps } from \"antd\";\nimport { Registerable } from \"./registerable\";\n\nexport const buttonMeta: ComponentMeta<ButtonProps> = {\n name: \"AntdButton\",\n displayName: \"Antd Button\",\n props: {\n type: {\n type: \"choice\",\n options: [\"default\", \"primary\", \"ghost\", \"dashed\", \"link\", \"text\"],\n description: \"Can be set to primary, ghost, dashed, link, text, default\",\n },\n size: {\n type: \"choice\",\n options: [\"small\", \"medium\", \"large\"],\n description: \"Set the size of button\",\n },\n shape: {\n type: \"choice\",\n options: [\"default\", \"circle\", \"round\"],\n description: \"Can be set button shape\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Disabled state of button\",\n },\n ghost: {\n type: \"boolean\",\n description:\n \"Make background transparent and invert text and border colors\",\n },\n danger: {\n type: \"boolean\",\n description: \"Set the danger status of button\",\n },\n block: {\n type: \"boolean\",\n description: \"Option to fit button width to its parent width\",\n },\n loading: {\n type: \"boolean\",\n description: \"Set the loading status of button\",\n },\n href: {\n type: \"string\",\n description: \"Redirect url of link button\",\n },\n target: {\n type: \"choice\",\n options: [\"_blank\", \"_self\", \"_parent\", \"_top\"],\n description:\n \"Same as target attribute of a, works when href is specified\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Button\",\n },\n ],\n },\n },\n importPath: \"antd\",\n importName: \"Button\",\n};\n\nexport function registerButton(\n loader?: Registerable,\n customButtonMeta?: ComponentMeta<ButtonProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Button, customButtonMeta ?? buttonMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport React from \"react\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport Checkbox, { CheckboxProps } from \"antd/lib/checkbox/Checkbox\";\nimport CheckboxGroup, { CheckboxGroupProps } from \"antd/lib/checkbox/Group\";\nimport { Registerable } from \"./registerable\";\n\nclass CheckboxWrapper extends React.Component<CheckboxProps> {\n render() {\n return <Checkbox {...this.props} />;\n }\n}\n\nexport const checkboxMeta: ComponentMeta<CheckboxProps> = {\n name: \"AntdCheckbox\",\n displayName: \"Antd Checkbox\",\n props: {\n autoFocus: {\n type: \"boolean\",\n description: \"If get focus when component mounted\",\n },\n checked: {\n type: \"boolean\",\n editOnly: true,\n uncontrolledProp: \"defaultChecked\",\n description:\n \"Specifies the initial state: whether or not the checkbox is selected\",\n },\n disabled: {\n type: \"boolean\",\n description: \"If disable checkbox\",\n },\n indeterminate: {\n type: \"boolean\",\n description: \"The indeterminate checked state of checkbox\",\n },\n value: {\n type: \"string\",\n description: \"The checkbox value\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Checkbox\",\n },\n ],\n },\n },\n importPath: \"antd/lib/checkbox/Checkbox\",\n importName: \"Checkbox\",\n defaultStyles: {\n marginLeft: \"0\",\n },\n isDefaultExport: true,\n};\n\nexport function registerCheckbox(\n loader?: Registerable,\n customCheckboxMeta?: ComponentMeta<CheckboxProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(CheckboxWrapper, customCheckboxMeta ?? checkboxMeta);\n}\n\nexport const checkboxGroupMeta: ComponentMeta<CheckboxGroupProps> = {\n name: \"AntdCheckboxGroup\",\n displayName: \"Antd Checkbox Group\",\n props: {\n disabled: {\n type: \"boolean\",\n description: \"If disable all checkboxes\",\n },\n value: {\n type: \"object\",\n editOnly: true,\n uncontrolledProp: \"defaultValue\",\n description: \"Default selected value\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [\"AntdCheckbox\"],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdCheckbox\",\n },\n ],\n },\n },\n importPath: \"antd/lib/checkbox/Group\",\n importName: \"CheckboxGroup\",\n isDefaultExport: true,\n};\n\nexport function registerCheckboxGroup(\n loader?: Registerable,\n customCheckboxGroupMeta?: ComponentMeta<CheckboxGroupProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(\n CheckboxGroup,\n customCheckboxGroupMeta ?? checkboxGroupMeta\n );\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { Carousel, CarouselProps } from \"antd\";\nimport { CSSProperties } from \"react\";\nimport { Registerable } from \"./registerable\";\n\nconst contentStyle: CSSProperties = {\n height: \"160px\",\n color: \"#fff\",\n lineHeight: \"160px\",\n textAlign: \"center\",\n backgroundColor: \"#364d79\",\n};\n\nexport const carouselMeta: ComponentMeta<CarouselProps> = {\n name: \"AntdCarousel\",\n displayName: \"Antd Carousel\",\n props: {\n autoplay: {\n type: \"boolean\",\n description: \"Whether to scroll automatically\",\n },\n dotPosition: {\n type: \"choice\",\n options: [\"top\", \"bottom\", \"left\", \"right\"],\n description: \"The position of the dots\",\n },\n dots: {\n type: \"boolean\",\n description: \"Whether to show the dots at the bottom of the gallery\",\n },\n effect: {\n type: \"choice\",\n options: [\"scrollx\", \"fade\"],\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"vbox\",\n children: {\n type: \"text\",\n value: \"1\",\n styles: contentStyle,\n },\n },\n {\n type: \"vbox\",\n children: {\n type: \"text\",\n value: \"2\",\n styles: contentStyle,\n },\n },\n ],\n },\n },\n importPath: \"antd\",\n importName: \"Carousel\",\n};\n\nexport function registerCarousel(\n loader?: Registerable,\n customCarouselMeta?: ComponentMeta<CarouselProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Carousel, customCarouselMeta ?? carouselMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { CollapseProps, CollapsePanelProps } from \"antd\";\nimport CollapsePanel from \"antd/lib/collapse/CollapsePanel\";\nimport Collapse from \"antd/lib/collapse/Collapse\";\nimport { Registerable } from \"./registerable\";\n\nexport const collapstePanelMeta: ComponentMeta<CollapsePanelProps> = {\n name: \"AntdCollapsePanel\",\n displayName: \"Antd Collapse Panel\",\n props: {\n collapsible: {\n type: \"choice\",\n options: [\"header\", \"disabled\"],\n description:\n \"Specify whether the panel be collapsible or the trigger area of collapsible\",\n },\n forceRender: {\n type: \"boolean\",\n description:\n \"Forced render of content on panel, instead of lazy rending after clicking on header\",\n },\n header: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Header\",\n },\n ],\n },\n key: {\n type: \"string\",\n description: \"Unique key identifying the panel from among its siblings\",\n },\n showArrow: {\n type: \"boolean\",\n description: \"If false, panel will not show arrow icon\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Insert text here\",\n },\n ],\n },\n },\n importPath: \"antd/lib/collapse/CollapsePanel\",\n importName: \"CollapsePanel\",\n isDefaultExport: true,\n};\n\nexport function registerCollapsePanel(\n loader?: Registerable,\n customCollapsePanelMeta?: ComponentMeta<CollapsePanelProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(\n CollapsePanel,\n customCollapsePanelMeta ?? collapstePanelMeta\n );\n}\n\nexport const collapsteMeta: ComponentMeta<CollapseProps> = {\n name: \"AntdCollapse\",\n displayName: \"Antd Collapse\",\n props: {\n accordion: {\n type: \"boolean\",\n description: \"If true, Collapse renders as Accordion\",\n },\n activeKey: {\n type: \"object\",\n editOnly: true,\n uncontrolledProp: \"defaultActiveKey\",\n description: \"Key of the active panel\",\n },\n bordered: {\n type: \"boolean\",\n description: \"Toggles rendering of the border around the collapse block\",\n },\n collapsible: {\n type: \"choice\",\n options: [\"header\", \"disabled\"],\n description:\n \"Specify whether the panels of children be collapsible or the trigger area of collapsible\",\n },\n expandIconPosition: {\n type: \"choice\",\n options: [\"left\", \"right\"],\n description: \"Set expand icon position\",\n },\n ghost: {\n type: \"boolean\",\n description:\n \"Make the collapse borderless and its background transparent\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [\"AntdCollapsePanel\"],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdCollapsePanel\",\n },\n ],\n },\n },\n importPath: \"antd/lib/collapse/Collapse\",\n importName: \"Collapse\",\n isDefaultExport: true,\n};\n\nexport function registerCollapse(\n loader?: Registerable,\n customCollapseMeta?: ComponentMeta<CollapseProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Collapse, customCollapseMeta ?? collapsteMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport React from \"react\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport AntdDropdown, {\n DropdownButtonProps,\n DropDownProps,\n} from \"antd/lib/dropdown\";\nimport { Registerable } from \"./registerable\";\nimport DropdownButton from \"antd/lib/dropdown/dropdown-button\";\n\nexport class Dropdown extends React.Component<DropDownProps> {\n render() {\n const finalProps = { ...this.props };\n finalProps.children =\n typeof this.props.children === \"string\" ? (\n <div>{this.props.children}</div>\n ) : (\n this.props.children\n );\n return <AntdDropdown {...finalProps}>{}</AntdDropdown>;\n }\n}\n\nexport const dropdownMeta: ComponentMeta<DropDownProps> = {\n name: \"AntdDropdown\",\n displayName: \"Antd Dropdown\",\n props: {\n arrow: {\n type: \"boolean\",\n description: \"Whether the dropdown arrow should be visible\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Whether the dropdown menu is disabled\",\n },\n overlay: {\n type: \"slot\",\n allowedComponents: [\"AntdMenu\"],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdMenu\",\n },\n ],\n },\n placement: {\n type: \"choice\",\n options: [\n \"bottomLeft\",\n \"bottomCenter\",\n \"bottomRight\",\n \"topLeft\",\n \"topCenter\",\n \"topRight\",\n ],\n description: \"Placement of popup menu\",\n },\n trigger: {\n type: \"choice\",\n options: [\"click\", \"hover\", \"contextMenu\"],\n description: \"The trigger mode which executes the dropdown action\",\n },\n visible: {\n type: \"boolean\",\n description: \"Whether the dropdown menu is currently visible\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Dropdown\",\n },\n ],\n },\n },\n importPath: \"@plasmicpkgs/antd\",\n importName: \"Dropdown\",\n};\n\nexport function registerDropdown(\n loader?: Registerable,\n customDropdownMeta?: ComponentMeta<DropDownProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Dropdown, customDropdownMeta ?? dropdownMeta);\n}\n\nexport const dropdownButtonMeta: ComponentMeta<DropdownButtonProps> = {\n name: \"AntdDropdownButton\",\n displayName: \"Antd Dropdown Button\",\n props: {\n disabled: {\n type: \"boolean\",\n description: \"Whether the dropdown menu is disabled\",\n },\n icon: \"slot\",\n overlay: {\n type: \"slot\",\n allowedComponents: [\"AntdMenu\"],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdMenu\",\n },\n ],\n },\n placement: {\n type: \"choice\",\n options: [\n \"bottomLeft\",\n \"bottomCenter\",\n \"bottomRight\",\n \"topLeft\",\n \"topCenter\",\n \"topRight\",\n ],\n description: \"Placement of popup menu\",\n },\n size: {\n type: \"choice\",\n options: [\"small\", \"medium\", \"large\"],\n description: \"Set the size of button\",\n },\n trigger: {\n type: \"choice\",\n options: [\"click\", \"hover\", \"contextMenu\"],\n description: \"The trigger mode which executes the dropdown action\",\n },\n type: {\n type: \"choice\",\n options: [\"default\", \"primary\", \"ghost\", \"dashed\", \"link\", \"text\"],\n description: \"Can be set to primary, ghost, dashed, link, text, default\",\n },\n visible: {\n type: \"boolean\",\n description: \"Whether the dropdown menu is currently visible\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Dropdown\",\n },\n ],\n },\n },\n importPath: \"antd/lib/dropdown/dropdown-button\",\n importName: \"DropdownButton\",\n isDefaultExport: true,\n};\n\nexport function registerDropdownButton(\n loader?: Registerable,\n customDropdownButtonMeta?: ComponentMeta<DropDownProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(\n DropdownButton,\n customDropdownButtonMeta ?? dropdownButtonMeta\n );\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { Input, InputProps } from \"antd\";\nimport {\n GroupProps,\n PasswordProps,\n SearchProps,\n TextAreaProps,\n} from \"antd/lib/input\";\nimport TextArea from \"antd/lib/input/TextArea\";\nimport Search from \"antd/lib/input/Search\";\nimport Password from \"antd/lib/input/Password\";\nimport InputGroup from \"antd/lib/input/Group\";\nimport { Registerable } from \"./registerable\";\n\nexport const inputMeta: ComponentMeta<InputProps> = {\n name: \"AntdInput\",\n displayName: \"Antd Input\",\n props: {\n addonAfter: \"slot\",\n addonBefore: \"slot\",\n allowClear: {\n type: \"boolean\",\n description: \"If allow to remove input content with clear icon\",\n },\n bordered: {\n type: \"boolean\",\n description: \"Whether has border style\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Whether the input is disabled\",\n },\n id: {\n type: \"string\",\n description: \"The ID for input\",\n },\n maxLength: {\n type: \"number\",\n description: \"The max length\",\n },\n placeholder: {\n type: \"string\",\n description: \"Placeholder for the input\",\n },\n prefix: \"slot\",\n size: {\n type: \"choice\",\n options: [\"small\", \"middle\", \"large\"],\n description: \"The size of the input box\",\n },\n suffix: \"slot\",\n type: {\n type: \"string\",\n description: \"The type of input\",\n },\n value: {\n type: \"string\",\n editOnly: true,\n uncontrolledProp: \"defaultValue\",\n },\n },\n importPath: \"antd\",\n importName: \"Input\",\n};\n\nexport function registerInput(\n loader?: Registerable,\n customInputMeta?: ComponentMeta<InputProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Input, customInputMeta ?? inputMeta);\n}\n\nexport const inputTextAreaMeta: ComponentMeta<TextAreaProps> = {\n name: \"AntdInputTextArea\",\n displayName: \"Antd Input Text Area\",\n props: {\n allowClear: {\n type: \"boolean\",\n description: \"If allow to remove input content with clear icon\",\n },\n autoSize: {\n type: \"object\",\n description:\n \"Height autosize feature, can be set to true | false or an object { minRows: 2, maxRows: 6 }\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Whether the input is disabled\",\n },\n bordered: {\n type: \"boolean\",\n description: \"Whether has border style\",\n },\n showCount: {\n type: \"boolean\",\n description: \"Whether show text count\",\n },\n id: {\n type: \"string\",\n description: \"The ID for input\",\n },\n maxLength: {\n type: \"number\",\n description: \"The max length\",\n },\n placeholder: {\n type: \"string\",\n description: \"Placeholder for the input\",\n },\n value: {\n type: \"string\",\n editOnly: true,\n uncontrolledProp: \"defaultValue\",\n },\n },\n importPath: \"antd/lib/input/TextArea\",\n importName: \"TextArea\",\n isDefaultExport: true,\n};\n\nexport function registerInputTextArea(\n loader?: Registerable,\n customInputTextAreaMeta?: ComponentMeta<TextAreaProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(TextArea, customInputTextAreaMeta ?? inputTextAreaMeta);\n}\n\nexport const inputSearchMeta: ComponentMeta<SearchProps> = {\n name: \"AntdInputSearch\",\n displayName: \"Antd Input Search\",\n props: {\n addonBefore: \"slot\",\n allowClear: {\n type: \"boolean\",\n description: \"If allow to remove input content with clear icon\",\n },\n bordered: {\n type: \"boolean\",\n description: \"Whether has border style\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Whether the input is disabled\",\n },\n enterButton: \"slot\",\n id: {\n type: \"string\",\n description: \"The ID for input\",\n },\n loading: {\n type: \"boolean\",\n description: \"Search box with loading\",\n },\n maxLength: {\n type: \"number\",\n description: \"The max length\",\n },\n placeholder: {\n type: \"string\",\n description: \"Placeholder for the input\",\n },\n prefix: \"slot\",\n size: {\n type: \"choice\",\n options: [\"small\", \"middle\", \"large\"],\n description: \"The size of the input box\",\n },\n suffix: \"slot\",\n type: {\n type: \"string\",\n description: \"The type of input\",\n },\n value: {\n type: \"string\",\n editOnly: true,\n uncontrolledProp: \"defaultValue\",\n },\n },\n importPath: \"antd/lib/input/Search\",\n importName: \"Search\",\n isDefaultExport: true,\n};\n\nexport function registerInputSearch(\n loader?: Registerable,\n customInputSearchMeta?: ComponentMeta<SearchProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Search, customInputSearchMeta ?? inputSearchMeta);\n}\n\nexport const inputPasswordMeta: ComponentMeta<PasswordProps> = {\n name: \"AntdInputPassword\",\n displayName: \"Antd Input Password\",\n props: {\n addonAfter: \"slot\",\n addonBefore: \"slot\",\n allowClear: {\n type: \"boolean\",\n description: \"If allow to remove input content with clear icon\",\n },\n bordered: {\n type: \"boolean\",\n description: \"Whether has border style\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Whether the input is disabled\",\n },\n id: {\n type: \"string\",\n description: \"The ID for input\",\n },\n maxLength: {\n type: \"number\",\n description: \"The max length\",\n },\n placeholder: {\n type: \"string\",\n description: \"Placeholder for the input\",\n },\n prefix: \"slot\",\n size: {\n type: \"choice\",\n options: [\"small\", \"middle\", \"large\"],\n description: \"The size of the input box\",\n },\n suffix: \"slot\",\n type: {\n type: \"string\",\n description: \"The type of input\",\n },\n value: {\n type: \"string\",\n editOnly: true,\n uncontrolledProp: \"defaultValue\",\n },\n visibilityToggle: {\n type: \"boolean\",\n description: \"Whether show toggle button\",\n },\n },\n importPath: \"antd/lib/input/Password\",\n importName: \"Password\",\n isDefaultExport: true,\n};\n\nexport function registerInputPassword(\n loader?: Registerable,\n customInputPasswordMeta?: ComponentMeta<PasswordProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Password, customInputPasswordMeta ?? inputPasswordMeta);\n}\n\nexport const inputGroupMeta: ComponentMeta<GroupProps> = {\n name: \"AntdInputGroup\",\n displayName: \"Antd Input Group\",\n props: {\n compact: {\n type: \"boolean\",\n description: \"Whether use compact style\",\n },\n size: {\n type: \"choice\",\n options: [\"small\", \"default\", \"large\"],\n description:\n \"The size of Input.Group specifies the size of the included Input fields\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdInput\",\n },\n {\n type: \"component\",\n name: \"AntdInput\",\n },\n ],\n },\n },\n importPath: \"antd/lib/input/Group\",\n importName: \"InputGroup\",\n isDefaultExport: true,\n};\n\nexport function registerInputGroup(\n loader?: Registerable,\n customInputGroupMeta?: ComponentMeta<GroupProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(InputGroup, customInputGroupMeta ?? inputGroupMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { MenuItemProps, MenuProps, SubMenuProps } from \"antd\";\nimport { MenuDividerProps } from \"antd/lib/menu\";\nimport MenuDivider from \"antd/lib/menu/MenuDivider\";\nimport MenuItem from \"antd/lib/menu/MenuItem\";\nimport SubMenu from \"antd/lib/menu/SubMenu\";\nimport Menu from \"antd/lib/menu/index\";\nimport { ItemGroup, MenuItemGroupProps } from \"rc-menu\";\nimport { Registerable } from \"./registerable\";\n\nexport const menuDividerMeta: ComponentMeta<MenuDividerProps> = {\n name: \"AntdMenuDivider\",\n displayName: \"Antd Menu Divider\",\n props: {\n dashed: {\n type: \"boolean\",\n description: \"Whether line is dashed\",\n },\n },\n importPath: \"antd/lib/menu/MenuDivider\",\n importName: \"MenuDivider\",\n isDefaultExport: true,\n};\n\nexport function registerMenuDivider(\n loader?: Registerable,\n customMenuDividerMeta?: ComponentMeta<MenuDividerProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(MenuDivider, customMenuDividerMeta ?? menuDividerMeta);\n}\n\nexport const menuItemMeta: ComponentMeta<MenuItemProps> = {\n name: \"AntdMenuItem\",\n displayName: \"Antd Menu Item\",\n props: {\n danger: {\n type: \"boolean\",\n description: \"Display the danger style\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Whether disabled select\",\n },\n key: {\n type: \"string\",\n description: \"Unique ID of the menu item\",\n },\n title: {\n type: \"string\",\n description: \"Set display title for collapsed item\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Option\",\n },\n ],\n },\n },\n importPath: \"antd/lib/menu/MenuItem\",\n importName: \"MenuItem\",\n isDefaultExport: true,\n};\n\nexport function registerMenuItem(\n loader?: Registerable,\n customMenuItemMeta?: ComponentMeta<MenuItemProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(MenuItem, customMenuItemMeta ?? menuItemMeta);\n}\n\nexport const menuItemGroupMeta: ComponentMeta<MenuItemGroupProps> = {\n name: \"AntdMenuItemGroup\",\n displayName: \"Antd Menu Item Group\",\n props: {\n title: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Group\",\n },\n ],\n },\n children: {\n type: \"slot\",\n allowedComponents: [\n \"AntdMenuItem\",\n \"AntdMenuDivider\",\n \"AntdMenuItemGroup\",\n ],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdMenuItem\",\n },\n ],\n },\n },\n importPath: \"rc-menu\",\n importName: \"ItemGroup\",\n};\n\nexport function registerMenuItemGroup(\n loader?: Registerable,\n customMenuItemGroupMeta?: ComponentMeta<MenuItemProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(ItemGroup, customMenuItemGroupMeta ?? menuItemGroupMeta);\n}\n\nexport const subMenuMeta: ComponentMeta<SubMenuProps> = {\n name: \"AntdSubMenu\",\n displayName: \"Antd SubMenu\",\n props: {\n disabled: {\n type: \"boolean\",\n description: \"Whether sub-menu is disabled\",\n },\n key: {\n type: \"string\",\n description: \"Unique ID of the sub-menu\",\n },\n title: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Sub-menu\",\n },\n ],\n },\n children: {\n type: \"slot\",\n allowedComponents: [\n \"AntdMenuItem\",\n \"AntdMenuDivider\",\n \"AntdMenuItemGroup\",\n \"AntdSubMenu\",\n ],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdMenuItem\",\n },\n ],\n },\n },\n importPath: \"antd/lib/menu/SubMenu\",\n importName: \"SubMenu\",\n isDefaultExport: true,\n};\n\nexport function registerSubMenu(\n loader?: Registerable,\n customSubMenuMeta?: ComponentMeta<SubMenuProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(SubMenu, customSubMenuMeta ?? subMenuMeta);\n}\n\nexport const menuMeta: ComponentMeta<MenuProps> = {\n name: \"AntdMenu\",\n displayName: \"Antd Menu\",\n props: {\n expandIcon: {\n type: \"slot\",\n },\n forceSubMenuRender: {\n type: \"boolean\",\n description: \"Render submenu into DOM before it becomes visible\",\n },\n inlineIndent: {\n type: \"number\",\n description: \"Indent (in pixels) of inline menu items on each level\",\n },\n mode: {\n type: \"choice\",\n options: [\"horizontal\", \"vertical\", \"inline\"],\n description: \"Type of menu\",\n },\n multiple: {\n type: \"boolean\",\n description: \"Allows selection of multiple items\",\n },\n openKeys: {\n type: \"object\",\n editOnly: true,\n uncontrolledProp: \"defaultOpenKeys\",\n description: \"Array with the keys of default opened sub menus\",\n },\n overflowedIndicator: {\n type: \"slot\",\n },\n selectable: {\n type: \"boolean\",\n description: \"Allows selecting menu items\",\n },\n selectedKeys: {\n type: \"object\",\n editOnly: true,\n uncontrolledProp: \"defaultSelectedKeys\",\n description: \"Array with the keys of default selected menu items\",\n },\n subMenuCloseDelay: {\n type: \"number\",\n description: \"Delay time to hide submenu when mouse leaves (in seconds)\",\n },\n subMenuOpenDelay: {\n type: \"number\",\n description: \"Delay time to show submenu when mouse enters, (in seconds)\",\n },\n theme: {\n type: \"choice\",\n options: [\"light\", \"dark\"],\n description: \"Color theme of the menu\",\n },\n triggerSubMenuAction: {\n type: \"choice\",\n options: [\"hover\", \"click\"],\n description: \"Which action can trigger submenu open/close\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [\"AntdMenuItem\", \"AntdMenuDivider\", \"AntdSubMenu\"],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdMenuItem\",\n },\n {\n type: \"component\",\n name: \"AntdSubMenu\",\n },\n ],\n },\n },\n importPath: \"antd/lib/menu/index\",\n importName: \"Menu\",\n isDefaultExport: true,\n};\n\nexport function registerMenu(\n loader?: Registerable,\n customMenuMeta?: ComponentMeta<MenuProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Menu, customMenuMeta ?? menuMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { OptGroupProps } from \"rc-select/lib/OptGroup\";\nimport { OptionProps } from \"rc-select/lib/Option\";\nimport { Option, OptGroup } from \"rc-select\";\nimport { Registerable } from \"./registerable\";\n\nexport const optionMeta: ComponentMeta<OptionProps> = {\n name: \"AntdOption\",\n displayName: \"Antd Option\",\n props: {\n disabled: {\n type: \"boolean\",\n description: \"Disable this option\",\n },\n title: {\n type: \"string\",\n description: \"title of Select after select this Option\",\n },\n value: {\n type: \"string\",\n description: \"Default to filter with this property\",\n },\n key: {\n type: \"string\",\n description: \"Option key\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Option\",\n },\n ],\n },\n },\n importPath: \"rc-select\",\n importName: \"Option\",\n};\n\nexport function registerOption(\n loader?: Registerable,\n customOptionMeta?: ComponentMeta<OptionProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Option, customOptionMeta ?? optionMeta);\n}\n\nexport const optGroupMeta: ComponentMeta<OptGroupProps> = {\n name: \"AntdOptionGroup\",\n displayName: \"Antd Option Group\",\n props: {\n key: {\n type: \"string\",\n description: \"Group key\",\n },\n label: {\n type: \"string\",\n description: \"Group label\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [\"AntdOption\"],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdOption\",\n },\n ],\n },\n },\n importPath: \"rc-select\",\n importName: \"OptGroup\",\n};\n\nexport function registerOptGroup(\n loader?: Registerable,\n customOptGroupMeta?: ComponentMeta<OptGroupProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(OptGroup, customOptGroupMeta ?? optGroupMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { Select } from \"antd\";\nimport { SelectProps } from \"rc-select\";\nimport { Registerable } from \"./registerable\";\n\nexport const selectMeta: ComponentMeta<SelectProps> = {\n name: \"AntdSelect\",\n displayName: \"Antd Select\",\n props: {\n autoFocus: {\n type: \"boolean\",\n description: \"Get focus by default\",\n },\n bordered: {\n type: \"boolean\",\n description: \"Whether has border style\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Whether disabled select\",\n },\n listHeight: {\n type: \"number\",\n description: \"Config popup height\",\n },\n loading: {\n type: \"boolean\",\n description: \"Indicate loading state\",\n },\n mode: {\n type: \"choice\",\n options: [\"multiple\", \"tags\"],\n description: \"Set mode of Select\",\n },\n open: {\n type: \"boolean\",\n editOnly: true,\n uncontrolledProp: \"defaultOpen\",\n description: \"Initial open state of dropdown\",\n },\n placeholder: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Select\",\n },\n ],\n },\n showArrow: {\n type: \"boolean\",\n description: \"Whether to show the drop-down arrow\",\n },\n showSearch: {\n type: \"boolean\",\n description: \"Whether show search input in single mode\",\n },\n size: {\n type: \"choice\",\n options: [\"large\", \"middle\", \"small\"],\n description: \"Set mode of Select\",\n },\n value: {\n type: \"object\",\n editOnly: true,\n uncontrolledProp: \"defaultValue\",\n description: \"Initial selected option\",\n },\n virtual: {\n type: \"boolean\",\n description: \"Disable virtual scroll when set to false\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [\"AntdOption, AntdOptionGroup\"],\n defaultValue: [\n {\n type: \"component\",\n name: \"AntdOption\",\n props: {\n value: \"Option\",\n children: {\n type: \"text\",\n value: \"Option\",\n },\n },\n },\n ],\n },\n },\n importPath: \"antd\",\n importName: \"Select\",\n};\n\nexport function registerSelect(\n loader?: Registerable,\n customSelectMeta?: ComponentMeta<SelectProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Select, customSelectMeta ?? selectMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { Slider, SliderSingleProps } from \"antd\";\nimport { Registerable } from \"./registerable\";\n\nexport const sliderMeta: ComponentMeta<SliderSingleProps> = {\n name: \"AntdSlider\",\n displayName: \"Antd Slider\",\n props: {\n max: {\n type: \"number\",\n description: \"The maximum value the slider can slide to\",\n },\n min: {\n type: \"number\",\n description: \"The minimum value the slider can slide to\",\n },\n included: {\n type: \"boolean\",\n description:\n \"Make effect when marks not null, true means containment and false means coordinative\",\n },\n disabled: {\n type: \"boolean\",\n description: \"If true, the slider will not be interactable\",\n },\n reverse: {\n type: \"boolean\",\n description: \"Reverse the component\",\n },\n vertical: {\n type: \"boolean\",\n description: \"If true, the slider will be vertical\",\n },\n value: {\n type: \"number\",\n editOnly: true,\n uncontrolledProp: \"defaultValue\",\n description: \"The default value of slider\",\n },\n step: {\n type: \"object\",\n description:\n \"The granularity the slider can step through values. Must greater than 0, and be divided by (max - min).\" +\n \" When marks no null, step can be null\",\n defaultValue: 1,\n },\n marks: {\n type: \"object\",\n description:\n \"Tick mark of Slider, type of key must be number, and must in closed interval [min, max],\" +\n \" each mark can declare its own style\",\n },\n },\n importPath: \"antd\",\n importName: \"Slider\",\n};\n\nexport function registerSlider(\n loader?: Registerable,\n customSliderMeta?: ComponentMeta<SliderSingleProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Slider, customSliderMeta ?? sliderMeta);\n}\n","import { ComponentMeta } from \"@plasmicapp/host\";\nimport registerComponent from \"@plasmicapp/host/registerComponent\";\nimport { Switch, SwitchProps } from \"antd\";\nimport { Registerable } from \"./registerable\";\n\nexport const switchMeta: ComponentMeta<SwitchProps> = {\n name: \"AntdSwitch\",\n displayName: \"Antd Switch\",\n props: {\n autoFocus: {\n type: \"boolean\",\n description: \"Whether get focus when component mounted\",\n },\n checked: {\n type: \"boolean\",\n editOnly: true,\n uncontrolledProp: \"defaultChecked\",\n description: \"Whether to set the initial state\",\n },\n disabled: {\n type: \"boolean\",\n description: \"Disable switch\",\n },\n loading: {\n type: \"boolean\",\n description: \"Loading state of switch\",\n },\n checkedChildren: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"1\",\n },\n ],\n },\n unCheckedChildren: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"0\",\n },\n ],\n },\n size: {\n type: \"choice\",\n options: [\"small\", \"default\"],\n description: \"The size of the Switch\",\n },\n },\n importPath: \"antd\",\n importName: \"Switch\",\n};\n\nexport function registerSwitch(\n loader?: Registerable,\n customSwitchMeta?: ComponentMeta<SwitchProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Switch, customSwitchMeta ?? switchMeta);\n}\n","import { Registerable } from \"./registerable\";\nimport { registerButton } from \"./registerButton\";\nimport { registerCheckbox, registerCheckboxGroup } from \"./registerCheckbox\";\nimport { registerCarousel } from \"./registerCarousel\";\nimport { registerCollapse, registerCollapsePanel } from \"./registerCollapse\";\nimport { registerDropdown, registerDropdownButton } from \"./registerDropdown\";\nimport {\n registerInput,\n registerInputTextArea,\n registerInputSearch,\n registerInputPassword,\n registerInputGroup,\n} from \"./registerInput\";\nimport {\n registerMenu,\n registerMenuDivider,\n registerMenuItem,\n registerMenuItemGroup,\n registerSubMenu,\n} from \"./registerMenu\";\nimport { registerOptGroup, registerOption } from \"./registerOption\";\nimport { registerSelect } from \"./registerSelect\";\nimport { registerSlider } from \"./registerSlider\";\nimport { registerSwitch } from \"./registerSwitch\";\n\nexport * from \"./registerable\";\nexport * from \"./registerButton\";\nexport * from \"./registerCheckbox\";\nexport * from \"./registerCollapse\";\nexport * from \"./registerDropdown\";\nexport * from \"./registerInput\";\nexport * from \"./registerMenu\";\nexport * from \"./registerOption\";\nexport * from \"./registerSelect\";\nexport * from \"./registerSlider\";\nexport * from \"./registerSwitch\";\nexport * from \"./registerCarousel\";\n\nexport function registerAll(loader?: Registerable) {\n registerButton(loader);\n registerSlider(loader);\n registerSwitch(loader);\n registerOption(loader);\n registerOptGroup(loader);\n registerSelect(loader);\n registerCollapsePanel(loader);\n registerCollapse(loader);\n registerCheckbox(loader);\n registerCheckboxGroup(loader);\n registerMenuDivider(loader);\n registerMenuItem(loader);\n registerMenuItemGroup(loader);\n registerSubMenu(loader);\n registerMenu(loader);\n registerDropdown(loader);\n registerDropdownButton(loader);\n registerCarousel(loader);\n registerInput(loader);\n registerInputTextArea(loader);\n registerInputSearch(loader);\n registerInputPassword(loader);\n registerInputGroup(loader);\n}\n"],"names":["buttonMeta","name","displayName","props","type","options","description","size","shape","disabled","ghost","danger","block","loading","href","target","children","defaultValue","value","importPath","importName","registerButton","loader","customButtonMeta","registerComponent","doRegisterComponent","Button","CheckboxWrapper","render","React","Checkbox","this","Component","checkboxMeta","autoFocus","checked","editOnly","uncontrolledProp","indeterminate","defaultStyles","marginLeft","isDefaultExport","registerCheckbox","customCheckboxMeta","checkboxGroupMeta","allowedComponents","registerCheckboxGroup","customCheckboxGroupMeta","CheckboxGroup","contentStyle","height","color","lineHeight","textAlign","backgroundColor","carouselMeta","autoplay","dotPosition","dots","effect","styles","registerCarousel","customCarouselMeta","Carousel","collapstePanelMeta","collapsible","forceRender","header","key","showArrow","registerCollapsePanel","customCollapsePanelMeta","CollapsePanel","collapsteMeta","accordion","activeKey","bordered","expandIconPosition","registerCollapse","customCollapseMeta","Collapse","Dropdown","finalProps","AntdDropdown","dropdownMeta","arrow","overlay","placement","trigger","visible","registerDropdown","customDropdownMeta","dropdownButtonMeta","icon","registerDropdownButton","customDropdownButtonMeta","DropdownButton","inputMeta","addonAfter","addonBefore","allowClear","id","maxLength","placeholder","prefix","suffix","registerInput","customInputMeta","Input","inputTextAreaMeta","autoSize","showCount","registerInputTextArea","customInputTextAreaMeta","TextArea","inputSearchMeta","enterButton","registerInputSearch","customInputSearchMeta","Search","inputPasswordMeta","visibilityToggle","registerInputPassword","customInputPasswordMeta","Password","inputGroupMeta","compact","registerInputGroup","customInputGroupMeta","InputGroup","menuDividerMeta","dashed","registerMenuDivider","customMenuDividerMeta","MenuDivider","menuItemMeta","title","registerMenuItem","customMenuItemMeta","MenuItem","menuItemGroupMeta","registerMenuItemGroup","customMenuItemGroupMeta","ItemGroup","subMenuMeta","registerSubMenu","customSubMenuMeta","SubMenu","menuMeta","expandIcon","forceSubMenuRender","inlineIndent","mode","multiple","openKeys","overflowedIndicator","selectable","selectedKeys","subMenuCloseDelay","subMenuOpenDelay","theme","triggerSubMenuAction","registerMenu","customMenuMeta","Menu","optionMeta","registerOption","customOptionMeta","Option","optGroupMeta","label","registerOptGroup","customOptGroupMeta","OptGroup","selectMeta","listHeight","open","showSearch","virtual","registerSelect","customSelectMeta","Select","sliderMeta","max","min","included","reverse","vertical","step","marks","registerSlider","customSliderMeta","Slider","switchMeta","checkedChildren","unCheckedChildren","registerSwitch","customSwitchMeta","Switch"],"mappings":"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"}
|