@lowdefy/blocks-antd 3.23.2 → 4.0.0-alpha.10
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/dist/blocks/Affix/Affix.js +44 -0
- package/dist/blocks/Affix/schema.json +34 -0
- package/dist/blocks/Affix/style.less +17 -0
- package/dist/blocks/Alert/Alert.js +80 -0
- package/dist/blocks/Alert/schema.json +62 -0
- package/dist/blocks/Alert/style.less +17 -0
- package/dist/blocks/AutoComplete/AutoComplete.js +108 -0
- package/dist/blocks/AutoComplete/schema.json +189 -0
- package/dist/blocks/AutoComplete/style.less +17 -0
- package/dist/blocks/Avatar/Avatar.js +51 -0
- package/dist/blocks/Avatar/schema.json +71 -0
- package/dist/blocks/Avatar/style.less +17 -0
- package/dist/blocks/Badge/Badge.js +45 -0
- package/dist/blocks/Badge/schema.json +70 -0
- package/dist/blocks/Badge/style.less +17 -0
- package/dist/blocks/Breadcrumb/Breadcrumb.js +82 -0
- package/dist/blocks/Breadcrumb/schema.json +78 -0
- package/dist/blocks/Breadcrumb/style.less +17 -0
- package/dist/blocks/Button/Button.js +78 -0
- package/dist/blocks/Button/schema.json +91 -0
- package/dist/blocks/Button/style.less +17 -0
- package/dist/blocks/ButtonSelector/ButtonSelector.js +92 -0
- package/dist/blocks/ButtonSelector/schema.json +188 -0
- package/dist/blocks/ButtonSelector/style.less +18 -0
- package/dist/blocks/Card/Card.js +52 -0
- package/dist/blocks/Card/schema.json +58 -0
- package/dist/blocks/Card/style.less +17 -0
- package/dist/blocks/CheckboxSelector/CheckboxSelector.js +98 -0
- package/dist/blocks/CheckboxSelector/schema.json +193 -0
- package/dist/blocks/CheckboxSelector/style.less +19 -0
- package/dist/blocks/CheckboxSwitch/CheckboxSwitch.js +74 -0
- package/dist/blocks/CheckboxSwitch/schema.json +105 -0
- package/dist/blocks/CheckboxSwitch/style.less +19 -0
- package/dist/blocks/Collapse/Collapse.js +93 -0
- package/dist/blocks/Collapse/schema.json +90 -0
- package/dist/blocks/Collapse/style.less +17 -0
- package/dist/blocks/Comment/Comment.js +56 -0
- package/dist/blocks/Comment/schema.json +39 -0
- package/dist/blocks/Comment/style.less +18 -0
- package/dist/blocks/ConfirmModal/ConfirmModal.js +96 -0
- package/dist/blocks/ConfirmModal/schema.json +122 -0
- package/dist/blocks/ConfirmModal/style.less +17 -0
- package/dist/blocks/Content/Content.js +32 -0
- package/dist/blocks/Content/schema.json +16 -0
- package/dist/blocks/Content/style.less +17 -0
- package/dist/blocks/ControlledList/ControlledList.js +137 -0
- package/dist/blocks/ControlledList/schema.json +68 -0
- package/dist/blocks/ControlledList/style.less +19 -0
- package/dist/blocks/DateRangeSelector/DateRangeSelector.js +105 -0
- package/dist/blocks/DateRangeSelector/schema.json +221 -0
- package/dist/blocks/DateRangeSelector/style.less +18 -0
- package/dist/blocks/DateSelector/DateSelector.js +90 -0
- package/dist/blocks/DateSelector/schema.json +183 -0
- package/dist/blocks/DateSelector/style.less +18 -0
- package/dist/blocks/DateTimeSelector/DateTimeSelector.js +98 -0
- package/dist/blocks/DateTimeSelector/schema.json +215 -0
- package/dist/blocks/DateTimeSelector/style.less +18 -0
- package/dist/blocks/Descriptions/Descriptions.js +85 -0
- package/dist/blocks/Descriptions/schema.json +186 -0
- package/dist/blocks/Descriptions/style.less +17 -0
- package/dist/blocks/Divider/Divider.js +38 -0
- package/dist/blocks/Divider/schema.json +35 -0
- package/dist/blocks/Divider/style.less +17 -0
- package/dist/blocks/Drawer/Drawer.js +106 -0
- package/dist/blocks/Drawer/schema.json +113 -0
- package/dist/blocks/Drawer/style.less +17 -0
- package/dist/blocks/Footer/Footer.js +37 -0
- package/dist/blocks/Footer/schema.json +16 -0
- package/dist/blocks/Footer/style.less +17 -0
- package/dist/blocks/Header/Header.js +37 -0
- package/dist/blocks/Header/schema.json +22 -0
- package/dist/blocks/Header/style.less +17 -0
- package/dist/blocks/Label/Label.js +120 -0
- package/dist/blocks/Label/getLabelCol.js +55 -0
- package/dist/blocks/Label/getWrapperCol.js +69 -0
- package/dist/blocks/Label/labelLogic.js +106 -0
- package/dist/blocks/Label/schema.json +62 -0
- package/dist/blocks/Label/style.less +30 -0
- package/dist/blocks/Layout/Layout.js +31 -0
- package/dist/blocks/Layout/schema.json +16 -0
- package/dist/blocks/Layout/style.less +17 -0
- package/dist/blocks/Menu/Menu.js +217 -0
- package/dist/blocks/Menu/schema.json +236 -0
- package/dist/blocks/Menu/style.less +17 -0
- package/dist/blocks/Message/Message.js +54 -0
- package/dist/blocks/Message/schema.json +48 -0
- package/dist/blocks/Message/style.less +17 -0
- package/dist/blocks/MobileMenu/MobileMenu.js +130 -0
- package/dist/blocks/MobileMenu/schema.json +236 -0
- package/dist/blocks/MobileMenu/style.less +19 -0
- package/dist/blocks/Modal/Modal.js +133 -0
- package/dist/blocks/Modal/schema.json +118 -0
- package/dist/blocks/Modal/style.less +17 -0
- package/dist/blocks/MonthSelector/MonthSelector.js +90 -0
- package/dist/blocks/MonthSelector/schema.json +183 -0
- package/dist/blocks/MonthSelector/style.less +18 -0
- package/dist/blocks/MultipleSelector/MultipleSelector.js +148 -0
- package/dist/blocks/MultipleSelector/schema.json +239 -0
- package/dist/blocks/MultipleSelector/style.less +18 -0
- package/dist/blocks/Notification/Notification.js +79 -0
- package/dist/blocks/Notification/schema.json +85 -0
- package/dist/blocks/Notification/style.less +18 -0
- package/dist/blocks/NumberInput/NumberInput.js +81 -0
- package/dist/blocks/NumberInput/schema.json +157 -0
- package/dist/blocks/NumberInput/style.less +18 -0
- package/dist/blocks/PageHCF/PageHCF.js +71 -0
- package/dist/blocks/PageHCF/schema.json +64 -0
- package/dist/blocks/PageHCF/style.less +20 -0
- package/dist/blocks/PageHCSF/PageHCSF.js +99 -0
- package/dist/blocks/PageHCSF/schema.json +148 -0
- package/dist/blocks/PageHCSF/style.less +21 -0
- package/dist/blocks/PageHSCF/PageHSCF.js +99 -0
- package/dist/blocks/PageHSCF/schema.json +147 -0
- package/dist/blocks/PageHSCF/style.less +21 -0
- package/dist/blocks/PageHeaderMenu/PageHeaderMenu.js +290 -0
- package/dist/blocks/PageHeaderMenu/schema.json +215 -0
- package/dist/blocks/PageHeaderMenu/style.less +23 -0
- package/dist/blocks/PageSHCF/PageSHCF.js +99 -0
- package/dist/blocks/PageSHCF/schema.json +148 -0
- package/dist/blocks/PageSHCF/style.less +21 -0
- package/dist/blocks/PageSiderMenu/PageSiderMenu.js +407 -0
- package/dist/blocks/PageSiderMenu/schema.json +283 -0
- package/dist/blocks/PageSiderMenu/style.less +26 -0
- package/dist/blocks/Pagination/Pagination.js +99 -0
- package/dist/blocks/Pagination/schema.json +75 -0
- package/dist/blocks/Pagination/style.less +17 -0
- package/dist/blocks/Paragraph/Paragraph.js +103 -0
- package/dist/blocks/Paragraph/schema.json +131 -0
- package/dist/blocks/Paragraph/style.less +17 -0
- package/dist/blocks/ParagraphInput/ParagraphInput.js +125 -0
- package/dist/blocks/ParagraphInput/schema.json +162 -0
- package/dist/blocks/ParagraphInput/style.less +17 -0
- package/dist/blocks/PasswordInput/PasswordInput.js +77 -0
- package/dist/blocks/PasswordInput/schema.json +123 -0
- package/dist/blocks/PasswordInput/style.less +18 -0
- package/dist/blocks/Progress/Progress.js +43 -0
- package/dist/blocks/Progress/schema.json +76 -0
- package/dist/blocks/Progress/style.less +17 -0
- package/dist/blocks/RadioSelector/RadioSelector.js +97 -0
- package/dist/blocks/RadioSelector/schema.json +190 -0
- package/dist/blocks/RadioSelector/style.less +19 -0
- package/dist/blocks/RatingSlider/RatingSlider.js +242 -0
- package/dist/blocks/RatingSlider/schema.json +169 -0
- package/dist/blocks/RatingSlider/style.less +19 -0
- package/dist/blocks/Result/Result.js +49 -0
- package/dist/blocks/Result/schema.json +30 -0
- package/dist/blocks/Result/style.less +17 -0
- package/dist/blocks/Selector/Selector.js +142 -0
- package/dist/blocks/Selector/schema.json +236 -0
- package/dist/blocks/Selector/style.less +18 -0
- package/dist/blocks/Sider/Sider.js +87 -0
- package/dist/blocks/Sider/schema.json +71 -0
- package/dist/blocks/Sider/style.less +17 -0
- package/dist/blocks/Statistic/Statistic.js +52 -0
- package/dist/blocks/Statistic/schema.json +74 -0
- package/dist/blocks/Statistic/style.less +17 -0
- package/dist/blocks/Switch/Switch.js +101 -0
- package/dist/blocks/Switch/schema.json +136 -0
- package/dist/blocks/Switch/style.less +18 -0
- package/dist/blocks/Tabs/Tabs.js +113 -0
- package/dist/blocks/Tabs/schema.json +97 -0
- package/dist/blocks/Tabs/style.less +17 -0
- package/dist/blocks/TextArea/TextArea.js +87 -0
- package/dist/blocks/TextArea/schema.json +164 -0
- package/dist/blocks/TextArea/style.less +18 -0
- package/dist/blocks/TextInput/TextInput.js +91 -0
- package/dist/blocks/TextInput/schema.json +149 -0
- package/dist/blocks/TextInput/style.less +18 -0
- package/dist/blocks/TimelineList/TimelineList.js +102 -0
- package/dist/blocks/TimelineList/schema.json +65 -0
- package/dist/blocks/TimelineList/style.less +17 -0
- package/dist/blocks/Title/Title.js +109 -0
- package/dist/blocks/Title/schema.json +136 -0
- package/dist/blocks/Title/style.less +17 -0
- package/dist/blocks/TitleInput/TitleInput.js +122 -0
- package/dist/blocks/TitleInput/schema.json +171 -0
- package/dist/blocks/TitleInput/style.less +17 -0
- package/dist/blocks/Tooltip/Tooltip.js +49 -0
- package/dist/blocks/Tooltip/schema.json +91 -0
- package/dist/blocks/Tooltip/style.less +17 -0
- package/dist/blocks/WeekSelector/WeekSelector.js +91 -0
- package/dist/blocks/WeekSelector/schema.json +183 -0
- package/dist/blocks/WeekSelector/style.less +18 -0
- package/dist/blocks.js +74 -0
- package/dist/color.js +85 -0
- package/dist/disabledDate.js +48 -0
- package/dist/getUniqueValues.js +30 -0
- package/dist/getValueIndex.js +42 -0
- package/dist/style.less +17 -0
- package/dist/types.js +31 -0
- package/dist/useRunAfterUpdate.js +29 -0
- package/dist/validationExamples.js +40 -0
- package/package.json +39 -50
- package/dist/10057.js +0 -1
- package/dist/10160.js +0 -1
- package/dist/10321.js +0 -1
- package/dist/10330.js +0 -1
- package/dist/10433.js +0 -1
- package/dist/10479.js +0 -1
- package/dist/10773.js +0 -1
- package/dist/10814.js +0 -1
- package/dist/1083.js +0 -1
- package/dist/10950.js +0 -1
- package/dist/11187.js +0 -1
- package/dist/11283.js +0 -1
- package/dist/11284.js +0 -1
- package/dist/11298.js +0 -1
- package/dist/11308.js +0 -1
- package/dist/11363.js +0 -1
- package/dist/11407.js +0 -1
- package/dist/11427.js +0 -1
- package/dist/11493.js +0 -1
- package/dist/11501.js +0 -1
- package/dist/1159.js +0 -1
- package/dist/11724.js +0 -1
- package/dist/11727.js +0 -1
- package/dist/11911.js +0 -1
- package/dist/11994.js +0 -1
- package/dist/12022.js +0 -1
- package/dist/12245.js +0 -1
- package/dist/12386.js +0 -1
- package/dist/12437.js +0 -1
- package/dist/12443.js +0 -1
- package/dist/12499.js +0 -1
- package/dist/1254.js +0 -1
- package/dist/1260.js +0 -1
- package/dist/12619.js +0 -1
- package/dist/12646.js +0 -1
- package/dist/12936.js +0 -1
- package/dist/13042.js +0 -1
- package/dist/13229.js +0 -1
- package/dist/13286.js +0 -1
- package/dist/13697.js +0 -1
- package/dist/13863.js +0 -1
- package/dist/14008.js +0 -1
- package/dist/14073.js +0 -1
- package/dist/14079.js +0 -1
- package/dist/14222.js +0 -1
- package/dist/14260.js +0 -1
- package/dist/14263.js +0 -1
- package/dist/14636.js +0 -1
- package/dist/14662.js +0 -1
- package/dist/14778.js +0 -1
- package/dist/14844.js +0 -1
- package/dist/14995.js +0 -1
- package/dist/15004.js +0 -1
- package/dist/15140.js +0 -1
- package/dist/1515.js +0 -1
- package/dist/15177.js +0 -1
- package/dist/15237.js +0 -1
- package/dist/15354.js +0 -1
- package/dist/15531.js +0 -1
- package/dist/15695.js +0 -1
- package/dist/157.js +0 -1
- package/dist/15811.js +0 -1
- package/dist/15819.js +0 -1
- package/dist/15946.js +0 -1
- package/dist/15978.js +0 -1
- package/dist/16081.js +0 -1
- package/dist/16131.js +0 -1
- package/dist/1617.js +0 -1
- package/dist/16181.js +0 -1
- package/dist/16407.js +0 -1
- package/dist/1642.js +0 -1
- package/dist/16593.js +0 -1
- package/dist/16960.js +0 -1
- package/dist/17137.js +0 -1
- package/dist/17267.js +0 -1
- package/dist/17393.js +0 -1
- package/dist/17528.js +0 -1
- package/dist/17597.js +0 -1
- package/dist/17696.js +0 -1
- package/dist/17825.js +0 -1
- package/dist/17886.js +0 -1
- package/dist/18030.js +0 -1
- package/dist/1832.js +0 -1
- package/dist/18497.js +0 -1
- package/dist/18517.js +0 -1
- package/dist/18559.js +0 -1
- package/dist/18727.js +0 -1
- package/dist/18765.js +0 -1
- package/dist/18781.js +0 -1
- package/dist/18848.js +0 -1
- package/dist/18933.js +0 -1
- package/dist/18992.js +0 -1
- package/dist/19497.js +0 -1
- package/dist/19923.js +0 -1
- package/dist/19988.js +0 -1
- package/dist/20318.js +0 -1
- package/dist/20379.js +0 -1
- package/dist/20445.js +0 -1
- package/dist/20485.js +0 -1
- package/dist/20490.js +0 -1
- package/dist/20616.js +0 -1
- package/dist/20757.js +0 -2
- package/dist/20757.js.LICENSE.txt +0 -14
- package/dist/20758.js +0 -1
- package/dist/20834.js +0 -1
- package/dist/20841.js +0 -1
- package/dist/20846.js +0 -1
- package/dist/20984.js +0 -1
- package/dist/21286.js +0 -1
- package/dist/21340.js +0 -1
- package/dist/21358.js +0 -1
- package/dist/21401.js +0 -1
- package/dist/21552.js +0 -1
- package/dist/21669.js +0 -1
- package/dist/21916.js +0 -1
- package/dist/22054.js +0 -1
- package/dist/22152.js +0 -1
- package/dist/22201.js +0 -1
- package/dist/22219.js +0 -1
- package/dist/22287.js +0 -1
- package/dist/2235.js +0 -1
- package/dist/22393.js +0 -1
- package/dist/22413.js +0 -1
- package/dist/22479.js +0 -1
- package/dist/22502.js +0 -1
- package/dist/22549.js +0 -1
- package/dist/22685.js +0 -1
- package/dist/22828.js +0 -1
- package/dist/22970.js +0 -1
- package/dist/23052.js +0 -1
- package/dist/23209.js +0 -1
- package/dist/23214.js +0 -1
- package/dist/23333.js +0 -1
- package/dist/23335.js +0 -1
- package/dist/23537.js +0 -1
- package/dist/23561.js +0 -1
- package/dist/23566.js +0 -1
- package/dist/23826.js +0 -1
- package/dist/239.js +0 -1
- package/dist/23934.js +0 -1
- package/dist/24214.js +0 -1
- package/dist/24488.js +0 -1
- package/dist/24495.js +0 -1
- package/dist/24517.js +0 -1
- package/dist/24575.js +0 -1
- package/dist/24653.js +0 -1
- package/dist/24728.js +0 -1
- package/dist/24804.js +0 -1
- package/dist/249.js +0 -1
- package/dist/25149.js +0 -1
- package/dist/2515.js +0 -1
- package/dist/25178.js +0 -1
- package/dist/25403.js +0 -1
- package/dist/25450.js +0 -1
- package/dist/25676.js +0 -1
- package/dist/25712.js +0 -1
- package/dist/25747.js +0 -1
- package/dist/25774.js +0 -1
- package/dist/26068.js +0 -1
- package/dist/26088.js +0 -1
- package/dist/26138.js +0 -1
- package/dist/26213.js +0 -1
- package/dist/26291.js +0 -1
- package/dist/26303.js +0 -1
- package/dist/2638.js +0 -1
- package/dist/26650.js +0 -1
- package/dist/2690.js +0 -1
- package/dist/26925.js +0 -1
- package/dist/26988.js +0 -1
- package/dist/27065.js +0 -1
- package/dist/27162.js +0 -1
- package/dist/2741.js +0 -1
- package/dist/27509.js +0 -1
- package/dist/27779.js +0 -1
- package/dist/27797.js +0 -1
- package/dist/27926.js +0 -1
- package/dist/28048.js +0 -1
- package/dist/28054.js +0 -1
- package/dist/28070.js +0 -1
- package/dist/28071.js +0 -1
- package/dist/28182.js +0 -1
- package/dist/28416.js +0 -1
- package/dist/28493.js +0 -1
- package/dist/28542.js +0 -1
- package/dist/28551.js +0 -1
- package/dist/28747.js +0 -1
- package/dist/28799.js +0 -1
- package/dist/28804.js +0 -1
- package/dist/28925.js +0 -1
- package/dist/29342.js +0 -1
- package/dist/29453.js +0 -1
- package/dist/29602.js +0 -1
- package/dist/29630.js +0 -1
- package/dist/29705.js +0 -1
- package/dist/29747.js +0 -1
- package/dist/29839.js +0 -1
- package/dist/30195.js +0 -1
- package/dist/30309.js +0 -1
- package/dist/30327.js +0 -1
- package/dist/30334.js +0 -1
- package/dist/30376.js +0 -1
- package/dist/30578.js +0 -1
- package/dist/30958.js +0 -1
- package/dist/31004.js +0 -1
- package/dist/31516.js +0 -1
- package/dist/31543.js +0 -1
- package/dist/31608.js +0 -1
- package/dist/31664.js +0 -1
- package/dist/31705.js +0 -1
- package/dist/31862.js +0 -1
- package/dist/31879.js +0 -1
- package/dist/32044.js +0 -1
- package/dist/32079.js +0 -2
- package/dist/32079.js.LICENSE.txt +0 -3
- package/dist/32126.js +0 -1
- package/dist/32238.js +0 -1
- package/dist/32331.js +0 -1
- package/dist/32342.js +0 -1
- package/dist/32366.js +0 -1
- package/dist/32454.js +0 -1
- package/dist/32487.js +0 -1
- package/dist/32534.js +0 -1
- package/dist/32810.js +0 -1
- package/dist/32884.js +0 -1
- package/dist/32887.js +0 -1
- package/dist/32947.js +0 -1
- package/dist/32976.js +0 -1
- package/dist/32977.js +0 -1
- package/dist/3299.js +0 -1
- package/dist/33061.js +0 -1
- package/dist/33278.js +0 -1
- package/dist/33289.js +0 -1
- package/dist/33329.js +0 -1
- package/dist/33360.js +0 -1
- package/dist/33440.js +0 -1
- package/dist/33566.js +0 -1
- package/dist/33662.js +0 -1
- package/dist/33698.js +0 -1
- package/dist/33765.js +0 -1
- package/dist/33847.js +0 -1
- package/dist/33887.js +0 -1
- package/dist/3392.js +0 -1
- package/dist/34423.js +0 -1
- package/dist/34512.js +0 -1
- package/dist/34637.js +0 -1
- package/dist/34658.js +0 -1
- package/dist/34785.js +0 -1
- package/dist/34921.js +0 -1
- package/dist/3496.js +0 -1
- package/dist/34976.js +0 -1
- package/dist/35152.js +0 -1
- package/dist/35186.js +0 -1
- package/dist/3521.js +0 -1
- package/dist/35233.js +0 -1
- package/dist/35255.js +0 -1
- package/dist/35333.js +0 -1
- package/dist/35390.js +0 -1
- package/dist/35528.js +0 -1
- package/dist/35609.js +0 -1
- package/dist/35636.js +0 -1
- package/dist/35654.js +0 -1
- package/dist/35663.js +0 -1
- package/dist/35785.js +0 -1
- package/dist/35884.js +0 -1
- package/dist/36.js +0 -1
- package/dist/36091.js +0 -1
- package/dist/36220.js +0 -1
- package/dist/36440.js +0 -1
- package/dist/36568.js +0 -1
- package/dist/36966.js +0 -1
- package/dist/37387.js +0 -1
- package/dist/37546.js +0 -1
- package/dist/37616.js +0 -1
- package/dist/37854.js +0 -1
- package/dist/37938.js +0 -1
- package/dist/37991.js +0 -1
- package/dist/38060.js +0 -1
- package/dist/38076.js +0 -1
- package/dist/38188.js +0 -1
- package/dist/3829.js +0 -1
- package/dist/38341.js +0 -1
- package/dist/38470.js +0 -1
- package/dist/38477.js +0 -1
- package/dist/38581.js +0 -1
- package/dist/38672.js +0 -1
- package/dist/38680.js +0 -1
- package/dist/38967.js +0 -1
- package/dist/38988.js +0 -1
- package/dist/3900.js +0 -1
- package/dist/39016.js +0 -1
- package/dist/39093.js +0 -1
- package/dist/39199.js +0 -1
- package/dist/3931.js +0 -2
- package/dist/3931.js.LICENSE.txt +0 -8
- package/dist/39371.js +0 -1
- package/dist/3938.js +0 -1
- package/dist/39386.js +0 -1
- package/dist/39608.js +0 -1
- package/dist/39715.js +0 -1
- package/dist/39784.js +0 -1
- package/dist/3979.js +0 -1
- package/dist/39816.js +0 -1
- package/dist/400.js +0 -1
- package/dist/40153.js +0 -1
- package/dist/40264.js +0 -1
- package/dist/40363.js +0 -1
- package/dist/40375.js +0 -1
- package/dist/40438.js +0 -1
- package/dist/40469.js +0 -1
- package/dist/4075.js +0 -1
- package/dist/40760.js +0 -1
- package/dist/40851.js +0 -1
- package/dist/40931.js +0 -1
- package/dist/40986.js +0 -1
- package/dist/41077.js +0 -1
- package/dist/41297.js +0 -1
- package/dist/41375.js +0 -1
- package/dist/4159.js +0 -1
- package/dist/41699.js +0 -1
- package/dist/4172.js +0 -1
- package/dist/41762.js +0 -1
- package/dist/41952.js +0 -1
- package/dist/41978.js +0 -1
- package/dist/42083.js +0 -1
- package/dist/42112.js +0 -1
- package/dist/42306.js +0 -1
- package/dist/4235.js +0 -1
- package/dist/42406.js +0 -1
- package/dist/42436.js +0 -1
- package/dist/42455.js +0 -1
- package/dist/42530.js +0 -1
- package/dist/42572.js +0 -1
- package/dist/42799.js +0 -1
- package/dist/42892.js +0 -1
- package/dist/4303.js +0 -1
- package/dist/43119.js +0 -1
- package/dist/43217.js +0 -1
- package/dist/43272.js +0 -1
- package/dist/43602.js +0 -1
- package/dist/43664.js +0 -1
- package/dist/43768.js +0 -1
- package/dist/44042.js +0 -2
- package/dist/44042.js.LICENSE.txt +0 -5
- package/dist/44055.js +0 -1
- package/dist/44060.js +0 -1
- package/dist/4415.js +0 -1
- package/dist/44323.js +0 -1
- package/dist/44374.js +0 -1
- package/dist/44461.js +0 -1
- package/dist/44689.js +0 -1
- package/dist/44785.js +0 -1
- package/dist/44868.js +0 -1
- package/dist/45113.js +0 -1
- package/dist/45132.js +0 -1
- package/dist/45154.js +0 -1
- package/dist/45192.js +0 -1
- package/dist/45397.js +0 -1
- package/dist/45612.js +0 -1
- package/dist/45651.js +0 -1
- package/dist/45794.js +0 -1
- package/dist/45873.js +0 -1
- package/dist/45923.js +0 -1
- package/dist/46084.js +0 -1
- package/dist/46176.js +0 -1
- package/dist/46277.js +0 -1
- package/dist/46348.js +0 -1
- package/dist/46513.js +0 -1
- package/dist/46660.js +0 -1
- package/dist/46697.js +0 -1
- package/dist/46831.js +0 -1
- package/dist/46862.js +0 -1
- package/dist/46977.js +0 -1
- package/dist/47100.js +0 -1
- package/dist/4730.js +0 -1
- package/dist/47319.js +0 -1
- package/dist/47348.js +0 -1
- package/dist/47384.js +0 -1
- package/dist/478.js +0 -1
- package/dist/4794.js +0 -1
- package/dist/47983.js +0 -1
- package/dist/48066.js +0 -1
- package/dist/48138.js +0 -1
- package/dist/48484.js +0 -1
- package/dist/48499.js +0 -1
- package/dist/486.js +0 -1
- package/dist/48740.js +0 -1
- package/dist/48817.js +0 -1
- package/dist/48892.js +0 -1
- package/dist/4890.js +0 -1
- package/dist/48964.js +0 -1
- package/dist/49213.js +0 -1
- package/dist/49231.js +0 -1
- package/dist/49378.js +0 -1
- package/dist/49387.js +0 -1
- package/dist/49572.js +0 -1
- package/dist/49686.js +0 -1
- package/dist/49758.js +0 -1
- package/dist/49886.js +0 -1
- package/dist/49996.js +0 -1
- package/dist/50044.js +0 -1
- package/dist/50218.js +0 -1
- package/dist/50295.js +0 -1
- package/dist/5056.js +0 -1
- package/dist/50676.js +0 -1
- package/dist/5073.js +0 -1
- package/dist/5082.js +0 -1
- package/dist/50939.js +0 -1
- package/dist/51033.js +0 -1
- package/dist/51044.js +0 -1
- package/dist/51059.js +0 -1
- package/dist/5114.js +0 -1
- package/dist/51143.js +0 -1
- package/dist/51206.js +0 -1
- package/dist/51356.js +0 -1
- package/dist/5140.js +0 -1
- package/dist/51454.js +0 -1
- package/dist/51745.js +0 -1
- package/dist/51813.js +0 -1
- package/dist/51847.js +0 -1
- package/dist/51848.js +0 -1
- package/dist/5187.js +0 -1
- package/dist/51973.js +0 -1
- package/dist/52002.js +0 -1
- package/dist/52009.js +0 -1
- package/dist/52193.js +0 -1
- package/dist/52397.js +0 -1
- package/dist/52607.js +0 -1
- package/dist/52647.js +0 -1
- package/dist/52772.js +0 -1
- package/dist/52791.js +0 -1
- package/dist/52918.js +0 -1
- package/dist/52939.js +0 -1
- package/dist/53039.js +0 -1
- package/dist/53069.js +0 -1
- package/dist/53170.js +0 -1
- package/dist/53392.js +0 -1
- package/dist/53453.js +0 -1
- package/dist/53499.js +0 -1
- package/dist/53520.js +0 -1
- package/dist/53541.js +0 -1
- package/dist/53583.js +0 -1
- package/dist/53594.js +0 -1
- package/dist/53627.js +0 -1
- package/dist/53662.js +0 -1
- package/dist/53732.js +0 -1
- package/dist/53892.js +0 -1
- package/dist/53981.js +0 -1
- package/dist/5401.js +0 -1
- package/dist/54108.js +0 -1
- package/dist/54158.js +0 -1
- package/dist/54392.js +0 -1
- package/dist/54676.js +0 -1
- package/dist/54975.js +0 -1
- package/dist/55029.js +0 -1
- package/dist/55111.js +0 -1
- package/dist/55188.js +0 -1
- package/dist/55419.js +0 -1
- package/dist/5546.js +0 -1
- package/dist/55504.js +0 -1
- package/dist/55540.js +0 -1
- package/dist/55562.js +0 -1
- package/dist/55642.js +0 -1
- package/dist/55796.js +0 -1
- package/dist/55819.js +0 -1
- package/dist/55830.js +0 -1
- package/dist/55868.js +0 -1
- package/dist/56019.js +0 -1
- package/dist/56032.js +0 -1
- package/dist/5611.js +0 -1
- package/dist/56110.js +0 -1
- package/dist/56370.js +0 -1
- package/dist/56643.js +0 -1
- package/dist/56691.js +0 -1
- package/dist/56792.js +0 -1
- package/dist/57028.js +0 -1
- package/dist/5718.js +0 -1
- package/dist/5724.js +0 -1
- package/dist/57277.js +0 -1
- package/dist/57370.js +0 -1
- package/dist/5768.js +0 -1
- package/dist/5803.js +0 -1
- package/dist/58043.js +0 -1
- package/dist/58097.js +0 -1
- package/dist/58100.js +0 -1
- package/dist/58106.js +0 -1
- package/dist/5811.js +0 -1
- package/dist/5813.js +0 -1
- package/dist/58238.js +0 -1
- package/dist/58332.js +0 -1
- package/dist/58347.js +0 -1
- package/dist/58539.js +0 -1
- package/dist/58570.js +0 -1
- package/dist/58751.js +0 -1
- package/dist/58759.js +0 -1
- package/dist/58771.js +0 -1
- package/dist/5886.js +0 -1
- package/dist/59023.js +0 -1
- package/dist/59325.js +0 -1
- package/dist/59409.js +0 -1
- package/dist/59446.js +0 -1
- package/dist/59452.js +0 -1
- package/dist/59517.js +0 -1
- package/dist/59533.js +0 -1
- package/dist/59650.js +0 -1
- package/dist/59680.js +0 -1
- package/dist/59822.js +0 -1
- package/dist/60147.js +0 -1
- package/dist/60192.js +0 -1
- package/dist/60220.js +0 -1
- package/dist/60297.js +0 -1
- package/dist/60450.js +0 -1
- package/dist/60507.js +0 -1
- package/dist/60513.js +0 -1
- package/dist/60550.js +0 -1
- package/dist/60647.js +0 -1
- package/dist/60784.js +0 -1
- package/dist/60864.js +0 -1
- package/dist/60876.js +0 -1
- package/dist/60989.js +0 -1
- package/dist/61075.js +0 -1
- package/dist/6109.js +0 -1
- package/dist/61258.js +0 -1
- package/dist/61275.js +0 -1
- package/dist/61306.js +0 -1
- package/dist/61354.js +0 -1
- package/dist/61419.js +0 -1
- package/dist/61531.js +0 -1
- package/dist/61619.js +0 -1
- package/dist/61785.js +0 -1
- package/dist/61828.js +0 -1
- package/dist/62014.js +0 -1
- package/dist/6203.js +0 -1
- package/dist/62038.js +0 -1
- package/dist/62239.js +0 -1
- package/dist/6242.js +0 -1
- package/dist/62528.js +0 -1
- package/dist/62630.js +0 -2
- package/dist/62630.js.LICENSE.txt +0 -8
- package/dist/62725.js +0 -1
- package/dist/62771.js +0 -1
- package/dist/62782.js +0 -1
- package/dist/62791.js +0 -1
- package/dist/62815.js +0 -1
- package/dist/62899.js +0 -1
- package/dist/63085.js +0 -1
- package/dist/6317.js +0 -1
- package/dist/6328.js +0 -1
- package/dist/63365.js +0 -1
- package/dist/63723.js +0 -1
- package/dist/63728.js +0 -1
- package/dist/63739.js +0 -1
- package/dist/63789.js +0 -1
- package/dist/63843.js +0 -1
- package/dist/6390.js +0 -1
- package/dist/63980.js +0 -1
- package/dist/64032.js +0 -1
- package/dist/64140.js +0 -1
- package/dist/64205.js +0 -1
- package/dist/64232.js +0 -1
- package/dist/64274.js +0 -1
- package/dist/64485.js +0 -1
- package/dist/64619.js +0 -1
- package/dist/6465.js +0 -1
- package/dist/64687.js +0 -1
- package/dist/64823.js +0 -1
- package/dist/651.js +0 -1
- package/dist/65336.js +0 -1
- package/dist/65459.js +0 -1
- package/dist/65545.js +0 -1
- package/dist/65816.js +0 -1
- package/dist/65903.js +0 -1
- package/dist/6599.js +0 -1
- package/dist/66194.js +0 -1
- package/dist/66243.js +0 -1
- package/dist/66494.js +0 -1
- package/dist/66525.js +0 -1
- package/dist/66738.js +0 -1
- package/dist/6686.js +0 -1
- package/dist/66887.js +0 -1
- package/dist/66889.js +0 -1
- package/dist/66968.js +0 -1
- package/dist/67117.js +0 -1
- package/dist/67139.js +0 -1
- package/dist/67285.js +0 -1
- package/dist/67292.js +0 -1
- package/dist/67295.js +0 -1
- package/dist/67476.js +0 -1
- package/dist/67499.js +0 -1
- package/dist/67668.js +0 -1
- package/dist/67796.js +0 -1
- package/dist/67945.js +0 -1
- package/dist/67992.js +0 -1
- package/dist/68128.js +0 -1
- package/dist/6815.js +0 -1
- package/dist/68196.js +0 -1
- package/dist/68197.js +0 -1
- package/dist/6829.js +0 -1
- package/dist/68388.js +0 -1
- package/dist/68483.js +0 -1
- package/dist/68522.js +0 -1
- package/dist/6856.js +0 -1
- package/dist/68642.js +0 -1
- package/dist/68840.js +0 -1
- package/dist/69145.js +0 -1
- package/dist/69441.js +0 -1
- package/dist/69552.js +0 -1
- package/dist/69658.js +0 -1
- package/dist/70066.js +0 -1
- package/dist/70118.js +0 -1
- package/dist/70397.js +0 -1
- package/dist/7041.js +0 -1
- package/dist/70413.js +0 -1
- package/dist/70598.js +0 -1
- package/dist/70640.js +0 -1
- package/dist/70689.js +0 -1
- package/dist/70730.js +0 -1
- package/dist/70782.js +0 -1
- package/dist/70830.js +0 -1
- package/dist/7084.js +0 -1
- package/dist/70907.js +0 -1
- package/dist/71059.js +0 -1
- package/dist/71069.js +0 -1
- package/dist/71215.js +0 -1
- package/dist/71547.js +0 -1
- package/dist/7189.js +0 -1
- package/dist/72050.js +0 -1
- package/dist/72086.js +0 -1
- package/dist/7211.js +0 -1
- package/dist/72216.js +0 -1
- package/dist/72257.js +0 -1
- package/dist/72328.js +0 -1
- package/dist/7236.js +0 -1
- package/dist/72406.js +0 -1
- package/dist/72744.js +0 -1
- package/dist/73015.js +0 -1
- package/dist/73255.js +0 -1
- package/dist/73257.js +0 -1
- package/dist/73294.js +0 -1
- package/dist/7339.js +0 -1
- package/dist/7359.js +0 -1
- package/dist/73622.js +0 -1
- package/dist/73833.js +0 -1
- package/dist/74236.js +0 -1
- package/dist/74255.js +0 -1
- package/dist/74384.js +0 -1
- package/dist/74787.js +0 -1
- package/dist/74840.js +0 -1
- package/dist/74946.js +0 -1
- package/dist/75004.js +0 -1
- package/dist/75061.js +0 -1
- package/dist/75254.js +0 -1
- package/dist/75285.js +0 -1
- package/dist/754.js +0 -1
- package/dist/75596.js +0 -1
- package/dist/75717.js +0 -1
- package/dist/75728.js +0 -1
- package/dist/75848.js +0 -1
- package/dist/76023.js +0 -1
- package/dist/76077.js +0 -1
- package/dist/76289.js +0 -1
- package/dist/76337.js +0 -1
- package/dist/76382.js +0 -1
- package/dist/769.js +0 -1
- package/dist/7691.js +0 -1
- package/dist/7707.js +0 -1
- package/dist/77131.js +0 -1
- package/dist/77153.js +0 -1
- package/dist/7722.js +0 -1
- package/dist/77354.js +0 -1
- package/dist/77438.js +0 -1
- package/dist/77533.js +0 -1
- package/dist/77767.js +0 -1
- package/dist/7802.js +0 -1
- package/dist/7804.js +0 -1
- package/dist/78166.js +0 -1
- package/dist/7841.js +0 -1
- package/dist/78823.js +0 -1
- package/dist/79122.js +0 -1
- package/dist/79125.js +0 -1
- package/dist/79185.js +0 -1
- package/dist/7919.js +0 -1
- package/dist/79213.js +0 -1
- package/dist/79218.js +0 -1
- package/dist/79276.js +0 -1
- package/dist/79296.js +0 -1
- package/dist/79400.js +0 -1
- package/dist/79415.js +0 -2
- package/dist/79415.js.LICENSE.txt +0 -36
- package/dist/79626.js +0 -1
- package/dist/79732.js +0 -1
- package/dist/7981.js +0 -1
- package/dist/79885.js +0 -1
- package/dist/79957.js +0 -1
- package/dist/80027.js +0 -1
- package/dist/803.js +0 -1
- package/dist/80378.js +0 -1
- package/dist/80421.js +0 -1
- package/dist/80430.js +0 -1
- package/dist/80450.js +0 -1
- package/dist/80636.js +0 -1
- package/dist/80640.js +0 -1
- package/dist/80744.js +0 -1
- package/dist/80978.js +0 -1
- package/dist/81176.js +0 -1
- package/dist/81294.js +0 -1
- package/dist/81486.js +0 -1
- package/dist/81658.js +0 -1
- package/dist/81691.js +0 -1
- package/dist/81739.js +0 -1
- package/dist/81827.js +0 -1
- package/dist/8183.js +0 -1
- package/dist/81900.js +0 -1
- package/dist/81950.js +0 -1
- package/dist/82005.js +0 -1
- package/dist/82012.js +0 -1
- package/dist/82300.js +0 -1
- package/dist/82343.js +0 -1
- package/dist/82385.js +0 -1
- package/dist/82393.js +0 -1
- package/dist/82430.js +0 -1
- package/dist/82609.js +0 -1
- package/dist/82643.js +0 -1
- package/dist/82666.js +0 -1
- package/dist/82682.js +0 -1
- package/dist/8273.js +0 -1
- package/dist/82775.js +0 -1
- package/dist/83117.js +0 -1
- package/dist/83123.js +0 -1
- package/dist/83148.js +0 -1
- package/dist/83186.js +0 -1
- package/dist/83265.js +0 -1
- package/dist/83294.js +0 -1
- package/dist/83316.js +0 -1
- package/dist/83330.js +0 -1
- package/dist/83551.js +0 -1
- package/dist/83749.js +0 -1
- package/dist/83849.js +0 -1
- package/dist/83866.js +0 -1
- package/dist/83996.js +0 -1
- package/dist/84067.js +0 -1
- package/dist/84081.js +0 -1
- package/dist/84107.js +0 -1
- package/dist/84187.js +0 -1
- package/dist/84265.js +0 -1
- package/dist/84411.js +0 -1
- package/dist/84684.js +0 -1
- package/dist/84705.js +0 -2
- package/dist/84705.js.LICENSE.txt +0 -23
- package/dist/84713.js +0 -1
- package/dist/84814.js +0 -1
- package/dist/84902.js +0 -1
- package/dist/84912.js +0 -1
- package/dist/84936.js +0 -1
- package/dist/84957.js +0 -1
- package/dist/8498.js +0 -1
- package/dist/85125.js +0 -1
- package/dist/85274.js +0 -1
- package/dist/85283.js +0 -1
- package/dist/85372.js +0 -1
- package/dist/85389.js +0 -1
- package/dist/85489.js +0 -1
- package/dist/85500.js +0 -1
- package/dist/85570.js +0 -1
- package/dist/8561.js +0 -1
- package/dist/85748.js +0 -1
- package/dist/85874.js +0 -1
- package/dist/86146.js +0 -1
- package/dist/86183.js +0 -1
- package/dist/863.js +0 -1
- package/dist/86322.js +0 -1
- package/dist/86467.js +0 -1
- package/dist/86470.js +0 -1
- package/dist/86516.js +0 -1
- package/dist/86629.js +0 -1
- package/dist/86716.js +0 -1
- package/dist/86728.js +0 -1
- package/dist/86752.js +0 -1
- package/dist/86762.js +0 -1
- package/dist/86858.js +0 -1
- package/dist/8701.js +0 -1
- package/dist/87022.js +0 -1
- package/dist/87080.js +0 -1
- package/dist/87117.js +0 -1
- package/dist/87254.js +0 -1
- package/dist/8742.js +0 -1
- package/dist/87459.js +0 -1
- package/dist/87480.js +0 -1
- package/dist/8751.js +0 -1
- package/dist/87529.js +0 -1
- package/dist/87617.js +0 -1
- package/dist/87643.js +0 -1
- package/dist/87681.js +0 -1
- package/dist/87701.js +0 -1
- package/dist/87888.js +0 -1
- package/dist/88002.js +0 -1
- package/dist/8829.js +0 -1
- package/dist/88535.js +0 -1
- package/dist/88564.js +0 -1
- package/dist/88585.js +0 -1
- package/dist/88746.js +0 -1
- package/dist/88968.js +0 -1
- package/dist/89022.js +0 -1
- package/dist/89129.js +0 -1
- package/dist/89166.js +0 -1
- package/dist/89209.js +0 -1
- package/dist/89222.js +0 -1
- package/dist/89251.js +0 -1
- package/dist/89409.js +0 -1
- package/dist/89426.js +0 -1
- package/dist/89503.js +0 -1
- package/dist/89873.js +0 -1
- package/dist/90096.js +0 -1
- package/dist/90109.js +0 -1
- package/dist/90337.js +0 -1
- package/dist/90375.js +0 -1
- package/dist/90381.js +0 -1
- package/dist/90409.js +0 -1
- package/dist/90436.js +0 -1
- package/dist/90585.js +0 -1
- package/dist/9059.js +0 -1
- package/dist/90665.js +0 -1
- package/dist/90683.js +0 -1
- package/dist/90941.js +0 -1
- package/dist/91021.js +0 -1
- package/dist/91148.js +0 -1
- package/dist/91278.js +0 -1
- package/dist/91419.js +0 -1
- package/dist/91740.js +0 -1
- package/dist/91812.js +0 -1
- package/dist/91882.js +0 -1
- package/dist/91890.js +0 -1
- package/dist/91954.js +0 -1
- package/dist/92050.js +0 -1
- package/dist/92217.js +0 -1
- package/dist/92292.js +0 -1
- package/dist/92356.js +0 -1
- package/dist/92496.js +0 -1
- package/dist/92561.js +0 -1
- package/dist/92630.js +0 -1
- package/dist/9269.js +0 -1
- package/dist/9303.js +0 -1
- package/dist/93089.js +0 -1
- package/dist/93366.js +0 -1
- package/dist/93439.js +0 -1
- package/dist/93532.js +0 -1
- package/dist/93624.js +0 -1
- package/dist/93708.js +0 -1
- package/dist/93731.js +0 -1
- package/dist/93793.js +0 -1
- package/dist/93848.js +0 -1
- package/dist/93894.js +0 -1
- package/dist/93930.js +0 -1
- package/dist/94116.js +0 -1
- package/dist/9426.js +0 -1
- package/dist/94266.js +0 -1
- package/dist/94379.js +0 -1
- package/dist/94503.js +0 -1
- package/dist/94545.js +0 -1
- package/dist/94612.js +0 -1
- package/dist/94812.js +0 -1
- package/dist/94831.js +0 -1
- package/dist/95101.js +0 -1
- package/dist/95262.js +0 -1
- package/dist/95286.js +0 -1
- package/dist/95733.js +0 -1
- package/dist/95812.js +0 -1
- package/dist/95845.js +0 -1
- package/dist/96034.js +0 -1
- package/dist/96037.js +0 -1
- package/dist/96790.js +0 -1
- package/dist/96902.js +0 -1
- package/dist/96971.js +0 -1
- package/dist/97180.js +0 -1
- package/dist/97357.js +0 -1
- package/dist/97441.js +0 -1
- package/dist/97507.js +0 -1
- package/dist/97532.js +0 -1
- package/dist/97580.js +0 -1
- package/dist/97672.js +0 -1
- package/dist/97748.js +0 -1
- package/dist/97754.js +0 -1
- package/dist/97825.js +0 -1
- package/dist/97872.js +0 -1
- package/dist/97900.js +0 -1
- package/dist/97925.js +0 -1
- package/dist/97995.js +0 -1
- package/dist/98173.js +0 -1
- package/dist/98273.js +0 -1
- package/dist/98337.js +0 -1
- package/dist/98386.js +0 -1
- package/dist/98407.js +0 -1
- package/dist/98427.js +0 -1
- package/dist/98481.js +0 -1
- package/dist/98653.js +0 -1
- package/dist/98679.js +0 -1
- package/dist/98702.js +0 -1
- package/dist/99034.js +0 -1
- package/dist/99077.js +0 -1
- package/dist/9927.js +0 -1
- package/dist/99357.js +0 -1
- package/dist/99393.js +0 -1
- package/dist/99416.js +0 -1
- package/dist/99480.js +0 -1
- package/dist/99665.js +0 -1
- package/dist/99746.js +0 -1
- package/dist/99931.js +0 -1
- package/dist/99949.js +0 -1
- package/dist/99970.js +0 -1
- package/dist/main.js +0 -2
- package/dist/main.js.LICENSE.txt +0 -8
- package/dist/meta/Affix.json +0 -1
- package/dist/meta/Alert.json +0 -1
- package/dist/meta/Anchor.json +0 -1
- package/dist/meta/AutoComplete.json +0 -1
- package/dist/meta/Avatar.json +0 -1
- package/dist/meta/Badge.json +0 -1
- package/dist/meta/Breadcrumb.json +0 -1
- package/dist/meta/Button.json +0 -1
- package/dist/meta/ButtonSelector.json +0 -1
- package/dist/meta/Card.json +0 -1
- package/dist/meta/CheckboxSelector.json +0 -1
- package/dist/meta/CheckboxSwitch.json +0 -1
- package/dist/meta/Collapse.json +0 -1
- package/dist/meta/Comment.json +0 -1
- package/dist/meta/ConfirmModal.json +0 -1
- package/dist/meta/Content.json +0 -1
- package/dist/meta/ControlledList.json +0 -1
- package/dist/meta/DateRangeSelector.json +0 -1
- package/dist/meta/DateSelector.json +0 -1
- package/dist/meta/DateTimeSelector.json +0 -1
- package/dist/meta/Descriptions.json +0 -1
- package/dist/meta/Divider.json +0 -1
- package/dist/meta/Drawer.json +0 -1
- package/dist/meta/Footer.json +0 -1
- package/dist/meta/Header.json +0 -1
- package/dist/meta/Icon.json +0 -1
- package/dist/meta/Label.json +0 -1
- package/dist/meta/Layout.json +0 -1
- package/dist/meta/Menu.json +0 -1
- package/dist/meta/Message.json +0 -1
- package/dist/meta/MobileMenu.json +0 -1
- package/dist/meta/Modal.json +0 -1
- package/dist/meta/MonthSelector.json +0 -1
- package/dist/meta/MultipleSelector.json +0 -1
- package/dist/meta/Notification.json +0 -1
- package/dist/meta/NumberInput.json +0 -1
- package/dist/meta/PageHCF.json +0 -1
- package/dist/meta/PageHCSF.json +0 -1
- package/dist/meta/PageHSCF.json +0 -1
- package/dist/meta/PageHeaderMenu.json +0 -1
- package/dist/meta/PageSHCF.json +0 -1
- package/dist/meta/PageSiderMenu.json +0 -1
- package/dist/meta/Pagination.json +0 -1
- package/dist/meta/Paragraph.json +0 -1
- package/dist/meta/ParagraphInput.json +0 -1
- package/dist/meta/PasswordInput.json +0 -1
- package/dist/meta/Progress.json +0 -1
- package/dist/meta/RadioSelector.json +0 -1
- package/dist/meta/RatingSlider.json +0 -1
- package/dist/meta/Result.json +0 -1
- package/dist/meta/S3UploadButton.json +0 -1
- package/dist/meta/Selector.json +0 -1
- package/dist/meta/Sider.json +0 -1
- package/dist/meta/Skeleton.json +0 -1
- package/dist/meta/Spin.json +0 -1
- package/dist/meta/Statistic.json +0 -1
- package/dist/meta/Switch.json +0 -1
- package/dist/meta/Tabs.json +0 -1
- package/dist/meta/TextArea.json +0 -1
- package/dist/meta/TextInput.json +0 -1
- package/dist/meta/TimelineList.json +0 -1
- package/dist/meta/Title.json +0 -1
- package/dist/meta/TitleInput.json +0 -1
- package/dist/meta/Tooltip.json +0 -1
- package/dist/meta/WeekSelector.json +0 -1
- package/dist/remoteEntry.js +0 -1
- package/es/blocks/Affix/Affix.js +0 -63
- package/es/blocks/Affix/Affix.json +0 -37
- package/es/blocks/Alert/Alert.js +0 -71
- package/es/blocks/Alert/Alert.json +0 -71
- package/es/blocks/Anchor/Anchor.js +0 -103
- package/es/blocks/Anchor/Anchor.json +0 -69
- package/es/blocks/AutoComplete/AutoComplete.js +0 -107
- package/es/blocks/AutoComplete/AutoComplete.json +0 -190
- package/es/blocks/Avatar/Avatar.js +0 -66
- package/es/blocks/Avatar/Avatar.json +0 -73
- package/es/blocks/Badge/Badge.js +0 -65
- package/es/blocks/Badge/Badge.json +0 -67
- package/es/blocks/Breadcrumb/Breadcrumb.js +0 -103
- package/es/blocks/Breadcrumb/Breadcrumb.json +0 -86
- package/es/blocks/Button/Button.js +0 -93
- package/es/blocks/Button/Button.json +0 -96
- package/es/blocks/ButtonSelector/ButtonSelector.js +0 -99
- package/es/blocks/ButtonSelector/ButtonSelector.json +0 -198
- package/es/blocks/Card/Card.js +0 -70
- package/es/blocks/Card/Card.json +0 -66
- package/es/blocks/CheckboxSelector/CheckboxSelector.js +0 -101
- package/es/blocks/CheckboxSelector/CheckboxSelector.json +0 -186
- package/es/blocks/CheckboxSwitch/CheckboxSwitch.js +0 -77
- package/es/blocks/CheckboxSwitch/CheckboxSwitch.json +0 -116
- package/es/blocks/Collapse/Collapse.js +0 -97
- package/es/blocks/Collapse/Collapse.json +0 -98
- package/es/blocks/Comment/Comment.js +0 -72
- package/es/blocks/Comment/Comment.json +0 -44
- package/es/blocks/ConfirmModal/ConfirmModal.js +0 -117
- package/es/blocks/ConfirmModal/ConfirmModal.json +0 -146
- package/es/blocks/Content/Content.js +0 -50
- package/es/blocks/Content/Content.json +0 -19
- package/es/blocks/ControlledList/ControlledList.js +0 -133
- package/es/blocks/ControlledList/ControlledList.json +0 -81
- package/es/blocks/DateRangeSelector/DateRangeSelector.js +0 -103
- package/es/blocks/DateRangeSelector/DateRangeSelector.json +0 -226
- package/es/blocks/DateSelector/DateSelector.js +0 -95
- package/es/blocks/DateSelector/DateSelector.json +0 -188
- package/es/blocks/DateTimeSelector/DateTimeSelector.js +0 -103
- package/es/blocks/DateTimeSelector/DateTimeSelector.json +0 -221
- package/es/blocks/Descriptions/Descriptions.js +0 -96
- package/es/blocks/Descriptions/Descriptions.json +0 -166
- package/es/blocks/Divider/Divider.js +0 -54
- package/es/blocks/Divider/Divider.json +0 -43
- package/es/blocks/Drawer/Drawer.js +0 -138
- package/es/blocks/Drawer/Drawer.json +0 -123
- package/es/blocks/Footer/Footer.js +0 -52
- package/es/blocks/Footer/Footer.json +0 -19
- package/es/blocks/Header/Header.js +0 -54
- package/es/blocks/Header/Header.json +0 -29
- package/es/blocks/Icon/Icon.js +0 -83
- package/es/blocks/Icon/Icon.json +0 -855
- package/es/blocks/Icon/generateIcons.js +0 -80
- package/es/blocks/Icon/icons/AccountBookFilled.js +0 -32
- package/es/blocks/Icon/icons/AccountBookOutlined.js +0 -32
- package/es/blocks/Icon/icons/AccountBookTwoTone.js +0 -32
- package/es/blocks/Icon/icons/AimOutlined.js +0 -32
- package/es/blocks/Icon/icons/AlertFilled.js +0 -32
- package/es/blocks/Icon/icons/AlertOutlined.js +0 -32
- package/es/blocks/Icon/icons/AlertTwoTone.js +0 -32
- package/es/blocks/Icon/icons/AlibabaOutlined.js +0 -32
- package/es/blocks/Icon/icons/AlignCenterOutlined.js +0 -32
- package/es/blocks/Icon/icons/AlignLeftOutlined.js +0 -32
- package/es/blocks/Icon/icons/AlignRightOutlined.js +0 -32
- package/es/blocks/Icon/icons/AlipayCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/AlipayCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/AlipayOutlined.js +0 -32
- package/es/blocks/Icon/icons/AlipaySquareFilled.js +0 -32
- package/es/blocks/Icon/icons/AliwangwangFilled.js +0 -32
- package/es/blocks/Icon/icons/AliwangwangOutlined.js +0 -32
- package/es/blocks/Icon/icons/AliyunOutlined.js +0 -32
- package/es/blocks/Icon/icons/AmazonCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/AmazonOutlined.js +0 -32
- package/es/blocks/Icon/icons/AmazonSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/AndroidFilled.js +0 -32
- package/es/blocks/Icon/icons/AndroidOutlined.js +0 -32
- package/es/blocks/Icon/icons/AntCloudOutlined.js +0 -32
- package/es/blocks/Icon/icons/AntDesignOutlined.js +0 -32
- package/es/blocks/Icon/icons/ApartmentOutlined.js +0 -32
- package/es/blocks/Icon/icons/ApiFilled.js +0 -32
- package/es/blocks/Icon/icons/ApiOutlined.js +0 -32
- package/es/blocks/Icon/icons/ApiTwoTone.js +0 -32
- package/es/blocks/Icon/icons/AppleFilled.js +0 -32
- package/es/blocks/Icon/icons/AppleOutlined.js +0 -32
- package/es/blocks/Icon/icons/AppstoreAddOutlined.js +0 -32
- package/es/blocks/Icon/icons/AppstoreFilled.js +0 -32
- package/es/blocks/Icon/icons/AppstoreOutlined.js +0 -32
- package/es/blocks/Icon/icons/AppstoreTwoTone.js +0 -32
- package/es/blocks/Icon/icons/AreaChartOutlined.js +0 -32
- package/es/blocks/Icon/icons/ArrowDownOutlined.js +0 -32
- package/es/blocks/Icon/icons/ArrowLeftOutlined.js +0 -32
- package/es/blocks/Icon/icons/ArrowRightOutlined.js +0 -32
- package/es/blocks/Icon/icons/ArrowUpOutlined.js +0 -32
- package/es/blocks/Icon/icons/ArrowsAltOutlined.js +0 -32
- package/es/blocks/Icon/icons/AudioFilled.js +0 -32
- package/es/blocks/Icon/icons/AudioMutedOutlined.js +0 -32
- package/es/blocks/Icon/icons/AudioOutlined.js +0 -32
- package/es/blocks/Icon/icons/AudioTwoTone.js +0 -32
- package/es/blocks/Icon/icons/AuditOutlined.js +0 -32
- package/es/blocks/Icon/icons/BackwardFilled.js +0 -32
- package/es/blocks/Icon/icons/BackwardOutlined.js +0 -32
- package/es/blocks/Icon/icons/BankFilled.js +0 -32
- package/es/blocks/Icon/icons/BankOutlined.js +0 -32
- package/es/blocks/Icon/icons/BankTwoTone.js +0 -32
- package/es/blocks/Icon/icons/BarChartOutlined.js +0 -32
- package/es/blocks/Icon/icons/BarcodeOutlined.js +0 -32
- package/es/blocks/Icon/icons/BarsOutlined.js +0 -32
- package/es/blocks/Icon/icons/BehanceCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/BehanceOutlined.js +0 -32
- package/es/blocks/Icon/icons/BehanceSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/BehanceSquareOutlined.js +0 -32
- package/es/blocks/Icon/icons/BellFilled.js +0 -32
- package/es/blocks/Icon/icons/BellOutlined.js +0 -32
- package/es/blocks/Icon/icons/BellTwoTone.js +0 -32
- package/es/blocks/Icon/icons/BgColorsOutlined.js +0 -32
- package/es/blocks/Icon/icons/BlockOutlined.js +0 -32
- package/es/blocks/Icon/icons/BoldOutlined.js +0 -32
- package/es/blocks/Icon/icons/BookFilled.js +0 -32
- package/es/blocks/Icon/icons/BookOutlined.js +0 -32
- package/es/blocks/Icon/icons/BookTwoTone.js +0 -32
- package/es/blocks/Icon/icons/BorderBottomOutlined.js +0 -32
- package/es/blocks/Icon/icons/BorderHorizontalOutlined.js +0 -32
- package/es/blocks/Icon/icons/BorderInnerOutlined.js +0 -32
- package/es/blocks/Icon/icons/BorderLeftOutlined.js +0 -32
- package/es/blocks/Icon/icons/BorderOuterOutlined.js +0 -32
- package/es/blocks/Icon/icons/BorderOutlined.js +0 -32
- package/es/blocks/Icon/icons/BorderRightOutlined.js +0 -32
- package/es/blocks/Icon/icons/BorderTopOutlined.js +0 -32
- package/es/blocks/Icon/icons/BorderVerticleOutlined.js +0 -32
- package/es/blocks/Icon/icons/BorderlessTableOutlined.js +0 -32
- package/es/blocks/Icon/icons/BoxPlotFilled.js +0 -32
- package/es/blocks/Icon/icons/BoxPlotOutlined.js +0 -32
- package/es/blocks/Icon/icons/BoxPlotTwoTone.js +0 -32
- package/es/blocks/Icon/icons/BranchesOutlined.js +0 -32
- package/es/blocks/Icon/icons/BugFilled.js +0 -32
- package/es/blocks/Icon/icons/BugOutlined.js +0 -32
- package/es/blocks/Icon/icons/BugTwoTone.js +0 -32
- package/es/blocks/Icon/icons/BuildFilled.js +0 -32
- package/es/blocks/Icon/icons/BuildOutlined.js +0 -32
- package/es/blocks/Icon/icons/BuildTwoTone.js +0 -32
- package/es/blocks/Icon/icons/BulbFilled.js +0 -32
- package/es/blocks/Icon/icons/BulbOutlined.js +0 -32
- package/es/blocks/Icon/icons/BulbTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CalculatorFilled.js +0 -32
- package/es/blocks/Icon/icons/CalculatorOutlined.js +0 -32
- package/es/blocks/Icon/icons/CalculatorTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CalendarFilled.js +0 -32
- package/es/blocks/Icon/icons/CalendarOutlined.js +0 -32
- package/es/blocks/Icon/icons/CalendarTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CameraFilled.js +0 -32
- package/es/blocks/Icon/icons/CameraOutlined.js +0 -32
- package/es/blocks/Icon/icons/CameraTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CarFilled.js +0 -32
- package/es/blocks/Icon/icons/CarOutlined.js +0 -32
- package/es/blocks/Icon/icons/CarTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CaretDownFilled.js +0 -32
- package/es/blocks/Icon/icons/CaretDownOutlined.js +0 -32
- package/es/blocks/Icon/icons/CaretLeftFilled.js +0 -32
- package/es/blocks/Icon/icons/CaretLeftOutlined.js +0 -32
- package/es/blocks/Icon/icons/CaretRightFilled.js +0 -32
- package/es/blocks/Icon/icons/CaretRightOutlined.js +0 -32
- package/es/blocks/Icon/icons/CaretUpFilled.js +0 -32
- package/es/blocks/Icon/icons/CaretUpOutlined.js +0 -32
- package/es/blocks/Icon/icons/CarryOutFilled.js +0 -32
- package/es/blocks/Icon/icons/CarryOutOutlined.js +0 -32
- package/es/blocks/Icon/icons/CarryOutTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CheckCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/CheckCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/CheckCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CheckOutlined.js +0 -32
- package/es/blocks/Icon/icons/CheckSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/CheckSquareOutlined.js +0 -32
- package/es/blocks/Icon/icons/CheckSquareTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ChromeFilled.js +0 -32
- package/es/blocks/Icon/icons/ChromeOutlined.js +0 -32
- package/es/blocks/Icon/icons/CiCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/CiCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/CiCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CiOutlined.js +0 -32
- package/es/blocks/Icon/icons/CiTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ClearOutlined.js +0 -32
- package/es/blocks/Icon/icons/ClockCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/ClockCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/ClockCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CloseCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/CloseCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/CloseCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CloseOutlined.js +0 -32
- package/es/blocks/Icon/icons/CloseSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/CloseSquareOutlined.js +0 -32
- package/es/blocks/Icon/icons/CloseSquareTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CloudDownloadOutlined.js +0 -32
- package/es/blocks/Icon/icons/CloudFilled.js +0 -32
- package/es/blocks/Icon/icons/CloudOutlined.js +0 -32
- package/es/blocks/Icon/icons/CloudServerOutlined.js +0 -32
- package/es/blocks/Icon/icons/CloudSyncOutlined.js +0 -32
- package/es/blocks/Icon/icons/CloudTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CloudUploadOutlined.js +0 -32
- package/es/blocks/Icon/icons/ClusterOutlined.js +0 -32
- package/es/blocks/Icon/icons/CodeFilled.js +0 -32
- package/es/blocks/Icon/icons/CodeOutlined.js +0 -32
- package/es/blocks/Icon/icons/CodeSandboxCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/CodeSandboxOutlined.js +0 -32
- package/es/blocks/Icon/icons/CodeSandboxSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/CodeTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CodepenCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/CodepenCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/CodepenOutlined.js +0 -32
- package/es/blocks/Icon/icons/CodepenSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/CoffeeOutlined.js +0 -32
- package/es/blocks/Icon/icons/ColumnHeightOutlined.js +0 -32
- package/es/blocks/Icon/icons/ColumnWidthOutlined.js +0 -32
- package/es/blocks/Icon/icons/CommentOutlined.js +0 -32
- package/es/blocks/Icon/icons/CompassFilled.js +0 -32
- package/es/blocks/Icon/icons/CompassOutlined.js +0 -32
- package/es/blocks/Icon/icons/CompassTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CompressOutlined.js +0 -32
- package/es/blocks/Icon/icons/ConsoleSqlOutlined.js +0 -32
- package/es/blocks/Icon/icons/ContactsFilled.js +0 -32
- package/es/blocks/Icon/icons/ContactsOutlined.js +0 -32
- package/es/blocks/Icon/icons/ContactsTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ContainerFilled.js +0 -32
- package/es/blocks/Icon/icons/ContainerOutlined.js +0 -32
- package/es/blocks/Icon/icons/ContainerTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ControlFilled.js +0 -32
- package/es/blocks/Icon/icons/ControlOutlined.js +0 -32
- package/es/blocks/Icon/icons/ControlTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CopyFilled.js +0 -32
- package/es/blocks/Icon/icons/CopyOutlined.js +0 -32
- package/es/blocks/Icon/icons/CopyTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CopyrightCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/CopyrightCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/CopyrightCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CopyrightOutlined.js +0 -32
- package/es/blocks/Icon/icons/CopyrightTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CreditCardFilled.js +0 -32
- package/es/blocks/Icon/icons/CreditCardOutlined.js +0 -32
- package/es/blocks/Icon/icons/CreditCardTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CrownFilled.js +0 -32
- package/es/blocks/Icon/icons/CrownOutlined.js +0 -32
- package/es/blocks/Icon/icons/CrownTwoTone.js +0 -32
- package/es/blocks/Icon/icons/CustomerServiceFilled.js +0 -32
- package/es/blocks/Icon/icons/CustomerServiceOutlined.js +0 -32
- package/es/blocks/Icon/icons/CustomerServiceTwoTone.js +0 -32
- package/es/blocks/Icon/icons/DashOutlined.js +0 -32
- package/es/blocks/Icon/icons/DashboardFilled.js +0 -32
- package/es/blocks/Icon/icons/DashboardOutlined.js +0 -32
- package/es/blocks/Icon/icons/DashboardTwoTone.js +0 -32
- package/es/blocks/Icon/icons/DatabaseFilled.js +0 -32
- package/es/blocks/Icon/icons/DatabaseOutlined.js +0 -32
- package/es/blocks/Icon/icons/DatabaseTwoTone.js +0 -32
- package/es/blocks/Icon/icons/DeleteColumnOutlined.js +0 -32
- package/es/blocks/Icon/icons/DeleteFilled.js +0 -32
- package/es/blocks/Icon/icons/DeleteOutlined.js +0 -32
- package/es/blocks/Icon/icons/DeleteRowOutlined.js +0 -32
- package/es/blocks/Icon/icons/DeleteTwoTone.js +0 -32
- package/es/blocks/Icon/icons/DeliveredProcedureOutlined.js +0 -32
- package/es/blocks/Icon/icons/DeploymentUnitOutlined.js +0 -32
- package/es/blocks/Icon/icons/DesktopOutlined.js +0 -32
- package/es/blocks/Icon/icons/DiffFilled.js +0 -32
- package/es/blocks/Icon/icons/DiffOutlined.js +0 -32
- package/es/blocks/Icon/icons/DiffTwoTone.js +0 -32
- package/es/blocks/Icon/icons/DingdingOutlined.js +0 -32
- package/es/blocks/Icon/icons/DingtalkCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/DingtalkOutlined.js +0 -32
- package/es/blocks/Icon/icons/DingtalkSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/DisconnectOutlined.js +0 -32
- package/es/blocks/Icon/icons/DislikeFilled.js +0 -32
- package/es/blocks/Icon/icons/DislikeOutlined.js +0 -32
- package/es/blocks/Icon/icons/DislikeTwoTone.js +0 -32
- package/es/blocks/Icon/icons/DollarCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/DollarCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/DollarCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/DollarOutlined.js +0 -32
- package/es/blocks/Icon/icons/DollarTwoTone.js +0 -32
- package/es/blocks/Icon/icons/DotChartOutlined.js +0 -32
- package/es/blocks/Icon/icons/DoubleLeftOutlined.js +0 -32
- package/es/blocks/Icon/icons/DoubleRightOutlined.js +0 -32
- package/es/blocks/Icon/icons/DownCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/DownCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/DownCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/DownOutlined.js +0 -32
- package/es/blocks/Icon/icons/DownSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/DownSquareOutlined.js +0 -32
- package/es/blocks/Icon/icons/DownSquareTwoTone.js +0 -32
- package/es/blocks/Icon/icons/DownloadOutlined.js +0 -32
- package/es/blocks/Icon/icons/DragOutlined.js +0 -32
- package/es/blocks/Icon/icons/DribbbleCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/DribbbleOutlined.js +0 -32
- package/es/blocks/Icon/icons/DribbbleSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/DribbbleSquareOutlined.js +0 -32
- package/es/blocks/Icon/icons/DropboxCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/DropboxOutlined.js +0 -32
- package/es/blocks/Icon/icons/DropboxSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/EditFilled.js +0 -32
- package/es/blocks/Icon/icons/EditOutlined.js +0 -32
- package/es/blocks/Icon/icons/EditTwoTone.js +0 -32
- package/es/blocks/Icon/icons/EllipsisOutlined.js +0 -32
- package/es/blocks/Icon/icons/EnterOutlined.js +0 -32
- package/es/blocks/Icon/icons/EnvironmentFilled.js +0 -32
- package/es/blocks/Icon/icons/EnvironmentOutlined.js +0 -32
- package/es/blocks/Icon/icons/EnvironmentTwoTone.js +0 -32
- package/es/blocks/Icon/icons/EuroCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/EuroCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/EuroCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/EuroOutlined.js +0 -32
- package/es/blocks/Icon/icons/EuroTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ExceptionOutlined.js +0 -32
- package/es/blocks/Icon/icons/ExclamationCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/ExclamationCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/ExclamationCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ExclamationOutlined.js +0 -32
- package/es/blocks/Icon/icons/ExpandAltOutlined.js +0 -32
- package/es/blocks/Icon/icons/ExpandOutlined.js +0 -32
- package/es/blocks/Icon/icons/ExperimentFilled.js +0 -32
- package/es/blocks/Icon/icons/ExperimentOutlined.js +0 -32
- package/es/blocks/Icon/icons/ExperimentTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ExportOutlined.js +0 -32
- package/es/blocks/Icon/icons/EyeFilled.js +0 -32
- package/es/blocks/Icon/icons/EyeInvisibleFilled.js +0 -32
- package/es/blocks/Icon/icons/EyeInvisibleOutlined.js +0 -32
- package/es/blocks/Icon/icons/EyeInvisibleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/EyeOutlined.js +0 -32
- package/es/blocks/Icon/icons/EyeTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FacebookFilled.js +0 -32
- package/es/blocks/Icon/icons/FacebookOutlined.js +0 -32
- package/es/blocks/Icon/icons/FallOutlined.js +0 -32
- package/es/blocks/Icon/icons/FastBackwardFilled.js +0 -32
- package/es/blocks/Icon/icons/FastBackwardOutlined.js +0 -32
- package/es/blocks/Icon/icons/FastForwardFilled.js +0 -32
- package/es/blocks/Icon/icons/FastForwardOutlined.js +0 -32
- package/es/blocks/Icon/icons/FieldBinaryOutlined.js +0 -32
- package/es/blocks/Icon/icons/FieldNumberOutlined.js +0 -32
- package/es/blocks/Icon/icons/FieldStringOutlined.js +0 -32
- package/es/blocks/Icon/icons/FieldTimeOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileAddFilled.js +0 -32
- package/es/blocks/Icon/icons/FileAddOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileAddTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FileDoneOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileExcelFilled.js +0 -32
- package/es/blocks/Icon/icons/FileExcelOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileExcelTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FileExclamationFilled.js +0 -32
- package/es/blocks/Icon/icons/FileExclamationOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileExclamationTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FileFilled.js +0 -32
- package/es/blocks/Icon/icons/FileGifOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileImageFilled.js +0 -32
- package/es/blocks/Icon/icons/FileImageOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileImageTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FileJpgOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileMarkdownFilled.js +0 -32
- package/es/blocks/Icon/icons/FileMarkdownOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileMarkdownTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FileOutlined.js +0 -32
- package/es/blocks/Icon/icons/FilePdfFilled.js +0 -32
- package/es/blocks/Icon/icons/FilePdfOutlined.js +0 -32
- package/es/blocks/Icon/icons/FilePdfTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FilePptFilled.js +0 -32
- package/es/blocks/Icon/icons/FilePptOutlined.js +0 -32
- package/es/blocks/Icon/icons/FilePptTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FileProtectOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileSearchOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileSyncOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileTextFilled.js +0 -32
- package/es/blocks/Icon/icons/FileTextOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileTextTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FileTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FileUnknownFilled.js +0 -32
- package/es/blocks/Icon/icons/FileUnknownOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileUnknownTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FileWordFilled.js +0 -32
- package/es/blocks/Icon/icons/FileWordOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileWordTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FileZipFilled.js +0 -32
- package/es/blocks/Icon/icons/FileZipOutlined.js +0 -32
- package/es/blocks/Icon/icons/FileZipTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FilterFilled.js +0 -32
- package/es/blocks/Icon/icons/FilterOutlined.js +0 -32
- package/es/blocks/Icon/icons/FilterTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FireFilled.js +0 -32
- package/es/blocks/Icon/icons/FireOutlined.js +0 -32
- package/es/blocks/Icon/icons/FireTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FlagFilled.js +0 -32
- package/es/blocks/Icon/icons/FlagOutlined.js +0 -32
- package/es/blocks/Icon/icons/FlagTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FolderAddFilled.js +0 -32
- package/es/blocks/Icon/icons/FolderAddOutlined.js +0 -32
- package/es/blocks/Icon/icons/FolderAddTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FolderFilled.js +0 -32
- package/es/blocks/Icon/icons/FolderOpenFilled.js +0 -32
- package/es/blocks/Icon/icons/FolderOpenOutlined.js +0 -32
- package/es/blocks/Icon/icons/FolderOpenTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FolderOutlined.js +0 -32
- package/es/blocks/Icon/icons/FolderTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FolderViewOutlined.js +0 -32
- package/es/blocks/Icon/icons/FontColorsOutlined.js +0 -32
- package/es/blocks/Icon/icons/FontSizeOutlined.js +0 -32
- package/es/blocks/Icon/icons/ForkOutlined.js +0 -32
- package/es/blocks/Icon/icons/FormOutlined.js +0 -32
- package/es/blocks/Icon/icons/FormatPainterFilled.js +0 -32
- package/es/blocks/Icon/icons/FormatPainterOutlined.js +0 -32
- package/es/blocks/Icon/icons/ForwardFilled.js +0 -32
- package/es/blocks/Icon/icons/ForwardOutlined.js +0 -32
- package/es/blocks/Icon/icons/FrownFilled.js +0 -32
- package/es/blocks/Icon/icons/FrownOutlined.js +0 -32
- package/es/blocks/Icon/icons/FrownTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FullscreenExitOutlined.js +0 -32
- package/es/blocks/Icon/icons/FullscreenOutlined.js +0 -32
- package/es/blocks/Icon/icons/FunctionOutlined.js +0 -32
- package/es/blocks/Icon/icons/FundFilled.js +0 -32
- package/es/blocks/Icon/icons/FundOutlined.js +0 -32
- package/es/blocks/Icon/icons/FundProjectionScreenOutlined.js +0 -32
- package/es/blocks/Icon/icons/FundTwoTone.js +0 -32
- package/es/blocks/Icon/icons/FundViewOutlined.js +0 -32
- package/es/blocks/Icon/icons/FunnelPlotFilled.js +0 -32
- package/es/blocks/Icon/icons/FunnelPlotOutlined.js +0 -32
- package/es/blocks/Icon/icons/FunnelPlotTwoTone.js +0 -32
- package/es/blocks/Icon/icons/GatewayOutlined.js +0 -32
- package/es/blocks/Icon/icons/GifOutlined.js +0 -32
- package/es/blocks/Icon/icons/GiftFilled.js +0 -32
- package/es/blocks/Icon/icons/GiftOutlined.js +0 -32
- package/es/blocks/Icon/icons/GiftTwoTone.js +0 -32
- package/es/blocks/Icon/icons/GithubFilled.js +0 -32
- package/es/blocks/Icon/icons/GithubOutlined.js +0 -32
- package/es/blocks/Icon/icons/GitlabFilled.js +0 -32
- package/es/blocks/Icon/icons/GitlabOutlined.js +0 -32
- package/es/blocks/Icon/icons/GlobalOutlined.js +0 -32
- package/es/blocks/Icon/icons/GoldFilled.js +0 -32
- package/es/blocks/Icon/icons/GoldOutlined.js +0 -32
- package/es/blocks/Icon/icons/GoldTwoTone.js +0 -32
- package/es/blocks/Icon/icons/GoldenFilled.js +0 -32
- package/es/blocks/Icon/icons/GoogleCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/GoogleOutlined.js +0 -32
- package/es/blocks/Icon/icons/GooglePlusCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/GooglePlusOutlined.js +0 -32
- package/es/blocks/Icon/icons/GooglePlusSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/GoogleSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/GroupOutlined.js +0 -32
- package/es/blocks/Icon/icons/HddFilled.js +0 -32
- package/es/blocks/Icon/icons/HddOutlined.js +0 -32
- package/es/blocks/Icon/icons/HddTwoTone.js +0 -32
- package/es/blocks/Icon/icons/HeartFilled.js +0 -32
- package/es/blocks/Icon/icons/HeartOutlined.js +0 -32
- package/es/blocks/Icon/icons/HeartTwoTone.js +0 -32
- package/es/blocks/Icon/icons/HeatMapOutlined.js +0 -32
- package/es/blocks/Icon/icons/HighlightFilled.js +0 -32
- package/es/blocks/Icon/icons/HighlightOutlined.js +0 -32
- package/es/blocks/Icon/icons/HighlightTwoTone.js +0 -32
- package/es/blocks/Icon/icons/HistoryOutlined.js +0 -32
- package/es/blocks/Icon/icons/HomeFilled.js +0 -32
- package/es/blocks/Icon/icons/HomeOutlined.js +0 -32
- package/es/blocks/Icon/icons/HomeTwoTone.js +0 -32
- package/es/blocks/Icon/icons/HourglassFilled.js +0 -32
- package/es/blocks/Icon/icons/HourglassOutlined.js +0 -32
- package/es/blocks/Icon/icons/HourglassTwoTone.js +0 -32
- package/es/blocks/Icon/icons/Html5Filled.js +0 -32
- package/es/blocks/Icon/icons/Html5Outlined.js +0 -32
- package/es/blocks/Icon/icons/Html5TwoTone.js +0 -32
- package/es/blocks/Icon/icons/IdcardFilled.js +0 -32
- package/es/blocks/Icon/icons/IdcardOutlined.js +0 -32
- package/es/blocks/Icon/icons/IdcardTwoTone.js +0 -32
- package/es/blocks/Icon/icons/IeCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/IeOutlined.js +0 -32
- package/es/blocks/Icon/icons/IeSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/ImportOutlined.js +0 -32
- package/es/blocks/Icon/icons/InboxOutlined.js +0 -32
- package/es/blocks/Icon/icons/InfoCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/InfoCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/InfoCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/InfoOutlined.js +0 -32
- package/es/blocks/Icon/icons/InsertRowAboveOutlined.js +0 -32
- package/es/blocks/Icon/icons/InsertRowBelowOutlined.js +0 -32
- package/es/blocks/Icon/icons/InsertRowLeftOutlined.js +0 -32
- package/es/blocks/Icon/icons/InsertRowRightOutlined.js +0 -32
- package/es/blocks/Icon/icons/InstagramFilled.js +0 -32
- package/es/blocks/Icon/icons/InstagramOutlined.js +0 -32
- package/es/blocks/Icon/icons/InsuranceFilled.js +0 -32
- package/es/blocks/Icon/icons/InsuranceOutlined.js +0 -32
- package/es/blocks/Icon/icons/InsuranceTwoTone.js +0 -32
- package/es/blocks/Icon/icons/InteractionFilled.js +0 -32
- package/es/blocks/Icon/icons/InteractionOutlined.js +0 -32
- package/es/blocks/Icon/icons/InteractionTwoTone.js +0 -32
- package/es/blocks/Icon/icons/IssuesCloseOutlined.js +0 -32
- package/es/blocks/Icon/icons/ItalicOutlined.js +0 -32
- package/es/blocks/Icon/icons/KeyOutlined.js +0 -32
- package/es/blocks/Icon/icons/LaptopOutlined.js +0 -32
- package/es/blocks/Icon/icons/LayoutFilled.js +0 -32
- package/es/blocks/Icon/icons/LayoutOutlined.js +0 -32
- package/es/blocks/Icon/icons/LayoutTwoTone.js +0 -32
- package/es/blocks/Icon/icons/LeftCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/LeftCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/LeftCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/LeftOutlined.js +0 -32
- package/es/blocks/Icon/icons/LeftSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/LeftSquareOutlined.js +0 -32
- package/es/blocks/Icon/icons/LeftSquareTwoTone.js +0 -32
- package/es/blocks/Icon/icons/LikeFilled.js +0 -32
- package/es/blocks/Icon/icons/LikeOutlined.js +0 -32
- package/es/blocks/Icon/icons/LikeTwoTone.js +0 -32
- package/es/blocks/Icon/icons/LineChartOutlined.js +0 -32
- package/es/blocks/Icon/icons/LineHeightOutlined.js +0 -32
- package/es/blocks/Icon/icons/LineOutlined.js +0 -32
- package/es/blocks/Icon/icons/LinkOutlined.js +0 -32
- package/es/blocks/Icon/icons/LinkedinFilled.js +0 -32
- package/es/blocks/Icon/icons/LinkedinOutlined.js +0 -32
- package/es/blocks/Icon/icons/Loading3QuartersOutlined.js +0 -32
- package/es/blocks/Icon/icons/LoadingOutlined.js +0 -32
- package/es/blocks/Icon/icons/LockFilled.js +0 -32
- package/es/blocks/Icon/icons/LockOutlined.js +0 -32
- package/es/blocks/Icon/icons/LockTwoTone.js +0 -32
- package/es/blocks/Icon/icons/LoginOutlined.js +0 -32
- package/es/blocks/Icon/icons/LogoutOutlined.js +0 -32
- package/es/blocks/Icon/icons/MacCommandFilled.js +0 -32
- package/es/blocks/Icon/icons/MacCommandOutlined.js +0 -32
- package/es/blocks/Icon/icons/MailFilled.js +0 -32
- package/es/blocks/Icon/icons/MailOutlined.js +0 -32
- package/es/blocks/Icon/icons/MailTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ManOutlined.js +0 -32
- package/es/blocks/Icon/icons/MedicineBoxFilled.js +0 -32
- package/es/blocks/Icon/icons/MedicineBoxOutlined.js +0 -32
- package/es/blocks/Icon/icons/MedicineBoxTwoTone.js +0 -32
- package/es/blocks/Icon/icons/MediumCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/MediumOutlined.js +0 -32
- package/es/blocks/Icon/icons/MediumSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/MediumWorkmarkOutlined.js +0 -32
- package/es/blocks/Icon/icons/MehFilled.js +0 -32
- package/es/blocks/Icon/icons/MehOutlined.js +0 -32
- package/es/blocks/Icon/icons/MehTwoTone.js +0 -32
- package/es/blocks/Icon/icons/MenuFoldOutlined.js +0 -32
- package/es/blocks/Icon/icons/MenuOutlined.js +0 -32
- package/es/blocks/Icon/icons/MenuUnfoldOutlined.js +0 -32
- package/es/blocks/Icon/icons/MergeCellsOutlined.js +0 -32
- package/es/blocks/Icon/icons/MessageFilled.js +0 -32
- package/es/blocks/Icon/icons/MessageOutlined.js +0 -32
- package/es/blocks/Icon/icons/MessageTwoTone.js +0 -32
- package/es/blocks/Icon/icons/MinusCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/MinusCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/MinusCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/MinusOutlined.js +0 -32
- package/es/blocks/Icon/icons/MinusSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/MinusSquareOutlined.js +0 -32
- package/es/blocks/Icon/icons/MinusSquareTwoTone.js +0 -32
- package/es/blocks/Icon/icons/MobileFilled.js +0 -32
- package/es/blocks/Icon/icons/MobileOutlined.js +0 -32
- package/es/blocks/Icon/icons/MobileTwoTone.js +0 -32
- package/es/blocks/Icon/icons/MoneyCollectFilled.js +0 -32
- package/es/blocks/Icon/icons/MoneyCollectOutlined.js +0 -32
- package/es/blocks/Icon/icons/MoneyCollectTwoTone.js +0 -32
- package/es/blocks/Icon/icons/MonitorOutlined.js +0 -32
- package/es/blocks/Icon/icons/MoreOutlined.js +0 -32
- package/es/blocks/Icon/icons/NodeCollapseOutlined.js +0 -32
- package/es/blocks/Icon/icons/NodeExpandOutlined.js +0 -32
- package/es/blocks/Icon/icons/NodeIndexOutlined.js +0 -32
- package/es/blocks/Icon/icons/NotificationFilled.js +0 -32
- package/es/blocks/Icon/icons/NotificationOutlined.js +0 -32
- package/es/blocks/Icon/icons/NotificationTwoTone.js +0 -32
- package/es/blocks/Icon/icons/NumberOutlined.js +0 -32
- package/es/blocks/Icon/icons/OneToOneOutlined.js +0 -32
- package/es/blocks/Icon/icons/OrderedListOutlined.js +0 -32
- package/es/blocks/Icon/icons/PaperClipOutlined.js +0 -32
- package/es/blocks/Icon/icons/PartitionOutlined.js +0 -32
- package/es/blocks/Icon/icons/PauseCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/PauseCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/PauseCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/PauseOutlined.js +0 -32
- package/es/blocks/Icon/icons/PayCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/PayCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/PercentageOutlined.js +0 -32
- package/es/blocks/Icon/icons/PhoneFilled.js +0 -32
- package/es/blocks/Icon/icons/PhoneOutlined.js +0 -32
- package/es/blocks/Icon/icons/PhoneTwoTone.js +0 -32
- package/es/blocks/Icon/icons/PicCenterOutlined.js +0 -32
- package/es/blocks/Icon/icons/PicLeftOutlined.js +0 -32
- package/es/blocks/Icon/icons/PicRightOutlined.js +0 -32
- package/es/blocks/Icon/icons/PictureFilled.js +0 -32
- package/es/blocks/Icon/icons/PictureOutlined.js +0 -32
- package/es/blocks/Icon/icons/PictureTwoTone.js +0 -32
- package/es/blocks/Icon/icons/PieChartFilled.js +0 -32
- package/es/blocks/Icon/icons/PieChartOutlined.js +0 -32
- package/es/blocks/Icon/icons/PieChartTwoTone.js +0 -32
- package/es/blocks/Icon/icons/PlayCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/PlayCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/PlayCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/PlaySquareFilled.js +0 -32
- package/es/blocks/Icon/icons/PlaySquareOutlined.js +0 -32
- package/es/blocks/Icon/icons/PlaySquareTwoTone.js +0 -32
- package/es/blocks/Icon/icons/PlusCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/PlusCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/PlusCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/PlusOutlined.js +0 -32
- package/es/blocks/Icon/icons/PlusSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/PlusSquareOutlined.js +0 -32
- package/es/blocks/Icon/icons/PlusSquareTwoTone.js +0 -32
- package/es/blocks/Icon/icons/PoundCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/PoundCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/PoundCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/PoundOutlined.js +0 -32
- package/es/blocks/Icon/icons/PoweroffOutlined.js +0 -32
- package/es/blocks/Icon/icons/PrinterFilled.js +0 -32
- package/es/blocks/Icon/icons/PrinterOutlined.js +0 -32
- package/es/blocks/Icon/icons/PrinterTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ProfileFilled.js +0 -32
- package/es/blocks/Icon/icons/ProfileOutlined.js +0 -32
- package/es/blocks/Icon/icons/ProfileTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ProjectFilled.js +0 -32
- package/es/blocks/Icon/icons/ProjectOutlined.js +0 -32
- package/es/blocks/Icon/icons/ProjectTwoTone.js +0 -32
- package/es/blocks/Icon/icons/PropertySafetyFilled.js +0 -32
- package/es/blocks/Icon/icons/PropertySafetyOutlined.js +0 -32
- package/es/blocks/Icon/icons/PropertySafetyTwoTone.js +0 -32
- package/es/blocks/Icon/icons/PullRequestOutlined.js +0 -32
- package/es/blocks/Icon/icons/PushpinFilled.js +0 -32
- package/es/blocks/Icon/icons/PushpinOutlined.js +0 -32
- package/es/blocks/Icon/icons/PushpinTwoTone.js +0 -32
- package/es/blocks/Icon/icons/QqCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/QqOutlined.js +0 -32
- package/es/blocks/Icon/icons/QqSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/QrcodeOutlined.js +0 -32
- package/es/blocks/Icon/icons/QuestionCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/QuestionCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/QuestionCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/QuestionOutlined.js +0 -32
- package/es/blocks/Icon/icons/RadarChartOutlined.js +0 -32
- package/es/blocks/Icon/icons/RadiusBottomleftOutlined.js +0 -32
- package/es/blocks/Icon/icons/RadiusBottomrightOutlined.js +0 -32
- package/es/blocks/Icon/icons/RadiusSettingOutlined.js +0 -32
- package/es/blocks/Icon/icons/RadiusUpleftOutlined.js +0 -32
- package/es/blocks/Icon/icons/RadiusUprightOutlined.js +0 -32
- package/es/blocks/Icon/icons/ReadFilled.js +0 -32
- package/es/blocks/Icon/icons/ReadOutlined.js +0 -32
- package/es/blocks/Icon/icons/ReconciliationFilled.js +0 -32
- package/es/blocks/Icon/icons/ReconciliationOutlined.js +0 -32
- package/es/blocks/Icon/icons/ReconciliationTwoTone.js +0 -32
- package/es/blocks/Icon/icons/RedEnvelopeFilled.js +0 -32
- package/es/blocks/Icon/icons/RedEnvelopeOutlined.js +0 -32
- package/es/blocks/Icon/icons/RedEnvelopeTwoTone.js +0 -32
- package/es/blocks/Icon/icons/RedditCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/RedditOutlined.js +0 -32
- package/es/blocks/Icon/icons/RedditSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/RedoOutlined.js +0 -32
- package/es/blocks/Icon/icons/ReloadOutlined.js +0 -32
- package/es/blocks/Icon/icons/RestFilled.js +0 -32
- package/es/blocks/Icon/icons/RestOutlined.js +0 -32
- package/es/blocks/Icon/icons/RestTwoTone.js +0 -32
- package/es/blocks/Icon/icons/RetweetOutlined.js +0 -32
- package/es/blocks/Icon/icons/RightCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/RightCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/RightCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/RightOutlined.js +0 -32
- package/es/blocks/Icon/icons/RightSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/RightSquareOutlined.js +0 -32
- package/es/blocks/Icon/icons/RightSquareTwoTone.js +0 -32
- package/es/blocks/Icon/icons/RiseOutlined.js +0 -32
- package/es/blocks/Icon/icons/RobotFilled.js +0 -32
- package/es/blocks/Icon/icons/RobotOutlined.js +0 -32
- package/es/blocks/Icon/icons/RocketFilled.js +0 -32
- package/es/blocks/Icon/icons/RocketOutlined.js +0 -32
- package/es/blocks/Icon/icons/RocketTwoTone.js +0 -32
- package/es/blocks/Icon/icons/RollbackOutlined.js +0 -32
- package/es/blocks/Icon/icons/RotateLeftOutlined.js +0 -32
- package/es/blocks/Icon/icons/RotateRightOutlined.js +0 -32
- package/es/blocks/Icon/icons/SafetyCertificateFilled.js +0 -32
- package/es/blocks/Icon/icons/SafetyCertificateOutlined.js +0 -32
- package/es/blocks/Icon/icons/SafetyCertificateTwoTone.js +0 -32
- package/es/blocks/Icon/icons/SafetyOutlined.js +0 -32
- package/es/blocks/Icon/icons/SaveFilled.js +0 -32
- package/es/blocks/Icon/icons/SaveOutlined.js +0 -32
- package/es/blocks/Icon/icons/SaveTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ScanOutlined.js +0 -32
- package/es/blocks/Icon/icons/ScheduleFilled.js +0 -32
- package/es/blocks/Icon/icons/ScheduleOutlined.js +0 -32
- package/es/blocks/Icon/icons/ScheduleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ScissorOutlined.js +0 -32
- package/es/blocks/Icon/icons/SearchOutlined.js +0 -32
- package/es/blocks/Icon/icons/SecurityScanFilled.js +0 -32
- package/es/blocks/Icon/icons/SecurityScanOutlined.js +0 -32
- package/es/blocks/Icon/icons/SecurityScanTwoTone.js +0 -32
- package/es/blocks/Icon/icons/SelectOutlined.js +0 -32
- package/es/blocks/Icon/icons/SendOutlined.js +0 -32
- package/es/blocks/Icon/icons/SettingFilled.js +0 -32
- package/es/blocks/Icon/icons/SettingOutlined.js +0 -32
- package/es/blocks/Icon/icons/SettingTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ShakeOutlined.js +0 -32
- package/es/blocks/Icon/icons/ShareAltOutlined.js +0 -32
- package/es/blocks/Icon/icons/ShopFilled.js +0 -32
- package/es/blocks/Icon/icons/ShopOutlined.js +0 -32
- package/es/blocks/Icon/icons/ShopTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ShoppingCartOutlined.js +0 -32
- package/es/blocks/Icon/icons/ShoppingFilled.js +0 -32
- package/es/blocks/Icon/icons/ShoppingOutlined.js +0 -32
- package/es/blocks/Icon/icons/ShoppingTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ShrinkOutlined.js +0 -32
- package/es/blocks/Icon/icons/SignalFilled.js +0 -32
- package/es/blocks/Icon/icons/SisternodeOutlined.js +0 -32
- package/es/blocks/Icon/icons/SketchCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/SketchOutlined.js +0 -32
- package/es/blocks/Icon/icons/SketchSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/SkinFilled.js +0 -32
- package/es/blocks/Icon/icons/SkinOutlined.js +0 -32
- package/es/blocks/Icon/icons/SkinTwoTone.js +0 -32
- package/es/blocks/Icon/icons/SkypeFilled.js +0 -32
- package/es/blocks/Icon/icons/SkypeOutlined.js +0 -32
- package/es/blocks/Icon/icons/SlackCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/SlackOutlined.js +0 -32
- package/es/blocks/Icon/icons/SlackSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/SlackSquareOutlined.js +0 -32
- package/es/blocks/Icon/icons/SlidersFilled.js +0 -32
- package/es/blocks/Icon/icons/SlidersOutlined.js +0 -32
- package/es/blocks/Icon/icons/SlidersTwoTone.js +0 -32
- package/es/blocks/Icon/icons/SmallDashOutlined.js +0 -32
- package/es/blocks/Icon/icons/SmileFilled.js +0 -32
- package/es/blocks/Icon/icons/SmileOutlined.js +0 -32
- package/es/blocks/Icon/icons/SmileTwoTone.js +0 -32
- package/es/blocks/Icon/icons/SnippetsFilled.js +0 -32
- package/es/blocks/Icon/icons/SnippetsOutlined.js +0 -32
- package/es/blocks/Icon/icons/SnippetsTwoTone.js +0 -32
- package/es/blocks/Icon/icons/SolutionOutlined.js +0 -32
- package/es/blocks/Icon/icons/SortAscendingOutlined.js +0 -32
- package/es/blocks/Icon/icons/SortDescendingOutlined.js +0 -32
- package/es/blocks/Icon/icons/SoundFilled.js +0 -32
- package/es/blocks/Icon/icons/SoundOutlined.js +0 -32
- package/es/blocks/Icon/icons/SoundTwoTone.js +0 -32
- package/es/blocks/Icon/icons/SplitCellsOutlined.js +0 -32
- package/es/blocks/Icon/icons/StarFilled.js +0 -32
- package/es/blocks/Icon/icons/StarOutlined.js +0 -32
- package/es/blocks/Icon/icons/StarTwoTone.js +0 -32
- package/es/blocks/Icon/icons/StepBackwardFilled.js +0 -32
- package/es/blocks/Icon/icons/StepBackwardOutlined.js +0 -32
- package/es/blocks/Icon/icons/StepForwardFilled.js +0 -32
- package/es/blocks/Icon/icons/StepForwardOutlined.js +0 -32
- package/es/blocks/Icon/icons/StockOutlined.js +0 -32
- package/es/blocks/Icon/icons/StopFilled.js +0 -32
- package/es/blocks/Icon/icons/StopOutlined.js +0 -32
- package/es/blocks/Icon/icons/StopTwoTone.js +0 -32
- package/es/blocks/Icon/icons/StrikethroughOutlined.js +0 -32
- package/es/blocks/Icon/icons/SubnodeOutlined.js +0 -32
- package/es/blocks/Icon/icons/SwapLeftOutlined.js +0 -32
- package/es/blocks/Icon/icons/SwapOutlined.js +0 -32
- package/es/blocks/Icon/icons/SwapRightOutlined.js +0 -32
- package/es/blocks/Icon/icons/SwitcherFilled.js +0 -32
- package/es/blocks/Icon/icons/SwitcherOutlined.js +0 -32
- package/es/blocks/Icon/icons/SwitcherTwoTone.js +0 -32
- package/es/blocks/Icon/icons/SyncOutlined.js +0 -32
- package/es/blocks/Icon/icons/TableOutlined.js +0 -32
- package/es/blocks/Icon/icons/TabletFilled.js +0 -32
- package/es/blocks/Icon/icons/TabletOutlined.js +0 -32
- package/es/blocks/Icon/icons/TabletTwoTone.js +0 -32
- package/es/blocks/Icon/icons/TagFilled.js +0 -32
- package/es/blocks/Icon/icons/TagOutlined.js +0 -32
- package/es/blocks/Icon/icons/TagTwoTone.js +0 -32
- package/es/blocks/Icon/icons/TagsFilled.js +0 -32
- package/es/blocks/Icon/icons/TagsOutlined.js +0 -32
- package/es/blocks/Icon/icons/TagsTwoTone.js +0 -32
- package/es/blocks/Icon/icons/TaobaoCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/TaobaoCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/TaobaoOutlined.js +0 -32
- package/es/blocks/Icon/icons/TaobaoSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/TeamOutlined.js +0 -32
- package/es/blocks/Icon/icons/ThunderboltFilled.js +0 -32
- package/es/blocks/Icon/icons/ThunderboltOutlined.js +0 -32
- package/es/blocks/Icon/icons/ThunderboltTwoTone.js +0 -32
- package/es/blocks/Icon/icons/ToTopOutlined.js +0 -32
- package/es/blocks/Icon/icons/ToolFilled.js +0 -32
- package/es/blocks/Icon/icons/ToolOutlined.js +0 -32
- package/es/blocks/Icon/icons/ToolTwoTone.js +0 -32
- package/es/blocks/Icon/icons/TrademarkCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/TrademarkCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/TrademarkCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/TrademarkOutlined.js +0 -32
- package/es/blocks/Icon/icons/TransactionOutlined.js +0 -32
- package/es/blocks/Icon/icons/TranslationOutlined.js +0 -32
- package/es/blocks/Icon/icons/TrophyFilled.js +0 -32
- package/es/blocks/Icon/icons/TrophyOutlined.js +0 -32
- package/es/blocks/Icon/icons/TrophyTwoTone.js +0 -32
- package/es/blocks/Icon/icons/TwitterCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/TwitterOutlined.js +0 -32
- package/es/blocks/Icon/icons/TwitterSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/UnderlineOutlined.js +0 -32
- package/es/blocks/Icon/icons/UndoOutlined.js +0 -32
- package/es/blocks/Icon/icons/UngroupOutlined.js +0 -32
- package/es/blocks/Icon/icons/UnlockFilled.js +0 -32
- package/es/blocks/Icon/icons/UnlockOutlined.js +0 -32
- package/es/blocks/Icon/icons/UnlockTwoTone.js +0 -32
- package/es/blocks/Icon/icons/UnorderedListOutlined.js +0 -32
- package/es/blocks/Icon/icons/UpCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/UpCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/UpCircleTwoTone.js +0 -32
- package/es/blocks/Icon/icons/UpOutlined.js +0 -32
- package/es/blocks/Icon/icons/UpSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/UpSquareOutlined.js +0 -32
- package/es/blocks/Icon/icons/UpSquareTwoTone.js +0 -32
- package/es/blocks/Icon/icons/UploadOutlined.js +0 -32
- package/es/blocks/Icon/icons/UsbFilled.js +0 -32
- package/es/blocks/Icon/icons/UsbOutlined.js +0 -32
- package/es/blocks/Icon/icons/UsbTwoTone.js +0 -32
- package/es/blocks/Icon/icons/UserAddOutlined.js +0 -32
- package/es/blocks/Icon/icons/UserDeleteOutlined.js +0 -32
- package/es/blocks/Icon/icons/UserOutlined.js +0 -32
- package/es/blocks/Icon/icons/UserSwitchOutlined.js +0 -32
- package/es/blocks/Icon/icons/UsergroupAddOutlined.js +0 -32
- package/es/blocks/Icon/icons/UsergroupDeleteOutlined.js +0 -32
- package/es/blocks/Icon/icons/VerifiedOutlined.js +0 -32
- package/es/blocks/Icon/icons/VerticalAlignBottomOutlined.js +0 -32
- package/es/blocks/Icon/icons/VerticalAlignMiddleOutlined.js +0 -32
- package/es/blocks/Icon/icons/VerticalAlignTopOutlined.js +0 -32
- package/es/blocks/Icon/icons/VerticalLeftOutlined.js +0 -32
- package/es/blocks/Icon/icons/VerticalRightOutlined.js +0 -32
- package/es/blocks/Icon/icons/VideoCameraAddOutlined.js +0 -32
- package/es/blocks/Icon/icons/VideoCameraFilled.js +0 -32
- package/es/blocks/Icon/icons/VideoCameraOutlined.js +0 -32
- package/es/blocks/Icon/icons/VideoCameraTwoTone.js +0 -32
- package/es/blocks/Icon/icons/WalletFilled.js +0 -32
- package/es/blocks/Icon/icons/WalletOutlined.js +0 -32
- package/es/blocks/Icon/icons/WalletTwoTone.js +0 -32
- package/es/blocks/Icon/icons/WarningFilled.js +0 -32
- package/es/blocks/Icon/icons/WarningOutlined.js +0 -32
- package/es/blocks/Icon/icons/WarningTwoTone.js +0 -32
- package/es/blocks/Icon/icons/WechatFilled.js +0 -32
- package/es/blocks/Icon/icons/WechatOutlined.js +0 -32
- package/es/blocks/Icon/icons/WeiboCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/WeiboCircleOutlined.js +0 -32
- package/es/blocks/Icon/icons/WeiboOutlined.js +0 -32
- package/es/blocks/Icon/icons/WeiboSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/WeiboSquareOutlined.js +0 -32
- package/es/blocks/Icon/icons/WhatsAppOutlined.js +0 -32
- package/es/blocks/Icon/icons/WifiOutlined.js +0 -32
- package/es/blocks/Icon/icons/WindowsFilled.js +0 -32
- package/es/blocks/Icon/icons/WindowsOutlined.js +0 -32
- package/es/blocks/Icon/icons/WomanOutlined.js +0 -32
- package/es/blocks/Icon/icons/YahooFilled.js +0 -32
- package/es/blocks/Icon/icons/YahooOutlined.js +0 -32
- package/es/blocks/Icon/icons/YoutubeFilled.js +0 -32
- package/es/blocks/Icon/icons/YoutubeOutlined.js +0 -32
- package/es/blocks/Icon/icons/YuqueFilled.js +0 -32
- package/es/blocks/Icon/icons/YuqueOutlined.js +0 -32
- package/es/blocks/Icon/icons/ZhihuCircleFilled.js +0 -32
- package/es/blocks/Icon/icons/ZhihuOutlined.js +0 -32
- package/es/blocks/Icon/icons/ZhihuSquareFilled.js +0 -32
- package/es/blocks/Icon/icons/ZoomInOutlined.js +0 -32
- package/es/blocks/Icon/icons/ZoomOutOutlined.js +0 -32
- package/es/blocks/Label/Label.js +0 -119
- package/es/blocks/Label/Label.json +0 -71
- package/es/blocks/Label/getLabelCol.js +0 -74
- package/es/blocks/Label/getLabelCol.test.js +0 -240
- package/es/blocks/Label/getWrapperCol.js +0 -88
- package/es/blocks/Label/getWrapperCol.test.js +0 -240
- package/es/blocks/Label/labelLogic.js +0 -117
- package/es/blocks/Label/labelLogic.test.js +0 -840
- package/es/blocks/Label/style.css +0 -12
- package/es/blocks/Layout/Layout.js +0 -48
- package/es/blocks/Layout/Layout.json +0 -24
- package/es/blocks/Menu/Menu.js +0 -267
- package/es/blocks/Menu/Menu.json +0 -231
- package/es/blocks/Message/Message.js +0 -77
- package/es/blocks/Message/Message.json +0 -78
- package/es/blocks/MobileMenu/MobileMenu.js +0 -141
- package/es/blocks/MobileMenu/MobileMenu.json +0 -252
- package/es/blocks/Modal/Modal.js +0 -152
- package/es/blocks/Modal/Modal.json +0 -135
- package/es/blocks/MonthSelector/MonthSelector.js +0 -96
- package/es/blocks/MonthSelector/MonthSelector.json +0 -188
- package/es/blocks/MultipleSelector/MultipleSelector.js +0 -165
- package/es/blocks/MultipleSelector/MultipleSelector.json +0 -244
- package/es/blocks/Notification/Notification.js +0 -103
- package/es/blocks/Notification/Notification.json +0 -120
- package/es/blocks/NumberInput/NumberInput.js +0 -82
- package/es/blocks/NumberInput/NumberInput.json +0 -145
- package/es/blocks/PageHCF/PageHCF.js +0 -84
- package/es/blocks/PageHCF/PageHCF.json +0 -101
- package/es/blocks/PageHCSF/PageHCSF.js +0 -111
- package/es/blocks/PageHCSF/PageHCSF.json +0 -200
- package/es/blocks/PageHSCF/PageHSCF.js +0 -111
- package/es/blocks/PageHSCF/PageHSCF.json +0 -199
- package/es/blocks/PageHeaderMenu/PageHeaderMenu.js +0 -256
- package/es/blocks/PageHeaderMenu/PageHeaderMenu.json +0 -260
- package/es/blocks/PageSHCF/PageSHCF.js +0 -111
- package/es/blocks/PageSHCF/PageSHCF.json +0 -200
- package/es/blocks/PageSiderMenu/PageSiderMenu.js +0 -357
- package/es/blocks/PageSiderMenu/PageSiderMenu.json +0 -345
- package/es/blocks/Pagination/Pagination.js +0 -121
- package/es/blocks/Pagination/Pagination.json +0 -89
- package/es/blocks/Paragraph/Paragraph.js +0 -120
- package/es/blocks/Paragraph/Paragraph.json +0 -131
- package/es/blocks/ParagraphInput/ParagraphInput.js +0 -135
- package/es/blocks/ParagraphInput/ParagraphInput.json +0 -170
- package/es/blocks/PasswordInput/PasswordInput.js +0 -84
- package/es/blocks/PasswordInput/PasswordInput.json +0 -123
- package/es/blocks/Progress/Progress.js +0 -58
- package/es/blocks/Progress/Progress.json +0 -84
- package/es/blocks/RadioSelector/RadioSelector.js +0 -101
- package/es/blocks/RadioSelector/RadioSelector.json +0 -183
- package/es/blocks/RatingSlider/RatingSlider.js +0 -228
- package/es/blocks/RatingSlider/RatingSlider.json +0 -179
- package/es/blocks/Result/Result.js +0 -69
- package/es/blocks/Result/Result.json +0 -38
- package/es/blocks/S3UploadButton/S3UploadButton.js +0 -243
- package/es/blocks/S3UploadButton/S3UploadButton.json +0 -89
- package/es/blocks/Selector/Selector.js +0 -158
- package/es/blocks/Selector/Selector.json +0 -241
- package/es/blocks/Sider/Sider.js +0 -124
- package/es/blocks/Sider/Sider.json +0 -95
- package/es/blocks/Skeleton/Skeleton.js +0 -87
- package/es/blocks/Skeleton/Skeleton.json +0 -137
- package/es/blocks/Spin/Spin.js +0 -58
- package/es/blocks/Spin/Spin.json +0 -45
- package/es/blocks/Statistic/Statistic.js +0 -71
- package/es/blocks/Statistic/Statistic.json +0 -77
- package/es/blocks/Switch/Switch.js +0 -108
- package/es/blocks/Switch/Switch.json +0 -146
- package/es/blocks/Tabs/Tabs.js +0 -122
- package/es/blocks/Tabs/Tabs.json +0 -105
- package/es/blocks/TextArea/TextArea.js +0 -94
- package/es/blocks/TextArea/TextArea.json +0 -151
- package/es/blocks/TextInput/TextInput.js +0 -97
- package/es/blocks/TextInput/TextInput.json +0 -150
- package/es/blocks/TimelineList/TimelineList.js +0 -92
- package/es/blocks/TimelineList/TimelineList.json +0 -70
- package/es/blocks/Title/Title.js +0 -122
- package/es/blocks/Title/Title.json +0 -139
- package/es/blocks/TitleInput/TitleInput.js +0 -129
- package/es/blocks/TitleInput/TitleInput.json +0 -180
- package/es/blocks/Tooltip/Tooltip.js +0 -68
- package/es/blocks/Tooltip/Tooltip.json +0 -99
- package/es/blocks/WeekSelector/WeekSelector.js +0 -96
- package/es/blocks/WeekSelector/WeekSelector.json +0 -188
- package/es/disabledDate.js +0 -58
- package/es/disabledDate.test.js +0 -105
- package/es/getUniqueValues.js +0 -44
- package/es/getUniqueValues.test.js +0 -260
- package/es/getValueIndex.js +0 -58
- package/es/getValueIndex.test.js +0 -294
- package/es/index.js +0 -612
- package/es/useRunAfterUpdate.js +0 -28
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2020-2022 Lowdefy, Inc
|
|
3
|
+
|
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
you may not use this file except in compliance with the License.
|
|
6
|
+
You may obtain a copy of the License at
|
|
7
|
+
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
|
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
See the License for the specific language governing permissions and
|
|
14
|
+
limitations under the License.
|
|
15
|
+
*/ import React from 'react';
|
|
16
|
+
import { Affix } from 'antd';
|
|
17
|
+
import { get } from '@lowdefy/helpers';
|
|
18
|
+
import { blockDefaultProps } from '@lowdefy/block-utils';
|
|
19
|
+
const AffixBlock = ({ blockId , content , methods , properties , rename })=>/*#__PURE__*/ React.createElement(Affix, {
|
|
20
|
+
id: blockId,
|
|
21
|
+
className: methods.makeCssClass(properties.style),
|
|
22
|
+
offsetBottom: properties.offsetBottom,
|
|
23
|
+
offsetTop: properties.offsetTop,
|
|
24
|
+
onChange: (affixed)=>{
|
|
25
|
+
methods.triggerEvent({
|
|
26
|
+
name: get(rename, 'events.onChange', {
|
|
27
|
+
default: 'onChange'
|
|
28
|
+
}),
|
|
29
|
+
event: {
|
|
30
|
+
affixed
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
}, content.content && content.content())
|
|
35
|
+
;
|
|
36
|
+
AffixBlock.defaultProps = blockDefaultProps;
|
|
37
|
+
AffixBlock.meta = {
|
|
38
|
+
category: 'container',
|
|
39
|
+
icons: [],
|
|
40
|
+
styles: [
|
|
41
|
+
'blocks/Affix/style.less'
|
|
42
|
+
]
|
|
43
|
+
};
|
|
44
|
+
export default AffixBlock;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"type": "object",
|
|
5
|
+
"additionalProperties": false,
|
|
6
|
+
"properties": {
|
|
7
|
+
"offsetBottom": {
|
|
8
|
+
"type": "number",
|
|
9
|
+
"description": "Offset from the bottom of the viewport (in pixels)."
|
|
10
|
+
},
|
|
11
|
+
"offsetTop": {
|
|
12
|
+
"type": "number",
|
|
13
|
+
"description": "Offset from the top of the viewport (in pixels)."
|
|
14
|
+
},
|
|
15
|
+
"style": {
|
|
16
|
+
"type": "object",
|
|
17
|
+
"description": "Css style object to applied to affix.",
|
|
18
|
+
"docs": {
|
|
19
|
+
"displayType": "yaml"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"events": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"additionalProperties": false,
|
|
27
|
+
"properties": {
|
|
28
|
+
"onChange": {
|
|
29
|
+
"type": "array",
|
|
30
|
+
"description": "Triggered when container affix status changes."
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2020-2022 Lowdefy, Inc
|
|
3
|
+
|
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
you may not use this file except in compliance with the License.
|
|
6
|
+
You may obtain a copy of the License at
|
|
7
|
+
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
|
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
See the License for the specific language governing permissions and
|
|
14
|
+
limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
@import 'antd/lib/affix/style/index.less';
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2020-2022 Lowdefy, Inc
|
|
3
|
+
|
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
you may not use this file except in compliance with the License.
|
|
6
|
+
You may obtain a copy of the License at
|
|
7
|
+
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
|
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
See the License for the specific language governing permissions and
|
|
14
|
+
limitations under the License.
|
|
15
|
+
*/ import React from 'react';
|
|
16
|
+
import { Alert } from 'antd';
|
|
17
|
+
import { blockDefaultProps, renderHtml } from '@lowdefy/block-utils';
|
|
18
|
+
import { type } from '@lowdefy/helpers';
|
|
19
|
+
function _extends() {
|
|
20
|
+
_extends = Object.assign || function(target) {
|
|
21
|
+
for(var i = 1; i < arguments.length; i++){
|
|
22
|
+
var source = arguments[i];
|
|
23
|
+
for(var key in source){
|
|
24
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
25
|
+
target[key] = source[key];
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
return target;
|
|
30
|
+
};
|
|
31
|
+
return _extends.apply(this, arguments);
|
|
32
|
+
}
|
|
33
|
+
const AlertBlock = ({ blockId , content , events , components: { Icon } , methods , properties })=>{
|
|
34
|
+
const additionalProps = {};
|
|
35
|
+
if (properties.icon) {
|
|
36
|
+
additionalProps.icon = /*#__PURE__*/ React.createElement(Icon, {
|
|
37
|
+
blockId: `${blockId}_icon`,
|
|
38
|
+
events: events,
|
|
39
|
+
properties: properties.icon
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
return(/*#__PURE__*/ React.createElement(Alert, _extends({
|
|
43
|
+
action: content.action && content.action(),
|
|
44
|
+
afterClose: ()=>methods.triggerEvent({
|
|
45
|
+
name: 'afterClose'
|
|
46
|
+
})
|
|
47
|
+
,
|
|
48
|
+
banner: properties.banner,
|
|
49
|
+
closable: properties.closable,
|
|
50
|
+
closeText: properties.closeText,
|
|
51
|
+
description: renderHtml({
|
|
52
|
+
html: properties.description,
|
|
53
|
+
methods
|
|
54
|
+
}),
|
|
55
|
+
id: blockId,
|
|
56
|
+
message: type.isNone(properties.message) ? /*#__PURE__*/ React.createElement("div", {
|
|
57
|
+
style: {
|
|
58
|
+
marginBottom: -4
|
|
59
|
+
}
|
|
60
|
+
}) : renderHtml({
|
|
61
|
+
html: properties.message,
|
|
62
|
+
methods
|
|
63
|
+
}),
|
|
64
|
+
onClose: ()=>methods.triggerEvent({
|
|
65
|
+
name: 'onClose'
|
|
66
|
+
})
|
|
67
|
+
,
|
|
68
|
+
showIcon: properties.showIcon === false ? false : true,
|
|
69
|
+
type: properties.type
|
|
70
|
+
}, additionalProps)));
|
|
71
|
+
};
|
|
72
|
+
AlertBlock.defaultProps = blockDefaultProps;
|
|
73
|
+
AlertBlock.meta = {
|
|
74
|
+
category: 'container',
|
|
75
|
+
icons: [],
|
|
76
|
+
styles: [
|
|
77
|
+
'blocks/Alert/style.less'
|
|
78
|
+
]
|
|
79
|
+
};
|
|
80
|
+
export default AlertBlock;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"properties": {
|
|
3
|
+
"type": "object",
|
|
4
|
+
"additionalProperties": false,
|
|
5
|
+
"properties": {
|
|
6
|
+
"banner": {
|
|
7
|
+
"type": "boolean",
|
|
8
|
+
"default": false,
|
|
9
|
+
"description": "Style as banner at top of application window."
|
|
10
|
+
},
|
|
11
|
+
"closable": {
|
|
12
|
+
"type": "boolean",
|
|
13
|
+
"default": false,
|
|
14
|
+
"description": "Allow alert to be closed."
|
|
15
|
+
},
|
|
16
|
+
"closeText": {
|
|
17
|
+
"type": "string",
|
|
18
|
+
"description": "Close text to show."
|
|
19
|
+
},
|
|
20
|
+
"description": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"description": "Content description of alert - supports html."
|
|
23
|
+
},
|
|
24
|
+
"icon": {
|
|
25
|
+
"type": ["string", "object"],
|
|
26
|
+
"description": "Name of an Ant Design Icon or properties of an Icon block to customize alert icon.",
|
|
27
|
+
"docs": {
|
|
28
|
+
"displayType": "icon"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"message": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"description": "Content message of alert - supports html."
|
|
34
|
+
},
|
|
35
|
+
"showIcon": {
|
|
36
|
+
"type": "boolean",
|
|
37
|
+
"default": true,
|
|
38
|
+
"description": "Show type default icon."
|
|
39
|
+
},
|
|
40
|
+
"type": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"enum": ["success", "info", "warning", "error"],
|
|
43
|
+
"default": "info",
|
|
44
|
+
"description": "Alert style type."
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"events": {
|
|
49
|
+
"type": "object",
|
|
50
|
+
"additionalProperties": false,
|
|
51
|
+
"properties": {
|
|
52
|
+
"onClose": {
|
|
53
|
+
"type": "array",
|
|
54
|
+
"description": "Called when Alert close button is clicked."
|
|
55
|
+
},
|
|
56
|
+
"afterClose": {
|
|
57
|
+
"type": "array",
|
|
58
|
+
"description": "Called after Alert has been closed."
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2020-2022 Lowdefy, Inc
|
|
3
|
+
|
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
you may not use this file except in compliance with the License.
|
|
6
|
+
You may obtain a copy of the License at
|
|
7
|
+
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
|
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
See the License for the specific language governing permissions and
|
|
14
|
+
limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
@import 'antd/lib/alert/style/index.less';
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2020-2022 Lowdefy, Inc
|
|
3
|
+
|
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
you may not use this file except in compliance with the License.
|
|
6
|
+
You may obtain a copy of the License at
|
|
7
|
+
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
|
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
See the License for the specific language governing permissions and
|
|
14
|
+
limitations under the License.
|
|
15
|
+
*/ import React from 'react';
|
|
16
|
+
import { AutoComplete } from 'antd';
|
|
17
|
+
import { blockDefaultProps, renderHtml } from '@lowdefy/block-utils';
|
|
18
|
+
import { type } from '@lowdefy/helpers';
|
|
19
|
+
import Label from '../Label/Label.js';
|
|
20
|
+
import getUniqueValues from '../../getUniqueValues.js';
|
|
21
|
+
const Option = AutoComplete.Option;
|
|
22
|
+
const AutoCompleteInput = ({ blockId , components , events , loading , methods , properties , required , validation , value , })=>{
|
|
23
|
+
const uniqueValueOptions = getUniqueValues(properties.options || []);
|
|
24
|
+
return(/*#__PURE__*/ React.createElement(Label, {
|
|
25
|
+
blockId: blockId,
|
|
26
|
+
components: components,
|
|
27
|
+
events: events,
|
|
28
|
+
properties: {
|
|
29
|
+
title: properties.title,
|
|
30
|
+
size: properties.size,
|
|
31
|
+
...properties.label
|
|
32
|
+
},
|
|
33
|
+
validation: validation,
|
|
34
|
+
required: required,
|
|
35
|
+
content: {
|
|
36
|
+
content: ()=>/*#__PURE__*/ React.createElement(AutoComplete, {
|
|
37
|
+
id: `${blockId}_input`,
|
|
38
|
+
autoFocus: properties.autoFocus,
|
|
39
|
+
backfill: properties.backfill,
|
|
40
|
+
bordered: properties.bordered,
|
|
41
|
+
className: methods.makeCssClass(properties.inputStyle),
|
|
42
|
+
defaultOpen: properties.defaultOpen,
|
|
43
|
+
disabled: properties.disabled || loading,
|
|
44
|
+
placeholder: properties.placeholder || 'Type or select item',
|
|
45
|
+
allowClear: properties.allowClear !== false,
|
|
46
|
+
size: properties.size,
|
|
47
|
+
filterOption: (input, option)=>(option.filterstring || option.children.props.html || '').toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
48
|
+
,
|
|
49
|
+
onChange: (newVal)=>{
|
|
50
|
+
let val = type.isPrimitive(uniqueValueOptions[newVal]) ? uniqueValueOptions[newVal] : uniqueValueOptions[newVal].value;
|
|
51
|
+
if (type.isNone(val)) {
|
|
52
|
+
val = newVal;
|
|
53
|
+
}
|
|
54
|
+
methods.setValue(val);
|
|
55
|
+
methods.triggerEvent({
|
|
56
|
+
name: 'onChange'
|
|
57
|
+
});
|
|
58
|
+
},
|
|
59
|
+
onSearch: (newVal)=>{
|
|
60
|
+
methods.triggerEvent({
|
|
61
|
+
name: 'onSearch',
|
|
62
|
+
event: {
|
|
63
|
+
value: newVal
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
},
|
|
67
|
+
value: type.isNone(value) ? undefined : value
|
|
68
|
+
}, (properties.options || []).map((opt, i)=>type.isPrimitive(opt) ? /*#__PURE__*/ React.createElement(Option, {
|
|
69
|
+
className: methods.makeCssClass(properties.optionsStyle),
|
|
70
|
+
id: `${blockId}_${i}`,
|
|
71
|
+
key: i,
|
|
72
|
+
value: `${i}`
|
|
73
|
+
}, renderHtml({
|
|
74
|
+
html: `${opt}`,
|
|
75
|
+
methods
|
|
76
|
+
})) : /*#__PURE__*/ React.createElement(Option, {
|
|
77
|
+
className: methods.makeCssClass([
|
|
78
|
+
properties.optionsStyle,
|
|
79
|
+
opt.style
|
|
80
|
+
]),
|
|
81
|
+
disabled: opt.disabled,
|
|
82
|
+
filterstring: opt.filterString,
|
|
83
|
+
id: `${blockId}_${i}`,
|
|
84
|
+
key: i,
|
|
85
|
+
value: `${i}`
|
|
86
|
+
}, type.isNone(opt.label) ? renderHtml({
|
|
87
|
+
html: `${opt.value}`,
|
|
88
|
+
methods
|
|
89
|
+
}) : renderHtml({
|
|
90
|
+
html: opt.label,
|
|
91
|
+
methods
|
|
92
|
+
}))
|
|
93
|
+
))
|
|
94
|
+
}
|
|
95
|
+
}));
|
|
96
|
+
};
|
|
97
|
+
AutoCompleteInput.defaultProps = blockDefaultProps;
|
|
98
|
+
AutoCompleteInput.meta = {
|
|
99
|
+
valueType: 'string',
|
|
100
|
+
category: 'input',
|
|
101
|
+
icons: [
|
|
102
|
+
...Label.meta.icons
|
|
103
|
+
],
|
|
104
|
+
styles: [
|
|
105
|
+
'blocks/AutoComplete/style.less'
|
|
106
|
+
]
|
|
107
|
+
};
|
|
108
|
+
export default AutoCompleteInput;
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"type": "object",
|
|
5
|
+
"additionalProperties": false,
|
|
6
|
+
"properties": {
|
|
7
|
+
"allowClear": {
|
|
8
|
+
"type": "boolean",
|
|
9
|
+
"default": true,
|
|
10
|
+
"description": "Allow the user to clear the selected value, sets the value to null."
|
|
11
|
+
},
|
|
12
|
+
"autoFocus": {
|
|
13
|
+
"type": "boolean",
|
|
14
|
+
"default": false,
|
|
15
|
+
"description": "Autofocus to the block on page load."
|
|
16
|
+
},
|
|
17
|
+
"bordered": {
|
|
18
|
+
"type": "boolean",
|
|
19
|
+
"default": true,
|
|
20
|
+
"description": "Whether or not the input has a border style."
|
|
21
|
+
},
|
|
22
|
+
"backfill": {
|
|
23
|
+
"type": "boolean",
|
|
24
|
+
"default": false,
|
|
25
|
+
"description": "Backfill selected item the input when using keyboard"
|
|
26
|
+
},
|
|
27
|
+
"defaultOpen": {
|
|
28
|
+
"type": "boolean",
|
|
29
|
+
"default": false,
|
|
30
|
+
"description": "Initial open state of dropdown."
|
|
31
|
+
},
|
|
32
|
+
"disabled": {
|
|
33
|
+
"type": "boolean",
|
|
34
|
+
"default": false,
|
|
35
|
+
"description": "Disable the block if true."
|
|
36
|
+
},
|
|
37
|
+
"inputStyle": {
|
|
38
|
+
"type": "object",
|
|
39
|
+
"description": "Css style to applied to input.",
|
|
40
|
+
"docs": {
|
|
41
|
+
"displayType": "yaml"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"label": {
|
|
45
|
+
"type": "object",
|
|
46
|
+
"description": "Label properties.",
|
|
47
|
+
"additionalProperties": false,
|
|
48
|
+
"properties": {
|
|
49
|
+
"align": {
|
|
50
|
+
"type": "string",
|
|
51
|
+
"enum": ["left", "right"],
|
|
52
|
+
"default": "left",
|
|
53
|
+
"description": "Align label left or right when inline."
|
|
54
|
+
},
|
|
55
|
+
"colon": {
|
|
56
|
+
"type": "boolean",
|
|
57
|
+
"default": true,
|
|
58
|
+
"description": "Append label with colon."
|
|
59
|
+
},
|
|
60
|
+
"extra": {
|
|
61
|
+
"type": "string",
|
|
62
|
+
"description": "Extra text to display beneath the content."
|
|
63
|
+
},
|
|
64
|
+
"title": {
|
|
65
|
+
"type": "string",
|
|
66
|
+
"description": "Label title."
|
|
67
|
+
},
|
|
68
|
+
"span": {
|
|
69
|
+
"type": "number",
|
|
70
|
+
"description": "Label inline span."
|
|
71
|
+
},
|
|
72
|
+
"disabled": {
|
|
73
|
+
"type": "boolean",
|
|
74
|
+
"description": "Hide input label."
|
|
75
|
+
},
|
|
76
|
+
"hasFeedback": {
|
|
77
|
+
"type": "boolean",
|
|
78
|
+
"default": true,
|
|
79
|
+
"description": "Display feedback extra from validation, this does not disable validation."
|
|
80
|
+
},
|
|
81
|
+
"inline": {
|
|
82
|
+
"type": "boolean",
|
|
83
|
+
"default": false,
|
|
84
|
+
"description": "Render input and label inline."
|
|
85
|
+
},
|
|
86
|
+
"extraStyle": {
|
|
87
|
+
"type": "object",
|
|
88
|
+
"description": "Css style to applied to label extra.",
|
|
89
|
+
"docs": {
|
|
90
|
+
"displayType": "yaml"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"feedbackStyle": {
|
|
94
|
+
"type": "object",
|
|
95
|
+
"description": "Css style to applied to label feedback.",
|
|
96
|
+
"docs": {
|
|
97
|
+
"displayType": "yaml"
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"options": {
|
|
103
|
+
"default": [],
|
|
104
|
+
"oneOf": [
|
|
105
|
+
{
|
|
106
|
+
"type": "array",
|
|
107
|
+
"description": "Options can either be an array of string values, on an array of label, value pairs - supports html.",
|
|
108
|
+
"items": {
|
|
109
|
+
"type": "string"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"type": "array",
|
|
114
|
+
"description": "Options can either be an array of string values, on an array of label, value pairs.",
|
|
115
|
+
"items": {
|
|
116
|
+
"type": "object",
|
|
117
|
+
"required": ["value"],
|
|
118
|
+
"properties": {
|
|
119
|
+
"label": {
|
|
120
|
+
"type": "string",
|
|
121
|
+
"description": "Value label shown to user - supports html."
|
|
122
|
+
},
|
|
123
|
+
"value": {
|
|
124
|
+
"description": "Value selected. Can be of any type.",
|
|
125
|
+
"type": "string",
|
|
126
|
+
"docs": {
|
|
127
|
+
"displayType": "yaml"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"disabled": {
|
|
131
|
+
"type": "boolean",
|
|
132
|
+
"default": false,
|
|
133
|
+
"description": "Disable the option if true."
|
|
134
|
+
},
|
|
135
|
+
"filterString": {
|
|
136
|
+
"type": "string",
|
|
137
|
+
"description": "String to match against when filtering selector options during. If no filterString is provided the filter method matches against options.label."
|
|
138
|
+
},
|
|
139
|
+
"style": {
|
|
140
|
+
"type": "object",
|
|
141
|
+
"description": "Css style to applied to option.",
|
|
142
|
+
"docs": {
|
|
143
|
+
"displayType": "yaml"
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
"optionsStyle": {
|
|
152
|
+
"type": "object",
|
|
153
|
+
"description": "Css style to applied to option elements.",
|
|
154
|
+
"docs": {
|
|
155
|
+
"displayType": "yaml"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"placeholder": {
|
|
159
|
+
"type": "string",
|
|
160
|
+
"default": "Type or select item",
|
|
161
|
+
"description": "Placeholder text inside the block before user selects input."
|
|
162
|
+
},
|
|
163
|
+
"size": {
|
|
164
|
+
"type": "string",
|
|
165
|
+
"enum": ["small", "default", "large"],
|
|
166
|
+
"default": "default",
|
|
167
|
+
"description": "Size of the block."
|
|
168
|
+
},
|
|
169
|
+
"title": {
|
|
170
|
+
"type": "string",
|
|
171
|
+
"description": "Title to describe the input component, if no title is specified the block id is displayed."
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
"events": {
|
|
176
|
+
"type": "object",
|
|
177
|
+
"additionalProperties": false,
|
|
178
|
+
"properties": {
|
|
179
|
+
"onChange": {
|
|
180
|
+
"type": "array",
|
|
181
|
+
"description": "Trigger actions when selection is changed."
|
|
182
|
+
},
|
|
183
|
+
"onSearch": {
|
|
184
|
+
"type": "array",
|
|
185
|
+
"description": "Called when searching items."
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2020-2022 Lowdefy, Inc
|
|
3
|
+
|
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
you may not use this file except in compliance with the License.
|
|
6
|
+
You may obtain a copy of the License at
|
|
7
|
+
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
|
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
See the License for the specific language governing permissions and
|
|
14
|
+
limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
@import 'antd/lib/auto-complete/style/index.less';
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2020-2022 Lowdefy, Inc
|
|
3
|
+
|
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
you may not use this file except in compliance with the License.
|
|
6
|
+
You may obtain a copy of the License at
|
|
7
|
+
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
|
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
See the License for the specific language governing permissions and
|
|
14
|
+
limitations under the License.
|
|
15
|
+
*/ import React from 'react';
|
|
16
|
+
import { Avatar } from 'antd';
|
|
17
|
+
import { blockDefaultProps } from '@lowdefy/block-utils';
|
|
18
|
+
const AvatarBlock = ({ blockId , events , components: { Icon } , methods , properties })=>/*#__PURE__*/ React.createElement(Avatar, {
|
|
19
|
+
id: blockId,
|
|
20
|
+
alt: properties.alt,
|
|
21
|
+
gap: properties.gap,
|
|
22
|
+
shape: properties.shape,
|
|
23
|
+
size: properties.size,
|
|
24
|
+
src: properties.src,
|
|
25
|
+
onClick: ()=>methods.triggerEvent({
|
|
26
|
+
name: 'onClick'
|
|
27
|
+
})
|
|
28
|
+
,
|
|
29
|
+
className: methods.makeCssClass([
|
|
30
|
+
{
|
|
31
|
+
backgroundColor: !properties.src && properties.color,
|
|
32
|
+
cursor: events.onClick && 'pointer'
|
|
33
|
+
},
|
|
34
|
+
properties.style,
|
|
35
|
+
]),
|
|
36
|
+
icon: properties.icon && /*#__PURE__*/ React.createElement(Icon, {
|
|
37
|
+
blockId: `${blockId}_icon`,
|
|
38
|
+
events: events,
|
|
39
|
+
properties: properties.icon
|
|
40
|
+
})
|
|
41
|
+
}, properties.content)
|
|
42
|
+
;
|
|
43
|
+
AvatarBlock.defaultProps = blockDefaultProps;
|
|
44
|
+
AvatarBlock.meta = {
|
|
45
|
+
category: 'display',
|
|
46
|
+
icons: [],
|
|
47
|
+
styles: [
|
|
48
|
+
'blocks/Avatar/style.less'
|
|
49
|
+
]
|
|
50
|
+
};
|
|
51
|
+
export default AvatarBlock;
|