@pisell/materials 3.3.76 → 3.3.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/antd/antd-css-compatible-5.12.8.min.js +364 -364
- package/antd/antd-css-compatible-5.17.2.min.js +345 -345
- package/es/components/DragSortList/index.d.ts +38 -38
- package/es/components/MultipleContainersSortList/index.d.ts +26 -26
- package/es/components/MultipleContainersSortList/index.less +5 -5
- package/es/components/Pagination/index.d.ts +14 -14
- package/es/components/Pagination/index.js +13 -13
- package/es/components/Pagination/index.less +214 -214
- package/es/components/PisellBasicGrid/PisellBasicGrid.d.ts +10 -0
- package/es/components/PisellBasicGrid/PisellBasicGrid.js +140 -0
- package/es/components/PisellBasicGrid/PisellBasicGrid.less +20 -0
- package/es/components/PisellBasicGrid/hooks/index.d.ts +1 -0
- package/es/components/PisellBasicGrid/hooks/index.js +1 -0
- package/es/components/PisellBasicGrid/hooks/useGridStyle.d.ts +37 -0
- package/es/components/PisellBasicGrid/hooks/useGridStyle.js +114 -0
- package/es/components/PisellBasicGrid/index.d.ts +6 -0
- package/es/components/PisellBasicGrid/index.js +6 -0
- package/es/components/PisellBasicGrid/types.d.ts +221 -0
- package/es/components/PisellBasicGrid/types.js +1 -0
- package/es/components/PisellBasicGrid/utils/index.d.ts +63 -0
- package/es/components/PisellBasicGrid/utils/index.js +126 -0
- package/es/components/PisellCards/PisellCards.d.ts +8 -0
- package/es/components/PisellCards/PisellCards.js +10 -0
- package/es/components/PisellCards/PisellCards.less +1 -0
- package/es/components/PisellCards/components/GraphicTextCard/GraphicTextCard.d.ts +9 -0
- package/es/components/PisellCards/components/GraphicTextCard/GraphicTextCard.js +172 -0
- package/es/components/PisellCards/components/GraphicTextCard/GraphicTextCard.less +320 -0
- package/es/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.d.ts +5 -0
- package/es/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.js +5 -0
- package/es/components/PisellCards/components/GraphicTextCard/components/GraphicArea.d.ts +24 -0
- package/es/components/PisellCards/components/GraphicTextCard/components/GraphicArea.js +103 -0
- package/es/components/PisellCards/components/GraphicTextCard/components/TextContent.d.ts +27 -0
- package/es/components/PisellCards/components/GraphicTextCard/components/TextContent.js +99 -0
- package/es/components/PisellCards/components/GraphicTextCard/components/index.d.ts +6 -0
- package/es/components/PisellCards/components/GraphicTextCard/components/index.js +6 -0
- package/es/components/PisellCards/components/GraphicTextCard/hooks/index.d.ts +5 -0
- package/es/components/PisellCards/components/GraphicTextCard/hooks/index.js +5 -0
- package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.d.ts +15 -0
- package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.js +46 -0
- package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.d.ts +18 -0
- package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.js +85 -0
- package/es/components/PisellCards/components/GraphicTextCard/index.d.ts +5 -0
- package/es/components/PisellCards/components/GraphicTextCard/index.js +4 -0
- package/es/components/PisellCards/components/GraphicTextCard/types.d.ts +290 -0
- package/es/components/PisellCards/components/GraphicTextCard/types.js +1 -0
- package/es/components/PisellCards/components/GraphicTextCard/utils/index.d.ts +19 -0
- package/es/components/PisellCards/components/GraphicTextCard/utils/index.js +78 -0
- package/es/components/PisellCards/components/MultilevelCard/MultilevelCard.d.ts +19 -0
- package/es/components/PisellCards/components/MultilevelCard/MultilevelCard.js +122 -0
- package/es/components/PisellCards/components/MultilevelCard/MultilevelCard.less +52 -0
- package/es/components/PisellCards/components/MultilevelCard/components/CardWrapper.d.ts +7 -0
- package/es/components/PisellCards/components/MultilevelCard/components/CardWrapper.js +54 -0
- package/es/components/PisellCards/components/MultilevelCard/components/PanelWrapper.d.ts +7 -0
- package/es/components/PisellCards/components/MultilevelCard/components/PanelWrapper.js +101 -0
- package/es/components/PisellCards/components/MultilevelCard/components/index.d.ts +2 -0
- package/es/components/PisellCards/components/MultilevelCard/components/index.js +2 -0
- package/es/components/PisellCards/components/MultilevelCard/hooks/index.d.ts +2 -0
- package/es/components/PisellCards/components/MultilevelCard/hooks/index.js +2 -0
- package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.d.ts +32 -0
- package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.js +42 -0
- package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.d.ts +28 -0
- package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.js +80 -0
- package/es/components/PisellCards/components/MultilevelCard/index.d.ts +2 -0
- package/es/components/PisellCards/components/MultilevelCard/index.js +1 -0
- package/es/components/PisellCards/components/MultilevelCard/types.d.ts +202 -0
- package/es/components/PisellCards/components/MultilevelCard/types.js +1 -0
- package/es/components/PisellCards/components/MultilevelCard/utils/index.d.ts +6 -0
- package/es/components/PisellCards/components/MultilevelCard/utils/index.js +14 -0
- package/es/components/PisellCards/components/PisellImageCard/PisellImageCard.d.ts +9 -0
- package/es/components/PisellCards/components/PisellImageCard/PisellImageCard.js +182 -0
- package/es/components/PisellCards/components/PisellImageCard/PisellImageCard.less +94 -0
- package/es/components/PisellCards/components/PisellImageCard/components/index.d.ts +0 -0
- package/es/components/PisellCards/components/PisellImageCard/components/index.js +1 -0
- package/es/components/PisellCards/components/PisellImageCard/hooks/index.d.ts +5 -0
- package/es/components/PisellCards/components/PisellImageCard/hooks/index.js +6 -0
- package/es/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.d.ts +12 -0
- package/es/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.js +86 -0
- package/es/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.d.ts +10 -0
- package/es/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.js +61 -0
- package/es/components/PisellCards/components/PisellImageCard/index.d.ts +5 -0
- package/es/components/PisellCards/components/PisellImageCard/index.js +4 -0
- package/es/components/PisellCards/components/PisellImageCard/types.d.ts +74 -0
- package/es/components/PisellCards/components/PisellImageCard/types.js +1 -0
- package/es/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.d.ts +7 -0
- package/es/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.js +15 -0
- package/es/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.d.ts +7 -0
- package/es/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.js +13 -0
- package/es/components/PisellCards/components/PisellImageCard/utils/index.d.ts +5 -0
- package/es/components/PisellCards/components/PisellImageCard/utils/index.js +6 -0
- package/es/components/PisellCards/components/TabCard/TabCard.d.ts +4 -0
- package/es/components/PisellCards/components/TabCard/TabCard.js +167 -0
- package/es/components/PisellCards/components/TabCard/TabCard.less +186 -0
- package/es/components/PisellCards/components/TabCard/index.d.ts +5 -0
- package/es/components/PisellCards/components/TabCard/index.js +4 -0
- package/es/components/PisellCards/components/TabCard/types.d.ts +70 -0
- package/es/components/PisellCards/components/TabCard/types.js +1 -0
- package/es/components/PisellCards/components/TextCard/TextCard.d.ts +8 -0
- package/es/components/PisellCards/components/TextCard/TextCard.js +203 -0
- package/es/components/PisellCards/components/TextCard/TextCard.less +193 -0
- package/es/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +26 -0
- package/es/components/PisellCards/components/TextCard/components/BadgeWrapper.js +70 -0
- package/es/components/PisellCards/components/TextCard/components/IconWrapper.d.ts +17 -0
- package/es/components/PisellCards/components/TextCard/components/IconWrapper.js +41 -0
- package/es/components/PisellCards/components/TextCard/components/TextContent.d.ts +21 -0
- package/es/components/PisellCards/components/TextCard/components/TextContent.js +89 -0
- package/es/components/PisellCards/components/TextCard/components/index.d.ts +6 -0
- package/es/components/PisellCards/components/TextCard/components/index.js +6 -0
- package/es/components/PisellCards/components/TextCard/hooks/index.d.ts +0 -0
- package/es/components/PisellCards/components/TextCard/hooks/index.js +1 -0
- package/es/components/PisellCards/components/TextCard/index.d.ts +5 -0
- package/es/components/PisellCards/components/TextCard/index.js +4 -0
- package/es/components/PisellCards/components/TextCard/types.d.ts +270 -0
- package/es/components/PisellCards/components/TextCard/types.js +1 -0
- package/es/components/PisellCards/components/TextCard/utils/index.d.ts +0 -0
- package/es/components/PisellCards/components/TextCard/utils/index.js +1 -0
- package/es/components/PisellCards/components/index.d.ts +10 -0
- package/es/components/PisellCards/components/index.js +7 -0
- package/es/components/PisellCards/hooks/index.d.ts +0 -0
- package/es/components/PisellCards/hooks/index.js +1 -0
- package/es/components/PisellCards/index.d.ts +15 -0
- package/es/components/PisellCards/index.js +21 -0
- package/es/components/PisellCards/types.d.ts +48 -0
- package/es/components/PisellCards/types.js +1 -0
- package/es/components/PisellCards/utils/index.d.ts +0 -0
- package/es/components/PisellCards/utils/index.js +1 -0
- package/es/components/PisellProcedure/PisellProcedure.d.ts +22 -0
- package/es/components/PisellProcedure/PisellProcedure.js +204 -0
- package/es/components/PisellProcedure/PisellProcedure.less +529 -0
- package/es/components/PisellProcedure/PisellProcedure.stories.d.ts +163 -0
- package/es/components/PisellProcedure/PisellProcedure.stories.js +1611 -0
- package/es/components/PisellProcedure/components/FooterActions.d.ts +24 -0
- package/es/components/PisellProcedure/components/FooterActions.js +100 -0
- package/es/components/PisellProcedure/components/ProcedureBody.d.ts +41 -0
- package/es/components/PisellProcedure/components/ProcedureBody.js +158 -0
- package/es/components/PisellProcedure/components/ProcedureContent.d.ts +23 -0
- package/es/components/PisellProcedure/components/ProcedureContent.js +30 -0
- package/es/components/PisellProcedure/components/ProcedureFooter.d.ts +38 -0
- package/es/components/PisellProcedure/components/ProcedureFooter.js +169 -0
- package/es/components/PisellProcedure/components/ProcedureHeader.d.ts +34 -0
- package/es/components/PisellProcedure/components/ProcedureHeader.js +286 -0
- package/es/components/PisellProcedure/components/ProcedureSidebar.d.ts +38 -0
- package/es/components/PisellProcedure/components/ProcedureSidebar.js +114 -0
- package/es/components/PisellProcedure/components/index.d.ts +12 -0
- package/es/components/PisellProcedure/components/index.js +12 -0
- package/es/components/PisellProcedure/hooks/index.d.ts +8 -0
- package/es/components/PisellProcedure/hooks/index.js +11 -0
- package/es/components/PisellProcedure/hooks/useElementSize.d.ts +38 -0
- package/es/components/PisellProcedure/hooks/useElementSize.js +113 -0
- package/es/components/PisellProcedure/hooks/useOverflowActions.d.ts +43 -0
- package/es/components/PisellProcedure/hooks/useOverflowActions.js +351 -0
- package/es/components/PisellProcedure/hooks/useResponsiveClass.d.ts +6 -0
- package/es/components/PisellProcedure/hooks/useResponsiveClass.js +47 -0
- package/es/components/PisellProcedure/hooks/useSidebarHeight.d.ts +16 -0
- package/es/components/PisellProcedure/hooks/useSidebarHeight.js +158 -0
- package/es/components/PisellProcedure/hooks/useStepManager.d.ts +50 -0
- package/es/components/PisellProcedure/hooks/useStepManager.js +122 -0
- package/es/components/PisellProcedure/index.d.ts +5 -0
- package/es/components/PisellProcedure/index.js +4 -0
- package/es/components/PisellProcedure/types.d.ts +363 -0
- package/es/components/PisellProcedure/types.js +1 -0
- package/es/components/PisellProcedure/utils/classNames.d.ts +33 -0
- package/es/components/PisellProcedure/utils/classNames.js +45 -0
- package/es/components/PisellProcedure/utils/extractText.d.ts +20 -0
- package/es/components/PisellProcedure/utils/extractText.js +40 -0
- package/es/components/PisellProcedure/utils/footerPosition.d.ts +41 -0
- package/es/components/PisellProcedure/utils/footerPosition.js +60 -0
- package/es/components/PisellProcedure/utils/index.d.ts +8 -0
- package/es/components/PisellProcedure/utils/index.js +18 -0
- package/es/components/PisellProcedure/utils/layoutRatio.d.ts +42 -0
- package/es/components/PisellProcedure/utils/layoutRatio.js +100 -0
- package/es/components/PisellProcedure/utils/slotHelper.d.ts +27 -0
- package/es/components/PisellProcedure/utils/slotHelper.js +50 -0
- package/es/components/PisellScrollView/PisellScrollView.d.ts +5 -0
- package/es/components/PisellScrollView/PisellScrollView.js +323 -0
- package/es/components/PisellScrollView/PisellScrollView.less +178 -0
- package/es/components/PisellScrollView/PisellScrollView.stories.d.ts +87 -0
- package/es/components/PisellScrollView/PisellScrollView.stories.js +772 -0
- package/es/components/PisellScrollView/components/Actions/index.d.ts +12 -0
- package/es/components/PisellScrollView/components/Actions/index.js +130 -0
- package/es/components/PisellScrollView/components/Actions/index.less +134 -0
- package/es/components/PisellScrollView/hooks/index.d.ts +3 -0
- package/es/components/PisellScrollView/hooks/index.js +3 -0
- package/es/components/PisellScrollView/hooks/useIntersection.d.ts +8 -0
- package/es/components/PisellScrollView/hooks/useIntersection.js +44 -0
- package/es/components/PisellScrollView/hooks/useScrollEvents.d.ts +20 -0
- package/es/components/PisellScrollView/hooks/useScrollEvents.js +96 -0
- package/es/components/PisellScrollView/hooks/useScrollState.d.ts +13 -0
- package/es/components/PisellScrollView/hooks/useScrollState.js +260 -0
- package/es/components/PisellScrollView/index.d.ts +3 -0
- package/es/components/PisellScrollView/index.js +2 -0
- package/es/components/PisellScrollView/types.d.ts +203 -0
- package/es/components/PisellScrollView/types.js +1 -0
- package/es/components/PisellScrollView/utils/index.d.ts +0 -0
- package/es/components/PisellScrollView/utils/index.js +1 -0
- package/es/components/PisellSteps/PisellSteps.d.ts +14 -0
- package/es/components/PisellSteps/PisellSteps.js +286 -0
- package/es/components/PisellSteps/PisellSteps.less +332 -0
- package/es/components/PisellSteps/PisellSteps.stories.d.ts +155 -0
- package/es/components/PisellSteps/PisellSteps.stories.js +851 -0
- package/es/components/PisellSteps/hooks/index.d.ts +4 -0
- package/es/components/PisellSteps/hooks/index.js +4 -0
- package/es/components/PisellSteps/hooks/useAnchor.d.ts +9 -0
- package/es/components/PisellSteps/hooks/useAnchor.js +60 -0
- package/es/components/PisellSteps/hooks/useResponsive.d.ts +8 -0
- package/es/components/PisellSteps/hooks/useResponsive.js +43 -0
- package/es/components/PisellSteps/hooks/useStepClick.d.ts +11 -0
- package/es/components/PisellSteps/hooks/useStepClick.js +35 -0
- package/es/components/PisellSteps/hooks/useStepsState.d.ts +9 -0
- package/es/components/PisellSteps/hooks/useStepsState.js +66 -0
- package/es/components/PisellSteps/index.d.ts +3 -0
- package/es/components/PisellSteps/index.js +2 -0
- package/es/components/PisellSteps/types.d.ts +257 -0
- package/es/components/PisellSteps/types.js +1 -0
- package/es/components/PisellSteps/utils/index.d.ts +54 -0
- package/es/components/PisellSteps/utils/index.js +118 -0
- package/es/components/PisellSuperTabs/PisellSuperTabs.d.ts +8 -0
- package/es/components/PisellSuperTabs/PisellSuperTabs.js +147 -0
- package/es/components/PisellSuperTabs/PisellSuperTabs.less +35 -0
- package/es/components/PisellSuperTabs/components/index.d.ts +0 -0
- package/es/components/PisellSuperTabs/components/index.js +1 -0
- package/es/components/PisellSuperTabs/hooks/index.d.ts +1 -0
- package/es/components/PisellSuperTabs/hooks/index.js +1 -0
- package/es/components/PisellSuperTabs/hooks/useTabsState.d.ts +7 -0
- package/es/components/PisellSuperTabs/hooks/useTabsState.js +50 -0
- package/es/components/PisellSuperTabs/index.d.ts +3 -0
- package/es/components/PisellSuperTabs/index.js +2 -0
- package/es/components/PisellSuperTabs/types.d.ts +210 -0
- package/es/components/PisellSuperTabs/types.js +1 -0
- package/es/components/PisellSuperTabs/utils/getRowKey.d.ts +8 -0
- package/es/components/PisellSuperTabs/utils/getRowKey.js +33 -0
- package/es/components/PisellSuperTabs/utils/index.d.ts +1 -0
- package/es/components/PisellSuperTabs/utils/index.js +1 -0
- package/es/components/PisellTabbar/PisellTabbar.d.ts +20 -0
- package/es/components/PisellTabbar/PisellTabbar.js +174 -0
- package/es/components/PisellTabbar/PisellTabbar.less +26 -0
- package/es/components/PisellTabbar/components/TabbarLevel.d.ts +8 -0
- package/es/components/PisellTabbar/components/TabbarLevel.js +275 -0
- package/es/components/PisellTabbar/components/index.d.ts +1 -0
- package/es/components/PisellTabbar/components/index.js +2 -0
- package/es/components/PisellTabbar/constants.d.ts +46 -0
- package/es/components/PisellTabbar/constants.js +84 -0
- package/es/components/PisellTabbar/hooks/index.d.ts +2 -0
- package/es/components/PisellTabbar/hooks/index.js +3 -0
- package/es/components/PisellTabbar/hooks/useActiveKey.d.ts +49 -0
- package/es/components/PisellTabbar/hooks/useActiveKey.js +104 -0
- package/es/components/PisellTabbar/hooks/useExpand.d.ts +41 -0
- package/es/components/PisellTabbar/hooks/useExpand.js +76 -0
- package/es/components/PisellTabbar/index.d.ts +9 -0
- package/es/components/PisellTabbar/index.js +9 -0
- package/es/components/PisellTabbar/locales.d.ts +15 -0
- package/es/components/PisellTabbar/locales.js +14 -0
- package/es/components/PisellTabbar/mock.d.ts +47 -0
- package/es/components/PisellTabbar/mock.js +1351 -0
- package/es/components/PisellTabbar/template/Template1/PisellTabbar.d.ts +20 -0
- package/es/components/PisellTabbar/template/Template1/PisellTabbar.js +427 -0
- package/es/components/PisellTabbar/template/Template1/constants.d.ts +10 -0
- package/es/components/PisellTabbar/template/Template1/constants.js +33 -0
- package/es/components/PisellTabbar/template/Template1/index.d.ts +6 -0
- package/es/components/PisellTabbar/template/Template1/index.js +7 -0
- package/es/components/PisellTabbar/template/Template1/utils/index.d.ts +35 -0
- package/es/components/PisellTabbar/template/Template1/utils/index.js +96 -0
- package/es/components/PisellTabbar/template/index.d.ts +0 -0
- package/es/components/PisellTabbar/template/index.js +0 -0
- package/es/components/PisellTabbar/types.d.ts +111 -0
- package/es/components/PisellTabbar/types.js +1 -0
- package/es/components/PisellTabbar/utils/index.d.ts +68 -0
- package/es/components/PisellTabbar/utils/index.js +94 -0
- package/es/components/PisellTabbar2/PisellTabbar.d.ts +23 -0
- package/es/components/PisellTabbar2/PisellTabbar.js +281 -0
- package/es/components/PisellTabbar2/PisellTabbar.less +26 -0
- package/es/components/PisellTabbar2/components/TabbarLevel.d.ts +8 -0
- package/es/components/PisellTabbar2/components/TabbarLevel.js +323 -0
- package/es/components/PisellTabbar2/components/index.d.ts +1 -0
- package/es/components/PisellTabbar2/components/index.js +2 -0
- package/es/components/PisellTabbar2/constants.d.ts +46 -0
- package/es/components/PisellTabbar2/constants.js +84 -0
- package/es/components/PisellTabbar2/hooks/index.d.ts +2 -0
- package/es/components/PisellTabbar2/hooks/index.js +3 -0
- package/es/components/PisellTabbar2/hooks/useActiveKey.d.ts +50 -0
- package/es/components/PisellTabbar2/hooks/useActiveKey.js +128 -0
- package/es/components/PisellTabbar2/hooks/useExpand.d.ts +41 -0
- package/es/components/PisellTabbar2/hooks/useExpand.js +76 -0
- package/es/components/PisellTabbar2/index.d.ts +6 -0
- package/es/components/PisellTabbar2/index.js +6 -0
- package/es/components/PisellTabbar2/locales.d.ts +15 -0
- package/es/components/PisellTabbar2/locales.js +14 -0
- package/es/components/PisellTabbar2/mock.d.ts +205 -0
- package/es/components/PisellTabbar2/mock.js +2480 -0
- package/es/components/PisellTabbar2/types.d.ts +117 -0
- package/es/components/PisellTabbar2/types.js +1 -0
- package/es/components/PisellTabbar2/utils/index.d.ts +35 -0
- package/es/components/PisellTabbar2/utils/index.js +113 -0
- package/es/components/PisellTabbar3/PisellTabbar.d.ts +20 -0
- package/es/components/PisellTabbar3/PisellTabbar.js +649 -0
- package/es/components/PisellTabbar3/PisellTabbar.less +26 -0
- package/es/components/PisellTabbar3/index.d.ts +6 -0
- package/es/components/PisellTabbar3/index.js +6 -0
- package/es/components/PisellTabbar3/locales.d.ts +15 -0
- package/es/components/PisellTabbar3/locales.js +14 -0
- package/es/components/PisellTabbar3/mock.d.ts +47 -0
- package/es/components/PisellTabbar3/mock.js +1351 -0
- package/es/components/PisellTabbar3/types.d.ts +111 -0
- package/es/components/PisellTabbar3/types.js +1 -0
- package/es/components/Template/PisellSteps.d.ts +0 -0
- package/es/components/Template/PisellSteps.js +1 -0
- package/es/components/Template/PisellSteps.less +1 -0
- package/es/components/Template/components/index.d.ts +0 -0
- package/es/components/Template/components/index.js +1 -0
- package/es/components/Template/hooks/index.d.ts +0 -0
- package/es/components/Template/hooks/index.js +1 -0
- package/es/components/Template/index.d.ts +0 -0
- package/es/components/Template/index.js +1 -0
- package/es/components/Template/types.d.ts +0 -0
- package/es/components/Template/types.js +0 -0
- package/es/components/Template/utils/index.d.ts +0 -0
- package/es/components/Template/utils/index.js +1 -0
- package/es/components/TimeResourceSelector/index.d.ts +21 -21
- package/es/components/TimeResourceSelector/index.less +59 -59
- package/es/components/appVersionControl/index.d.ts +5 -4
- package/es/components/appVersionControl/index.less +34 -34
- package/es/components/appVersionControl/types.d.ts +24 -24
- package/es/components/appVersionControl/utils.d.ts +13 -13
- package/es/components/appVersionControl/utils.js +9 -9
- package/es/components/auto-complete/index.d.ts +2 -2
- package/es/components/auto-complete-number/index.d.ts +10 -9
- package/es/components/badge/index.d.ts +8 -7
- package/es/components/badge/index.less +2 -2
- package/es/components/batch-editor/fields/Image/index.d.ts +7 -7
- package/es/components/batch-editor/fields/Image/index.less +5 -5
- package/es/components/batch-editor/fields/Price/index.d.ts +7 -7
- package/es/components/batch-editor/fields/Text/index.d.ts +6 -6
- package/es/components/batch-editor/fields/index.d.ts +7 -6
- package/es/components/batch-editor/index.d.ts +11 -10
- package/es/components/batch-editor/index.js +43 -43
- package/es/components/batch-editor/index.less +49 -49
- package/es/components/browserSelect/index.d.ts +21 -21
- package/es/components/browserSelect/index.js +7 -7
- package/es/components/browserSelect/index.less +64 -64
- package/es/components/button/index.d.ts +9 -9
- package/es/components/buttonGroupEdit/index.d.ts +8 -8
- package/es/components/buttonGroupPreview/index.d.ts +19 -19
- package/es/components/buttonGroupPreview/index.js +4 -4
- package/es/components/calendar/index.d.ts +3 -2
- package/es/components/cardMetricItem/index.d.ts +12 -12
- package/es/components/cardMetricItem/index.less +38 -38
- package/es/components/cardPro/index.d.ts +4 -3
- package/es/components/cardPro/index.less +55 -55
- package/es/components/cascader/index.d.ts +2 -2
- package/es/components/checkbox/index.d.ts +3 -2
- package/es/components/classicLayout/index.d.ts +4 -3
- package/es/components/classicLayout/index.less +21 -21
- package/es/components/collapse/index.d.ts +15 -15
- package/es/components/collapse/index.js +13 -13
- package/es/components/colorPicker/index.d.ts +4 -3
- package/es/components/component/index.d.ts +11 -11
- package/es/components/component/index.js +4 -4
- package/es/components/config-provider/index.d.ts +8 -7
- package/es/components/cropPhoto/index.d.ts +3 -3
- package/es/components/cropPhoto/index.less +15 -15
- package/es/components/customSelect/index.d.ts +17 -17
- package/es/components/customSelect/index.less +6 -6
- package/es/components/dataSourceComponents/dataSourceForm/BaseForm.d.ts +3 -3
- package/es/components/dataSourceComponents/dataSourceForm/BaseForm.js +3 -3
- package/es/components/dataSourceComponents/dataSourceForm/formItem.d.ts +3 -2
- package/es/components/dataSourceComponents/dataSourceForm/group/index.d.ts +20 -20
- package/es/components/dataSourceComponents/dataSourceForm/group/index.js +6 -6
- package/es/components/dataSourceComponents/dataSourceForm/group/index.less +42 -42
- package/es/components/dataSourceComponents/dataSourceForm/index.d.ts +3 -3
- package/es/components/dataSourceComponents/dataSourceForm/index.js +3 -3
- package/es/components/dataSourceComponents/dataSourceForm/index.less +24 -24
- package/es/components/dataSourceComponents/dataSourceForm/provider/formSetting/FormSettingContext.d.ts +16 -16
- package/es/components/dataSourceComponents/dataSourceForm/provider/formSetting/FormSettingProvider.d.ts +8 -8
- package/es/components/dataSourceComponents/dataSourceForm/provider/formSetting/FormSettingProvider.js +3 -3
- package/es/components/dataSourceComponents/dataSourceForm/provider/hooks/useFormSetting.d.ts +5 -5
- package/es/components/dataSourceComponents/dataSourceForm/provider/hooks/useFormSetting.js +2 -2
- package/es/components/dataSourceComponents/dataSourceForm/provider/hooks/useJsonPrefixPath.d.ts +5 -5
- package/es/components/dataSourceComponents/dataSourceForm/provider/jsonWrapper/JsonWrapperContext.d.ts +6 -6
- package/es/components/dataSourceComponents/dataSourceForm/provider/jsonWrapper/JsonWrapperProvider.d.ts +7 -7
- package/es/components/dataSourceComponents/dataSourceForm/serve.d.ts +179 -179
- package/es/components/dataSourceComponents/dataSourceForm/serve.js +34 -34
- package/es/components/dataSourceComponents/dataSourceForm/style.less +22 -22
- package/es/components/dataSourceComponents/dataSourceForm/submitButton/index.d.ts +39 -39
- package/es/components/dataSourceComponents/dataSourceForm/submitButton/index.less +4 -4
- package/es/components/dataSourceComponents/dataSourceForm/type.d.ts +32 -32
- package/es/components/dataSourceComponents/dataSourceForm/urlUtils.d.ts +24 -24
- package/es/components/dataSourceComponents/dataSourceForm/urlUtils.js +13 -13
- package/es/components/dataSourceComponents/dataSourceForm/utils.d.ts +56 -56
- package/es/components/dataSourceComponents/dataSourceForm/utils.js +12 -12
- package/es/components/dataSourceComponents/dataSourceMenu/Basic.d.ts +8 -8
- package/es/components/dataSourceComponents/dataSourceMenu/Basic.js +3 -3
- package/es/components/dataSourceComponents/dataSourceMenu/index.d.ts +8 -8
- package/es/components/dataSourceComponents/dataSourceMenu/index.js +3 -3
- package/es/components/dataSourceComponents/dataSourceShow/dataSourceImage/index.d.ts +3 -2
- package/es/components/dataSourceComponents/dataSourceShow/dataSourceQRCode/index.d.ts +3 -2
- package/es/components/dataSourceComponents/dataSourceShow/dataSourceTypography/index.d.ts +10 -10
- package/es/components/dataSourceComponents/dataSourceShow/utils.d.ts +6 -6
- package/es/components/dataSourceComponents/dataSourceTable/BaseTable.d.ts +8 -8
- package/es/components/dataSourceComponents/dataSourceTable/filter/index.d.ts +28 -27
- package/es/components/dataSourceComponents/dataSourceTable/filter/index.less +4 -4
- package/es/components/dataSourceComponents/dataSourceTable/filter/utils.d.ts +8 -7
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useColumns.d.ts +11 -11
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useDataSourceKey.d.ts +6 -5
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useDesignMode.d.ts +2 -2
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +5 -4
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useFormat.d.ts +48 -48
- package/es/components/dataSourceComponents/dataSourceTable/hooks/usePagination.d.ts +16 -16
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +100 -100
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.js +5 -5
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +34 -33
- package/es/components/dataSourceComponents/dataSourceTable/index.d.ts +6 -6
- package/es/components/dataSourceComponents/dataSourceTable/index.less +5 -5
- package/es/components/dataSourceComponents/dataSourceTable/provider/tableSetting/TableSettingContext.d.ts +7 -7
- package/es/components/dataSourceComponents/dataSourceTable/provider/tableSetting/TableSettingProvider.d.ts +8 -8
- package/es/components/dataSourceComponents/dataSourceTable/provider/tableSetting/TableSettingProvider.js +3 -3
- package/es/components/dataSourceComponents/dataSourceTable/type.d.ts +84 -84
- package/es/components/dataSourceComponents/dataSourceWrapper/BaseWrapper.d.ts +7 -7
- package/es/components/dataSourceComponents/dataSourceWrapper/index.d.ts +4 -3
- package/es/components/dataSourceComponents/fields/Checkbox/ReadPretty.d.ts +8 -8
- package/es/components/dataSourceComponents/fields/Checkbox/WithMode.d.ts +7 -7
- package/es/components/dataSourceComponents/fields/Checkbox/index.d.ts +6 -6
- package/es/components/dataSourceComponents/fields/Checkbox/type.d.ts +9 -9
- package/es/components/dataSourceComponents/fields/ColorPicker/ReadPretty.d.ts +5 -4
- package/es/components/dataSourceComponents/fields/ColorPicker/WithMode.d.ts +4 -4
- package/es/components/dataSourceComponents/fields/ColorPicker/index.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/ColorPicker/type.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/DatePicker/ReadPretty.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/DatePicker/ReadPretty.less +11 -11
- package/es/components/dataSourceComponents/fields/DatePicker/WithMode.d.ts +4 -4
- package/es/components/dataSourceComponents/fields/DatePicker/index.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/DatePicker/type.d.ts +6 -6
- package/es/components/dataSourceComponents/fields/DateRangePicker/ReadPretty.d.ts +5 -4
- package/es/components/dataSourceComponents/fields/DateRangePicker/ReadPretty.less +11 -11
- package/es/components/dataSourceComponents/fields/DateRangePicker/WithMode.d.ts +4 -4
- package/es/components/dataSourceComponents/fields/DateRangePicker/index.d.ts +4 -4
- package/es/components/dataSourceComponents/fields/DateRangePicker/index.less +14 -14
- package/es/components/dataSourceComponents/fields/DateRangePicker/type.d.ts +4 -4
- package/es/components/dataSourceComponents/fields/IconSelect/ReadPretty.d.ts +5 -4
- package/es/components/dataSourceComponents/fields/IconSelect/ReadPretty.less +6 -6
- package/es/components/dataSourceComponents/fields/IconSelect/WithMode.d.ts +4 -4
- package/es/components/dataSourceComponents/fields/IconSelect/index.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/IconSelect/type.d.ts +8 -8
- package/es/components/dataSourceComponents/fields/Input/ReadPretty.d.ts +5 -4
- package/es/components/dataSourceComponents/fields/Input/ReadPretty.less +11 -11
- package/es/components/dataSourceComponents/fields/Input/WithMode.d.ts +4 -4
- package/es/components/dataSourceComponents/fields/Input/index.d.ts +22 -22
- package/es/components/dataSourceComponents/fields/Input/type.d.ts +8 -8
- package/es/components/dataSourceComponents/fields/Input.Email/ReadPretty.d.ts +5 -4
- package/es/components/dataSourceComponents/fields/Input.Email/ReadPretty.less +11 -11
- package/es/components/dataSourceComponents/fields/Input.Email/WithMode.d.ts +6 -6
- package/es/components/dataSourceComponents/fields/Input.Email/index.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Input.Email/type.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Input.Json/ReadPretty.d.ts +5 -4
- package/es/components/dataSourceComponents/fields/Input.Json/ReadPretty.less +3 -3
- package/es/components/dataSourceComponents/fields/Input.Json/WithMode.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Input.Json/index.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Input.Json/type.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Input.Mobile/ReadPretty.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Input.Mobile/ReadPretty.less +11 -11
- package/es/components/dataSourceComponents/fields/Input.Mobile/WithMode.d.ts +17 -17
- package/es/components/dataSourceComponents/fields/Input.Mobile/WithMode.js +27 -27
- package/es/components/dataSourceComponents/fields/Input.Mobile/index.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Input.Mobile/serve.d.ts +24 -24
- package/es/components/dataSourceComponents/fields/Input.Mobile/serve.js +2 -2
- package/es/components/dataSourceComponents/fields/Input.Mobile/type.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Input.Password/ReadPretty.d.ts +5 -4
- package/es/components/dataSourceComponents/fields/Input.Password/ReadPretty.less +11 -11
- package/es/components/dataSourceComponents/fields/Input.Password/WithMode.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Input.Password/index.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Input.Password/type.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Input.Phone/ReadPretty.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Input.Phone/ReadPretty.less +11 -11
- package/es/components/dataSourceComponents/fields/Input.Phone/WithMode.d.ts +16 -16
- package/es/components/dataSourceComponents/fields/Input.Phone/WithMode.js +22 -22
- package/es/components/dataSourceComponents/fields/Input.Phone/index.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Input.Phone/serve.d.ts +25 -25
- package/es/components/dataSourceComponents/fields/Input.Phone/serve.js +2 -2
- package/es/components/dataSourceComponents/fields/Input.Phone/type.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Input.Subdomain/ReadPretty.d.ts +5 -4
- package/es/components/dataSourceComponents/fields/Input.Subdomain/ReadPretty.less +11 -11
- package/es/components/dataSourceComponents/fields/Input.Subdomain/WithMode.d.ts +13 -13
- package/es/components/dataSourceComponents/fields/Input.Subdomain/WithMode.js +31 -31
- package/es/components/dataSourceComponents/fields/Input.Subdomain/index.d.ts +12 -12
- package/es/components/dataSourceComponents/fields/Input.Subdomain/serve.d.ts +11 -11
- package/es/components/dataSourceComponents/fields/Input.Subdomain/serve.js +4 -4
- package/es/components/dataSourceComponents/fields/Input.Subdomain/type.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Input.TextArea/ReadPretty.d.ts +5 -4
- package/es/components/dataSourceComponents/fields/Input.TextArea/ReadPretty.less +11 -11
- package/es/components/dataSourceComponents/fields/Input.TextArea/WithMode.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Input.TextArea/index.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Input.TextArea/type.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Input.Url/ReadPretty.d.ts +6 -5
- package/es/components/dataSourceComponents/fields/Input.Url/ReadPretty.less +13 -13
- package/es/components/dataSourceComponents/fields/Input.Url/WithMode.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Input.Url/index.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Input.Url/type.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/InputNumber/ReadPretty.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/InputNumber/ReadPretty.less +11 -11
- package/es/components/dataSourceComponents/fields/InputNumber/WithMode.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/InputNumber/index.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/InputNumber/type.d.ts +7 -7
- package/es/components/dataSourceComponents/fields/InputNumber/utils.d.ts +1 -1
- package/es/components/dataSourceComponents/fields/Radio/ReadPretty.d.ts +7 -7
- package/es/components/dataSourceComponents/fields/Radio/WithMode.d.ts +7 -7
- package/es/components/dataSourceComponents/fields/Radio/index.d.ts +6 -6
- package/es/components/dataSourceComponents/fields/Radio/type.d.ts +8 -8
- package/es/components/dataSourceComponents/fields/Select/ReadPretty.d.ts +4 -4
- package/es/components/dataSourceComponents/fields/Select/WithMode.d.ts +4 -4
- package/es/components/dataSourceComponents/fields/Select/index.d.ts +11 -10
- package/es/components/dataSourceComponents/fields/Select/type.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Switch/ReadPretty.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Switch/ReadPretty.less +2 -2
- package/es/components/dataSourceComponents/fields/Switch/WithMode.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Switch/index.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Switch/type.d.ts +16 -16
- package/es/components/dataSourceComponents/fields/TimePicker/ReadPretty.d.ts +5 -4
- package/es/components/dataSourceComponents/fields/TimePicker/ReadPretty.less +11 -11
- package/es/components/dataSourceComponents/fields/TimePicker/WithMode.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/TimePicker/index.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/TimePicker/style.less +85 -85
- package/es/components/dataSourceComponents/fields/TimePicker/type.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Translation/BaseTranslation.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Translation/ReadPretty.d.ts +5 -4
- package/es/components/dataSourceComponents/fields/Translation/ReadPretty.less +10 -10
- package/es/components/dataSourceComponents/fields/Translation/WithMode.d.ts +4 -4
- package/es/components/dataSourceComponents/fields/Translation/index.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Translation/index.less +57 -57
- package/es/components/dataSourceComponents/fields/Translation/type.d.ts +16 -16
- package/es/components/dataSourceComponents/fields/Upload/BaseUpload.d.ts +5 -5
- package/es/components/dataSourceComponents/fields/Upload/CameraPopover.d.ts +6 -5
- package/es/components/dataSourceComponents/fields/Upload/ReadPretty.d.ts +5 -4
- package/es/components/dataSourceComponents/fields/Upload/ReadPretty.less +11 -11
- package/es/components/dataSourceComponents/fields/Upload/WithMode.d.ts +4 -4
- package/es/components/dataSourceComponents/fields/Upload/constants.d.ts +9 -9
- package/es/components/dataSourceComponents/fields/Upload/index.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Upload/index.less +114 -114
- package/es/components/dataSourceComponents/fields/Upload/serve.d.ts +20 -20
- package/es/components/dataSourceComponents/fields/Upload/serve.js +2 -2
- package/es/components/dataSourceComponents/fields/Upload/shopUploadServe.d.ts +56 -56
- package/es/components/dataSourceComponents/fields/Upload/shopUploadServe.js +39 -39
- package/es/components/dataSourceComponents/fields/Upload/type.d.ts +38 -38
- package/es/components/dataSourceComponents/fields/Upload/types.d.ts +48 -48
- package/es/components/dataSourceComponents/fields/Upload/utils.d.ts +18 -18
- package/es/components/dataSourceComponents/fields/index.d.ts +102 -101
- package/es/components/dataSourceComponents/fields/type.d.ts +19 -19
- package/es/components/dataSourceComponents/fields/utils.d.ts +3 -3
- package/es/components/dataSourceComponents/hooks/useActions.d.ts +18 -18
- package/es/components/dataSourceComponents/hooks/useComponentId.d.ts +2 -2
- package/es/components/dataSourceComponents/hooks/useCtxActions.d.ts +8 -8
- package/es/components/dataSourceComponents/hooks/useCtxActions.js +5 -5
- package/es/components/dataSourceComponents/hooks/useDataSource.d.ts +5 -5
- package/es/components/dataSourceComponents/hooks/useDataSource.js +2 -2
- package/es/components/dataSourceComponents/hooks/useParseActionsVariable.d.ts +6 -6
- package/es/components/dataSourceComponents/hooks/usePlatform.d.ts +5 -5
- package/es/components/dataSourceComponents/hooks/useValueMap.d.ts +8 -8
- package/es/components/dataSourceComponents/hooks/useValueMap.js +5 -5
- package/es/components/dataSourceComponents/hooks/useVariables.d.ts +2 -2
- package/es/components/dataSourceComponents/provider/actions/ActionsContext.d.ts +11 -11
- package/es/components/dataSourceComponents/provider/actions/ActionsProvider.d.ts +12 -12
- package/es/components/dataSourceComponents/provider/actions/ActionsProvider.js +4 -4
- package/es/components/dataSourceComponents/provider/dataSource/DataSourceContext.d.ts +120 -120
- package/es/components/dataSourceComponents/provider/dataSource/DataSourceProvider.d.ts +8 -8
- package/es/components/dataSourceComponents/provider/dataSource/DataSourceProvider.js +3 -3
- package/es/components/dataSourceComponents/provider/variables/VariablesContext.d.ts +12 -12
- package/es/components/dataSourceComponents/provider/variables/VariablesProvider.d.ts +4 -4
- package/es/components/dataSourceComponents/provider/variables/utils.d.ts +12 -12
- package/es/components/date-picker/constants.d.ts +39 -39
- package/es/components/date-picker/datePickerCpt.d.ts +9 -8
- package/es/components/date-picker/hooks/useMediaQuery.d.ts +2 -2
- package/es/components/date-picker/index.d.ts +3 -2
- package/es/components/date-picker/index.less +1880 -1880
- package/es/components/div/index.d.ts +19 -19
- package/es/components/drag-sort-tree/TreeItem/index.d.ts +19 -18
- package/es/components/drag-sort-tree/TreeItem/index.js +7 -7
- package/es/components/drag-sort-tree/TreeItem/index.less +73 -73
- package/es/components/drag-sort-tree/index.d.ts +5 -4
- package/es/components/drag-sort-tree/index.less +3 -3
- package/es/components/drag-sort-tree/types.d.ts +24 -24
- package/es/components/drawer/index.d.ts +3 -3
- package/es/components/drawer/index.less +70 -70
- package/es/components/dropdown/index.d.ts +3 -2
- package/es/components/filter/components/Dropdown/index.d.ts +9 -9
- package/es/components/filter/components/Dropdown/index.less +81 -81
- package/es/components/filter/components/Dropdown/types.d.ts +11 -11
- package/es/components/filter/components/FilterButton/index.d.ts +4 -4
- package/es/components/filter/components/FilterButton/types.d.ts +13 -13
- package/es/components/filter/components/FilterItem/index.d.ts +5 -5
- package/es/components/filter/components/QuickFilter/index.d.ts +12 -12
- package/es/components/filter/components/items/index.d.ts +42 -41
- package/es/components/filter/components/items/text/Editor/index.d.ts +3 -2
- package/es/components/filter/components/items/text/Preview/index.d.ts +3 -2
- package/es/components/filter/components/items/text/index.d.ts +12 -11
- package/es/components/filter/index.d.ts +4 -3
- package/es/components/filter/types.d.ts +46 -46
- package/es/components/form/index.d.ts +2 -2
- package/es/components/icon/index.d.ts +12 -12
- package/es/components/iconSelect/index.d.ts +10 -10
- package/es/components/iconSelect/index.less +54 -54
- package/es/components/iconSelect/utils.d.ts +14 -14
- package/es/components/iconfont/index.d.ts +8 -8
- package/es/components/image/index.d.ts +10 -10
- package/es/components/input/index.d.ts +11 -11
- package/es/components/input-number-range/index.d.ts +15 -15
- package/es/components/list/index.d.ts +7 -6
- package/es/components/list/index.less +38 -38
- package/es/components/login-and-register/index.d.ts +82 -82
- package/es/components/login-and-register/index.js +13 -13
- package/es/components/login-and-register/index.less +213 -213
- package/es/components/lowCodePage/index.d.ts +6 -5
- package/es/components/modal/index.d.ts +2 -2
- package/es/components/organizationTenantSwitcher/index.d.ts +17 -17
- package/es/components/organizationTenantSwitcher/index.less +89 -89
- package/es/components/page/index.d.ts +6 -5
- package/es/components/page-header/index.d.ts +14 -14
- package/es/components/page-header/index.less +45 -45
- package/es/components/pisell-config-provider/context.d.ts +20 -20
- package/es/components/pisell-config-provider/context.js +2 -2
- package/es/components/pisell-config-provider/hooks/usePisellConfig.d.ts +5 -5
- package/es/components/pisell-config-provider/hooks/usePisellConfig.js +2 -2
- package/es/components/pisell-config-provider/index.d.ts +12 -12
- package/es/components/pisellAdjustPrice/PisellAdjustPriceInputNumber.d.ts +10 -9
- package/es/components/pisellAdjustPrice/index.d.ts +10 -9
- package/es/components/pisellAdjustPrice/index.less +29 -29
- package/es/components/pisellAlert/index.d.ts +22 -22
- package/es/components/pisellAlert/index.js +4 -4
- package/es/components/pisellAlert/index.less +149 -149
- package/es/components/pisellAnchor/index.d.ts +23 -23
- package/es/components/pisellAnchor/index.less +194 -194
- package/es/components/pisellAppCard/PisellAppCard.d.ts +5 -5
- package/es/components/pisellAppCard/PisellAppCard.less +55 -55
- package/es/components/pisellAppCard/index.d.ts +3 -3
- package/es/components/pisellAppCard/types.d.ts +34 -34
- package/es/components/pisellAvatar/index.d.ts +19 -19
- package/es/components/pisellAvatar/index.js +7 -7
- package/es/components/pisellAvatar/index.less +27 -27
- package/es/components/pisellBatchActionBar/PisellBatchActionBar.d.ts +31 -0
- package/es/components/pisellBatchActionBar/PisellBatchActionBar.js +533 -0
- package/es/components/pisellBatchActionBar/PisellBatchActionBar.less +103 -0
- package/es/components/pisellBatchActionBar/index.d.ts +6 -0
- package/es/components/pisellBatchActionBar/index.js +6 -0
- package/es/components/pisellBatchActionBar/types.d.ts +237 -0
- package/es/components/pisellBatchActionBar/types.js +1 -0
- package/es/components/pisellCamera/index.d.ts +4 -4
- package/es/components/pisellCamera/index.less +130 -130
- package/es/components/pisellCard/index.d.ts +20 -19
- package/es/components/pisellCard/index.js +4 -4
- package/es/components/pisellCard/index.less +36 -36
- package/es/components/pisellCardList/index.d.ts +77 -77
- package/es/components/pisellCardList/index.js +4 -4
- package/es/components/pisellCardList/index.less +74 -74
- package/es/components/pisellCheckboxGroup/index.d.ts +37 -37
- package/es/components/pisellCheckboxGroup/index.js +26 -26
- package/es/components/pisellCheckboxGroup/index.less +36 -36
- package/es/components/pisellCheckboxGroup/mock.d.ts +4 -4
- package/es/components/pisellContainer/components/Portal/index.d.ts +10 -10
- package/es/components/pisellContainer/containers.d.ts +1 -1
- package/es/components/pisellContainer/index.d.ts +22 -22
- package/es/components/pisellCountdown/index.d.ts +24 -24
- package/es/components/pisellCountdown/utils.d.ts +7 -7
- package/es/components/pisellCountdown/utils.js +5 -5
- package/es/components/pisellCustomCheckboxGroup/index.d.ts +16 -16
- package/es/components/pisellCustomCheckboxGroup/index.js +15 -15
- package/es/components/pisellDatePicker/datePickerCpt.d.ts +22 -21
- package/es/components/pisellDatePicker/datePickerCpt.js +13 -13
- package/es/components/pisellDatePicker/detePickerCpt.less +21 -21
- package/es/components/pisellDatePicker/index.d.ts +3 -2
- package/es/components/pisellDraggable/components/Action/Action.d.ts +10 -10
- package/es/components/pisellDraggable/components/Action/Action.less +49 -49
- package/es/components/pisellDraggable/components/Action/index.d.ts +2 -2
- package/es/components/pisellDraggable/components/Handle/Handle.d.ts +3 -3
- package/es/components/pisellDraggable/components/Handle/index.d.ts +1 -1
- package/es/components/pisellDraggable/components/Remove/Remove.d.ts +3 -3
- package/es/components/pisellDraggable/components/Remove/index.d.ts +1 -1
- package/es/components/pisellDraggable/components/TreeItem/SortableTreeItem.d.ts +9 -9
- package/es/components/pisellDraggable/components/TreeItem/TreeItem.d.ts +24 -24
- package/es/components/pisellDraggable/components/TreeItem/TreeItem.less +127 -127
- package/es/components/pisellDraggable/components/TreeItem/index.d.ts +2 -2
- package/es/components/pisellDraggable/components/index.d.ts +4 -4
- package/es/components/pisellDraggable/index.d.ts +35 -35
- package/es/components/pisellDraggable/index.js +49 -49
- package/es/components/pisellDraggable/types.d.ts +19 -19
- package/es/components/pisellDraggable/utilities.d.ts +17 -17
- package/es/components/pisellDropSort/PisellDropSort.d.ts +5 -5
- package/es/components/pisellDropSort/PisellDropSort.less +92 -92
- package/es/components/pisellDropSort/components/SortableItem/index.d.ts +26 -26
- package/es/components/pisellDropSort/components/SortableItem/index.less +156 -156
- package/es/components/pisellDropSort/index.d.ts +3 -3
- package/es/components/pisellDropSort/types.d.ts +58 -58
- package/es/components/pisellDropdown/index.d.ts +20 -20
- package/es/components/pisellDropdown/index.less +44 -44
- package/es/components/pisellEmpty/index.d.ts +19 -19
- package/es/components/pisellEmpty/index.less +34 -34
- package/es/components/pisellFloatingPanel/index.d.ts +17 -17
- package/es/components/pisellFloatingPanel/index.less +30 -30
- package/es/components/pisellGoodPassCard/index.d.ts +49 -49
- package/es/components/pisellGoodPassCard/index.less +58 -58
- package/es/components/pisellHeaderProgressBar/index.d.ts +29 -29
- package/es/components/pisellHeaderProgressBar/index.js +6 -6
- package/es/components/pisellHeaderProgressBar/index.less +18 -18
- package/es/components/pisellImageCarousels/index.d.ts +18 -18
- package/es/components/pisellImageCarousels/index.less +92 -92
- package/es/components/pisellInformationEntry/Input/index.d.ts +8 -8
- package/es/components/pisellInformationEntry/Input/index.less +13 -13
- package/es/components/pisellInformationEntry/Scan/index.d.ts +8 -7
- package/es/components/pisellInformationEntry/Scan/index.less +7 -7
- package/es/components/pisellInformationEntry/constants.d.ts +13 -13
- package/es/components/pisellInformationEntry/hooks/useNativeScanner.d.ts +4 -4
- package/es/components/pisellInformationEntry/hooks/useTerminalPeripherals.d.ts +8 -8
- package/es/components/pisellInformationEntry/index.d.ts +33 -33
- package/es/components/pisellInformationEntry/index.less +40 -40
- package/es/components/pisellInformationEntry/utils.d.ts +4 -4
- package/es/components/pisellInformationEntry/utils.js +2 -2
- package/es/components/pisellInput/components/BankCard/index.d.ts +11 -10
- package/es/components/pisellInput/components/BankCard/index.less +3 -3
- package/es/components/pisellInput/components/BankCard/utils.d.ts +11 -11
- package/es/components/pisellInput/components/Copy/index.d.ts +11 -10
- package/es/components/pisellInput/components/SecurityCode/index.d.ts +12 -11
- package/es/components/pisellInput/components/SecurityCode/index.less +3 -3
- package/es/components/pisellInput/index.d.ts +13 -12
- package/es/components/pisellLayout/content.d.ts +10 -10
- package/es/components/pisellLayout/content.js +6 -6
- package/es/components/pisellLayout/footer.d.ts +8 -8
- package/es/components/pisellLayout/header.d.ts +10 -10
- package/es/components/pisellLayout/index.d.ts +14 -14
- package/es/components/pisellLayout/index.less +22 -22
- package/es/components/pisellLayout/sider.d.ts +8 -8
- package/es/components/pisellList01/index.d.ts +17 -17
- package/es/components/pisellList01/index.js +7 -7
- package/es/components/pisellList01/index.less +53 -53
- package/es/components/pisellLoading/index.d.ts +20 -19
- package/es/components/pisellLoading/index.less +35 -35
- package/es/components/pisellMenu/PisellMenu.d.ts +11 -11
- package/es/components/pisellMenu/PisellMenu.less +52 -52
- package/es/components/pisellMenu/index.d.ts +3 -3
- package/es/components/pisellMenu/types.d.ts +27 -27
- package/es/components/pisellMessage/index.d.ts +4 -4
- package/es/components/pisellModal/components/Information/index.d.ts +21 -21
- package/es/components/pisellModal/components/Information/index.less +15 -15
- package/es/components/pisellModal/components/IpadModal/index.d.ts +6 -5
- package/es/components/pisellModal/components/MobileModal/index.d.ts +9 -8
- package/es/components/pisellModal/components/MobileModal/index.less +64 -64
- package/es/components/pisellModal/components/PcModal/index.d.ts +30 -30
- package/es/components/pisellModal/components/PcModal/index.less +104 -104
- package/es/components/pisellModal/components/functions/index.d.ts +30 -30
- package/es/components/pisellModal/components/functions/index.less +27 -27
- package/es/components/pisellModal/components/index.d.ts +10 -9
- package/es/components/pisellModal/constants.d.ts +6 -6
- package/es/components/pisellModal/index.d.ts +58 -58
- package/es/components/pisellNavigationMenu/PisellNavigationMenu.d.ts +5 -5
- package/es/components/pisellNavigationMenu/PisellNavigationMenu.less +79 -79
- package/es/components/pisellNavigationMenu/index.d.ts +3 -3
- package/es/components/pisellNavigationMenu/types.d.ts +85 -85
- package/es/components/pisellNavigationMenu/utils.d.ts +15 -15
- package/es/components/pisellNavigationMenu/utils.js +8 -8
- package/es/components/pisellQRScanner/index.d.ts +24 -24
- package/es/components/pisellQRScanner/index.js +10 -10
- package/es/components/pisellQRScanner/index.less +70 -70
- package/es/components/pisellQrcode/index.d.ts +10 -10
- package/es/components/pisellQrcode/index.less +39 -39
- package/es/components/pisellRow/index.d.ts +22 -22
- package/es/components/pisellRow/index.js +7 -7
- package/es/components/pisellRow/index.less +12 -12
- package/es/components/pisellScan/index.d.ts +23 -23
- package/es/components/pisellScan/index.js +2 -2
- package/es/components/pisellScan/index.less +11 -11
- package/es/components/pisellSectionHeaders/index.d.ts +21 -21
- package/es/components/pisellSectionHeaders/index.less +46 -46
- package/es/components/pisellStatisticList/index.d.ts +21 -21
- package/es/components/pisellStatisticList/index.less +48 -48
- package/es/components/pisellTags/index.d.ts +13 -13
- package/es/components/pisellTags/index.js +7 -7
- package/es/components/pisellTags/index.less +16 -16
- package/es/components/pisellTags/utils.d.ts +1 -1
- package/es/components/pisellText/components/Amount/index.d.ts +20 -20
- package/es/components/pisellText/components/Editable/index.d.ts +29 -29
- package/es/components/pisellText/components/Editable/index.less +40 -40
- package/es/components/pisellText/index.d.ts +9 -9
- package/es/components/pisellToast/index.d.ts +16 -16
- package/es/components/pisellToast/index.less +25 -25
- package/es/components/pisellTooltip/index.d.ts +10 -9
- package/es/components/pisellTooltip/index.less +4 -4
- package/es/components/pisellUpload/index.d.ts +11 -10
- package/es/components/pisellUpload/index.less +15 -15
- package/es/components/pisellViewGrid/index.d.ts +16 -16
- package/es/components/pisellViewGrid/index.less +31 -31
- package/es/components/pisellWalletPassCard/index.d.ts +95 -95
- package/es/components/pisellWalletPassCard/index.less +313 -313
- package/es/components/productCard/components/Action/index.d.ts +4 -3
- package/es/components/productCard/components/Action/index.less +14 -14
- package/es/components/productCard/components/AmountFooter/index.d.ts +4 -3
- package/es/components/productCard/components/AmountFooter/index.js +11 -9
- package/es/components/productCard/components/AmountFooter/index.less +77 -77
- package/es/components/productCard/components/Divider/index.d.ts +4 -3
- package/es/components/productCard/components/Divider/index.less +13 -13
- package/es/components/productCard/components/Header/DeleteButton/index.d.ts +4 -3
- package/es/components/productCard/components/Header/DeleteButton/index.less +15 -15
- package/es/components/productCard/components/Header/EditButton/index.d.ts +4 -3
- package/es/components/productCard/components/Header/EditButton/index.less +25 -25
- package/es/components/productCard/components/Header/index.d.ts +4 -3
- package/es/components/productCard/components/Header/index.js +21 -21
- package/es/components/productCard/components/Header/index.less +56 -56
- package/es/components/productCard/components/MultiDay/index.d.ts +4 -3
- package/es/components/productCard/components/MultiDay/index.js +7 -7
- package/es/components/productCard/components/MultiDay/index.less +34 -34
- package/es/components/productCard/components/MultiDay/utils.d.ts +14 -14
- package/es/components/productCard/components/Note/index.d.ts +4 -3
- package/es/components/productCard/components/Note/index.less +20 -20
- package/es/components/productCard/components/Packages/components/collapsibleList/index.d.ts +10 -10
- package/es/components/productCard/components/Packages/components/collapsibleList/index.js +20 -20
- package/es/components/productCard/components/Packages/components/collapsibleList/index.less +52 -52
- package/es/components/productCard/components/Packages/components/collapsibleList/utils.d.ts +2 -1
- package/es/components/productCard/components/Packages/components/options/index.d.ts +4 -3
- package/es/components/productCard/components/Packages/components/options/index.less +30 -30
- package/es/components/productCard/components/Packages/index.d.ts +4 -3
- package/es/components/productCard/components/Packages/index.less +17 -17
- package/es/components/productCard/components/Packages/utils.d.ts +20 -20
- package/es/components/productCard/components/Packages/utils.js +16 -16
- package/es/components/productCard/components/Sales/index.d.ts +4 -3
- package/es/components/productCard/components/Sales/index.less +18 -18
- package/es/components/productCard/components/Time/components/Like/index.d.ts +10 -9
- package/es/components/productCard/components/Time/components/Like/index.less +27 -27
- package/es/components/productCard/components/Time/components/SelectHolder/index.d.ts +4 -3
- package/es/components/productCard/components/Time/components/SelectHolder/index.js +7 -7
- package/es/components/productCard/components/Time/components/SelectHolder/index.less +61 -61
- package/es/components/productCard/components/Time/components/SelectHolderModal/index.d.ts +14 -13
- package/es/components/productCard/components/Time/components/SelectHolderModal/index.less +39 -39
- package/es/components/productCard/components/Time/components/SelectHolderMultiple/index.d.ts +3 -2
- package/es/components/productCard/components/Time/components/SelectHolderMultiple/index.js +7 -7
- package/es/components/productCard/components/Time/components/SelectResource/index.d.ts +19 -18
- package/es/components/productCard/components/Time/components/SelectResource/index.js +7 -7
- package/es/components/productCard/components/Time/components/SelectResource/index.less +20 -20
- package/es/components/productCard/components/Time/index.d.ts +4 -3
- package/es/components/productCard/components/Time/index.less +56 -56
- package/es/components/productCard/components/Warning/index.d.ts +7 -7
- package/es/components/productCard/components/Warning/index.js +7 -7
- package/es/components/productCard/hooks/useOpenNote.d.ts +3 -3
- package/es/components/productCard/index.d.ts +5 -5
- package/es/components/productCard/index.js +14 -14
- package/es/components/productCard/index.less +82 -82
- package/es/components/productCard/locales.d.ts +84 -84
- package/es/components/productCard/status.d.ts +32 -32
- package/es/components/productCard/status.js +23 -23
- package/es/components/productCard/types.d.ts +84 -84
- package/es/components/productCard/utils.d.ts +31 -31
- package/es/components/productCard/utils.js +22 -22
- package/es/components/profileMenu/index.d.ts +26 -26
- package/es/components/profileMenu/index.less +132 -132
- package/es/components/qrcode/index.d.ts +3 -2
- package/es/components/radio/index.d.ts +3 -2
- package/es/components/record-view/index.d.ts +37 -37
- package/es/components/record-view/index.less +81 -81
- package/es/components/section-footers/index.d.ts +9 -9
- package/es/components/section-footers/index.less +5 -5
- package/es/components/segmented/index.d.ts +5 -4
- package/es/components/segmented/index.less +2 -2
- package/es/components/select/index.d.ts +9 -9
- package/es/components/select/index.less +29 -29
- package/es/components/select-time/RightPanel/index.d.ts +9 -8
- package/es/components/select-time/RightPanel/index.less +21 -21
- package/es/components/select-time/index.d.ts +14 -14
- package/es/components/select-time/index.less +15 -15
- package/es/components/select-time/utils.d.ts +9 -9
- package/es/components/skeleton/index.d.ts +3 -2
- package/es/components/slider/index.d.ts +3 -2
- package/es/components/sort/components/InlineMenu/index.d.ts +15 -14
- package/es/components/sort/components/InlineMenu/index.js +4 -4
- package/es/components/sort/components/InlineMenu/index.less +20 -20
- package/es/components/sort/index.d.ts +5 -5
- package/es/components/sort/index.less +36 -36
- package/es/components/sort/types.d.ts +20 -20
- package/es/components/sortableList/index.d.ts +11 -11
- package/es/components/table/Actions/component/ButtonIcon/index.d.ts +8 -8
- package/es/components/table/Actions/component/ButtonIcon/index.less +18 -18
- package/es/components/table/Actions/component/ColumnsSetting/PopoverContent.d.ts +10 -10
- package/es/components/table/Actions/component/ColumnsSetting/PopoverContent.less +59 -59
- package/es/components/table/Actions/component/ColumnsSetting/index.d.ts +7 -6
- package/es/components/table/Actions/component/ColumnsSetting/utils.d.ts +1 -1
- package/es/components/table/Actions/component/ExportImport/components/ExportFile/index.d.ts +7 -6
- package/es/components/table/Actions/component/ExportImport/components/ExportFile/index.js +6 -6
- package/es/components/table/Actions/component/ExportImport/components/ExportFile/index.less +29 -29
- package/es/components/table/Actions/component/ExportImport/components/ExportTable/function.d.ts +7 -7
- package/es/components/table/Actions/component/ExportImport/components/ExportTable/index.d.ts +8 -7
- package/es/components/table/Actions/component/ExportImport/components/ExportTable/index.less +5 -5
- package/es/components/table/Actions/component/ExportImport/components/ImportLog/Detail.d.ts +4 -4
- package/es/components/table/Actions/component/ExportImport/components/ImportLog/index.d.ts +7 -6
- package/es/components/table/Actions/component/ExportImport/components/ImportLog/index.js +6 -6
- package/es/components/table/Actions/component/ExportImport/components/ImportLog/index.less +48 -48
- package/es/components/table/Actions/component/ExportImport/components/ImportTable/index.d.ts +10 -9
- package/es/components/table/Actions/component/ExportImport/components/ImportTable/index.less +97 -97
- package/es/components/table/Actions/component/ExportImport/index.d.ts +8 -7
- package/es/components/table/Actions/component/ExportImport/index.less +194 -194
- package/es/components/table/Actions/component/ExportImport/utils/date.d.ts +8 -8
- package/es/components/table/Actions/component/ExportImport/utils/date.js +6 -6
- package/es/components/table/Actions/component/ExportImport/utils/download.d.ts +3 -3
- package/es/components/table/Actions/component/ExportImport/utils/file.d.ts +7 -7
- package/es/components/table/Actions/component/ExportImport/utils/file.js +4 -4
- package/es/components/table/Actions/component/ExportImport/utils/index.d.ts +9 -9
- package/es/components/table/Actions/component/ExportImport/utils/index.js +7 -7
- package/es/components/table/Actions/component/GallerySetting/index.d.ts +9 -8
- package/es/components/table/Actions/component/GallerySetting/index.less +14 -14
- package/es/components/table/Actions/component/Group/PopoverContent.d.ts +13 -12
- package/es/components/table/Actions/component/Group/PopoverContent.less +29 -29
- package/es/components/table/Actions/component/Group/index.d.ts +13 -12
- package/es/components/table/Actions/component/ViewMode/index.d.ts +9 -8
- package/es/components/table/Actions/index.d.ts +18 -17
- package/es/components/table/Actions/index.less +43 -43
- package/es/components/table/BasicTable/index.d.ts +4 -3
- package/es/components/table/Gallery/components/GalleryItem/components/Cover/index.d.ts +10 -9
- package/es/components/table/Gallery/components/GalleryItem/components/RenderFields/index.d.ts +11 -10
- package/es/components/table/Gallery/components/GalleryItem/components/RenderFields/index.less +37 -37
- package/es/components/table/Gallery/components/GalleryItem/components/Title/index.d.ts +9 -8
- package/es/components/table/Gallery/components/GalleryItem/components/Title/index.less +17 -17
- package/es/components/table/Gallery/components/GalleryItem/index.d.ts +14 -14
- package/es/components/table/Gallery/components/GalleryItem/index.less +29 -29
- package/es/components/table/Gallery/components/VirtualGrid/index.d.ts +13 -13
- package/es/components/table/Gallery/components/VirtualGrid/index.less +4 -4
- package/es/components/table/Gallery/components/VirtualGrid/useGapSize.d.ts +5 -5
- package/es/components/table/Gallery/components/VirtualGrid/useGenGridProps.d.ts +14 -14
- package/es/components/table/Gallery/constant.d.ts +4 -4
- package/es/components/table/Gallery/index.d.ts +5 -5
- package/es/components/table/Gallery/index.less +28 -28
- package/es/components/table/Gallery/types.d.ts +10 -10
- package/es/components/table/Header/Buttons/index.d.ts +3 -3
- package/es/components/table/Header/index.d.ts +11 -11
- package/es/components/table/Header/index.less +23 -23
- package/es/components/table/Summary/index.d.ts +4 -3
- package/es/components/table/Summary/index.less +4 -4
- package/es/components/table/Table/AddFieldModal/index.d.ts +3 -3
- package/es/components/table/Table/AddFieldModal/index.less +83 -83
- package/es/components/table/Table/SelectField/index.d.ts +3 -2
- package/es/components/table/Table/SelectField/index.less +96 -96
- package/es/components/table/Table/fields/date/Config/index.d.ts +3 -2
- package/es/components/table/Table/fields/date/Edit/index.d.ts +4 -4
- package/es/components/table/Table/fields/date/Show/index.d.ts +4 -3
- package/es/components/table/Table/fields/date/Sort/index.d.ts +3 -2
- package/es/components/table/Table/fields/date/filterUtil/index.d.ts +13 -13
- package/es/components/table/Table/fields/date/filterUtil/index.js +6 -6
- package/es/components/table/Table/fields/date/index.d.ts +16 -15
- package/es/components/table/Table/fields/image/Config/index.d.ts +3 -2
- package/es/components/table/Table/fields/image/Edit/index.d.ts +4 -4
- package/es/components/table/Table/fields/image/Show/index.d.ts +4 -3
- package/es/components/table/Table/fields/image/Sort/index.d.ts +3 -2
- package/es/components/table/Table/fields/image/index.d.ts +14 -13
- package/es/components/table/Table/fields/index.d.ts +386 -385
- package/es/components/table/Table/fields/link/Config/index.d.ts +3 -2
- package/es/components/table/Table/fields/link/Edit/index.d.ts +4 -4
- package/es/components/table/Table/fields/link/Show/index.d.ts +4 -3
- package/es/components/table/Table/fields/link/Sort/index.d.ts +3 -2
- package/es/components/table/Table/fields/link/index.d.ts +14 -13
- package/es/components/table/Table/fields/number/Config/index.d.ts +3 -2
- package/es/components/table/Table/fields/number/Edit/index.d.ts +4 -4
- package/es/components/table/Table/fields/number/Show/index.d.ts +4 -3
- package/es/components/table/Table/fields/number/Sort/index.d.ts +3 -2
- package/es/components/table/Table/fields/number/filterUtil/index.d.ts +5 -5
- package/es/components/table/Table/fields/number/index.d.ts +16 -15
- package/es/components/table/Table/fields/numberRange/Config/index.d.ts +3 -2
- package/es/components/table/Table/fields/numberRange/Edit/index.d.ts +4 -4
- package/es/components/table/Table/fields/numberRange/Show/index.d.ts +4 -3
- package/es/components/table/Table/fields/numberRange/Sort/index.d.ts +3 -2
- package/es/components/table/Table/fields/numberRange/filterUtil/index.d.ts +8 -8
- package/es/components/table/Table/fields/numberRange/index.d.ts +16 -15
- package/es/components/table/Table/fields/oldRangePicker/Config/index.d.ts +3 -2
- package/es/components/table/Table/fields/oldRangePicker/Edit/index.d.ts +4 -4
- package/es/components/table/Table/fields/oldRangePicker/Show/index.d.ts +4 -3
- package/es/components/table/Table/fields/oldRangePicker/Sort/index.d.ts +3 -2
- package/es/components/table/Table/fields/oldRangePicker/filterUtil/index.d.ts +13 -13
- package/es/components/table/Table/fields/oldRangePicker/filterUtil/index.js +11 -11
- package/es/components/table/Table/fields/oldRangePicker/index.d.ts +16 -15
- package/es/components/table/Table/fields/pSwitch/Config/index.d.ts +3 -2
- package/es/components/table/Table/fields/pSwitch/Edit/index.d.ts +4 -4
- package/es/components/table/Table/fields/pSwitch/Show/index.d.ts +4 -3
- package/es/components/table/Table/fields/pSwitch/Sort/index.d.ts +3 -2
- package/es/components/table/Table/fields/pSwitch/index.d.ts +14 -13
- package/es/components/table/Table/fields/rangePicker/Config/index.d.ts +3 -2
- package/es/components/table/Table/fields/rangePicker/Edit/index.d.ts +4 -4
- package/es/components/table/Table/fields/rangePicker/Show/index.d.ts +4 -3
- package/es/components/table/Table/fields/rangePicker/Sort/index.d.ts +3 -2
- package/es/components/table/Table/fields/rangePicker/filterUtil/index.d.ts +13 -13
- package/es/components/table/Table/fields/rangePicker/filterUtil/index.js +11 -11
- package/es/components/table/Table/fields/rangePicker/index.d.ts +16 -15
- package/es/components/table/Table/fields/search/Config/index.d.ts +3 -2
- package/es/components/table/Table/fields/search/Edit/index.d.ts +4 -4
- package/es/components/table/Table/fields/search/Show/index.d.ts +4 -3
- package/es/components/table/Table/fields/search/Sort/index.d.ts +3 -2
- package/es/components/table/Table/fields/search/filterUtil/index.d.ts +5 -5
- package/es/components/table/Table/fields/search/index.d.ts +16 -15
- package/es/components/table/Table/fields/select/Config/index.d.ts +3 -2
- package/es/components/table/Table/fields/select/Edit/index.d.ts +4 -4
- package/es/components/table/Table/fields/select/Show/index.d.ts +4 -3
- package/es/components/table/Table/fields/select/Sort/index.d.ts +3 -2
- package/es/components/table/Table/fields/select/filterUtil/index.d.ts +5 -5
- package/es/components/table/Table/fields/select/index.d.ts +16 -15
- package/es/components/table/Table/fields/text/Config/index.d.ts +3 -2
- package/es/components/table/Table/fields/text/Edit/index.d.ts +4 -4
- package/es/components/table/Table/fields/text/Show/index.d.ts +5 -4
- package/es/components/table/Table/fields/text/Show/index.less +8 -8
- package/es/components/table/Table/fields/text/Sort/index.d.ts +3 -2
- package/es/components/table/Table/fields/text/filterUtil/index.d.ts +5 -5
- package/es/components/table/Table/fields/text/index.d.ts +16 -15
- package/es/components/table/Table/fields/treeSelect/Config/index.d.ts +3 -2
- package/es/components/table/Table/fields/treeSelect/Edit/index.d.ts +4 -4
- package/es/components/table/Table/fields/treeSelect/Show/index.d.ts +4 -3
- package/es/components/table/Table/fields/treeSelect/Sort/index.d.ts +3 -2
- package/es/components/table/Table/fields/treeSelect/filterUtil/index.d.ts +5 -5
- package/es/components/table/Table/fields/treeSelect/index.d.ts +16 -15
- package/es/components/table/Table/fields/types/index.d.ts +30 -30
- package/es/components/table/Table/fields/utils/index.d.ts +1 -1
- package/es/components/table/Table/index.d.ts +4 -4
- package/es/components/table/Table/index.less +35 -35
- package/es/components/table/Table/tableConfig/SortRow/index.d.ts +4 -3
- package/es/components/table/Table/tableConfig/body/CellContent/index.d.ts +4 -4
- package/es/components/table/Table/tableConfig/body/CellContent/index.less +14 -14
- package/es/components/table/Table/tableConfig/body/CellProvider/index.d.ts +4 -4
- package/es/components/table/Table/tableConfig/body/CellProvider/index.less +14 -14
- package/es/components/table/Table/tableConfig/body/index.d.ts +35 -35
- package/es/components/table/Table/tableConfig/body/index.less +20 -20
- package/es/components/table/Table/tableConfig/header/CellProvider/index.d.ts +14 -14
- package/es/components/table/Table/tableConfig/header/CellProvider/index.less +35 -35
- package/es/components/table/Table/tableConfig/header/index.d.ts +19 -19
- package/es/components/table/Table/tableConfig/summary/index.d.ts +3 -2
- package/es/components/table/Table/utils.d.ts +161 -161
- package/es/components/table/Table/utils.js +71 -71
- package/es/components/table/TableFilter/SortIcon.d.ts +6 -5
- package/es/components/table/TableFilter/index.less +13 -13
- package/es/components/table/TableFilter/numberFilter.d.ts +6 -6
- package/es/components/table/TableFilter/selectFilter.d.ts +10 -10
- package/es/components/table/TableFilter/stringFilter.d.ts +6 -6
- package/es/components/table/Tabs/index.d.ts +14 -14
- package/es/components/table/View/index.d.ts +6 -5
- package/es/components/table/hooks/useGenScroll.d.ts +22 -22
- package/es/components/table/hooks/useGenTableComponents.d.ts +16 -16
- package/es/components/table/hooks/useIsMobileTable.d.ts +2 -2
- package/es/components/table/hooks/useMergeColumnSetting.d.ts +18 -18
- package/es/components/table/hooks/useTableSetting.d.ts +21 -21
- package/es/components/table/hooks/useTableSetting.js +10 -10
- package/es/components/table/hooks/useTransColumns.d.ts +14 -14
- package/es/components/table/hooks/useTransDataSource.d.ts +11 -11
- package/es/components/table/hooks/useTransDataSource.js +7 -7
- package/es/components/table/hooks/useTransDataSourceGroupSetting.d.ts +7 -7
- package/es/components/table/hooks/useTransFilterSetting.d.ts +7 -7
- package/es/components/table/hooks/useTransSortSetting.d.ts +7 -7
- package/es/components/table/hooks/useTriggerValuesChange.d.ts +16 -16
- package/es/components/table/hooks/useTriggerValuesChange.js +10 -10
- package/es/components/table/index.d.ts +4 -4
- package/es/components/table/index.less +152 -152
- package/es/components/table/model.d.ts +30 -30
- package/es/components/table/serve.d.ts +13 -13
- package/es/components/table/serve.js +7 -7
- package/es/components/table/status.d.ts +19 -19
- package/es/components/table/types.d.ts +268 -268
- package/es/components/table/utils.d.ts +14 -14
- package/es/components/tabs/index.d.ts +17 -17
- package/es/components/tabs/index.less +60 -60
- package/es/components/time-picker/index.d.ts +3 -2
- package/es/components/translation/index.d.ts +14 -14
- package/es/components/translation/index.less +15 -15
- package/es/components/translation/utils.d.ts +7 -7
- package/es/components/tree-select/index.d.ts +2 -2
- package/es/components/typography/index.d.ts +2 -2
- package/es/components/upload/index.d.ts +3 -2
- package/es/components/versionModal/index.d.ts +23 -23
- package/es/components/versionModal/index.less +10 -10
- package/es/components/versionSelect/index.d.ts +18 -17
- package/es/components/versionSelect/index.less +3 -3
- package/es/components/virtual-keyboard/Amount/index.d.ts +22 -22
- package/es/components/virtual-keyboard/BaseNumberKeyboard/Presets.d.ts +12 -11
- package/es/components/virtual-keyboard/BaseNumberKeyboard/Presets.less +18 -18
- package/es/components/virtual-keyboard/BaseNumberKeyboard/index.d.ts +19 -19
- package/es/components/virtual-keyboard/BaseNumberKeyboard/index.less +8 -8
- package/es/components/virtual-keyboard/Keyboard/index.d.ts +21 -21
- package/es/components/virtual-keyboard/Keyboard/index.less +43 -43
- package/es/components/virtual-keyboard/Number/index.d.ts +14 -13
- package/es/components/virtual-keyboard/Time/index.d.ts +13 -13
- package/es/components/virtual-keyboard/Time/utils.d.ts +10 -9
- package/es/components/virtual-keyboard/VirtualInput/index.d.ts +9 -9
- package/es/components/virtual-keyboard/VirtualInput/index.less +46 -46
- package/es/components/virtual-keyboard/VirtualKeyInput/index.d.ts +12 -11
- package/es/components/virtual-keyboard/VirtualKeyInput/index.less +51 -51
- package/es/components/virtual-keyboard/index.d.ts +14 -14
- package/es/components/virtual-keyboard/index.less +16 -16
- package/es/components/walletCard/Guest/index.d.ts +4 -3
- package/es/components/walletCard/Guest/index.js +13 -13
- package/es/components/walletCard/Guest/index.less +71 -71
- package/es/components/walletCard/Guide/index.d.ts +4 -3
- package/es/components/walletCard/Guide/index.js +13 -13
- package/es/components/walletCard/Guide/index.less +71 -71
- package/es/components/walletCard/index.d.ts +77 -77
- package/es/components/walletCard/index.js +2 -2
- package/es/components/walletCard/index.less +353 -353
- package/es/hooks/index.d.ts +3 -3
- package/es/hooks/useCssVariables.d.ts +8 -8
- package/es/hooks/useEngineContext.d.ts +9 -9
- package/es/hooks/useMobile.d.ts +8 -0
- package/es/hooks/useMobile.js +43 -0
- package/es/hooks/useResponsive.d.ts +4 -4
- package/es/hooks/useSetRequest.d.ts +2 -2
- package/es/hooks/useSharedState.d.ts +11 -11
- package/es/hooks/useSharedState.js +7 -7
- package/es/hooks/useTranslationOriginal.d.ts +2 -2
- package/es/index.d.ts +168 -142
- package/es/index.js +16 -1
- package/es/locales/en-US.d.ts +316 -293
- package/es/locales/en-US.js +30 -1
- package/es/locales/index.d.ts +1 -1
- package/es/locales/index.js +6 -6
- package/es/locales/zh-CN.d.ts +311 -288
- package/es/locales/zh-CN.js +30 -1
- package/es/locales/zh-TW.d.ts +311 -288
- package/es/locales/zh-TW.js +30 -1
- package/es/typings.d.ts +9 -9
- package/es/utils/hoc.d.ts +17 -17
- package/es/utils/hoc.js +9 -9
- package/es/utils/index.d.ts +4 -4
- package/es/utils/locale.d.ts +1 -1
- package/es/utils/mergeWith.d.ts +1 -1
- package/es/utils/miniRedux.d.ts +17 -17
- package/es/utils/platform.d.ts +1 -1
- package/es/utils/warning.d.ts +1 -1
- package/lib/components/DragSortList/index.d.ts +38 -38
- package/lib/components/MultipleContainersSortList/index.d.ts +26 -26
- package/lib/components/MultipleContainersSortList/index.less +5 -5
- package/lib/components/Pagination/index.d.ts +14 -14
- package/lib/components/Pagination/index.less +214 -214
- package/lib/components/PisellBasicGrid/PisellBasicGrid.d.ts +10 -0
- package/lib/components/PisellBasicGrid/PisellBasicGrid.js +132 -0
- package/lib/components/PisellBasicGrid/PisellBasicGrid.less +20 -0
- package/lib/components/PisellBasicGrid/hooks/index.d.ts +1 -0
- package/lib/components/PisellBasicGrid/hooks/index.js +40 -0
- package/lib/components/PisellBasicGrid/hooks/useGridStyle.d.ts +37 -0
- package/lib/components/PisellBasicGrid/hooks/useGridStyle.js +104 -0
- package/lib/components/PisellBasicGrid/index.d.ts +6 -0
- package/lib/components/PisellBasicGrid/index.js +40 -0
- package/lib/components/PisellBasicGrid/types.d.ts +221 -0
- package/lib/components/PisellBasicGrid/types.js +17 -0
- package/lib/components/PisellBasicGrid/utils/index.d.ts +63 -0
- package/lib/components/PisellBasicGrid/utils/index.js +108 -0
- package/lib/components/PisellCards/PisellCards.d.ts +8 -0
- package/lib/components/PisellCards/PisellCards.js +28 -0
- package/lib/components/PisellCards/PisellCards.less +1 -0
- package/lib/components/PisellCards/components/GraphicTextCard/GraphicTextCard.d.ts +9 -0
- package/lib/components/PisellCards/components/GraphicTextCard/GraphicTextCard.js +136 -0
- package/lib/components/PisellCards/components/GraphicTextCard/GraphicTextCard.less +320 -0
- package/lib/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.d.ts +5 -0
- package/lib/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.js +35 -0
- package/lib/components/PisellCards/components/GraphicTextCard/components/GraphicArea.d.ts +24 -0
- package/lib/components/PisellCards/components/GraphicTextCard/components/GraphicArea.js +108 -0
- package/lib/components/PisellCards/components/GraphicTextCard/components/TextContent.d.ts +27 -0
- package/lib/components/PisellCards/components/GraphicTextCard/components/TextContent.js +101 -0
- package/lib/components/PisellCards/components/GraphicTextCard/components/index.d.ts +6 -0
- package/lib/components/PisellCards/components/GraphicTextCard/components/index.js +45 -0
- package/lib/components/PisellCards/components/GraphicTextCard/hooks/index.d.ts +5 -0
- package/lib/components/PisellCards/components/GraphicTextCard/hooks/index.js +32 -0
- package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.d.ts +15 -0
- package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.js +54 -0
- package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.d.ts +18 -0
- package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.js +92 -0
- package/lib/components/PisellCards/components/GraphicTextCard/index.d.ts +5 -0
- package/lib/components/PisellCards/components/GraphicTextCard/index.js +35 -0
- package/lib/components/PisellCards/components/GraphicTextCard/types.d.ts +290 -0
- package/lib/components/PisellCards/components/GraphicTextCard/types.js +17 -0
- package/lib/components/PisellCards/components/GraphicTextCard/utils/index.d.ts +19 -0
- package/lib/components/PisellCards/components/GraphicTextCard/utils/index.js +55 -0
- package/lib/components/PisellCards/components/MultilevelCard/MultilevelCard.d.ts +19 -0
- package/lib/components/PisellCards/components/MultilevelCard/MultilevelCard.js +137 -0
- package/lib/components/PisellCards/components/MultilevelCard/MultilevelCard.less +52 -0
- package/lib/components/PisellCards/components/MultilevelCard/components/CardWrapper.d.ts +7 -0
- package/lib/components/PisellCards/components/MultilevelCard/components/CardWrapper.js +79 -0
- package/lib/components/PisellCards/components/MultilevelCard/components/PanelWrapper.d.ts +7 -0
- package/lib/components/PisellCards/components/MultilevelCard/components/PanelWrapper.js +121 -0
- package/lib/components/PisellCards/components/MultilevelCard/components/index.d.ts +2 -0
- package/lib/components/PisellCards/components/MultilevelCard/components/index.js +32 -0
- package/lib/components/PisellCards/components/MultilevelCard/hooks/index.d.ts +2 -0
- package/lib/components/PisellCards/components/MultilevelCard/hooks/index.js +32 -0
- package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.d.ts +32 -0
- package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.js +45 -0
- package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.d.ts +28 -0
- package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.js +71 -0
- package/lib/components/PisellCards/components/MultilevelCard/index.d.ts +2 -0
- package/lib/components/PisellCards/components/MultilevelCard/index.js +35 -0
- package/lib/components/PisellCards/components/MultilevelCard/types.d.ts +202 -0
- package/lib/components/PisellCards/components/MultilevelCard/types.js +17 -0
- package/lib/components/PisellCards/components/MultilevelCard/utils/index.d.ts +6 -0
- package/lib/components/PisellCards/components/MultilevelCard/utils/index.js +37 -0
- package/lib/components/PisellCards/components/PisellImageCard/PisellImageCard.d.ts +9 -0
- package/lib/components/PisellCards/components/PisellImageCard/PisellImageCard.js +131 -0
- package/lib/components/PisellCards/components/PisellImageCard/PisellImageCard.less +94 -0
- package/lib/components/PisellCards/components/PisellImageCard/components/index.d.ts +0 -0
- package/lib/components/PisellCards/components/PisellImageCard/components/index.js +0 -0
- package/lib/components/PisellCards/components/PisellImageCard/hooks/index.d.ts +5 -0
- package/lib/components/PisellCards/components/PisellImageCard/hooks/index.js +32 -0
- package/lib/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.d.ts +12 -0
- package/lib/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.js +86 -0
- package/lib/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.d.ts +10 -0
- package/lib/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.js +86 -0
- package/lib/components/PisellCards/components/PisellImageCard/index.d.ts +5 -0
- package/lib/components/PisellCards/components/PisellImageCard/index.js +35 -0
- package/lib/components/PisellCards/components/PisellImageCard/types.d.ts +74 -0
- package/lib/components/PisellCards/components/PisellImageCard/types.js +17 -0
- package/lib/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.d.ts +7 -0
- package/lib/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.js +37 -0
- package/lib/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.d.ts +7 -0
- package/lib/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.js +32 -0
- package/lib/components/PisellCards/components/PisellImageCard/utils/index.d.ts +5 -0
- package/lib/components/PisellCards/components/PisellImageCard/utils/index.js +32 -0
- package/lib/components/PisellCards/components/TabCard/TabCard.d.ts +4 -0
- package/lib/components/PisellCards/components/TabCard/TabCard.js +153 -0
- package/lib/components/PisellCards/components/TabCard/TabCard.less +186 -0
- package/lib/components/PisellCards/components/TabCard/index.d.ts +5 -0
- package/lib/components/PisellCards/components/TabCard/index.js +35 -0
- package/lib/components/PisellCards/components/TabCard/types.d.ts +70 -0
- package/lib/components/PisellCards/components/TabCard/types.js +17 -0
- package/lib/components/PisellCards/components/TextCard/TextCard.d.ts +8 -0
- package/lib/components/PisellCards/components/TextCard/TextCard.js +189 -0
- package/lib/components/PisellCards/components/TextCard/TextCard.less +193 -0
- package/lib/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +26 -0
- package/lib/components/PisellCards/components/TextCard/components/BadgeWrapper.js +71 -0
- package/lib/components/PisellCards/components/TextCard/components/IconWrapper.d.ts +17 -0
- package/lib/components/PisellCards/components/TextCard/components/IconWrapper.js +62 -0
- package/lib/components/PisellCards/components/TextCard/components/TextContent.d.ts +21 -0
- package/lib/components/PisellCards/components/TextCard/components/TextContent.js +92 -0
- package/lib/components/PisellCards/components/TextCard/components/index.d.ts +6 -0
- package/lib/components/PisellCards/components/TextCard/components/index.js +45 -0
- package/lib/components/PisellCards/components/TextCard/hooks/index.d.ts +0 -0
- package/lib/components/PisellCards/components/TextCard/hooks/index.js +0 -0
- package/lib/components/PisellCards/components/TextCard/index.d.ts +5 -0
- package/lib/components/PisellCards/components/TextCard/index.js +35 -0
- package/lib/components/PisellCards/components/TextCard/types.d.ts +270 -0
- package/lib/components/PisellCards/components/TextCard/types.js +17 -0
- package/lib/components/PisellCards/components/TextCard/utils/index.d.ts +0 -0
- package/lib/components/PisellCards/components/TextCard/utils/index.js +0 -0
- package/lib/components/PisellCards/components/index.d.ts +10 -0
- package/lib/components/PisellCards/components/index.js +51 -0
- package/lib/components/PisellCards/hooks/index.d.ts +0 -0
- package/lib/components/PisellCards/hooks/index.js +0 -0
- package/lib/components/PisellCards/index.d.ts +15 -0
- package/lib/components/PisellCards/index.js +47 -0
- package/lib/components/PisellCards/types.d.ts +48 -0
- package/lib/components/PisellCards/types.js +17 -0
- package/lib/components/PisellCards/utils/index.d.ts +0 -0
- package/lib/components/PisellCards/utils/index.js +0 -0
- package/lib/components/PisellProcedure/PisellProcedure.d.ts +22 -0
- package/lib/components/PisellProcedure/PisellProcedure.js +189 -0
- package/lib/components/PisellProcedure/PisellProcedure.less +529 -0
- package/lib/components/PisellProcedure/PisellProcedure.stories.d.ts +163 -0
- package/lib/components/PisellProcedure/PisellProcedure.stories.js +925 -0
- package/lib/components/PisellProcedure/components/FooterActions.d.ts +24 -0
- package/lib/components/PisellProcedure/components/FooterActions.js +97 -0
- package/lib/components/PisellProcedure/components/ProcedureBody.d.ts +41 -0
- package/lib/components/PisellProcedure/components/ProcedureBody.js +161 -0
- package/lib/components/PisellProcedure/components/ProcedureContent.d.ts +23 -0
- package/lib/components/PisellProcedure/components/ProcedureContent.js +50 -0
- package/lib/components/PisellProcedure/components/ProcedureFooter.d.ts +38 -0
- package/lib/components/PisellProcedure/components/ProcedureFooter.js +156 -0
- package/lib/components/PisellProcedure/components/ProcedureHeader.d.ts +34 -0
- package/lib/components/PisellProcedure/components/ProcedureHeader.js +231 -0
- package/lib/components/PisellProcedure/components/ProcedureSidebar.d.ts +38 -0
- package/lib/components/PisellProcedure/components/ProcedureSidebar.js +133 -0
- package/lib/components/PisellProcedure/components/index.d.ts +12 -0
- package/lib/components/PisellProcedure/components/index.js +54 -0
- package/lib/components/PisellProcedure/hooks/index.d.ts +8 -0
- package/lib/components/PisellProcedure/hooks/index.js +41 -0
- package/lib/components/PisellProcedure/hooks/useElementSize.d.ts +38 -0
- package/lib/components/PisellProcedure/hooks/useElementSize.js +88 -0
- package/lib/components/PisellProcedure/hooks/useOverflowActions.d.ts +43 -0
- package/lib/components/PisellProcedure/hooks/useOverflowActions.js +248 -0
- package/lib/components/PisellProcedure/hooks/useResponsiveClass.d.ts +6 -0
- package/lib/components/PisellProcedure/hooks/useResponsiveClass.js +58 -0
- package/lib/components/PisellProcedure/hooks/useSidebarHeight.d.ts +16 -0
- package/lib/components/PisellProcedure/hooks/useSidebarHeight.js +120 -0
- package/lib/components/PisellProcedure/hooks/useStepManager.d.ts +50 -0
- package/lib/components/PisellProcedure/hooks/useStepManager.js +90 -0
- package/lib/components/PisellProcedure/index.d.ts +5 -0
- package/lib/components/PisellProcedure/index.js +35 -0
- package/lib/components/PisellProcedure/types.d.ts +363 -0
- package/lib/components/PisellProcedure/types.js +17 -0
- package/lib/components/PisellProcedure/utils/classNames.d.ts +33 -0
- package/lib/components/PisellProcedure/utils/classNames.js +41 -0
- package/lib/components/PisellProcedure/utils/extractText.d.ts +20 -0
- package/lib/components/PisellProcedure/utils/extractText.js +49 -0
- package/lib/components/PisellProcedure/utils/footerPosition.d.ts +41 -0
- package/lib/components/PisellProcedure/utils/footerPosition.js +58 -0
- package/lib/components/PisellProcedure/utils/index.d.ts +8 -0
- package/lib/components/PisellProcedure/utils/index.js +67 -0
- package/lib/components/PisellProcedure/utils/layoutRatio.d.ts +42 -0
- package/lib/components/PisellProcedure/utils/layoutRatio.js +78 -0
- package/lib/components/PisellProcedure/utils/slotHelper.d.ts +27 -0
- package/lib/components/PisellProcedure/utils/slotHelper.js +53 -0
- package/lib/components/PisellScrollView/PisellScrollView.d.ts +5 -0
- package/lib/components/PisellScrollView/PisellScrollView.js +310 -0
- package/lib/components/PisellScrollView/PisellScrollView.less +178 -0
- package/lib/components/PisellScrollView/PisellScrollView.stories.d.ts +87 -0
- package/lib/components/PisellScrollView/PisellScrollView.stories.js +535 -0
- package/lib/components/PisellScrollView/components/Actions/index.d.ts +12 -0
- package/lib/components/PisellScrollView/components/Actions/index.js +220 -0
- package/lib/components/PisellScrollView/components/Actions/index.less +134 -0
- package/lib/components/PisellScrollView/hooks/index.d.ts +3 -0
- package/lib/components/PisellScrollView/hooks/index.js +27 -0
- package/lib/components/PisellScrollView/hooks/useIntersection.d.ts +8 -0
- package/lib/components/PisellScrollView/hooks/useIntersection.js +67 -0
- package/lib/components/PisellScrollView/hooks/useScrollEvents.d.ts +20 -0
- package/lib/components/PisellScrollView/hooks/useScrollEvents.js +114 -0
- package/lib/components/PisellScrollView/hooks/useScrollState.d.ts +13 -0
- package/lib/components/PisellScrollView/hooks/useScrollState.js +208 -0
- package/lib/components/PisellScrollView/index.d.ts +3 -0
- package/lib/components/PisellScrollView/index.js +36 -0
- package/lib/components/PisellScrollView/types.d.ts +203 -0
- package/lib/components/PisellScrollView/types.js +17 -0
- package/lib/components/PisellScrollView/utils/index.d.ts +0 -0
- package/lib/components/PisellScrollView/utils/index.js +0 -0
- package/lib/components/PisellSteps/PisellSteps.d.ts +14 -0
- package/lib/components/PisellSteps/PisellSteps.js +252 -0
- package/lib/components/PisellSteps/PisellSteps.less +332 -0
- package/lib/components/PisellSteps/PisellSteps.stories.d.ts +155 -0
- package/lib/components/PisellSteps/PisellSteps.stories.js +570 -0
- package/lib/components/PisellSteps/hooks/index.d.ts +4 -0
- package/lib/components/PisellSteps/hooks/index.js +38 -0
- package/lib/components/PisellSteps/hooks/useAnchor.d.ts +9 -0
- package/lib/components/PisellSteps/hooks/useAnchor.js +66 -0
- package/lib/components/PisellSteps/hooks/useResponsive.d.ts +8 -0
- package/lib/components/PisellSteps/hooks/useResponsive.js +48 -0
- package/lib/components/PisellSteps/hooks/useStepClick.d.ts +11 -0
- package/lib/components/PisellSteps/hooks/useStepClick.js +55 -0
- package/lib/components/PisellSteps/hooks/useStepsState.d.ts +9 -0
- package/lib/components/PisellSteps/hooks/useStepsState.js +56 -0
- package/lib/components/PisellSteps/index.d.ts +3 -0
- package/lib/components/PisellSteps/index.js +36 -0
- package/lib/components/PisellSteps/types.d.ts +257 -0
- package/lib/components/PisellSteps/types.js +17 -0
- package/lib/components/PisellSteps/utils/index.d.ts +54 -0
- package/lib/components/PisellSteps/utils/index.js +88 -0
- package/lib/components/PisellSuperTabs/PisellSuperTabs.d.ts +8 -0
- package/lib/components/PisellSuperTabs/PisellSuperTabs.js +207 -0
- package/lib/components/PisellSuperTabs/PisellSuperTabs.less +35 -0
- package/lib/components/PisellSuperTabs/components/index.d.ts +0 -0
- package/lib/components/PisellSuperTabs/components/index.js +0 -0
- package/lib/components/PisellSuperTabs/hooks/index.d.ts +1 -0
- package/lib/components/PisellSuperTabs/hooks/index.js +29 -0
- package/lib/components/PisellSuperTabs/hooks/useTabsState.d.ts +7 -0
- package/lib/components/PisellSuperTabs/hooks/useTabsState.js +50 -0
- package/lib/components/PisellSuperTabs/index.d.ts +3 -0
- package/lib/components/PisellSuperTabs/index.js +36 -0
- package/lib/components/PisellSuperTabs/types.d.ts +210 -0
- package/lib/components/PisellSuperTabs/types.js +17 -0
- package/lib/components/PisellSuperTabs/utils/getRowKey.d.ts +8 -0
- package/lib/components/PisellSuperTabs/utils/getRowKey.js +50 -0
- package/lib/components/PisellSuperTabs/utils/index.d.ts +1 -0
- package/lib/components/PisellSuperTabs/utils/index.js +29 -0
- package/lib/components/PisellTabbar/PisellTabbar.d.ts +20 -0
- package/lib/components/PisellTabbar/PisellTabbar.js +185 -0
- package/lib/components/PisellTabbar/PisellTabbar.less +26 -0
- package/lib/components/PisellTabbar/components/TabbarLevel.d.ts +8 -0
- package/lib/components/PisellTabbar/components/TabbarLevel.js +295 -0
- package/lib/components/PisellTabbar/components/index.d.ts +1 -0
- package/lib/components/PisellTabbar/components/index.js +39 -0
- package/lib/components/PisellTabbar/constants.d.ts +46 -0
- package/lib/components/PisellTabbar/constants.js +100 -0
- package/lib/components/PisellTabbar/hooks/index.d.ts +2 -0
- package/lib/components/PisellTabbar/hooks/index.js +42 -0
- package/lib/components/PisellTabbar/hooks/useActiveKey.d.ts +49 -0
- package/lib/components/PisellTabbar/hooks/useActiveKey.js +57 -0
- package/lib/components/PisellTabbar/hooks/useExpand.d.ts +41 -0
- package/lib/components/PisellTabbar/hooks/useExpand.js +53 -0
- package/lib/components/PisellTabbar/index.d.ts +9 -0
- package/lib/components/PisellTabbar/index.js +42 -0
- package/lib/components/PisellTabbar/locales.d.ts +15 -0
- package/lib/components/PisellTabbar/locales.js +38 -0
- package/lib/components/PisellTabbar/mock.d.ts +47 -0
- package/lib/components/PisellTabbar/mock.js +1482 -0
- package/lib/components/PisellTabbar/template/Template1/PisellTabbar.d.ts +20 -0
- package/lib/components/PisellTabbar/template/Template1/PisellTabbar.js +436 -0
- package/lib/components/PisellTabbar/template/Template1/constants.d.ts +10 -0
- package/lib/components/PisellTabbar/template/Template1/constants.js +60 -0
- package/lib/components/PisellTabbar/template/Template1/index.d.ts +6 -0
- package/lib/components/PisellTabbar/template/Template1/index.js +36 -0
- package/lib/components/PisellTabbar/template/Template1/utils/index.d.ts +35 -0
- package/lib/components/PisellTabbar/template/Template1/utils/index.js +68 -0
- package/lib/components/PisellTabbar/template/index.d.ts +0 -0
- package/lib/components/PisellTabbar/template/index.js +0 -0
- package/lib/components/PisellTabbar/types.d.ts +111 -0
- package/lib/components/PisellTabbar/types.js +17 -0
- package/lib/components/PisellTabbar/utils/index.d.ts +68 -0
- package/lib/components/PisellTabbar/utils/index.js +77 -0
- package/lib/components/PisellTabbar2/PisellTabbar.d.ts +23 -0
- package/lib/components/PisellTabbar2/PisellTabbar.js +263 -0
- package/lib/components/PisellTabbar2/PisellTabbar.less +26 -0
- package/lib/components/PisellTabbar2/components/TabbarLevel.d.ts +8 -0
- package/lib/components/PisellTabbar2/components/TabbarLevel.js +367 -0
- package/lib/components/PisellTabbar2/components/index.d.ts +1 -0
- package/lib/components/PisellTabbar2/components/index.js +39 -0
- package/lib/components/PisellTabbar2/constants.d.ts +46 -0
- package/lib/components/PisellTabbar2/constants.js +100 -0
- package/lib/components/PisellTabbar2/hooks/index.d.ts +2 -0
- package/lib/components/PisellTabbar2/hooks/index.js +42 -0
- package/lib/components/PisellTabbar2/hooks/useActiveKey.d.ts +50 -0
- package/lib/components/PisellTabbar2/hooks/useActiveKey.js +75 -0
- package/lib/components/PisellTabbar2/hooks/useExpand.d.ts +41 -0
- package/lib/components/PisellTabbar2/hooks/useExpand.js +53 -0
- package/lib/components/PisellTabbar2/index.d.ts +6 -0
- package/lib/components/PisellTabbar2/index.js +35 -0
- package/lib/components/PisellTabbar2/locales.d.ts +15 -0
- package/lib/components/PisellTabbar2/locales.js +38 -0
- package/lib/components/PisellTabbar2/mock.d.ts +205 -0
- package/lib/components/PisellTabbar2/mock.js +2697 -0
- package/lib/components/PisellTabbar2/types.d.ts +117 -0
- package/lib/components/PisellTabbar2/types.js +17 -0
- package/lib/components/PisellTabbar2/utils/index.d.ts +35 -0
- package/lib/components/PisellTabbar2/utils/index.js +84 -0
- package/lib/components/PisellTabbar3/PisellTabbar.d.ts +20 -0
- package/lib/components/PisellTabbar3/PisellTabbar.js +639 -0
- package/lib/components/PisellTabbar3/PisellTabbar.less +26 -0
- package/lib/components/PisellTabbar3/index.d.ts +6 -0
- package/lib/components/PisellTabbar3/index.js +35 -0
- package/lib/components/PisellTabbar3/locales.d.ts +15 -0
- package/lib/components/PisellTabbar3/locales.js +38 -0
- package/lib/components/PisellTabbar3/mock.d.ts +47 -0
- package/lib/components/PisellTabbar3/mock.js +1482 -0
- package/lib/components/PisellTabbar3/types.d.ts +111 -0
- package/lib/components/PisellTabbar3/types.js +17 -0
- package/lib/components/Template/PisellSteps.d.ts +0 -0
- package/lib/components/Template/PisellSteps.js +0 -0
- package/lib/components/Template/PisellSteps.less +1 -0
- package/lib/components/Template/components/index.d.ts +0 -0
- package/lib/components/Template/components/index.js +0 -0
- package/lib/components/Template/hooks/index.d.ts +0 -0
- package/lib/components/Template/hooks/index.js +0 -0
- package/lib/components/Template/index.d.ts +0 -0
- package/lib/components/Template/index.js +0 -0
- package/lib/components/Template/types.d.ts +0 -0
- package/lib/components/Template/types.js +0 -0
- package/lib/components/Template/utils/index.d.ts +0 -0
- package/lib/components/Template/utils/index.js +0 -0
- package/lib/components/TimeResourceSelector/index.d.ts +21 -21
- package/lib/components/TimeResourceSelector/index.less +59 -59
- package/lib/components/appVersionControl/index.d.ts +5 -4
- package/lib/components/appVersionControl/index.less +34 -34
- package/lib/components/appVersionControl/types.d.ts +24 -24
- package/lib/components/appVersionControl/utils.d.ts +13 -13
- package/lib/components/auto-complete/index.d.ts +2 -2
- package/lib/components/auto-complete-number/index.d.ts +10 -9
- package/lib/components/badge/index.d.ts +8 -7
- package/lib/components/badge/index.less +2 -2
- package/lib/components/batch-editor/fields/Image/index.d.ts +7 -7
- package/lib/components/batch-editor/fields/Image/index.less +5 -5
- package/lib/components/batch-editor/fields/Price/index.d.ts +7 -7
- package/lib/components/batch-editor/fields/Text/index.d.ts +6 -6
- package/lib/components/batch-editor/fields/index.d.ts +7 -6
- package/lib/components/batch-editor/index.d.ts +11 -10
- package/lib/components/batch-editor/index.less +49 -49
- package/lib/components/browserSelect/index.d.ts +21 -21
- package/lib/components/browserSelect/index.less +64 -64
- package/lib/components/button/index.d.ts +9 -9
- package/lib/components/buttonGroupEdit/index.d.ts +8 -8
- package/lib/components/buttonGroupPreview/index.d.ts +19 -19
- package/lib/components/calendar/index.d.ts +3 -2
- package/lib/components/cardMetricItem/index.d.ts +12 -12
- package/lib/components/cardMetricItem/index.less +38 -38
- package/lib/components/cardPro/index.d.ts +4 -3
- package/lib/components/cardPro/index.less +55 -55
- package/lib/components/cascader/index.d.ts +2 -2
- package/lib/components/checkbox/index.d.ts +3 -2
- package/lib/components/classicLayout/index.d.ts +4 -3
- package/lib/components/classicLayout/index.less +21 -21
- package/lib/components/collapse/index.d.ts +15 -15
- package/lib/components/colorPicker/index.d.ts +4 -3
- package/lib/components/component/index.d.ts +11 -11
- package/lib/components/config-provider/index.d.ts +8 -7
- package/lib/components/cropPhoto/index.d.ts +3 -3
- package/lib/components/cropPhoto/index.less +15 -15
- package/lib/components/customSelect/index.d.ts +17 -17
- package/lib/components/customSelect/index.less +6 -6
- package/lib/components/dataSourceComponents/dataSourceForm/BaseForm.d.ts +3 -3
- package/lib/components/dataSourceComponents/dataSourceForm/formItem.d.ts +3 -2
- package/lib/components/dataSourceComponents/dataSourceForm/group/index.d.ts +20 -20
- package/lib/components/dataSourceComponents/dataSourceForm/group/index.less +42 -42
- package/lib/components/dataSourceComponents/dataSourceForm/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/dataSourceForm/index.less +24 -24
- package/lib/components/dataSourceComponents/dataSourceForm/provider/formSetting/FormSettingContext.d.ts +16 -16
- package/lib/components/dataSourceComponents/dataSourceForm/provider/formSetting/FormSettingProvider.d.ts +8 -8
- package/lib/components/dataSourceComponents/dataSourceForm/provider/hooks/useFormSetting.d.ts +5 -5
- package/lib/components/dataSourceComponents/dataSourceForm/provider/hooks/useJsonPrefixPath.d.ts +5 -5
- package/lib/components/dataSourceComponents/dataSourceForm/provider/jsonWrapper/JsonWrapperContext.d.ts +6 -6
- package/lib/components/dataSourceComponents/dataSourceForm/provider/jsonWrapper/JsonWrapperProvider.d.ts +7 -7
- package/lib/components/dataSourceComponents/dataSourceForm/serve.d.ts +179 -179
- package/lib/components/dataSourceComponents/dataSourceForm/style.less +22 -22
- package/lib/components/dataSourceComponents/dataSourceForm/submitButton/index.d.ts +39 -39
- package/lib/components/dataSourceComponents/dataSourceForm/submitButton/index.less +4 -4
- package/lib/components/dataSourceComponents/dataSourceForm/type.d.ts +32 -32
- package/lib/components/dataSourceComponents/dataSourceForm/urlUtils.d.ts +24 -24
- package/lib/components/dataSourceComponents/dataSourceForm/utils.d.ts +56 -56
- package/lib/components/dataSourceComponents/dataSourceMenu/Basic.d.ts +8 -8
- package/lib/components/dataSourceComponents/dataSourceMenu/index.d.ts +8 -8
- package/lib/components/dataSourceComponents/dataSourceShow/dataSourceImage/index.d.ts +3 -2
- package/lib/components/dataSourceComponents/dataSourceShow/dataSourceQRCode/index.d.ts +3 -2
- package/lib/components/dataSourceComponents/dataSourceShow/dataSourceTypography/index.d.ts +10 -10
- package/lib/components/dataSourceComponents/dataSourceShow/utils.d.ts +6 -6
- package/lib/components/dataSourceComponents/dataSourceTable/BaseTable.d.ts +8 -8
- package/lib/components/dataSourceComponents/dataSourceTable/filter/index.d.ts +28 -27
- package/lib/components/dataSourceComponents/dataSourceTable/filter/index.less +4 -4
- package/lib/components/dataSourceComponents/dataSourceTable/filter/utils.d.ts +8 -7
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useColumns.d.ts +11 -11
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDataSourceKey.d.ts +6 -5
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDesignMode.d.ts +2 -2
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +5 -4
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useFormat.d.ts +48 -48
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/usePagination.d.ts +16 -16
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +100 -100
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +34 -33
- package/lib/components/dataSourceComponents/dataSourceTable/index.d.ts +6 -6
- package/lib/components/dataSourceComponents/dataSourceTable/index.less +5 -5
- package/lib/components/dataSourceComponents/dataSourceTable/provider/tableSetting/TableSettingContext.d.ts +7 -7
- package/lib/components/dataSourceComponents/dataSourceTable/provider/tableSetting/TableSettingProvider.d.ts +8 -8
- package/lib/components/dataSourceComponents/dataSourceTable/type.d.ts +84 -84
- package/lib/components/dataSourceComponents/dataSourceWrapper/BaseWrapper.d.ts +7 -7
- package/lib/components/dataSourceComponents/dataSourceWrapper/index.d.ts +4 -3
- package/lib/components/dataSourceComponents/fields/Checkbox/ReadPretty.d.ts +8 -8
- package/lib/components/dataSourceComponents/fields/Checkbox/WithMode.d.ts +7 -7
- package/lib/components/dataSourceComponents/fields/Checkbox/index.d.ts +6 -6
- package/lib/components/dataSourceComponents/fields/Checkbox/type.d.ts +9 -9
- package/lib/components/dataSourceComponents/fields/ColorPicker/ReadPretty.d.ts +5 -4
- package/lib/components/dataSourceComponents/fields/ColorPicker/WithMode.d.ts +4 -4
- package/lib/components/dataSourceComponents/fields/ColorPicker/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/ColorPicker/type.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/DatePicker/ReadPretty.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/DatePicker/ReadPretty.less +11 -11
- package/lib/components/dataSourceComponents/fields/DatePicker/WithMode.d.ts +4 -4
- package/lib/components/dataSourceComponents/fields/DatePicker/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/DatePicker/type.d.ts +6 -6
- package/lib/components/dataSourceComponents/fields/DateRangePicker/ReadPretty.d.ts +5 -4
- package/lib/components/dataSourceComponents/fields/DateRangePicker/ReadPretty.less +11 -11
- package/lib/components/dataSourceComponents/fields/DateRangePicker/WithMode.d.ts +4 -4
- package/lib/components/dataSourceComponents/fields/DateRangePicker/index.d.ts +4 -4
- package/lib/components/dataSourceComponents/fields/DateRangePicker/index.less +14 -14
- package/lib/components/dataSourceComponents/fields/DateRangePicker/type.d.ts +4 -4
- package/lib/components/dataSourceComponents/fields/IconSelect/ReadPretty.d.ts +5 -4
- package/lib/components/dataSourceComponents/fields/IconSelect/ReadPretty.less +6 -6
- package/lib/components/dataSourceComponents/fields/IconSelect/WithMode.d.ts +4 -4
- package/lib/components/dataSourceComponents/fields/IconSelect/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/IconSelect/type.d.ts +8 -8
- package/lib/components/dataSourceComponents/fields/Input/ReadPretty.d.ts +5 -4
- package/lib/components/dataSourceComponents/fields/Input/ReadPretty.less +11 -11
- package/lib/components/dataSourceComponents/fields/Input/WithMode.d.ts +4 -4
- package/lib/components/dataSourceComponents/fields/Input/index.d.ts +22 -22
- package/lib/components/dataSourceComponents/fields/Input/type.d.ts +8 -8
- package/lib/components/dataSourceComponents/fields/Input.Email/ReadPretty.d.ts +5 -4
- package/lib/components/dataSourceComponents/fields/Input.Email/ReadPretty.less +11 -11
- package/lib/components/dataSourceComponents/fields/Input.Email/WithMode.d.ts +6 -6
- package/lib/components/dataSourceComponents/fields/Input.Email/index.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Input.Email/type.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Input.Json/ReadPretty.d.ts +5 -4
- package/lib/components/dataSourceComponents/fields/Input.Json/ReadPretty.less +3 -3
- package/lib/components/dataSourceComponents/fields/Input.Json/WithMode.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Input.Json/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Input.Json/type.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Input.Mobile/ReadPretty.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Input.Mobile/ReadPretty.less +11 -11
- package/lib/components/dataSourceComponents/fields/Input.Mobile/WithMode.d.ts +17 -17
- package/lib/components/dataSourceComponents/fields/Input.Mobile/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Input.Mobile/serve.d.ts +24 -24
- package/lib/components/dataSourceComponents/fields/Input.Mobile/type.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Input.Password/ReadPretty.d.ts +5 -4
- package/lib/components/dataSourceComponents/fields/Input.Password/ReadPretty.less +11 -11
- package/lib/components/dataSourceComponents/fields/Input.Password/WithMode.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Input.Password/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Input.Password/type.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Input.Phone/ReadPretty.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Input.Phone/ReadPretty.less +11 -11
- package/lib/components/dataSourceComponents/fields/Input.Phone/WithMode.d.ts +16 -16
- package/lib/components/dataSourceComponents/fields/Input.Phone/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Input.Phone/serve.d.ts +25 -25
- package/lib/components/dataSourceComponents/fields/Input.Phone/type.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Input.Subdomain/ReadPretty.d.ts +5 -4
- package/lib/components/dataSourceComponents/fields/Input.Subdomain/ReadPretty.less +11 -11
- package/lib/components/dataSourceComponents/fields/Input.Subdomain/WithMode.d.ts +13 -13
- package/lib/components/dataSourceComponents/fields/Input.Subdomain/index.d.ts +12 -12
- package/lib/components/dataSourceComponents/fields/Input.Subdomain/serve.d.ts +11 -11
- package/lib/components/dataSourceComponents/fields/Input.Subdomain/type.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Input.TextArea/ReadPretty.d.ts +5 -4
- package/lib/components/dataSourceComponents/fields/Input.TextArea/ReadPretty.less +11 -11
- package/lib/components/dataSourceComponents/fields/Input.TextArea/WithMode.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Input.TextArea/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Input.TextArea/type.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Input.Url/ReadPretty.d.ts +6 -5
- package/lib/components/dataSourceComponents/fields/Input.Url/ReadPretty.less +13 -13
- package/lib/components/dataSourceComponents/fields/Input.Url/WithMode.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Input.Url/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Input.Url/type.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/InputNumber/ReadPretty.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/InputNumber/ReadPretty.less +11 -11
- package/lib/components/dataSourceComponents/fields/InputNumber/WithMode.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/InputNumber/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/InputNumber/type.d.ts +7 -7
- package/lib/components/dataSourceComponents/fields/InputNumber/utils.d.ts +1 -1
- package/lib/components/dataSourceComponents/fields/Radio/ReadPretty.d.ts +7 -7
- package/lib/components/dataSourceComponents/fields/Radio/WithMode.d.ts +7 -7
- package/lib/components/dataSourceComponents/fields/Radio/index.d.ts +6 -6
- package/lib/components/dataSourceComponents/fields/Radio/type.d.ts +8 -8
- package/lib/components/dataSourceComponents/fields/Select/ReadPretty.d.ts +4 -4
- package/lib/components/dataSourceComponents/fields/Select/WithMode.d.ts +4 -4
- package/lib/components/dataSourceComponents/fields/Select/index.d.ts +11 -10
- package/lib/components/dataSourceComponents/fields/Select/type.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Switch/ReadPretty.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Switch/ReadPretty.less +2 -2
- package/lib/components/dataSourceComponents/fields/Switch/WithMode.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Switch/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Switch/type.d.ts +16 -16
- package/lib/components/dataSourceComponents/fields/TimePicker/ReadPretty.d.ts +5 -4
- package/lib/components/dataSourceComponents/fields/TimePicker/ReadPretty.less +11 -11
- package/lib/components/dataSourceComponents/fields/TimePicker/WithMode.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/TimePicker/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/TimePicker/style.less +85 -85
- package/lib/components/dataSourceComponents/fields/TimePicker/type.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Translation/BaseTranslation.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Translation/ReadPretty.d.ts +5 -4
- package/lib/components/dataSourceComponents/fields/Translation/ReadPretty.less +10 -10
- package/lib/components/dataSourceComponents/fields/Translation/WithMode.d.ts +4 -4
- package/lib/components/dataSourceComponents/fields/Translation/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Translation/index.less +57 -57
- package/lib/components/dataSourceComponents/fields/Translation/type.d.ts +16 -16
- package/lib/components/dataSourceComponents/fields/Upload/BaseUpload.d.ts +5 -5
- package/lib/components/dataSourceComponents/fields/Upload/CameraPopover.d.ts +6 -5
- package/lib/components/dataSourceComponents/fields/Upload/ReadPretty.d.ts +5 -4
- package/lib/components/dataSourceComponents/fields/Upload/ReadPretty.less +11 -11
- package/lib/components/dataSourceComponents/fields/Upload/WithMode.d.ts +4 -4
- package/lib/components/dataSourceComponents/fields/Upload/constants.d.ts +9 -9
- package/lib/components/dataSourceComponents/fields/Upload/index.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Upload/index.less +114 -114
- package/lib/components/dataSourceComponents/fields/Upload/serve.d.ts +20 -20
- package/lib/components/dataSourceComponents/fields/Upload/shopUploadServe.d.ts +56 -56
- package/lib/components/dataSourceComponents/fields/Upload/type.d.ts +38 -38
- package/lib/components/dataSourceComponents/fields/Upload/types.d.ts +48 -48
- package/lib/components/dataSourceComponents/fields/Upload/utils.d.ts +18 -18
- package/lib/components/dataSourceComponents/fields/index.d.ts +102 -101
- package/lib/components/dataSourceComponents/fields/type.d.ts +19 -19
- package/lib/components/dataSourceComponents/fields/utils.d.ts +3 -3
- package/lib/components/dataSourceComponents/hooks/useActions.d.ts +18 -18
- package/lib/components/dataSourceComponents/hooks/useComponentId.d.ts +2 -2
- package/lib/components/dataSourceComponents/hooks/useCtxActions.d.ts +8 -8
- package/lib/components/dataSourceComponents/hooks/useDataSource.d.ts +5 -5
- package/lib/components/dataSourceComponents/hooks/useParseActionsVariable.d.ts +6 -6
- package/lib/components/dataSourceComponents/hooks/usePlatform.d.ts +5 -5
- package/lib/components/dataSourceComponents/hooks/useValueMap.d.ts +8 -8
- package/lib/components/dataSourceComponents/hooks/useVariables.d.ts +2 -2
- package/lib/components/dataSourceComponents/provider/actions/ActionsContext.d.ts +11 -11
- package/lib/components/dataSourceComponents/provider/actions/ActionsProvider.d.ts +12 -12
- package/lib/components/dataSourceComponents/provider/dataSource/DataSourceContext.d.ts +120 -120
- package/lib/components/dataSourceComponents/provider/dataSource/DataSourceProvider.d.ts +8 -8
- package/lib/components/dataSourceComponents/provider/variables/VariablesContext.d.ts +12 -12
- package/lib/components/dataSourceComponents/provider/variables/VariablesProvider.d.ts +4 -4
- package/lib/components/dataSourceComponents/provider/variables/utils.d.ts +12 -12
- package/lib/components/date-picker/constants.d.ts +39 -39
- package/lib/components/date-picker/datePickerCpt.d.ts +9 -8
- package/lib/components/date-picker/hooks/useMediaQuery.d.ts +2 -2
- package/lib/components/date-picker/index.d.ts +3 -2
- package/lib/components/date-picker/index.less +1880 -1880
- package/lib/components/div/index.d.ts +19 -19
- package/lib/components/drag-sort-tree/TreeItem/index.d.ts +19 -18
- package/lib/components/drag-sort-tree/TreeItem/index.less +73 -73
- package/lib/components/drag-sort-tree/index.d.ts +5 -4
- package/lib/components/drag-sort-tree/index.less +3 -3
- package/lib/components/drag-sort-tree/types.d.ts +24 -24
- package/lib/components/drawer/index.d.ts +3 -3
- package/lib/components/drawer/index.less +70 -70
- package/lib/components/dropdown/index.d.ts +3 -2
- package/lib/components/filter/components/Dropdown/index.d.ts +9 -9
- package/lib/components/filter/components/Dropdown/index.less +81 -81
- package/lib/components/filter/components/Dropdown/types.d.ts +11 -11
- package/lib/components/filter/components/FilterButton/index.d.ts +4 -4
- package/lib/components/filter/components/FilterButton/types.d.ts +13 -13
- package/lib/components/filter/components/FilterItem/index.d.ts +5 -5
- package/lib/components/filter/components/QuickFilter/index.d.ts +12 -12
- package/lib/components/filter/components/items/index.d.ts +42 -41
- package/lib/components/filter/components/items/text/Editor/index.d.ts +3 -2
- package/lib/components/filter/components/items/text/Preview/index.d.ts +3 -2
- package/lib/components/filter/components/items/text/index.d.ts +12 -11
- package/lib/components/filter/index.d.ts +4 -3
- package/lib/components/filter/types.d.ts +46 -46
- package/lib/components/form/index.d.ts +2 -2
- package/lib/components/icon/index.d.ts +12 -12
- package/lib/components/iconSelect/index.d.ts +10 -10
- package/lib/components/iconSelect/index.less +54 -54
- package/lib/components/iconSelect/utils.d.ts +14 -14
- package/lib/components/iconfont/index.d.ts +8 -8
- package/lib/components/image/index.d.ts +10 -10
- package/lib/components/input/index.d.ts +11 -11
- package/lib/components/input-number-range/index.d.ts +15 -15
- package/lib/components/list/index.d.ts +7 -6
- package/lib/components/list/index.less +38 -38
- package/lib/components/login-and-register/index.d.ts +82 -82
- package/lib/components/login-and-register/index.less +213 -213
- package/lib/components/lowCodePage/index.d.ts +6 -5
- package/lib/components/modal/index.d.ts +2 -2
- package/lib/components/organizationTenantSwitcher/index.d.ts +17 -17
- package/lib/components/organizationTenantSwitcher/index.less +89 -89
- package/lib/components/page/index.d.ts +6 -5
- package/lib/components/page-header/index.d.ts +14 -14
- package/lib/components/page-header/index.less +45 -45
- package/lib/components/pisell-config-provider/context.d.ts +20 -20
- package/lib/components/pisell-config-provider/hooks/usePisellConfig.d.ts +5 -5
- package/lib/components/pisell-config-provider/index.d.ts +12 -12
- package/lib/components/pisellAdjustPrice/PisellAdjustPriceInputNumber.d.ts +10 -9
- package/lib/components/pisellAdjustPrice/index.d.ts +10 -9
- package/lib/components/pisellAdjustPrice/index.less +29 -29
- package/lib/components/pisellAlert/index.d.ts +22 -22
- package/lib/components/pisellAlert/index.less +149 -149
- package/lib/components/pisellAnchor/index.d.ts +23 -23
- package/lib/components/pisellAnchor/index.less +194 -194
- package/lib/components/pisellAppCard/PisellAppCard.d.ts +5 -5
- package/lib/components/pisellAppCard/PisellAppCard.less +55 -55
- package/lib/components/pisellAppCard/index.d.ts +3 -3
- package/lib/components/pisellAppCard/types.d.ts +34 -34
- package/lib/components/pisellAvatar/index.d.ts +19 -19
- package/lib/components/pisellAvatar/index.less +27 -27
- package/lib/components/pisellBatchActionBar/PisellBatchActionBar.d.ts +31 -0
- package/lib/components/pisellBatchActionBar/PisellBatchActionBar.js +478 -0
- package/lib/components/pisellBatchActionBar/PisellBatchActionBar.less +103 -0
- package/lib/components/pisellBatchActionBar/index.d.ts +6 -0
- package/lib/components/pisellBatchActionBar/index.js +35 -0
- package/lib/components/pisellBatchActionBar/types.d.ts +237 -0
- package/lib/components/pisellBatchActionBar/types.js +17 -0
- package/lib/components/pisellCamera/index.d.ts +4 -4
- package/lib/components/pisellCamera/index.less +130 -130
- package/lib/components/pisellCard/index.d.ts +20 -19
- package/lib/components/pisellCard/index.less +36 -36
- package/lib/components/pisellCardList/index.d.ts +77 -77
- package/lib/components/pisellCardList/index.less +74 -74
- package/lib/components/pisellCheckboxGroup/index.d.ts +37 -37
- package/lib/components/pisellCheckboxGroup/index.less +36 -36
- package/lib/components/pisellCheckboxGroup/mock.d.ts +4 -4
- package/lib/components/pisellContainer/components/Portal/index.d.ts +10 -10
- package/lib/components/pisellContainer/containers.d.ts +1 -1
- package/lib/components/pisellContainer/index.d.ts +22 -22
- package/lib/components/pisellCountdown/index.d.ts +24 -24
- package/lib/components/pisellCountdown/utils.d.ts +7 -7
- package/lib/components/pisellCustomCheckboxGroup/index.d.ts +16 -16
- package/lib/components/pisellDatePicker/datePickerCpt.d.ts +22 -21
- package/lib/components/pisellDatePicker/detePickerCpt.less +21 -21
- package/lib/components/pisellDatePicker/index.d.ts +3 -2
- package/lib/components/pisellDraggable/components/Action/Action.d.ts +10 -10
- package/lib/components/pisellDraggable/components/Action/Action.less +49 -49
- package/lib/components/pisellDraggable/components/Action/index.d.ts +2 -2
- package/lib/components/pisellDraggable/components/Handle/Handle.d.ts +3 -3
- package/lib/components/pisellDraggable/components/Handle/index.d.ts +1 -1
- package/lib/components/pisellDraggable/components/Remove/Remove.d.ts +3 -3
- package/lib/components/pisellDraggable/components/Remove/index.d.ts +1 -1
- package/lib/components/pisellDraggable/components/TreeItem/SortableTreeItem.d.ts +9 -9
- package/lib/components/pisellDraggable/components/TreeItem/TreeItem.d.ts +24 -24
- package/lib/components/pisellDraggable/components/TreeItem/TreeItem.less +127 -127
- package/lib/components/pisellDraggable/components/TreeItem/index.d.ts +2 -2
- package/lib/components/pisellDraggable/components/index.d.ts +4 -4
- package/lib/components/pisellDraggable/index.d.ts +35 -35
- package/lib/components/pisellDraggable/types.d.ts +19 -19
- package/lib/components/pisellDraggable/utilities.d.ts +17 -17
- package/lib/components/pisellDropSort/PisellDropSort.d.ts +5 -5
- package/lib/components/pisellDropSort/PisellDropSort.less +92 -92
- package/lib/components/pisellDropSort/components/SortableItem/index.d.ts +26 -26
- package/lib/components/pisellDropSort/components/SortableItem/index.less +156 -156
- package/lib/components/pisellDropSort/index.d.ts +3 -3
- package/lib/components/pisellDropSort/types.d.ts +58 -58
- package/lib/components/pisellDropdown/index.d.ts +20 -20
- package/lib/components/pisellDropdown/index.less +44 -44
- package/lib/components/pisellEmpty/index.d.ts +19 -19
- package/lib/components/pisellEmpty/index.less +34 -34
- package/lib/components/pisellFloatingPanel/index.d.ts +17 -17
- package/lib/components/pisellFloatingPanel/index.less +30 -30
- package/lib/components/pisellGoodPassCard/index.d.ts +49 -49
- package/lib/components/pisellGoodPassCard/index.less +58 -58
- package/lib/components/pisellHeaderProgressBar/index.d.ts +29 -29
- package/lib/components/pisellHeaderProgressBar/index.less +18 -18
- package/lib/components/pisellImageCarousels/index.d.ts +18 -18
- package/lib/components/pisellImageCarousels/index.less +92 -92
- package/lib/components/pisellInformationEntry/Input/index.d.ts +8 -8
- package/lib/components/pisellInformationEntry/Input/index.less +13 -13
- package/lib/components/pisellInformationEntry/Scan/index.d.ts +8 -7
- package/lib/components/pisellInformationEntry/Scan/index.less +7 -7
- package/lib/components/pisellInformationEntry/constants.d.ts +13 -13
- package/lib/components/pisellInformationEntry/hooks/useNativeScanner.d.ts +4 -4
- package/lib/components/pisellInformationEntry/hooks/useTerminalPeripherals.d.ts +8 -8
- package/lib/components/pisellInformationEntry/index.d.ts +33 -33
- package/lib/components/pisellInformationEntry/index.less +40 -40
- package/lib/components/pisellInformationEntry/utils.d.ts +4 -4
- package/lib/components/pisellInput/components/BankCard/index.d.ts +11 -10
- package/lib/components/pisellInput/components/BankCard/index.less +3 -3
- package/lib/components/pisellInput/components/BankCard/utils.d.ts +11 -11
- package/lib/components/pisellInput/components/Copy/index.d.ts +11 -10
- package/lib/components/pisellInput/components/SecurityCode/index.d.ts +12 -11
- package/lib/components/pisellInput/components/SecurityCode/index.less +3 -3
- package/lib/components/pisellInput/index.d.ts +13 -12
- package/lib/components/pisellLayout/content.d.ts +10 -10
- package/lib/components/pisellLayout/footer.d.ts +8 -8
- package/lib/components/pisellLayout/header.d.ts +10 -10
- package/lib/components/pisellLayout/index.d.ts +14 -14
- package/lib/components/pisellLayout/index.less +22 -22
- package/lib/components/pisellLayout/sider.d.ts +8 -8
- package/lib/components/pisellList01/index.d.ts +17 -17
- package/lib/components/pisellList01/index.less +53 -53
- package/lib/components/pisellLoading/index.d.ts +20 -19
- package/lib/components/pisellLoading/index.less +35 -35
- package/lib/components/pisellMenu/PisellMenu.d.ts +11 -11
- package/lib/components/pisellMenu/PisellMenu.less +52 -52
- package/lib/components/pisellMenu/index.d.ts +3 -3
- package/lib/components/pisellMenu/types.d.ts +27 -27
- package/lib/components/pisellMessage/index.d.ts +4 -4
- package/lib/components/pisellModal/components/Information/index.d.ts +21 -21
- package/lib/components/pisellModal/components/Information/index.less +15 -15
- package/lib/components/pisellModal/components/IpadModal/index.d.ts +6 -5
- package/lib/components/pisellModal/components/MobileModal/index.d.ts +9 -8
- package/lib/components/pisellModal/components/MobileModal/index.less +64 -64
- package/lib/components/pisellModal/components/PcModal/index.d.ts +30 -30
- package/lib/components/pisellModal/components/PcModal/index.less +104 -104
- package/lib/components/pisellModal/components/functions/index.d.ts +30 -30
- package/lib/components/pisellModal/components/functions/index.less +27 -27
- package/lib/components/pisellModal/components/index.d.ts +10 -9
- package/lib/components/pisellModal/constants.d.ts +6 -6
- package/lib/components/pisellModal/index.d.ts +58 -58
- package/lib/components/pisellNavigationMenu/PisellNavigationMenu.d.ts +5 -5
- package/lib/components/pisellNavigationMenu/PisellNavigationMenu.less +79 -79
- package/lib/components/pisellNavigationMenu/index.d.ts +3 -3
- package/lib/components/pisellNavigationMenu/types.d.ts +85 -85
- package/lib/components/pisellNavigationMenu/utils.d.ts +15 -15
- package/lib/components/pisellQRScanner/index.d.ts +24 -24
- package/lib/components/pisellQRScanner/index.less +70 -70
- package/lib/components/pisellQrcode/index.d.ts +10 -10
- package/lib/components/pisellQrcode/index.less +39 -39
- package/lib/components/pisellRow/index.d.ts +22 -22
- package/lib/components/pisellRow/index.less +12 -12
- package/lib/components/pisellScan/index.d.ts +23 -23
- package/lib/components/pisellScan/index.less +11 -11
- package/lib/components/pisellSectionHeaders/index.d.ts +21 -21
- package/lib/components/pisellSectionHeaders/index.less +46 -46
- package/lib/components/pisellStatisticList/index.d.ts +21 -21
- package/lib/components/pisellStatisticList/index.less +48 -48
- package/lib/components/pisellTags/index.d.ts +13 -13
- package/lib/components/pisellTags/index.less +16 -16
- package/lib/components/pisellTags/utils.d.ts +1 -1
- package/lib/components/pisellText/components/Amount/index.d.ts +20 -20
- package/lib/components/pisellText/components/Editable/index.d.ts +29 -29
- package/lib/components/pisellText/components/Editable/index.less +40 -40
- package/lib/components/pisellText/index.d.ts +9 -9
- package/lib/components/pisellToast/index.d.ts +16 -16
- package/lib/components/pisellToast/index.less +25 -25
- package/lib/components/pisellTooltip/index.d.ts +10 -9
- package/lib/components/pisellTooltip/index.less +4 -4
- package/lib/components/pisellUpload/index.d.ts +11 -10
- package/lib/components/pisellUpload/index.less +15 -15
- package/lib/components/pisellViewGrid/index.d.ts +16 -16
- package/lib/components/pisellViewGrid/index.less +31 -31
- package/lib/components/pisellWalletPassCard/index.d.ts +95 -95
- package/lib/components/pisellWalletPassCard/index.less +313 -313
- package/lib/components/productCard/components/Action/index.d.ts +4 -3
- package/lib/components/productCard/components/Action/index.less +14 -14
- package/lib/components/productCard/components/AmountFooter/index.d.ts +4 -3
- package/lib/components/productCard/components/AmountFooter/index.js +2 -2
- package/lib/components/productCard/components/AmountFooter/index.less +77 -77
- package/lib/components/productCard/components/Divider/index.d.ts +4 -3
- package/lib/components/productCard/components/Divider/index.less +13 -13
- package/lib/components/productCard/components/Header/DeleteButton/index.d.ts +4 -3
- package/lib/components/productCard/components/Header/DeleteButton/index.less +15 -15
- package/lib/components/productCard/components/Header/EditButton/index.d.ts +4 -3
- package/lib/components/productCard/components/Header/EditButton/index.less +25 -25
- package/lib/components/productCard/components/Header/index.d.ts +4 -3
- package/lib/components/productCard/components/Header/index.less +56 -56
- package/lib/components/productCard/components/MultiDay/index.d.ts +4 -3
- package/lib/components/productCard/components/MultiDay/index.less +34 -34
- package/lib/components/productCard/components/MultiDay/utils.d.ts +14 -14
- package/lib/components/productCard/components/Note/index.d.ts +4 -3
- package/lib/components/productCard/components/Note/index.less +20 -20
- package/lib/components/productCard/components/Packages/components/collapsibleList/index.d.ts +10 -10
- package/lib/components/productCard/components/Packages/components/collapsibleList/index.less +52 -52
- package/lib/components/productCard/components/Packages/components/collapsibleList/utils.d.ts +2 -1
- package/lib/components/productCard/components/Packages/components/options/index.d.ts +4 -3
- package/lib/components/productCard/components/Packages/components/options/index.less +30 -30
- package/lib/components/productCard/components/Packages/index.d.ts +4 -3
- package/lib/components/productCard/components/Packages/index.less +17 -17
- package/lib/components/productCard/components/Packages/utils.d.ts +20 -20
- package/lib/components/productCard/components/Sales/index.d.ts +4 -3
- package/lib/components/productCard/components/Sales/index.less +18 -18
- package/lib/components/productCard/components/Time/components/Like/index.d.ts +10 -9
- package/lib/components/productCard/components/Time/components/Like/index.less +27 -27
- package/lib/components/productCard/components/Time/components/SelectHolder/index.d.ts +4 -3
- package/lib/components/productCard/components/Time/components/SelectHolder/index.less +61 -61
- package/lib/components/productCard/components/Time/components/SelectHolderModal/index.d.ts +14 -13
- package/lib/components/productCard/components/Time/components/SelectHolderModal/index.less +39 -39
- package/lib/components/productCard/components/Time/components/SelectHolderMultiple/index.d.ts +3 -2
- package/lib/components/productCard/components/Time/components/SelectResource/index.d.ts +19 -18
- package/lib/components/productCard/components/Time/components/SelectResource/index.less +20 -20
- package/lib/components/productCard/components/Time/index.d.ts +4 -3
- package/lib/components/productCard/components/Time/index.less +56 -56
- package/lib/components/productCard/components/Warning/index.d.ts +7 -7
- package/lib/components/productCard/hooks/useOpenNote.d.ts +3 -3
- package/lib/components/productCard/index.d.ts +5 -5
- package/lib/components/productCard/index.less +82 -82
- package/lib/components/productCard/locales.d.ts +84 -84
- package/lib/components/productCard/status.d.ts +32 -32
- package/lib/components/productCard/types.d.ts +84 -84
- package/lib/components/productCard/utils.d.ts +31 -31
- package/lib/components/profileMenu/index.d.ts +26 -26
- package/lib/components/profileMenu/index.less +132 -132
- package/lib/components/qrcode/index.d.ts +3 -2
- package/lib/components/radio/index.d.ts +3 -2
- package/lib/components/record-view/index.d.ts +37 -37
- package/lib/components/record-view/index.less +81 -81
- package/lib/components/section-footers/index.d.ts +9 -9
- package/lib/components/section-footers/index.less +5 -5
- package/lib/components/segmented/index.d.ts +5 -4
- package/lib/components/segmented/index.less +2 -2
- package/lib/components/select/index.d.ts +9 -9
- package/lib/components/select/index.less +29 -29
- package/lib/components/select-time/RightPanel/index.d.ts +9 -8
- package/lib/components/select-time/RightPanel/index.less +21 -21
- package/lib/components/select-time/index.d.ts +14 -14
- package/lib/components/select-time/index.less +15 -15
- package/lib/components/select-time/utils.d.ts +9 -9
- package/lib/components/skeleton/index.d.ts +3 -2
- package/lib/components/slider/index.d.ts +3 -2
- package/lib/components/sort/components/InlineMenu/index.d.ts +15 -14
- package/lib/components/sort/components/InlineMenu/index.less +20 -20
- package/lib/components/sort/index.d.ts +5 -5
- package/lib/components/sort/index.less +36 -36
- package/lib/components/sort/types.d.ts +20 -20
- package/lib/components/sortableList/index.d.ts +11 -11
- package/lib/components/table/Actions/component/ButtonIcon/index.d.ts +8 -8
- package/lib/components/table/Actions/component/ButtonIcon/index.less +18 -18
- package/lib/components/table/Actions/component/ColumnsSetting/PopoverContent.d.ts +10 -10
- package/lib/components/table/Actions/component/ColumnsSetting/PopoverContent.less +59 -59
- package/lib/components/table/Actions/component/ColumnsSetting/index.d.ts +7 -6
- package/lib/components/table/Actions/component/ColumnsSetting/utils.d.ts +1 -1
- package/lib/components/table/Actions/component/ExportImport/components/ExportFile/index.d.ts +7 -6
- package/lib/components/table/Actions/component/ExportImport/components/ExportFile/index.less +29 -29
- package/lib/components/table/Actions/component/ExportImport/components/ExportTable/function.d.ts +7 -7
- package/lib/components/table/Actions/component/ExportImport/components/ExportTable/index.d.ts +8 -7
- package/lib/components/table/Actions/component/ExportImport/components/ExportTable/index.less +5 -5
- package/lib/components/table/Actions/component/ExportImport/components/ImportLog/Detail.d.ts +4 -4
- package/lib/components/table/Actions/component/ExportImport/components/ImportLog/index.d.ts +7 -6
- package/lib/components/table/Actions/component/ExportImport/components/ImportLog/index.less +48 -48
- package/lib/components/table/Actions/component/ExportImport/components/ImportTable/index.d.ts +10 -9
- package/lib/components/table/Actions/component/ExportImport/components/ImportTable/index.less +97 -97
- package/lib/components/table/Actions/component/ExportImport/index.d.ts +8 -7
- package/lib/components/table/Actions/component/ExportImport/index.less +194 -194
- package/lib/components/table/Actions/component/ExportImport/utils/date.d.ts +8 -8
- package/lib/components/table/Actions/component/ExportImport/utils/download.d.ts +3 -3
- package/lib/components/table/Actions/component/ExportImport/utils/file.d.ts +7 -7
- package/lib/components/table/Actions/component/ExportImport/utils/index.d.ts +9 -9
- package/lib/components/table/Actions/component/GallerySetting/index.d.ts +9 -8
- package/lib/components/table/Actions/component/GallerySetting/index.less +14 -14
- package/lib/components/table/Actions/component/Group/PopoverContent.d.ts +13 -12
- package/lib/components/table/Actions/component/Group/PopoverContent.less +29 -29
- package/lib/components/table/Actions/component/Group/index.d.ts +13 -12
- package/lib/components/table/Actions/component/ViewMode/index.d.ts +9 -8
- package/lib/components/table/Actions/index.d.ts +18 -17
- package/lib/components/table/Actions/index.less +43 -43
- package/lib/components/table/BasicTable/index.d.ts +4 -3
- package/lib/components/table/Gallery/components/GalleryItem/components/Cover/index.d.ts +10 -9
- package/lib/components/table/Gallery/components/GalleryItem/components/RenderFields/index.d.ts +11 -10
- package/lib/components/table/Gallery/components/GalleryItem/components/RenderFields/index.less +37 -37
- package/lib/components/table/Gallery/components/GalleryItem/components/Title/index.d.ts +9 -8
- package/lib/components/table/Gallery/components/GalleryItem/components/Title/index.less +17 -17
- package/lib/components/table/Gallery/components/GalleryItem/index.d.ts +14 -14
- package/lib/components/table/Gallery/components/GalleryItem/index.less +29 -29
- package/lib/components/table/Gallery/components/VirtualGrid/index.d.ts +13 -13
- package/lib/components/table/Gallery/components/VirtualGrid/index.less +4 -4
- package/lib/components/table/Gallery/components/VirtualGrid/useGapSize.d.ts +5 -5
- package/lib/components/table/Gallery/components/VirtualGrid/useGenGridProps.d.ts +14 -14
- package/lib/components/table/Gallery/constant.d.ts +4 -4
- package/lib/components/table/Gallery/index.d.ts +5 -5
- package/lib/components/table/Gallery/index.less +28 -28
- package/lib/components/table/Gallery/types.d.ts +10 -10
- package/lib/components/table/Header/Buttons/index.d.ts +3 -3
- package/lib/components/table/Header/index.d.ts +11 -11
- package/lib/components/table/Header/index.less +23 -23
- package/lib/components/table/Summary/index.d.ts +4 -3
- package/lib/components/table/Summary/index.less +4 -4
- package/lib/components/table/Table/AddFieldModal/index.d.ts +3 -3
- package/lib/components/table/Table/AddFieldModal/index.less +83 -83
- package/lib/components/table/Table/SelectField/index.d.ts +3 -2
- package/lib/components/table/Table/SelectField/index.less +96 -96
- package/lib/components/table/Table/fields/date/Config/index.d.ts +3 -2
- package/lib/components/table/Table/fields/date/Edit/index.d.ts +4 -4
- package/lib/components/table/Table/fields/date/Show/index.d.ts +4 -3
- package/lib/components/table/Table/fields/date/Sort/index.d.ts +3 -2
- package/lib/components/table/Table/fields/date/filterUtil/index.d.ts +13 -13
- package/lib/components/table/Table/fields/date/index.d.ts +16 -15
- package/lib/components/table/Table/fields/image/Config/index.d.ts +3 -2
- package/lib/components/table/Table/fields/image/Edit/index.d.ts +4 -4
- package/lib/components/table/Table/fields/image/Show/index.d.ts +4 -3
- package/lib/components/table/Table/fields/image/Sort/index.d.ts +3 -2
- package/lib/components/table/Table/fields/image/index.d.ts +14 -13
- package/lib/components/table/Table/fields/index.d.ts +386 -385
- package/lib/components/table/Table/fields/link/Config/index.d.ts +3 -2
- package/lib/components/table/Table/fields/link/Edit/index.d.ts +4 -4
- package/lib/components/table/Table/fields/link/Show/index.d.ts +4 -3
- package/lib/components/table/Table/fields/link/Sort/index.d.ts +3 -2
- package/lib/components/table/Table/fields/link/index.d.ts +14 -13
- package/lib/components/table/Table/fields/number/Config/index.d.ts +3 -2
- package/lib/components/table/Table/fields/number/Edit/index.d.ts +4 -4
- package/lib/components/table/Table/fields/number/Show/index.d.ts +4 -3
- package/lib/components/table/Table/fields/number/Sort/index.d.ts +3 -2
- package/lib/components/table/Table/fields/number/filterUtil/index.d.ts +5 -5
- package/lib/components/table/Table/fields/number/index.d.ts +16 -15
- package/lib/components/table/Table/fields/numberRange/Config/index.d.ts +3 -2
- package/lib/components/table/Table/fields/numberRange/Edit/index.d.ts +4 -4
- package/lib/components/table/Table/fields/numberRange/Show/index.d.ts +4 -3
- package/lib/components/table/Table/fields/numberRange/Sort/index.d.ts +3 -2
- package/lib/components/table/Table/fields/numberRange/filterUtil/index.d.ts +8 -8
- package/lib/components/table/Table/fields/numberRange/index.d.ts +16 -15
- package/lib/components/table/Table/fields/oldRangePicker/Config/index.d.ts +3 -2
- package/lib/components/table/Table/fields/oldRangePicker/Edit/index.d.ts +4 -4
- package/lib/components/table/Table/fields/oldRangePicker/Show/index.d.ts +4 -3
- package/lib/components/table/Table/fields/oldRangePicker/Sort/index.d.ts +3 -2
- package/lib/components/table/Table/fields/oldRangePicker/filterUtil/index.d.ts +13 -13
- package/lib/components/table/Table/fields/oldRangePicker/index.d.ts +16 -15
- package/lib/components/table/Table/fields/pSwitch/Config/index.d.ts +3 -2
- package/lib/components/table/Table/fields/pSwitch/Edit/index.d.ts +4 -4
- package/lib/components/table/Table/fields/pSwitch/Show/index.d.ts +4 -3
- package/lib/components/table/Table/fields/pSwitch/Sort/index.d.ts +3 -2
- package/lib/components/table/Table/fields/pSwitch/index.d.ts +14 -13
- package/lib/components/table/Table/fields/rangePicker/Config/index.d.ts +3 -2
- package/lib/components/table/Table/fields/rangePicker/Edit/index.d.ts +4 -4
- package/lib/components/table/Table/fields/rangePicker/Show/index.d.ts +4 -3
- package/lib/components/table/Table/fields/rangePicker/Sort/index.d.ts +3 -2
- package/lib/components/table/Table/fields/rangePicker/filterUtil/index.d.ts +13 -13
- package/lib/components/table/Table/fields/rangePicker/index.d.ts +16 -15
- package/lib/components/table/Table/fields/search/Config/index.d.ts +3 -2
- package/lib/components/table/Table/fields/search/Edit/index.d.ts +4 -4
- package/lib/components/table/Table/fields/search/Show/index.d.ts +4 -3
- package/lib/components/table/Table/fields/search/Sort/index.d.ts +3 -2
- package/lib/components/table/Table/fields/search/filterUtil/index.d.ts +5 -5
- package/lib/components/table/Table/fields/search/index.d.ts +16 -15
- package/lib/components/table/Table/fields/select/Config/index.d.ts +3 -2
- package/lib/components/table/Table/fields/select/Edit/index.d.ts +4 -4
- package/lib/components/table/Table/fields/select/Show/index.d.ts +4 -3
- package/lib/components/table/Table/fields/select/Sort/index.d.ts +3 -2
- package/lib/components/table/Table/fields/select/filterUtil/index.d.ts +5 -5
- package/lib/components/table/Table/fields/select/index.d.ts +16 -15
- package/lib/components/table/Table/fields/text/Config/index.d.ts +3 -2
- package/lib/components/table/Table/fields/text/Edit/index.d.ts +4 -4
- package/lib/components/table/Table/fields/text/Show/index.d.ts +5 -4
- package/lib/components/table/Table/fields/text/Show/index.less +8 -8
- package/lib/components/table/Table/fields/text/Sort/index.d.ts +3 -2
- package/lib/components/table/Table/fields/text/filterUtil/index.d.ts +5 -5
- package/lib/components/table/Table/fields/text/index.d.ts +16 -15
- package/lib/components/table/Table/fields/treeSelect/Config/index.d.ts +3 -2
- package/lib/components/table/Table/fields/treeSelect/Edit/index.d.ts +4 -4
- package/lib/components/table/Table/fields/treeSelect/Show/index.d.ts +4 -3
- package/lib/components/table/Table/fields/treeSelect/Sort/index.d.ts +3 -2
- package/lib/components/table/Table/fields/treeSelect/filterUtil/index.d.ts +5 -5
- package/lib/components/table/Table/fields/treeSelect/index.d.ts +16 -15
- package/lib/components/table/Table/fields/types/index.d.ts +30 -30
- package/lib/components/table/Table/fields/utils/index.d.ts +1 -1
- package/lib/components/table/Table/index.d.ts +4 -4
- package/lib/components/table/Table/index.less +35 -35
- package/lib/components/table/Table/tableConfig/SortRow/index.d.ts +4 -3
- package/lib/components/table/Table/tableConfig/body/CellContent/index.d.ts +4 -4
- package/lib/components/table/Table/tableConfig/body/CellContent/index.less +14 -14
- package/lib/components/table/Table/tableConfig/body/CellProvider/index.d.ts +4 -4
- package/lib/components/table/Table/tableConfig/body/CellProvider/index.less +14 -14
- package/lib/components/table/Table/tableConfig/body/index.d.ts +35 -35
- package/lib/components/table/Table/tableConfig/body/index.less +20 -20
- package/lib/components/table/Table/tableConfig/header/CellProvider/index.d.ts +14 -14
- package/lib/components/table/Table/tableConfig/header/CellProvider/index.less +35 -35
- package/lib/components/table/Table/tableConfig/header/index.d.ts +19 -19
- package/lib/components/table/Table/tableConfig/summary/index.d.ts +3 -2
- package/lib/components/table/Table/utils.d.ts +161 -161
- package/lib/components/table/TableFilter/SortIcon.d.ts +6 -5
- package/lib/components/table/TableFilter/index.less +13 -13
- package/lib/components/table/TableFilter/numberFilter.d.ts +6 -6
- package/lib/components/table/TableFilter/selectFilter.d.ts +10 -10
- package/lib/components/table/TableFilter/stringFilter.d.ts +6 -6
- package/lib/components/table/Tabs/index.d.ts +14 -14
- package/lib/components/table/View/index.d.ts +6 -5
- package/lib/components/table/hooks/useGenScroll.d.ts +22 -22
- package/lib/components/table/hooks/useGenTableComponents.d.ts +16 -16
- package/lib/components/table/hooks/useIsMobileTable.d.ts +2 -2
- package/lib/components/table/hooks/useMergeColumnSetting.d.ts +18 -18
- package/lib/components/table/hooks/useTableSetting.d.ts +21 -21
- package/lib/components/table/hooks/useTransColumns.d.ts +14 -14
- package/lib/components/table/hooks/useTransDataSource.d.ts +11 -11
- package/lib/components/table/hooks/useTransDataSourceGroupSetting.d.ts +7 -7
- package/lib/components/table/hooks/useTransFilterSetting.d.ts +7 -7
- package/lib/components/table/hooks/useTransSortSetting.d.ts +7 -7
- package/lib/components/table/hooks/useTriggerValuesChange.d.ts +16 -16
- package/lib/components/table/index.d.ts +4 -4
- package/lib/components/table/index.less +152 -152
- package/lib/components/table/model.d.ts +30 -30
- package/lib/components/table/serve.d.ts +13 -13
- package/lib/components/table/status.d.ts +19 -19
- package/lib/components/table/types.d.ts +268 -268
- package/lib/components/table/utils.d.ts +14 -14
- package/lib/components/tabs/index.d.ts +17 -17
- package/lib/components/tabs/index.less +60 -60
- package/lib/components/time-picker/index.d.ts +3 -2
- package/lib/components/translation/index.d.ts +14 -14
- package/lib/components/translation/index.less +15 -15
- package/lib/components/translation/utils.d.ts +7 -7
- package/lib/components/tree-select/index.d.ts +2 -2
- package/lib/components/typography/index.d.ts +2 -2
- package/lib/components/upload/index.d.ts +3 -2
- package/lib/components/versionModal/index.d.ts +23 -23
- package/lib/components/versionModal/index.less +10 -10
- package/lib/components/versionSelect/index.d.ts +18 -17
- package/lib/components/versionSelect/index.less +3 -3
- package/lib/components/virtual-keyboard/Amount/index.d.ts +22 -22
- package/lib/components/virtual-keyboard/BaseNumberKeyboard/Presets.d.ts +12 -11
- package/lib/components/virtual-keyboard/BaseNumberKeyboard/Presets.less +18 -18
- package/lib/components/virtual-keyboard/BaseNumberKeyboard/index.d.ts +19 -19
- package/lib/components/virtual-keyboard/BaseNumberKeyboard/index.less +8 -8
- package/lib/components/virtual-keyboard/Keyboard/index.d.ts +21 -21
- package/lib/components/virtual-keyboard/Keyboard/index.less +43 -43
- package/lib/components/virtual-keyboard/Number/index.d.ts +14 -13
- package/lib/components/virtual-keyboard/Time/index.d.ts +13 -13
- package/lib/components/virtual-keyboard/Time/utils.d.ts +10 -9
- package/lib/components/virtual-keyboard/VirtualInput/index.d.ts +9 -9
- package/lib/components/virtual-keyboard/VirtualInput/index.less +46 -46
- package/lib/components/virtual-keyboard/VirtualKeyInput/index.d.ts +12 -11
- package/lib/components/virtual-keyboard/VirtualKeyInput/index.less +51 -51
- package/lib/components/virtual-keyboard/index.d.ts +14 -14
- package/lib/components/virtual-keyboard/index.less +16 -16
- package/lib/components/walletCard/Guest/index.d.ts +4 -3
- package/lib/components/walletCard/Guest/index.less +71 -71
- package/lib/components/walletCard/Guide/index.d.ts +4 -3
- package/lib/components/walletCard/Guide/index.less +71 -71
- package/lib/components/walletCard/index.d.ts +77 -77
- package/lib/components/walletCard/index.less +353 -353
- package/lib/hooks/index.d.ts +3 -3
- package/lib/hooks/useCssVariables.d.ts +8 -8
- package/lib/hooks/useEngineContext.d.ts +9 -9
- package/lib/hooks/useMobile.d.ts +8 -0
- package/lib/hooks/useMobile.js +48 -0
- package/lib/hooks/useResponsive.d.ts +4 -4
- package/lib/hooks/useSetRequest.d.ts +2 -2
- package/lib/hooks/useSharedState.d.ts +11 -11
- package/lib/hooks/useTranslationOriginal.d.ts +2 -2
- package/lib/index.d.ts +168 -142
- package/lib/index.js +45 -0
- package/lib/locales/en-US.d.ts +316 -293
- package/lib/locales/en-US.js +26 -1
- package/lib/locales/index.d.ts +1 -1
- package/lib/locales/index.js +2 -2
- package/lib/locales/zh-CN.d.ts +311 -288
- package/lib/locales/zh-CN.js +26 -1
- package/lib/locales/zh-TW.d.ts +311 -288
- package/lib/locales/zh-TW.js +26 -1
- package/lib/typings.d.ts +9 -9
- package/lib/utils/hoc.d.ts +17 -17
- package/lib/utils/index.d.ts +4 -4
- package/lib/utils/locale.d.ts +1 -1
- package/lib/utils/mergeWith.d.ts +1 -1
- package/lib/utils/miniRedux.d.ts +17 -17
- package/lib/utils/platform.d.ts +1 -1
- package/lib/utils/warning.d.ts +1 -1
- package/lowcode/_setters/antd-icon-setter/index.tsx +292 -292
- package/lowcode/_setters/antd-icon-setter/style.less +69 -69
- package/lowcode/_setters/index.tsx +1 -1
- package/lowcode/_utils/defaultSchema.ts +1600 -1600
- package/lowcode/_utils/hoc.tsx +93 -93
- package/lowcode/_utils/transform-meta.ts +364 -364
- package/lowcode/_utils/type.ts +5 -5
- package/lowcode/_utils/utils.ts +15 -15
- package/lowcode/affix/meta.ts +68 -68
- package/lowcode/affix/snippets.ts +20 -20
- package/lowcode/alert/meta.ts +110 -110
- package/lowcode/alert/snippets.ts +54 -54
- package/lowcode/anchor/snippets.ts +30 -30
- package/lowcode/anchor.link/meta.ts +30 -30
- package/lowcode/anchor.link/snippets.ts +1 -1
- package/lowcode/app-version-control/meta.ts +92 -92
- package/lowcode/auto-complete/meta.ts +458 -458
- package/lowcode/auto-complete/snippets.ts +26 -26
- package/lowcode/auto-complete-number/meta.ts +75 -75
- package/lowcode/auto-complete-number/snippets.ts +26 -26
- package/lowcode/avatar/meta.ts +88 -88
- package/lowcode/avatar/snippets.ts +12 -12
- package/lowcode/badge/meta.ts +104 -104
- package/lowcode/badge/snippets.ts +14 -14
- package/lowcode/batch-editor/meta.ts +93 -93
- package/lowcode/breadcrumb/meta.ts +135 -135
- package/lowcode/breadcrumb/snippets.ts +44 -44
- package/lowcode/button/meta.ts +464 -464
- package/lowcode/button/snippets.ts +96 -96
- package/lowcode/button-group/meta.ts +198 -198
- package/lowcode/button-group/snippets.ts +67 -67
- package/lowcode/button-group-edit/meta.ts +31 -31
- package/lowcode/button-group-edit/snippets.ts +97 -97
- package/lowcode/button-group-preview/meta.ts +54 -54
- package/lowcode/button-group-preview/snippets.ts +56 -56
- package/lowcode/calendar/meta.ts +133 -133
- package/lowcode/calendar/snippets.ts +10 -10
- package/lowcode/card/meta.ts +100 -100
- package/lowcode/card/snippets.ts +58 -58
- package/lowcode/card-metric-item/meta.ts +83 -83
- package/lowcode/card-metric-item/snippets.ts +13 -13
- package/lowcode/card-pro/meta.ts +337 -337
- package/lowcode/card-pro/snippe.ts +38 -38
- package/lowcode/carousel/meta.ts +148 -148
- package/lowcode/carousel/snippets.ts +23 -23
- package/lowcode/cascader/meta.ts +175 -175
- package/lowcode/cascader/snippets.ts +46 -46
- package/lowcode/checkbox/meta.ts +85 -85
- package/lowcode/checkbox/snippets.ts +35 -35
- package/lowcode/checkbox.group/meta.ts +155 -155
- package/lowcode/classic-layout/meta.ts +122 -122
- package/lowcode/classic-layout/snippets.ts +65 -65
- package/lowcode/collapse/meta.ts +305 -305
- package/lowcode/collapse/snippets.ts +28 -28
- package/lowcode/collapse.pane/meta.ts +85 -85
- package/lowcode/color-picker/meta.ts +298 -298
- package/lowcode/color-picker/snippets.ts +10 -10
- package/lowcode/component/meta.ts +279 -279
- package/lowcode/config-provider/meta.ts +144 -144
- package/lowcode/config-provider/snippets.ts +10 -10
- package/lowcode/crop-photo/meta.ts +77 -77
- package/lowcode/crop-photo/snippe.ts +12 -12
- package/lowcode/custom-select/meta.ts +202 -202
- package/lowcode/custom-select/snippets.ts +33 -33
- package/lowcode/data-source-form/constants.ts +104 -104
- package/lowcode/data-source-form/meta.ts +1110 -1110
- package/lowcode/data-source-form/snippets.ts +192 -192
- package/lowcode/data-source-form/utils.ts +693 -693
- package/lowcode/data-source-image/meta.ts +74 -74
- package/lowcode/data-source-image/snippets.ts +14 -14
- package/lowcode/data-source-menu/meta.ts +182 -182
- package/lowcode/data-source-qrcode/meta.ts +158 -158
- package/lowcode/data-source-qrcode/snippets.ts +20 -20
- package/lowcode/data-source-table/meta.ts +5800 -5800
- package/lowcode/data-source-table/snippets.ts +90 -90
- package/lowcode/data-source-table/utils.tsx +522 -522
- package/lowcode/data-source-typography/meta.ts +54 -54
- package/lowcode/data-source-typography.text/meta.ts +212 -212
- package/lowcode/data-source-typography.text/snippets.ts +12 -12
- package/lowcode/data-source-wrapper/meta.ts +247 -247
- package/lowcode/data-source-wrapper/snippets.ts +11 -11
- package/lowcode/data-source-wrapper/utils.ts +45 -45
- package/lowcode/date-picker/meta.ts +287 -287
- package/lowcode/date-picker/snippets.ts +50 -50
- package/lowcode/date-picker.old-range-picker/meta.ts +305 -305
- package/lowcode/date-picker.old-range-picker/snippets.ts +11 -11
- package/lowcode/date-picker.range-picker/meta.ts +325 -325
- package/lowcode/date-picker.range-picker/snippets.ts +44 -44
- package/lowcode/descriptions/meta.ts +234 -234
- package/lowcode/descriptions/snippets.ts +18 -18
- package/lowcode/descriptions.item/meta.ts +38 -38
- package/lowcode/directory-tree/meta.ts +2747 -2747
- package/lowcode/div/meta.ts +89 -89
- package/lowcode/divider/meta.ts +70 -70
- package/lowcode/divider/snippets.ts +27 -27
- package/lowcode/drag-sort-tree/meta.ts +117 -117
- package/lowcode/drag-sort-tree/snippets.ts +57 -57
- package/lowcode/drawer/meta.ts +468 -468
- package/lowcode/drawer/snippets.ts +129 -129
- package/lowcode/dropdown/meta.ts +143 -143
- package/lowcode/dropdown/snippets.ts +365 -365
- package/lowcode/dropdown.button/meta.ts +221 -221
- package/lowcode/dropdown.button/snippets.ts +42 -42
- package/lowcode/empty/meta.ts +41 -41
- package/lowcode/empty/snippets.ts +10 -10
- package/lowcode/filter/meta.ts +138 -138
- package/lowcode/form/meta.ts +382 -382
- package/lowcode/form/snippets.ts +32 -32
- package/lowcode/form-group/meta.ts +349 -349
- package/lowcode/form-group/snippets.ts +18 -18
- package/lowcode/form-item-checkbox/meta.ts +108 -108
- package/lowcode/form-item-checkbox/snippets.ts +41 -41
- package/lowcode/form-item-checkbox.group/meta.ts +184 -184
- package/lowcode/form-item-color-picker/meta.ts +314 -314
- package/lowcode/form-item-color-picker/snippets.ts +11 -11
- package/lowcode/form-item-date-picker/meta.ts +448 -448
- package/lowcode/form-item-date-picker/snippets.ts +56 -56
- package/lowcode/form-item-icon-select/meta.ts +65 -65
- package/lowcode/form-item-icon-select/snippets.ts +12 -12
- package/lowcode/form-item-input/meta.ts +262 -262
- package/lowcode/form-item-input/snippets.ts +17 -17
- package/lowcode/form-item-input-number/meta.ts +411 -411
- package/lowcode/form-item-input-number/snippets.ts +31 -31
- package/lowcode/form-item-input.email/meta.ts +284 -284
- package/lowcode/form-item-input.email/snippets.ts +40 -40
- package/lowcode/form-item-input.json/meta.ts +213 -213
- package/lowcode/form-item-input.json/snippets.ts +34 -34
- package/lowcode/form-item-input.mobile/meta.ts +323 -323
- package/lowcode/form-item-input.mobile/snippets.ts +27 -27
- package/lowcode/form-item-input.password/meta.ts +235 -235
- package/lowcode/form-item-input.password/snippets.ts +17 -17
- package/lowcode/form-item-input.phone/meta.ts +299 -299
- package/lowcode/form-item-input.phone/snippets.ts +27 -27
- package/lowcode/form-item-input.subdomain/meta.ts +318 -318
- package/lowcode/form-item-input.subdomain/snippets.ts +27 -27
- package/lowcode/form-item-input.text-area/meta.ts +422 -422
- package/lowcode/form-item-input.text-area/snippets.ts +16 -16
- package/lowcode/form-item-input.url/meta.ts +284 -284
- package/lowcode/form-item-input.url/snippets.ts +20 -20
- package/lowcode/form-item-radio/meta.ts +72 -72
- package/lowcode/form-item-radio/snippets.ts +40 -40
- package/lowcode/form-item-radio.group/meta.ts +239 -239
- package/lowcode/form-item-select/meta.ts +539 -539
- package/lowcode/form-item-select/snippets.ts +65 -65
- package/lowcode/form-item-switch/meta.ts +145 -145
- package/lowcode/form-item-switch/snippets.ts +15 -15
- package/lowcode/form-item-time-picker/meta.ts +304 -304
- package/lowcode/form-item-time-picker/snippets.ts +16 -16
- package/lowcode/form-item-translation/meta.ts +307 -307
- package/lowcode/form-item-translation/snippets.ts +15 -15
- package/lowcode/form-item-upload/meta.ts +458 -458
- package/lowcode/form-item-upload/snippets.ts +12 -12
- package/lowcode/form-item-upload/utils.ts +230 -230
- package/lowcode/form.item/meta.ts +478 -478
- package/lowcode/form.item/snippets.ts +12 -12
- package/lowcode/form.list/meta.ts +42 -42
- package/lowcode/form.list/snippets.ts +11 -11
- package/lowcode/graphic-text-card/meta.ts +1145 -0
- package/lowcode/graphic-text-card/snippets.ts +74 -0
- package/lowcode/grid.col/meta.ts +139 -139
- package/lowcode/grid.col/snippets.ts +1 -1
- package/lowcode/grid.row/meta.ts +118 -118
- package/lowcode/grid.row/snippets.ts +122 -122
- package/lowcode/icon/meta.ts +74 -74
- package/lowcode/icon/snippets.ts +13 -13
- package/lowcode/icon-select/meta.ts +98 -98
- package/lowcode/image/meta.ts +84 -84
- package/lowcode/image/snippets.ts +15 -15
- package/lowcode/information-modal/meta.ts +1931 -1931
- package/lowcode/input/meta.ts +219 -219
- package/lowcode/input/snippets.ts +12 -12
- package/lowcode/input-number/meta.ts +225 -225
- package/lowcode/input-number/snippets.ts +12 -12
- package/lowcode/input-number-range/meta.ts +217 -217
- package/lowcode/input-number-range/snippets.ts +12 -12
- package/lowcode/input.group/meta.ts +53 -53
- package/lowcode/input.group/snippets.ts +24 -24
- package/lowcode/input.password/meta.ts +195 -195
- package/lowcode/input.password/snippets.ts +12 -12
- package/lowcode/input.search/meta.ts +213 -213
- package/lowcode/input.search/snippets.ts +12 -12
- package/lowcode/input.text-area/meta.ts +210 -210
- package/lowcode/input.text-area/snippets.ts +12 -12
- package/lowcode/item/meta.ts +3237 -3237
- package/lowcode/json-wrapper/meta.ts +65 -65
- package/lowcode/json-wrapper/snippets.ts +16 -16
- package/lowcode/list/meta.ts +655 -655
- package/lowcode/list/snippets.ts +382 -382
- package/lowcode/list.item/meta.ts +68 -68
- package/lowcode/list.item.meta/meta.ts +49 -49
- package/lowcode/login/meta.ts +56 -56
- package/lowcode/login-and-register/meta.ts +540 -540
- package/lowcode/login-and-register/snippets.ts +37 -37
- package/lowcode/low-code-page/meta.ts +56 -56
- package/lowcode/lowCodePage/index.ts +47 -47
- package/lowcode/mentions/meta.ts +159 -159
- package/lowcode/mentions/snippets.ts +10 -10
- package/lowcode/menu/meta.ts +243 -243
- package/lowcode/menu/snippets.ts +22 -22
- package/lowcode/menu/utils.ts +97 -97
- package/lowcode/menu.item/meta.ts +63 -63
- package/lowcode/menu.item/snippets.ts +1 -1
- package/lowcode/menu.item-group/meta.ts +110 -110
- package/lowcode/menu.item-group/snippets.ts +1 -1
- package/lowcode/menu.sub-menu/meta.ts +131 -131
- package/lowcode/menu.sub-menu/snippets.ts +1 -1
- package/lowcode/modal/meta.ts +276 -276
- package/lowcode/modal/snippets.ts +33 -33
- package/lowcode/multilevel-card/meta.ts +462 -0
- package/lowcode/multilevel-card/snippets.ts +18 -0
- package/lowcode/organization-tenant-switch/meta.ts +127 -127
- package/lowcode/page/meta.ts +52 -52
- package/lowcode/page-header/meta.ts +101 -101
- package/lowcode/page-header/snippets.ts +13 -13
- package/lowcode/pagination/meta.ts +231 -231
- package/lowcode/pagination/snippets.ts +14 -14
- package/lowcode/pisell-adjust-price/meta.ts +58 -58
- package/lowcode/pisell-adjust-price/snippets.ts +10 -10
- package/lowcode/pisell-adjust-price-input-number/meta.ts +245 -245
- package/lowcode/pisell-alert/meta.ts +117 -117
- package/lowcode/pisell-alert/snippets.ts +50 -50
- package/lowcode/pisell-anchor/meta.ts +118 -118
- package/lowcode/pisell-anchor/snippets.ts +26 -26
- package/lowcode/pisell-app-card/meta.ts +286 -286
- package/lowcode/pisell-avatar/meta.ts +110 -110
- package/lowcode/pisell-avatar/snippets.ts +14 -14
- package/lowcode/pisell-basic-grid/meta.ts +520 -0
- package/lowcode/pisell-batch-action-bar/meta.ts +466 -0
- package/lowcode/pisell-batch-action-bar/snippets.ts +22 -0
- package/lowcode/pisell-card/meta.ts +136 -136
- package/lowcode/pisell-card/snippets.ts +16 -16
- package/lowcode/pisell-card-list/meta.ts +267 -267
- package/lowcode/pisell-card-list/snippets.ts +9 -9
- package/lowcode/pisell-checkbox-group/meta.ts +112 -112
- package/lowcode/pisell-checkbox-group/snippets.ts +13 -13
- package/lowcode/pisell-container/meta.ts +71 -71
- package/lowcode/pisell-container/snippets.ts +14 -14
- package/lowcode/pisell-content/meta.ts +108 -108
- package/lowcode/pisell-countdown/meta.ts +71 -71
- package/lowcode/pisell-countdown/snippets.ts +12 -12
- package/lowcode/pisell-custom-checkbox-group/meta.ts +204 -204
- package/lowcode/pisell-custom-checkbox-group/snippets.ts +56 -56
- package/lowcode/pisell-date-picker/meta.ts +76 -76
- package/lowcode/pisell-date-picker/snippets.ts +9 -9
- package/lowcode/pisell-draggable/meta.ts +189 -189
- package/lowcode/pisell-drop-sort/meta.ts +362 -362
- package/lowcode/pisell-dropdown/meta.ts +180 -180
- package/lowcode/pisell-dropdown/snippets.ts +69 -69
- package/lowcode/pisell-empty/meta.ts +85 -85
- package/lowcode/pisell-empty/snippets.ts +10 -10
- package/lowcode/pisell-floating-panel/meta.ts +232 -232
- package/lowcode/pisell-footer/meta.ts +93 -93
- package/lowcode/pisell-good-pass-card/meta.ts +37 -37
- package/lowcode/pisell-good-pass-card/snippets.ts +8 -8
- package/lowcode/pisell-header/meta.ts +106 -106
- package/lowcode/pisell-header-progress-bar/meta.ts +116 -116
- package/lowcode/pisell-header-progress-bar/snippets.ts +24 -24
- package/lowcode/pisell-image-card/meta.ts +529 -0
- package/lowcode/pisell-image-card/snippets.ts +40 -0
- package/lowcode/pisell-image-carousels/meta.ts +143 -143
- package/lowcode/pisell-image-carousels/snippets.ts +20 -20
- package/lowcode/pisell-information-entry/meta.ts +146 -146
- package/lowcode/pisell-information-entry/snippets.ts +17 -17
- package/lowcode/pisell-input/meta.ts +193 -193
- package/lowcode/pisell-input/snippets.ts +11 -11
- package/lowcode/pisell-input.bank-card-input/meta.ts +62 -62
- package/lowcode/pisell-input.bank-card-input/snippets.ts +11 -11
- package/lowcode/pisell-input.copy/meta.ts +73 -73
- package/lowcode/pisell-input.copy/snippets.ts +10 -10
- package/lowcode/pisell-input.security-code/meta.ts +92 -92
- package/lowcode/pisell-input.security-code/snippets.ts +11 -11
- package/lowcode/pisell-layout/meta.ts +178 -178
- package/lowcode/pisell-list01/meta.ts +73 -73
- package/lowcode/pisell-list01/snippets.ts +35 -35
- package/lowcode/pisell-loading/meta.ts +106 -106
- package/lowcode/pisell-loading/snippets.ts +11 -11
- package/lowcode/pisell-menu/meta.ts +112 -112
- package/lowcode/pisell-modal/meta.ts +200 -200
- package/lowcode/pisell-modal/snippets.ts +38 -38
- package/lowcode/pisell-modal.information/meta.ts +129 -129
- package/lowcode/pisell-modal.information/snippets.ts +17 -17
- package/lowcode/pisell-navigation-menu/meta.ts +137 -137
- package/lowcode/pisell-number-keyboard/meta.ts +98 -98
- package/lowcode/pisell-price-keyboard/meta.ts +174 -174
- package/lowcode/pisell-procedure/meta.ts +688 -0
- package/lowcode/pisell-procedure/snippets.ts +71 -0
- package/lowcode/pisell-qrcode/meta.ts +46 -46
- package/lowcode/pisell-qrcode/snippets.ts +13 -13
- package/lowcode/pisell-qrscanner/meta.ts +85 -85
- package/lowcode/pisell-qrscanner/snippets.ts +24 -24
- package/lowcode/pisell-row/meta.ts +127 -127
- package/lowcode/pisell-row/snippets.ts +24 -24
- package/lowcode/pisell-scan/meta.ts +53 -53
- package/lowcode/pisell-scan/snippets.ts +13 -13
- package/lowcode/pisell-scroll-view/meta.ts +654 -0
- package/lowcode/pisell-section-headers/meta.ts +91 -91
- package/lowcode/pisell-section-headers/snippets.ts +22 -22
- package/lowcode/pisell-sider/meta.ts +178 -178
- package/lowcode/pisell-statistic-list/meta.ts +264 -264
- package/lowcode/pisell-steps/meta.ts +630 -0
- package/lowcode/pisell-steps/snippets.ts +118 -0
- package/lowcode/pisell-super-tabs/meta.ts +776 -0
- package/lowcode/pisell-tabbar/meta.ts +55 -0
- package/lowcode/pisell-tags/meta.ts +123 -123
- package/lowcode/pisell-tags/snippets.ts +14 -14
- package/lowcode/pisell-text/meta.ts +46 -46
- package/lowcode/pisell-text.amount/meta.ts +61 -61
- package/lowcode/pisell-text.amount/snippets.ts +15 -15
- package/lowcode/pisell-text.editable/meta.ts +115 -115
- package/lowcode/pisell-text.editable/snippets.ts +15 -15
- package/lowcode/pisell-tooltip/meta.ts +306 -306
- package/lowcode/pisell-tooltip/snippets.ts +12 -12
- package/lowcode/pisell-upload/meta.ts +516 -516
- package/lowcode/pisell-upload/snippets.ts +20 -20
- package/lowcode/pisell-view-grid/meta.ts +167 -167
- package/lowcode/pisell-view-grid/snippets.ts +54 -54
- package/lowcode/pisell-wallet-pass-card/actionsMeta.ts +216 -216
- package/lowcode/pisell-wallet-pass-card/meta.ts +257 -257
- package/lowcode/pisell-wallet-pass-card/snippets.ts +20 -20
- package/lowcode/popconfirm/meta.ts +120 -120
- package/lowcode/popconfirm/snippets.ts +21 -21
- package/lowcode/popover/meta.ts +332 -332
- package/lowcode/popover/snippets.ts +10 -10
- package/lowcode/product-card/meta.ts +145 -145
- package/lowcode/product-card/snippets.ts +36 -36
- package/lowcode/profile-menu/meta.ts +175 -175
- package/lowcode/profile-menu/snippets.ts +71 -71
- package/lowcode/progress/meta.ts +142 -142
- package/lowcode/progress/snippets.ts +24 -24
- package/lowcode/qrcode/meta.ts +150 -150
- package/lowcode/qrcode/snippets.ts +20 -20
- package/lowcode/radio/meta.ts +69 -69
- package/lowcode/radio/snippets.ts +36 -36
- package/lowcode/radio.group/meta.ts +218 -218
- package/lowcode/rate/meta.ts +133 -133
- package/lowcode/rate/snippets.ts +12 -12
- package/lowcode/record-view/meta.ts +725 -725
- package/lowcode/result/meta.ts +53 -53
- package/lowcode/result/snippets.ts +14 -14
- package/lowcode/section-footers/meta.ts +65 -65
- package/lowcode/section-footers/snippe.ts +20 -20
- package/lowcode/segmented/meta.ts +165 -165
- package/lowcode/segmented/snippets.ts +25 -25
- package/lowcode/select/meta.ts +477 -477
- package/lowcode/select/snippets.ts +29 -29
- package/lowcode/select-time/meta.ts +75 -75
- package/lowcode/skeleton/meta.ts +63 -63
- package/lowcode/skeleton/snippets.ts +13 -13
- package/lowcode/slider/meta.ts +218 -218
- package/lowcode/slider/snippets.ts +12 -12
- package/lowcode/slot/meta.ts +61 -61
- package/lowcode/slot/view.tsx +58 -58
- package/lowcode/sort/meta.ts +117 -117
- package/lowcode/sort/snippets.ts +22 -22
- package/lowcode/sortable-list/meta.ts +119 -119
- package/lowcode/sortable-list/snippets.ts +49 -49
- package/lowcode/space/meta.ts +65 -65
- package/lowcode/space/snippets.ts +24 -24
- package/lowcode/spin/meta.ts +70 -70
- package/lowcode/spin/snippets.ts +13 -13
- package/lowcode/statistic/meta.ts +77 -77
- package/lowcode/statistic/snippets.ts +13 -13
- package/lowcode/steps/meta.ts +281 -281
- package/lowcode/steps/snippets.ts +36 -36
- package/lowcode/steps.step/meta.ts +54 -54
- package/lowcode/steps.step/snippets.ts +1 -1
- package/lowcode/submit-button/meta.ts +1099 -1099
- package/lowcode/submit-button/snippets.ts +22 -22
- package/lowcode/switch/meta.ts +122 -122
- package/lowcode/switch/snippets.ts +12 -12
- package/lowcode/tab-card/README.md +225 -0
- package/lowcode/tab-card/meta.ts +588 -0
- package/lowcode/tab-card/snippets.ts +82 -0
- package/lowcode/table/meta.ts +2495 -2495
- package/lowcode/table/snippets.ts +439 -439
- package/lowcode/tabs/meta.ts +518 -518
- package/lowcode/tabs/snippets.ts +161 -161
- package/lowcode/tabs.tab-pane/meta.ts +78 -78
- package/lowcode/tag/meta.ts +81 -81
- package/lowcode/tag/snippets.ts +13 -13
- package/lowcode/test/meta.ts +47 -47
- package/lowcode/text-card/meta.ts +1093 -0
- package/lowcode/text-card/snippets.ts +87 -0
- package/lowcode/time-picker/meta.ts +232 -232
- package/lowcode/time-picker/snippets.ts +10 -10
- package/lowcode/timeline/meta.ts +212 -212
- package/lowcode/timeline/snippets.ts +31 -31
- package/lowcode/timeline.item/meta.ts +53 -53
- package/lowcode/timeline.item/snippets.ts +10 -10
- package/lowcode/tooltip/meta.ts +306 -306
- package/lowcode/tooltip/snippets.ts +12 -12
- package/lowcode/transfer/meta.ts +305 -305
- package/lowcode/transfer/snippets.ts +42 -42
- package/lowcode/translation/meta.ts +186 -186
- package/lowcode/translation/snippets.ts +12 -12
- package/lowcode/tree/meta.ts +377 -377
- package/lowcode/tree/snippets.ts +30 -30
- package/lowcode/tree-select/meta.ts +320 -320
- package/lowcode/tree-select/snippets.ts +34 -34
- package/lowcode/typography.link/meta.ts +46 -46
- package/lowcode/typography.link/snippets.ts +14 -14
- package/lowcode/typography.paragraph/meta.ts +208 -208
- package/lowcode/typography.paragraph/snippets.ts +14 -14
- package/lowcode/typography.text/meta.ts +207 -207
- package/lowcode/typography.text/snippets.ts +34 -34
- package/lowcode/typography.title/meta.ts +205 -205
- package/lowcode/typography.title/snippets.ts +46 -46
- package/lowcode/upload/meta.ts +439 -439
- package/lowcode/upload/snippets.ts +16 -16
- package/lowcode/virtual-keyboard/meta.ts +55 -55
- package/lowcode/virtual-keyboard-time/meta.ts +55 -55
- package/lowcode/wallet-card/meta.ts +303 -303
- package/lowcode/wallet-card/snippets.ts +44 -44
- package/package.json +30 -8
- package/build/lowcode/assets-daily.json +0 -89
- package/build/lowcode/assets-dev.json +0 -89
- package/build/lowcode/assets-prod.json +0 -89
- package/build/lowcode/designer.html +0 -303
- package/build/lowcode/index.html +0 -305
- package/build/lowcode/index.js +0 -1
- package/build/lowcode/meta.js +0 -26
- package/build/lowcode/preview.css +0 -1
- package/build/lowcode/preview.html +0 -35
- package/build/lowcode/preview.js +0 -310
- package/build/lowcode/render/default/view.css +0 -1
- package/build/lowcode/render/default/view.js +0 -239
- package/build/lowcode/view.css +0 -1
- package/build/lowcode/view.js +0 -239
|
@@ -1,1880 +1,1880 @@
|
|
|
1
|
-
[class^='pisell-lowcode-picker'],
|
|
2
|
-
[class*=' pisell-lowcode-picker'] {
|
|
3
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
4
|
-
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
|
|
5
|
-
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
6
|
-
font-size: 14px;
|
|
7
|
-
box-sizing: border-box;
|
|
8
|
-
}
|
|
9
|
-
[class^='pisell-lowcode-picker']::before,
|
|
10
|
-
[class*=' pisell-lowcode-picker']::before,
|
|
11
|
-
[class^='pisell-lowcode-picker']::after,
|
|
12
|
-
[class*=' pisell-lowcode-picker']::after {
|
|
13
|
-
box-sizing: border-box;
|
|
14
|
-
}
|
|
15
|
-
[class^='pisell-lowcode-picker'] [class^='pisell-lowcode-picker'],
|
|
16
|
-
[class*=' pisell-lowcode-picker'] [class^='pisell-lowcode-picker'],
|
|
17
|
-
[class^='pisell-lowcode-picker'] [class*=' pisell-lowcode-picker'],
|
|
18
|
-
[class*=' pisell-lowcode-picker'] [class*=' pisell-lowcode-picker'] {
|
|
19
|
-
box-sizing: border-box;
|
|
20
|
-
}
|
|
21
|
-
[class^='pisell-lowcode-picker'] [class^='pisell-lowcode-picker']::before,
|
|
22
|
-
[class*=' pisell-lowcode-picker'] [class^='pisell-lowcode-picker']::before,
|
|
23
|
-
[class^='pisell-lowcode-picker'] [class*=' pisell-lowcode-picker']::before,
|
|
24
|
-
[class*=' pisell-lowcode-picker'] [class*=' pisell-lowcode-picker']::before,
|
|
25
|
-
[class^='pisell-lowcode-picker'] [class^='pisell-lowcode-picker']::after,
|
|
26
|
-
[class*=' pisell-lowcode-picker'] [class^='pisell-lowcode-picker']::after,
|
|
27
|
-
[class^='pisell-lowcode-picker'] [class*=' pisell-lowcode-picker']::after,
|
|
28
|
-
[class*=' pisell-lowcode-picker'] [class*=' pisell-lowcode-picker']::after {
|
|
29
|
-
box-sizing: border-box;
|
|
30
|
-
}
|
|
31
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker {
|
|
32
|
-
box-sizing: border-box;
|
|
33
|
-
margin: 0;
|
|
34
|
-
padding: 4px 11px 4px;
|
|
35
|
-
color: #101828;
|
|
36
|
-
font-size: 14px;
|
|
37
|
-
line-height: 1;
|
|
38
|
-
list-style: none;
|
|
39
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
40
|
-
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
|
|
41
|
-
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
42
|
-
position: relative;
|
|
43
|
-
display: inline-flex;
|
|
44
|
-
align-items: center;
|
|
45
|
-
background: #ffffff;
|
|
46
|
-
border: 1px solid #d0d5dd;
|
|
47
|
-
border-radius: 8px;
|
|
48
|
-
transition: border 0.2s, box-shadow 0.2s;
|
|
49
|
-
}
|
|
50
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker:hover {
|
|
51
|
-
border-color: #6941c6;
|
|
52
|
-
}
|
|
53
|
-
.pisell-lowcode-picker-focused.pisell-lowcode-picker.pisell-lowcode-mode-date-picker {
|
|
54
|
-
border-color: #7f56d9;
|
|
55
|
-
box-shadow: 0 0 0 2px rgba(105, 5, 255, 0.04);
|
|
56
|
-
outline: 0;
|
|
57
|
-
}
|
|
58
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker.pisell-lowcode-picker-disabled {
|
|
59
|
-
background: #f9fafb;
|
|
60
|
-
border-color: #d0d5dd;
|
|
61
|
-
cursor: not-allowed;
|
|
62
|
-
}
|
|
63
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker.pisell-lowcode-picker-disabled
|
|
64
|
-
.pisell-lowcode-picker-suffix {
|
|
65
|
-
color: #d0d5dd;
|
|
66
|
-
}
|
|
67
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker.pisell-lowcode-picker-borderless {
|
|
68
|
-
background-color: transparent !important;
|
|
69
|
-
border-color: transparent !important;
|
|
70
|
-
box-shadow: none !important;
|
|
71
|
-
}
|
|
72
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
73
|
-
.pisell-lowcode-picker-input {
|
|
74
|
-
position: relative;
|
|
75
|
-
display: inline-flex;
|
|
76
|
-
align-items: center;
|
|
77
|
-
width: 100%;
|
|
78
|
-
}
|
|
79
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
80
|
-
.pisell-lowcode-picker-input
|
|
81
|
-
> input {
|
|
82
|
-
position: relative;
|
|
83
|
-
display: inline-block;
|
|
84
|
-
width: 100%;
|
|
85
|
-
min-width: 1px;
|
|
86
|
-
padding: 0;
|
|
87
|
-
color: #101828;
|
|
88
|
-
font-size: 14px;
|
|
89
|
-
line-height: 1.5714285714285714;
|
|
90
|
-
background-color: #ffffff;
|
|
91
|
-
background-image: none;
|
|
92
|
-
border-width: 1px;
|
|
93
|
-
border-style: solid;
|
|
94
|
-
border-color: #d0d5dd;
|
|
95
|
-
border-radius: 0;
|
|
96
|
-
transition: all 0.2s;
|
|
97
|
-
flex: auto;
|
|
98
|
-
height: auto;
|
|
99
|
-
background: transparent;
|
|
100
|
-
border: 0;
|
|
101
|
-
font-family: inherit;
|
|
102
|
-
}
|
|
103
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
104
|
-
.pisell-lowcode-picker-input
|
|
105
|
-
> input::-moz-placeholder {
|
|
106
|
-
opacity: 1;
|
|
107
|
-
}
|
|
108
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
109
|
-
.pisell-lowcode-picker-input
|
|
110
|
-
> input::placeholder {
|
|
111
|
-
color: #667085;
|
|
112
|
-
user-select: none;
|
|
113
|
-
}
|
|
114
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
115
|
-
.pisell-lowcode-picker-input
|
|
116
|
-
> input:placeholder-shown {
|
|
117
|
-
text-overflow: ellipsis;
|
|
118
|
-
}
|
|
119
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
120
|
-
.pisell-lowcode-picker-input
|
|
121
|
-
> input:hover {
|
|
122
|
-
border-color: #6941c6;
|
|
123
|
-
}
|
|
124
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
125
|
-
.pisell-lowcode-picker-input
|
|
126
|
-
> input:focus,
|
|
127
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
128
|
-
.pisell-lowcode-picker-input
|
|
129
|
-
> input:focus-within {
|
|
130
|
-
border-color: #7f56d9;
|
|
131
|
-
box-shadow: 0 0 0 2px rgba(105, 5, 255, 0.04);
|
|
132
|
-
outline: 0;
|
|
133
|
-
}
|
|
134
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
135
|
-
.pisell-lowcode-picker-input
|
|
136
|
-
> input-disabled,
|
|
137
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
138
|
-
.pisell-lowcode-picker-input
|
|
139
|
-
> input[disabled] {
|
|
140
|
-
color: #98a2b3;
|
|
141
|
-
background-color: #f9fafb;
|
|
142
|
-
border-color: #d0d5dd;
|
|
143
|
-
box-shadow: none;
|
|
144
|
-
cursor: not-allowed;
|
|
145
|
-
opacity: 1;
|
|
146
|
-
}
|
|
147
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
148
|
-
.pisell-lowcode-picker-input
|
|
149
|
-
> input-disabled:hover:not([disabled]),
|
|
150
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
151
|
-
.pisell-lowcode-picker-input
|
|
152
|
-
> input[disabled]:hover:not([disabled]) {
|
|
153
|
-
border-color: #d0d5dd;
|
|
154
|
-
background-color: #f9fafb;
|
|
155
|
-
}
|
|
156
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
157
|
-
.pisell-lowcode-picker-input
|
|
158
|
-
> input-borderless,
|
|
159
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
160
|
-
.pisell-lowcode-picker-input
|
|
161
|
-
> input-borderless:hover,
|
|
162
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
163
|
-
.pisell-lowcode-picker-input
|
|
164
|
-
> input-borderless:focus,
|
|
165
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
166
|
-
.pisell-lowcode-picker-input
|
|
167
|
-
> input-borderless-focused,
|
|
168
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
169
|
-
.pisell-lowcode-picker-input
|
|
170
|
-
> input-borderless-disabled,
|
|
171
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
172
|
-
.pisell-lowcode-picker-input
|
|
173
|
-
> input-borderless[disabled] {
|
|
174
|
-
background-color: transparent;
|
|
175
|
-
border: none;
|
|
176
|
-
box-shadow: none;
|
|
177
|
-
}
|
|
178
|
-
textarea.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
179
|
-
.pisell-lowcode-picker-input
|
|
180
|
-
> input {
|
|
181
|
-
max-width: 100%;
|
|
182
|
-
height: auto;
|
|
183
|
-
min-height: 32px;
|
|
184
|
-
line-height: 1.5714285714285714;
|
|
185
|
-
vertical-align: bottom;
|
|
186
|
-
transition: all 0.3s, height 0s;
|
|
187
|
-
resize: vertical;
|
|
188
|
-
}
|
|
189
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
190
|
-
.pisell-lowcode-picker-input
|
|
191
|
-
> input-lg {
|
|
192
|
-
padding: 7px 11px;
|
|
193
|
-
font-size: 16px;
|
|
194
|
-
line-height: 1.5;
|
|
195
|
-
border-radius: 10px;
|
|
196
|
-
}
|
|
197
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
198
|
-
.pisell-lowcode-picker-input
|
|
199
|
-
> input-sm {
|
|
200
|
-
padding: 0px 7px;
|
|
201
|
-
border-radius: 6px;
|
|
202
|
-
}
|
|
203
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
204
|
-
.pisell-lowcode-picker-input
|
|
205
|
-
> input-rtl {
|
|
206
|
-
direction: rtl;
|
|
207
|
-
}
|
|
208
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
209
|
-
.pisell-lowcode-picker-input
|
|
210
|
-
> input-textarea-rtl {
|
|
211
|
-
direction: rtl;
|
|
212
|
-
}
|
|
213
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
214
|
-
.pisell-lowcode-picker-input
|
|
215
|
-
> input:focus {
|
|
216
|
-
box-shadow: none;
|
|
217
|
-
}
|
|
218
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
219
|
-
.pisell-lowcode-picker-input
|
|
220
|
-
> input[disabled] {
|
|
221
|
-
background: transparent;
|
|
222
|
-
}
|
|
223
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
224
|
-
.pisell-lowcode-picker-input:hover
|
|
225
|
-
.pisell-lowcode-picker-clear {
|
|
226
|
-
opacity: 1;
|
|
227
|
-
}
|
|
228
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
229
|
-
.pisell-lowcode-picker-input-placeholder
|
|
230
|
-
> input {
|
|
231
|
-
color: #667085;
|
|
232
|
-
}
|
|
233
|
-
.pisell-lowcode-picker-large {
|
|
234
|
-
padding: 7px 11px 7px !important;
|
|
235
|
-
}
|
|
236
|
-
.pisell-lowcode-picker-large .pisell-lowcode-picker-input > input {
|
|
237
|
-
font-size: 16px;
|
|
238
|
-
line-height: 1.5;
|
|
239
|
-
}
|
|
240
|
-
.pisell-lowcode-picker-small {
|
|
241
|
-
padding: 0px 7px 0px;
|
|
242
|
-
}
|
|
243
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
244
|
-
.pisell-lowcode-picker-suffix {
|
|
245
|
-
display: flex;
|
|
246
|
-
flex: none;
|
|
247
|
-
align-self: center;
|
|
248
|
-
margin-left: 4px;
|
|
249
|
-
color: #98a2b3;
|
|
250
|
-
line-height: 1;
|
|
251
|
-
pointer-events: none;
|
|
252
|
-
}
|
|
253
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
254
|
-
.pisell-lowcode-picker-suffix
|
|
255
|
-
> * {
|
|
256
|
-
vertical-align: top;
|
|
257
|
-
}
|
|
258
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
259
|
-
.pisell-lowcode-picker-suffix
|
|
260
|
-
> *:not(:last-child) {
|
|
261
|
-
margin-right: 8px;
|
|
262
|
-
}
|
|
263
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
264
|
-
.pisell-lowcode-picker-clear {
|
|
265
|
-
position: absolute;
|
|
266
|
-
top: 50%;
|
|
267
|
-
right: 0;
|
|
268
|
-
color: #98a2b3;
|
|
269
|
-
line-height: 1;
|
|
270
|
-
background: #ffffff;
|
|
271
|
-
transform: translateY(-50%);
|
|
272
|
-
cursor: pointer;
|
|
273
|
-
opacity: 0;
|
|
274
|
-
transition: opacity 0.2s, color 0.2s;
|
|
275
|
-
}
|
|
276
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
277
|
-
.pisell-lowcode-picker-clear
|
|
278
|
-
> * {
|
|
279
|
-
vertical-align: top;
|
|
280
|
-
}
|
|
281
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
282
|
-
.pisell-lowcode-picker-clear:hover {
|
|
283
|
-
color: #667085;
|
|
284
|
-
}
|
|
285
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
286
|
-
.pisell-lowcode-picker-separator {
|
|
287
|
-
position: relative;
|
|
288
|
-
display: inline-block;
|
|
289
|
-
width: 1em;
|
|
290
|
-
height: 16px;
|
|
291
|
-
color: #98a2b3;
|
|
292
|
-
font-size: 16px;
|
|
293
|
-
vertical-align: top;
|
|
294
|
-
cursor: default;
|
|
295
|
-
}
|
|
296
|
-
.pisell-lowcode-picker-focused
|
|
297
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
298
|
-
.pisell-lowcode-picker-separator {
|
|
299
|
-
color: #667085;
|
|
300
|
-
}
|
|
301
|
-
.pisell-lowcode-picker-disabled
|
|
302
|
-
.pisell-lowcode-picker-range-separator
|
|
303
|
-
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
304
|
-
.pisell-lowcode-picker-separator {
|
|
305
|
-
cursor: not-allowed;
|
|
306
|
-
}
|
|
307
|
-
.pisell-lowcode-picker-range {
|
|
308
|
-
position: relative;
|
|
309
|
-
display: inline-flex;
|
|
310
|
-
}
|
|
311
|
-
.pisell-lowcode-picker-range .pisell-lowcode-picker-clear {
|
|
312
|
-
right: 11px;
|
|
313
|
-
}
|
|
314
|
-
.pisell-lowcode-picker-range:hover .pisell-lowcode-picker-clear {
|
|
315
|
-
opacity: 1;
|
|
316
|
-
}
|
|
317
|
-
.pisell-lowcode-picker-range .pisell-lowcode-picker-active-bar {
|
|
318
|
-
bottom: -1px;
|
|
319
|
-
height: 2px;
|
|
320
|
-
margin-left: 11px;
|
|
321
|
-
background: #7f56d9;
|
|
322
|
-
opacity: 0;
|
|
323
|
-
transition: all 0.3s ease-out;
|
|
324
|
-
pointer-events: none;
|
|
325
|
-
}
|
|
326
|
-
.pisell-lowcode-picker-range.pisell-lowcode-picker-focused
|
|
327
|
-
.pisell-lowcode-picker-active-bar {
|
|
328
|
-
opacity: 1;
|
|
329
|
-
}
|
|
330
|
-
.pisell-lowcode-picker-range .pisell-lowcode-picker-range-separator {
|
|
331
|
-
align-items: center;
|
|
332
|
-
padding: 0 8px;
|
|
333
|
-
line-height: 1;
|
|
334
|
-
}
|
|
335
|
-
.pisell-lowcode-picker-range.pisell-lowcode-picker-small
|
|
336
|
-
.pisell-lowcode-picker-clear {
|
|
337
|
-
right: 7px;
|
|
338
|
-
}
|
|
339
|
-
.pisell-lowcode-picker-range.pisell-lowcode-picker-small
|
|
340
|
-
.pisell-lowcode-picker-active-bar {
|
|
341
|
-
margin-left: 7px;
|
|
342
|
-
}
|
|
343
|
-
.pisell-lowcode-picker-custom-dropdown {
|
|
344
|
-
//box-sizing: border-box;
|
|
345
|
-
//margin: 0;
|
|
346
|
-
//padding: 0;
|
|
347
|
-
//color: #101828;
|
|
348
|
-
//font-size: 14px;
|
|
349
|
-
//line-height: 1.5714285714285714;
|
|
350
|
-
//list-style: none;
|
|
351
|
-
//font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
352
|
-
//'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
|
|
353
|
-
//'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
354
|
-
//position: absolute;
|
|
355
|
-
//top: -9999px;
|
|
356
|
-
//left: -9999px;
|
|
357
|
-
//z-index: 1050;
|
|
358
|
-
}
|
|
359
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-panel {
|
|
360
|
-
display: inline-flex;
|
|
361
|
-
flex-direction: column;
|
|
362
|
-
text-align: center;
|
|
363
|
-
background: #ffffff;
|
|
364
|
-
border: 1px solid rgba(22, 44, 88, 0.09);
|
|
365
|
-
border-radius: 10px;
|
|
366
|
-
outline: none;
|
|
367
|
-
}
|
|
368
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-panel-focused {
|
|
369
|
-
border-color: #7f56d9;
|
|
370
|
-
}
|
|
371
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-panel-rtl {
|
|
372
|
-
direction: rtl;
|
|
373
|
-
}
|
|
374
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
375
|
-
.pisell-lowcode-picker-panel-rtl
|
|
376
|
-
.pisell-lowcode-picker-prev-icon,
|
|
377
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
378
|
-
.pisell-lowcode-picker-panel-rtl
|
|
379
|
-
.pisell-lowcode-picker-super-prev-icon {
|
|
380
|
-
transform: rotate(45deg);
|
|
381
|
-
}
|
|
382
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
383
|
-
.pisell-lowcode-picker-panel-rtl
|
|
384
|
-
.pisell-lowcode-picker-next-icon,
|
|
385
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
386
|
-
.pisell-lowcode-picker-panel-rtl
|
|
387
|
-
.pisell-lowcode-picker-super-next-icon {
|
|
388
|
-
transform: rotate(-135deg);
|
|
389
|
-
}
|
|
390
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-decade-panel,
|
|
391
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-year-panel,
|
|
392
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-quarter-panel,
|
|
393
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-month-panel,
|
|
394
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-week-panel,
|
|
395
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-date-panel,
|
|
396
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-time-panel {
|
|
397
|
-
display: flex;
|
|
398
|
-
flex-direction: column;
|
|
399
|
-
width: 100%;
|
|
400
|
-
}
|
|
401
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-header {
|
|
402
|
-
display: flex;
|
|
403
|
-
padding: 0 8px;
|
|
404
|
-
color: #101828;
|
|
405
|
-
border: none;
|
|
406
|
-
}
|
|
407
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-header > * {
|
|
408
|
-
flex: none;
|
|
409
|
-
}
|
|
410
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-header button {
|
|
411
|
-
padding: 0;
|
|
412
|
-
color: #667085;
|
|
413
|
-
line-height: 40px;
|
|
414
|
-
background: transparent;
|
|
415
|
-
border: 0;
|
|
416
|
-
cursor: pointer;
|
|
417
|
-
transition: color 0.2s;
|
|
418
|
-
font-size: inherit;
|
|
419
|
-
}
|
|
420
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-header > button {
|
|
421
|
-
min-width: 1.6em;
|
|
422
|
-
font-size: 14px;
|
|
423
|
-
}
|
|
424
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
425
|
-
.pisell-lowcode-picker-header
|
|
426
|
-
> button:hover {
|
|
427
|
-
color: #101828;
|
|
428
|
-
}
|
|
429
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-header-view {
|
|
430
|
-
flex: auto;
|
|
431
|
-
font-weight: 600;
|
|
432
|
-
line-height: 40px;
|
|
433
|
-
}
|
|
434
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
435
|
-
.pisell-lowcode-picker-header-view
|
|
436
|
-
button {
|
|
437
|
-
color: inherit;
|
|
438
|
-
font-weight: inherit;
|
|
439
|
-
vertical-align: top;
|
|
440
|
-
}
|
|
441
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
442
|
-
.pisell-lowcode-picker-header-view
|
|
443
|
-
button:not(:first-child) {
|
|
444
|
-
margin-left: 8px;
|
|
445
|
-
}
|
|
446
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
447
|
-
.pisell-lowcode-picker-header-view
|
|
448
|
-
button:hover {
|
|
449
|
-
color: #7f56d9;
|
|
450
|
-
}
|
|
451
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-prev-icon,
|
|
452
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-next-icon,
|
|
453
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-super-prev-icon,
|
|
454
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-super-next-icon {
|
|
455
|
-
position: relative;
|
|
456
|
-
display: inline-block;
|
|
457
|
-
width: 7px;
|
|
458
|
-
height: 7px;
|
|
459
|
-
}
|
|
460
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-prev-icon::before,
|
|
461
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-next-icon::before,
|
|
462
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
463
|
-
.pisell-lowcode-picker-super-prev-icon::before,
|
|
464
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
465
|
-
.pisell-lowcode-picker-super-next-icon::before {
|
|
466
|
-
position: absolute;
|
|
467
|
-
top: 0;
|
|
468
|
-
left: 0;
|
|
469
|
-
display: inline-block;
|
|
470
|
-
width: 7px;
|
|
471
|
-
height: 7px;
|
|
472
|
-
border: 0 solid currentcolor;
|
|
473
|
-
border-top-width: 1.5px;
|
|
474
|
-
border-bottom-width: 0;
|
|
475
|
-
border-left-width: 1.5px;
|
|
476
|
-
border-right-width: 0;
|
|
477
|
-
content: '';
|
|
478
|
-
}
|
|
479
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
480
|
-
.pisell-lowcode-picker-super-prev-icon::after,
|
|
481
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
482
|
-
.pisell-lowcode-picker-super-next-icon::after {
|
|
483
|
-
position: absolute;
|
|
484
|
-
top: 4px;
|
|
485
|
-
left: 4px;
|
|
486
|
-
display: inline-block;
|
|
487
|
-
width: 7px;
|
|
488
|
-
height: 7px;
|
|
489
|
-
border: 0 solid currentcolor;
|
|
490
|
-
border-top-width: 1.5px;
|
|
491
|
-
border-bottom-width: 0;
|
|
492
|
-
border-left-width: 1.5px;
|
|
493
|
-
border-right-width: 0;
|
|
494
|
-
content: '';
|
|
495
|
-
}
|
|
496
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-prev-icon,
|
|
497
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-super-prev-icon {
|
|
498
|
-
transform: rotate(-45deg);
|
|
499
|
-
}
|
|
500
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-next-icon,
|
|
501
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-super-next-icon {
|
|
502
|
-
transform: rotate(135deg);
|
|
503
|
-
}
|
|
504
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-content {
|
|
505
|
-
width: 100%;
|
|
506
|
-
table-layout: fixed;
|
|
507
|
-
border-collapse: collapse;
|
|
508
|
-
}
|
|
509
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-content th,
|
|
510
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-content td {
|
|
511
|
-
position: relative;
|
|
512
|
-
min-width: 24px;
|
|
513
|
-
font-weight: normal;
|
|
514
|
-
}
|
|
515
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-content th {
|
|
516
|
-
height: 36px;
|
|
517
|
-
color: #101828;
|
|
518
|
-
vertical-align: middle;
|
|
519
|
-
}
|
|
520
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-cell {
|
|
521
|
-
padding: 6px 0;
|
|
522
|
-
color: #98a2b3;
|
|
523
|
-
cursor: pointer;
|
|
524
|
-
}
|
|
525
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-cell-in-view {
|
|
526
|
-
color: #101828;
|
|
527
|
-
}
|
|
528
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-cell::before {
|
|
529
|
-
position: absolute;
|
|
530
|
-
top: 50%;
|
|
531
|
-
left: 0;
|
|
532
|
-
right: 0;
|
|
533
|
-
z-index: 1;
|
|
534
|
-
height: 24px;
|
|
535
|
-
transform: translateY(-50%);
|
|
536
|
-
transition: all 0.3s;
|
|
537
|
-
content: '';
|
|
538
|
-
}
|
|
539
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
540
|
-
.pisell-lowcode-picker-cell
|
|
541
|
-
.pisell-lowcode-picker-cell-inner {
|
|
542
|
-
position: relative;
|
|
543
|
-
z-index: 2;
|
|
544
|
-
display: inline-block;
|
|
545
|
-
min-width: 40px;
|
|
546
|
-
height: 40px;
|
|
547
|
-
line-height: 40px;
|
|
548
|
-
border-radius: 50%;
|
|
549
|
-
transition: background 0.2s, border 0.2s;
|
|
550
|
-
}
|
|
551
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
552
|
-
.pisell-lowcode-picker-cell-range-hover-start
|
|
553
|
-
.pisell-lowcode-picker-cell-inner,
|
|
554
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
555
|
-
.pisell-lowcode-picker-cell-range-hover-end
|
|
556
|
-
.pisell-lowcode-picker-cell-inner {
|
|
557
|
-
border-top-right-radius: 0;
|
|
558
|
-
border-bottom-right-radius: 0;
|
|
559
|
-
}
|
|
560
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
561
|
-
.pisell-lowcode-picker-cell:hover:not(.pisell-lowcode-picker-cell-in-view)
|
|
562
|
-
.pisell-lowcode-picker-cell-inner,
|
|
563
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
564
|
-
.pisell-lowcode-picker-cell:hover:not(
|
|
565
|
-
.pisell-lowcode-picker-cell-selected
|
|
566
|
-
):not(.pisell-lowcode-picker-cell-range-start):not(
|
|
567
|
-
.pisell-lowcode-picker-cell-range-end
|
|
568
|
-
):not(.pisell-lowcode-picker-cell-range-hover-start):not(
|
|
569
|
-
.pisell-lowcode-picker-cell-range-hover-end
|
|
570
|
-
)
|
|
571
|
-
.pisell-lowcode-picker-cell-inner {
|
|
572
|
-
background: #f2f4f7;
|
|
573
|
-
}
|
|
574
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
575
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-today
|
|
576
|
-
.pisell-lowcode-picker-cell-inner::before {
|
|
577
|
-
position: absolute;
|
|
578
|
-
top: 0;
|
|
579
|
-
right: 0;
|
|
580
|
-
bottom: 0;
|
|
581
|
-
left: 0;
|
|
582
|
-
z-index: 1;
|
|
583
|
-
border: 1px solid #7f56d9;
|
|
584
|
-
border-radius: 50%;
|
|
585
|
-
content: '';
|
|
586
|
-
}
|
|
587
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
588
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range {
|
|
589
|
-
position: relative;
|
|
590
|
-
}
|
|
591
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
592
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range::before {
|
|
593
|
-
background: #f9f5ff;
|
|
594
|
-
}
|
|
595
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
596
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-selected
|
|
597
|
-
.pisell-lowcode-picker-cell-inner,
|
|
598
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
599
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-start
|
|
600
|
-
.pisell-lowcode-picker-cell-inner,
|
|
601
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
602
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-end
|
|
603
|
-
.pisell-lowcode-picker-cell-inner {
|
|
604
|
-
color: #fff;
|
|
605
|
-
background: #7f56d9;
|
|
606
|
-
}
|
|
607
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
608
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-start:not(
|
|
609
|
-
.pisell-lowcode-picker-cell-range-start-single
|
|
610
|
-
)::before,
|
|
611
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
612
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-end:not(
|
|
613
|
-
.pisell-lowcode-picker-cell-range-end-single
|
|
614
|
-
)::before {
|
|
615
|
-
background: #f9f5ff;
|
|
616
|
-
}
|
|
617
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
618
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-start::before {
|
|
619
|
-
left: 50%;
|
|
620
|
-
}
|
|
621
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
622
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-end::before {
|
|
623
|
-
right: 50%;
|
|
624
|
-
}
|
|
625
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
626
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-start:not(
|
|
627
|
-
.pisell-lowcode-picker-cell-in-range
|
|
628
|
-
):not(.pisell-lowcode-picker-cell-range-start):not(
|
|
629
|
-
.pisell-lowcode-picker-cell-range-end
|
|
630
|
-
)::after,
|
|
631
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
632
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-end:not(
|
|
633
|
-
.pisell-lowcode-picker-cell-in-range
|
|
634
|
-
):not(.pisell-lowcode-picker-cell-range-start):not(
|
|
635
|
-
.pisell-lowcode-picker-cell-range-end
|
|
636
|
-
)::after,
|
|
637
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
638
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-start.pisell-lowcode-picker-cell-range-start-single::after,
|
|
639
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
640
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-start.pisell-lowcode-picker-cell-range-start.pisell-lowcode-picker-cell-range-end.pisell-lowcode-picker-cell-range-end-near-hover::after,
|
|
641
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
642
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-end.pisell-lowcode-picker-cell-range-start.pisell-lowcode-picker-cell-range-end.pisell-lowcode-picker-cell-range-start-near-hover::after,
|
|
643
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
644
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-end.pisell-lowcode-picker-cell-range-end-single::after,
|
|
645
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
646
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover:not(
|
|
647
|
-
.pisell-lowcode-picker-cell-in-range
|
|
648
|
-
)::after {
|
|
649
|
-
position: absolute;
|
|
650
|
-
top: 50%;
|
|
651
|
-
z-index: 0;
|
|
652
|
-
height: 24px;
|
|
653
|
-
border-top: 1px dashed #bea9ec;
|
|
654
|
-
border-bottom: 1px dashed #bea9ec;
|
|
655
|
-
transform: translateY(-50%);
|
|
656
|
-
transition: all 0.3s;
|
|
657
|
-
content: '';
|
|
658
|
-
}
|
|
659
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
660
|
-
.pisell-lowcode-picker-cell-range-hover-start::after,
|
|
661
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
662
|
-
.pisell-lowcode-picker-cell-range-hover-end::after,
|
|
663
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
664
|
-
.pisell-lowcode-picker-cell-range-hover::after {
|
|
665
|
-
right: 0;
|
|
666
|
-
left: 2px;
|
|
667
|
-
}
|
|
668
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
669
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover::before,
|
|
670
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
671
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-start::before,
|
|
672
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
673
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-end::before,
|
|
674
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
675
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-start.pisell-lowcode-picker-cell-range-hover::before,
|
|
676
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
677
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-end.pisell-lowcode-picker-cell-range-hover::before,
|
|
678
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
679
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-start:not(
|
|
680
|
-
.pisell-lowcode-picker-cell-range-start-single
|
|
681
|
-
).pisell-lowcode-picker-cell-range-hover-start::before,
|
|
682
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
683
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-end:not(
|
|
684
|
-
.pisell-lowcode-picker-cell-range-end-single
|
|
685
|
-
).pisell-lowcode-picker-cell-range-hover-end::before,
|
|
686
|
-
.pisell-lowcode-picker-panel
|
|
687
|
-
> :not(.pisell-lowcode-picker-date-panel)
|
|
688
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
689
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-start::before,
|
|
690
|
-
.pisell-lowcode-picker-panel
|
|
691
|
-
> :not(.pisell-lowcode-picker-date-panel)
|
|
692
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
693
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-end::before {
|
|
694
|
-
background: #ede8fa;
|
|
695
|
-
}
|
|
696
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
697
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-start:not(
|
|
698
|
-
.pisell-lowcode-picker-cell-range-start-single
|
|
699
|
-
):not(.pisell-lowcode-picker-cell-range-end)
|
|
700
|
-
.pisell-lowcode-picker-cell-inner {
|
|
701
|
-
border-top-left-radius: 6px;
|
|
702
|
-
border-bottom-left-radius: 6px;
|
|
703
|
-
border-top-right-radius: 0;
|
|
704
|
-
border-bottom-right-radius: 0;
|
|
705
|
-
}
|
|
706
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
707
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-end:not(
|
|
708
|
-
.pisell-lowcode-picker-cell-range-end-single
|
|
709
|
-
):not(.pisell-lowcode-picker-cell-range-start)
|
|
710
|
-
.pisell-lowcode-picker-cell-inner {
|
|
711
|
-
border-top-left-radius: 0;
|
|
712
|
-
border-bottom-left-radius: 0;
|
|
713
|
-
border-top-right-radius: 6px;
|
|
714
|
-
border-bottom-right-radius: 6px;
|
|
715
|
-
}
|
|
716
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
717
|
-
.pisell-lowcode-picker-cell-range-hover.pisell-lowcode-picker-cell-range-end::after {
|
|
718
|
-
left: 50%;
|
|
719
|
-
}
|
|
720
|
-
tr
|
|
721
|
-
> .pisell-lowcode-picker-custom-dropdown
|
|
722
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover:first-child::after,
|
|
723
|
-
tr
|
|
724
|
-
> .pisell-lowcode-picker-custom-dropdown
|
|
725
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-end:first-child::after,
|
|
726
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
727
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-start.pisell-lowcode-picker-cell-range-hover-edge-start.pisell-lowcode-picker-cell-range-hover-edge-start-near-range::after,
|
|
728
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
729
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-edge-start:not(
|
|
730
|
-
.pisell-lowcode-picker-cell-range-hover-edge-start-near-range
|
|
731
|
-
)::after,
|
|
732
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
733
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-start::after {
|
|
734
|
-
left: 6px;
|
|
735
|
-
border-left: 1px dashed #bea9ec;
|
|
736
|
-
border-top-left-radius: 6px;
|
|
737
|
-
border-bottom-left-radius: 6px;
|
|
738
|
-
}
|
|
739
|
-
tr
|
|
740
|
-
> .pisell-lowcode-picker-custom-dropdown
|
|
741
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover:last-child::after,
|
|
742
|
-
tr
|
|
743
|
-
> .pisell-lowcode-picker-custom-dropdown
|
|
744
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-start:last-child::after,
|
|
745
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
746
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-end.pisell-lowcode-picker-cell-range-hover-edge-end.pisell-lowcode-picker-cell-range-hover-edge-end-near-range::after,
|
|
747
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
748
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-edge-end:not(
|
|
749
|
-
.pisell-lowcode-picker-cell-range-hover-edge-end-near-range
|
|
750
|
-
)::after,
|
|
751
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
752
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-end::after {
|
|
753
|
-
right: 6px;
|
|
754
|
-
border-right: 1px dashed #bea9ec;
|
|
755
|
-
border-top-right-radius: 6px;
|
|
756
|
-
border-bottom-right-radius: 6px;
|
|
757
|
-
}
|
|
758
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-cell-disabled {
|
|
759
|
-
color: #98a2b3;
|
|
760
|
-
pointer-events: none;
|
|
761
|
-
}
|
|
762
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
763
|
-
.pisell-lowcode-picker-cell-disabled
|
|
764
|
-
.pisell-lowcode-picker-cell-inner {
|
|
765
|
-
background: transparent;
|
|
766
|
-
}
|
|
767
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
768
|
-
.pisell-lowcode-picker-cell-disabled::before {
|
|
769
|
-
background: #f9fafb;
|
|
770
|
-
}
|
|
771
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
772
|
-
.pisell-lowcode-picker-cell-disabled.pisell-lowcode-picker-cell-today
|
|
773
|
-
.pisell-lowcode-picker-cell-inner::before {
|
|
774
|
-
border-color: #98a2b3;
|
|
775
|
-
}
|
|
776
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
777
|
-
.pisell-lowcode-picker-date-panel
|
|
778
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-start
|
|
779
|
-
.pisell-lowcode-picker-cell-inner::after,
|
|
780
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
781
|
-
.pisell-lowcode-picker-date-panel
|
|
782
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-end
|
|
783
|
-
.pisell-lowcode-picker-cell-inner::after {
|
|
784
|
-
position: absolute;
|
|
785
|
-
top: 0;
|
|
786
|
-
bottom: 0;
|
|
787
|
-
z-index: -1;
|
|
788
|
-
background: #ede8fa;
|
|
789
|
-
transition: all 0.3s;
|
|
790
|
-
content: '';
|
|
791
|
-
}
|
|
792
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
793
|
-
.pisell-lowcode-picker-date-panel
|
|
794
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-start
|
|
795
|
-
.pisell-lowcode-picker-cell-inner::after {
|
|
796
|
-
right: -6px;
|
|
797
|
-
left: 0;
|
|
798
|
-
}
|
|
799
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
800
|
-
.pisell-lowcode-picker-date-panel
|
|
801
|
-
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-end
|
|
802
|
-
.pisell-lowcode-picker-cell-inner::after {
|
|
803
|
-
right: 0;
|
|
804
|
-
left: -6px;
|
|
805
|
-
}
|
|
806
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
807
|
-
.pisell-lowcode-picker-range-hover.pisell-lowcode-picker-range-start::after {
|
|
808
|
-
right: 50%;
|
|
809
|
-
}
|
|
810
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
811
|
-
.pisell-lowcode-picker-decade-panel
|
|
812
|
-
.pisell-lowcode-picker-content,
|
|
813
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
814
|
-
.pisell-lowcode-picker-year-panel
|
|
815
|
-
.pisell-lowcode-picker-content,
|
|
816
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
817
|
-
.pisell-lowcode-picker-quarter-panel
|
|
818
|
-
.pisell-lowcode-picker-content,
|
|
819
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
820
|
-
.pisell-lowcode-picker-month-panel
|
|
821
|
-
.pisell-lowcode-picker-content {
|
|
822
|
-
height: 264px;
|
|
823
|
-
}
|
|
824
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
825
|
-
.pisell-lowcode-picker-decade-panel
|
|
826
|
-
.pisell-lowcode-picker-cell-inner,
|
|
827
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
828
|
-
.pisell-lowcode-picker-year-panel
|
|
829
|
-
.pisell-lowcode-picker-cell-inner,
|
|
830
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
831
|
-
.pisell-lowcode-picker-quarter-panel
|
|
832
|
-
.pisell-lowcode-picker-cell-inner,
|
|
833
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
834
|
-
.pisell-lowcode-picker-month-panel
|
|
835
|
-
.pisell-lowcode-picker-cell-inner {
|
|
836
|
-
padding: 0 8px;
|
|
837
|
-
}
|
|
838
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
839
|
-
.pisell-lowcode-picker-quarter-panel
|
|
840
|
-
.pisell-lowcode-picker-content {
|
|
841
|
-
height: 56px;
|
|
842
|
-
}
|
|
843
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
844
|
-
.pisell-lowcode-picker-quarter-panel
|
|
845
|
-
.pisell-lowcode-picker-cell-range-hover-start::after {
|
|
846
|
-
left: 8px;
|
|
847
|
-
border-left: 1px dashed #bea9ec;
|
|
848
|
-
}
|
|
849
|
-
.pisell-lowcode-picker-panel-rtl
|
|
850
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
851
|
-
.pisell-lowcode-picker-quarter-panel
|
|
852
|
-
.pisell-lowcode-picker-cell-range-hover-start::after {
|
|
853
|
-
right: 8px;
|
|
854
|
-
border-right: 1px dashed #bea9ec;
|
|
855
|
-
}
|
|
856
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
857
|
-
.pisell-lowcode-picker-quarter-panel
|
|
858
|
-
.pisell-lowcode-picker-cell-range-hover-end::after {
|
|
859
|
-
right: 8px;
|
|
860
|
-
border-right: 1px dashed #bea9ec;
|
|
861
|
-
}
|
|
862
|
-
.pisell-lowcode-picker-panel-rtl
|
|
863
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
864
|
-
.pisell-lowcode-picker-quarter-panel
|
|
865
|
-
.pisell-lowcode-picker-cell-range-hover-end::after {
|
|
866
|
-
left: 8px;
|
|
867
|
-
border-left: 1px dashed #bea9ec;
|
|
868
|
-
}
|
|
869
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
870
|
-
.pisell-lowcode-picker-panel
|
|
871
|
-
.pisell-lowcode-picker-footer {
|
|
872
|
-
border-top: 1px solid rgba(22, 44, 88, 0.09);
|
|
873
|
-
}
|
|
874
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-footer {
|
|
875
|
-
width: min-content;
|
|
876
|
-
min-width: 100%;
|
|
877
|
-
line-height: 38px;
|
|
878
|
-
text-align: center;
|
|
879
|
-
}
|
|
880
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-footer-extra {
|
|
881
|
-
padding: 0 12px;
|
|
882
|
-
line-height: 38px;
|
|
883
|
-
text-align: start;
|
|
884
|
-
}
|
|
885
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
886
|
-
.pisell-lowcode-picker-footer-extra:not(:last-child) {
|
|
887
|
-
border-bottom: 1px solid rgba(22, 44, 88, 0.09);
|
|
888
|
-
}
|
|
889
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-now {
|
|
890
|
-
text-align: start;
|
|
891
|
-
}
|
|
892
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-today-btn {
|
|
893
|
-
color: #1570ef;
|
|
894
|
-
}
|
|
895
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-today-btn:hover {
|
|
896
|
-
color: #69b1ff;
|
|
897
|
-
}
|
|
898
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-today-btn:active {
|
|
899
|
-
color: #0852c9;
|
|
900
|
-
}
|
|
901
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
902
|
-
.pisell-lowcode-picker-today-btn.pisell-lowcode-picker-today-btn-disabled {
|
|
903
|
-
color: #98a2b3;
|
|
904
|
-
cursor: not-allowed;
|
|
905
|
-
}
|
|
906
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
907
|
-
.pisell-lowcode-picker-decade-panel
|
|
908
|
-
.pisell-lowcode-picker-cell-inner {
|
|
909
|
-
padding: 0 4px;
|
|
910
|
-
}
|
|
911
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
912
|
-
.pisell-lowcode-picker-decade-panel
|
|
913
|
-
.pisell-lowcode-picker-cell::before {
|
|
914
|
-
display: none;
|
|
915
|
-
}
|
|
916
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
917
|
-
.pisell-lowcode-picker-year-panel
|
|
918
|
-
.pisell-lowcode-picker-body,
|
|
919
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
920
|
-
.pisell-lowcode-picker-quarter-panel
|
|
921
|
-
.pisell-lowcode-picker-body,
|
|
922
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
923
|
-
.pisell-lowcode-picker-month-panel
|
|
924
|
-
.pisell-lowcode-picker-body {
|
|
925
|
-
padding: 0 8px;
|
|
926
|
-
}
|
|
927
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
928
|
-
.pisell-lowcode-picker-year-panel
|
|
929
|
-
.pisell-lowcode-picker-cell-inner,
|
|
930
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
931
|
-
.pisell-lowcode-picker-quarter-panel
|
|
932
|
-
.pisell-lowcode-picker-cell-inner,
|
|
933
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
934
|
-
.pisell-lowcode-picker-month-panel
|
|
935
|
-
.pisell-lowcode-picker-cell-inner {
|
|
936
|
-
width: 60px;
|
|
937
|
-
}
|
|
938
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
939
|
-
.pisell-lowcode-picker-year-panel
|
|
940
|
-
.pisell-lowcode-picker-cell-range-hover-start::after,
|
|
941
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
942
|
-
.pisell-lowcode-picker-quarter-panel
|
|
943
|
-
.pisell-lowcode-picker-cell-range-hover-start::after,
|
|
944
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
945
|
-
.pisell-lowcode-picker-month-panel
|
|
946
|
-
.pisell-lowcode-picker-cell-range-hover-start::after {
|
|
947
|
-
border-top-left-radius: 6px;
|
|
948
|
-
border-bottom-left-radius: 6px;
|
|
949
|
-
border-top-right-radius: 0;
|
|
950
|
-
border-bottom-right-radius: 0;
|
|
951
|
-
}
|
|
952
|
-
.pisell-lowcode-picker-panel-rtl
|
|
953
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
954
|
-
.pisell-lowcode-picker-year-panel
|
|
955
|
-
.pisell-lowcode-picker-cell-range-hover-start::after,
|
|
956
|
-
.pisell-lowcode-picker-panel-rtl
|
|
957
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
958
|
-
.pisell-lowcode-picker-quarter-panel
|
|
959
|
-
.pisell-lowcode-picker-cell-range-hover-start::after,
|
|
960
|
-
.pisell-lowcode-picker-panel-rtl
|
|
961
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
962
|
-
.pisell-lowcode-picker-month-panel
|
|
963
|
-
.pisell-lowcode-picker-cell-range-hover-start::after {
|
|
964
|
-
border-top-left-radius: 0;
|
|
965
|
-
border-bottom-left-radius: 0;
|
|
966
|
-
border-top-right-radius: 6px;
|
|
967
|
-
border-bottom-right-radius: 6px;
|
|
968
|
-
}
|
|
969
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
970
|
-
.pisell-lowcode-picker-year-panel
|
|
971
|
-
.pisell-lowcode-picker-cell-range-hover-end::after,
|
|
972
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
973
|
-
.pisell-lowcode-picker-quarter-panel
|
|
974
|
-
.pisell-lowcode-picker-cell-range-hover-end::after,
|
|
975
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
976
|
-
.pisell-lowcode-picker-month-panel
|
|
977
|
-
.pisell-lowcode-picker-cell-range-hover-end::after {
|
|
978
|
-
border-top-left-radius: 0;
|
|
979
|
-
border-bottom-left-radius: 0;
|
|
980
|
-
border-top-right-radius: 6px;
|
|
981
|
-
border-bottom-right-radius: 6px;
|
|
982
|
-
}
|
|
983
|
-
.pisell-lowcode-picker-panel-rtl
|
|
984
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
985
|
-
.pisell-lowcode-picker-year-panel
|
|
986
|
-
.pisell-lowcode-picker-cell-range-hover-end::after,
|
|
987
|
-
.pisell-lowcode-picker-panel-rtl
|
|
988
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
989
|
-
.pisell-lowcode-picker-quarter-panel
|
|
990
|
-
.pisell-lowcode-picker-cell-range-hover-end::after,
|
|
991
|
-
.pisell-lowcode-picker-panel-rtl
|
|
992
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
993
|
-
.pisell-lowcode-picker-month-panel
|
|
994
|
-
.pisell-lowcode-picker-cell-range-hover-end::after {
|
|
995
|
-
border-top-left-radius: 6px;
|
|
996
|
-
border-bottom-left-radius: 6px;
|
|
997
|
-
border-top-right-radius: 0;
|
|
998
|
-
border-bottom-right-radius: 0;
|
|
999
|
-
}
|
|
1000
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1001
|
-
.pisell-lowcode-picker-year-panel
|
|
1002
|
-
.pisell-lowcode-picker-cell-range-hover-start::after,
|
|
1003
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1004
|
-
.pisell-lowcode-picker-month-panel
|
|
1005
|
-
.pisell-lowcode-picker-cell-range-hover-start::after {
|
|
1006
|
-
left: 18.66666666666667px;
|
|
1007
|
-
border-left: 1px dashed #bea9ec;
|
|
1008
|
-
}
|
|
1009
|
-
.pisell-lowcode-picker-panel-rtl
|
|
1010
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1011
|
-
.pisell-lowcode-picker-year-panel
|
|
1012
|
-
.pisell-lowcode-picker-cell-range-hover-start::after,
|
|
1013
|
-
.pisell-lowcode-picker-panel-rtl
|
|
1014
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1015
|
-
.pisell-lowcode-picker-month-panel
|
|
1016
|
-
.pisell-lowcode-picker-cell-range-hover-start::after {
|
|
1017
|
-
right: 18.66666666666667px;
|
|
1018
|
-
border-right: 1px dashed #bea9ec;
|
|
1019
|
-
}
|
|
1020
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1021
|
-
.pisell-lowcode-picker-year-panel
|
|
1022
|
-
.pisell-lowcode-picker-cell-range-hover-end::after,
|
|
1023
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1024
|
-
.pisell-lowcode-picker-month-panel
|
|
1025
|
-
.pisell-lowcode-picker-cell-range-hover-end::after {
|
|
1026
|
-
right: 18.66666666666667px;
|
|
1027
|
-
border-right: 1px dashed #bea9ec;
|
|
1028
|
-
}
|
|
1029
|
-
.pisell-lowcode-picker-panel-rtl
|
|
1030
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1031
|
-
.pisell-lowcode-picker-year-panel
|
|
1032
|
-
.pisell-lowcode-picker-cell-range-hover-end::after,
|
|
1033
|
-
.pisell-lowcode-picker-panel-rtl
|
|
1034
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1035
|
-
.pisell-lowcode-picker-month-panel
|
|
1036
|
-
.pisell-lowcode-picker-cell-range-hover-end::after {
|
|
1037
|
-
left: 18.66666666666667px;
|
|
1038
|
-
border-left: 1px dashed #bea9ec;
|
|
1039
|
-
}
|
|
1040
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1041
|
-
.pisell-lowcode-picker-week-panel
|
|
1042
|
-
.pisell-lowcode-picker-body {
|
|
1043
|
-
padding: 8px 12px;
|
|
1044
|
-
}
|
|
1045
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1046
|
-
.pisell-lowcode-picker-week-panel
|
|
1047
|
-
.pisell-lowcode-picker-cell:hover
|
|
1048
|
-
.pisell-lowcode-picker-cell-inner,
|
|
1049
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1050
|
-
.pisell-lowcode-picker-week-panel
|
|
1051
|
-
.pisell-lowcode-picker-cell-selected
|
|
1052
|
-
.pisell-lowcode-picker-cell-inner,
|
|
1053
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1054
|
-
.pisell-lowcode-picker-week-panel
|
|
1055
|
-
.pisell-lowcode-picker-cell
|
|
1056
|
-
.pisell-lowcode-picker-cell-inner {
|
|
1057
|
-
background: transparent !important;
|
|
1058
|
-
}
|
|
1059
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1060
|
-
.pisell-lowcode-picker-week-panel-row
|
|
1061
|
-
td:before {
|
|
1062
|
-
transition: background 0.2s;
|
|
1063
|
-
}
|
|
1064
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1065
|
-
.pisell-lowcode-picker-week-panel-row
|
|
1066
|
-
td:first-child:before {
|
|
1067
|
-
border-top-left-radius: 6px;
|
|
1068
|
-
border-bottom-left-radius: 6px;
|
|
1069
|
-
}
|
|
1070
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1071
|
-
.pisell-lowcode-picker-week-panel-row
|
|
1072
|
-
td:last-child:before {
|
|
1073
|
-
border-top-right-radius: 6px;
|
|
1074
|
-
border-bottom-right-radius: 6px;
|
|
1075
|
-
}
|
|
1076
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1077
|
-
.pisell-lowcode-picker-week-panel-row:hover
|
|
1078
|
-
td:before {
|
|
1079
|
-
background: #f2f4f7;
|
|
1080
|
-
}
|
|
1081
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1082
|
-
.pisell-lowcode-picker-week-panel-row-range-start
|
|
1083
|
-
td.pisell-lowcode-picker-cell:before,
|
|
1084
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1085
|
-
.pisell-lowcode-picker-week-panel-row-range-end
|
|
1086
|
-
td.pisell-lowcode-picker-cell:before,
|
|
1087
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1088
|
-
.pisell-lowcode-picker-week-panel-row-selected
|
|
1089
|
-
td.pisell-lowcode-picker-cell:before {
|
|
1090
|
-
background: #7f56d9;
|
|
1091
|
-
}
|
|
1092
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1093
|
-
.pisell-lowcode-picker-week-panel-row-range-start
|
|
1094
|
-
td.pisell-lowcode-picker-cell.pisell-lowcode-picker-cell-week,
|
|
1095
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1096
|
-
.pisell-lowcode-picker-week-panel-row-range-end
|
|
1097
|
-
td.pisell-lowcode-picker-cell.pisell-lowcode-picker-cell-week,
|
|
1098
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1099
|
-
.pisell-lowcode-picker-week-panel-row-selected
|
|
1100
|
-
td.pisell-lowcode-picker-cell.pisell-lowcode-picker-cell-week {
|
|
1101
|
-
color: #ffffff;
|
|
1102
|
-
}
|
|
1103
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1104
|
-
.pisell-lowcode-picker-week-panel-row-range-start
|
|
1105
|
-
td.pisell-lowcode-picker-cell
|
|
1106
|
-
.pisell-lowcode-picker-cell-inner,
|
|
1107
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1108
|
-
.pisell-lowcode-picker-week-panel-row-range-end
|
|
1109
|
-
td.pisell-lowcode-picker-cell
|
|
1110
|
-
.pisell-lowcode-picker-cell-inner,
|
|
1111
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1112
|
-
.pisell-lowcode-picker-week-panel-row-selected
|
|
1113
|
-
td.pisell-lowcode-picker-cell
|
|
1114
|
-
.pisell-lowcode-picker-cell-inner {
|
|
1115
|
-
color: #fff;
|
|
1116
|
-
}
|
|
1117
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1118
|
-
.pisell-lowcode-picker-week-panel-row-range-hover
|
|
1119
|
-
td:before {
|
|
1120
|
-
background: #f9f5ff;
|
|
1121
|
-
}
|
|
1122
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1123
|
-
.pisell-lowcode-picker-date-panel
|
|
1124
|
-
.pisell-lowcode-picker-body {
|
|
1125
|
-
padding: 0;
|
|
1126
|
-
}
|
|
1127
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1128
|
-
.pisell-lowcode-picker-date-panel
|
|
1129
|
-
.pisell-lowcode-picker-content {
|
|
1130
|
-
width: 100%;
|
|
1131
|
-
}
|
|
1132
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1133
|
-
.pisell-lowcode-picker-date-panel
|
|
1134
|
-
.pisell-lowcode-picker-content
|
|
1135
|
-
th {
|
|
1136
|
-
width: 36px;
|
|
1137
|
-
box-sizing: border-box;
|
|
1138
|
-
padding: 0;
|
|
1139
|
-
}
|
|
1140
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-datetime-panel {
|
|
1141
|
-
display: flex;
|
|
1142
|
-
}
|
|
1143
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1144
|
-
.pisell-lowcode-picker-datetime-panel
|
|
1145
|
-
.pisell-lowcode-picker-time-panel {
|
|
1146
|
-
border-left: 1px solid rgba(22, 44, 88, 0.09);
|
|
1147
|
-
}
|
|
1148
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1149
|
-
.pisell-lowcode-picker-datetime-panel
|
|
1150
|
-
.pisell-lowcode-picker-date-panel,
|
|
1151
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1152
|
-
.pisell-lowcode-picker-datetime-panel
|
|
1153
|
-
.pisell-lowcode-picker-time-panel {
|
|
1154
|
-
transition: opacity 0.3s;
|
|
1155
|
-
}
|
|
1156
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1157
|
-
.pisell-lowcode-picker-datetime-panel-active
|
|
1158
|
-
.pisell-lowcode-picker-date-panel,
|
|
1159
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1160
|
-
.pisell-lowcode-picker-datetime-panel-active
|
|
1161
|
-
.pisell-lowcode-picker-time-panel {
|
|
1162
|
-
opacity: 0.3;
|
|
1163
|
-
}
|
|
1164
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1165
|
-
.pisell-lowcode-picker-datetime-panel-active
|
|
1166
|
-
.pisell-lowcode-picker-date-panel-active,
|
|
1167
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1168
|
-
.pisell-lowcode-picker-datetime-panel-active
|
|
1169
|
-
.pisell-lowcode-picker-time-panel-active {
|
|
1170
|
-
opacity: 1;
|
|
1171
|
-
}
|
|
1172
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-time-panel {
|
|
1173
|
-
width: auto;
|
|
1174
|
-
min-width: auto;
|
|
1175
|
-
direction: ltr;
|
|
1176
|
-
}
|
|
1177
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1178
|
-
.pisell-lowcode-picker-time-panel
|
|
1179
|
-
.pisell-lowcode-picker-content {
|
|
1180
|
-
display: flex;
|
|
1181
|
-
flex: auto;
|
|
1182
|
-
height: 224px;
|
|
1183
|
-
}
|
|
1184
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1185
|
-
.pisell-lowcode-picker-time-panel-column {
|
|
1186
|
-
flex: 1 0 auto;
|
|
1187
|
-
width: 56px;
|
|
1188
|
-
margin: 4px 0;
|
|
1189
|
-
padding: 0;
|
|
1190
|
-
overflow-y: hidden;
|
|
1191
|
-
text-align: start;
|
|
1192
|
-
list-style: none;
|
|
1193
|
-
transition: background 0.2s;
|
|
1194
|
-
overflow-x: hidden;
|
|
1195
|
-
}
|
|
1196
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1197
|
-
.pisell-lowcode-picker-time-panel-column::-webkit-scrollbar {
|
|
1198
|
-
width: 8px;
|
|
1199
|
-
background-color: transparent;
|
|
1200
|
-
}
|
|
1201
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1202
|
-
.pisell-lowcode-picker-time-panel-column::-webkit-scrollbar-thumb {
|
|
1203
|
-
background-color: #667085;
|
|
1204
|
-
border-radius: 4px;
|
|
1205
|
-
}
|
|
1206
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1207
|
-
.pisell-lowcode-picker-time-panel-column {
|
|
1208
|
-
scrollbar-width: thin;
|
|
1209
|
-
scrollbar-color: #667085 transparent;
|
|
1210
|
-
}
|
|
1211
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1212
|
-
.pisell-lowcode-picker-time-panel-column::after {
|
|
1213
|
-
display: block;
|
|
1214
|
-
height: 196px;
|
|
1215
|
-
content: '';
|
|
1216
|
-
}
|
|
1217
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1218
|
-
.pisell-lowcode-picker-time-panel-column:not(:first-child) {
|
|
1219
|
-
border-left: 1px solid rgba(22, 44, 88, 0.09);
|
|
1220
|
-
}
|
|
1221
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1222
|
-
.pisell-lowcode-picker-time-panel-column-active {
|
|
1223
|
-
background: #f9f5ff;
|
|
1224
|
-
}
|
|
1225
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1226
|
-
.pisell-lowcode-picker-time-panel-column:hover {
|
|
1227
|
-
overflow-y: auto;
|
|
1228
|
-
}
|
|
1229
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1230
|
-
.pisell-lowcode-picker-time-panel-column
|
|
1231
|
-
> li {
|
|
1232
|
-
margin: 0;
|
|
1233
|
-
padding: 0;
|
|
1234
|
-
}
|
|
1235
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1236
|
-
.pisell-lowcode-picker-time-panel-column
|
|
1237
|
-
> li.pisell-lowcode-picker-time-panel-cell {
|
|
1238
|
-
margin-left: 4px;
|
|
1239
|
-
margin-right: 4px;
|
|
1240
|
-
}
|
|
1241
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1242
|
-
.pisell-lowcode-picker-time-panel-column
|
|
1243
|
-
> li.pisell-lowcode-picker-time-panel-cell
|
|
1244
|
-
.pisell-lowcode-picker-time-panel-cell-inner {
|
|
1245
|
-
display: block;
|
|
1246
|
-
width: 48px;
|
|
1247
|
-
height: 28px;
|
|
1248
|
-
margin: 0;
|
|
1249
|
-
padding-top: 0;
|
|
1250
|
-
padding-bottom: 0;
|
|
1251
|
-
padding-right: 0;
|
|
1252
|
-
padding-left: 14px;
|
|
1253
|
-
color: #101828;
|
|
1254
|
-
line-height: 28px;
|
|
1255
|
-
border-radius: 6px;
|
|
1256
|
-
cursor: pointer;
|
|
1257
|
-
transition: background 0.2s;
|
|
1258
|
-
}
|
|
1259
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1260
|
-
.pisell-lowcode-picker-time-panel-column
|
|
1261
|
-
> li.pisell-lowcode-picker-time-panel-cell
|
|
1262
|
-
.pisell-lowcode-picker-time-panel-cell-inner:hover {
|
|
1263
|
-
background: #f2f4f7;
|
|
1264
|
-
}
|
|
1265
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1266
|
-
.pisell-lowcode-picker-time-panel-column
|
|
1267
|
-
> li.pisell-lowcode-picker-time-panel-cell-selected
|
|
1268
|
-
.pisell-lowcode-picker-time-panel-cell-inner {
|
|
1269
|
-
background: #f9f5ff;
|
|
1270
|
-
}
|
|
1271
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1272
|
-
.pisell-lowcode-picker-time-panel-column
|
|
1273
|
-
> li.pisell-lowcode-picker-time-panel-cell-disabled
|
|
1274
|
-
.pisell-lowcode-picker-time-panel-cell-inner {
|
|
1275
|
-
color: #98a2b3;
|
|
1276
|
-
background: transparent;
|
|
1277
|
-
cursor: not-allowed;
|
|
1278
|
-
}
|
|
1279
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1280
|
-
.pisell-lowcode-picker-datetime-panel
|
|
1281
|
-
.pisell-lowcode-picker-time-panel-column:after {
|
|
1282
|
-
height: 204px;
|
|
1283
|
-
}
|
|
1284
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-picker-custom-dropdown-hidden {
|
|
1285
|
-
display: none;
|
|
1286
|
-
}
|
|
1287
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-picker-custom-dropdown-placement-bottomLeft
|
|
1288
|
-
.pisell-lowcode-picker-range-arrow {
|
|
1289
|
-
top: 0;
|
|
1290
|
-
display: block;
|
|
1291
|
-
transform: translateY(-100%);
|
|
1292
|
-
}
|
|
1293
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-picker-custom-dropdown-placement-topLeft
|
|
1294
|
-
.pisell-lowcode-picker-range-arrow {
|
|
1295
|
-
bottom: 0;
|
|
1296
|
-
display: block;
|
|
1297
|
-
transform: translateY(100%) rotate(180deg);
|
|
1298
|
-
}
|
|
1299
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-enter.pisell-lowcode-slide-up-enter-active.pisell-lowcode-picker-custom-dropdown-placement-topLeft,
|
|
1300
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-enter.pisell-lowcode-slide-up-enter-active.pisell-lowcode-picker-custom-dropdown-placement-topRight,
|
|
1301
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-appear.pisell-lowcode-slide-up-appear-active.pisell-lowcode-picker-custom-dropdown-placement-topLeft,
|
|
1302
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-appear.pisell-lowcode-slide-up-appear-active.pisell-lowcode-picker-custom-dropdown-placement-topRight {
|
|
1303
|
-
animation-name: css-1h9jgke-antSlideDownIn;
|
|
1304
|
-
}
|
|
1305
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-enter.pisell-lowcode-slide-up-enter-active.pisell-lowcode-picker-custom-dropdown-placement-bottomLeft,
|
|
1306
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-enter.pisell-lowcode-slide-up-enter-active.pisell-lowcode-picker-custom-dropdown-placement-bottomRight,
|
|
1307
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-appear.pisell-lowcode-slide-up-appear-active.pisell-lowcode-picker-custom-dropdown-placement-bottomLeft,
|
|
1308
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-appear.pisell-lowcode-slide-up-appear-active.pisell-lowcode-picker-custom-dropdown-placement-bottomRight {
|
|
1309
|
-
animation-name: css-1h9jgke-antSlideUpIn;
|
|
1310
|
-
}
|
|
1311
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-leave.pisell-lowcode-slide-up-leave-active.pisell-lowcode-picker-custom-dropdown-placement-topLeft,
|
|
1312
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-leave.pisell-lowcode-slide-up-leave-active.pisell-lowcode-picker-custom-dropdown-placement-topRight {
|
|
1313
|
-
animation-name: css-1h9jgke-antSlideDownOut;
|
|
1314
|
-
}
|
|
1315
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-leave.pisell-lowcode-slide-up-leave-active.pisell-lowcode-picker-custom-dropdown-placement-bottomLeft,
|
|
1316
|
-
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-leave.pisell-lowcode-slide-up-leave-active.pisell-lowcode-picker-custom-dropdown-placement-bottomRight {
|
|
1317
|
-
animation-name: css-1h9jgke-antSlideUpOut;
|
|
1318
|
-
}
|
|
1319
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1320
|
-
.pisell-lowcode-picker-panel
|
|
1321
|
-
> .pisell-lowcode-picker-time-panel {
|
|
1322
|
-
padding-top: 4px;
|
|
1323
|
-
}
|
|
1324
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-ranges {
|
|
1325
|
-
margin-bottom: 0;
|
|
1326
|
-
padding: 4px 12px;
|
|
1327
|
-
overflow: hidden;
|
|
1328
|
-
line-height: 34px;
|
|
1329
|
-
text-align: start;
|
|
1330
|
-
list-style: none;
|
|
1331
|
-
display: flex;
|
|
1332
|
-
justify-content: space-between;
|
|
1333
|
-
display: none;
|
|
1334
|
-
}
|
|
1335
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-ranges > li {
|
|
1336
|
-
display: inline-block;
|
|
1337
|
-
}
|
|
1338
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1339
|
-
.pisell-lowcode-picker-ranges
|
|
1340
|
-
.pisell-lowcode-picker-preset
|
|
1341
|
-
> .pisell-lowcode-tag-blue {
|
|
1342
|
-
color: #7f56d9;
|
|
1343
|
-
background: #f9f5ff;
|
|
1344
|
-
border-color: #e9d7fe;
|
|
1345
|
-
cursor: pointer;
|
|
1346
|
-
}
|
|
1347
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1348
|
-
.pisell-lowcode-picker-ranges
|
|
1349
|
-
.pisell-lowcode-picker-ok {
|
|
1350
|
-
margin-left: auto;
|
|
1351
|
-
}
|
|
1352
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-range-wrapper {
|
|
1353
|
-
display: flex;
|
|
1354
|
-
position: relative;
|
|
1355
|
-
}
|
|
1356
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-range-arrow {
|
|
1357
|
-
position: absolute;
|
|
1358
|
-
z-index: 1;
|
|
1359
|
-
display: none;
|
|
1360
|
-
margin-left: 16.5px;
|
|
1361
|
-
transition: left 0.3s ease-out;
|
|
1362
|
-
pointer-events: none;
|
|
1363
|
-
width: 16px;
|
|
1364
|
-
height: 16px;
|
|
1365
|
-
overflow: hidden;
|
|
1366
|
-
}
|
|
1367
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1368
|
-
.pisell-lowcode-picker-range-arrow::before {
|
|
1369
|
-
position: absolute;
|
|
1370
|
-
bottom: 0;
|
|
1371
|
-
left: 0;
|
|
1372
|
-
width: 16px;
|
|
1373
|
-
height: 8px;
|
|
1374
|
-
background: #ffffff;
|
|
1375
|
-
clip-path: polygon(
|
|
1376
|
-
2.485281374238571px 100%,
|
|
1377
|
-
50% 2.485281374238571px,
|
|
1378
|
-
13.514718625761429px 100%,
|
|
1379
|
-
2.485281374238571px 100%
|
|
1380
|
-
);
|
|
1381
|
-
clip-path: path(
|
|
1382
|
-
'M 0 8 A 6 6 0 0 0 4.242640687119285 6.242640687119285 L 6.585786437626905 3.899494936611666 A 2 2 0 0 1 9.414213562373096 3.899494936611666 L 11.757359312880716 6.242640687119285 A 6 6 0 0 0 16 8 Z'
|
|
1383
|
-
);
|
|
1384
|
-
content: '';
|
|
1385
|
-
}
|
|
1386
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1387
|
-
.pisell-lowcode-picker-range-arrow::after {
|
|
1388
|
-
content: '';
|
|
1389
|
-
position: absolute;
|
|
1390
|
-
width: 7.7989898732233325px;
|
|
1391
|
-
height: 7.7989898732233325px;
|
|
1392
|
-
bottom: 0;
|
|
1393
|
-
left: 0;
|
|
1394
|
-
right: 0;
|
|
1395
|
-
margin: auto;
|
|
1396
|
-
border-radius: 0 0 2px 0;
|
|
1397
|
-
transform: translateY(50%) rotate(-135deg);
|
|
1398
|
-
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
|
|
1399
|
-
z-index: 0;
|
|
1400
|
-
background: transparent;
|
|
1401
|
-
}
|
|
1402
|
-
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-panel-container {
|
|
1403
|
-
overflow: hidden;
|
|
1404
|
-
vertical-align: top;
|
|
1405
|
-
background: #ffffff;
|
|
1406
|
-
border-radius: 0;
|
|
1407
|
-
box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
|
|
1408
|
-
0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
|
|
1409
|
-
transition: margin 0.3s;
|
|
1410
|
-
}
|
|
1411
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1412
|
-
.pisell-lowcode-picker-panel-container
|
|
1413
|
-
.pisell-lowcode-picker-panel-layout {
|
|
1414
|
-
display: flex;
|
|
1415
|
-
flex-wrap: nowrap;
|
|
1416
|
-
align-items: stretch;
|
|
1417
|
-
}
|
|
1418
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1419
|
-
.pisell-lowcode-picker-panel-container
|
|
1420
|
-
.pisell-lowcode-picker-presets {
|
|
1421
|
-
display: flex;
|
|
1422
|
-
flex-direction: column;
|
|
1423
|
-
min-width: 120px;
|
|
1424
|
-
max-width: 200px;
|
|
1425
|
-
}
|
|
1426
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1427
|
-
.pisell-lowcode-picker-panel-container
|
|
1428
|
-
.pisell-lowcode-picker-presets
|
|
1429
|
-
ul {
|
|
1430
|
-
height: 0;
|
|
1431
|
-
flex: auto;
|
|
1432
|
-
list-style: none;
|
|
1433
|
-
overflow: auto;
|
|
1434
|
-
margin: 0;
|
|
1435
|
-
padding: 8px;
|
|
1436
|
-
border-right: 1px solid rgba(22, 44, 88, 0.09);
|
|
1437
|
-
}
|
|
1438
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1439
|
-
.pisell-lowcode-picker-panel-container
|
|
1440
|
-
.pisell-lowcode-picker-presets
|
|
1441
|
-
ul
|
|
1442
|
-
li {
|
|
1443
|
-
overflow: hidden;
|
|
1444
|
-
white-space: nowrap;
|
|
1445
|
-
text-overflow: ellipsis;
|
|
1446
|
-
border-radius: 6px;
|
|
1447
|
-
padding-left: 8px;
|
|
1448
|
-
padding-right: 8px;
|
|
1449
|
-
padding-top: 1px;
|
|
1450
|
-
padding-bottom: 1px;
|
|
1451
|
-
cursor: pointer;
|
|
1452
|
-
transition: all 0.3s;
|
|
1453
|
-
}
|
|
1454
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1455
|
-
.pisell-lowcode-picker-panel-container
|
|
1456
|
-
.pisell-lowcode-picker-presets
|
|
1457
|
-
ul
|
|
1458
|
-
li
|
|
1459
|
-
+ li {
|
|
1460
|
-
margin-top: 8px;
|
|
1461
|
-
}
|
|
1462
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1463
|
-
.pisell-lowcode-picker-panel-container
|
|
1464
|
-
.pisell-lowcode-picker-presets
|
|
1465
|
-
ul
|
|
1466
|
-
li:hover {
|
|
1467
|
-
background: #f2f4f7;
|
|
1468
|
-
}
|
|
1469
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1470
|
-
.pisell-lowcode-picker-panel-container
|
|
1471
|
-
.pisell-lowcode-picker-panels {
|
|
1472
|
-
display: inline-flex;
|
|
1473
|
-
flex-wrap: nowrap;
|
|
1474
|
-
direction: ltr;
|
|
1475
|
-
}
|
|
1476
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1477
|
-
.pisell-lowcode-picker-panel-container
|
|
1478
|
-
.pisell-lowcode-picker-panels
|
|
1479
|
-
.pisell-lowcode-picker-panel {
|
|
1480
|
-
border-width: 0 0 1px;
|
|
1481
|
-
}
|
|
1482
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1483
|
-
.pisell-lowcode-picker-panel-container
|
|
1484
|
-
.pisell-lowcode-picker-panels:last-child
|
|
1485
|
-
.pisell-lowcode-picker-panel {
|
|
1486
|
-
border-width: 0;
|
|
1487
|
-
}
|
|
1488
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1489
|
-
.pisell-lowcode-picker-panel-container
|
|
1490
|
-
.pisell-lowcode-picker-panel {
|
|
1491
|
-
vertical-align: top;
|
|
1492
|
-
background: transparent;
|
|
1493
|
-
border-radius: 0;
|
|
1494
|
-
border-width: 0;
|
|
1495
|
-
}
|
|
1496
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1497
|
-
.pisell-lowcode-picker-panel-container
|
|
1498
|
-
.pisell-lowcode-picker-panel
|
|
1499
|
-
.pisell-lowcode-picker-content,
|
|
1500
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1501
|
-
.pisell-lowcode-picker-panel-container
|
|
1502
|
-
.pisell-lowcode-picker-panel
|
|
1503
|
-
table {
|
|
1504
|
-
text-align: center;
|
|
1505
|
-
}
|
|
1506
|
-
.pisell-lowcode-picker-custom-dropdown
|
|
1507
|
-
.pisell-lowcode-picker-panel-container
|
|
1508
|
-
.pisell-lowcode-picker-panel-focused {
|
|
1509
|
-
border-color: #d0d5dd;
|
|
1510
|
-
}
|
|
1511
|
-
.pisell-lowcode-picker-custom-dropdown-range {
|
|
1512
|
-
padding: 10.666666666666666px 0;
|
|
1513
|
-
}
|
|
1514
|
-
.pisell-lowcode-picker-custom-dropdown-range-hidden {
|
|
1515
|
-
display: none;
|
|
1516
|
-
}
|
|
1517
|
-
.pisell-lowcode-picker-rtl {
|
|
1518
|
-
direction: rtl;
|
|
1519
|
-
}
|
|
1520
|
-
.pisell-lowcode-picker-rtl .pisell-lowcode-picker-separator {
|
|
1521
|
-
transform: rotate(180deg);
|
|
1522
|
-
}
|
|
1523
|
-
.pisell-lowcode-picker-rtl .pisell-lowcode-picker-footer-extra {
|
|
1524
|
-
direction: rtl;
|
|
1525
|
-
}
|
|
1526
|
-
//.pisell-lowcode-slide-up-enter,
|
|
1527
|
-
//.pisell-lowcode-slide-up-appear {
|
|
1528
|
-
// animation-duration: 0.2s;
|
|
1529
|
-
// animation-fill-mode: both;
|
|
1530
|
-
// animation-play-state: paused;
|
|
1531
|
-
//}
|
|
1532
|
-
//.pisell-lowcode-slide-up-leave {
|
|
1533
|
-
// animation-duration: 0.2s;
|
|
1534
|
-
// animation-fill-mode: both;
|
|
1535
|
-
// animation-play-state: paused;
|
|
1536
|
-
//}
|
|
1537
|
-
//.pisell-lowcode-slide-up-enter.pisell-lowcode-slide-up-enter-active,
|
|
1538
|
-
//.pisell-lowcode-slide-up-appear.pisell-lowcode-slide-up-appear-active {
|
|
1539
|
-
// animation-name: css-1h9jgke-antSlideUpIn;
|
|
1540
|
-
// animation-play-state: running;
|
|
1541
|
-
//}
|
|
1542
|
-
//.pisell-lowcode-slide-up-leave.pisell-lowcode-slide-up-leave-active {
|
|
1543
|
-
// animation-name: css-1h9jgke-antSlideUpOut;
|
|
1544
|
-
// animation-play-state: running;
|
|
1545
|
-
// pointer-events: none;
|
|
1546
|
-
//}
|
|
1547
|
-
//.pisell-lowcode-slide-up-enter,
|
|
1548
|
-
//.pisell-lowcode-slide-up-appear {
|
|
1549
|
-
// transform: scale(0);
|
|
1550
|
-
// transform-origin: 0% 0%;
|
|
1551
|
-
// opacity: 0;
|
|
1552
|
-
// animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
1553
|
-
//}
|
|
1554
|
-
//.pisell-lowcode-slide-up-enter-prepare,
|
|
1555
|
-
//.pisell-lowcode-slide-up-appear-prepare {
|
|
1556
|
-
// transform: scale(1);
|
|
1557
|
-
//}
|
|
1558
|
-
//.pisell-lowcode-slide-up-leave {
|
|
1559
|
-
// animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
1560
|
-
//}
|
|
1561
|
-
.pisell-lowcode-slide-down-enter,
|
|
1562
|
-
.pisell-lowcode-slide-down-appear {
|
|
1563
|
-
animation-duration: 0.2s;
|
|
1564
|
-
animation-fill-mode: both;
|
|
1565
|
-
animation-play-state: paused;
|
|
1566
|
-
}
|
|
1567
|
-
.pisell-lowcode-slide-down-leave {
|
|
1568
|
-
animation-duration: 0.2s;
|
|
1569
|
-
animation-fill-mode: both;
|
|
1570
|
-
animation-play-state: paused;
|
|
1571
|
-
}
|
|
1572
|
-
.pisell-lowcode-slide-down-enter.pisell-lowcode-slide-down-enter-active,
|
|
1573
|
-
.pisell-lowcode-slide-down-appear.pisell-lowcode-slide-down-appear-active {
|
|
1574
|
-
animation-name: css-1h9jgke-antSlideDownIn;
|
|
1575
|
-
animation-play-state: running;
|
|
1576
|
-
}
|
|
1577
|
-
.pisell-lowcode-slide-down-leave.pisell-lowcode-slide-down-leave-active {
|
|
1578
|
-
animation-name: css-1h9jgke-antSlideDownOut;
|
|
1579
|
-
animation-play-state: running;
|
|
1580
|
-
pointer-events: none;
|
|
1581
|
-
}
|
|
1582
|
-
.pisell-lowcode-slide-down-enter,
|
|
1583
|
-
.pisell-lowcode-slide-down-appear {
|
|
1584
|
-
transform: scale(0);
|
|
1585
|
-
transform-origin: 0% 0%;
|
|
1586
|
-
opacity: 0;
|
|
1587
|
-
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
1588
|
-
}
|
|
1589
|
-
.pisell-lowcode-slide-down-enter-prepare,
|
|
1590
|
-
.pisell-lowcode-slide-down-appear-prepare {
|
|
1591
|
-
transform: scale(1);
|
|
1592
|
-
}
|
|
1593
|
-
.pisell-lowcode-slide-down-leave {
|
|
1594
|
-
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
1595
|
-
}
|
|
1596
|
-
.pisell-lowcode-move-up-enter,
|
|
1597
|
-
.pisell-lowcode-move-up-appear {
|
|
1598
|
-
animation-duration: 0.2s;
|
|
1599
|
-
animation-fill-mode: both;
|
|
1600
|
-
animation-play-state: paused;
|
|
1601
|
-
}
|
|
1602
|
-
.pisell-lowcode-move-up-leave {
|
|
1603
|
-
animation-duration: 0.2s;
|
|
1604
|
-
animation-fill-mode: both;
|
|
1605
|
-
animation-play-state: paused;
|
|
1606
|
-
}
|
|
1607
|
-
.pisell-lowcode-move-up-enter.pisell-lowcode-move-up-enter-active,
|
|
1608
|
-
.pisell-lowcode-move-up-appear.pisell-lowcode-move-up-appear-active {
|
|
1609
|
-
animation-name: css-1h9jgke-antMoveUpIn;
|
|
1610
|
-
animation-play-state: running;
|
|
1611
|
-
}
|
|
1612
|
-
.pisell-lowcode-move-up-leave.pisell-lowcode-move-up-leave-active {
|
|
1613
|
-
animation-name: css-1h9jgke-antMoveUpOut;
|
|
1614
|
-
animation-play-state: running;
|
|
1615
|
-
pointer-events: none;
|
|
1616
|
-
}
|
|
1617
|
-
.pisell-lowcode-move-up-enter,
|
|
1618
|
-
.pisell-lowcode-move-up-appear {
|
|
1619
|
-
opacity: 0;
|
|
1620
|
-
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
1621
|
-
}
|
|
1622
|
-
.pisell-lowcode-move-up-leave {
|
|
1623
|
-
animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
1624
|
-
}
|
|
1625
|
-
.pisell-lowcode-move-down-enter,
|
|
1626
|
-
.pisell-lowcode-move-down-appear {
|
|
1627
|
-
animation-duration: 0.2s;
|
|
1628
|
-
animation-fill-mode: both;
|
|
1629
|
-
animation-play-state: paused;
|
|
1630
|
-
}
|
|
1631
|
-
.pisell-lowcode-move-down-leave {
|
|
1632
|
-
animation-duration: 0.2s;
|
|
1633
|
-
animation-fill-mode: both;
|
|
1634
|
-
animation-play-state: paused;
|
|
1635
|
-
}
|
|
1636
|
-
.pisell-lowcode-move-down-enter.pisell-lowcode-move-down-enter-active,
|
|
1637
|
-
.pisell-lowcode-move-down-appear.pisell-lowcode-move-down-appear-active {
|
|
1638
|
-
animation-name: css-1h9jgke-antMoveDownIn;
|
|
1639
|
-
animation-play-state: running;
|
|
1640
|
-
}
|
|
1641
|
-
.pisell-lowcode-move-down-leave.pisell-lowcode-move-down-leave-active {
|
|
1642
|
-
animation-name: css-1h9jgke-antMoveDownOut;
|
|
1643
|
-
animation-play-state: running;
|
|
1644
|
-
pointer-events: none;
|
|
1645
|
-
}
|
|
1646
|
-
.pisell-lowcode-move-down-enter,
|
|
1647
|
-
.pisell-lowcode-move-down-appear {
|
|
1648
|
-
opacity: 0;
|
|
1649
|
-
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
1650
|
-
}
|
|
1651
|
-
.pisell-lowcode-move-down-leave {
|
|
1652
|
-
animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
1653
|
-
}
|
|
1654
|
-
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1655
|
-
[disabled]
|
|
1656
|
-
).pisell-lowcode-picker-status-error {
|
|
1657
|
-
background-color: #ffffff;
|
|
1658
|
-
border-color: #d92d20;
|
|
1659
|
-
}
|
|
1660
|
-
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1661
|
-
[disabled]
|
|
1662
|
-
).pisell-lowcode-picker-status-error:hover {
|
|
1663
|
-
border-color: #b42318;
|
|
1664
|
-
}
|
|
1665
|
-
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1666
|
-
[disabled]
|
|
1667
|
-
).pisell-lowcode-picker-status-error.pisell-lowcode-picker-focused,
|
|
1668
|
-
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1669
|
-
[disabled]
|
|
1670
|
-
).pisell-lowcode-picker-status-error:focus {
|
|
1671
|
-
border-color: #d92d20;
|
|
1672
|
-
box-shadow: 0 0 0 2px rgba(238, 55, 38, 0.06);
|
|
1673
|
-
outline: 0;
|
|
1674
|
-
}
|
|
1675
|
-
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1676
|
-
[disabled]
|
|
1677
|
-
).pisell-lowcode-picker-status-error
|
|
1678
|
-
.pisell-lowcode-picker-active-bar {
|
|
1679
|
-
background: #d92d20;
|
|
1680
|
-
}
|
|
1681
|
-
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1682
|
-
[disabled]
|
|
1683
|
-
).pisell-lowcode-picker-status-warning {
|
|
1684
|
-
background-color: #ffffff;
|
|
1685
|
-
border-color: #dc6803;
|
|
1686
|
-
}
|
|
1687
|
-
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1688
|
-
[disabled]
|
|
1689
|
-
).pisell-lowcode-picker-status-warning:hover {
|
|
1690
|
-
border-color: #b54708;
|
|
1691
|
-
}
|
|
1692
|
-
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1693
|
-
[disabled]
|
|
1694
|
-
).pisell-lowcode-picker-status-warning.pisell-lowcode-picker-focused,
|
|
1695
|
-
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1696
|
-
[disabled]
|
|
1697
|
-
).pisell-lowcode-picker-status-warning:focus {
|
|
1698
|
-
border-color: #dc6803;
|
|
1699
|
-
box-shadow: 0 0 0 2px rgba(255, 192, 5, 0.08);
|
|
1700
|
-
outline: 0;
|
|
1701
|
-
}
|
|
1702
|
-
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1703
|
-
[disabled]
|
|
1704
|
-
).pisell-lowcode-picker-status-warning
|
|
1705
|
-
.pisell-lowcode-picker-active-bar {
|
|
1706
|
-
background: #dc6803;
|
|
1707
|
-
}
|
|
1708
|
-
.pisell-lowcode-picker-compact-item:not(
|
|
1709
|
-
.pisell-lowcode-picker-compact-last-item
|
|
1710
|
-
) {
|
|
1711
|
-
margin-right: -1px;
|
|
1712
|
-
}
|
|
1713
|
-
.pisell-lowcode-picker-compact-item:hover,
|
|
1714
|
-
.pisell-lowcode-picker-compact-item:active {
|
|
1715
|
-
z-index: 2;
|
|
1716
|
-
}
|
|
1717
|
-
.pisell-lowcode-picker-compact-item.pisell-lowcode-picker-focused {
|
|
1718
|
-
z-index: 2;
|
|
1719
|
-
}
|
|
1720
|
-
.pisell-lowcode-picker-compact-item[disabled] {
|
|
1721
|
-
z-index: 0;
|
|
1722
|
-
}
|
|
1723
|
-
.pisell-lowcode-picker-compact-item:not(
|
|
1724
|
-
.pisell-lowcode-picker-compact-first-item
|
|
1725
|
-
):not(.pisell-lowcode-picker-compact-last-item) {
|
|
1726
|
-
border-radius: 0;
|
|
1727
|
-
}
|
|
1728
|
-
.pisell-lowcode-picker-compact-item:not(
|
|
1729
|
-
.pisell-lowcode-picker-compact-last-item
|
|
1730
|
-
).pisell-lowcode-picker-compact-first-item,
|
|
1731
|
-
.pisell-lowcode-picker-compact-item:not(
|
|
1732
|
-
.pisell-lowcode-picker-compact-last-item
|
|
1733
|
-
).pisell-lowcode-picker-compact-first-item.pisell-lowcode-picker-sm,
|
|
1734
|
-
.pisell-lowcode-picker-compact-item:not(
|
|
1735
|
-
.pisell-lowcode-picker-compact-last-item
|
|
1736
|
-
).pisell-lowcode-picker-compact-first-item.pisell-lowcode-picker-lg {
|
|
1737
|
-
border-top-right-radius: 0;
|
|
1738
|
-
border-bottom-right-radius: 0;
|
|
1739
|
-
}
|
|
1740
|
-
.pisell-lowcode-picker-compact-item:not(
|
|
1741
|
-
.pisell-lowcode-picker-compact-first-item
|
|
1742
|
-
).pisell-lowcode-picker-compact-last-item,
|
|
1743
|
-
.pisell-lowcode-picker-compact-item:not(
|
|
1744
|
-
.pisell-lowcode-picker-compact-first-item
|
|
1745
|
-
).pisell-lowcode-picker-compact-last-item.pisell-lowcode-picker-sm,
|
|
1746
|
-
.pisell-lowcode-picker-compact-item:not(
|
|
1747
|
-
.pisell-lowcode-picker-compact-first-item
|
|
1748
|
-
).pisell-lowcode-picker-compact-last-item.pisell-lowcode-picker-lg {
|
|
1749
|
-
border-top-left-radius: 0;
|
|
1750
|
-
border-bottom-left-radius: 0;
|
|
1751
|
-
}
|
|
1752
|
-
|
|
1753
|
-
.pisell-lowcode-date-picker-custom-wrap {
|
|
1754
|
-
position: relative;
|
|
1755
|
-
.pisell-lowcode-picker-body {
|
|
1756
|
-
margin-top: 64px;
|
|
1757
|
-
padding: 0;
|
|
1758
|
-
}
|
|
1759
|
-
.pisell-lowcode-picker-date-panel {
|
|
1760
|
-
box-sizing: border-box;
|
|
1761
|
-
padding: 20px 24px;
|
|
1762
|
-
}
|
|
1763
|
-
.pisell-lowcode-date-picker-custom-action {
|
|
1764
|
-
position: absolute;
|
|
1765
|
-
top: 72px;
|
|
1766
|
-
left: 24px;
|
|
1767
|
-
width: calc(100% - 48px);
|
|
1768
|
-
display: flex;
|
|
1769
|
-
gap: 12px;
|
|
1770
|
-
align-items: start;
|
|
1771
|
-
.date-picker-error {
|
|
1772
|
-
color: #d4163a;
|
|
1773
|
-
}
|
|
1774
|
-
}
|
|
1775
|
-
}
|
|
1776
|
-
|
|
1777
|
-
.pisell-lowcode-date-picker-custom-wrap-show-time {
|
|
1778
|
-
.pisell-lowcode-picker-body {
|
|
1779
|
-
margin-top: 0;
|
|
1780
|
-
padding: 0;
|
|
1781
|
-
}
|
|
1782
|
-
.pisell-lowcode-picker-date-panel {
|
|
1783
|
-
padding-bottom: 0;
|
|
1784
|
-
}
|
|
1785
|
-
.pisell-lowcode-picker-footer {
|
|
1786
|
-
border: none !important;
|
|
1787
|
-
.pisell-lowcode-picker-footer-extra {
|
|
1788
|
-
padding: 0 24px 20px;
|
|
1789
|
-
border: none !important;
|
|
1790
|
-
.date-picker-time-label {
|
|
1791
|
-
color: var(--Gray-700, #344054);
|
|
1792
|
-
font-size: 14px;
|
|
1793
|
-
font-weight: 600;
|
|
1794
|
-
line-height: 20px; /* 142.857% */
|
|
1795
|
-
margin-bottom: 8px;
|
|
1796
|
-
}
|
|
1797
|
-
.date-picker-input-time {
|
|
1798
|
-
border-radius: 8px;
|
|
1799
|
-
border: 1px solid var(--Gray-300, #D0D5DD);
|
|
1800
|
-
height: 48px;
|
|
1801
|
-
line-height: 48px;
|
|
1802
|
-
width: 100%;
|
|
1803
|
-
min-width: 320px;
|
|
1804
|
-
padding: 0 16px;
|
|
1805
|
-
}
|
|
1806
|
-
}
|
|
1807
|
-
}
|
|
1808
|
-
}
|
|
1809
|
-
.pisell-lowcode-date-picker-custom-popup-wrap {
|
|
1810
|
-
.pisell-lowcode-picker-footer {
|
|
1811
|
-
border: none !important;
|
|
1812
|
-
.pisell-lowcode-picker-ranges {
|
|
1813
|
-
display: none;
|
|
1814
|
-
}
|
|
1815
|
-
.pisell-lowcode-picker-footer-extra {
|
|
1816
|
-
border: none !important;
|
|
1817
|
-
}
|
|
1818
|
-
}
|
|
1819
|
-
.pisell-lowcode-picker-footer .pisell-lowcode-picker-today-btn {
|
|
1820
|
-
display: none;
|
|
1821
|
-
}
|
|
1822
|
-
}
|
|
1823
|
-
|
|
1824
|
-
.pisell-lowcode-custom-footer {
|
|
1825
|
-
border-top: 1px solid var(--Gray-200, #eaecf0);
|
|
1826
|
-
display: flex;
|
|
1827
|
-
padding: 16px;
|
|
1828
|
-
justify-content: space-between;
|
|
1829
|
-
align-items: center;
|
|
1830
|
-
align-self: stretch;
|
|
1831
|
-
.pisell-lowcode-btn {
|
|
1832
|
-
}
|
|
1833
|
-
.pisell-lowcode-custom-footer-today {
|
|
1834
|
-
color: var(--Blue-600, #1570ef);
|
|
1835
|
-
font-size: 16px;
|
|
1836
|
-
font-style: normal;
|
|
1837
|
-
font-weight: 600;
|
|
1838
|
-
line-height: 24px; /* 150% */
|
|
1839
|
-
cursor: pointer;
|
|
1840
|
-
}
|
|
1841
|
-
}
|
|
1842
|
-
|
|
1843
|
-
.pisell-lowcode-date-picker-dropdown-mode {
|
|
1844
|
-
.pisell-lowcode-picker-date-panel {
|
|
1845
|
-
width: 424px;
|
|
1846
|
-
max-width: 100%;
|
|
1847
|
-
padding: 20px 24px;
|
|
1848
|
-
}
|
|
1849
|
-
.pisell-lowcode-picker-content {
|
|
1850
|
-
width: 100%;
|
|
1851
|
-
}
|
|
1852
|
-
.pisell-lowcode-picker-body {
|
|
1853
|
-
padding: 0;
|
|
1854
|
-
}
|
|
1855
|
-
.pisell-lowcode-picker-header {
|
|
1856
|
-
border: none;
|
|
1857
|
-
}
|
|
1858
|
-
.pisell-lowcode-picker-cell-inner {
|
|
1859
|
-
min-width: 40px;
|
|
1860
|
-
height: 40px;
|
|
1861
|
-
line-height: 40px;
|
|
1862
|
-
border-radius: 50%;
|
|
1863
|
-
}
|
|
1864
|
-
.pisell-lowcode-picker-cell-inner::before {
|
|
1865
|
-
border-radius: 50%;
|
|
1866
|
-
}
|
|
1867
|
-
}
|
|
1868
|
-
|
|
1869
|
-
.date-picker-popup-wrap {
|
|
1870
|
-
//position: inherit;
|
|
1871
|
-
//inset: 0 !important;
|
|
1872
|
-
//opacity: 1;
|
|
1873
|
-
}
|
|
1874
|
-
.pisell-lowcode-date-picker-modal {
|
|
1875
|
-
.pisell-lowcode-modal-content {
|
|
1876
|
-
padding: 0;
|
|
1877
|
-
border-radius: 8px;
|
|
1878
|
-
overflow: hidden;
|
|
1879
|
-
}
|
|
1880
|
-
}
|
|
1
|
+
[class^='pisell-lowcode-picker'],
|
|
2
|
+
[class*=' pisell-lowcode-picker'] {
|
|
3
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
4
|
+
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
|
|
5
|
+
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
box-sizing: border-box;
|
|
8
|
+
}
|
|
9
|
+
[class^='pisell-lowcode-picker']::before,
|
|
10
|
+
[class*=' pisell-lowcode-picker']::before,
|
|
11
|
+
[class^='pisell-lowcode-picker']::after,
|
|
12
|
+
[class*=' pisell-lowcode-picker']::after {
|
|
13
|
+
box-sizing: border-box;
|
|
14
|
+
}
|
|
15
|
+
[class^='pisell-lowcode-picker'] [class^='pisell-lowcode-picker'],
|
|
16
|
+
[class*=' pisell-lowcode-picker'] [class^='pisell-lowcode-picker'],
|
|
17
|
+
[class^='pisell-lowcode-picker'] [class*=' pisell-lowcode-picker'],
|
|
18
|
+
[class*=' pisell-lowcode-picker'] [class*=' pisell-lowcode-picker'] {
|
|
19
|
+
box-sizing: border-box;
|
|
20
|
+
}
|
|
21
|
+
[class^='pisell-lowcode-picker'] [class^='pisell-lowcode-picker']::before,
|
|
22
|
+
[class*=' pisell-lowcode-picker'] [class^='pisell-lowcode-picker']::before,
|
|
23
|
+
[class^='pisell-lowcode-picker'] [class*=' pisell-lowcode-picker']::before,
|
|
24
|
+
[class*=' pisell-lowcode-picker'] [class*=' pisell-lowcode-picker']::before,
|
|
25
|
+
[class^='pisell-lowcode-picker'] [class^='pisell-lowcode-picker']::after,
|
|
26
|
+
[class*=' pisell-lowcode-picker'] [class^='pisell-lowcode-picker']::after,
|
|
27
|
+
[class^='pisell-lowcode-picker'] [class*=' pisell-lowcode-picker']::after,
|
|
28
|
+
[class*=' pisell-lowcode-picker'] [class*=' pisell-lowcode-picker']::after {
|
|
29
|
+
box-sizing: border-box;
|
|
30
|
+
}
|
|
31
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker {
|
|
32
|
+
box-sizing: border-box;
|
|
33
|
+
margin: 0;
|
|
34
|
+
padding: 4px 11px 4px;
|
|
35
|
+
color: #101828;
|
|
36
|
+
font-size: 14px;
|
|
37
|
+
line-height: 1;
|
|
38
|
+
list-style: none;
|
|
39
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
40
|
+
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
|
|
41
|
+
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
42
|
+
position: relative;
|
|
43
|
+
display: inline-flex;
|
|
44
|
+
align-items: center;
|
|
45
|
+
background: #ffffff;
|
|
46
|
+
border: 1px solid #d0d5dd;
|
|
47
|
+
border-radius: 8px;
|
|
48
|
+
transition: border 0.2s, box-shadow 0.2s;
|
|
49
|
+
}
|
|
50
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker:hover {
|
|
51
|
+
border-color: #6941c6;
|
|
52
|
+
}
|
|
53
|
+
.pisell-lowcode-picker-focused.pisell-lowcode-picker.pisell-lowcode-mode-date-picker {
|
|
54
|
+
border-color: #7f56d9;
|
|
55
|
+
box-shadow: 0 0 0 2px rgba(105, 5, 255, 0.04);
|
|
56
|
+
outline: 0;
|
|
57
|
+
}
|
|
58
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker.pisell-lowcode-picker-disabled {
|
|
59
|
+
background: #f9fafb;
|
|
60
|
+
border-color: #d0d5dd;
|
|
61
|
+
cursor: not-allowed;
|
|
62
|
+
}
|
|
63
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker.pisell-lowcode-picker-disabled
|
|
64
|
+
.pisell-lowcode-picker-suffix {
|
|
65
|
+
color: #d0d5dd;
|
|
66
|
+
}
|
|
67
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker.pisell-lowcode-picker-borderless {
|
|
68
|
+
background-color: transparent !important;
|
|
69
|
+
border-color: transparent !important;
|
|
70
|
+
box-shadow: none !important;
|
|
71
|
+
}
|
|
72
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
73
|
+
.pisell-lowcode-picker-input {
|
|
74
|
+
position: relative;
|
|
75
|
+
display: inline-flex;
|
|
76
|
+
align-items: center;
|
|
77
|
+
width: 100%;
|
|
78
|
+
}
|
|
79
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
80
|
+
.pisell-lowcode-picker-input
|
|
81
|
+
> input {
|
|
82
|
+
position: relative;
|
|
83
|
+
display: inline-block;
|
|
84
|
+
width: 100%;
|
|
85
|
+
min-width: 1px;
|
|
86
|
+
padding: 0;
|
|
87
|
+
color: #101828;
|
|
88
|
+
font-size: 14px;
|
|
89
|
+
line-height: 1.5714285714285714;
|
|
90
|
+
background-color: #ffffff;
|
|
91
|
+
background-image: none;
|
|
92
|
+
border-width: 1px;
|
|
93
|
+
border-style: solid;
|
|
94
|
+
border-color: #d0d5dd;
|
|
95
|
+
border-radius: 0;
|
|
96
|
+
transition: all 0.2s;
|
|
97
|
+
flex: auto;
|
|
98
|
+
height: auto;
|
|
99
|
+
background: transparent;
|
|
100
|
+
border: 0;
|
|
101
|
+
font-family: inherit;
|
|
102
|
+
}
|
|
103
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
104
|
+
.pisell-lowcode-picker-input
|
|
105
|
+
> input::-moz-placeholder {
|
|
106
|
+
opacity: 1;
|
|
107
|
+
}
|
|
108
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
109
|
+
.pisell-lowcode-picker-input
|
|
110
|
+
> input::placeholder {
|
|
111
|
+
color: #667085;
|
|
112
|
+
user-select: none;
|
|
113
|
+
}
|
|
114
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
115
|
+
.pisell-lowcode-picker-input
|
|
116
|
+
> input:placeholder-shown {
|
|
117
|
+
text-overflow: ellipsis;
|
|
118
|
+
}
|
|
119
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
120
|
+
.pisell-lowcode-picker-input
|
|
121
|
+
> input:hover {
|
|
122
|
+
border-color: #6941c6;
|
|
123
|
+
}
|
|
124
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
125
|
+
.pisell-lowcode-picker-input
|
|
126
|
+
> input:focus,
|
|
127
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
128
|
+
.pisell-lowcode-picker-input
|
|
129
|
+
> input:focus-within {
|
|
130
|
+
border-color: #7f56d9;
|
|
131
|
+
box-shadow: 0 0 0 2px rgba(105, 5, 255, 0.04);
|
|
132
|
+
outline: 0;
|
|
133
|
+
}
|
|
134
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
135
|
+
.pisell-lowcode-picker-input
|
|
136
|
+
> input-disabled,
|
|
137
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
138
|
+
.pisell-lowcode-picker-input
|
|
139
|
+
> input[disabled] {
|
|
140
|
+
color: #98a2b3;
|
|
141
|
+
background-color: #f9fafb;
|
|
142
|
+
border-color: #d0d5dd;
|
|
143
|
+
box-shadow: none;
|
|
144
|
+
cursor: not-allowed;
|
|
145
|
+
opacity: 1;
|
|
146
|
+
}
|
|
147
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
148
|
+
.pisell-lowcode-picker-input
|
|
149
|
+
> input-disabled:hover:not([disabled]),
|
|
150
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
151
|
+
.pisell-lowcode-picker-input
|
|
152
|
+
> input[disabled]:hover:not([disabled]) {
|
|
153
|
+
border-color: #d0d5dd;
|
|
154
|
+
background-color: #f9fafb;
|
|
155
|
+
}
|
|
156
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
157
|
+
.pisell-lowcode-picker-input
|
|
158
|
+
> input-borderless,
|
|
159
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
160
|
+
.pisell-lowcode-picker-input
|
|
161
|
+
> input-borderless:hover,
|
|
162
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
163
|
+
.pisell-lowcode-picker-input
|
|
164
|
+
> input-borderless:focus,
|
|
165
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
166
|
+
.pisell-lowcode-picker-input
|
|
167
|
+
> input-borderless-focused,
|
|
168
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
169
|
+
.pisell-lowcode-picker-input
|
|
170
|
+
> input-borderless-disabled,
|
|
171
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
172
|
+
.pisell-lowcode-picker-input
|
|
173
|
+
> input-borderless[disabled] {
|
|
174
|
+
background-color: transparent;
|
|
175
|
+
border: none;
|
|
176
|
+
box-shadow: none;
|
|
177
|
+
}
|
|
178
|
+
textarea.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
179
|
+
.pisell-lowcode-picker-input
|
|
180
|
+
> input {
|
|
181
|
+
max-width: 100%;
|
|
182
|
+
height: auto;
|
|
183
|
+
min-height: 32px;
|
|
184
|
+
line-height: 1.5714285714285714;
|
|
185
|
+
vertical-align: bottom;
|
|
186
|
+
transition: all 0.3s, height 0s;
|
|
187
|
+
resize: vertical;
|
|
188
|
+
}
|
|
189
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
190
|
+
.pisell-lowcode-picker-input
|
|
191
|
+
> input-lg {
|
|
192
|
+
padding: 7px 11px;
|
|
193
|
+
font-size: 16px;
|
|
194
|
+
line-height: 1.5;
|
|
195
|
+
border-radius: 10px;
|
|
196
|
+
}
|
|
197
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
198
|
+
.pisell-lowcode-picker-input
|
|
199
|
+
> input-sm {
|
|
200
|
+
padding: 0px 7px;
|
|
201
|
+
border-radius: 6px;
|
|
202
|
+
}
|
|
203
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
204
|
+
.pisell-lowcode-picker-input
|
|
205
|
+
> input-rtl {
|
|
206
|
+
direction: rtl;
|
|
207
|
+
}
|
|
208
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
209
|
+
.pisell-lowcode-picker-input
|
|
210
|
+
> input-textarea-rtl {
|
|
211
|
+
direction: rtl;
|
|
212
|
+
}
|
|
213
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
214
|
+
.pisell-lowcode-picker-input
|
|
215
|
+
> input:focus {
|
|
216
|
+
box-shadow: none;
|
|
217
|
+
}
|
|
218
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
219
|
+
.pisell-lowcode-picker-input
|
|
220
|
+
> input[disabled] {
|
|
221
|
+
background: transparent;
|
|
222
|
+
}
|
|
223
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
224
|
+
.pisell-lowcode-picker-input:hover
|
|
225
|
+
.pisell-lowcode-picker-clear {
|
|
226
|
+
opacity: 1;
|
|
227
|
+
}
|
|
228
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
229
|
+
.pisell-lowcode-picker-input-placeholder
|
|
230
|
+
> input {
|
|
231
|
+
color: #667085;
|
|
232
|
+
}
|
|
233
|
+
.pisell-lowcode-picker-large {
|
|
234
|
+
padding: 7px 11px 7px !important;
|
|
235
|
+
}
|
|
236
|
+
.pisell-lowcode-picker-large .pisell-lowcode-picker-input > input {
|
|
237
|
+
font-size: 16px;
|
|
238
|
+
line-height: 1.5;
|
|
239
|
+
}
|
|
240
|
+
.pisell-lowcode-picker-small {
|
|
241
|
+
padding: 0px 7px 0px;
|
|
242
|
+
}
|
|
243
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
244
|
+
.pisell-lowcode-picker-suffix {
|
|
245
|
+
display: flex;
|
|
246
|
+
flex: none;
|
|
247
|
+
align-self: center;
|
|
248
|
+
margin-left: 4px;
|
|
249
|
+
color: #98a2b3;
|
|
250
|
+
line-height: 1;
|
|
251
|
+
pointer-events: none;
|
|
252
|
+
}
|
|
253
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
254
|
+
.pisell-lowcode-picker-suffix
|
|
255
|
+
> * {
|
|
256
|
+
vertical-align: top;
|
|
257
|
+
}
|
|
258
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
259
|
+
.pisell-lowcode-picker-suffix
|
|
260
|
+
> *:not(:last-child) {
|
|
261
|
+
margin-right: 8px;
|
|
262
|
+
}
|
|
263
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
264
|
+
.pisell-lowcode-picker-clear {
|
|
265
|
+
position: absolute;
|
|
266
|
+
top: 50%;
|
|
267
|
+
right: 0;
|
|
268
|
+
color: #98a2b3;
|
|
269
|
+
line-height: 1;
|
|
270
|
+
background: #ffffff;
|
|
271
|
+
transform: translateY(-50%);
|
|
272
|
+
cursor: pointer;
|
|
273
|
+
opacity: 0;
|
|
274
|
+
transition: opacity 0.2s, color 0.2s;
|
|
275
|
+
}
|
|
276
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
277
|
+
.pisell-lowcode-picker-clear
|
|
278
|
+
> * {
|
|
279
|
+
vertical-align: top;
|
|
280
|
+
}
|
|
281
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
282
|
+
.pisell-lowcode-picker-clear:hover {
|
|
283
|
+
color: #667085;
|
|
284
|
+
}
|
|
285
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
286
|
+
.pisell-lowcode-picker-separator {
|
|
287
|
+
position: relative;
|
|
288
|
+
display: inline-block;
|
|
289
|
+
width: 1em;
|
|
290
|
+
height: 16px;
|
|
291
|
+
color: #98a2b3;
|
|
292
|
+
font-size: 16px;
|
|
293
|
+
vertical-align: top;
|
|
294
|
+
cursor: default;
|
|
295
|
+
}
|
|
296
|
+
.pisell-lowcode-picker-focused
|
|
297
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
298
|
+
.pisell-lowcode-picker-separator {
|
|
299
|
+
color: #667085;
|
|
300
|
+
}
|
|
301
|
+
.pisell-lowcode-picker-disabled
|
|
302
|
+
.pisell-lowcode-picker-range-separator
|
|
303
|
+
.pisell-lowcode-picker.pisell-lowcode-mode-date-picker
|
|
304
|
+
.pisell-lowcode-picker-separator {
|
|
305
|
+
cursor: not-allowed;
|
|
306
|
+
}
|
|
307
|
+
.pisell-lowcode-picker-range {
|
|
308
|
+
position: relative;
|
|
309
|
+
display: inline-flex;
|
|
310
|
+
}
|
|
311
|
+
.pisell-lowcode-picker-range .pisell-lowcode-picker-clear {
|
|
312
|
+
right: 11px;
|
|
313
|
+
}
|
|
314
|
+
.pisell-lowcode-picker-range:hover .pisell-lowcode-picker-clear {
|
|
315
|
+
opacity: 1;
|
|
316
|
+
}
|
|
317
|
+
.pisell-lowcode-picker-range .pisell-lowcode-picker-active-bar {
|
|
318
|
+
bottom: -1px;
|
|
319
|
+
height: 2px;
|
|
320
|
+
margin-left: 11px;
|
|
321
|
+
background: #7f56d9;
|
|
322
|
+
opacity: 0;
|
|
323
|
+
transition: all 0.3s ease-out;
|
|
324
|
+
pointer-events: none;
|
|
325
|
+
}
|
|
326
|
+
.pisell-lowcode-picker-range.pisell-lowcode-picker-focused
|
|
327
|
+
.pisell-lowcode-picker-active-bar {
|
|
328
|
+
opacity: 1;
|
|
329
|
+
}
|
|
330
|
+
.pisell-lowcode-picker-range .pisell-lowcode-picker-range-separator {
|
|
331
|
+
align-items: center;
|
|
332
|
+
padding: 0 8px;
|
|
333
|
+
line-height: 1;
|
|
334
|
+
}
|
|
335
|
+
.pisell-lowcode-picker-range.pisell-lowcode-picker-small
|
|
336
|
+
.pisell-lowcode-picker-clear {
|
|
337
|
+
right: 7px;
|
|
338
|
+
}
|
|
339
|
+
.pisell-lowcode-picker-range.pisell-lowcode-picker-small
|
|
340
|
+
.pisell-lowcode-picker-active-bar {
|
|
341
|
+
margin-left: 7px;
|
|
342
|
+
}
|
|
343
|
+
.pisell-lowcode-picker-custom-dropdown {
|
|
344
|
+
//box-sizing: border-box;
|
|
345
|
+
//margin: 0;
|
|
346
|
+
//padding: 0;
|
|
347
|
+
//color: #101828;
|
|
348
|
+
//font-size: 14px;
|
|
349
|
+
//line-height: 1.5714285714285714;
|
|
350
|
+
//list-style: none;
|
|
351
|
+
//font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
352
|
+
//'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
|
|
353
|
+
//'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
354
|
+
//position: absolute;
|
|
355
|
+
//top: -9999px;
|
|
356
|
+
//left: -9999px;
|
|
357
|
+
//z-index: 1050;
|
|
358
|
+
}
|
|
359
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-panel {
|
|
360
|
+
display: inline-flex;
|
|
361
|
+
flex-direction: column;
|
|
362
|
+
text-align: center;
|
|
363
|
+
background: #ffffff;
|
|
364
|
+
border: 1px solid rgba(22, 44, 88, 0.09);
|
|
365
|
+
border-radius: 10px;
|
|
366
|
+
outline: none;
|
|
367
|
+
}
|
|
368
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-panel-focused {
|
|
369
|
+
border-color: #7f56d9;
|
|
370
|
+
}
|
|
371
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-panel-rtl {
|
|
372
|
+
direction: rtl;
|
|
373
|
+
}
|
|
374
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
375
|
+
.pisell-lowcode-picker-panel-rtl
|
|
376
|
+
.pisell-lowcode-picker-prev-icon,
|
|
377
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
378
|
+
.pisell-lowcode-picker-panel-rtl
|
|
379
|
+
.pisell-lowcode-picker-super-prev-icon {
|
|
380
|
+
transform: rotate(45deg);
|
|
381
|
+
}
|
|
382
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
383
|
+
.pisell-lowcode-picker-panel-rtl
|
|
384
|
+
.pisell-lowcode-picker-next-icon,
|
|
385
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
386
|
+
.pisell-lowcode-picker-panel-rtl
|
|
387
|
+
.pisell-lowcode-picker-super-next-icon {
|
|
388
|
+
transform: rotate(-135deg);
|
|
389
|
+
}
|
|
390
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-decade-panel,
|
|
391
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-year-panel,
|
|
392
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-quarter-panel,
|
|
393
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-month-panel,
|
|
394
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-week-panel,
|
|
395
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-date-panel,
|
|
396
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-time-panel {
|
|
397
|
+
display: flex;
|
|
398
|
+
flex-direction: column;
|
|
399
|
+
width: 100%;
|
|
400
|
+
}
|
|
401
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-header {
|
|
402
|
+
display: flex;
|
|
403
|
+
padding: 0 8px;
|
|
404
|
+
color: #101828;
|
|
405
|
+
border: none;
|
|
406
|
+
}
|
|
407
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-header > * {
|
|
408
|
+
flex: none;
|
|
409
|
+
}
|
|
410
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-header button {
|
|
411
|
+
padding: 0;
|
|
412
|
+
color: #667085;
|
|
413
|
+
line-height: 40px;
|
|
414
|
+
background: transparent;
|
|
415
|
+
border: 0;
|
|
416
|
+
cursor: pointer;
|
|
417
|
+
transition: color 0.2s;
|
|
418
|
+
font-size: inherit;
|
|
419
|
+
}
|
|
420
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-header > button {
|
|
421
|
+
min-width: 1.6em;
|
|
422
|
+
font-size: 14px;
|
|
423
|
+
}
|
|
424
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
425
|
+
.pisell-lowcode-picker-header
|
|
426
|
+
> button:hover {
|
|
427
|
+
color: #101828;
|
|
428
|
+
}
|
|
429
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-header-view {
|
|
430
|
+
flex: auto;
|
|
431
|
+
font-weight: 600;
|
|
432
|
+
line-height: 40px;
|
|
433
|
+
}
|
|
434
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
435
|
+
.pisell-lowcode-picker-header-view
|
|
436
|
+
button {
|
|
437
|
+
color: inherit;
|
|
438
|
+
font-weight: inherit;
|
|
439
|
+
vertical-align: top;
|
|
440
|
+
}
|
|
441
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
442
|
+
.pisell-lowcode-picker-header-view
|
|
443
|
+
button:not(:first-child) {
|
|
444
|
+
margin-left: 8px;
|
|
445
|
+
}
|
|
446
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
447
|
+
.pisell-lowcode-picker-header-view
|
|
448
|
+
button:hover {
|
|
449
|
+
color: #7f56d9;
|
|
450
|
+
}
|
|
451
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-prev-icon,
|
|
452
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-next-icon,
|
|
453
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-super-prev-icon,
|
|
454
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-super-next-icon {
|
|
455
|
+
position: relative;
|
|
456
|
+
display: inline-block;
|
|
457
|
+
width: 7px;
|
|
458
|
+
height: 7px;
|
|
459
|
+
}
|
|
460
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-prev-icon::before,
|
|
461
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-next-icon::before,
|
|
462
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
463
|
+
.pisell-lowcode-picker-super-prev-icon::before,
|
|
464
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
465
|
+
.pisell-lowcode-picker-super-next-icon::before {
|
|
466
|
+
position: absolute;
|
|
467
|
+
top: 0;
|
|
468
|
+
left: 0;
|
|
469
|
+
display: inline-block;
|
|
470
|
+
width: 7px;
|
|
471
|
+
height: 7px;
|
|
472
|
+
border: 0 solid currentcolor;
|
|
473
|
+
border-top-width: 1.5px;
|
|
474
|
+
border-bottom-width: 0;
|
|
475
|
+
border-left-width: 1.5px;
|
|
476
|
+
border-right-width: 0;
|
|
477
|
+
content: '';
|
|
478
|
+
}
|
|
479
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
480
|
+
.pisell-lowcode-picker-super-prev-icon::after,
|
|
481
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
482
|
+
.pisell-lowcode-picker-super-next-icon::after {
|
|
483
|
+
position: absolute;
|
|
484
|
+
top: 4px;
|
|
485
|
+
left: 4px;
|
|
486
|
+
display: inline-block;
|
|
487
|
+
width: 7px;
|
|
488
|
+
height: 7px;
|
|
489
|
+
border: 0 solid currentcolor;
|
|
490
|
+
border-top-width: 1.5px;
|
|
491
|
+
border-bottom-width: 0;
|
|
492
|
+
border-left-width: 1.5px;
|
|
493
|
+
border-right-width: 0;
|
|
494
|
+
content: '';
|
|
495
|
+
}
|
|
496
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-prev-icon,
|
|
497
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-super-prev-icon {
|
|
498
|
+
transform: rotate(-45deg);
|
|
499
|
+
}
|
|
500
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-next-icon,
|
|
501
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-super-next-icon {
|
|
502
|
+
transform: rotate(135deg);
|
|
503
|
+
}
|
|
504
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-content {
|
|
505
|
+
width: 100%;
|
|
506
|
+
table-layout: fixed;
|
|
507
|
+
border-collapse: collapse;
|
|
508
|
+
}
|
|
509
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-content th,
|
|
510
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-content td {
|
|
511
|
+
position: relative;
|
|
512
|
+
min-width: 24px;
|
|
513
|
+
font-weight: normal;
|
|
514
|
+
}
|
|
515
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-content th {
|
|
516
|
+
height: 36px;
|
|
517
|
+
color: #101828;
|
|
518
|
+
vertical-align: middle;
|
|
519
|
+
}
|
|
520
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-cell {
|
|
521
|
+
padding: 6px 0;
|
|
522
|
+
color: #98a2b3;
|
|
523
|
+
cursor: pointer;
|
|
524
|
+
}
|
|
525
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-cell-in-view {
|
|
526
|
+
color: #101828;
|
|
527
|
+
}
|
|
528
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-cell::before {
|
|
529
|
+
position: absolute;
|
|
530
|
+
top: 50%;
|
|
531
|
+
left: 0;
|
|
532
|
+
right: 0;
|
|
533
|
+
z-index: 1;
|
|
534
|
+
height: 24px;
|
|
535
|
+
transform: translateY(-50%);
|
|
536
|
+
transition: all 0.3s;
|
|
537
|
+
content: '';
|
|
538
|
+
}
|
|
539
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
540
|
+
.pisell-lowcode-picker-cell
|
|
541
|
+
.pisell-lowcode-picker-cell-inner {
|
|
542
|
+
position: relative;
|
|
543
|
+
z-index: 2;
|
|
544
|
+
display: inline-block;
|
|
545
|
+
min-width: 40px;
|
|
546
|
+
height: 40px;
|
|
547
|
+
line-height: 40px;
|
|
548
|
+
border-radius: 50%;
|
|
549
|
+
transition: background 0.2s, border 0.2s;
|
|
550
|
+
}
|
|
551
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
552
|
+
.pisell-lowcode-picker-cell-range-hover-start
|
|
553
|
+
.pisell-lowcode-picker-cell-inner,
|
|
554
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
555
|
+
.pisell-lowcode-picker-cell-range-hover-end
|
|
556
|
+
.pisell-lowcode-picker-cell-inner {
|
|
557
|
+
border-top-right-radius: 0;
|
|
558
|
+
border-bottom-right-radius: 0;
|
|
559
|
+
}
|
|
560
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
561
|
+
.pisell-lowcode-picker-cell:hover:not(.pisell-lowcode-picker-cell-in-view)
|
|
562
|
+
.pisell-lowcode-picker-cell-inner,
|
|
563
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
564
|
+
.pisell-lowcode-picker-cell:hover:not(
|
|
565
|
+
.pisell-lowcode-picker-cell-selected
|
|
566
|
+
):not(.pisell-lowcode-picker-cell-range-start):not(
|
|
567
|
+
.pisell-lowcode-picker-cell-range-end
|
|
568
|
+
):not(.pisell-lowcode-picker-cell-range-hover-start):not(
|
|
569
|
+
.pisell-lowcode-picker-cell-range-hover-end
|
|
570
|
+
)
|
|
571
|
+
.pisell-lowcode-picker-cell-inner {
|
|
572
|
+
background: #f2f4f7;
|
|
573
|
+
}
|
|
574
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
575
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-today
|
|
576
|
+
.pisell-lowcode-picker-cell-inner::before {
|
|
577
|
+
position: absolute;
|
|
578
|
+
top: 0;
|
|
579
|
+
right: 0;
|
|
580
|
+
bottom: 0;
|
|
581
|
+
left: 0;
|
|
582
|
+
z-index: 1;
|
|
583
|
+
border: 1px solid #7f56d9;
|
|
584
|
+
border-radius: 50%;
|
|
585
|
+
content: '';
|
|
586
|
+
}
|
|
587
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
588
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range {
|
|
589
|
+
position: relative;
|
|
590
|
+
}
|
|
591
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
592
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range::before {
|
|
593
|
+
background: #f9f5ff;
|
|
594
|
+
}
|
|
595
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
596
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-selected
|
|
597
|
+
.pisell-lowcode-picker-cell-inner,
|
|
598
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
599
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-start
|
|
600
|
+
.pisell-lowcode-picker-cell-inner,
|
|
601
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
602
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-end
|
|
603
|
+
.pisell-lowcode-picker-cell-inner {
|
|
604
|
+
color: #fff;
|
|
605
|
+
background: #7f56d9;
|
|
606
|
+
}
|
|
607
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
608
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-start:not(
|
|
609
|
+
.pisell-lowcode-picker-cell-range-start-single
|
|
610
|
+
)::before,
|
|
611
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
612
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-end:not(
|
|
613
|
+
.pisell-lowcode-picker-cell-range-end-single
|
|
614
|
+
)::before {
|
|
615
|
+
background: #f9f5ff;
|
|
616
|
+
}
|
|
617
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
618
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-start::before {
|
|
619
|
+
left: 50%;
|
|
620
|
+
}
|
|
621
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
622
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-end::before {
|
|
623
|
+
right: 50%;
|
|
624
|
+
}
|
|
625
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
626
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-start:not(
|
|
627
|
+
.pisell-lowcode-picker-cell-in-range
|
|
628
|
+
):not(.pisell-lowcode-picker-cell-range-start):not(
|
|
629
|
+
.pisell-lowcode-picker-cell-range-end
|
|
630
|
+
)::after,
|
|
631
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
632
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-end:not(
|
|
633
|
+
.pisell-lowcode-picker-cell-in-range
|
|
634
|
+
):not(.pisell-lowcode-picker-cell-range-start):not(
|
|
635
|
+
.pisell-lowcode-picker-cell-range-end
|
|
636
|
+
)::after,
|
|
637
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
638
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-start.pisell-lowcode-picker-cell-range-start-single::after,
|
|
639
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
640
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-start.pisell-lowcode-picker-cell-range-start.pisell-lowcode-picker-cell-range-end.pisell-lowcode-picker-cell-range-end-near-hover::after,
|
|
641
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
642
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-end.pisell-lowcode-picker-cell-range-start.pisell-lowcode-picker-cell-range-end.pisell-lowcode-picker-cell-range-start-near-hover::after,
|
|
643
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
644
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-end.pisell-lowcode-picker-cell-range-end-single::after,
|
|
645
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
646
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover:not(
|
|
647
|
+
.pisell-lowcode-picker-cell-in-range
|
|
648
|
+
)::after {
|
|
649
|
+
position: absolute;
|
|
650
|
+
top: 50%;
|
|
651
|
+
z-index: 0;
|
|
652
|
+
height: 24px;
|
|
653
|
+
border-top: 1px dashed #bea9ec;
|
|
654
|
+
border-bottom: 1px dashed #bea9ec;
|
|
655
|
+
transform: translateY(-50%);
|
|
656
|
+
transition: all 0.3s;
|
|
657
|
+
content: '';
|
|
658
|
+
}
|
|
659
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
660
|
+
.pisell-lowcode-picker-cell-range-hover-start::after,
|
|
661
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
662
|
+
.pisell-lowcode-picker-cell-range-hover-end::after,
|
|
663
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
664
|
+
.pisell-lowcode-picker-cell-range-hover::after {
|
|
665
|
+
right: 0;
|
|
666
|
+
left: 2px;
|
|
667
|
+
}
|
|
668
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
669
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover::before,
|
|
670
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
671
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-start::before,
|
|
672
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
673
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-end::before,
|
|
674
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
675
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-start.pisell-lowcode-picker-cell-range-hover::before,
|
|
676
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
677
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-end.pisell-lowcode-picker-cell-range-hover::before,
|
|
678
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
679
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-start:not(
|
|
680
|
+
.pisell-lowcode-picker-cell-range-start-single
|
|
681
|
+
).pisell-lowcode-picker-cell-range-hover-start::before,
|
|
682
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
683
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-end:not(
|
|
684
|
+
.pisell-lowcode-picker-cell-range-end-single
|
|
685
|
+
).pisell-lowcode-picker-cell-range-hover-end::before,
|
|
686
|
+
.pisell-lowcode-picker-panel
|
|
687
|
+
> :not(.pisell-lowcode-picker-date-panel)
|
|
688
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
689
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-start::before,
|
|
690
|
+
.pisell-lowcode-picker-panel
|
|
691
|
+
> :not(.pisell-lowcode-picker-date-panel)
|
|
692
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
693
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-end::before {
|
|
694
|
+
background: #ede8fa;
|
|
695
|
+
}
|
|
696
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
697
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-start:not(
|
|
698
|
+
.pisell-lowcode-picker-cell-range-start-single
|
|
699
|
+
):not(.pisell-lowcode-picker-cell-range-end)
|
|
700
|
+
.pisell-lowcode-picker-cell-inner {
|
|
701
|
+
border-top-left-radius: 6px;
|
|
702
|
+
border-bottom-left-radius: 6px;
|
|
703
|
+
border-top-right-radius: 0;
|
|
704
|
+
border-bottom-right-radius: 0;
|
|
705
|
+
}
|
|
706
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
707
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-end:not(
|
|
708
|
+
.pisell-lowcode-picker-cell-range-end-single
|
|
709
|
+
):not(.pisell-lowcode-picker-cell-range-start)
|
|
710
|
+
.pisell-lowcode-picker-cell-inner {
|
|
711
|
+
border-top-left-radius: 0;
|
|
712
|
+
border-bottom-left-radius: 0;
|
|
713
|
+
border-top-right-radius: 6px;
|
|
714
|
+
border-bottom-right-radius: 6px;
|
|
715
|
+
}
|
|
716
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
717
|
+
.pisell-lowcode-picker-cell-range-hover.pisell-lowcode-picker-cell-range-end::after {
|
|
718
|
+
left: 50%;
|
|
719
|
+
}
|
|
720
|
+
tr
|
|
721
|
+
> .pisell-lowcode-picker-custom-dropdown
|
|
722
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover:first-child::after,
|
|
723
|
+
tr
|
|
724
|
+
> .pisell-lowcode-picker-custom-dropdown
|
|
725
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-end:first-child::after,
|
|
726
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
727
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-start.pisell-lowcode-picker-cell-range-hover-edge-start.pisell-lowcode-picker-cell-range-hover-edge-start-near-range::after,
|
|
728
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
729
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-edge-start:not(
|
|
730
|
+
.pisell-lowcode-picker-cell-range-hover-edge-start-near-range
|
|
731
|
+
)::after,
|
|
732
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
733
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-start::after {
|
|
734
|
+
left: 6px;
|
|
735
|
+
border-left: 1px dashed #bea9ec;
|
|
736
|
+
border-top-left-radius: 6px;
|
|
737
|
+
border-bottom-left-radius: 6px;
|
|
738
|
+
}
|
|
739
|
+
tr
|
|
740
|
+
> .pisell-lowcode-picker-custom-dropdown
|
|
741
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover:last-child::after,
|
|
742
|
+
tr
|
|
743
|
+
> .pisell-lowcode-picker-custom-dropdown
|
|
744
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-start:last-child::after,
|
|
745
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
746
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-end.pisell-lowcode-picker-cell-range-hover-edge-end.pisell-lowcode-picker-cell-range-hover-edge-end-near-range::after,
|
|
747
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
748
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-edge-end:not(
|
|
749
|
+
.pisell-lowcode-picker-cell-range-hover-edge-end-near-range
|
|
750
|
+
)::after,
|
|
751
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
752
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-range-hover-end::after {
|
|
753
|
+
right: 6px;
|
|
754
|
+
border-right: 1px dashed #bea9ec;
|
|
755
|
+
border-top-right-radius: 6px;
|
|
756
|
+
border-bottom-right-radius: 6px;
|
|
757
|
+
}
|
|
758
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-cell-disabled {
|
|
759
|
+
color: #98a2b3;
|
|
760
|
+
pointer-events: none;
|
|
761
|
+
}
|
|
762
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
763
|
+
.pisell-lowcode-picker-cell-disabled
|
|
764
|
+
.pisell-lowcode-picker-cell-inner {
|
|
765
|
+
background: transparent;
|
|
766
|
+
}
|
|
767
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
768
|
+
.pisell-lowcode-picker-cell-disabled::before {
|
|
769
|
+
background: #f9fafb;
|
|
770
|
+
}
|
|
771
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
772
|
+
.pisell-lowcode-picker-cell-disabled.pisell-lowcode-picker-cell-today
|
|
773
|
+
.pisell-lowcode-picker-cell-inner::before {
|
|
774
|
+
border-color: #98a2b3;
|
|
775
|
+
}
|
|
776
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
777
|
+
.pisell-lowcode-picker-date-panel
|
|
778
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-start
|
|
779
|
+
.pisell-lowcode-picker-cell-inner::after,
|
|
780
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
781
|
+
.pisell-lowcode-picker-date-panel
|
|
782
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-end
|
|
783
|
+
.pisell-lowcode-picker-cell-inner::after {
|
|
784
|
+
position: absolute;
|
|
785
|
+
top: 0;
|
|
786
|
+
bottom: 0;
|
|
787
|
+
z-index: -1;
|
|
788
|
+
background: #ede8fa;
|
|
789
|
+
transition: all 0.3s;
|
|
790
|
+
content: '';
|
|
791
|
+
}
|
|
792
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
793
|
+
.pisell-lowcode-picker-date-panel
|
|
794
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-start
|
|
795
|
+
.pisell-lowcode-picker-cell-inner::after {
|
|
796
|
+
right: -6px;
|
|
797
|
+
left: 0;
|
|
798
|
+
}
|
|
799
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
800
|
+
.pisell-lowcode-picker-date-panel
|
|
801
|
+
.pisell-lowcode-picker-cell-in-view.pisell-lowcode-picker-cell-in-range.pisell-lowcode-picker-cell-range-hover-end
|
|
802
|
+
.pisell-lowcode-picker-cell-inner::after {
|
|
803
|
+
right: 0;
|
|
804
|
+
left: -6px;
|
|
805
|
+
}
|
|
806
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
807
|
+
.pisell-lowcode-picker-range-hover.pisell-lowcode-picker-range-start::after {
|
|
808
|
+
right: 50%;
|
|
809
|
+
}
|
|
810
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
811
|
+
.pisell-lowcode-picker-decade-panel
|
|
812
|
+
.pisell-lowcode-picker-content,
|
|
813
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
814
|
+
.pisell-lowcode-picker-year-panel
|
|
815
|
+
.pisell-lowcode-picker-content,
|
|
816
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
817
|
+
.pisell-lowcode-picker-quarter-panel
|
|
818
|
+
.pisell-lowcode-picker-content,
|
|
819
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
820
|
+
.pisell-lowcode-picker-month-panel
|
|
821
|
+
.pisell-lowcode-picker-content {
|
|
822
|
+
height: 264px;
|
|
823
|
+
}
|
|
824
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
825
|
+
.pisell-lowcode-picker-decade-panel
|
|
826
|
+
.pisell-lowcode-picker-cell-inner,
|
|
827
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
828
|
+
.pisell-lowcode-picker-year-panel
|
|
829
|
+
.pisell-lowcode-picker-cell-inner,
|
|
830
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
831
|
+
.pisell-lowcode-picker-quarter-panel
|
|
832
|
+
.pisell-lowcode-picker-cell-inner,
|
|
833
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
834
|
+
.pisell-lowcode-picker-month-panel
|
|
835
|
+
.pisell-lowcode-picker-cell-inner {
|
|
836
|
+
padding: 0 8px;
|
|
837
|
+
}
|
|
838
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
839
|
+
.pisell-lowcode-picker-quarter-panel
|
|
840
|
+
.pisell-lowcode-picker-content {
|
|
841
|
+
height: 56px;
|
|
842
|
+
}
|
|
843
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
844
|
+
.pisell-lowcode-picker-quarter-panel
|
|
845
|
+
.pisell-lowcode-picker-cell-range-hover-start::after {
|
|
846
|
+
left: 8px;
|
|
847
|
+
border-left: 1px dashed #bea9ec;
|
|
848
|
+
}
|
|
849
|
+
.pisell-lowcode-picker-panel-rtl
|
|
850
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
851
|
+
.pisell-lowcode-picker-quarter-panel
|
|
852
|
+
.pisell-lowcode-picker-cell-range-hover-start::after {
|
|
853
|
+
right: 8px;
|
|
854
|
+
border-right: 1px dashed #bea9ec;
|
|
855
|
+
}
|
|
856
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
857
|
+
.pisell-lowcode-picker-quarter-panel
|
|
858
|
+
.pisell-lowcode-picker-cell-range-hover-end::after {
|
|
859
|
+
right: 8px;
|
|
860
|
+
border-right: 1px dashed #bea9ec;
|
|
861
|
+
}
|
|
862
|
+
.pisell-lowcode-picker-panel-rtl
|
|
863
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
864
|
+
.pisell-lowcode-picker-quarter-panel
|
|
865
|
+
.pisell-lowcode-picker-cell-range-hover-end::after {
|
|
866
|
+
left: 8px;
|
|
867
|
+
border-left: 1px dashed #bea9ec;
|
|
868
|
+
}
|
|
869
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
870
|
+
.pisell-lowcode-picker-panel
|
|
871
|
+
.pisell-lowcode-picker-footer {
|
|
872
|
+
border-top: 1px solid rgba(22, 44, 88, 0.09);
|
|
873
|
+
}
|
|
874
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-footer {
|
|
875
|
+
width: min-content;
|
|
876
|
+
min-width: 100%;
|
|
877
|
+
line-height: 38px;
|
|
878
|
+
text-align: center;
|
|
879
|
+
}
|
|
880
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-footer-extra {
|
|
881
|
+
padding: 0 12px;
|
|
882
|
+
line-height: 38px;
|
|
883
|
+
text-align: start;
|
|
884
|
+
}
|
|
885
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
886
|
+
.pisell-lowcode-picker-footer-extra:not(:last-child) {
|
|
887
|
+
border-bottom: 1px solid rgba(22, 44, 88, 0.09);
|
|
888
|
+
}
|
|
889
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-now {
|
|
890
|
+
text-align: start;
|
|
891
|
+
}
|
|
892
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-today-btn {
|
|
893
|
+
color: #1570ef;
|
|
894
|
+
}
|
|
895
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-today-btn:hover {
|
|
896
|
+
color: #69b1ff;
|
|
897
|
+
}
|
|
898
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-today-btn:active {
|
|
899
|
+
color: #0852c9;
|
|
900
|
+
}
|
|
901
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
902
|
+
.pisell-lowcode-picker-today-btn.pisell-lowcode-picker-today-btn-disabled {
|
|
903
|
+
color: #98a2b3;
|
|
904
|
+
cursor: not-allowed;
|
|
905
|
+
}
|
|
906
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
907
|
+
.pisell-lowcode-picker-decade-panel
|
|
908
|
+
.pisell-lowcode-picker-cell-inner {
|
|
909
|
+
padding: 0 4px;
|
|
910
|
+
}
|
|
911
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
912
|
+
.pisell-lowcode-picker-decade-panel
|
|
913
|
+
.pisell-lowcode-picker-cell::before {
|
|
914
|
+
display: none;
|
|
915
|
+
}
|
|
916
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
917
|
+
.pisell-lowcode-picker-year-panel
|
|
918
|
+
.pisell-lowcode-picker-body,
|
|
919
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
920
|
+
.pisell-lowcode-picker-quarter-panel
|
|
921
|
+
.pisell-lowcode-picker-body,
|
|
922
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
923
|
+
.pisell-lowcode-picker-month-panel
|
|
924
|
+
.pisell-lowcode-picker-body {
|
|
925
|
+
padding: 0 8px;
|
|
926
|
+
}
|
|
927
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
928
|
+
.pisell-lowcode-picker-year-panel
|
|
929
|
+
.pisell-lowcode-picker-cell-inner,
|
|
930
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
931
|
+
.pisell-lowcode-picker-quarter-panel
|
|
932
|
+
.pisell-lowcode-picker-cell-inner,
|
|
933
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
934
|
+
.pisell-lowcode-picker-month-panel
|
|
935
|
+
.pisell-lowcode-picker-cell-inner {
|
|
936
|
+
width: 60px;
|
|
937
|
+
}
|
|
938
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
939
|
+
.pisell-lowcode-picker-year-panel
|
|
940
|
+
.pisell-lowcode-picker-cell-range-hover-start::after,
|
|
941
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
942
|
+
.pisell-lowcode-picker-quarter-panel
|
|
943
|
+
.pisell-lowcode-picker-cell-range-hover-start::after,
|
|
944
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
945
|
+
.pisell-lowcode-picker-month-panel
|
|
946
|
+
.pisell-lowcode-picker-cell-range-hover-start::after {
|
|
947
|
+
border-top-left-radius: 6px;
|
|
948
|
+
border-bottom-left-radius: 6px;
|
|
949
|
+
border-top-right-radius: 0;
|
|
950
|
+
border-bottom-right-radius: 0;
|
|
951
|
+
}
|
|
952
|
+
.pisell-lowcode-picker-panel-rtl
|
|
953
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
954
|
+
.pisell-lowcode-picker-year-panel
|
|
955
|
+
.pisell-lowcode-picker-cell-range-hover-start::after,
|
|
956
|
+
.pisell-lowcode-picker-panel-rtl
|
|
957
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
958
|
+
.pisell-lowcode-picker-quarter-panel
|
|
959
|
+
.pisell-lowcode-picker-cell-range-hover-start::after,
|
|
960
|
+
.pisell-lowcode-picker-panel-rtl
|
|
961
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
962
|
+
.pisell-lowcode-picker-month-panel
|
|
963
|
+
.pisell-lowcode-picker-cell-range-hover-start::after {
|
|
964
|
+
border-top-left-radius: 0;
|
|
965
|
+
border-bottom-left-radius: 0;
|
|
966
|
+
border-top-right-radius: 6px;
|
|
967
|
+
border-bottom-right-radius: 6px;
|
|
968
|
+
}
|
|
969
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
970
|
+
.pisell-lowcode-picker-year-panel
|
|
971
|
+
.pisell-lowcode-picker-cell-range-hover-end::after,
|
|
972
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
973
|
+
.pisell-lowcode-picker-quarter-panel
|
|
974
|
+
.pisell-lowcode-picker-cell-range-hover-end::after,
|
|
975
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
976
|
+
.pisell-lowcode-picker-month-panel
|
|
977
|
+
.pisell-lowcode-picker-cell-range-hover-end::after {
|
|
978
|
+
border-top-left-radius: 0;
|
|
979
|
+
border-bottom-left-radius: 0;
|
|
980
|
+
border-top-right-radius: 6px;
|
|
981
|
+
border-bottom-right-radius: 6px;
|
|
982
|
+
}
|
|
983
|
+
.pisell-lowcode-picker-panel-rtl
|
|
984
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
985
|
+
.pisell-lowcode-picker-year-panel
|
|
986
|
+
.pisell-lowcode-picker-cell-range-hover-end::after,
|
|
987
|
+
.pisell-lowcode-picker-panel-rtl
|
|
988
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
989
|
+
.pisell-lowcode-picker-quarter-panel
|
|
990
|
+
.pisell-lowcode-picker-cell-range-hover-end::after,
|
|
991
|
+
.pisell-lowcode-picker-panel-rtl
|
|
992
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
993
|
+
.pisell-lowcode-picker-month-panel
|
|
994
|
+
.pisell-lowcode-picker-cell-range-hover-end::after {
|
|
995
|
+
border-top-left-radius: 6px;
|
|
996
|
+
border-bottom-left-radius: 6px;
|
|
997
|
+
border-top-right-radius: 0;
|
|
998
|
+
border-bottom-right-radius: 0;
|
|
999
|
+
}
|
|
1000
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1001
|
+
.pisell-lowcode-picker-year-panel
|
|
1002
|
+
.pisell-lowcode-picker-cell-range-hover-start::after,
|
|
1003
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1004
|
+
.pisell-lowcode-picker-month-panel
|
|
1005
|
+
.pisell-lowcode-picker-cell-range-hover-start::after {
|
|
1006
|
+
left: 18.66666666666667px;
|
|
1007
|
+
border-left: 1px dashed #bea9ec;
|
|
1008
|
+
}
|
|
1009
|
+
.pisell-lowcode-picker-panel-rtl
|
|
1010
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1011
|
+
.pisell-lowcode-picker-year-panel
|
|
1012
|
+
.pisell-lowcode-picker-cell-range-hover-start::after,
|
|
1013
|
+
.pisell-lowcode-picker-panel-rtl
|
|
1014
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1015
|
+
.pisell-lowcode-picker-month-panel
|
|
1016
|
+
.pisell-lowcode-picker-cell-range-hover-start::after {
|
|
1017
|
+
right: 18.66666666666667px;
|
|
1018
|
+
border-right: 1px dashed #bea9ec;
|
|
1019
|
+
}
|
|
1020
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1021
|
+
.pisell-lowcode-picker-year-panel
|
|
1022
|
+
.pisell-lowcode-picker-cell-range-hover-end::after,
|
|
1023
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1024
|
+
.pisell-lowcode-picker-month-panel
|
|
1025
|
+
.pisell-lowcode-picker-cell-range-hover-end::after {
|
|
1026
|
+
right: 18.66666666666667px;
|
|
1027
|
+
border-right: 1px dashed #bea9ec;
|
|
1028
|
+
}
|
|
1029
|
+
.pisell-lowcode-picker-panel-rtl
|
|
1030
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1031
|
+
.pisell-lowcode-picker-year-panel
|
|
1032
|
+
.pisell-lowcode-picker-cell-range-hover-end::after,
|
|
1033
|
+
.pisell-lowcode-picker-panel-rtl
|
|
1034
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1035
|
+
.pisell-lowcode-picker-month-panel
|
|
1036
|
+
.pisell-lowcode-picker-cell-range-hover-end::after {
|
|
1037
|
+
left: 18.66666666666667px;
|
|
1038
|
+
border-left: 1px dashed #bea9ec;
|
|
1039
|
+
}
|
|
1040
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1041
|
+
.pisell-lowcode-picker-week-panel
|
|
1042
|
+
.pisell-lowcode-picker-body {
|
|
1043
|
+
padding: 8px 12px;
|
|
1044
|
+
}
|
|
1045
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1046
|
+
.pisell-lowcode-picker-week-panel
|
|
1047
|
+
.pisell-lowcode-picker-cell:hover
|
|
1048
|
+
.pisell-lowcode-picker-cell-inner,
|
|
1049
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1050
|
+
.pisell-lowcode-picker-week-panel
|
|
1051
|
+
.pisell-lowcode-picker-cell-selected
|
|
1052
|
+
.pisell-lowcode-picker-cell-inner,
|
|
1053
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1054
|
+
.pisell-lowcode-picker-week-panel
|
|
1055
|
+
.pisell-lowcode-picker-cell
|
|
1056
|
+
.pisell-lowcode-picker-cell-inner {
|
|
1057
|
+
background: transparent !important;
|
|
1058
|
+
}
|
|
1059
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1060
|
+
.pisell-lowcode-picker-week-panel-row
|
|
1061
|
+
td:before {
|
|
1062
|
+
transition: background 0.2s;
|
|
1063
|
+
}
|
|
1064
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1065
|
+
.pisell-lowcode-picker-week-panel-row
|
|
1066
|
+
td:first-child:before {
|
|
1067
|
+
border-top-left-radius: 6px;
|
|
1068
|
+
border-bottom-left-radius: 6px;
|
|
1069
|
+
}
|
|
1070
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1071
|
+
.pisell-lowcode-picker-week-panel-row
|
|
1072
|
+
td:last-child:before {
|
|
1073
|
+
border-top-right-radius: 6px;
|
|
1074
|
+
border-bottom-right-radius: 6px;
|
|
1075
|
+
}
|
|
1076
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1077
|
+
.pisell-lowcode-picker-week-panel-row:hover
|
|
1078
|
+
td:before {
|
|
1079
|
+
background: #f2f4f7;
|
|
1080
|
+
}
|
|
1081
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1082
|
+
.pisell-lowcode-picker-week-panel-row-range-start
|
|
1083
|
+
td.pisell-lowcode-picker-cell:before,
|
|
1084
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1085
|
+
.pisell-lowcode-picker-week-panel-row-range-end
|
|
1086
|
+
td.pisell-lowcode-picker-cell:before,
|
|
1087
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1088
|
+
.pisell-lowcode-picker-week-panel-row-selected
|
|
1089
|
+
td.pisell-lowcode-picker-cell:before {
|
|
1090
|
+
background: #7f56d9;
|
|
1091
|
+
}
|
|
1092
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1093
|
+
.pisell-lowcode-picker-week-panel-row-range-start
|
|
1094
|
+
td.pisell-lowcode-picker-cell.pisell-lowcode-picker-cell-week,
|
|
1095
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1096
|
+
.pisell-lowcode-picker-week-panel-row-range-end
|
|
1097
|
+
td.pisell-lowcode-picker-cell.pisell-lowcode-picker-cell-week,
|
|
1098
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1099
|
+
.pisell-lowcode-picker-week-panel-row-selected
|
|
1100
|
+
td.pisell-lowcode-picker-cell.pisell-lowcode-picker-cell-week {
|
|
1101
|
+
color: #ffffff;
|
|
1102
|
+
}
|
|
1103
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1104
|
+
.pisell-lowcode-picker-week-panel-row-range-start
|
|
1105
|
+
td.pisell-lowcode-picker-cell
|
|
1106
|
+
.pisell-lowcode-picker-cell-inner,
|
|
1107
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1108
|
+
.pisell-lowcode-picker-week-panel-row-range-end
|
|
1109
|
+
td.pisell-lowcode-picker-cell
|
|
1110
|
+
.pisell-lowcode-picker-cell-inner,
|
|
1111
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1112
|
+
.pisell-lowcode-picker-week-panel-row-selected
|
|
1113
|
+
td.pisell-lowcode-picker-cell
|
|
1114
|
+
.pisell-lowcode-picker-cell-inner {
|
|
1115
|
+
color: #fff;
|
|
1116
|
+
}
|
|
1117
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1118
|
+
.pisell-lowcode-picker-week-panel-row-range-hover
|
|
1119
|
+
td:before {
|
|
1120
|
+
background: #f9f5ff;
|
|
1121
|
+
}
|
|
1122
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1123
|
+
.pisell-lowcode-picker-date-panel
|
|
1124
|
+
.pisell-lowcode-picker-body {
|
|
1125
|
+
padding: 0;
|
|
1126
|
+
}
|
|
1127
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1128
|
+
.pisell-lowcode-picker-date-panel
|
|
1129
|
+
.pisell-lowcode-picker-content {
|
|
1130
|
+
width: 100%;
|
|
1131
|
+
}
|
|
1132
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1133
|
+
.pisell-lowcode-picker-date-panel
|
|
1134
|
+
.pisell-lowcode-picker-content
|
|
1135
|
+
th {
|
|
1136
|
+
width: 36px;
|
|
1137
|
+
box-sizing: border-box;
|
|
1138
|
+
padding: 0;
|
|
1139
|
+
}
|
|
1140
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-datetime-panel {
|
|
1141
|
+
display: flex;
|
|
1142
|
+
}
|
|
1143
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1144
|
+
.pisell-lowcode-picker-datetime-panel
|
|
1145
|
+
.pisell-lowcode-picker-time-panel {
|
|
1146
|
+
border-left: 1px solid rgba(22, 44, 88, 0.09);
|
|
1147
|
+
}
|
|
1148
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1149
|
+
.pisell-lowcode-picker-datetime-panel
|
|
1150
|
+
.pisell-lowcode-picker-date-panel,
|
|
1151
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1152
|
+
.pisell-lowcode-picker-datetime-panel
|
|
1153
|
+
.pisell-lowcode-picker-time-panel {
|
|
1154
|
+
transition: opacity 0.3s;
|
|
1155
|
+
}
|
|
1156
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1157
|
+
.pisell-lowcode-picker-datetime-panel-active
|
|
1158
|
+
.pisell-lowcode-picker-date-panel,
|
|
1159
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1160
|
+
.pisell-lowcode-picker-datetime-panel-active
|
|
1161
|
+
.pisell-lowcode-picker-time-panel {
|
|
1162
|
+
opacity: 0.3;
|
|
1163
|
+
}
|
|
1164
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1165
|
+
.pisell-lowcode-picker-datetime-panel-active
|
|
1166
|
+
.pisell-lowcode-picker-date-panel-active,
|
|
1167
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1168
|
+
.pisell-lowcode-picker-datetime-panel-active
|
|
1169
|
+
.pisell-lowcode-picker-time-panel-active {
|
|
1170
|
+
opacity: 1;
|
|
1171
|
+
}
|
|
1172
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-time-panel {
|
|
1173
|
+
width: auto;
|
|
1174
|
+
min-width: auto;
|
|
1175
|
+
direction: ltr;
|
|
1176
|
+
}
|
|
1177
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1178
|
+
.pisell-lowcode-picker-time-panel
|
|
1179
|
+
.pisell-lowcode-picker-content {
|
|
1180
|
+
display: flex;
|
|
1181
|
+
flex: auto;
|
|
1182
|
+
height: 224px;
|
|
1183
|
+
}
|
|
1184
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1185
|
+
.pisell-lowcode-picker-time-panel-column {
|
|
1186
|
+
flex: 1 0 auto;
|
|
1187
|
+
width: 56px;
|
|
1188
|
+
margin: 4px 0;
|
|
1189
|
+
padding: 0;
|
|
1190
|
+
overflow-y: hidden;
|
|
1191
|
+
text-align: start;
|
|
1192
|
+
list-style: none;
|
|
1193
|
+
transition: background 0.2s;
|
|
1194
|
+
overflow-x: hidden;
|
|
1195
|
+
}
|
|
1196
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1197
|
+
.pisell-lowcode-picker-time-panel-column::-webkit-scrollbar {
|
|
1198
|
+
width: 8px;
|
|
1199
|
+
background-color: transparent;
|
|
1200
|
+
}
|
|
1201
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1202
|
+
.pisell-lowcode-picker-time-panel-column::-webkit-scrollbar-thumb {
|
|
1203
|
+
background-color: #667085;
|
|
1204
|
+
border-radius: 4px;
|
|
1205
|
+
}
|
|
1206
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1207
|
+
.pisell-lowcode-picker-time-panel-column {
|
|
1208
|
+
scrollbar-width: thin;
|
|
1209
|
+
scrollbar-color: #667085 transparent;
|
|
1210
|
+
}
|
|
1211
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1212
|
+
.pisell-lowcode-picker-time-panel-column::after {
|
|
1213
|
+
display: block;
|
|
1214
|
+
height: 196px;
|
|
1215
|
+
content: '';
|
|
1216
|
+
}
|
|
1217
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1218
|
+
.pisell-lowcode-picker-time-panel-column:not(:first-child) {
|
|
1219
|
+
border-left: 1px solid rgba(22, 44, 88, 0.09);
|
|
1220
|
+
}
|
|
1221
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1222
|
+
.pisell-lowcode-picker-time-panel-column-active {
|
|
1223
|
+
background: #f9f5ff;
|
|
1224
|
+
}
|
|
1225
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1226
|
+
.pisell-lowcode-picker-time-panel-column:hover {
|
|
1227
|
+
overflow-y: auto;
|
|
1228
|
+
}
|
|
1229
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1230
|
+
.pisell-lowcode-picker-time-panel-column
|
|
1231
|
+
> li {
|
|
1232
|
+
margin: 0;
|
|
1233
|
+
padding: 0;
|
|
1234
|
+
}
|
|
1235
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1236
|
+
.pisell-lowcode-picker-time-panel-column
|
|
1237
|
+
> li.pisell-lowcode-picker-time-panel-cell {
|
|
1238
|
+
margin-left: 4px;
|
|
1239
|
+
margin-right: 4px;
|
|
1240
|
+
}
|
|
1241
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1242
|
+
.pisell-lowcode-picker-time-panel-column
|
|
1243
|
+
> li.pisell-lowcode-picker-time-panel-cell
|
|
1244
|
+
.pisell-lowcode-picker-time-panel-cell-inner {
|
|
1245
|
+
display: block;
|
|
1246
|
+
width: 48px;
|
|
1247
|
+
height: 28px;
|
|
1248
|
+
margin: 0;
|
|
1249
|
+
padding-top: 0;
|
|
1250
|
+
padding-bottom: 0;
|
|
1251
|
+
padding-right: 0;
|
|
1252
|
+
padding-left: 14px;
|
|
1253
|
+
color: #101828;
|
|
1254
|
+
line-height: 28px;
|
|
1255
|
+
border-radius: 6px;
|
|
1256
|
+
cursor: pointer;
|
|
1257
|
+
transition: background 0.2s;
|
|
1258
|
+
}
|
|
1259
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1260
|
+
.pisell-lowcode-picker-time-panel-column
|
|
1261
|
+
> li.pisell-lowcode-picker-time-panel-cell
|
|
1262
|
+
.pisell-lowcode-picker-time-panel-cell-inner:hover {
|
|
1263
|
+
background: #f2f4f7;
|
|
1264
|
+
}
|
|
1265
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1266
|
+
.pisell-lowcode-picker-time-panel-column
|
|
1267
|
+
> li.pisell-lowcode-picker-time-panel-cell-selected
|
|
1268
|
+
.pisell-lowcode-picker-time-panel-cell-inner {
|
|
1269
|
+
background: #f9f5ff;
|
|
1270
|
+
}
|
|
1271
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1272
|
+
.pisell-lowcode-picker-time-panel-column
|
|
1273
|
+
> li.pisell-lowcode-picker-time-panel-cell-disabled
|
|
1274
|
+
.pisell-lowcode-picker-time-panel-cell-inner {
|
|
1275
|
+
color: #98a2b3;
|
|
1276
|
+
background: transparent;
|
|
1277
|
+
cursor: not-allowed;
|
|
1278
|
+
}
|
|
1279
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1280
|
+
.pisell-lowcode-picker-datetime-panel
|
|
1281
|
+
.pisell-lowcode-picker-time-panel-column:after {
|
|
1282
|
+
height: 204px;
|
|
1283
|
+
}
|
|
1284
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-picker-custom-dropdown-hidden {
|
|
1285
|
+
display: none;
|
|
1286
|
+
}
|
|
1287
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-picker-custom-dropdown-placement-bottomLeft
|
|
1288
|
+
.pisell-lowcode-picker-range-arrow {
|
|
1289
|
+
top: 0;
|
|
1290
|
+
display: block;
|
|
1291
|
+
transform: translateY(-100%);
|
|
1292
|
+
}
|
|
1293
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-picker-custom-dropdown-placement-topLeft
|
|
1294
|
+
.pisell-lowcode-picker-range-arrow {
|
|
1295
|
+
bottom: 0;
|
|
1296
|
+
display: block;
|
|
1297
|
+
transform: translateY(100%) rotate(180deg);
|
|
1298
|
+
}
|
|
1299
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-enter.pisell-lowcode-slide-up-enter-active.pisell-lowcode-picker-custom-dropdown-placement-topLeft,
|
|
1300
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-enter.pisell-lowcode-slide-up-enter-active.pisell-lowcode-picker-custom-dropdown-placement-topRight,
|
|
1301
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-appear.pisell-lowcode-slide-up-appear-active.pisell-lowcode-picker-custom-dropdown-placement-topLeft,
|
|
1302
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-appear.pisell-lowcode-slide-up-appear-active.pisell-lowcode-picker-custom-dropdown-placement-topRight {
|
|
1303
|
+
animation-name: css-1h9jgke-antSlideDownIn;
|
|
1304
|
+
}
|
|
1305
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-enter.pisell-lowcode-slide-up-enter-active.pisell-lowcode-picker-custom-dropdown-placement-bottomLeft,
|
|
1306
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-enter.pisell-lowcode-slide-up-enter-active.pisell-lowcode-picker-custom-dropdown-placement-bottomRight,
|
|
1307
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-appear.pisell-lowcode-slide-up-appear-active.pisell-lowcode-picker-custom-dropdown-placement-bottomLeft,
|
|
1308
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-appear.pisell-lowcode-slide-up-appear-active.pisell-lowcode-picker-custom-dropdown-placement-bottomRight {
|
|
1309
|
+
animation-name: css-1h9jgke-antSlideUpIn;
|
|
1310
|
+
}
|
|
1311
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-leave.pisell-lowcode-slide-up-leave-active.pisell-lowcode-picker-custom-dropdown-placement-topLeft,
|
|
1312
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-leave.pisell-lowcode-slide-up-leave-active.pisell-lowcode-picker-custom-dropdown-placement-topRight {
|
|
1313
|
+
animation-name: css-1h9jgke-antSlideDownOut;
|
|
1314
|
+
}
|
|
1315
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-leave.pisell-lowcode-slide-up-leave-active.pisell-lowcode-picker-custom-dropdown-placement-bottomLeft,
|
|
1316
|
+
.pisell-lowcode-picker-custom-dropdown.pisell-lowcode-slide-up-leave.pisell-lowcode-slide-up-leave-active.pisell-lowcode-picker-custom-dropdown-placement-bottomRight {
|
|
1317
|
+
animation-name: css-1h9jgke-antSlideUpOut;
|
|
1318
|
+
}
|
|
1319
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1320
|
+
.pisell-lowcode-picker-panel
|
|
1321
|
+
> .pisell-lowcode-picker-time-panel {
|
|
1322
|
+
padding-top: 4px;
|
|
1323
|
+
}
|
|
1324
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-ranges {
|
|
1325
|
+
margin-bottom: 0;
|
|
1326
|
+
padding: 4px 12px;
|
|
1327
|
+
overflow: hidden;
|
|
1328
|
+
line-height: 34px;
|
|
1329
|
+
text-align: start;
|
|
1330
|
+
list-style: none;
|
|
1331
|
+
display: flex;
|
|
1332
|
+
justify-content: space-between;
|
|
1333
|
+
display: none;
|
|
1334
|
+
}
|
|
1335
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-ranges > li {
|
|
1336
|
+
display: inline-block;
|
|
1337
|
+
}
|
|
1338
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1339
|
+
.pisell-lowcode-picker-ranges
|
|
1340
|
+
.pisell-lowcode-picker-preset
|
|
1341
|
+
> .pisell-lowcode-tag-blue {
|
|
1342
|
+
color: #7f56d9;
|
|
1343
|
+
background: #f9f5ff;
|
|
1344
|
+
border-color: #e9d7fe;
|
|
1345
|
+
cursor: pointer;
|
|
1346
|
+
}
|
|
1347
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1348
|
+
.pisell-lowcode-picker-ranges
|
|
1349
|
+
.pisell-lowcode-picker-ok {
|
|
1350
|
+
margin-left: auto;
|
|
1351
|
+
}
|
|
1352
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-range-wrapper {
|
|
1353
|
+
display: flex;
|
|
1354
|
+
position: relative;
|
|
1355
|
+
}
|
|
1356
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-range-arrow {
|
|
1357
|
+
position: absolute;
|
|
1358
|
+
z-index: 1;
|
|
1359
|
+
display: none;
|
|
1360
|
+
margin-left: 16.5px;
|
|
1361
|
+
transition: left 0.3s ease-out;
|
|
1362
|
+
pointer-events: none;
|
|
1363
|
+
width: 16px;
|
|
1364
|
+
height: 16px;
|
|
1365
|
+
overflow: hidden;
|
|
1366
|
+
}
|
|
1367
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1368
|
+
.pisell-lowcode-picker-range-arrow::before {
|
|
1369
|
+
position: absolute;
|
|
1370
|
+
bottom: 0;
|
|
1371
|
+
left: 0;
|
|
1372
|
+
width: 16px;
|
|
1373
|
+
height: 8px;
|
|
1374
|
+
background: #ffffff;
|
|
1375
|
+
clip-path: polygon(
|
|
1376
|
+
2.485281374238571px 100%,
|
|
1377
|
+
50% 2.485281374238571px,
|
|
1378
|
+
13.514718625761429px 100%,
|
|
1379
|
+
2.485281374238571px 100%
|
|
1380
|
+
);
|
|
1381
|
+
clip-path: path(
|
|
1382
|
+
'M 0 8 A 6 6 0 0 0 4.242640687119285 6.242640687119285 L 6.585786437626905 3.899494936611666 A 2 2 0 0 1 9.414213562373096 3.899494936611666 L 11.757359312880716 6.242640687119285 A 6 6 0 0 0 16 8 Z'
|
|
1383
|
+
);
|
|
1384
|
+
content: '';
|
|
1385
|
+
}
|
|
1386
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1387
|
+
.pisell-lowcode-picker-range-arrow::after {
|
|
1388
|
+
content: '';
|
|
1389
|
+
position: absolute;
|
|
1390
|
+
width: 7.7989898732233325px;
|
|
1391
|
+
height: 7.7989898732233325px;
|
|
1392
|
+
bottom: 0;
|
|
1393
|
+
left: 0;
|
|
1394
|
+
right: 0;
|
|
1395
|
+
margin: auto;
|
|
1396
|
+
border-radius: 0 0 2px 0;
|
|
1397
|
+
transform: translateY(50%) rotate(-135deg);
|
|
1398
|
+
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
|
|
1399
|
+
z-index: 0;
|
|
1400
|
+
background: transparent;
|
|
1401
|
+
}
|
|
1402
|
+
.pisell-lowcode-picker-custom-dropdown .pisell-lowcode-picker-panel-container {
|
|
1403
|
+
overflow: hidden;
|
|
1404
|
+
vertical-align: top;
|
|
1405
|
+
background: #ffffff;
|
|
1406
|
+
border-radius: 0;
|
|
1407
|
+
box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
|
|
1408
|
+
0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
|
|
1409
|
+
transition: margin 0.3s;
|
|
1410
|
+
}
|
|
1411
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1412
|
+
.pisell-lowcode-picker-panel-container
|
|
1413
|
+
.pisell-lowcode-picker-panel-layout {
|
|
1414
|
+
display: flex;
|
|
1415
|
+
flex-wrap: nowrap;
|
|
1416
|
+
align-items: stretch;
|
|
1417
|
+
}
|
|
1418
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1419
|
+
.pisell-lowcode-picker-panel-container
|
|
1420
|
+
.pisell-lowcode-picker-presets {
|
|
1421
|
+
display: flex;
|
|
1422
|
+
flex-direction: column;
|
|
1423
|
+
min-width: 120px;
|
|
1424
|
+
max-width: 200px;
|
|
1425
|
+
}
|
|
1426
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1427
|
+
.pisell-lowcode-picker-panel-container
|
|
1428
|
+
.pisell-lowcode-picker-presets
|
|
1429
|
+
ul {
|
|
1430
|
+
height: 0;
|
|
1431
|
+
flex: auto;
|
|
1432
|
+
list-style: none;
|
|
1433
|
+
overflow: auto;
|
|
1434
|
+
margin: 0;
|
|
1435
|
+
padding: 8px;
|
|
1436
|
+
border-right: 1px solid rgba(22, 44, 88, 0.09);
|
|
1437
|
+
}
|
|
1438
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1439
|
+
.pisell-lowcode-picker-panel-container
|
|
1440
|
+
.pisell-lowcode-picker-presets
|
|
1441
|
+
ul
|
|
1442
|
+
li {
|
|
1443
|
+
overflow: hidden;
|
|
1444
|
+
white-space: nowrap;
|
|
1445
|
+
text-overflow: ellipsis;
|
|
1446
|
+
border-radius: 6px;
|
|
1447
|
+
padding-left: 8px;
|
|
1448
|
+
padding-right: 8px;
|
|
1449
|
+
padding-top: 1px;
|
|
1450
|
+
padding-bottom: 1px;
|
|
1451
|
+
cursor: pointer;
|
|
1452
|
+
transition: all 0.3s;
|
|
1453
|
+
}
|
|
1454
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1455
|
+
.pisell-lowcode-picker-panel-container
|
|
1456
|
+
.pisell-lowcode-picker-presets
|
|
1457
|
+
ul
|
|
1458
|
+
li
|
|
1459
|
+
+ li {
|
|
1460
|
+
margin-top: 8px;
|
|
1461
|
+
}
|
|
1462
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1463
|
+
.pisell-lowcode-picker-panel-container
|
|
1464
|
+
.pisell-lowcode-picker-presets
|
|
1465
|
+
ul
|
|
1466
|
+
li:hover {
|
|
1467
|
+
background: #f2f4f7;
|
|
1468
|
+
}
|
|
1469
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1470
|
+
.pisell-lowcode-picker-panel-container
|
|
1471
|
+
.pisell-lowcode-picker-panels {
|
|
1472
|
+
display: inline-flex;
|
|
1473
|
+
flex-wrap: nowrap;
|
|
1474
|
+
direction: ltr;
|
|
1475
|
+
}
|
|
1476
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1477
|
+
.pisell-lowcode-picker-panel-container
|
|
1478
|
+
.pisell-lowcode-picker-panels
|
|
1479
|
+
.pisell-lowcode-picker-panel {
|
|
1480
|
+
border-width: 0 0 1px;
|
|
1481
|
+
}
|
|
1482
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1483
|
+
.pisell-lowcode-picker-panel-container
|
|
1484
|
+
.pisell-lowcode-picker-panels:last-child
|
|
1485
|
+
.pisell-lowcode-picker-panel {
|
|
1486
|
+
border-width: 0;
|
|
1487
|
+
}
|
|
1488
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1489
|
+
.pisell-lowcode-picker-panel-container
|
|
1490
|
+
.pisell-lowcode-picker-panel {
|
|
1491
|
+
vertical-align: top;
|
|
1492
|
+
background: transparent;
|
|
1493
|
+
border-radius: 0;
|
|
1494
|
+
border-width: 0;
|
|
1495
|
+
}
|
|
1496
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1497
|
+
.pisell-lowcode-picker-panel-container
|
|
1498
|
+
.pisell-lowcode-picker-panel
|
|
1499
|
+
.pisell-lowcode-picker-content,
|
|
1500
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1501
|
+
.pisell-lowcode-picker-panel-container
|
|
1502
|
+
.pisell-lowcode-picker-panel
|
|
1503
|
+
table {
|
|
1504
|
+
text-align: center;
|
|
1505
|
+
}
|
|
1506
|
+
.pisell-lowcode-picker-custom-dropdown
|
|
1507
|
+
.pisell-lowcode-picker-panel-container
|
|
1508
|
+
.pisell-lowcode-picker-panel-focused {
|
|
1509
|
+
border-color: #d0d5dd;
|
|
1510
|
+
}
|
|
1511
|
+
.pisell-lowcode-picker-custom-dropdown-range {
|
|
1512
|
+
padding: 10.666666666666666px 0;
|
|
1513
|
+
}
|
|
1514
|
+
.pisell-lowcode-picker-custom-dropdown-range-hidden {
|
|
1515
|
+
display: none;
|
|
1516
|
+
}
|
|
1517
|
+
.pisell-lowcode-picker-rtl {
|
|
1518
|
+
direction: rtl;
|
|
1519
|
+
}
|
|
1520
|
+
.pisell-lowcode-picker-rtl .pisell-lowcode-picker-separator {
|
|
1521
|
+
transform: rotate(180deg);
|
|
1522
|
+
}
|
|
1523
|
+
.pisell-lowcode-picker-rtl .pisell-lowcode-picker-footer-extra {
|
|
1524
|
+
direction: rtl;
|
|
1525
|
+
}
|
|
1526
|
+
//.pisell-lowcode-slide-up-enter,
|
|
1527
|
+
//.pisell-lowcode-slide-up-appear {
|
|
1528
|
+
// animation-duration: 0.2s;
|
|
1529
|
+
// animation-fill-mode: both;
|
|
1530
|
+
// animation-play-state: paused;
|
|
1531
|
+
//}
|
|
1532
|
+
//.pisell-lowcode-slide-up-leave {
|
|
1533
|
+
// animation-duration: 0.2s;
|
|
1534
|
+
// animation-fill-mode: both;
|
|
1535
|
+
// animation-play-state: paused;
|
|
1536
|
+
//}
|
|
1537
|
+
//.pisell-lowcode-slide-up-enter.pisell-lowcode-slide-up-enter-active,
|
|
1538
|
+
//.pisell-lowcode-slide-up-appear.pisell-lowcode-slide-up-appear-active {
|
|
1539
|
+
// animation-name: css-1h9jgke-antSlideUpIn;
|
|
1540
|
+
// animation-play-state: running;
|
|
1541
|
+
//}
|
|
1542
|
+
//.pisell-lowcode-slide-up-leave.pisell-lowcode-slide-up-leave-active {
|
|
1543
|
+
// animation-name: css-1h9jgke-antSlideUpOut;
|
|
1544
|
+
// animation-play-state: running;
|
|
1545
|
+
// pointer-events: none;
|
|
1546
|
+
//}
|
|
1547
|
+
//.pisell-lowcode-slide-up-enter,
|
|
1548
|
+
//.pisell-lowcode-slide-up-appear {
|
|
1549
|
+
// transform: scale(0);
|
|
1550
|
+
// transform-origin: 0% 0%;
|
|
1551
|
+
// opacity: 0;
|
|
1552
|
+
// animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
1553
|
+
//}
|
|
1554
|
+
//.pisell-lowcode-slide-up-enter-prepare,
|
|
1555
|
+
//.pisell-lowcode-slide-up-appear-prepare {
|
|
1556
|
+
// transform: scale(1);
|
|
1557
|
+
//}
|
|
1558
|
+
//.pisell-lowcode-slide-up-leave {
|
|
1559
|
+
// animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
1560
|
+
//}
|
|
1561
|
+
.pisell-lowcode-slide-down-enter,
|
|
1562
|
+
.pisell-lowcode-slide-down-appear {
|
|
1563
|
+
animation-duration: 0.2s;
|
|
1564
|
+
animation-fill-mode: both;
|
|
1565
|
+
animation-play-state: paused;
|
|
1566
|
+
}
|
|
1567
|
+
.pisell-lowcode-slide-down-leave {
|
|
1568
|
+
animation-duration: 0.2s;
|
|
1569
|
+
animation-fill-mode: both;
|
|
1570
|
+
animation-play-state: paused;
|
|
1571
|
+
}
|
|
1572
|
+
.pisell-lowcode-slide-down-enter.pisell-lowcode-slide-down-enter-active,
|
|
1573
|
+
.pisell-lowcode-slide-down-appear.pisell-lowcode-slide-down-appear-active {
|
|
1574
|
+
animation-name: css-1h9jgke-antSlideDownIn;
|
|
1575
|
+
animation-play-state: running;
|
|
1576
|
+
}
|
|
1577
|
+
.pisell-lowcode-slide-down-leave.pisell-lowcode-slide-down-leave-active {
|
|
1578
|
+
animation-name: css-1h9jgke-antSlideDownOut;
|
|
1579
|
+
animation-play-state: running;
|
|
1580
|
+
pointer-events: none;
|
|
1581
|
+
}
|
|
1582
|
+
.pisell-lowcode-slide-down-enter,
|
|
1583
|
+
.pisell-lowcode-slide-down-appear {
|
|
1584
|
+
transform: scale(0);
|
|
1585
|
+
transform-origin: 0% 0%;
|
|
1586
|
+
opacity: 0;
|
|
1587
|
+
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
1588
|
+
}
|
|
1589
|
+
.pisell-lowcode-slide-down-enter-prepare,
|
|
1590
|
+
.pisell-lowcode-slide-down-appear-prepare {
|
|
1591
|
+
transform: scale(1);
|
|
1592
|
+
}
|
|
1593
|
+
.pisell-lowcode-slide-down-leave {
|
|
1594
|
+
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
1595
|
+
}
|
|
1596
|
+
.pisell-lowcode-move-up-enter,
|
|
1597
|
+
.pisell-lowcode-move-up-appear {
|
|
1598
|
+
animation-duration: 0.2s;
|
|
1599
|
+
animation-fill-mode: both;
|
|
1600
|
+
animation-play-state: paused;
|
|
1601
|
+
}
|
|
1602
|
+
.pisell-lowcode-move-up-leave {
|
|
1603
|
+
animation-duration: 0.2s;
|
|
1604
|
+
animation-fill-mode: both;
|
|
1605
|
+
animation-play-state: paused;
|
|
1606
|
+
}
|
|
1607
|
+
.pisell-lowcode-move-up-enter.pisell-lowcode-move-up-enter-active,
|
|
1608
|
+
.pisell-lowcode-move-up-appear.pisell-lowcode-move-up-appear-active {
|
|
1609
|
+
animation-name: css-1h9jgke-antMoveUpIn;
|
|
1610
|
+
animation-play-state: running;
|
|
1611
|
+
}
|
|
1612
|
+
.pisell-lowcode-move-up-leave.pisell-lowcode-move-up-leave-active {
|
|
1613
|
+
animation-name: css-1h9jgke-antMoveUpOut;
|
|
1614
|
+
animation-play-state: running;
|
|
1615
|
+
pointer-events: none;
|
|
1616
|
+
}
|
|
1617
|
+
.pisell-lowcode-move-up-enter,
|
|
1618
|
+
.pisell-lowcode-move-up-appear {
|
|
1619
|
+
opacity: 0;
|
|
1620
|
+
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
1621
|
+
}
|
|
1622
|
+
.pisell-lowcode-move-up-leave {
|
|
1623
|
+
animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
1624
|
+
}
|
|
1625
|
+
.pisell-lowcode-move-down-enter,
|
|
1626
|
+
.pisell-lowcode-move-down-appear {
|
|
1627
|
+
animation-duration: 0.2s;
|
|
1628
|
+
animation-fill-mode: both;
|
|
1629
|
+
animation-play-state: paused;
|
|
1630
|
+
}
|
|
1631
|
+
.pisell-lowcode-move-down-leave {
|
|
1632
|
+
animation-duration: 0.2s;
|
|
1633
|
+
animation-fill-mode: both;
|
|
1634
|
+
animation-play-state: paused;
|
|
1635
|
+
}
|
|
1636
|
+
.pisell-lowcode-move-down-enter.pisell-lowcode-move-down-enter-active,
|
|
1637
|
+
.pisell-lowcode-move-down-appear.pisell-lowcode-move-down-appear-active {
|
|
1638
|
+
animation-name: css-1h9jgke-antMoveDownIn;
|
|
1639
|
+
animation-play-state: running;
|
|
1640
|
+
}
|
|
1641
|
+
.pisell-lowcode-move-down-leave.pisell-lowcode-move-down-leave-active {
|
|
1642
|
+
animation-name: css-1h9jgke-antMoveDownOut;
|
|
1643
|
+
animation-play-state: running;
|
|
1644
|
+
pointer-events: none;
|
|
1645
|
+
}
|
|
1646
|
+
.pisell-lowcode-move-down-enter,
|
|
1647
|
+
.pisell-lowcode-move-down-appear {
|
|
1648
|
+
opacity: 0;
|
|
1649
|
+
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
1650
|
+
}
|
|
1651
|
+
.pisell-lowcode-move-down-leave {
|
|
1652
|
+
animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
1653
|
+
}
|
|
1654
|
+
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1655
|
+
[disabled]
|
|
1656
|
+
).pisell-lowcode-picker-status-error {
|
|
1657
|
+
background-color: #ffffff;
|
|
1658
|
+
border-color: #d92d20;
|
|
1659
|
+
}
|
|
1660
|
+
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1661
|
+
[disabled]
|
|
1662
|
+
).pisell-lowcode-picker-status-error:hover {
|
|
1663
|
+
border-color: #b42318;
|
|
1664
|
+
}
|
|
1665
|
+
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1666
|
+
[disabled]
|
|
1667
|
+
).pisell-lowcode-picker-status-error.pisell-lowcode-picker-focused,
|
|
1668
|
+
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1669
|
+
[disabled]
|
|
1670
|
+
).pisell-lowcode-picker-status-error:focus {
|
|
1671
|
+
border-color: #d92d20;
|
|
1672
|
+
box-shadow: 0 0 0 2px rgba(238, 55, 38, 0.06);
|
|
1673
|
+
outline: 0;
|
|
1674
|
+
}
|
|
1675
|
+
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1676
|
+
[disabled]
|
|
1677
|
+
).pisell-lowcode-picker-status-error
|
|
1678
|
+
.pisell-lowcode-picker-active-bar {
|
|
1679
|
+
background: #d92d20;
|
|
1680
|
+
}
|
|
1681
|
+
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1682
|
+
[disabled]
|
|
1683
|
+
).pisell-lowcode-picker-status-warning {
|
|
1684
|
+
background-color: #ffffff;
|
|
1685
|
+
border-color: #dc6803;
|
|
1686
|
+
}
|
|
1687
|
+
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1688
|
+
[disabled]
|
|
1689
|
+
).pisell-lowcode-picker-status-warning:hover {
|
|
1690
|
+
border-color: #b54708;
|
|
1691
|
+
}
|
|
1692
|
+
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1693
|
+
[disabled]
|
|
1694
|
+
).pisell-lowcode-picker-status-warning.pisell-lowcode-picker-focused,
|
|
1695
|
+
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1696
|
+
[disabled]
|
|
1697
|
+
).pisell-lowcode-picker-status-warning:focus {
|
|
1698
|
+
border-color: #dc6803;
|
|
1699
|
+
box-shadow: 0 0 0 2px rgba(255, 192, 5, 0.08);
|
|
1700
|
+
outline: 0;
|
|
1701
|
+
}
|
|
1702
|
+
.pisell-lowcode-picker:not(.pisell-lowcode-picker-disabled):not(
|
|
1703
|
+
[disabled]
|
|
1704
|
+
).pisell-lowcode-picker-status-warning
|
|
1705
|
+
.pisell-lowcode-picker-active-bar {
|
|
1706
|
+
background: #dc6803;
|
|
1707
|
+
}
|
|
1708
|
+
.pisell-lowcode-picker-compact-item:not(
|
|
1709
|
+
.pisell-lowcode-picker-compact-last-item
|
|
1710
|
+
) {
|
|
1711
|
+
margin-right: -1px;
|
|
1712
|
+
}
|
|
1713
|
+
.pisell-lowcode-picker-compact-item:hover,
|
|
1714
|
+
.pisell-lowcode-picker-compact-item:active {
|
|
1715
|
+
z-index: 2;
|
|
1716
|
+
}
|
|
1717
|
+
.pisell-lowcode-picker-compact-item.pisell-lowcode-picker-focused {
|
|
1718
|
+
z-index: 2;
|
|
1719
|
+
}
|
|
1720
|
+
.pisell-lowcode-picker-compact-item[disabled] {
|
|
1721
|
+
z-index: 0;
|
|
1722
|
+
}
|
|
1723
|
+
.pisell-lowcode-picker-compact-item:not(
|
|
1724
|
+
.pisell-lowcode-picker-compact-first-item
|
|
1725
|
+
):not(.pisell-lowcode-picker-compact-last-item) {
|
|
1726
|
+
border-radius: 0;
|
|
1727
|
+
}
|
|
1728
|
+
.pisell-lowcode-picker-compact-item:not(
|
|
1729
|
+
.pisell-lowcode-picker-compact-last-item
|
|
1730
|
+
).pisell-lowcode-picker-compact-first-item,
|
|
1731
|
+
.pisell-lowcode-picker-compact-item:not(
|
|
1732
|
+
.pisell-lowcode-picker-compact-last-item
|
|
1733
|
+
).pisell-lowcode-picker-compact-first-item.pisell-lowcode-picker-sm,
|
|
1734
|
+
.pisell-lowcode-picker-compact-item:not(
|
|
1735
|
+
.pisell-lowcode-picker-compact-last-item
|
|
1736
|
+
).pisell-lowcode-picker-compact-first-item.pisell-lowcode-picker-lg {
|
|
1737
|
+
border-top-right-radius: 0;
|
|
1738
|
+
border-bottom-right-radius: 0;
|
|
1739
|
+
}
|
|
1740
|
+
.pisell-lowcode-picker-compact-item:not(
|
|
1741
|
+
.pisell-lowcode-picker-compact-first-item
|
|
1742
|
+
).pisell-lowcode-picker-compact-last-item,
|
|
1743
|
+
.pisell-lowcode-picker-compact-item:not(
|
|
1744
|
+
.pisell-lowcode-picker-compact-first-item
|
|
1745
|
+
).pisell-lowcode-picker-compact-last-item.pisell-lowcode-picker-sm,
|
|
1746
|
+
.pisell-lowcode-picker-compact-item:not(
|
|
1747
|
+
.pisell-lowcode-picker-compact-first-item
|
|
1748
|
+
).pisell-lowcode-picker-compact-last-item.pisell-lowcode-picker-lg {
|
|
1749
|
+
border-top-left-radius: 0;
|
|
1750
|
+
border-bottom-left-radius: 0;
|
|
1751
|
+
}
|
|
1752
|
+
|
|
1753
|
+
.pisell-lowcode-date-picker-custom-wrap {
|
|
1754
|
+
position: relative;
|
|
1755
|
+
.pisell-lowcode-picker-body {
|
|
1756
|
+
margin-top: 64px;
|
|
1757
|
+
padding: 0;
|
|
1758
|
+
}
|
|
1759
|
+
.pisell-lowcode-picker-date-panel {
|
|
1760
|
+
box-sizing: border-box;
|
|
1761
|
+
padding: 20px 24px;
|
|
1762
|
+
}
|
|
1763
|
+
.pisell-lowcode-date-picker-custom-action {
|
|
1764
|
+
position: absolute;
|
|
1765
|
+
top: 72px;
|
|
1766
|
+
left: 24px;
|
|
1767
|
+
width: calc(100% - 48px);
|
|
1768
|
+
display: flex;
|
|
1769
|
+
gap: 12px;
|
|
1770
|
+
align-items: start;
|
|
1771
|
+
.date-picker-error {
|
|
1772
|
+
color: #d4163a;
|
|
1773
|
+
}
|
|
1774
|
+
}
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
.pisell-lowcode-date-picker-custom-wrap-show-time {
|
|
1778
|
+
.pisell-lowcode-picker-body {
|
|
1779
|
+
margin-top: 0;
|
|
1780
|
+
padding: 0;
|
|
1781
|
+
}
|
|
1782
|
+
.pisell-lowcode-picker-date-panel {
|
|
1783
|
+
padding-bottom: 0;
|
|
1784
|
+
}
|
|
1785
|
+
.pisell-lowcode-picker-footer {
|
|
1786
|
+
border: none !important;
|
|
1787
|
+
.pisell-lowcode-picker-footer-extra {
|
|
1788
|
+
padding: 0 24px 20px;
|
|
1789
|
+
border: none !important;
|
|
1790
|
+
.date-picker-time-label {
|
|
1791
|
+
color: var(--Gray-700, #344054);
|
|
1792
|
+
font-size: 14px;
|
|
1793
|
+
font-weight: 600;
|
|
1794
|
+
line-height: 20px; /* 142.857% */
|
|
1795
|
+
margin-bottom: 8px;
|
|
1796
|
+
}
|
|
1797
|
+
.date-picker-input-time {
|
|
1798
|
+
border-radius: 8px;
|
|
1799
|
+
border: 1px solid var(--Gray-300, #D0D5DD);
|
|
1800
|
+
height: 48px;
|
|
1801
|
+
line-height: 48px;
|
|
1802
|
+
width: 100%;
|
|
1803
|
+
min-width: 320px;
|
|
1804
|
+
padding: 0 16px;
|
|
1805
|
+
}
|
|
1806
|
+
}
|
|
1807
|
+
}
|
|
1808
|
+
}
|
|
1809
|
+
.pisell-lowcode-date-picker-custom-popup-wrap {
|
|
1810
|
+
.pisell-lowcode-picker-footer {
|
|
1811
|
+
border: none !important;
|
|
1812
|
+
.pisell-lowcode-picker-ranges {
|
|
1813
|
+
display: none;
|
|
1814
|
+
}
|
|
1815
|
+
.pisell-lowcode-picker-footer-extra {
|
|
1816
|
+
border: none !important;
|
|
1817
|
+
}
|
|
1818
|
+
}
|
|
1819
|
+
.pisell-lowcode-picker-footer .pisell-lowcode-picker-today-btn {
|
|
1820
|
+
display: none;
|
|
1821
|
+
}
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
.pisell-lowcode-custom-footer {
|
|
1825
|
+
border-top: 1px solid var(--Gray-200, #eaecf0);
|
|
1826
|
+
display: flex;
|
|
1827
|
+
padding: 16px;
|
|
1828
|
+
justify-content: space-between;
|
|
1829
|
+
align-items: center;
|
|
1830
|
+
align-self: stretch;
|
|
1831
|
+
.pisell-lowcode-btn {
|
|
1832
|
+
}
|
|
1833
|
+
.pisell-lowcode-custom-footer-today {
|
|
1834
|
+
color: var(--Blue-600, #1570ef);
|
|
1835
|
+
font-size: 16px;
|
|
1836
|
+
font-style: normal;
|
|
1837
|
+
font-weight: 600;
|
|
1838
|
+
line-height: 24px; /* 150% */
|
|
1839
|
+
cursor: pointer;
|
|
1840
|
+
}
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
.pisell-lowcode-date-picker-dropdown-mode {
|
|
1844
|
+
.pisell-lowcode-picker-date-panel {
|
|
1845
|
+
width: 424px;
|
|
1846
|
+
max-width: 100%;
|
|
1847
|
+
padding: 20px 24px;
|
|
1848
|
+
}
|
|
1849
|
+
.pisell-lowcode-picker-content {
|
|
1850
|
+
width: 100%;
|
|
1851
|
+
}
|
|
1852
|
+
.pisell-lowcode-picker-body {
|
|
1853
|
+
padding: 0;
|
|
1854
|
+
}
|
|
1855
|
+
.pisell-lowcode-picker-header {
|
|
1856
|
+
border: none;
|
|
1857
|
+
}
|
|
1858
|
+
.pisell-lowcode-picker-cell-inner {
|
|
1859
|
+
min-width: 40px;
|
|
1860
|
+
height: 40px;
|
|
1861
|
+
line-height: 40px;
|
|
1862
|
+
border-radius: 50%;
|
|
1863
|
+
}
|
|
1864
|
+
.pisell-lowcode-picker-cell-inner::before {
|
|
1865
|
+
border-radius: 50%;
|
|
1866
|
+
}
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
.date-picker-popup-wrap {
|
|
1870
|
+
//position: inherit;
|
|
1871
|
+
//inset: 0 !important;
|
|
1872
|
+
//opacity: 1;
|
|
1873
|
+
}
|
|
1874
|
+
.pisell-lowcode-date-picker-modal {
|
|
1875
|
+
.pisell-lowcode-modal-content {
|
|
1876
|
+
padding: 0;
|
|
1877
|
+
border-radius: 8px;
|
|
1878
|
+
overflow: hidden;
|
|
1879
|
+
}
|
|
1880
|
+
}
|