@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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"antd.esm.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":"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"}
@@ -0,0 +1,14 @@
1
+ import { Registerable } from "./registerable";
2
+ export * from "./registerable";
3
+ export * from "./registerButton";
4
+ export * from "./registerCheckbox";
5
+ export * from "./registerCollapse";
6
+ export * from "./registerDropdown";
7
+ export * from "./registerInput";
8
+ export * from "./registerMenu";
9
+ export * from "./registerOption";
10
+ export * from "./registerSelect";
11
+ export * from "./registerSlider";
12
+ export * from "./registerSwitch";
13
+ export * from "./registerCarousel";
14
+ export declare function registerAll(loader?: Registerable): void;
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+
2
+ 'use strict'
3
+
4
+ if (process.env.NODE_ENV === 'production') {
5
+ module.exports = require('./antd.cjs.production.min.js')
6
+ } else {
7
+ module.exports = require('./antd.cjs.development.js')
8
+ }
@@ -0,0 +1,5 @@
1
+ import { ComponentMeta } from "@plasmicapp/host";
2
+ import { ButtonProps } from "antd";
3
+ import { Registerable } from "./registerable";
4
+ export declare const buttonMeta: ComponentMeta<ButtonProps>;
5
+ export declare function registerButton(loader?: Registerable, customButtonMeta?: ComponentMeta<ButtonProps>): void;
@@ -0,0 +1,5 @@
1
+ import { ComponentMeta } from "@plasmicapp/host";
2
+ import { CarouselProps } from "antd";
3
+ import { Registerable } from "./registerable";
4
+ export declare const carouselMeta: ComponentMeta<CarouselProps>;
5
+ export declare function registerCarousel(loader?: Registerable, customCarouselMeta?: ComponentMeta<CarouselProps>): void;
@@ -0,0 +1,8 @@
1
+ import { ComponentMeta } from "@plasmicapp/host";
2
+ import { CheckboxProps } from "antd/lib/checkbox/Checkbox";
3
+ import { CheckboxGroupProps } from "antd/lib/checkbox/Group";
4
+ import { Registerable } from "./registerable";
5
+ export declare const checkboxMeta: ComponentMeta<CheckboxProps>;
6
+ export declare function registerCheckbox(loader?: Registerable, customCheckboxMeta?: ComponentMeta<CheckboxProps>): void;
7
+ export declare const checkboxGroupMeta: ComponentMeta<CheckboxGroupProps>;
8
+ export declare function registerCheckboxGroup(loader?: Registerable, customCheckboxGroupMeta?: ComponentMeta<CheckboxGroupProps>): void;
@@ -0,0 +1,7 @@
1
+ import { ComponentMeta } from "@plasmicapp/host";
2
+ import { CollapseProps, CollapsePanelProps } from "antd";
3
+ import { Registerable } from "./registerable";
4
+ export declare const collapstePanelMeta: ComponentMeta<CollapsePanelProps>;
5
+ export declare function registerCollapsePanel(loader?: Registerable, customCollapsePanelMeta?: ComponentMeta<CollapsePanelProps>): void;
6
+ export declare const collapsteMeta: ComponentMeta<CollapseProps>;
7
+ export declare function registerCollapse(loader?: Registerable, customCollapseMeta?: ComponentMeta<CollapseProps>): void;
@@ -0,0 +1,11 @@
1
+ import { ComponentMeta } from "@plasmicapp/host";
2
+ import React from "react";
3
+ import { DropdownButtonProps, DropDownProps } from "antd/lib/dropdown";
4
+ import { Registerable } from "./registerable";
5
+ export declare class Dropdown extends React.Component<DropDownProps> {
6
+ render(): JSX.Element;
7
+ }
8
+ export declare const dropdownMeta: ComponentMeta<DropDownProps>;
9
+ export declare function registerDropdown(loader?: Registerable, customDropdownMeta?: ComponentMeta<DropDownProps>): void;
10
+ export declare const dropdownButtonMeta: ComponentMeta<DropdownButtonProps>;
11
+ export declare function registerDropdownButton(loader?: Registerable, customDropdownButtonMeta?: ComponentMeta<DropDownProps>): void;
@@ -0,0 +1,14 @@
1
+ import { ComponentMeta } from "@plasmicapp/host";
2
+ import { InputProps } from "antd";
3
+ import { GroupProps, PasswordProps, SearchProps, TextAreaProps } from "antd/lib/input";
4
+ import { Registerable } from "./registerable";
5
+ export declare const inputMeta: ComponentMeta<InputProps>;
6
+ export declare function registerInput(loader?: Registerable, customInputMeta?: ComponentMeta<InputProps>): void;
7
+ export declare const inputTextAreaMeta: ComponentMeta<TextAreaProps>;
8
+ export declare function registerInputTextArea(loader?: Registerable, customInputTextAreaMeta?: ComponentMeta<TextAreaProps>): void;
9
+ export declare const inputSearchMeta: ComponentMeta<SearchProps>;
10
+ export declare function registerInputSearch(loader?: Registerable, customInputSearchMeta?: ComponentMeta<SearchProps>): void;
11
+ export declare const inputPasswordMeta: ComponentMeta<PasswordProps>;
12
+ export declare function registerInputPassword(loader?: Registerable, customInputPasswordMeta?: ComponentMeta<PasswordProps>): void;
13
+ export declare const inputGroupMeta: ComponentMeta<GroupProps>;
14
+ export declare function registerInputGroup(loader?: Registerable, customInputGroupMeta?: ComponentMeta<GroupProps>): void;
@@ -0,0 +1,15 @@
1
+ import { ComponentMeta } from "@plasmicapp/host";
2
+ import { MenuItemProps, MenuProps, SubMenuProps } from "antd";
3
+ import { MenuDividerProps } from "antd/lib/menu";
4
+ import { MenuItemGroupProps } from "rc-menu";
5
+ import { Registerable } from "./registerable";
6
+ export declare const menuDividerMeta: ComponentMeta<MenuDividerProps>;
7
+ export declare function registerMenuDivider(loader?: Registerable, customMenuDividerMeta?: ComponentMeta<MenuDividerProps>): void;
8
+ export declare const menuItemMeta: ComponentMeta<MenuItemProps>;
9
+ export declare function registerMenuItem(loader?: Registerable, customMenuItemMeta?: ComponentMeta<MenuItemProps>): void;
10
+ export declare const menuItemGroupMeta: ComponentMeta<MenuItemGroupProps>;
11
+ export declare function registerMenuItemGroup(loader?: Registerable, customMenuItemGroupMeta?: ComponentMeta<MenuItemProps>): void;
12
+ export declare const subMenuMeta: ComponentMeta<SubMenuProps>;
13
+ export declare function registerSubMenu(loader?: Registerable, customSubMenuMeta?: ComponentMeta<SubMenuProps>): void;
14
+ export declare const menuMeta: ComponentMeta<MenuProps>;
15
+ export declare function registerMenu(loader?: Registerable, customMenuMeta?: ComponentMeta<MenuProps>): void;
@@ -0,0 +1,8 @@
1
+ import { ComponentMeta } from "@plasmicapp/host";
2
+ import { OptGroupProps } from "rc-select/lib/OptGroup";
3
+ import { OptionProps } from "rc-select/lib/Option";
4
+ import { Registerable } from "./registerable";
5
+ export declare const optionMeta: ComponentMeta<OptionProps>;
6
+ export declare function registerOption(loader?: Registerable, customOptionMeta?: ComponentMeta<OptionProps>): void;
7
+ export declare const optGroupMeta: ComponentMeta<OptGroupProps>;
8
+ export declare function registerOptGroup(loader?: Registerable, customOptGroupMeta?: ComponentMeta<OptGroupProps>): void;
@@ -0,0 +1,5 @@
1
+ import { ComponentMeta } from "@plasmicapp/host";
2
+ import { SelectProps } from "rc-select";
3
+ import { Registerable } from "./registerable";
4
+ export declare const selectMeta: ComponentMeta<SelectProps>;
5
+ export declare function registerSelect(loader?: Registerable, customSelectMeta?: ComponentMeta<SelectProps>): void;
@@ -0,0 +1,5 @@
1
+ import { ComponentMeta } from "@plasmicapp/host";
2
+ import { SliderSingleProps } from "antd";
3
+ import { Registerable } from "./registerable";
4
+ export declare const sliderMeta: ComponentMeta<SliderSingleProps>;
5
+ export declare function registerSlider(loader?: Registerable, customSliderMeta?: ComponentMeta<SliderSingleProps>): void;
@@ -0,0 +1,5 @@
1
+ import { ComponentMeta } from "@plasmicapp/host";
2
+ import { SwitchProps } from "antd";
3
+ import { Registerable } from "./registerable";
4
+ export declare const switchMeta: ComponentMeta<SwitchProps>;
5
+ export declare function registerSwitch(loader?: Registerable, customSwitchMeta?: ComponentMeta<SwitchProps>): void;
@@ -0,0 +1,4 @@
1
+ import { registerComponent } from "@plasmicapp/host";
2
+ export declare type Registerable = {
3
+ registerComponent: typeof registerComponent;
4
+ };
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@plasmicpkgs/antd",
3
+ "version": "0.0.1",
4
+ "description": "Plasmic registration calls for antd components",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "module": "dist/antd.esm.js",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "size-limit": [
12
+ {
13
+ "path": "dist/antd.cjs.production.min.js",
14
+ "limit": "10 KB"
15
+ },
16
+ {
17
+ "path": "dist/antd.esm.js",
18
+ "limit": "10 KB"
19
+ }
20
+ ],
21
+ "scripts": {
22
+ "build": "tsdx build",
23
+ "start": "tsdx watch",
24
+ "test": "tsdx test --passWithNoTests",
25
+ "lint": "tsdx lint",
26
+ "prepare": "tsdx build",
27
+ "size": "size-limit",
28
+ "analyze": "size-limit --why"
29
+ },
30
+ "devDependencies": {
31
+ "@plasmicapp/host": "^0.0.38",
32
+ "@size-limit/preset-small-lib": "^4.11.0",
33
+ "@types/node": "^14.0.26",
34
+ "@types/react": "^17.0.37",
35
+ "antd": "^4.17.2",
36
+ "react": "^17.0.2",
37
+ "react-dom": "^17.0.2",
38
+ "size-limit": "^4.11.0",
39
+ "tsdx": "^0.14.1",
40
+ "typescript": "^3.9.7"
41
+ },
42
+ "peerDependencies": {
43
+ "@plasmicapp/host": ">=0.0.32",
44
+ "antd": "^4.0.0",
45
+ "react": ">=16.8.0"
46
+ }
47
+ }