@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.
Files changed (2577) hide show
  1. package/README.md +2 -2
  2. package/antd/antd-css-compatible-5.12.8.min.js +364 -364
  3. package/antd/antd-css-compatible-5.17.2.min.js +345 -345
  4. package/es/components/DragSortList/index.d.ts +38 -38
  5. package/es/components/MultipleContainersSortList/index.d.ts +26 -26
  6. package/es/components/MultipleContainersSortList/index.less +5 -5
  7. package/es/components/Pagination/index.d.ts +14 -14
  8. package/es/components/Pagination/index.js +13 -13
  9. package/es/components/Pagination/index.less +214 -214
  10. package/es/components/PisellBasicGrid/PisellBasicGrid.d.ts +10 -0
  11. package/es/components/PisellBasicGrid/PisellBasicGrid.js +140 -0
  12. package/es/components/PisellBasicGrid/PisellBasicGrid.less +20 -0
  13. package/es/components/PisellBasicGrid/hooks/index.d.ts +1 -0
  14. package/es/components/PisellBasicGrid/hooks/index.js +1 -0
  15. package/es/components/PisellBasicGrid/hooks/useGridStyle.d.ts +37 -0
  16. package/es/components/PisellBasicGrid/hooks/useGridStyle.js +114 -0
  17. package/es/components/PisellBasicGrid/index.d.ts +6 -0
  18. package/es/components/PisellBasicGrid/index.js +6 -0
  19. package/es/components/PisellBasicGrid/types.d.ts +221 -0
  20. package/es/components/PisellBasicGrid/types.js +1 -0
  21. package/es/components/PisellBasicGrid/utils/index.d.ts +63 -0
  22. package/es/components/PisellBasicGrid/utils/index.js +126 -0
  23. package/es/components/PisellCards/PisellCards.d.ts +8 -0
  24. package/es/components/PisellCards/PisellCards.js +10 -0
  25. package/es/components/PisellCards/PisellCards.less +1 -0
  26. package/es/components/PisellCards/components/GraphicTextCard/GraphicTextCard.d.ts +9 -0
  27. package/es/components/PisellCards/components/GraphicTextCard/GraphicTextCard.js +172 -0
  28. package/es/components/PisellCards/components/GraphicTextCard/GraphicTextCard.less +320 -0
  29. package/es/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.d.ts +5 -0
  30. package/es/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.js +5 -0
  31. package/es/components/PisellCards/components/GraphicTextCard/components/GraphicArea.d.ts +24 -0
  32. package/es/components/PisellCards/components/GraphicTextCard/components/GraphicArea.js +103 -0
  33. package/es/components/PisellCards/components/GraphicTextCard/components/TextContent.d.ts +27 -0
  34. package/es/components/PisellCards/components/GraphicTextCard/components/TextContent.js +99 -0
  35. package/es/components/PisellCards/components/GraphicTextCard/components/index.d.ts +6 -0
  36. package/es/components/PisellCards/components/GraphicTextCard/components/index.js +6 -0
  37. package/es/components/PisellCards/components/GraphicTextCard/hooks/index.d.ts +5 -0
  38. package/es/components/PisellCards/components/GraphicTextCard/hooks/index.js +5 -0
  39. package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.d.ts +15 -0
  40. package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.js +46 -0
  41. package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.d.ts +18 -0
  42. package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.js +85 -0
  43. package/es/components/PisellCards/components/GraphicTextCard/index.d.ts +5 -0
  44. package/es/components/PisellCards/components/GraphicTextCard/index.js +4 -0
  45. package/es/components/PisellCards/components/GraphicTextCard/types.d.ts +290 -0
  46. package/es/components/PisellCards/components/GraphicTextCard/types.js +1 -0
  47. package/es/components/PisellCards/components/GraphicTextCard/utils/index.d.ts +19 -0
  48. package/es/components/PisellCards/components/GraphicTextCard/utils/index.js +78 -0
  49. package/es/components/PisellCards/components/MultilevelCard/MultilevelCard.d.ts +19 -0
  50. package/es/components/PisellCards/components/MultilevelCard/MultilevelCard.js +122 -0
  51. package/es/components/PisellCards/components/MultilevelCard/MultilevelCard.less +52 -0
  52. package/es/components/PisellCards/components/MultilevelCard/components/CardWrapper.d.ts +7 -0
  53. package/es/components/PisellCards/components/MultilevelCard/components/CardWrapper.js +54 -0
  54. package/es/components/PisellCards/components/MultilevelCard/components/PanelWrapper.d.ts +7 -0
  55. package/es/components/PisellCards/components/MultilevelCard/components/PanelWrapper.js +101 -0
  56. package/es/components/PisellCards/components/MultilevelCard/components/index.d.ts +2 -0
  57. package/es/components/PisellCards/components/MultilevelCard/components/index.js +2 -0
  58. package/es/components/PisellCards/components/MultilevelCard/hooks/index.d.ts +2 -0
  59. package/es/components/PisellCards/components/MultilevelCard/hooks/index.js +2 -0
  60. package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.d.ts +32 -0
  61. package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.js +42 -0
  62. package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.d.ts +28 -0
  63. package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.js +80 -0
  64. package/es/components/PisellCards/components/MultilevelCard/index.d.ts +2 -0
  65. package/es/components/PisellCards/components/MultilevelCard/index.js +1 -0
  66. package/es/components/PisellCards/components/MultilevelCard/types.d.ts +202 -0
  67. package/es/components/PisellCards/components/MultilevelCard/types.js +1 -0
  68. package/es/components/PisellCards/components/MultilevelCard/utils/index.d.ts +6 -0
  69. package/es/components/PisellCards/components/MultilevelCard/utils/index.js +14 -0
  70. package/es/components/PisellCards/components/PisellImageCard/PisellImageCard.d.ts +9 -0
  71. package/es/components/PisellCards/components/PisellImageCard/PisellImageCard.js +182 -0
  72. package/es/components/PisellCards/components/PisellImageCard/PisellImageCard.less +94 -0
  73. package/es/components/PisellCards/components/PisellImageCard/components/index.d.ts +0 -0
  74. package/es/components/PisellCards/components/PisellImageCard/components/index.js +1 -0
  75. package/es/components/PisellCards/components/PisellImageCard/hooks/index.d.ts +5 -0
  76. package/es/components/PisellCards/components/PisellImageCard/hooks/index.js +6 -0
  77. package/es/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.d.ts +12 -0
  78. package/es/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.js +86 -0
  79. package/es/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.d.ts +10 -0
  80. package/es/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.js +61 -0
  81. package/es/components/PisellCards/components/PisellImageCard/index.d.ts +5 -0
  82. package/es/components/PisellCards/components/PisellImageCard/index.js +4 -0
  83. package/es/components/PisellCards/components/PisellImageCard/types.d.ts +74 -0
  84. package/es/components/PisellCards/components/PisellImageCard/types.js +1 -0
  85. package/es/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.d.ts +7 -0
  86. package/es/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.js +15 -0
  87. package/es/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.d.ts +7 -0
  88. package/es/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.js +13 -0
  89. package/es/components/PisellCards/components/PisellImageCard/utils/index.d.ts +5 -0
  90. package/es/components/PisellCards/components/PisellImageCard/utils/index.js +6 -0
  91. package/es/components/PisellCards/components/TabCard/TabCard.d.ts +4 -0
  92. package/es/components/PisellCards/components/TabCard/TabCard.js +167 -0
  93. package/es/components/PisellCards/components/TabCard/TabCard.less +186 -0
  94. package/es/components/PisellCards/components/TabCard/index.d.ts +5 -0
  95. package/es/components/PisellCards/components/TabCard/index.js +4 -0
  96. package/es/components/PisellCards/components/TabCard/types.d.ts +70 -0
  97. package/es/components/PisellCards/components/TabCard/types.js +1 -0
  98. package/es/components/PisellCards/components/TextCard/TextCard.d.ts +8 -0
  99. package/es/components/PisellCards/components/TextCard/TextCard.js +203 -0
  100. package/es/components/PisellCards/components/TextCard/TextCard.less +193 -0
  101. package/es/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +26 -0
  102. package/es/components/PisellCards/components/TextCard/components/BadgeWrapper.js +70 -0
  103. package/es/components/PisellCards/components/TextCard/components/IconWrapper.d.ts +17 -0
  104. package/es/components/PisellCards/components/TextCard/components/IconWrapper.js +41 -0
  105. package/es/components/PisellCards/components/TextCard/components/TextContent.d.ts +21 -0
  106. package/es/components/PisellCards/components/TextCard/components/TextContent.js +89 -0
  107. package/es/components/PisellCards/components/TextCard/components/index.d.ts +6 -0
  108. package/es/components/PisellCards/components/TextCard/components/index.js +6 -0
  109. package/es/components/PisellCards/components/TextCard/hooks/index.d.ts +0 -0
  110. package/es/components/PisellCards/components/TextCard/hooks/index.js +1 -0
  111. package/es/components/PisellCards/components/TextCard/index.d.ts +5 -0
  112. package/es/components/PisellCards/components/TextCard/index.js +4 -0
  113. package/es/components/PisellCards/components/TextCard/types.d.ts +270 -0
  114. package/es/components/PisellCards/components/TextCard/types.js +1 -0
  115. package/es/components/PisellCards/components/TextCard/utils/index.d.ts +0 -0
  116. package/es/components/PisellCards/components/TextCard/utils/index.js +1 -0
  117. package/es/components/PisellCards/components/index.d.ts +10 -0
  118. package/es/components/PisellCards/components/index.js +7 -0
  119. package/es/components/PisellCards/hooks/index.d.ts +0 -0
  120. package/es/components/PisellCards/hooks/index.js +1 -0
  121. package/es/components/PisellCards/index.d.ts +15 -0
  122. package/es/components/PisellCards/index.js +21 -0
  123. package/es/components/PisellCards/types.d.ts +48 -0
  124. package/es/components/PisellCards/types.js +1 -0
  125. package/es/components/PisellCards/utils/index.d.ts +0 -0
  126. package/es/components/PisellCards/utils/index.js +1 -0
  127. package/es/components/PisellProcedure/PisellProcedure.d.ts +22 -0
  128. package/es/components/PisellProcedure/PisellProcedure.js +204 -0
  129. package/es/components/PisellProcedure/PisellProcedure.less +529 -0
  130. package/es/components/PisellProcedure/PisellProcedure.stories.d.ts +163 -0
  131. package/es/components/PisellProcedure/PisellProcedure.stories.js +1611 -0
  132. package/es/components/PisellProcedure/components/FooterActions.d.ts +24 -0
  133. package/es/components/PisellProcedure/components/FooterActions.js +100 -0
  134. package/es/components/PisellProcedure/components/ProcedureBody.d.ts +41 -0
  135. package/es/components/PisellProcedure/components/ProcedureBody.js +158 -0
  136. package/es/components/PisellProcedure/components/ProcedureContent.d.ts +23 -0
  137. package/es/components/PisellProcedure/components/ProcedureContent.js +30 -0
  138. package/es/components/PisellProcedure/components/ProcedureFooter.d.ts +38 -0
  139. package/es/components/PisellProcedure/components/ProcedureFooter.js +169 -0
  140. package/es/components/PisellProcedure/components/ProcedureHeader.d.ts +34 -0
  141. package/es/components/PisellProcedure/components/ProcedureHeader.js +286 -0
  142. package/es/components/PisellProcedure/components/ProcedureSidebar.d.ts +38 -0
  143. package/es/components/PisellProcedure/components/ProcedureSidebar.js +114 -0
  144. package/es/components/PisellProcedure/components/index.d.ts +12 -0
  145. package/es/components/PisellProcedure/components/index.js +12 -0
  146. package/es/components/PisellProcedure/hooks/index.d.ts +8 -0
  147. package/es/components/PisellProcedure/hooks/index.js +11 -0
  148. package/es/components/PisellProcedure/hooks/useElementSize.d.ts +38 -0
  149. package/es/components/PisellProcedure/hooks/useElementSize.js +113 -0
  150. package/es/components/PisellProcedure/hooks/useOverflowActions.d.ts +43 -0
  151. package/es/components/PisellProcedure/hooks/useOverflowActions.js +351 -0
  152. package/es/components/PisellProcedure/hooks/useResponsiveClass.d.ts +6 -0
  153. package/es/components/PisellProcedure/hooks/useResponsiveClass.js +47 -0
  154. package/es/components/PisellProcedure/hooks/useSidebarHeight.d.ts +16 -0
  155. package/es/components/PisellProcedure/hooks/useSidebarHeight.js +158 -0
  156. package/es/components/PisellProcedure/hooks/useStepManager.d.ts +50 -0
  157. package/es/components/PisellProcedure/hooks/useStepManager.js +122 -0
  158. package/es/components/PisellProcedure/index.d.ts +5 -0
  159. package/es/components/PisellProcedure/index.js +4 -0
  160. package/es/components/PisellProcedure/types.d.ts +363 -0
  161. package/es/components/PisellProcedure/types.js +1 -0
  162. package/es/components/PisellProcedure/utils/classNames.d.ts +33 -0
  163. package/es/components/PisellProcedure/utils/classNames.js +45 -0
  164. package/es/components/PisellProcedure/utils/extractText.d.ts +20 -0
  165. package/es/components/PisellProcedure/utils/extractText.js +40 -0
  166. package/es/components/PisellProcedure/utils/footerPosition.d.ts +41 -0
  167. package/es/components/PisellProcedure/utils/footerPosition.js +60 -0
  168. package/es/components/PisellProcedure/utils/index.d.ts +8 -0
  169. package/es/components/PisellProcedure/utils/index.js +18 -0
  170. package/es/components/PisellProcedure/utils/layoutRatio.d.ts +42 -0
  171. package/es/components/PisellProcedure/utils/layoutRatio.js +100 -0
  172. package/es/components/PisellProcedure/utils/slotHelper.d.ts +27 -0
  173. package/es/components/PisellProcedure/utils/slotHelper.js +50 -0
  174. package/es/components/PisellScrollView/PisellScrollView.d.ts +5 -0
  175. package/es/components/PisellScrollView/PisellScrollView.js +323 -0
  176. package/es/components/PisellScrollView/PisellScrollView.less +178 -0
  177. package/es/components/PisellScrollView/PisellScrollView.stories.d.ts +87 -0
  178. package/es/components/PisellScrollView/PisellScrollView.stories.js +772 -0
  179. package/es/components/PisellScrollView/components/Actions/index.d.ts +12 -0
  180. package/es/components/PisellScrollView/components/Actions/index.js +130 -0
  181. package/es/components/PisellScrollView/components/Actions/index.less +134 -0
  182. package/es/components/PisellScrollView/hooks/index.d.ts +3 -0
  183. package/es/components/PisellScrollView/hooks/index.js +3 -0
  184. package/es/components/PisellScrollView/hooks/useIntersection.d.ts +8 -0
  185. package/es/components/PisellScrollView/hooks/useIntersection.js +44 -0
  186. package/es/components/PisellScrollView/hooks/useScrollEvents.d.ts +20 -0
  187. package/es/components/PisellScrollView/hooks/useScrollEvents.js +96 -0
  188. package/es/components/PisellScrollView/hooks/useScrollState.d.ts +13 -0
  189. package/es/components/PisellScrollView/hooks/useScrollState.js +260 -0
  190. package/es/components/PisellScrollView/index.d.ts +3 -0
  191. package/es/components/PisellScrollView/index.js +2 -0
  192. package/es/components/PisellScrollView/types.d.ts +203 -0
  193. package/es/components/PisellScrollView/types.js +1 -0
  194. package/es/components/PisellScrollView/utils/index.d.ts +0 -0
  195. package/es/components/PisellScrollView/utils/index.js +1 -0
  196. package/es/components/PisellSteps/PisellSteps.d.ts +14 -0
  197. package/es/components/PisellSteps/PisellSteps.js +286 -0
  198. package/es/components/PisellSteps/PisellSteps.less +332 -0
  199. package/es/components/PisellSteps/PisellSteps.stories.d.ts +155 -0
  200. package/es/components/PisellSteps/PisellSteps.stories.js +851 -0
  201. package/es/components/PisellSteps/hooks/index.d.ts +4 -0
  202. package/es/components/PisellSteps/hooks/index.js +4 -0
  203. package/es/components/PisellSteps/hooks/useAnchor.d.ts +9 -0
  204. package/es/components/PisellSteps/hooks/useAnchor.js +60 -0
  205. package/es/components/PisellSteps/hooks/useResponsive.d.ts +8 -0
  206. package/es/components/PisellSteps/hooks/useResponsive.js +43 -0
  207. package/es/components/PisellSteps/hooks/useStepClick.d.ts +11 -0
  208. package/es/components/PisellSteps/hooks/useStepClick.js +35 -0
  209. package/es/components/PisellSteps/hooks/useStepsState.d.ts +9 -0
  210. package/es/components/PisellSteps/hooks/useStepsState.js +66 -0
  211. package/es/components/PisellSteps/index.d.ts +3 -0
  212. package/es/components/PisellSteps/index.js +2 -0
  213. package/es/components/PisellSteps/types.d.ts +257 -0
  214. package/es/components/PisellSteps/types.js +1 -0
  215. package/es/components/PisellSteps/utils/index.d.ts +54 -0
  216. package/es/components/PisellSteps/utils/index.js +118 -0
  217. package/es/components/PisellSuperTabs/PisellSuperTabs.d.ts +8 -0
  218. package/es/components/PisellSuperTabs/PisellSuperTabs.js +147 -0
  219. package/es/components/PisellSuperTabs/PisellSuperTabs.less +35 -0
  220. package/es/components/PisellSuperTabs/components/index.d.ts +0 -0
  221. package/es/components/PisellSuperTabs/components/index.js +1 -0
  222. package/es/components/PisellSuperTabs/hooks/index.d.ts +1 -0
  223. package/es/components/PisellSuperTabs/hooks/index.js +1 -0
  224. package/es/components/PisellSuperTabs/hooks/useTabsState.d.ts +7 -0
  225. package/es/components/PisellSuperTabs/hooks/useTabsState.js +50 -0
  226. package/es/components/PisellSuperTabs/index.d.ts +3 -0
  227. package/es/components/PisellSuperTabs/index.js +2 -0
  228. package/es/components/PisellSuperTabs/types.d.ts +210 -0
  229. package/es/components/PisellSuperTabs/types.js +1 -0
  230. package/es/components/PisellSuperTabs/utils/getRowKey.d.ts +8 -0
  231. package/es/components/PisellSuperTabs/utils/getRowKey.js +33 -0
  232. package/es/components/PisellSuperTabs/utils/index.d.ts +1 -0
  233. package/es/components/PisellSuperTabs/utils/index.js +1 -0
  234. package/es/components/PisellTabbar/PisellTabbar.d.ts +20 -0
  235. package/es/components/PisellTabbar/PisellTabbar.js +174 -0
  236. package/es/components/PisellTabbar/PisellTabbar.less +26 -0
  237. package/es/components/PisellTabbar/components/TabbarLevel.d.ts +8 -0
  238. package/es/components/PisellTabbar/components/TabbarLevel.js +275 -0
  239. package/es/components/PisellTabbar/components/index.d.ts +1 -0
  240. package/es/components/PisellTabbar/components/index.js +2 -0
  241. package/es/components/PisellTabbar/constants.d.ts +46 -0
  242. package/es/components/PisellTabbar/constants.js +84 -0
  243. package/es/components/PisellTabbar/hooks/index.d.ts +2 -0
  244. package/es/components/PisellTabbar/hooks/index.js +3 -0
  245. package/es/components/PisellTabbar/hooks/useActiveKey.d.ts +49 -0
  246. package/es/components/PisellTabbar/hooks/useActiveKey.js +104 -0
  247. package/es/components/PisellTabbar/hooks/useExpand.d.ts +41 -0
  248. package/es/components/PisellTabbar/hooks/useExpand.js +76 -0
  249. package/es/components/PisellTabbar/index.d.ts +9 -0
  250. package/es/components/PisellTabbar/index.js +9 -0
  251. package/es/components/PisellTabbar/locales.d.ts +15 -0
  252. package/es/components/PisellTabbar/locales.js +14 -0
  253. package/es/components/PisellTabbar/mock.d.ts +47 -0
  254. package/es/components/PisellTabbar/mock.js +1351 -0
  255. package/es/components/PisellTabbar/template/Template1/PisellTabbar.d.ts +20 -0
  256. package/es/components/PisellTabbar/template/Template1/PisellTabbar.js +427 -0
  257. package/es/components/PisellTabbar/template/Template1/constants.d.ts +10 -0
  258. package/es/components/PisellTabbar/template/Template1/constants.js +33 -0
  259. package/es/components/PisellTabbar/template/Template1/index.d.ts +6 -0
  260. package/es/components/PisellTabbar/template/Template1/index.js +7 -0
  261. package/es/components/PisellTabbar/template/Template1/utils/index.d.ts +35 -0
  262. package/es/components/PisellTabbar/template/Template1/utils/index.js +96 -0
  263. package/es/components/PisellTabbar/template/index.d.ts +0 -0
  264. package/es/components/PisellTabbar/template/index.js +0 -0
  265. package/es/components/PisellTabbar/types.d.ts +111 -0
  266. package/es/components/PisellTabbar/types.js +1 -0
  267. package/es/components/PisellTabbar/utils/index.d.ts +68 -0
  268. package/es/components/PisellTabbar/utils/index.js +94 -0
  269. package/es/components/PisellTabbar2/PisellTabbar.d.ts +23 -0
  270. package/es/components/PisellTabbar2/PisellTabbar.js +281 -0
  271. package/es/components/PisellTabbar2/PisellTabbar.less +26 -0
  272. package/es/components/PisellTabbar2/components/TabbarLevel.d.ts +8 -0
  273. package/es/components/PisellTabbar2/components/TabbarLevel.js +323 -0
  274. package/es/components/PisellTabbar2/components/index.d.ts +1 -0
  275. package/es/components/PisellTabbar2/components/index.js +2 -0
  276. package/es/components/PisellTabbar2/constants.d.ts +46 -0
  277. package/es/components/PisellTabbar2/constants.js +84 -0
  278. package/es/components/PisellTabbar2/hooks/index.d.ts +2 -0
  279. package/es/components/PisellTabbar2/hooks/index.js +3 -0
  280. package/es/components/PisellTabbar2/hooks/useActiveKey.d.ts +50 -0
  281. package/es/components/PisellTabbar2/hooks/useActiveKey.js +128 -0
  282. package/es/components/PisellTabbar2/hooks/useExpand.d.ts +41 -0
  283. package/es/components/PisellTabbar2/hooks/useExpand.js +76 -0
  284. package/es/components/PisellTabbar2/index.d.ts +6 -0
  285. package/es/components/PisellTabbar2/index.js +6 -0
  286. package/es/components/PisellTabbar2/locales.d.ts +15 -0
  287. package/es/components/PisellTabbar2/locales.js +14 -0
  288. package/es/components/PisellTabbar2/mock.d.ts +205 -0
  289. package/es/components/PisellTabbar2/mock.js +2480 -0
  290. package/es/components/PisellTabbar2/types.d.ts +117 -0
  291. package/es/components/PisellTabbar2/types.js +1 -0
  292. package/es/components/PisellTabbar2/utils/index.d.ts +35 -0
  293. package/es/components/PisellTabbar2/utils/index.js +113 -0
  294. package/es/components/PisellTabbar3/PisellTabbar.d.ts +20 -0
  295. package/es/components/PisellTabbar3/PisellTabbar.js +649 -0
  296. package/es/components/PisellTabbar3/PisellTabbar.less +26 -0
  297. package/es/components/PisellTabbar3/index.d.ts +6 -0
  298. package/es/components/PisellTabbar3/index.js +6 -0
  299. package/es/components/PisellTabbar3/locales.d.ts +15 -0
  300. package/es/components/PisellTabbar3/locales.js +14 -0
  301. package/es/components/PisellTabbar3/mock.d.ts +47 -0
  302. package/es/components/PisellTabbar3/mock.js +1351 -0
  303. package/es/components/PisellTabbar3/types.d.ts +111 -0
  304. package/es/components/PisellTabbar3/types.js +1 -0
  305. package/es/components/Template/PisellSteps.d.ts +0 -0
  306. package/es/components/Template/PisellSteps.js +1 -0
  307. package/es/components/Template/PisellSteps.less +1 -0
  308. package/es/components/Template/components/index.d.ts +0 -0
  309. package/es/components/Template/components/index.js +1 -0
  310. package/es/components/Template/hooks/index.d.ts +0 -0
  311. package/es/components/Template/hooks/index.js +1 -0
  312. package/es/components/Template/index.d.ts +0 -0
  313. package/es/components/Template/index.js +1 -0
  314. package/es/components/Template/types.d.ts +0 -0
  315. package/es/components/Template/types.js +0 -0
  316. package/es/components/Template/utils/index.d.ts +0 -0
  317. package/es/components/Template/utils/index.js +1 -0
  318. package/es/components/TimeResourceSelector/index.d.ts +21 -21
  319. package/es/components/TimeResourceSelector/index.less +59 -59
  320. package/es/components/appVersionControl/index.d.ts +5 -4
  321. package/es/components/appVersionControl/index.less +34 -34
  322. package/es/components/appVersionControl/types.d.ts +24 -24
  323. package/es/components/appVersionControl/utils.d.ts +13 -13
  324. package/es/components/appVersionControl/utils.js +9 -9
  325. package/es/components/auto-complete/index.d.ts +2 -2
  326. package/es/components/auto-complete-number/index.d.ts +10 -9
  327. package/es/components/badge/index.d.ts +8 -7
  328. package/es/components/badge/index.less +2 -2
  329. package/es/components/batch-editor/fields/Image/index.d.ts +7 -7
  330. package/es/components/batch-editor/fields/Image/index.less +5 -5
  331. package/es/components/batch-editor/fields/Price/index.d.ts +7 -7
  332. package/es/components/batch-editor/fields/Text/index.d.ts +6 -6
  333. package/es/components/batch-editor/fields/index.d.ts +7 -6
  334. package/es/components/batch-editor/index.d.ts +11 -10
  335. package/es/components/batch-editor/index.js +43 -43
  336. package/es/components/batch-editor/index.less +49 -49
  337. package/es/components/browserSelect/index.d.ts +21 -21
  338. package/es/components/browserSelect/index.js +7 -7
  339. package/es/components/browserSelect/index.less +64 -64
  340. package/es/components/button/index.d.ts +9 -9
  341. package/es/components/buttonGroupEdit/index.d.ts +8 -8
  342. package/es/components/buttonGroupPreview/index.d.ts +19 -19
  343. package/es/components/buttonGroupPreview/index.js +4 -4
  344. package/es/components/calendar/index.d.ts +3 -2
  345. package/es/components/cardMetricItem/index.d.ts +12 -12
  346. package/es/components/cardMetricItem/index.less +38 -38
  347. package/es/components/cardPro/index.d.ts +4 -3
  348. package/es/components/cardPro/index.less +55 -55
  349. package/es/components/cascader/index.d.ts +2 -2
  350. package/es/components/checkbox/index.d.ts +3 -2
  351. package/es/components/classicLayout/index.d.ts +4 -3
  352. package/es/components/classicLayout/index.less +21 -21
  353. package/es/components/collapse/index.d.ts +15 -15
  354. package/es/components/collapse/index.js +13 -13
  355. package/es/components/colorPicker/index.d.ts +4 -3
  356. package/es/components/component/index.d.ts +11 -11
  357. package/es/components/component/index.js +4 -4
  358. package/es/components/config-provider/index.d.ts +8 -7
  359. package/es/components/cropPhoto/index.d.ts +3 -3
  360. package/es/components/cropPhoto/index.less +15 -15
  361. package/es/components/customSelect/index.d.ts +17 -17
  362. package/es/components/customSelect/index.less +6 -6
  363. package/es/components/dataSourceComponents/dataSourceForm/BaseForm.d.ts +3 -3
  364. package/es/components/dataSourceComponents/dataSourceForm/BaseForm.js +3 -3
  365. package/es/components/dataSourceComponents/dataSourceForm/formItem.d.ts +3 -2
  366. package/es/components/dataSourceComponents/dataSourceForm/group/index.d.ts +20 -20
  367. package/es/components/dataSourceComponents/dataSourceForm/group/index.js +6 -6
  368. package/es/components/dataSourceComponents/dataSourceForm/group/index.less +42 -42
  369. package/es/components/dataSourceComponents/dataSourceForm/index.d.ts +3 -3
  370. package/es/components/dataSourceComponents/dataSourceForm/index.js +3 -3
  371. package/es/components/dataSourceComponents/dataSourceForm/index.less +24 -24
  372. package/es/components/dataSourceComponents/dataSourceForm/provider/formSetting/FormSettingContext.d.ts +16 -16
  373. package/es/components/dataSourceComponents/dataSourceForm/provider/formSetting/FormSettingProvider.d.ts +8 -8
  374. package/es/components/dataSourceComponents/dataSourceForm/provider/formSetting/FormSettingProvider.js +3 -3
  375. package/es/components/dataSourceComponents/dataSourceForm/provider/hooks/useFormSetting.d.ts +5 -5
  376. package/es/components/dataSourceComponents/dataSourceForm/provider/hooks/useFormSetting.js +2 -2
  377. package/es/components/dataSourceComponents/dataSourceForm/provider/hooks/useJsonPrefixPath.d.ts +5 -5
  378. package/es/components/dataSourceComponents/dataSourceForm/provider/jsonWrapper/JsonWrapperContext.d.ts +6 -6
  379. package/es/components/dataSourceComponents/dataSourceForm/provider/jsonWrapper/JsonWrapperProvider.d.ts +7 -7
  380. package/es/components/dataSourceComponents/dataSourceForm/serve.d.ts +179 -179
  381. package/es/components/dataSourceComponents/dataSourceForm/serve.js +34 -34
  382. package/es/components/dataSourceComponents/dataSourceForm/style.less +22 -22
  383. package/es/components/dataSourceComponents/dataSourceForm/submitButton/index.d.ts +39 -39
  384. package/es/components/dataSourceComponents/dataSourceForm/submitButton/index.less +4 -4
  385. package/es/components/dataSourceComponents/dataSourceForm/type.d.ts +32 -32
  386. package/es/components/dataSourceComponents/dataSourceForm/urlUtils.d.ts +24 -24
  387. package/es/components/dataSourceComponents/dataSourceForm/urlUtils.js +13 -13
  388. package/es/components/dataSourceComponents/dataSourceForm/utils.d.ts +56 -56
  389. package/es/components/dataSourceComponents/dataSourceForm/utils.js +12 -12
  390. package/es/components/dataSourceComponents/dataSourceMenu/Basic.d.ts +8 -8
  391. package/es/components/dataSourceComponents/dataSourceMenu/Basic.js +3 -3
  392. package/es/components/dataSourceComponents/dataSourceMenu/index.d.ts +8 -8
  393. package/es/components/dataSourceComponents/dataSourceMenu/index.js +3 -3
  394. package/es/components/dataSourceComponents/dataSourceShow/dataSourceImage/index.d.ts +3 -2
  395. package/es/components/dataSourceComponents/dataSourceShow/dataSourceQRCode/index.d.ts +3 -2
  396. package/es/components/dataSourceComponents/dataSourceShow/dataSourceTypography/index.d.ts +10 -10
  397. package/es/components/dataSourceComponents/dataSourceShow/utils.d.ts +6 -6
  398. package/es/components/dataSourceComponents/dataSourceTable/BaseTable.d.ts +8 -8
  399. package/es/components/dataSourceComponents/dataSourceTable/filter/index.d.ts +28 -27
  400. package/es/components/dataSourceComponents/dataSourceTable/filter/index.less +4 -4
  401. package/es/components/dataSourceComponents/dataSourceTable/filter/utils.d.ts +8 -7
  402. package/es/components/dataSourceComponents/dataSourceTable/hooks/useColumns.d.ts +11 -11
  403. package/es/components/dataSourceComponents/dataSourceTable/hooks/useDataSourceKey.d.ts +6 -5
  404. package/es/components/dataSourceComponents/dataSourceTable/hooks/useDesignMode.d.ts +2 -2
  405. package/es/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +5 -4
  406. package/es/components/dataSourceComponents/dataSourceTable/hooks/useFormat.d.ts +48 -48
  407. package/es/components/dataSourceComponents/dataSourceTable/hooks/usePagination.d.ts +16 -16
  408. package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +100 -100
  409. package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.js +5 -5
  410. package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +34 -33
  411. package/es/components/dataSourceComponents/dataSourceTable/index.d.ts +6 -6
  412. package/es/components/dataSourceComponents/dataSourceTable/index.less +5 -5
  413. package/es/components/dataSourceComponents/dataSourceTable/provider/tableSetting/TableSettingContext.d.ts +7 -7
  414. package/es/components/dataSourceComponents/dataSourceTable/provider/tableSetting/TableSettingProvider.d.ts +8 -8
  415. package/es/components/dataSourceComponents/dataSourceTable/provider/tableSetting/TableSettingProvider.js +3 -3
  416. package/es/components/dataSourceComponents/dataSourceTable/type.d.ts +84 -84
  417. package/es/components/dataSourceComponents/dataSourceWrapper/BaseWrapper.d.ts +7 -7
  418. package/es/components/dataSourceComponents/dataSourceWrapper/index.d.ts +4 -3
  419. package/es/components/dataSourceComponents/fields/Checkbox/ReadPretty.d.ts +8 -8
  420. package/es/components/dataSourceComponents/fields/Checkbox/WithMode.d.ts +7 -7
  421. package/es/components/dataSourceComponents/fields/Checkbox/index.d.ts +6 -6
  422. package/es/components/dataSourceComponents/fields/Checkbox/type.d.ts +9 -9
  423. package/es/components/dataSourceComponents/fields/ColorPicker/ReadPretty.d.ts +5 -4
  424. package/es/components/dataSourceComponents/fields/ColorPicker/WithMode.d.ts +4 -4
  425. package/es/components/dataSourceComponents/fields/ColorPicker/index.d.ts +3 -3
  426. package/es/components/dataSourceComponents/fields/ColorPicker/type.d.ts +5 -5
  427. package/es/components/dataSourceComponents/fields/DatePicker/ReadPretty.d.ts +5 -5
  428. package/es/components/dataSourceComponents/fields/DatePicker/ReadPretty.less +11 -11
  429. package/es/components/dataSourceComponents/fields/DatePicker/WithMode.d.ts +4 -4
  430. package/es/components/dataSourceComponents/fields/DatePicker/index.d.ts +3 -3
  431. package/es/components/dataSourceComponents/fields/DatePicker/type.d.ts +6 -6
  432. package/es/components/dataSourceComponents/fields/DateRangePicker/ReadPretty.d.ts +5 -4
  433. package/es/components/dataSourceComponents/fields/DateRangePicker/ReadPretty.less +11 -11
  434. package/es/components/dataSourceComponents/fields/DateRangePicker/WithMode.d.ts +4 -4
  435. package/es/components/dataSourceComponents/fields/DateRangePicker/index.d.ts +4 -4
  436. package/es/components/dataSourceComponents/fields/DateRangePicker/index.less +14 -14
  437. package/es/components/dataSourceComponents/fields/DateRangePicker/type.d.ts +4 -4
  438. package/es/components/dataSourceComponents/fields/IconSelect/ReadPretty.d.ts +5 -4
  439. package/es/components/dataSourceComponents/fields/IconSelect/ReadPretty.less +6 -6
  440. package/es/components/dataSourceComponents/fields/IconSelect/WithMode.d.ts +4 -4
  441. package/es/components/dataSourceComponents/fields/IconSelect/index.d.ts +3 -3
  442. package/es/components/dataSourceComponents/fields/IconSelect/type.d.ts +8 -8
  443. package/es/components/dataSourceComponents/fields/Input/ReadPretty.d.ts +5 -4
  444. package/es/components/dataSourceComponents/fields/Input/ReadPretty.less +11 -11
  445. package/es/components/dataSourceComponents/fields/Input/WithMode.d.ts +4 -4
  446. package/es/components/dataSourceComponents/fields/Input/index.d.ts +22 -22
  447. package/es/components/dataSourceComponents/fields/Input/type.d.ts +8 -8
  448. package/es/components/dataSourceComponents/fields/Input.Email/ReadPretty.d.ts +5 -4
  449. package/es/components/dataSourceComponents/fields/Input.Email/ReadPretty.less +11 -11
  450. package/es/components/dataSourceComponents/fields/Input.Email/WithMode.d.ts +6 -6
  451. package/es/components/dataSourceComponents/fields/Input.Email/index.d.ts +5 -5
  452. package/es/components/dataSourceComponents/fields/Input.Email/type.d.ts +5 -5
  453. package/es/components/dataSourceComponents/fields/Input.Json/ReadPretty.d.ts +5 -4
  454. package/es/components/dataSourceComponents/fields/Input.Json/ReadPretty.less +3 -3
  455. package/es/components/dataSourceComponents/fields/Input.Json/WithMode.d.ts +3 -3
  456. package/es/components/dataSourceComponents/fields/Input.Json/index.d.ts +3 -3
  457. package/es/components/dataSourceComponents/fields/Input.Json/type.d.ts +5 -5
  458. package/es/components/dataSourceComponents/fields/Input.Mobile/ReadPretty.d.ts +5 -5
  459. package/es/components/dataSourceComponents/fields/Input.Mobile/ReadPretty.less +11 -11
  460. package/es/components/dataSourceComponents/fields/Input.Mobile/WithMode.d.ts +17 -17
  461. package/es/components/dataSourceComponents/fields/Input.Mobile/WithMode.js +27 -27
  462. package/es/components/dataSourceComponents/fields/Input.Mobile/index.d.ts +3 -3
  463. package/es/components/dataSourceComponents/fields/Input.Mobile/serve.d.ts +24 -24
  464. package/es/components/dataSourceComponents/fields/Input.Mobile/serve.js +2 -2
  465. package/es/components/dataSourceComponents/fields/Input.Mobile/type.d.ts +5 -5
  466. package/es/components/dataSourceComponents/fields/Input.Password/ReadPretty.d.ts +5 -4
  467. package/es/components/dataSourceComponents/fields/Input.Password/ReadPretty.less +11 -11
  468. package/es/components/dataSourceComponents/fields/Input.Password/WithMode.d.ts +3 -3
  469. package/es/components/dataSourceComponents/fields/Input.Password/index.d.ts +3 -3
  470. package/es/components/dataSourceComponents/fields/Input.Password/type.d.ts +5 -5
  471. package/es/components/dataSourceComponents/fields/Input.Phone/ReadPretty.d.ts +5 -5
  472. package/es/components/dataSourceComponents/fields/Input.Phone/ReadPretty.less +11 -11
  473. package/es/components/dataSourceComponents/fields/Input.Phone/WithMode.d.ts +16 -16
  474. package/es/components/dataSourceComponents/fields/Input.Phone/WithMode.js +22 -22
  475. package/es/components/dataSourceComponents/fields/Input.Phone/index.d.ts +3 -3
  476. package/es/components/dataSourceComponents/fields/Input.Phone/serve.d.ts +25 -25
  477. package/es/components/dataSourceComponents/fields/Input.Phone/serve.js +2 -2
  478. package/es/components/dataSourceComponents/fields/Input.Phone/type.d.ts +5 -5
  479. package/es/components/dataSourceComponents/fields/Input.Subdomain/ReadPretty.d.ts +5 -4
  480. package/es/components/dataSourceComponents/fields/Input.Subdomain/ReadPretty.less +11 -11
  481. package/es/components/dataSourceComponents/fields/Input.Subdomain/WithMode.d.ts +13 -13
  482. package/es/components/dataSourceComponents/fields/Input.Subdomain/WithMode.js +31 -31
  483. package/es/components/dataSourceComponents/fields/Input.Subdomain/index.d.ts +12 -12
  484. package/es/components/dataSourceComponents/fields/Input.Subdomain/serve.d.ts +11 -11
  485. package/es/components/dataSourceComponents/fields/Input.Subdomain/serve.js +4 -4
  486. package/es/components/dataSourceComponents/fields/Input.Subdomain/type.d.ts +5 -5
  487. package/es/components/dataSourceComponents/fields/Input.TextArea/ReadPretty.d.ts +5 -4
  488. package/es/components/dataSourceComponents/fields/Input.TextArea/ReadPretty.less +11 -11
  489. package/es/components/dataSourceComponents/fields/Input.TextArea/WithMode.d.ts +3 -3
  490. package/es/components/dataSourceComponents/fields/Input.TextArea/index.d.ts +3 -3
  491. package/es/components/dataSourceComponents/fields/Input.TextArea/type.d.ts +5 -5
  492. package/es/components/dataSourceComponents/fields/Input.Url/ReadPretty.d.ts +6 -5
  493. package/es/components/dataSourceComponents/fields/Input.Url/ReadPretty.less +13 -13
  494. package/es/components/dataSourceComponents/fields/Input.Url/WithMode.d.ts +3 -3
  495. package/es/components/dataSourceComponents/fields/Input.Url/index.d.ts +3 -3
  496. package/es/components/dataSourceComponents/fields/Input.Url/type.d.ts +5 -5
  497. package/es/components/dataSourceComponents/fields/InputNumber/ReadPretty.d.ts +5 -5
  498. package/es/components/dataSourceComponents/fields/InputNumber/ReadPretty.less +11 -11
  499. package/es/components/dataSourceComponents/fields/InputNumber/WithMode.d.ts +3 -3
  500. package/es/components/dataSourceComponents/fields/InputNumber/index.d.ts +3 -3
  501. package/es/components/dataSourceComponents/fields/InputNumber/type.d.ts +7 -7
  502. package/es/components/dataSourceComponents/fields/InputNumber/utils.d.ts +1 -1
  503. package/es/components/dataSourceComponents/fields/Radio/ReadPretty.d.ts +7 -7
  504. package/es/components/dataSourceComponents/fields/Radio/WithMode.d.ts +7 -7
  505. package/es/components/dataSourceComponents/fields/Radio/index.d.ts +6 -6
  506. package/es/components/dataSourceComponents/fields/Radio/type.d.ts +8 -8
  507. package/es/components/dataSourceComponents/fields/Select/ReadPretty.d.ts +4 -4
  508. package/es/components/dataSourceComponents/fields/Select/WithMode.d.ts +4 -4
  509. package/es/components/dataSourceComponents/fields/Select/index.d.ts +11 -10
  510. package/es/components/dataSourceComponents/fields/Select/type.d.ts +5 -5
  511. package/es/components/dataSourceComponents/fields/Switch/ReadPretty.d.ts +5 -5
  512. package/es/components/dataSourceComponents/fields/Switch/ReadPretty.less +2 -2
  513. package/es/components/dataSourceComponents/fields/Switch/WithMode.d.ts +3 -3
  514. package/es/components/dataSourceComponents/fields/Switch/index.d.ts +3 -3
  515. package/es/components/dataSourceComponents/fields/Switch/type.d.ts +16 -16
  516. package/es/components/dataSourceComponents/fields/TimePicker/ReadPretty.d.ts +5 -4
  517. package/es/components/dataSourceComponents/fields/TimePicker/ReadPretty.less +11 -11
  518. package/es/components/dataSourceComponents/fields/TimePicker/WithMode.d.ts +5 -5
  519. package/es/components/dataSourceComponents/fields/TimePicker/index.d.ts +3 -3
  520. package/es/components/dataSourceComponents/fields/TimePicker/style.less +85 -85
  521. package/es/components/dataSourceComponents/fields/TimePicker/type.d.ts +5 -5
  522. package/es/components/dataSourceComponents/fields/Translation/BaseTranslation.d.ts +5 -5
  523. package/es/components/dataSourceComponents/fields/Translation/ReadPretty.d.ts +5 -4
  524. package/es/components/dataSourceComponents/fields/Translation/ReadPretty.less +10 -10
  525. package/es/components/dataSourceComponents/fields/Translation/WithMode.d.ts +4 -4
  526. package/es/components/dataSourceComponents/fields/Translation/index.d.ts +3 -3
  527. package/es/components/dataSourceComponents/fields/Translation/index.less +57 -57
  528. package/es/components/dataSourceComponents/fields/Translation/type.d.ts +16 -16
  529. package/es/components/dataSourceComponents/fields/Upload/BaseUpload.d.ts +5 -5
  530. package/es/components/dataSourceComponents/fields/Upload/CameraPopover.d.ts +6 -5
  531. package/es/components/dataSourceComponents/fields/Upload/ReadPretty.d.ts +5 -4
  532. package/es/components/dataSourceComponents/fields/Upload/ReadPretty.less +11 -11
  533. package/es/components/dataSourceComponents/fields/Upload/WithMode.d.ts +4 -4
  534. package/es/components/dataSourceComponents/fields/Upload/constants.d.ts +9 -9
  535. package/es/components/dataSourceComponents/fields/Upload/index.d.ts +3 -3
  536. package/es/components/dataSourceComponents/fields/Upload/index.less +114 -114
  537. package/es/components/dataSourceComponents/fields/Upload/serve.d.ts +20 -20
  538. package/es/components/dataSourceComponents/fields/Upload/serve.js +2 -2
  539. package/es/components/dataSourceComponents/fields/Upload/shopUploadServe.d.ts +56 -56
  540. package/es/components/dataSourceComponents/fields/Upload/shopUploadServe.js +39 -39
  541. package/es/components/dataSourceComponents/fields/Upload/type.d.ts +38 -38
  542. package/es/components/dataSourceComponents/fields/Upload/types.d.ts +48 -48
  543. package/es/components/dataSourceComponents/fields/Upload/utils.d.ts +18 -18
  544. package/es/components/dataSourceComponents/fields/index.d.ts +102 -101
  545. package/es/components/dataSourceComponents/fields/type.d.ts +19 -19
  546. package/es/components/dataSourceComponents/fields/utils.d.ts +3 -3
  547. package/es/components/dataSourceComponents/hooks/useActions.d.ts +18 -18
  548. package/es/components/dataSourceComponents/hooks/useComponentId.d.ts +2 -2
  549. package/es/components/dataSourceComponents/hooks/useCtxActions.d.ts +8 -8
  550. package/es/components/dataSourceComponents/hooks/useCtxActions.js +5 -5
  551. package/es/components/dataSourceComponents/hooks/useDataSource.d.ts +5 -5
  552. package/es/components/dataSourceComponents/hooks/useDataSource.js +2 -2
  553. package/es/components/dataSourceComponents/hooks/useParseActionsVariable.d.ts +6 -6
  554. package/es/components/dataSourceComponents/hooks/usePlatform.d.ts +5 -5
  555. package/es/components/dataSourceComponents/hooks/useValueMap.d.ts +8 -8
  556. package/es/components/dataSourceComponents/hooks/useValueMap.js +5 -5
  557. package/es/components/dataSourceComponents/hooks/useVariables.d.ts +2 -2
  558. package/es/components/dataSourceComponents/provider/actions/ActionsContext.d.ts +11 -11
  559. package/es/components/dataSourceComponents/provider/actions/ActionsProvider.d.ts +12 -12
  560. package/es/components/dataSourceComponents/provider/actions/ActionsProvider.js +4 -4
  561. package/es/components/dataSourceComponents/provider/dataSource/DataSourceContext.d.ts +120 -120
  562. package/es/components/dataSourceComponents/provider/dataSource/DataSourceProvider.d.ts +8 -8
  563. package/es/components/dataSourceComponents/provider/dataSource/DataSourceProvider.js +3 -3
  564. package/es/components/dataSourceComponents/provider/variables/VariablesContext.d.ts +12 -12
  565. package/es/components/dataSourceComponents/provider/variables/VariablesProvider.d.ts +4 -4
  566. package/es/components/dataSourceComponents/provider/variables/utils.d.ts +12 -12
  567. package/es/components/date-picker/constants.d.ts +39 -39
  568. package/es/components/date-picker/datePickerCpt.d.ts +9 -8
  569. package/es/components/date-picker/hooks/useMediaQuery.d.ts +2 -2
  570. package/es/components/date-picker/index.d.ts +3 -2
  571. package/es/components/date-picker/index.less +1880 -1880
  572. package/es/components/div/index.d.ts +19 -19
  573. package/es/components/drag-sort-tree/TreeItem/index.d.ts +19 -18
  574. package/es/components/drag-sort-tree/TreeItem/index.js +7 -7
  575. package/es/components/drag-sort-tree/TreeItem/index.less +73 -73
  576. package/es/components/drag-sort-tree/index.d.ts +5 -4
  577. package/es/components/drag-sort-tree/index.less +3 -3
  578. package/es/components/drag-sort-tree/types.d.ts +24 -24
  579. package/es/components/drawer/index.d.ts +3 -3
  580. package/es/components/drawer/index.less +70 -70
  581. package/es/components/dropdown/index.d.ts +3 -2
  582. package/es/components/filter/components/Dropdown/index.d.ts +9 -9
  583. package/es/components/filter/components/Dropdown/index.less +81 -81
  584. package/es/components/filter/components/Dropdown/types.d.ts +11 -11
  585. package/es/components/filter/components/FilterButton/index.d.ts +4 -4
  586. package/es/components/filter/components/FilterButton/types.d.ts +13 -13
  587. package/es/components/filter/components/FilterItem/index.d.ts +5 -5
  588. package/es/components/filter/components/QuickFilter/index.d.ts +12 -12
  589. package/es/components/filter/components/items/index.d.ts +42 -41
  590. package/es/components/filter/components/items/text/Editor/index.d.ts +3 -2
  591. package/es/components/filter/components/items/text/Preview/index.d.ts +3 -2
  592. package/es/components/filter/components/items/text/index.d.ts +12 -11
  593. package/es/components/filter/index.d.ts +4 -3
  594. package/es/components/filter/types.d.ts +46 -46
  595. package/es/components/form/index.d.ts +2 -2
  596. package/es/components/icon/index.d.ts +12 -12
  597. package/es/components/iconSelect/index.d.ts +10 -10
  598. package/es/components/iconSelect/index.less +54 -54
  599. package/es/components/iconSelect/utils.d.ts +14 -14
  600. package/es/components/iconfont/index.d.ts +8 -8
  601. package/es/components/image/index.d.ts +10 -10
  602. package/es/components/input/index.d.ts +11 -11
  603. package/es/components/input-number-range/index.d.ts +15 -15
  604. package/es/components/list/index.d.ts +7 -6
  605. package/es/components/list/index.less +38 -38
  606. package/es/components/login-and-register/index.d.ts +82 -82
  607. package/es/components/login-and-register/index.js +13 -13
  608. package/es/components/login-and-register/index.less +213 -213
  609. package/es/components/lowCodePage/index.d.ts +6 -5
  610. package/es/components/modal/index.d.ts +2 -2
  611. package/es/components/organizationTenantSwitcher/index.d.ts +17 -17
  612. package/es/components/organizationTenantSwitcher/index.less +89 -89
  613. package/es/components/page/index.d.ts +6 -5
  614. package/es/components/page-header/index.d.ts +14 -14
  615. package/es/components/page-header/index.less +45 -45
  616. package/es/components/pisell-config-provider/context.d.ts +20 -20
  617. package/es/components/pisell-config-provider/context.js +2 -2
  618. package/es/components/pisell-config-provider/hooks/usePisellConfig.d.ts +5 -5
  619. package/es/components/pisell-config-provider/hooks/usePisellConfig.js +2 -2
  620. package/es/components/pisell-config-provider/index.d.ts +12 -12
  621. package/es/components/pisellAdjustPrice/PisellAdjustPriceInputNumber.d.ts +10 -9
  622. package/es/components/pisellAdjustPrice/index.d.ts +10 -9
  623. package/es/components/pisellAdjustPrice/index.less +29 -29
  624. package/es/components/pisellAlert/index.d.ts +22 -22
  625. package/es/components/pisellAlert/index.js +4 -4
  626. package/es/components/pisellAlert/index.less +149 -149
  627. package/es/components/pisellAnchor/index.d.ts +23 -23
  628. package/es/components/pisellAnchor/index.less +194 -194
  629. package/es/components/pisellAppCard/PisellAppCard.d.ts +5 -5
  630. package/es/components/pisellAppCard/PisellAppCard.less +55 -55
  631. package/es/components/pisellAppCard/index.d.ts +3 -3
  632. package/es/components/pisellAppCard/types.d.ts +34 -34
  633. package/es/components/pisellAvatar/index.d.ts +19 -19
  634. package/es/components/pisellAvatar/index.js +7 -7
  635. package/es/components/pisellAvatar/index.less +27 -27
  636. package/es/components/pisellBatchActionBar/PisellBatchActionBar.d.ts +31 -0
  637. package/es/components/pisellBatchActionBar/PisellBatchActionBar.js +533 -0
  638. package/es/components/pisellBatchActionBar/PisellBatchActionBar.less +103 -0
  639. package/es/components/pisellBatchActionBar/index.d.ts +6 -0
  640. package/es/components/pisellBatchActionBar/index.js +6 -0
  641. package/es/components/pisellBatchActionBar/types.d.ts +237 -0
  642. package/es/components/pisellBatchActionBar/types.js +1 -0
  643. package/es/components/pisellCamera/index.d.ts +4 -4
  644. package/es/components/pisellCamera/index.less +130 -130
  645. package/es/components/pisellCard/index.d.ts +20 -19
  646. package/es/components/pisellCard/index.js +4 -4
  647. package/es/components/pisellCard/index.less +36 -36
  648. package/es/components/pisellCardList/index.d.ts +77 -77
  649. package/es/components/pisellCardList/index.js +4 -4
  650. package/es/components/pisellCardList/index.less +74 -74
  651. package/es/components/pisellCheckboxGroup/index.d.ts +37 -37
  652. package/es/components/pisellCheckboxGroup/index.js +26 -26
  653. package/es/components/pisellCheckboxGroup/index.less +36 -36
  654. package/es/components/pisellCheckboxGroup/mock.d.ts +4 -4
  655. package/es/components/pisellContainer/components/Portal/index.d.ts +10 -10
  656. package/es/components/pisellContainer/containers.d.ts +1 -1
  657. package/es/components/pisellContainer/index.d.ts +22 -22
  658. package/es/components/pisellCountdown/index.d.ts +24 -24
  659. package/es/components/pisellCountdown/utils.d.ts +7 -7
  660. package/es/components/pisellCountdown/utils.js +5 -5
  661. package/es/components/pisellCustomCheckboxGroup/index.d.ts +16 -16
  662. package/es/components/pisellCustomCheckboxGroup/index.js +15 -15
  663. package/es/components/pisellDatePicker/datePickerCpt.d.ts +22 -21
  664. package/es/components/pisellDatePicker/datePickerCpt.js +13 -13
  665. package/es/components/pisellDatePicker/detePickerCpt.less +21 -21
  666. package/es/components/pisellDatePicker/index.d.ts +3 -2
  667. package/es/components/pisellDraggable/components/Action/Action.d.ts +10 -10
  668. package/es/components/pisellDraggable/components/Action/Action.less +49 -49
  669. package/es/components/pisellDraggable/components/Action/index.d.ts +2 -2
  670. package/es/components/pisellDraggable/components/Handle/Handle.d.ts +3 -3
  671. package/es/components/pisellDraggable/components/Handle/index.d.ts +1 -1
  672. package/es/components/pisellDraggable/components/Remove/Remove.d.ts +3 -3
  673. package/es/components/pisellDraggable/components/Remove/index.d.ts +1 -1
  674. package/es/components/pisellDraggable/components/TreeItem/SortableTreeItem.d.ts +9 -9
  675. package/es/components/pisellDraggable/components/TreeItem/TreeItem.d.ts +24 -24
  676. package/es/components/pisellDraggable/components/TreeItem/TreeItem.less +127 -127
  677. package/es/components/pisellDraggable/components/TreeItem/index.d.ts +2 -2
  678. package/es/components/pisellDraggable/components/index.d.ts +4 -4
  679. package/es/components/pisellDraggable/index.d.ts +35 -35
  680. package/es/components/pisellDraggable/index.js +49 -49
  681. package/es/components/pisellDraggable/types.d.ts +19 -19
  682. package/es/components/pisellDraggable/utilities.d.ts +17 -17
  683. package/es/components/pisellDropSort/PisellDropSort.d.ts +5 -5
  684. package/es/components/pisellDropSort/PisellDropSort.less +92 -92
  685. package/es/components/pisellDropSort/components/SortableItem/index.d.ts +26 -26
  686. package/es/components/pisellDropSort/components/SortableItem/index.less +156 -156
  687. package/es/components/pisellDropSort/index.d.ts +3 -3
  688. package/es/components/pisellDropSort/types.d.ts +58 -58
  689. package/es/components/pisellDropdown/index.d.ts +20 -20
  690. package/es/components/pisellDropdown/index.less +44 -44
  691. package/es/components/pisellEmpty/index.d.ts +19 -19
  692. package/es/components/pisellEmpty/index.less +34 -34
  693. package/es/components/pisellFloatingPanel/index.d.ts +17 -17
  694. package/es/components/pisellFloatingPanel/index.less +30 -30
  695. package/es/components/pisellGoodPassCard/index.d.ts +49 -49
  696. package/es/components/pisellGoodPassCard/index.less +58 -58
  697. package/es/components/pisellHeaderProgressBar/index.d.ts +29 -29
  698. package/es/components/pisellHeaderProgressBar/index.js +6 -6
  699. package/es/components/pisellHeaderProgressBar/index.less +18 -18
  700. package/es/components/pisellImageCarousels/index.d.ts +18 -18
  701. package/es/components/pisellImageCarousels/index.less +92 -92
  702. package/es/components/pisellInformationEntry/Input/index.d.ts +8 -8
  703. package/es/components/pisellInformationEntry/Input/index.less +13 -13
  704. package/es/components/pisellInformationEntry/Scan/index.d.ts +8 -7
  705. package/es/components/pisellInformationEntry/Scan/index.less +7 -7
  706. package/es/components/pisellInformationEntry/constants.d.ts +13 -13
  707. package/es/components/pisellInformationEntry/hooks/useNativeScanner.d.ts +4 -4
  708. package/es/components/pisellInformationEntry/hooks/useTerminalPeripherals.d.ts +8 -8
  709. package/es/components/pisellInformationEntry/index.d.ts +33 -33
  710. package/es/components/pisellInformationEntry/index.less +40 -40
  711. package/es/components/pisellInformationEntry/utils.d.ts +4 -4
  712. package/es/components/pisellInformationEntry/utils.js +2 -2
  713. package/es/components/pisellInput/components/BankCard/index.d.ts +11 -10
  714. package/es/components/pisellInput/components/BankCard/index.less +3 -3
  715. package/es/components/pisellInput/components/BankCard/utils.d.ts +11 -11
  716. package/es/components/pisellInput/components/Copy/index.d.ts +11 -10
  717. package/es/components/pisellInput/components/SecurityCode/index.d.ts +12 -11
  718. package/es/components/pisellInput/components/SecurityCode/index.less +3 -3
  719. package/es/components/pisellInput/index.d.ts +13 -12
  720. package/es/components/pisellLayout/content.d.ts +10 -10
  721. package/es/components/pisellLayout/content.js +6 -6
  722. package/es/components/pisellLayout/footer.d.ts +8 -8
  723. package/es/components/pisellLayout/header.d.ts +10 -10
  724. package/es/components/pisellLayout/index.d.ts +14 -14
  725. package/es/components/pisellLayout/index.less +22 -22
  726. package/es/components/pisellLayout/sider.d.ts +8 -8
  727. package/es/components/pisellList01/index.d.ts +17 -17
  728. package/es/components/pisellList01/index.js +7 -7
  729. package/es/components/pisellList01/index.less +53 -53
  730. package/es/components/pisellLoading/index.d.ts +20 -19
  731. package/es/components/pisellLoading/index.less +35 -35
  732. package/es/components/pisellMenu/PisellMenu.d.ts +11 -11
  733. package/es/components/pisellMenu/PisellMenu.less +52 -52
  734. package/es/components/pisellMenu/index.d.ts +3 -3
  735. package/es/components/pisellMenu/types.d.ts +27 -27
  736. package/es/components/pisellMessage/index.d.ts +4 -4
  737. package/es/components/pisellModal/components/Information/index.d.ts +21 -21
  738. package/es/components/pisellModal/components/Information/index.less +15 -15
  739. package/es/components/pisellModal/components/IpadModal/index.d.ts +6 -5
  740. package/es/components/pisellModal/components/MobileModal/index.d.ts +9 -8
  741. package/es/components/pisellModal/components/MobileModal/index.less +64 -64
  742. package/es/components/pisellModal/components/PcModal/index.d.ts +30 -30
  743. package/es/components/pisellModal/components/PcModal/index.less +104 -104
  744. package/es/components/pisellModal/components/functions/index.d.ts +30 -30
  745. package/es/components/pisellModal/components/functions/index.less +27 -27
  746. package/es/components/pisellModal/components/index.d.ts +10 -9
  747. package/es/components/pisellModal/constants.d.ts +6 -6
  748. package/es/components/pisellModal/index.d.ts +58 -58
  749. package/es/components/pisellNavigationMenu/PisellNavigationMenu.d.ts +5 -5
  750. package/es/components/pisellNavigationMenu/PisellNavigationMenu.less +79 -79
  751. package/es/components/pisellNavigationMenu/index.d.ts +3 -3
  752. package/es/components/pisellNavigationMenu/types.d.ts +85 -85
  753. package/es/components/pisellNavigationMenu/utils.d.ts +15 -15
  754. package/es/components/pisellNavigationMenu/utils.js +8 -8
  755. package/es/components/pisellQRScanner/index.d.ts +24 -24
  756. package/es/components/pisellQRScanner/index.js +10 -10
  757. package/es/components/pisellQRScanner/index.less +70 -70
  758. package/es/components/pisellQrcode/index.d.ts +10 -10
  759. package/es/components/pisellQrcode/index.less +39 -39
  760. package/es/components/pisellRow/index.d.ts +22 -22
  761. package/es/components/pisellRow/index.js +7 -7
  762. package/es/components/pisellRow/index.less +12 -12
  763. package/es/components/pisellScan/index.d.ts +23 -23
  764. package/es/components/pisellScan/index.js +2 -2
  765. package/es/components/pisellScan/index.less +11 -11
  766. package/es/components/pisellSectionHeaders/index.d.ts +21 -21
  767. package/es/components/pisellSectionHeaders/index.less +46 -46
  768. package/es/components/pisellStatisticList/index.d.ts +21 -21
  769. package/es/components/pisellStatisticList/index.less +48 -48
  770. package/es/components/pisellTags/index.d.ts +13 -13
  771. package/es/components/pisellTags/index.js +7 -7
  772. package/es/components/pisellTags/index.less +16 -16
  773. package/es/components/pisellTags/utils.d.ts +1 -1
  774. package/es/components/pisellText/components/Amount/index.d.ts +20 -20
  775. package/es/components/pisellText/components/Editable/index.d.ts +29 -29
  776. package/es/components/pisellText/components/Editable/index.less +40 -40
  777. package/es/components/pisellText/index.d.ts +9 -9
  778. package/es/components/pisellToast/index.d.ts +16 -16
  779. package/es/components/pisellToast/index.less +25 -25
  780. package/es/components/pisellTooltip/index.d.ts +10 -9
  781. package/es/components/pisellTooltip/index.less +4 -4
  782. package/es/components/pisellUpload/index.d.ts +11 -10
  783. package/es/components/pisellUpload/index.less +15 -15
  784. package/es/components/pisellViewGrid/index.d.ts +16 -16
  785. package/es/components/pisellViewGrid/index.less +31 -31
  786. package/es/components/pisellWalletPassCard/index.d.ts +95 -95
  787. package/es/components/pisellWalletPassCard/index.less +313 -313
  788. package/es/components/productCard/components/Action/index.d.ts +4 -3
  789. package/es/components/productCard/components/Action/index.less +14 -14
  790. package/es/components/productCard/components/AmountFooter/index.d.ts +4 -3
  791. package/es/components/productCard/components/AmountFooter/index.js +11 -9
  792. package/es/components/productCard/components/AmountFooter/index.less +77 -77
  793. package/es/components/productCard/components/Divider/index.d.ts +4 -3
  794. package/es/components/productCard/components/Divider/index.less +13 -13
  795. package/es/components/productCard/components/Header/DeleteButton/index.d.ts +4 -3
  796. package/es/components/productCard/components/Header/DeleteButton/index.less +15 -15
  797. package/es/components/productCard/components/Header/EditButton/index.d.ts +4 -3
  798. package/es/components/productCard/components/Header/EditButton/index.less +25 -25
  799. package/es/components/productCard/components/Header/index.d.ts +4 -3
  800. package/es/components/productCard/components/Header/index.js +21 -21
  801. package/es/components/productCard/components/Header/index.less +56 -56
  802. package/es/components/productCard/components/MultiDay/index.d.ts +4 -3
  803. package/es/components/productCard/components/MultiDay/index.js +7 -7
  804. package/es/components/productCard/components/MultiDay/index.less +34 -34
  805. package/es/components/productCard/components/MultiDay/utils.d.ts +14 -14
  806. package/es/components/productCard/components/Note/index.d.ts +4 -3
  807. package/es/components/productCard/components/Note/index.less +20 -20
  808. package/es/components/productCard/components/Packages/components/collapsibleList/index.d.ts +10 -10
  809. package/es/components/productCard/components/Packages/components/collapsibleList/index.js +20 -20
  810. package/es/components/productCard/components/Packages/components/collapsibleList/index.less +52 -52
  811. package/es/components/productCard/components/Packages/components/collapsibleList/utils.d.ts +2 -1
  812. package/es/components/productCard/components/Packages/components/options/index.d.ts +4 -3
  813. package/es/components/productCard/components/Packages/components/options/index.less +30 -30
  814. package/es/components/productCard/components/Packages/index.d.ts +4 -3
  815. package/es/components/productCard/components/Packages/index.less +17 -17
  816. package/es/components/productCard/components/Packages/utils.d.ts +20 -20
  817. package/es/components/productCard/components/Packages/utils.js +16 -16
  818. package/es/components/productCard/components/Sales/index.d.ts +4 -3
  819. package/es/components/productCard/components/Sales/index.less +18 -18
  820. package/es/components/productCard/components/Time/components/Like/index.d.ts +10 -9
  821. package/es/components/productCard/components/Time/components/Like/index.less +27 -27
  822. package/es/components/productCard/components/Time/components/SelectHolder/index.d.ts +4 -3
  823. package/es/components/productCard/components/Time/components/SelectHolder/index.js +7 -7
  824. package/es/components/productCard/components/Time/components/SelectHolder/index.less +61 -61
  825. package/es/components/productCard/components/Time/components/SelectHolderModal/index.d.ts +14 -13
  826. package/es/components/productCard/components/Time/components/SelectHolderModal/index.less +39 -39
  827. package/es/components/productCard/components/Time/components/SelectHolderMultiple/index.d.ts +3 -2
  828. package/es/components/productCard/components/Time/components/SelectHolderMultiple/index.js +7 -7
  829. package/es/components/productCard/components/Time/components/SelectResource/index.d.ts +19 -18
  830. package/es/components/productCard/components/Time/components/SelectResource/index.js +7 -7
  831. package/es/components/productCard/components/Time/components/SelectResource/index.less +20 -20
  832. package/es/components/productCard/components/Time/index.d.ts +4 -3
  833. package/es/components/productCard/components/Time/index.less +56 -56
  834. package/es/components/productCard/components/Warning/index.d.ts +7 -7
  835. package/es/components/productCard/components/Warning/index.js +7 -7
  836. package/es/components/productCard/hooks/useOpenNote.d.ts +3 -3
  837. package/es/components/productCard/index.d.ts +5 -5
  838. package/es/components/productCard/index.js +14 -14
  839. package/es/components/productCard/index.less +82 -82
  840. package/es/components/productCard/locales.d.ts +84 -84
  841. package/es/components/productCard/status.d.ts +32 -32
  842. package/es/components/productCard/status.js +23 -23
  843. package/es/components/productCard/types.d.ts +84 -84
  844. package/es/components/productCard/utils.d.ts +31 -31
  845. package/es/components/productCard/utils.js +22 -22
  846. package/es/components/profileMenu/index.d.ts +26 -26
  847. package/es/components/profileMenu/index.less +132 -132
  848. package/es/components/qrcode/index.d.ts +3 -2
  849. package/es/components/radio/index.d.ts +3 -2
  850. package/es/components/record-view/index.d.ts +37 -37
  851. package/es/components/record-view/index.less +81 -81
  852. package/es/components/section-footers/index.d.ts +9 -9
  853. package/es/components/section-footers/index.less +5 -5
  854. package/es/components/segmented/index.d.ts +5 -4
  855. package/es/components/segmented/index.less +2 -2
  856. package/es/components/select/index.d.ts +9 -9
  857. package/es/components/select/index.less +29 -29
  858. package/es/components/select-time/RightPanel/index.d.ts +9 -8
  859. package/es/components/select-time/RightPanel/index.less +21 -21
  860. package/es/components/select-time/index.d.ts +14 -14
  861. package/es/components/select-time/index.less +15 -15
  862. package/es/components/select-time/utils.d.ts +9 -9
  863. package/es/components/skeleton/index.d.ts +3 -2
  864. package/es/components/slider/index.d.ts +3 -2
  865. package/es/components/sort/components/InlineMenu/index.d.ts +15 -14
  866. package/es/components/sort/components/InlineMenu/index.js +4 -4
  867. package/es/components/sort/components/InlineMenu/index.less +20 -20
  868. package/es/components/sort/index.d.ts +5 -5
  869. package/es/components/sort/index.less +36 -36
  870. package/es/components/sort/types.d.ts +20 -20
  871. package/es/components/sortableList/index.d.ts +11 -11
  872. package/es/components/table/Actions/component/ButtonIcon/index.d.ts +8 -8
  873. package/es/components/table/Actions/component/ButtonIcon/index.less +18 -18
  874. package/es/components/table/Actions/component/ColumnsSetting/PopoverContent.d.ts +10 -10
  875. package/es/components/table/Actions/component/ColumnsSetting/PopoverContent.less +59 -59
  876. package/es/components/table/Actions/component/ColumnsSetting/index.d.ts +7 -6
  877. package/es/components/table/Actions/component/ColumnsSetting/utils.d.ts +1 -1
  878. package/es/components/table/Actions/component/ExportImport/components/ExportFile/index.d.ts +7 -6
  879. package/es/components/table/Actions/component/ExportImport/components/ExportFile/index.js +6 -6
  880. package/es/components/table/Actions/component/ExportImport/components/ExportFile/index.less +29 -29
  881. package/es/components/table/Actions/component/ExportImport/components/ExportTable/function.d.ts +7 -7
  882. package/es/components/table/Actions/component/ExportImport/components/ExportTable/index.d.ts +8 -7
  883. package/es/components/table/Actions/component/ExportImport/components/ExportTable/index.less +5 -5
  884. package/es/components/table/Actions/component/ExportImport/components/ImportLog/Detail.d.ts +4 -4
  885. package/es/components/table/Actions/component/ExportImport/components/ImportLog/index.d.ts +7 -6
  886. package/es/components/table/Actions/component/ExportImport/components/ImportLog/index.js +6 -6
  887. package/es/components/table/Actions/component/ExportImport/components/ImportLog/index.less +48 -48
  888. package/es/components/table/Actions/component/ExportImport/components/ImportTable/index.d.ts +10 -9
  889. package/es/components/table/Actions/component/ExportImport/components/ImportTable/index.less +97 -97
  890. package/es/components/table/Actions/component/ExportImport/index.d.ts +8 -7
  891. package/es/components/table/Actions/component/ExportImport/index.less +194 -194
  892. package/es/components/table/Actions/component/ExportImport/utils/date.d.ts +8 -8
  893. package/es/components/table/Actions/component/ExportImport/utils/date.js +6 -6
  894. package/es/components/table/Actions/component/ExportImport/utils/download.d.ts +3 -3
  895. package/es/components/table/Actions/component/ExportImport/utils/file.d.ts +7 -7
  896. package/es/components/table/Actions/component/ExportImport/utils/file.js +4 -4
  897. package/es/components/table/Actions/component/ExportImport/utils/index.d.ts +9 -9
  898. package/es/components/table/Actions/component/ExportImport/utils/index.js +7 -7
  899. package/es/components/table/Actions/component/GallerySetting/index.d.ts +9 -8
  900. package/es/components/table/Actions/component/GallerySetting/index.less +14 -14
  901. package/es/components/table/Actions/component/Group/PopoverContent.d.ts +13 -12
  902. package/es/components/table/Actions/component/Group/PopoverContent.less +29 -29
  903. package/es/components/table/Actions/component/Group/index.d.ts +13 -12
  904. package/es/components/table/Actions/component/ViewMode/index.d.ts +9 -8
  905. package/es/components/table/Actions/index.d.ts +18 -17
  906. package/es/components/table/Actions/index.less +43 -43
  907. package/es/components/table/BasicTable/index.d.ts +4 -3
  908. package/es/components/table/Gallery/components/GalleryItem/components/Cover/index.d.ts +10 -9
  909. package/es/components/table/Gallery/components/GalleryItem/components/RenderFields/index.d.ts +11 -10
  910. package/es/components/table/Gallery/components/GalleryItem/components/RenderFields/index.less +37 -37
  911. package/es/components/table/Gallery/components/GalleryItem/components/Title/index.d.ts +9 -8
  912. package/es/components/table/Gallery/components/GalleryItem/components/Title/index.less +17 -17
  913. package/es/components/table/Gallery/components/GalleryItem/index.d.ts +14 -14
  914. package/es/components/table/Gallery/components/GalleryItem/index.less +29 -29
  915. package/es/components/table/Gallery/components/VirtualGrid/index.d.ts +13 -13
  916. package/es/components/table/Gallery/components/VirtualGrid/index.less +4 -4
  917. package/es/components/table/Gallery/components/VirtualGrid/useGapSize.d.ts +5 -5
  918. package/es/components/table/Gallery/components/VirtualGrid/useGenGridProps.d.ts +14 -14
  919. package/es/components/table/Gallery/constant.d.ts +4 -4
  920. package/es/components/table/Gallery/index.d.ts +5 -5
  921. package/es/components/table/Gallery/index.less +28 -28
  922. package/es/components/table/Gallery/types.d.ts +10 -10
  923. package/es/components/table/Header/Buttons/index.d.ts +3 -3
  924. package/es/components/table/Header/index.d.ts +11 -11
  925. package/es/components/table/Header/index.less +23 -23
  926. package/es/components/table/Summary/index.d.ts +4 -3
  927. package/es/components/table/Summary/index.less +4 -4
  928. package/es/components/table/Table/AddFieldModal/index.d.ts +3 -3
  929. package/es/components/table/Table/AddFieldModal/index.less +83 -83
  930. package/es/components/table/Table/SelectField/index.d.ts +3 -2
  931. package/es/components/table/Table/SelectField/index.less +96 -96
  932. package/es/components/table/Table/fields/date/Config/index.d.ts +3 -2
  933. package/es/components/table/Table/fields/date/Edit/index.d.ts +4 -4
  934. package/es/components/table/Table/fields/date/Show/index.d.ts +4 -3
  935. package/es/components/table/Table/fields/date/Sort/index.d.ts +3 -2
  936. package/es/components/table/Table/fields/date/filterUtil/index.d.ts +13 -13
  937. package/es/components/table/Table/fields/date/filterUtil/index.js +6 -6
  938. package/es/components/table/Table/fields/date/index.d.ts +16 -15
  939. package/es/components/table/Table/fields/image/Config/index.d.ts +3 -2
  940. package/es/components/table/Table/fields/image/Edit/index.d.ts +4 -4
  941. package/es/components/table/Table/fields/image/Show/index.d.ts +4 -3
  942. package/es/components/table/Table/fields/image/Sort/index.d.ts +3 -2
  943. package/es/components/table/Table/fields/image/index.d.ts +14 -13
  944. package/es/components/table/Table/fields/index.d.ts +386 -385
  945. package/es/components/table/Table/fields/link/Config/index.d.ts +3 -2
  946. package/es/components/table/Table/fields/link/Edit/index.d.ts +4 -4
  947. package/es/components/table/Table/fields/link/Show/index.d.ts +4 -3
  948. package/es/components/table/Table/fields/link/Sort/index.d.ts +3 -2
  949. package/es/components/table/Table/fields/link/index.d.ts +14 -13
  950. package/es/components/table/Table/fields/number/Config/index.d.ts +3 -2
  951. package/es/components/table/Table/fields/number/Edit/index.d.ts +4 -4
  952. package/es/components/table/Table/fields/number/Show/index.d.ts +4 -3
  953. package/es/components/table/Table/fields/number/Sort/index.d.ts +3 -2
  954. package/es/components/table/Table/fields/number/filterUtil/index.d.ts +5 -5
  955. package/es/components/table/Table/fields/number/index.d.ts +16 -15
  956. package/es/components/table/Table/fields/numberRange/Config/index.d.ts +3 -2
  957. package/es/components/table/Table/fields/numberRange/Edit/index.d.ts +4 -4
  958. package/es/components/table/Table/fields/numberRange/Show/index.d.ts +4 -3
  959. package/es/components/table/Table/fields/numberRange/Sort/index.d.ts +3 -2
  960. package/es/components/table/Table/fields/numberRange/filterUtil/index.d.ts +8 -8
  961. package/es/components/table/Table/fields/numberRange/index.d.ts +16 -15
  962. package/es/components/table/Table/fields/oldRangePicker/Config/index.d.ts +3 -2
  963. package/es/components/table/Table/fields/oldRangePicker/Edit/index.d.ts +4 -4
  964. package/es/components/table/Table/fields/oldRangePicker/Show/index.d.ts +4 -3
  965. package/es/components/table/Table/fields/oldRangePicker/Sort/index.d.ts +3 -2
  966. package/es/components/table/Table/fields/oldRangePicker/filterUtil/index.d.ts +13 -13
  967. package/es/components/table/Table/fields/oldRangePicker/filterUtil/index.js +11 -11
  968. package/es/components/table/Table/fields/oldRangePicker/index.d.ts +16 -15
  969. package/es/components/table/Table/fields/pSwitch/Config/index.d.ts +3 -2
  970. package/es/components/table/Table/fields/pSwitch/Edit/index.d.ts +4 -4
  971. package/es/components/table/Table/fields/pSwitch/Show/index.d.ts +4 -3
  972. package/es/components/table/Table/fields/pSwitch/Sort/index.d.ts +3 -2
  973. package/es/components/table/Table/fields/pSwitch/index.d.ts +14 -13
  974. package/es/components/table/Table/fields/rangePicker/Config/index.d.ts +3 -2
  975. package/es/components/table/Table/fields/rangePicker/Edit/index.d.ts +4 -4
  976. package/es/components/table/Table/fields/rangePicker/Show/index.d.ts +4 -3
  977. package/es/components/table/Table/fields/rangePicker/Sort/index.d.ts +3 -2
  978. package/es/components/table/Table/fields/rangePicker/filterUtil/index.d.ts +13 -13
  979. package/es/components/table/Table/fields/rangePicker/filterUtil/index.js +11 -11
  980. package/es/components/table/Table/fields/rangePicker/index.d.ts +16 -15
  981. package/es/components/table/Table/fields/search/Config/index.d.ts +3 -2
  982. package/es/components/table/Table/fields/search/Edit/index.d.ts +4 -4
  983. package/es/components/table/Table/fields/search/Show/index.d.ts +4 -3
  984. package/es/components/table/Table/fields/search/Sort/index.d.ts +3 -2
  985. package/es/components/table/Table/fields/search/filterUtil/index.d.ts +5 -5
  986. package/es/components/table/Table/fields/search/index.d.ts +16 -15
  987. package/es/components/table/Table/fields/select/Config/index.d.ts +3 -2
  988. package/es/components/table/Table/fields/select/Edit/index.d.ts +4 -4
  989. package/es/components/table/Table/fields/select/Show/index.d.ts +4 -3
  990. package/es/components/table/Table/fields/select/Sort/index.d.ts +3 -2
  991. package/es/components/table/Table/fields/select/filterUtil/index.d.ts +5 -5
  992. package/es/components/table/Table/fields/select/index.d.ts +16 -15
  993. package/es/components/table/Table/fields/text/Config/index.d.ts +3 -2
  994. package/es/components/table/Table/fields/text/Edit/index.d.ts +4 -4
  995. package/es/components/table/Table/fields/text/Show/index.d.ts +5 -4
  996. package/es/components/table/Table/fields/text/Show/index.less +8 -8
  997. package/es/components/table/Table/fields/text/Sort/index.d.ts +3 -2
  998. package/es/components/table/Table/fields/text/filterUtil/index.d.ts +5 -5
  999. package/es/components/table/Table/fields/text/index.d.ts +16 -15
  1000. package/es/components/table/Table/fields/treeSelect/Config/index.d.ts +3 -2
  1001. package/es/components/table/Table/fields/treeSelect/Edit/index.d.ts +4 -4
  1002. package/es/components/table/Table/fields/treeSelect/Show/index.d.ts +4 -3
  1003. package/es/components/table/Table/fields/treeSelect/Sort/index.d.ts +3 -2
  1004. package/es/components/table/Table/fields/treeSelect/filterUtil/index.d.ts +5 -5
  1005. package/es/components/table/Table/fields/treeSelect/index.d.ts +16 -15
  1006. package/es/components/table/Table/fields/types/index.d.ts +30 -30
  1007. package/es/components/table/Table/fields/utils/index.d.ts +1 -1
  1008. package/es/components/table/Table/index.d.ts +4 -4
  1009. package/es/components/table/Table/index.less +35 -35
  1010. package/es/components/table/Table/tableConfig/SortRow/index.d.ts +4 -3
  1011. package/es/components/table/Table/tableConfig/body/CellContent/index.d.ts +4 -4
  1012. package/es/components/table/Table/tableConfig/body/CellContent/index.less +14 -14
  1013. package/es/components/table/Table/tableConfig/body/CellProvider/index.d.ts +4 -4
  1014. package/es/components/table/Table/tableConfig/body/CellProvider/index.less +14 -14
  1015. package/es/components/table/Table/tableConfig/body/index.d.ts +35 -35
  1016. package/es/components/table/Table/tableConfig/body/index.less +20 -20
  1017. package/es/components/table/Table/tableConfig/header/CellProvider/index.d.ts +14 -14
  1018. package/es/components/table/Table/tableConfig/header/CellProvider/index.less +35 -35
  1019. package/es/components/table/Table/tableConfig/header/index.d.ts +19 -19
  1020. package/es/components/table/Table/tableConfig/summary/index.d.ts +3 -2
  1021. package/es/components/table/Table/utils.d.ts +161 -161
  1022. package/es/components/table/Table/utils.js +71 -71
  1023. package/es/components/table/TableFilter/SortIcon.d.ts +6 -5
  1024. package/es/components/table/TableFilter/index.less +13 -13
  1025. package/es/components/table/TableFilter/numberFilter.d.ts +6 -6
  1026. package/es/components/table/TableFilter/selectFilter.d.ts +10 -10
  1027. package/es/components/table/TableFilter/stringFilter.d.ts +6 -6
  1028. package/es/components/table/Tabs/index.d.ts +14 -14
  1029. package/es/components/table/View/index.d.ts +6 -5
  1030. package/es/components/table/hooks/useGenScroll.d.ts +22 -22
  1031. package/es/components/table/hooks/useGenTableComponents.d.ts +16 -16
  1032. package/es/components/table/hooks/useIsMobileTable.d.ts +2 -2
  1033. package/es/components/table/hooks/useMergeColumnSetting.d.ts +18 -18
  1034. package/es/components/table/hooks/useTableSetting.d.ts +21 -21
  1035. package/es/components/table/hooks/useTableSetting.js +10 -10
  1036. package/es/components/table/hooks/useTransColumns.d.ts +14 -14
  1037. package/es/components/table/hooks/useTransDataSource.d.ts +11 -11
  1038. package/es/components/table/hooks/useTransDataSource.js +7 -7
  1039. package/es/components/table/hooks/useTransDataSourceGroupSetting.d.ts +7 -7
  1040. package/es/components/table/hooks/useTransFilterSetting.d.ts +7 -7
  1041. package/es/components/table/hooks/useTransSortSetting.d.ts +7 -7
  1042. package/es/components/table/hooks/useTriggerValuesChange.d.ts +16 -16
  1043. package/es/components/table/hooks/useTriggerValuesChange.js +10 -10
  1044. package/es/components/table/index.d.ts +4 -4
  1045. package/es/components/table/index.less +152 -152
  1046. package/es/components/table/model.d.ts +30 -30
  1047. package/es/components/table/serve.d.ts +13 -13
  1048. package/es/components/table/serve.js +7 -7
  1049. package/es/components/table/status.d.ts +19 -19
  1050. package/es/components/table/types.d.ts +268 -268
  1051. package/es/components/table/utils.d.ts +14 -14
  1052. package/es/components/tabs/index.d.ts +17 -17
  1053. package/es/components/tabs/index.less +60 -60
  1054. package/es/components/time-picker/index.d.ts +3 -2
  1055. package/es/components/translation/index.d.ts +14 -14
  1056. package/es/components/translation/index.less +15 -15
  1057. package/es/components/translation/utils.d.ts +7 -7
  1058. package/es/components/tree-select/index.d.ts +2 -2
  1059. package/es/components/typography/index.d.ts +2 -2
  1060. package/es/components/upload/index.d.ts +3 -2
  1061. package/es/components/versionModal/index.d.ts +23 -23
  1062. package/es/components/versionModal/index.less +10 -10
  1063. package/es/components/versionSelect/index.d.ts +18 -17
  1064. package/es/components/versionSelect/index.less +3 -3
  1065. package/es/components/virtual-keyboard/Amount/index.d.ts +22 -22
  1066. package/es/components/virtual-keyboard/BaseNumberKeyboard/Presets.d.ts +12 -11
  1067. package/es/components/virtual-keyboard/BaseNumberKeyboard/Presets.less +18 -18
  1068. package/es/components/virtual-keyboard/BaseNumberKeyboard/index.d.ts +19 -19
  1069. package/es/components/virtual-keyboard/BaseNumberKeyboard/index.less +8 -8
  1070. package/es/components/virtual-keyboard/Keyboard/index.d.ts +21 -21
  1071. package/es/components/virtual-keyboard/Keyboard/index.less +43 -43
  1072. package/es/components/virtual-keyboard/Number/index.d.ts +14 -13
  1073. package/es/components/virtual-keyboard/Time/index.d.ts +13 -13
  1074. package/es/components/virtual-keyboard/Time/utils.d.ts +10 -9
  1075. package/es/components/virtual-keyboard/VirtualInput/index.d.ts +9 -9
  1076. package/es/components/virtual-keyboard/VirtualInput/index.less +46 -46
  1077. package/es/components/virtual-keyboard/VirtualKeyInput/index.d.ts +12 -11
  1078. package/es/components/virtual-keyboard/VirtualKeyInput/index.less +51 -51
  1079. package/es/components/virtual-keyboard/index.d.ts +14 -14
  1080. package/es/components/virtual-keyboard/index.less +16 -16
  1081. package/es/components/walletCard/Guest/index.d.ts +4 -3
  1082. package/es/components/walletCard/Guest/index.js +13 -13
  1083. package/es/components/walletCard/Guest/index.less +71 -71
  1084. package/es/components/walletCard/Guide/index.d.ts +4 -3
  1085. package/es/components/walletCard/Guide/index.js +13 -13
  1086. package/es/components/walletCard/Guide/index.less +71 -71
  1087. package/es/components/walletCard/index.d.ts +77 -77
  1088. package/es/components/walletCard/index.js +2 -2
  1089. package/es/components/walletCard/index.less +353 -353
  1090. package/es/hooks/index.d.ts +3 -3
  1091. package/es/hooks/useCssVariables.d.ts +8 -8
  1092. package/es/hooks/useEngineContext.d.ts +9 -9
  1093. package/es/hooks/useMobile.d.ts +8 -0
  1094. package/es/hooks/useMobile.js +43 -0
  1095. package/es/hooks/useResponsive.d.ts +4 -4
  1096. package/es/hooks/useSetRequest.d.ts +2 -2
  1097. package/es/hooks/useSharedState.d.ts +11 -11
  1098. package/es/hooks/useSharedState.js +7 -7
  1099. package/es/hooks/useTranslationOriginal.d.ts +2 -2
  1100. package/es/index.d.ts +168 -142
  1101. package/es/index.js +16 -1
  1102. package/es/locales/en-US.d.ts +316 -293
  1103. package/es/locales/en-US.js +30 -1
  1104. package/es/locales/index.d.ts +1 -1
  1105. package/es/locales/index.js +6 -6
  1106. package/es/locales/zh-CN.d.ts +311 -288
  1107. package/es/locales/zh-CN.js +30 -1
  1108. package/es/locales/zh-TW.d.ts +311 -288
  1109. package/es/locales/zh-TW.js +30 -1
  1110. package/es/typings.d.ts +9 -9
  1111. package/es/utils/hoc.d.ts +17 -17
  1112. package/es/utils/hoc.js +9 -9
  1113. package/es/utils/index.d.ts +4 -4
  1114. package/es/utils/locale.d.ts +1 -1
  1115. package/es/utils/mergeWith.d.ts +1 -1
  1116. package/es/utils/miniRedux.d.ts +17 -17
  1117. package/es/utils/platform.d.ts +1 -1
  1118. package/es/utils/warning.d.ts +1 -1
  1119. package/lib/components/DragSortList/index.d.ts +38 -38
  1120. package/lib/components/MultipleContainersSortList/index.d.ts +26 -26
  1121. package/lib/components/MultipleContainersSortList/index.less +5 -5
  1122. package/lib/components/Pagination/index.d.ts +14 -14
  1123. package/lib/components/Pagination/index.less +214 -214
  1124. package/lib/components/PisellBasicGrid/PisellBasicGrid.d.ts +10 -0
  1125. package/lib/components/PisellBasicGrid/PisellBasicGrid.js +132 -0
  1126. package/lib/components/PisellBasicGrid/PisellBasicGrid.less +20 -0
  1127. package/lib/components/PisellBasicGrid/hooks/index.d.ts +1 -0
  1128. package/lib/components/PisellBasicGrid/hooks/index.js +40 -0
  1129. package/lib/components/PisellBasicGrid/hooks/useGridStyle.d.ts +37 -0
  1130. package/lib/components/PisellBasicGrid/hooks/useGridStyle.js +104 -0
  1131. package/lib/components/PisellBasicGrid/index.d.ts +6 -0
  1132. package/lib/components/PisellBasicGrid/index.js +40 -0
  1133. package/lib/components/PisellBasicGrid/types.d.ts +221 -0
  1134. package/lib/components/PisellBasicGrid/types.js +17 -0
  1135. package/lib/components/PisellBasicGrid/utils/index.d.ts +63 -0
  1136. package/lib/components/PisellBasicGrid/utils/index.js +108 -0
  1137. package/lib/components/PisellCards/PisellCards.d.ts +8 -0
  1138. package/lib/components/PisellCards/PisellCards.js +28 -0
  1139. package/lib/components/PisellCards/PisellCards.less +1 -0
  1140. package/lib/components/PisellCards/components/GraphicTextCard/GraphicTextCard.d.ts +9 -0
  1141. package/lib/components/PisellCards/components/GraphicTextCard/GraphicTextCard.js +136 -0
  1142. package/lib/components/PisellCards/components/GraphicTextCard/GraphicTextCard.less +320 -0
  1143. package/lib/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.d.ts +5 -0
  1144. package/lib/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.js +35 -0
  1145. package/lib/components/PisellCards/components/GraphicTextCard/components/GraphicArea.d.ts +24 -0
  1146. package/lib/components/PisellCards/components/GraphicTextCard/components/GraphicArea.js +108 -0
  1147. package/lib/components/PisellCards/components/GraphicTextCard/components/TextContent.d.ts +27 -0
  1148. package/lib/components/PisellCards/components/GraphicTextCard/components/TextContent.js +101 -0
  1149. package/lib/components/PisellCards/components/GraphicTextCard/components/index.d.ts +6 -0
  1150. package/lib/components/PisellCards/components/GraphicTextCard/components/index.js +45 -0
  1151. package/lib/components/PisellCards/components/GraphicTextCard/hooks/index.d.ts +5 -0
  1152. package/lib/components/PisellCards/components/GraphicTextCard/hooks/index.js +32 -0
  1153. package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.d.ts +15 -0
  1154. package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.js +54 -0
  1155. package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.d.ts +18 -0
  1156. package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.js +92 -0
  1157. package/lib/components/PisellCards/components/GraphicTextCard/index.d.ts +5 -0
  1158. package/lib/components/PisellCards/components/GraphicTextCard/index.js +35 -0
  1159. package/lib/components/PisellCards/components/GraphicTextCard/types.d.ts +290 -0
  1160. package/lib/components/PisellCards/components/GraphicTextCard/types.js +17 -0
  1161. package/lib/components/PisellCards/components/GraphicTextCard/utils/index.d.ts +19 -0
  1162. package/lib/components/PisellCards/components/GraphicTextCard/utils/index.js +55 -0
  1163. package/lib/components/PisellCards/components/MultilevelCard/MultilevelCard.d.ts +19 -0
  1164. package/lib/components/PisellCards/components/MultilevelCard/MultilevelCard.js +137 -0
  1165. package/lib/components/PisellCards/components/MultilevelCard/MultilevelCard.less +52 -0
  1166. package/lib/components/PisellCards/components/MultilevelCard/components/CardWrapper.d.ts +7 -0
  1167. package/lib/components/PisellCards/components/MultilevelCard/components/CardWrapper.js +79 -0
  1168. package/lib/components/PisellCards/components/MultilevelCard/components/PanelWrapper.d.ts +7 -0
  1169. package/lib/components/PisellCards/components/MultilevelCard/components/PanelWrapper.js +121 -0
  1170. package/lib/components/PisellCards/components/MultilevelCard/components/index.d.ts +2 -0
  1171. package/lib/components/PisellCards/components/MultilevelCard/components/index.js +32 -0
  1172. package/lib/components/PisellCards/components/MultilevelCard/hooks/index.d.ts +2 -0
  1173. package/lib/components/PisellCards/components/MultilevelCard/hooks/index.js +32 -0
  1174. package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.d.ts +32 -0
  1175. package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.js +45 -0
  1176. package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.d.ts +28 -0
  1177. package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.js +71 -0
  1178. package/lib/components/PisellCards/components/MultilevelCard/index.d.ts +2 -0
  1179. package/lib/components/PisellCards/components/MultilevelCard/index.js +35 -0
  1180. package/lib/components/PisellCards/components/MultilevelCard/types.d.ts +202 -0
  1181. package/lib/components/PisellCards/components/MultilevelCard/types.js +17 -0
  1182. package/lib/components/PisellCards/components/MultilevelCard/utils/index.d.ts +6 -0
  1183. package/lib/components/PisellCards/components/MultilevelCard/utils/index.js +37 -0
  1184. package/lib/components/PisellCards/components/PisellImageCard/PisellImageCard.d.ts +9 -0
  1185. package/lib/components/PisellCards/components/PisellImageCard/PisellImageCard.js +131 -0
  1186. package/lib/components/PisellCards/components/PisellImageCard/PisellImageCard.less +94 -0
  1187. package/lib/components/PisellCards/components/PisellImageCard/components/index.d.ts +0 -0
  1188. package/lib/components/PisellCards/components/PisellImageCard/components/index.js +0 -0
  1189. package/lib/components/PisellCards/components/PisellImageCard/hooks/index.d.ts +5 -0
  1190. package/lib/components/PisellCards/components/PisellImageCard/hooks/index.js +32 -0
  1191. package/lib/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.d.ts +12 -0
  1192. package/lib/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.js +86 -0
  1193. package/lib/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.d.ts +10 -0
  1194. package/lib/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.js +86 -0
  1195. package/lib/components/PisellCards/components/PisellImageCard/index.d.ts +5 -0
  1196. package/lib/components/PisellCards/components/PisellImageCard/index.js +35 -0
  1197. package/lib/components/PisellCards/components/PisellImageCard/types.d.ts +74 -0
  1198. package/lib/components/PisellCards/components/PisellImageCard/types.js +17 -0
  1199. package/lib/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.d.ts +7 -0
  1200. package/lib/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.js +37 -0
  1201. package/lib/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.d.ts +7 -0
  1202. package/lib/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.js +32 -0
  1203. package/lib/components/PisellCards/components/PisellImageCard/utils/index.d.ts +5 -0
  1204. package/lib/components/PisellCards/components/PisellImageCard/utils/index.js +32 -0
  1205. package/lib/components/PisellCards/components/TabCard/TabCard.d.ts +4 -0
  1206. package/lib/components/PisellCards/components/TabCard/TabCard.js +153 -0
  1207. package/lib/components/PisellCards/components/TabCard/TabCard.less +186 -0
  1208. package/lib/components/PisellCards/components/TabCard/index.d.ts +5 -0
  1209. package/lib/components/PisellCards/components/TabCard/index.js +35 -0
  1210. package/lib/components/PisellCards/components/TabCard/types.d.ts +70 -0
  1211. package/lib/components/PisellCards/components/TabCard/types.js +17 -0
  1212. package/lib/components/PisellCards/components/TextCard/TextCard.d.ts +8 -0
  1213. package/lib/components/PisellCards/components/TextCard/TextCard.js +189 -0
  1214. package/lib/components/PisellCards/components/TextCard/TextCard.less +193 -0
  1215. package/lib/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +26 -0
  1216. package/lib/components/PisellCards/components/TextCard/components/BadgeWrapper.js +71 -0
  1217. package/lib/components/PisellCards/components/TextCard/components/IconWrapper.d.ts +17 -0
  1218. package/lib/components/PisellCards/components/TextCard/components/IconWrapper.js +62 -0
  1219. package/lib/components/PisellCards/components/TextCard/components/TextContent.d.ts +21 -0
  1220. package/lib/components/PisellCards/components/TextCard/components/TextContent.js +92 -0
  1221. package/lib/components/PisellCards/components/TextCard/components/index.d.ts +6 -0
  1222. package/lib/components/PisellCards/components/TextCard/components/index.js +45 -0
  1223. package/lib/components/PisellCards/components/TextCard/hooks/index.d.ts +0 -0
  1224. package/lib/components/PisellCards/components/TextCard/hooks/index.js +0 -0
  1225. package/lib/components/PisellCards/components/TextCard/index.d.ts +5 -0
  1226. package/lib/components/PisellCards/components/TextCard/index.js +35 -0
  1227. package/lib/components/PisellCards/components/TextCard/types.d.ts +270 -0
  1228. package/lib/components/PisellCards/components/TextCard/types.js +17 -0
  1229. package/lib/components/PisellCards/components/TextCard/utils/index.d.ts +0 -0
  1230. package/lib/components/PisellCards/components/TextCard/utils/index.js +0 -0
  1231. package/lib/components/PisellCards/components/index.d.ts +10 -0
  1232. package/lib/components/PisellCards/components/index.js +51 -0
  1233. package/lib/components/PisellCards/hooks/index.d.ts +0 -0
  1234. package/lib/components/PisellCards/hooks/index.js +0 -0
  1235. package/lib/components/PisellCards/index.d.ts +15 -0
  1236. package/lib/components/PisellCards/index.js +47 -0
  1237. package/lib/components/PisellCards/types.d.ts +48 -0
  1238. package/lib/components/PisellCards/types.js +17 -0
  1239. package/lib/components/PisellCards/utils/index.d.ts +0 -0
  1240. package/lib/components/PisellCards/utils/index.js +0 -0
  1241. package/lib/components/PisellProcedure/PisellProcedure.d.ts +22 -0
  1242. package/lib/components/PisellProcedure/PisellProcedure.js +189 -0
  1243. package/lib/components/PisellProcedure/PisellProcedure.less +529 -0
  1244. package/lib/components/PisellProcedure/PisellProcedure.stories.d.ts +163 -0
  1245. package/lib/components/PisellProcedure/PisellProcedure.stories.js +925 -0
  1246. package/lib/components/PisellProcedure/components/FooterActions.d.ts +24 -0
  1247. package/lib/components/PisellProcedure/components/FooterActions.js +97 -0
  1248. package/lib/components/PisellProcedure/components/ProcedureBody.d.ts +41 -0
  1249. package/lib/components/PisellProcedure/components/ProcedureBody.js +161 -0
  1250. package/lib/components/PisellProcedure/components/ProcedureContent.d.ts +23 -0
  1251. package/lib/components/PisellProcedure/components/ProcedureContent.js +50 -0
  1252. package/lib/components/PisellProcedure/components/ProcedureFooter.d.ts +38 -0
  1253. package/lib/components/PisellProcedure/components/ProcedureFooter.js +156 -0
  1254. package/lib/components/PisellProcedure/components/ProcedureHeader.d.ts +34 -0
  1255. package/lib/components/PisellProcedure/components/ProcedureHeader.js +231 -0
  1256. package/lib/components/PisellProcedure/components/ProcedureSidebar.d.ts +38 -0
  1257. package/lib/components/PisellProcedure/components/ProcedureSidebar.js +133 -0
  1258. package/lib/components/PisellProcedure/components/index.d.ts +12 -0
  1259. package/lib/components/PisellProcedure/components/index.js +54 -0
  1260. package/lib/components/PisellProcedure/hooks/index.d.ts +8 -0
  1261. package/lib/components/PisellProcedure/hooks/index.js +41 -0
  1262. package/lib/components/PisellProcedure/hooks/useElementSize.d.ts +38 -0
  1263. package/lib/components/PisellProcedure/hooks/useElementSize.js +88 -0
  1264. package/lib/components/PisellProcedure/hooks/useOverflowActions.d.ts +43 -0
  1265. package/lib/components/PisellProcedure/hooks/useOverflowActions.js +248 -0
  1266. package/lib/components/PisellProcedure/hooks/useResponsiveClass.d.ts +6 -0
  1267. package/lib/components/PisellProcedure/hooks/useResponsiveClass.js +58 -0
  1268. package/lib/components/PisellProcedure/hooks/useSidebarHeight.d.ts +16 -0
  1269. package/lib/components/PisellProcedure/hooks/useSidebarHeight.js +120 -0
  1270. package/lib/components/PisellProcedure/hooks/useStepManager.d.ts +50 -0
  1271. package/lib/components/PisellProcedure/hooks/useStepManager.js +90 -0
  1272. package/lib/components/PisellProcedure/index.d.ts +5 -0
  1273. package/lib/components/PisellProcedure/index.js +35 -0
  1274. package/lib/components/PisellProcedure/types.d.ts +363 -0
  1275. package/lib/components/PisellProcedure/types.js +17 -0
  1276. package/lib/components/PisellProcedure/utils/classNames.d.ts +33 -0
  1277. package/lib/components/PisellProcedure/utils/classNames.js +41 -0
  1278. package/lib/components/PisellProcedure/utils/extractText.d.ts +20 -0
  1279. package/lib/components/PisellProcedure/utils/extractText.js +49 -0
  1280. package/lib/components/PisellProcedure/utils/footerPosition.d.ts +41 -0
  1281. package/lib/components/PisellProcedure/utils/footerPosition.js +58 -0
  1282. package/lib/components/PisellProcedure/utils/index.d.ts +8 -0
  1283. package/lib/components/PisellProcedure/utils/index.js +67 -0
  1284. package/lib/components/PisellProcedure/utils/layoutRatio.d.ts +42 -0
  1285. package/lib/components/PisellProcedure/utils/layoutRatio.js +78 -0
  1286. package/lib/components/PisellProcedure/utils/slotHelper.d.ts +27 -0
  1287. package/lib/components/PisellProcedure/utils/slotHelper.js +53 -0
  1288. package/lib/components/PisellScrollView/PisellScrollView.d.ts +5 -0
  1289. package/lib/components/PisellScrollView/PisellScrollView.js +310 -0
  1290. package/lib/components/PisellScrollView/PisellScrollView.less +178 -0
  1291. package/lib/components/PisellScrollView/PisellScrollView.stories.d.ts +87 -0
  1292. package/lib/components/PisellScrollView/PisellScrollView.stories.js +535 -0
  1293. package/lib/components/PisellScrollView/components/Actions/index.d.ts +12 -0
  1294. package/lib/components/PisellScrollView/components/Actions/index.js +220 -0
  1295. package/lib/components/PisellScrollView/components/Actions/index.less +134 -0
  1296. package/lib/components/PisellScrollView/hooks/index.d.ts +3 -0
  1297. package/lib/components/PisellScrollView/hooks/index.js +27 -0
  1298. package/lib/components/PisellScrollView/hooks/useIntersection.d.ts +8 -0
  1299. package/lib/components/PisellScrollView/hooks/useIntersection.js +67 -0
  1300. package/lib/components/PisellScrollView/hooks/useScrollEvents.d.ts +20 -0
  1301. package/lib/components/PisellScrollView/hooks/useScrollEvents.js +114 -0
  1302. package/lib/components/PisellScrollView/hooks/useScrollState.d.ts +13 -0
  1303. package/lib/components/PisellScrollView/hooks/useScrollState.js +208 -0
  1304. package/lib/components/PisellScrollView/index.d.ts +3 -0
  1305. package/lib/components/PisellScrollView/index.js +36 -0
  1306. package/lib/components/PisellScrollView/types.d.ts +203 -0
  1307. package/lib/components/PisellScrollView/types.js +17 -0
  1308. package/lib/components/PisellScrollView/utils/index.d.ts +0 -0
  1309. package/lib/components/PisellScrollView/utils/index.js +0 -0
  1310. package/lib/components/PisellSteps/PisellSteps.d.ts +14 -0
  1311. package/lib/components/PisellSteps/PisellSteps.js +252 -0
  1312. package/lib/components/PisellSteps/PisellSteps.less +332 -0
  1313. package/lib/components/PisellSteps/PisellSteps.stories.d.ts +155 -0
  1314. package/lib/components/PisellSteps/PisellSteps.stories.js +570 -0
  1315. package/lib/components/PisellSteps/hooks/index.d.ts +4 -0
  1316. package/lib/components/PisellSteps/hooks/index.js +38 -0
  1317. package/lib/components/PisellSteps/hooks/useAnchor.d.ts +9 -0
  1318. package/lib/components/PisellSteps/hooks/useAnchor.js +66 -0
  1319. package/lib/components/PisellSteps/hooks/useResponsive.d.ts +8 -0
  1320. package/lib/components/PisellSteps/hooks/useResponsive.js +48 -0
  1321. package/lib/components/PisellSteps/hooks/useStepClick.d.ts +11 -0
  1322. package/lib/components/PisellSteps/hooks/useStepClick.js +55 -0
  1323. package/lib/components/PisellSteps/hooks/useStepsState.d.ts +9 -0
  1324. package/lib/components/PisellSteps/hooks/useStepsState.js +56 -0
  1325. package/lib/components/PisellSteps/index.d.ts +3 -0
  1326. package/lib/components/PisellSteps/index.js +36 -0
  1327. package/lib/components/PisellSteps/types.d.ts +257 -0
  1328. package/lib/components/PisellSteps/types.js +17 -0
  1329. package/lib/components/PisellSteps/utils/index.d.ts +54 -0
  1330. package/lib/components/PisellSteps/utils/index.js +88 -0
  1331. package/lib/components/PisellSuperTabs/PisellSuperTabs.d.ts +8 -0
  1332. package/lib/components/PisellSuperTabs/PisellSuperTabs.js +207 -0
  1333. package/lib/components/PisellSuperTabs/PisellSuperTabs.less +35 -0
  1334. package/lib/components/PisellSuperTabs/components/index.d.ts +0 -0
  1335. package/lib/components/PisellSuperTabs/components/index.js +0 -0
  1336. package/lib/components/PisellSuperTabs/hooks/index.d.ts +1 -0
  1337. package/lib/components/PisellSuperTabs/hooks/index.js +29 -0
  1338. package/lib/components/PisellSuperTabs/hooks/useTabsState.d.ts +7 -0
  1339. package/lib/components/PisellSuperTabs/hooks/useTabsState.js +50 -0
  1340. package/lib/components/PisellSuperTabs/index.d.ts +3 -0
  1341. package/lib/components/PisellSuperTabs/index.js +36 -0
  1342. package/lib/components/PisellSuperTabs/types.d.ts +210 -0
  1343. package/lib/components/PisellSuperTabs/types.js +17 -0
  1344. package/lib/components/PisellSuperTabs/utils/getRowKey.d.ts +8 -0
  1345. package/lib/components/PisellSuperTabs/utils/getRowKey.js +50 -0
  1346. package/lib/components/PisellSuperTabs/utils/index.d.ts +1 -0
  1347. package/lib/components/PisellSuperTabs/utils/index.js +29 -0
  1348. package/lib/components/PisellTabbar/PisellTabbar.d.ts +20 -0
  1349. package/lib/components/PisellTabbar/PisellTabbar.js +185 -0
  1350. package/lib/components/PisellTabbar/PisellTabbar.less +26 -0
  1351. package/lib/components/PisellTabbar/components/TabbarLevel.d.ts +8 -0
  1352. package/lib/components/PisellTabbar/components/TabbarLevel.js +295 -0
  1353. package/lib/components/PisellTabbar/components/index.d.ts +1 -0
  1354. package/lib/components/PisellTabbar/components/index.js +39 -0
  1355. package/lib/components/PisellTabbar/constants.d.ts +46 -0
  1356. package/lib/components/PisellTabbar/constants.js +100 -0
  1357. package/lib/components/PisellTabbar/hooks/index.d.ts +2 -0
  1358. package/lib/components/PisellTabbar/hooks/index.js +42 -0
  1359. package/lib/components/PisellTabbar/hooks/useActiveKey.d.ts +49 -0
  1360. package/lib/components/PisellTabbar/hooks/useActiveKey.js +57 -0
  1361. package/lib/components/PisellTabbar/hooks/useExpand.d.ts +41 -0
  1362. package/lib/components/PisellTabbar/hooks/useExpand.js +53 -0
  1363. package/lib/components/PisellTabbar/index.d.ts +9 -0
  1364. package/lib/components/PisellTabbar/index.js +42 -0
  1365. package/lib/components/PisellTabbar/locales.d.ts +15 -0
  1366. package/lib/components/PisellTabbar/locales.js +38 -0
  1367. package/lib/components/PisellTabbar/mock.d.ts +47 -0
  1368. package/lib/components/PisellTabbar/mock.js +1482 -0
  1369. package/lib/components/PisellTabbar/template/Template1/PisellTabbar.d.ts +20 -0
  1370. package/lib/components/PisellTabbar/template/Template1/PisellTabbar.js +436 -0
  1371. package/lib/components/PisellTabbar/template/Template1/constants.d.ts +10 -0
  1372. package/lib/components/PisellTabbar/template/Template1/constants.js +60 -0
  1373. package/lib/components/PisellTabbar/template/Template1/index.d.ts +6 -0
  1374. package/lib/components/PisellTabbar/template/Template1/index.js +36 -0
  1375. package/lib/components/PisellTabbar/template/Template1/utils/index.d.ts +35 -0
  1376. package/lib/components/PisellTabbar/template/Template1/utils/index.js +68 -0
  1377. package/lib/components/PisellTabbar/template/index.d.ts +0 -0
  1378. package/lib/components/PisellTabbar/template/index.js +0 -0
  1379. package/lib/components/PisellTabbar/types.d.ts +111 -0
  1380. package/lib/components/PisellTabbar/types.js +17 -0
  1381. package/lib/components/PisellTabbar/utils/index.d.ts +68 -0
  1382. package/lib/components/PisellTabbar/utils/index.js +77 -0
  1383. package/lib/components/PisellTabbar2/PisellTabbar.d.ts +23 -0
  1384. package/lib/components/PisellTabbar2/PisellTabbar.js +263 -0
  1385. package/lib/components/PisellTabbar2/PisellTabbar.less +26 -0
  1386. package/lib/components/PisellTabbar2/components/TabbarLevel.d.ts +8 -0
  1387. package/lib/components/PisellTabbar2/components/TabbarLevel.js +367 -0
  1388. package/lib/components/PisellTabbar2/components/index.d.ts +1 -0
  1389. package/lib/components/PisellTabbar2/components/index.js +39 -0
  1390. package/lib/components/PisellTabbar2/constants.d.ts +46 -0
  1391. package/lib/components/PisellTabbar2/constants.js +100 -0
  1392. package/lib/components/PisellTabbar2/hooks/index.d.ts +2 -0
  1393. package/lib/components/PisellTabbar2/hooks/index.js +42 -0
  1394. package/lib/components/PisellTabbar2/hooks/useActiveKey.d.ts +50 -0
  1395. package/lib/components/PisellTabbar2/hooks/useActiveKey.js +75 -0
  1396. package/lib/components/PisellTabbar2/hooks/useExpand.d.ts +41 -0
  1397. package/lib/components/PisellTabbar2/hooks/useExpand.js +53 -0
  1398. package/lib/components/PisellTabbar2/index.d.ts +6 -0
  1399. package/lib/components/PisellTabbar2/index.js +35 -0
  1400. package/lib/components/PisellTabbar2/locales.d.ts +15 -0
  1401. package/lib/components/PisellTabbar2/locales.js +38 -0
  1402. package/lib/components/PisellTabbar2/mock.d.ts +205 -0
  1403. package/lib/components/PisellTabbar2/mock.js +2697 -0
  1404. package/lib/components/PisellTabbar2/types.d.ts +117 -0
  1405. package/lib/components/PisellTabbar2/types.js +17 -0
  1406. package/lib/components/PisellTabbar2/utils/index.d.ts +35 -0
  1407. package/lib/components/PisellTabbar2/utils/index.js +84 -0
  1408. package/lib/components/PisellTabbar3/PisellTabbar.d.ts +20 -0
  1409. package/lib/components/PisellTabbar3/PisellTabbar.js +639 -0
  1410. package/lib/components/PisellTabbar3/PisellTabbar.less +26 -0
  1411. package/lib/components/PisellTabbar3/index.d.ts +6 -0
  1412. package/lib/components/PisellTabbar3/index.js +35 -0
  1413. package/lib/components/PisellTabbar3/locales.d.ts +15 -0
  1414. package/lib/components/PisellTabbar3/locales.js +38 -0
  1415. package/lib/components/PisellTabbar3/mock.d.ts +47 -0
  1416. package/lib/components/PisellTabbar3/mock.js +1482 -0
  1417. package/lib/components/PisellTabbar3/types.d.ts +111 -0
  1418. package/lib/components/PisellTabbar3/types.js +17 -0
  1419. package/lib/components/Template/PisellSteps.d.ts +0 -0
  1420. package/lib/components/Template/PisellSteps.js +0 -0
  1421. package/lib/components/Template/PisellSteps.less +1 -0
  1422. package/lib/components/Template/components/index.d.ts +0 -0
  1423. package/lib/components/Template/components/index.js +0 -0
  1424. package/lib/components/Template/hooks/index.d.ts +0 -0
  1425. package/lib/components/Template/hooks/index.js +0 -0
  1426. package/lib/components/Template/index.d.ts +0 -0
  1427. package/lib/components/Template/index.js +0 -0
  1428. package/lib/components/Template/types.d.ts +0 -0
  1429. package/lib/components/Template/types.js +0 -0
  1430. package/lib/components/Template/utils/index.d.ts +0 -0
  1431. package/lib/components/Template/utils/index.js +0 -0
  1432. package/lib/components/TimeResourceSelector/index.d.ts +21 -21
  1433. package/lib/components/TimeResourceSelector/index.less +59 -59
  1434. package/lib/components/appVersionControl/index.d.ts +5 -4
  1435. package/lib/components/appVersionControl/index.less +34 -34
  1436. package/lib/components/appVersionControl/types.d.ts +24 -24
  1437. package/lib/components/appVersionControl/utils.d.ts +13 -13
  1438. package/lib/components/auto-complete/index.d.ts +2 -2
  1439. package/lib/components/auto-complete-number/index.d.ts +10 -9
  1440. package/lib/components/badge/index.d.ts +8 -7
  1441. package/lib/components/badge/index.less +2 -2
  1442. package/lib/components/batch-editor/fields/Image/index.d.ts +7 -7
  1443. package/lib/components/batch-editor/fields/Image/index.less +5 -5
  1444. package/lib/components/batch-editor/fields/Price/index.d.ts +7 -7
  1445. package/lib/components/batch-editor/fields/Text/index.d.ts +6 -6
  1446. package/lib/components/batch-editor/fields/index.d.ts +7 -6
  1447. package/lib/components/batch-editor/index.d.ts +11 -10
  1448. package/lib/components/batch-editor/index.less +49 -49
  1449. package/lib/components/browserSelect/index.d.ts +21 -21
  1450. package/lib/components/browserSelect/index.less +64 -64
  1451. package/lib/components/button/index.d.ts +9 -9
  1452. package/lib/components/buttonGroupEdit/index.d.ts +8 -8
  1453. package/lib/components/buttonGroupPreview/index.d.ts +19 -19
  1454. package/lib/components/calendar/index.d.ts +3 -2
  1455. package/lib/components/cardMetricItem/index.d.ts +12 -12
  1456. package/lib/components/cardMetricItem/index.less +38 -38
  1457. package/lib/components/cardPro/index.d.ts +4 -3
  1458. package/lib/components/cardPro/index.less +55 -55
  1459. package/lib/components/cascader/index.d.ts +2 -2
  1460. package/lib/components/checkbox/index.d.ts +3 -2
  1461. package/lib/components/classicLayout/index.d.ts +4 -3
  1462. package/lib/components/classicLayout/index.less +21 -21
  1463. package/lib/components/collapse/index.d.ts +15 -15
  1464. package/lib/components/colorPicker/index.d.ts +4 -3
  1465. package/lib/components/component/index.d.ts +11 -11
  1466. package/lib/components/config-provider/index.d.ts +8 -7
  1467. package/lib/components/cropPhoto/index.d.ts +3 -3
  1468. package/lib/components/cropPhoto/index.less +15 -15
  1469. package/lib/components/customSelect/index.d.ts +17 -17
  1470. package/lib/components/customSelect/index.less +6 -6
  1471. package/lib/components/dataSourceComponents/dataSourceForm/BaseForm.d.ts +3 -3
  1472. package/lib/components/dataSourceComponents/dataSourceForm/formItem.d.ts +3 -2
  1473. package/lib/components/dataSourceComponents/dataSourceForm/group/index.d.ts +20 -20
  1474. package/lib/components/dataSourceComponents/dataSourceForm/group/index.less +42 -42
  1475. package/lib/components/dataSourceComponents/dataSourceForm/index.d.ts +3 -3
  1476. package/lib/components/dataSourceComponents/dataSourceForm/index.less +24 -24
  1477. package/lib/components/dataSourceComponents/dataSourceForm/provider/formSetting/FormSettingContext.d.ts +16 -16
  1478. package/lib/components/dataSourceComponents/dataSourceForm/provider/formSetting/FormSettingProvider.d.ts +8 -8
  1479. package/lib/components/dataSourceComponents/dataSourceForm/provider/hooks/useFormSetting.d.ts +5 -5
  1480. package/lib/components/dataSourceComponents/dataSourceForm/provider/hooks/useJsonPrefixPath.d.ts +5 -5
  1481. package/lib/components/dataSourceComponents/dataSourceForm/provider/jsonWrapper/JsonWrapperContext.d.ts +6 -6
  1482. package/lib/components/dataSourceComponents/dataSourceForm/provider/jsonWrapper/JsonWrapperProvider.d.ts +7 -7
  1483. package/lib/components/dataSourceComponents/dataSourceForm/serve.d.ts +179 -179
  1484. package/lib/components/dataSourceComponents/dataSourceForm/style.less +22 -22
  1485. package/lib/components/dataSourceComponents/dataSourceForm/submitButton/index.d.ts +39 -39
  1486. package/lib/components/dataSourceComponents/dataSourceForm/submitButton/index.less +4 -4
  1487. package/lib/components/dataSourceComponents/dataSourceForm/type.d.ts +32 -32
  1488. package/lib/components/dataSourceComponents/dataSourceForm/urlUtils.d.ts +24 -24
  1489. package/lib/components/dataSourceComponents/dataSourceForm/utils.d.ts +56 -56
  1490. package/lib/components/dataSourceComponents/dataSourceMenu/Basic.d.ts +8 -8
  1491. package/lib/components/dataSourceComponents/dataSourceMenu/index.d.ts +8 -8
  1492. package/lib/components/dataSourceComponents/dataSourceShow/dataSourceImage/index.d.ts +3 -2
  1493. package/lib/components/dataSourceComponents/dataSourceShow/dataSourceQRCode/index.d.ts +3 -2
  1494. package/lib/components/dataSourceComponents/dataSourceShow/dataSourceTypography/index.d.ts +10 -10
  1495. package/lib/components/dataSourceComponents/dataSourceShow/utils.d.ts +6 -6
  1496. package/lib/components/dataSourceComponents/dataSourceTable/BaseTable.d.ts +8 -8
  1497. package/lib/components/dataSourceComponents/dataSourceTable/filter/index.d.ts +28 -27
  1498. package/lib/components/dataSourceComponents/dataSourceTable/filter/index.less +4 -4
  1499. package/lib/components/dataSourceComponents/dataSourceTable/filter/utils.d.ts +8 -7
  1500. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useColumns.d.ts +11 -11
  1501. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDataSourceKey.d.ts +6 -5
  1502. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDesignMode.d.ts +2 -2
  1503. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +5 -4
  1504. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useFormat.d.ts +48 -48
  1505. package/lib/components/dataSourceComponents/dataSourceTable/hooks/usePagination.d.ts +16 -16
  1506. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +100 -100
  1507. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +34 -33
  1508. package/lib/components/dataSourceComponents/dataSourceTable/index.d.ts +6 -6
  1509. package/lib/components/dataSourceComponents/dataSourceTable/index.less +5 -5
  1510. package/lib/components/dataSourceComponents/dataSourceTable/provider/tableSetting/TableSettingContext.d.ts +7 -7
  1511. package/lib/components/dataSourceComponents/dataSourceTable/provider/tableSetting/TableSettingProvider.d.ts +8 -8
  1512. package/lib/components/dataSourceComponents/dataSourceTable/type.d.ts +84 -84
  1513. package/lib/components/dataSourceComponents/dataSourceWrapper/BaseWrapper.d.ts +7 -7
  1514. package/lib/components/dataSourceComponents/dataSourceWrapper/index.d.ts +4 -3
  1515. package/lib/components/dataSourceComponents/fields/Checkbox/ReadPretty.d.ts +8 -8
  1516. package/lib/components/dataSourceComponents/fields/Checkbox/WithMode.d.ts +7 -7
  1517. package/lib/components/dataSourceComponents/fields/Checkbox/index.d.ts +6 -6
  1518. package/lib/components/dataSourceComponents/fields/Checkbox/type.d.ts +9 -9
  1519. package/lib/components/dataSourceComponents/fields/ColorPicker/ReadPretty.d.ts +5 -4
  1520. package/lib/components/dataSourceComponents/fields/ColorPicker/WithMode.d.ts +4 -4
  1521. package/lib/components/dataSourceComponents/fields/ColorPicker/index.d.ts +3 -3
  1522. package/lib/components/dataSourceComponents/fields/ColorPicker/type.d.ts +5 -5
  1523. package/lib/components/dataSourceComponents/fields/DatePicker/ReadPretty.d.ts +5 -5
  1524. package/lib/components/dataSourceComponents/fields/DatePicker/ReadPretty.less +11 -11
  1525. package/lib/components/dataSourceComponents/fields/DatePicker/WithMode.d.ts +4 -4
  1526. package/lib/components/dataSourceComponents/fields/DatePicker/index.d.ts +3 -3
  1527. package/lib/components/dataSourceComponents/fields/DatePicker/type.d.ts +6 -6
  1528. package/lib/components/dataSourceComponents/fields/DateRangePicker/ReadPretty.d.ts +5 -4
  1529. package/lib/components/dataSourceComponents/fields/DateRangePicker/ReadPretty.less +11 -11
  1530. package/lib/components/dataSourceComponents/fields/DateRangePicker/WithMode.d.ts +4 -4
  1531. package/lib/components/dataSourceComponents/fields/DateRangePicker/index.d.ts +4 -4
  1532. package/lib/components/dataSourceComponents/fields/DateRangePicker/index.less +14 -14
  1533. package/lib/components/dataSourceComponents/fields/DateRangePicker/type.d.ts +4 -4
  1534. package/lib/components/dataSourceComponents/fields/IconSelect/ReadPretty.d.ts +5 -4
  1535. package/lib/components/dataSourceComponents/fields/IconSelect/ReadPretty.less +6 -6
  1536. package/lib/components/dataSourceComponents/fields/IconSelect/WithMode.d.ts +4 -4
  1537. package/lib/components/dataSourceComponents/fields/IconSelect/index.d.ts +3 -3
  1538. package/lib/components/dataSourceComponents/fields/IconSelect/type.d.ts +8 -8
  1539. package/lib/components/dataSourceComponents/fields/Input/ReadPretty.d.ts +5 -4
  1540. package/lib/components/dataSourceComponents/fields/Input/ReadPretty.less +11 -11
  1541. package/lib/components/dataSourceComponents/fields/Input/WithMode.d.ts +4 -4
  1542. package/lib/components/dataSourceComponents/fields/Input/index.d.ts +22 -22
  1543. package/lib/components/dataSourceComponents/fields/Input/type.d.ts +8 -8
  1544. package/lib/components/dataSourceComponents/fields/Input.Email/ReadPretty.d.ts +5 -4
  1545. package/lib/components/dataSourceComponents/fields/Input.Email/ReadPretty.less +11 -11
  1546. package/lib/components/dataSourceComponents/fields/Input.Email/WithMode.d.ts +6 -6
  1547. package/lib/components/dataSourceComponents/fields/Input.Email/index.d.ts +5 -5
  1548. package/lib/components/dataSourceComponents/fields/Input.Email/type.d.ts +5 -5
  1549. package/lib/components/dataSourceComponents/fields/Input.Json/ReadPretty.d.ts +5 -4
  1550. package/lib/components/dataSourceComponents/fields/Input.Json/ReadPretty.less +3 -3
  1551. package/lib/components/dataSourceComponents/fields/Input.Json/WithMode.d.ts +3 -3
  1552. package/lib/components/dataSourceComponents/fields/Input.Json/index.d.ts +3 -3
  1553. package/lib/components/dataSourceComponents/fields/Input.Json/type.d.ts +5 -5
  1554. package/lib/components/dataSourceComponents/fields/Input.Mobile/ReadPretty.d.ts +5 -5
  1555. package/lib/components/dataSourceComponents/fields/Input.Mobile/ReadPretty.less +11 -11
  1556. package/lib/components/dataSourceComponents/fields/Input.Mobile/WithMode.d.ts +17 -17
  1557. package/lib/components/dataSourceComponents/fields/Input.Mobile/index.d.ts +3 -3
  1558. package/lib/components/dataSourceComponents/fields/Input.Mobile/serve.d.ts +24 -24
  1559. package/lib/components/dataSourceComponents/fields/Input.Mobile/type.d.ts +5 -5
  1560. package/lib/components/dataSourceComponents/fields/Input.Password/ReadPretty.d.ts +5 -4
  1561. package/lib/components/dataSourceComponents/fields/Input.Password/ReadPretty.less +11 -11
  1562. package/lib/components/dataSourceComponents/fields/Input.Password/WithMode.d.ts +3 -3
  1563. package/lib/components/dataSourceComponents/fields/Input.Password/index.d.ts +3 -3
  1564. package/lib/components/dataSourceComponents/fields/Input.Password/type.d.ts +5 -5
  1565. package/lib/components/dataSourceComponents/fields/Input.Phone/ReadPretty.d.ts +5 -5
  1566. package/lib/components/dataSourceComponents/fields/Input.Phone/ReadPretty.less +11 -11
  1567. package/lib/components/dataSourceComponents/fields/Input.Phone/WithMode.d.ts +16 -16
  1568. package/lib/components/dataSourceComponents/fields/Input.Phone/index.d.ts +3 -3
  1569. package/lib/components/dataSourceComponents/fields/Input.Phone/serve.d.ts +25 -25
  1570. package/lib/components/dataSourceComponents/fields/Input.Phone/type.d.ts +5 -5
  1571. package/lib/components/dataSourceComponents/fields/Input.Subdomain/ReadPretty.d.ts +5 -4
  1572. package/lib/components/dataSourceComponents/fields/Input.Subdomain/ReadPretty.less +11 -11
  1573. package/lib/components/dataSourceComponents/fields/Input.Subdomain/WithMode.d.ts +13 -13
  1574. package/lib/components/dataSourceComponents/fields/Input.Subdomain/index.d.ts +12 -12
  1575. package/lib/components/dataSourceComponents/fields/Input.Subdomain/serve.d.ts +11 -11
  1576. package/lib/components/dataSourceComponents/fields/Input.Subdomain/type.d.ts +5 -5
  1577. package/lib/components/dataSourceComponents/fields/Input.TextArea/ReadPretty.d.ts +5 -4
  1578. package/lib/components/dataSourceComponents/fields/Input.TextArea/ReadPretty.less +11 -11
  1579. package/lib/components/dataSourceComponents/fields/Input.TextArea/WithMode.d.ts +3 -3
  1580. package/lib/components/dataSourceComponents/fields/Input.TextArea/index.d.ts +3 -3
  1581. package/lib/components/dataSourceComponents/fields/Input.TextArea/type.d.ts +5 -5
  1582. package/lib/components/dataSourceComponents/fields/Input.Url/ReadPretty.d.ts +6 -5
  1583. package/lib/components/dataSourceComponents/fields/Input.Url/ReadPretty.less +13 -13
  1584. package/lib/components/dataSourceComponents/fields/Input.Url/WithMode.d.ts +3 -3
  1585. package/lib/components/dataSourceComponents/fields/Input.Url/index.d.ts +3 -3
  1586. package/lib/components/dataSourceComponents/fields/Input.Url/type.d.ts +5 -5
  1587. package/lib/components/dataSourceComponents/fields/InputNumber/ReadPretty.d.ts +5 -5
  1588. package/lib/components/dataSourceComponents/fields/InputNumber/ReadPretty.less +11 -11
  1589. package/lib/components/dataSourceComponents/fields/InputNumber/WithMode.d.ts +3 -3
  1590. package/lib/components/dataSourceComponents/fields/InputNumber/index.d.ts +3 -3
  1591. package/lib/components/dataSourceComponents/fields/InputNumber/type.d.ts +7 -7
  1592. package/lib/components/dataSourceComponents/fields/InputNumber/utils.d.ts +1 -1
  1593. package/lib/components/dataSourceComponents/fields/Radio/ReadPretty.d.ts +7 -7
  1594. package/lib/components/dataSourceComponents/fields/Radio/WithMode.d.ts +7 -7
  1595. package/lib/components/dataSourceComponents/fields/Radio/index.d.ts +6 -6
  1596. package/lib/components/dataSourceComponents/fields/Radio/type.d.ts +8 -8
  1597. package/lib/components/dataSourceComponents/fields/Select/ReadPretty.d.ts +4 -4
  1598. package/lib/components/dataSourceComponents/fields/Select/WithMode.d.ts +4 -4
  1599. package/lib/components/dataSourceComponents/fields/Select/index.d.ts +11 -10
  1600. package/lib/components/dataSourceComponents/fields/Select/type.d.ts +5 -5
  1601. package/lib/components/dataSourceComponents/fields/Switch/ReadPretty.d.ts +5 -5
  1602. package/lib/components/dataSourceComponents/fields/Switch/ReadPretty.less +2 -2
  1603. package/lib/components/dataSourceComponents/fields/Switch/WithMode.d.ts +3 -3
  1604. package/lib/components/dataSourceComponents/fields/Switch/index.d.ts +3 -3
  1605. package/lib/components/dataSourceComponents/fields/Switch/type.d.ts +16 -16
  1606. package/lib/components/dataSourceComponents/fields/TimePicker/ReadPretty.d.ts +5 -4
  1607. package/lib/components/dataSourceComponents/fields/TimePicker/ReadPretty.less +11 -11
  1608. package/lib/components/dataSourceComponents/fields/TimePicker/WithMode.d.ts +5 -5
  1609. package/lib/components/dataSourceComponents/fields/TimePicker/index.d.ts +3 -3
  1610. package/lib/components/dataSourceComponents/fields/TimePicker/style.less +85 -85
  1611. package/lib/components/dataSourceComponents/fields/TimePicker/type.d.ts +5 -5
  1612. package/lib/components/dataSourceComponents/fields/Translation/BaseTranslation.d.ts +5 -5
  1613. package/lib/components/dataSourceComponents/fields/Translation/ReadPretty.d.ts +5 -4
  1614. package/lib/components/dataSourceComponents/fields/Translation/ReadPretty.less +10 -10
  1615. package/lib/components/dataSourceComponents/fields/Translation/WithMode.d.ts +4 -4
  1616. package/lib/components/dataSourceComponents/fields/Translation/index.d.ts +3 -3
  1617. package/lib/components/dataSourceComponents/fields/Translation/index.less +57 -57
  1618. package/lib/components/dataSourceComponents/fields/Translation/type.d.ts +16 -16
  1619. package/lib/components/dataSourceComponents/fields/Upload/BaseUpload.d.ts +5 -5
  1620. package/lib/components/dataSourceComponents/fields/Upload/CameraPopover.d.ts +6 -5
  1621. package/lib/components/dataSourceComponents/fields/Upload/ReadPretty.d.ts +5 -4
  1622. package/lib/components/dataSourceComponents/fields/Upload/ReadPretty.less +11 -11
  1623. package/lib/components/dataSourceComponents/fields/Upload/WithMode.d.ts +4 -4
  1624. package/lib/components/dataSourceComponents/fields/Upload/constants.d.ts +9 -9
  1625. package/lib/components/dataSourceComponents/fields/Upload/index.d.ts +3 -3
  1626. package/lib/components/dataSourceComponents/fields/Upload/index.less +114 -114
  1627. package/lib/components/dataSourceComponents/fields/Upload/serve.d.ts +20 -20
  1628. package/lib/components/dataSourceComponents/fields/Upload/shopUploadServe.d.ts +56 -56
  1629. package/lib/components/dataSourceComponents/fields/Upload/type.d.ts +38 -38
  1630. package/lib/components/dataSourceComponents/fields/Upload/types.d.ts +48 -48
  1631. package/lib/components/dataSourceComponents/fields/Upload/utils.d.ts +18 -18
  1632. package/lib/components/dataSourceComponents/fields/index.d.ts +102 -101
  1633. package/lib/components/dataSourceComponents/fields/type.d.ts +19 -19
  1634. package/lib/components/dataSourceComponents/fields/utils.d.ts +3 -3
  1635. package/lib/components/dataSourceComponents/hooks/useActions.d.ts +18 -18
  1636. package/lib/components/dataSourceComponents/hooks/useComponentId.d.ts +2 -2
  1637. package/lib/components/dataSourceComponents/hooks/useCtxActions.d.ts +8 -8
  1638. package/lib/components/dataSourceComponents/hooks/useDataSource.d.ts +5 -5
  1639. package/lib/components/dataSourceComponents/hooks/useParseActionsVariable.d.ts +6 -6
  1640. package/lib/components/dataSourceComponents/hooks/usePlatform.d.ts +5 -5
  1641. package/lib/components/dataSourceComponents/hooks/useValueMap.d.ts +8 -8
  1642. package/lib/components/dataSourceComponents/hooks/useVariables.d.ts +2 -2
  1643. package/lib/components/dataSourceComponents/provider/actions/ActionsContext.d.ts +11 -11
  1644. package/lib/components/dataSourceComponents/provider/actions/ActionsProvider.d.ts +12 -12
  1645. package/lib/components/dataSourceComponents/provider/dataSource/DataSourceContext.d.ts +120 -120
  1646. package/lib/components/dataSourceComponents/provider/dataSource/DataSourceProvider.d.ts +8 -8
  1647. package/lib/components/dataSourceComponents/provider/variables/VariablesContext.d.ts +12 -12
  1648. package/lib/components/dataSourceComponents/provider/variables/VariablesProvider.d.ts +4 -4
  1649. package/lib/components/dataSourceComponents/provider/variables/utils.d.ts +12 -12
  1650. package/lib/components/date-picker/constants.d.ts +39 -39
  1651. package/lib/components/date-picker/datePickerCpt.d.ts +9 -8
  1652. package/lib/components/date-picker/hooks/useMediaQuery.d.ts +2 -2
  1653. package/lib/components/date-picker/index.d.ts +3 -2
  1654. package/lib/components/date-picker/index.less +1880 -1880
  1655. package/lib/components/div/index.d.ts +19 -19
  1656. package/lib/components/drag-sort-tree/TreeItem/index.d.ts +19 -18
  1657. package/lib/components/drag-sort-tree/TreeItem/index.less +73 -73
  1658. package/lib/components/drag-sort-tree/index.d.ts +5 -4
  1659. package/lib/components/drag-sort-tree/index.less +3 -3
  1660. package/lib/components/drag-sort-tree/types.d.ts +24 -24
  1661. package/lib/components/drawer/index.d.ts +3 -3
  1662. package/lib/components/drawer/index.less +70 -70
  1663. package/lib/components/dropdown/index.d.ts +3 -2
  1664. package/lib/components/filter/components/Dropdown/index.d.ts +9 -9
  1665. package/lib/components/filter/components/Dropdown/index.less +81 -81
  1666. package/lib/components/filter/components/Dropdown/types.d.ts +11 -11
  1667. package/lib/components/filter/components/FilterButton/index.d.ts +4 -4
  1668. package/lib/components/filter/components/FilterButton/types.d.ts +13 -13
  1669. package/lib/components/filter/components/FilterItem/index.d.ts +5 -5
  1670. package/lib/components/filter/components/QuickFilter/index.d.ts +12 -12
  1671. package/lib/components/filter/components/items/index.d.ts +42 -41
  1672. package/lib/components/filter/components/items/text/Editor/index.d.ts +3 -2
  1673. package/lib/components/filter/components/items/text/Preview/index.d.ts +3 -2
  1674. package/lib/components/filter/components/items/text/index.d.ts +12 -11
  1675. package/lib/components/filter/index.d.ts +4 -3
  1676. package/lib/components/filter/types.d.ts +46 -46
  1677. package/lib/components/form/index.d.ts +2 -2
  1678. package/lib/components/icon/index.d.ts +12 -12
  1679. package/lib/components/iconSelect/index.d.ts +10 -10
  1680. package/lib/components/iconSelect/index.less +54 -54
  1681. package/lib/components/iconSelect/utils.d.ts +14 -14
  1682. package/lib/components/iconfont/index.d.ts +8 -8
  1683. package/lib/components/image/index.d.ts +10 -10
  1684. package/lib/components/input/index.d.ts +11 -11
  1685. package/lib/components/input-number-range/index.d.ts +15 -15
  1686. package/lib/components/list/index.d.ts +7 -6
  1687. package/lib/components/list/index.less +38 -38
  1688. package/lib/components/login-and-register/index.d.ts +82 -82
  1689. package/lib/components/login-and-register/index.less +213 -213
  1690. package/lib/components/lowCodePage/index.d.ts +6 -5
  1691. package/lib/components/modal/index.d.ts +2 -2
  1692. package/lib/components/organizationTenantSwitcher/index.d.ts +17 -17
  1693. package/lib/components/organizationTenantSwitcher/index.less +89 -89
  1694. package/lib/components/page/index.d.ts +6 -5
  1695. package/lib/components/page-header/index.d.ts +14 -14
  1696. package/lib/components/page-header/index.less +45 -45
  1697. package/lib/components/pisell-config-provider/context.d.ts +20 -20
  1698. package/lib/components/pisell-config-provider/hooks/usePisellConfig.d.ts +5 -5
  1699. package/lib/components/pisell-config-provider/index.d.ts +12 -12
  1700. package/lib/components/pisellAdjustPrice/PisellAdjustPriceInputNumber.d.ts +10 -9
  1701. package/lib/components/pisellAdjustPrice/index.d.ts +10 -9
  1702. package/lib/components/pisellAdjustPrice/index.less +29 -29
  1703. package/lib/components/pisellAlert/index.d.ts +22 -22
  1704. package/lib/components/pisellAlert/index.less +149 -149
  1705. package/lib/components/pisellAnchor/index.d.ts +23 -23
  1706. package/lib/components/pisellAnchor/index.less +194 -194
  1707. package/lib/components/pisellAppCard/PisellAppCard.d.ts +5 -5
  1708. package/lib/components/pisellAppCard/PisellAppCard.less +55 -55
  1709. package/lib/components/pisellAppCard/index.d.ts +3 -3
  1710. package/lib/components/pisellAppCard/types.d.ts +34 -34
  1711. package/lib/components/pisellAvatar/index.d.ts +19 -19
  1712. package/lib/components/pisellAvatar/index.less +27 -27
  1713. package/lib/components/pisellBatchActionBar/PisellBatchActionBar.d.ts +31 -0
  1714. package/lib/components/pisellBatchActionBar/PisellBatchActionBar.js +478 -0
  1715. package/lib/components/pisellBatchActionBar/PisellBatchActionBar.less +103 -0
  1716. package/lib/components/pisellBatchActionBar/index.d.ts +6 -0
  1717. package/lib/components/pisellBatchActionBar/index.js +35 -0
  1718. package/lib/components/pisellBatchActionBar/types.d.ts +237 -0
  1719. package/lib/components/pisellBatchActionBar/types.js +17 -0
  1720. package/lib/components/pisellCamera/index.d.ts +4 -4
  1721. package/lib/components/pisellCamera/index.less +130 -130
  1722. package/lib/components/pisellCard/index.d.ts +20 -19
  1723. package/lib/components/pisellCard/index.less +36 -36
  1724. package/lib/components/pisellCardList/index.d.ts +77 -77
  1725. package/lib/components/pisellCardList/index.less +74 -74
  1726. package/lib/components/pisellCheckboxGroup/index.d.ts +37 -37
  1727. package/lib/components/pisellCheckboxGroup/index.less +36 -36
  1728. package/lib/components/pisellCheckboxGroup/mock.d.ts +4 -4
  1729. package/lib/components/pisellContainer/components/Portal/index.d.ts +10 -10
  1730. package/lib/components/pisellContainer/containers.d.ts +1 -1
  1731. package/lib/components/pisellContainer/index.d.ts +22 -22
  1732. package/lib/components/pisellCountdown/index.d.ts +24 -24
  1733. package/lib/components/pisellCountdown/utils.d.ts +7 -7
  1734. package/lib/components/pisellCustomCheckboxGroup/index.d.ts +16 -16
  1735. package/lib/components/pisellDatePicker/datePickerCpt.d.ts +22 -21
  1736. package/lib/components/pisellDatePicker/detePickerCpt.less +21 -21
  1737. package/lib/components/pisellDatePicker/index.d.ts +3 -2
  1738. package/lib/components/pisellDraggable/components/Action/Action.d.ts +10 -10
  1739. package/lib/components/pisellDraggable/components/Action/Action.less +49 -49
  1740. package/lib/components/pisellDraggable/components/Action/index.d.ts +2 -2
  1741. package/lib/components/pisellDraggable/components/Handle/Handle.d.ts +3 -3
  1742. package/lib/components/pisellDraggable/components/Handle/index.d.ts +1 -1
  1743. package/lib/components/pisellDraggable/components/Remove/Remove.d.ts +3 -3
  1744. package/lib/components/pisellDraggable/components/Remove/index.d.ts +1 -1
  1745. package/lib/components/pisellDraggable/components/TreeItem/SortableTreeItem.d.ts +9 -9
  1746. package/lib/components/pisellDraggable/components/TreeItem/TreeItem.d.ts +24 -24
  1747. package/lib/components/pisellDraggable/components/TreeItem/TreeItem.less +127 -127
  1748. package/lib/components/pisellDraggable/components/TreeItem/index.d.ts +2 -2
  1749. package/lib/components/pisellDraggable/components/index.d.ts +4 -4
  1750. package/lib/components/pisellDraggable/index.d.ts +35 -35
  1751. package/lib/components/pisellDraggable/types.d.ts +19 -19
  1752. package/lib/components/pisellDraggable/utilities.d.ts +17 -17
  1753. package/lib/components/pisellDropSort/PisellDropSort.d.ts +5 -5
  1754. package/lib/components/pisellDropSort/PisellDropSort.less +92 -92
  1755. package/lib/components/pisellDropSort/components/SortableItem/index.d.ts +26 -26
  1756. package/lib/components/pisellDropSort/components/SortableItem/index.less +156 -156
  1757. package/lib/components/pisellDropSort/index.d.ts +3 -3
  1758. package/lib/components/pisellDropSort/types.d.ts +58 -58
  1759. package/lib/components/pisellDropdown/index.d.ts +20 -20
  1760. package/lib/components/pisellDropdown/index.less +44 -44
  1761. package/lib/components/pisellEmpty/index.d.ts +19 -19
  1762. package/lib/components/pisellEmpty/index.less +34 -34
  1763. package/lib/components/pisellFloatingPanel/index.d.ts +17 -17
  1764. package/lib/components/pisellFloatingPanel/index.less +30 -30
  1765. package/lib/components/pisellGoodPassCard/index.d.ts +49 -49
  1766. package/lib/components/pisellGoodPassCard/index.less +58 -58
  1767. package/lib/components/pisellHeaderProgressBar/index.d.ts +29 -29
  1768. package/lib/components/pisellHeaderProgressBar/index.less +18 -18
  1769. package/lib/components/pisellImageCarousels/index.d.ts +18 -18
  1770. package/lib/components/pisellImageCarousels/index.less +92 -92
  1771. package/lib/components/pisellInformationEntry/Input/index.d.ts +8 -8
  1772. package/lib/components/pisellInformationEntry/Input/index.less +13 -13
  1773. package/lib/components/pisellInformationEntry/Scan/index.d.ts +8 -7
  1774. package/lib/components/pisellInformationEntry/Scan/index.less +7 -7
  1775. package/lib/components/pisellInformationEntry/constants.d.ts +13 -13
  1776. package/lib/components/pisellInformationEntry/hooks/useNativeScanner.d.ts +4 -4
  1777. package/lib/components/pisellInformationEntry/hooks/useTerminalPeripherals.d.ts +8 -8
  1778. package/lib/components/pisellInformationEntry/index.d.ts +33 -33
  1779. package/lib/components/pisellInformationEntry/index.less +40 -40
  1780. package/lib/components/pisellInformationEntry/utils.d.ts +4 -4
  1781. package/lib/components/pisellInput/components/BankCard/index.d.ts +11 -10
  1782. package/lib/components/pisellInput/components/BankCard/index.less +3 -3
  1783. package/lib/components/pisellInput/components/BankCard/utils.d.ts +11 -11
  1784. package/lib/components/pisellInput/components/Copy/index.d.ts +11 -10
  1785. package/lib/components/pisellInput/components/SecurityCode/index.d.ts +12 -11
  1786. package/lib/components/pisellInput/components/SecurityCode/index.less +3 -3
  1787. package/lib/components/pisellInput/index.d.ts +13 -12
  1788. package/lib/components/pisellLayout/content.d.ts +10 -10
  1789. package/lib/components/pisellLayout/footer.d.ts +8 -8
  1790. package/lib/components/pisellLayout/header.d.ts +10 -10
  1791. package/lib/components/pisellLayout/index.d.ts +14 -14
  1792. package/lib/components/pisellLayout/index.less +22 -22
  1793. package/lib/components/pisellLayout/sider.d.ts +8 -8
  1794. package/lib/components/pisellList01/index.d.ts +17 -17
  1795. package/lib/components/pisellList01/index.less +53 -53
  1796. package/lib/components/pisellLoading/index.d.ts +20 -19
  1797. package/lib/components/pisellLoading/index.less +35 -35
  1798. package/lib/components/pisellMenu/PisellMenu.d.ts +11 -11
  1799. package/lib/components/pisellMenu/PisellMenu.less +52 -52
  1800. package/lib/components/pisellMenu/index.d.ts +3 -3
  1801. package/lib/components/pisellMenu/types.d.ts +27 -27
  1802. package/lib/components/pisellMessage/index.d.ts +4 -4
  1803. package/lib/components/pisellModal/components/Information/index.d.ts +21 -21
  1804. package/lib/components/pisellModal/components/Information/index.less +15 -15
  1805. package/lib/components/pisellModal/components/IpadModal/index.d.ts +6 -5
  1806. package/lib/components/pisellModal/components/MobileModal/index.d.ts +9 -8
  1807. package/lib/components/pisellModal/components/MobileModal/index.less +64 -64
  1808. package/lib/components/pisellModal/components/PcModal/index.d.ts +30 -30
  1809. package/lib/components/pisellModal/components/PcModal/index.less +104 -104
  1810. package/lib/components/pisellModal/components/functions/index.d.ts +30 -30
  1811. package/lib/components/pisellModal/components/functions/index.less +27 -27
  1812. package/lib/components/pisellModal/components/index.d.ts +10 -9
  1813. package/lib/components/pisellModal/constants.d.ts +6 -6
  1814. package/lib/components/pisellModal/index.d.ts +58 -58
  1815. package/lib/components/pisellNavigationMenu/PisellNavigationMenu.d.ts +5 -5
  1816. package/lib/components/pisellNavigationMenu/PisellNavigationMenu.less +79 -79
  1817. package/lib/components/pisellNavigationMenu/index.d.ts +3 -3
  1818. package/lib/components/pisellNavigationMenu/types.d.ts +85 -85
  1819. package/lib/components/pisellNavigationMenu/utils.d.ts +15 -15
  1820. package/lib/components/pisellQRScanner/index.d.ts +24 -24
  1821. package/lib/components/pisellQRScanner/index.less +70 -70
  1822. package/lib/components/pisellQrcode/index.d.ts +10 -10
  1823. package/lib/components/pisellQrcode/index.less +39 -39
  1824. package/lib/components/pisellRow/index.d.ts +22 -22
  1825. package/lib/components/pisellRow/index.less +12 -12
  1826. package/lib/components/pisellScan/index.d.ts +23 -23
  1827. package/lib/components/pisellScan/index.less +11 -11
  1828. package/lib/components/pisellSectionHeaders/index.d.ts +21 -21
  1829. package/lib/components/pisellSectionHeaders/index.less +46 -46
  1830. package/lib/components/pisellStatisticList/index.d.ts +21 -21
  1831. package/lib/components/pisellStatisticList/index.less +48 -48
  1832. package/lib/components/pisellTags/index.d.ts +13 -13
  1833. package/lib/components/pisellTags/index.less +16 -16
  1834. package/lib/components/pisellTags/utils.d.ts +1 -1
  1835. package/lib/components/pisellText/components/Amount/index.d.ts +20 -20
  1836. package/lib/components/pisellText/components/Editable/index.d.ts +29 -29
  1837. package/lib/components/pisellText/components/Editable/index.less +40 -40
  1838. package/lib/components/pisellText/index.d.ts +9 -9
  1839. package/lib/components/pisellToast/index.d.ts +16 -16
  1840. package/lib/components/pisellToast/index.less +25 -25
  1841. package/lib/components/pisellTooltip/index.d.ts +10 -9
  1842. package/lib/components/pisellTooltip/index.less +4 -4
  1843. package/lib/components/pisellUpload/index.d.ts +11 -10
  1844. package/lib/components/pisellUpload/index.less +15 -15
  1845. package/lib/components/pisellViewGrid/index.d.ts +16 -16
  1846. package/lib/components/pisellViewGrid/index.less +31 -31
  1847. package/lib/components/pisellWalletPassCard/index.d.ts +95 -95
  1848. package/lib/components/pisellWalletPassCard/index.less +313 -313
  1849. package/lib/components/productCard/components/Action/index.d.ts +4 -3
  1850. package/lib/components/productCard/components/Action/index.less +14 -14
  1851. package/lib/components/productCard/components/AmountFooter/index.d.ts +4 -3
  1852. package/lib/components/productCard/components/AmountFooter/index.js +2 -2
  1853. package/lib/components/productCard/components/AmountFooter/index.less +77 -77
  1854. package/lib/components/productCard/components/Divider/index.d.ts +4 -3
  1855. package/lib/components/productCard/components/Divider/index.less +13 -13
  1856. package/lib/components/productCard/components/Header/DeleteButton/index.d.ts +4 -3
  1857. package/lib/components/productCard/components/Header/DeleteButton/index.less +15 -15
  1858. package/lib/components/productCard/components/Header/EditButton/index.d.ts +4 -3
  1859. package/lib/components/productCard/components/Header/EditButton/index.less +25 -25
  1860. package/lib/components/productCard/components/Header/index.d.ts +4 -3
  1861. package/lib/components/productCard/components/Header/index.less +56 -56
  1862. package/lib/components/productCard/components/MultiDay/index.d.ts +4 -3
  1863. package/lib/components/productCard/components/MultiDay/index.less +34 -34
  1864. package/lib/components/productCard/components/MultiDay/utils.d.ts +14 -14
  1865. package/lib/components/productCard/components/Note/index.d.ts +4 -3
  1866. package/lib/components/productCard/components/Note/index.less +20 -20
  1867. package/lib/components/productCard/components/Packages/components/collapsibleList/index.d.ts +10 -10
  1868. package/lib/components/productCard/components/Packages/components/collapsibleList/index.less +52 -52
  1869. package/lib/components/productCard/components/Packages/components/collapsibleList/utils.d.ts +2 -1
  1870. package/lib/components/productCard/components/Packages/components/options/index.d.ts +4 -3
  1871. package/lib/components/productCard/components/Packages/components/options/index.less +30 -30
  1872. package/lib/components/productCard/components/Packages/index.d.ts +4 -3
  1873. package/lib/components/productCard/components/Packages/index.less +17 -17
  1874. package/lib/components/productCard/components/Packages/utils.d.ts +20 -20
  1875. package/lib/components/productCard/components/Sales/index.d.ts +4 -3
  1876. package/lib/components/productCard/components/Sales/index.less +18 -18
  1877. package/lib/components/productCard/components/Time/components/Like/index.d.ts +10 -9
  1878. package/lib/components/productCard/components/Time/components/Like/index.less +27 -27
  1879. package/lib/components/productCard/components/Time/components/SelectHolder/index.d.ts +4 -3
  1880. package/lib/components/productCard/components/Time/components/SelectHolder/index.less +61 -61
  1881. package/lib/components/productCard/components/Time/components/SelectHolderModal/index.d.ts +14 -13
  1882. package/lib/components/productCard/components/Time/components/SelectHolderModal/index.less +39 -39
  1883. package/lib/components/productCard/components/Time/components/SelectHolderMultiple/index.d.ts +3 -2
  1884. package/lib/components/productCard/components/Time/components/SelectResource/index.d.ts +19 -18
  1885. package/lib/components/productCard/components/Time/components/SelectResource/index.less +20 -20
  1886. package/lib/components/productCard/components/Time/index.d.ts +4 -3
  1887. package/lib/components/productCard/components/Time/index.less +56 -56
  1888. package/lib/components/productCard/components/Warning/index.d.ts +7 -7
  1889. package/lib/components/productCard/hooks/useOpenNote.d.ts +3 -3
  1890. package/lib/components/productCard/index.d.ts +5 -5
  1891. package/lib/components/productCard/index.less +82 -82
  1892. package/lib/components/productCard/locales.d.ts +84 -84
  1893. package/lib/components/productCard/status.d.ts +32 -32
  1894. package/lib/components/productCard/types.d.ts +84 -84
  1895. package/lib/components/productCard/utils.d.ts +31 -31
  1896. package/lib/components/profileMenu/index.d.ts +26 -26
  1897. package/lib/components/profileMenu/index.less +132 -132
  1898. package/lib/components/qrcode/index.d.ts +3 -2
  1899. package/lib/components/radio/index.d.ts +3 -2
  1900. package/lib/components/record-view/index.d.ts +37 -37
  1901. package/lib/components/record-view/index.less +81 -81
  1902. package/lib/components/section-footers/index.d.ts +9 -9
  1903. package/lib/components/section-footers/index.less +5 -5
  1904. package/lib/components/segmented/index.d.ts +5 -4
  1905. package/lib/components/segmented/index.less +2 -2
  1906. package/lib/components/select/index.d.ts +9 -9
  1907. package/lib/components/select/index.less +29 -29
  1908. package/lib/components/select-time/RightPanel/index.d.ts +9 -8
  1909. package/lib/components/select-time/RightPanel/index.less +21 -21
  1910. package/lib/components/select-time/index.d.ts +14 -14
  1911. package/lib/components/select-time/index.less +15 -15
  1912. package/lib/components/select-time/utils.d.ts +9 -9
  1913. package/lib/components/skeleton/index.d.ts +3 -2
  1914. package/lib/components/slider/index.d.ts +3 -2
  1915. package/lib/components/sort/components/InlineMenu/index.d.ts +15 -14
  1916. package/lib/components/sort/components/InlineMenu/index.less +20 -20
  1917. package/lib/components/sort/index.d.ts +5 -5
  1918. package/lib/components/sort/index.less +36 -36
  1919. package/lib/components/sort/types.d.ts +20 -20
  1920. package/lib/components/sortableList/index.d.ts +11 -11
  1921. package/lib/components/table/Actions/component/ButtonIcon/index.d.ts +8 -8
  1922. package/lib/components/table/Actions/component/ButtonIcon/index.less +18 -18
  1923. package/lib/components/table/Actions/component/ColumnsSetting/PopoverContent.d.ts +10 -10
  1924. package/lib/components/table/Actions/component/ColumnsSetting/PopoverContent.less +59 -59
  1925. package/lib/components/table/Actions/component/ColumnsSetting/index.d.ts +7 -6
  1926. package/lib/components/table/Actions/component/ColumnsSetting/utils.d.ts +1 -1
  1927. package/lib/components/table/Actions/component/ExportImport/components/ExportFile/index.d.ts +7 -6
  1928. package/lib/components/table/Actions/component/ExportImport/components/ExportFile/index.less +29 -29
  1929. package/lib/components/table/Actions/component/ExportImport/components/ExportTable/function.d.ts +7 -7
  1930. package/lib/components/table/Actions/component/ExportImport/components/ExportTable/index.d.ts +8 -7
  1931. package/lib/components/table/Actions/component/ExportImport/components/ExportTable/index.less +5 -5
  1932. package/lib/components/table/Actions/component/ExportImport/components/ImportLog/Detail.d.ts +4 -4
  1933. package/lib/components/table/Actions/component/ExportImport/components/ImportLog/index.d.ts +7 -6
  1934. package/lib/components/table/Actions/component/ExportImport/components/ImportLog/index.less +48 -48
  1935. package/lib/components/table/Actions/component/ExportImport/components/ImportTable/index.d.ts +10 -9
  1936. package/lib/components/table/Actions/component/ExportImport/components/ImportTable/index.less +97 -97
  1937. package/lib/components/table/Actions/component/ExportImport/index.d.ts +8 -7
  1938. package/lib/components/table/Actions/component/ExportImport/index.less +194 -194
  1939. package/lib/components/table/Actions/component/ExportImport/utils/date.d.ts +8 -8
  1940. package/lib/components/table/Actions/component/ExportImport/utils/download.d.ts +3 -3
  1941. package/lib/components/table/Actions/component/ExportImport/utils/file.d.ts +7 -7
  1942. package/lib/components/table/Actions/component/ExportImport/utils/index.d.ts +9 -9
  1943. package/lib/components/table/Actions/component/GallerySetting/index.d.ts +9 -8
  1944. package/lib/components/table/Actions/component/GallerySetting/index.less +14 -14
  1945. package/lib/components/table/Actions/component/Group/PopoverContent.d.ts +13 -12
  1946. package/lib/components/table/Actions/component/Group/PopoverContent.less +29 -29
  1947. package/lib/components/table/Actions/component/Group/index.d.ts +13 -12
  1948. package/lib/components/table/Actions/component/ViewMode/index.d.ts +9 -8
  1949. package/lib/components/table/Actions/index.d.ts +18 -17
  1950. package/lib/components/table/Actions/index.less +43 -43
  1951. package/lib/components/table/BasicTable/index.d.ts +4 -3
  1952. package/lib/components/table/Gallery/components/GalleryItem/components/Cover/index.d.ts +10 -9
  1953. package/lib/components/table/Gallery/components/GalleryItem/components/RenderFields/index.d.ts +11 -10
  1954. package/lib/components/table/Gallery/components/GalleryItem/components/RenderFields/index.less +37 -37
  1955. package/lib/components/table/Gallery/components/GalleryItem/components/Title/index.d.ts +9 -8
  1956. package/lib/components/table/Gallery/components/GalleryItem/components/Title/index.less +17 -17
  1957. package/lib/components/table/Gallery/components/GalleryItem/index.d.ts +14 -14
  1958. package/lib/components/table/Gallery/components/GalleryItem/index.less +29 -29
  1959. package/lib/components/table/Gallery/components/VirtualGrid/index.d.ts +13 -13
  1960. package/lib/components/table/Gallery/components/VirtualGrid/index.less +4 -4
  1961. package/lib/components/table/Gallery/components/VirtualGrid/useGapSize.d.ts +5 -5
  1962. package/lib/components/table/Gallery/components/VirtualGrid/useGenGridProps.d.ts +14 -14
  1963. package/lib/components/table/Gallery/constant.d.ts +4 -4
  1964. package/lib/components/table/Gallery/index.d.ts +5 -5
  1965. package/lib/components/table/Gallery/index.less +28 -28
  1966. package/lib/components/table/Gallery/types.d.ts +10 -10
  1967. package/lib/components/table/Header/Buttons/index.d.ts +3 -3
  1968. package/lib/components/table/Header/index.d.ts +11 -11
  1969. package/lib/components/table/Header/index.less +23 -23
  1970. package/lib/components/table/Summary/index.d.ts +4 -3
  1971. package/lib/components/table/Summary/index.less +4 -4
  1972. package/lib/components/table/Table/AddFieldModal/index.d.ts +3 -3
  1973. package/lib/components/table/Table/AddFieldModal/index.less +83 -83
  1974. package/lib/components/table/Table/SelectField/index.d.ts +3 -2
  1975. package/lib/components/table/Table/SelectField/index.less +96 -96
  1976. package/lib/components/table/Table/fields/date/Config/index.d.ts +3 -2
  1977. package/lib/components/table/Table/fields/date/Edit/index.d.ts +4 -4
  1978. package/lib/components/table/Table/fields/date/Show/index.d.ts +4 -3
  1979. package/lib/components/table/Table/fields/date/Sort/index.d.ts +3 -2
  1980. package/lib/components/table/Table/fields/date/filterUtil/index.d.ts +13 -13
  1981. package/lib/components/table/Table/fields/date/index.d.ts +16 -15
  1982. package/lib/components/table/Table/fields/image/Config/index.d.ts +3 -2
  1983. package/lib/components/table/Table/fields/image/Edit/index.d.ts +4 -4
  1984. package/lib/components/table/Table/fields/image/Show/index.d.ts +4 -3
  1985. package/lib/components/table/Table/fields/image/Sort/index.d.ts +3 -2
  1986. package/lib/components/table/Table/fields/image/index.d.ts +14 -13
  1987. package/lib/components/table/Table/fields/index.d.ts +386 -385
  1988. package/lib/components/table/Table/fields/link/Config/index.d.ts +3 -2
  1989. package/lib/components/table/Table/fields/link/Edit/index.d.ts +4 -4
  1990. package/lib/components/table/Table/fields/link/Show/index.d.ts +4 -3
  1991. package/lib/components/table/Table/fields/link/Sort/index.d.ts +3 -2
  1992. package/lib/components/table/Table/fields/link/index.d.ts +14 -13
  1993. package/lib/components/table/Table/fields/number/Config/index.d.ts +3 -2
  1994. package/lib/components/table/Table/fields/number/Edit/index.d.ts +4 -4
  1995. package/lib/components/table/Table/fields/number/Show/index.d.ts +4 -3
  1996. package/lib/components/table/Table/fields/number/Sort/index.d.ts +3 -2
  1997. package/lib/components/table/Table/fields/number/filterUtil/index.d.ts +5 -5
  1998. package/lib/components/table/Table/fields/number/index.d.ts +16 -15
  1999. package/lib/components/table/Table/fields/numberRange/Config/index.d.ts +3 -2
  2000. package/lib/components/table/Table/fields/numberRange/Edit/index.d.ts +4 -4
  2001. package/lib/components/table/Table/fields/numberRange/Show/index.d.ts +4 -3
  2002. package/lib/components/table/Table/fields/numberRange/Sort/index.d.ts +3 -2
  2003. package/lib/components/table/Table/fields/numberRange/filterUtil/index.d.ts +8 -8
  2004. package/lib/components/table/Table/fields/numberRange/index.d.ts +16 -15
  2005. package/lib/components/table/Table/fields/oldRangePicker/Config/index.d.ts +3 -2
  2006. package/lib/components/table/Table/fields/oldRangePicker/Edit/index.d.ts +4 -4
  2007. package/lib/components/table/Table/fields/oldRangePicker/Show/index.d.ts +4 -3
  2008. package/lib/components/table/Table/fields/oldRangePicker/Sort/index.d.ts +3 -2
  2009. package/lib/components/table/Table/fields/oldRangePicker/filterUtil/index.d.ts +13 -13
  2010. package/lib/components/table/Table/fields/oldRangePicker/index.d.ts +16 -15
  2011. package/lib/components/table/Table/fields/pSwitch/Config/index.d.ts +3 -2
  2012. package/lib/components/table/Table/fields/pSwitch/Edit/index.d.ts +4 -4
  2013. package/lib/components/table/Table/fields/pSwitch/Show/index.d.ts +4 -3
  2014. package/lib/components/table/Table/fields/pSwitch/Sort/index.d.ts +3 -2
  2015. package/lib/components/table/Table/fields/pSwitch/index.d.ts +14 -13
  2016. package/lib/components/table/Table/fields/rangePicker/Config/index.d.ts +3 -2
  2017. package/lib/components/table/Table/fields/rangePicker/Edit/index.d.ts +4 -4
  2018. package/lib/components/table/Table/fields/rangePicker/Show/index.d.ts +4 -3
  2019. package/lib/components/table/Table/fields/rangePicker/Sort/index.d.ts +3 -2
  2020. package/lib/components/table/Table/fields/rangePicker/filterUtil/index.d.ts +13 -13
  2021. package/lib/components/table/Table/fields/rangePicker/index.d.ts +16 -15
  2022. package/lib/components/table/Table/fields/search/Config/index.d.ts +3 -2
  2023. package/lib/components/table/Table/fields/search/Edit/index.d.ts +4 -4
  2024. package/lib/components/table/Table/fields/search/Show/index.d.ts +4 -3
  2025. package/lib/components/table/Table/fields/search/Sort/index.d.ts +3 -2
  2026. package/lib/components/table/Table/fields/search/filterUtil/index.d.ts +5 -5
  2027. package/lib/components/table/Table/fields/search/index.d.ts +16 -15
  2028. package/lib/components/table/Table/fields/select/Config/index.d.ts +3 -2
  2029. package/lib/components/table/Table/fields/select/Edit/index.d.ts +4 -4
  2030. package/lib/components/table/Table/fields/select/Show/index.d.ts +4 -3
  2031. package/lib/components/table/Table/fields/select/Sort/index.d.ts +3 -2
  2032. package/lib/components/table/Table/fields/select/filterUtil/index.d.ts +5 -5
  2033. package/lib/components/table/Table/fields/select/index.d.ts +16 -15
  2034. package/lib/components/table/Table/fields/text/Config/index.d.ts +3 -2
  2035. package/lib/components/table/Table/fields/text/Edit/index.d.ts +4 -4
  2036. package/lib/components/table/Table/fields/text/Show/index.d.ts +5 -4
  2037. package/lib/components/table/Table/fields/text/Show/index.less +8 -8
  2038. package/lib/components/table/Table/fields/text/Sort/index.d.ts +3 -2
  2039. package/lib/components/table/Table/fields/text/filterUtil/index.d.ts +5 -5
  2040. package/lib/components/table/Table/fields/text/index.d.ts +16 -15
  2041. package/lib/components/table/Table/fields/treeSelect/Config/index.d.ts +3 -2
  2042. package/lib/components/table/Table/fields/treeSelect/Edit/index.d.ts +4 -4
  2043. package/lib/components/table/Table/fields/treeSelect/Show/index.d.ts +4 -3
  2044. package/lib/components/table/Table/fields/treeSelect/Sort/index.d.ts +3 -2
  2045. package/lib/components/table/Table/fields/treeSelect/filterUtil/index.d.ts +5 -5
  2046. package/lib/components/table/Table/fields/treeSelect/index.d.ts +16 -15
  2047. package/lib/components/table/Table/fields/types/index.d.ts +30 -30
  2048. package/lib/components/table/Table/fields/utils/index.d.ts +1 -1
  2049. package/lib/components/table/Table/index.d.ts +4 -4
  2050. package/lib/components/table/Table/index.less +35 -35
  2051. package/lib/components/table/Table/tableConfig/SortRow/index.d.ts +4 -3
  2052. package/lib/components/table/Table/tableConfig/body/CellContent/index.d.ts +4 -4
  2053. package/lib/components/table/Table/tableConfig/body/CellContent/index.less +14 -14
  2054. package/lib/components/table/Table/tableConfig/body/CellProvider/index.d.ts +4 -4
  2055. package/lib/components/table/Table/tableConfig/body/CellProvider/index.less +14 -14
  2056. package/lib/components/table/Table/tableConfig/body/index.d.ts +35 -35
  2057. package/lib/components/table/Table/tableConfig/body/index.less +20 -20
  2058. package/lib/components/table/Table/tableConfig/header/CellProvider/index.d.ts +14 -14
  2059. package/lib/components/table/Table/tableConfig/header/CellProvider/index.less +35 -35
  2060. package/lib/components/table/Table/tableConfig/header/index.d.ts +19 -19
  2061. package/lib/components/table/Table/tableConfig/summary/index.d.ts +3 -2
  2062. package/lib/components/table/Table/utils.d.ts +161 -161
  2063. package/lib/components/table/TableFilter/SortIcon.d.ts +6 -5
  2064. package/lib/components/table/TableFilter/index.less +13 -13
  2065. package/lib/components/table/TableFilter/numberFilter.d.ts +6 -6
  2066. package/lib/components/table/TableFilter/selectFilter.d.ts +10 -10
  2067. package/lib/components/table/TableFilter/stringFilter.d.ts +6 -6
  2068. package/lib/components/table/Tabs/index.d.ts +14 -14
  2069. package/lib/components/table/View/index.d.ts +6 -5
  2070. package/lib/components/table/hooks/useGenScroll.d.ts +22 -22
  2071. package/lib/components/table/hooks/useGenTableComponents.d.ts +16 -16
  2072. package/lib/components/table/hooks/useIsMobileTable.d.ts +2 -2
  2073. package/lib/components/table/hooks/useMergeColumnSetting.d.ts +18 -18
  2074. package/lib/components/table/hooks/useTableSetting.d.ts +21 -21
  2075. package/lib/components/table/hooks/useTransColumns.d.ts +14 -14
  2076. package/lib/components/table/hooks/useTransDataSource.d.ts +11 -11
  2077. package/lib/components/table/hooks/useTransDataSourceGroupSetting.d.ts +7 -7
  2078. package/lib/components/table/hooks/useTransFilterSetting.d.ts +7 -7
  2079. package/lib/components/table/hooks/useTransSortSetting.d.ts +7 -7
  2080. package/lib/components/table/hooks/useTriggerValuesChange.d.ts +16 -16
  2081. package/lib/components/table/index.d.ts +4 -4
  2082. package/lib/components/table/index.less +152 -152
  2083. package/lib/components/table/model.d.ts +30 -30
  2084. package/lib/components/table/serve.d.ts +13 -13
  2085. package/lib/components/table/status.d.ts +19 -19
  2086. package/lib/components/table/types.d.ts +268 -268
  2087. package/lib/components/table/utils.d.ts +14 -14
  2088. package/lib/components/tabs/index.d.ts +17 -17
  2089. package/lib/components/tabs/index.less +60 -60
  2090. package/lib/components/time-picker/index.d.ts +3 -2
  2091. package/lib/components/translation/index.d.ts +14 -14
  2092. package/lib/components/translation/index.less +15 -15
  2093. package/lib/components/translation/utils.d.ts +7 -7
  2094. package/lib/components/tree-select/index.d.ts +2 -2
  2095. package/lib/components/typography/index.d.ts +2 -2
  2096. package/lib/components/upload/index.d.ts +3 -2
  2097. package/lib/components/versionModal/index.d.ts +23 -23
  2098. package/lib/components/versionModal/index.less +10 -10
  2099. package/lib/components/versionSelect/index.d.ts +18 -17
  2100. package/lib/components/versionSelect/index.less +3 -3
  2101. package/lib/components/virtual-keyboard/Amount/index.d.ts +22 -22
  2102. package/lib/components/virtual-keyboard/BaseNumberKeyboard/Presets.d.ts +12 -11
  2103. package/lib/components/virtual-keyboard/BaseNumberKeyboard/Presets.less +18 -18
  2104. package/lib/components/virtual-keyboard/BaseNumberKeyboard/index.d.ts +19 -19
  2105. package/lib/components/virtual-keyboard/BaseNumberKeyboard/index.less +8 -8
  2106. package/lib/components/virtual-keyboard/Keyboard/index.d.ts +21 -21
  2107. package/lib/components/virtual-keyboard/Keyboard/index.less +43 -43
  2108. package/lib/components/virtual-keyboard/Number/index.d.ts +14 -13
  2109. package/lib/components/virtual-keyboard/Time/index.d.ts +13 -13
  2110. package/lib/components/virtual-keyboard/Time/utils.d.ts +10 -9
  2111. package/lib/components/virtual-keyboard/VirtualInput/index.d.ts +9 -9
  2112. package/lib/components/virtual-keyboard/VirtualInput/index.less +46 -46
  2113. package/lib/components/virtual-keyboard/VirtualKeyInput/index.d.ts +12 -11
  2114. package/lib/components/virtual-keyboard/VirtualKeyInput/index.less +51 -51
  2115. package/lib/components/virtual-keyboard/index.d.ts +14 -14
  2116. package/lib/components/virtual-keyboard/index.less +16 -16
  2117. package/lib/components/walletCard/Guest/index.d.ts +4 -3
  2118. package/lib/components/walletCard/Guest/index.less +71 -71
  2119. package/lib/components/walletCard/Guide/index.d.ts +4 -3
  2120. package/lib/components/walletCard/Guide/index.less +71 -71
  2121. package/lib/components/walletCard/index.d.ts +77 -77
  2122. package/lib/components/walletCard/index.less +353 -353
  2123. package/lib/hooks/index.d.ts +3 -3
  2124. package/lib/hooks/useCssVariables.d.ts +8 -8
  2125. package/lib/hooks/useEngineContext.d.ts +9 -9
  2126. package/lib/hooks/useMobile.d.ts +8 -0
  2127. package/lib/hooks/useMobile.js +48 -0
  2128. package/lib/hooks/useResponsive.d.ts +4 -4
  2129. package/lib/hooks/useSetRequest.d.ts +2 -2
  2130. package/lib/hooks/useSharedState.d.ts +11 -11
  2131. package/lib/hooks/useTranslationOriginal.d.ts +2 -2
  2132. package/lib/index.d.ts +168 -142
  2133. package/lib/index.js +45 -0
  2134. package/lib/locales/en-US.d.ts +316 -293
  2135. package/lib/locales/en-US.js +26 -1
  2136. package/lib/locales/index.d.ts +1 -1
  2137. package/lib/locales/index.js +2 -2
  2138. package/lib/locales/zh-CN.d.ts +311 -288
  2139. package/lib/locales/zh-CN.js +26 -1
  2140. package/lib/locales/zh-TW.d.ts +311 -288
  2141. package/lib/locales/zh-TW.js +26 -1
  2142. package/lib/typings.d.ts +9 -9
  2143. package/lib/utils/hoc.d.ts +17 -17
  2144. package/lib/utils/index.d.ts +4 -4
  2145. package/lib/utils/locale.d.ts +1 -1
  2146. package/lib/utils/mergeWith.d.ts +1 -1
  2147. package/lib/utils/miniRedux.d.ts +17 -17
  2148. package/lib/utils/platform.d.ts +1 -1
  2149. package/lib/utils/warning.d.ts +1 -1
  2150. package/lowcode/_setters/antd-icon-setter/index.tsx +292 -292
  2151. package/lowcode/_setters/antd-icon-setter/style.less +69 -69
  2152. package/lowcode/_setters/index.tsx +1 -1
  2153. package/lowcode/_utils/defaultSchema.ts +1600 -1600
  2154. package/lowcode/_utils/hoc.tsx +93 -93
  2155. package/lowcode/_utils/transform-meta.ts +364 -364
  2156. package/lowcode/_utils/type.ts +5 -5
  2157. package/lowcode/_utils/utils.ts +15 -15
  2158. package/lowcode/affix/meta.ts +68 -68
  2159. package/lowcode/affix/snippets.ts +20 -20
  2160. package/lowcode/alert/meta.ts +110 -110
  2161. package/lowcode/alert/snippets.ts +54 -54
  2162. package/lowcode/anchor/snippets.ts +30 -30
  2163. package/lowcode/anchor.link/meta.ts +30 -30
  2164. package/lowcode/anchor.link/snippets.ts +1 -1
  2165. package/lowcode/app-version-control/meta.ts +92 -92
  2166. package/lowcode/auto-complete/meta.ts +458 -458
  2167. package/lowcode/auto-complete/snippets.ts +26 -26
  2168. package/lowcode/auto-complete-number/meta.ts +75 -75
  2169. package/lowcode/auto-complete-number/snippets.ts +26 -26
  2170. package/lowcode/avatar/meta.ts +88 -88
  2171. package/lowcode/avatar/snippets.ts +12 -12
  2172. package/lowcode/badge/meta.ts +104 -104
  2173. package/lowcode/badge/snippets.ts +14 -14
  2174. package/lowcode/batch-editor/meta.ts +93 -93
  2175. package/lowcode/breadcrumb/meta.ts +135 -135
  2176. package/lowcode/breadcrumb/snippets.ts +44 -44
  2177. package/lowcode/button/meta.ts +464 -464
  2178. package/lowcode/button/snippets.ts +96 -96
  2179. package/lowcode/button-group/meta.ts +198 -198
  2180. package/lowcode/button-group/snippets.ts +67 -67
  2181. package/lowcode/button-group-edit/meta.ts +31 -31
  2182. package/lowcode/button-group-edit/snippets.ts +97 -97
  2183. package/lowcode/button-group-preview/meta.ts +54 -54
  2184. package/lowcode/button-group-preview/snippets.ts +56 -56
  2185. package/lowcode/calendar/meta.ts +133 -133
  2186. package/lowcode/calendar/snippets.ts +10 -10
  2187. package/lowcode/card/meta.ts +100 -100
  2188. package/lowcode/card/snippets.ts +58 -58
  2189. package/lowcode/card-metric-item/meta.ts +83 -83
  2190. package/lowcode/card-metric-item/snippets.ts +13 -13
  2191. package/lowcode/card-pro/meta.ts +337 -337
  2192. package/lowcode/card-pro/snippe.ts +38 -38
  2193. package/lowcode/carousel/meta.ts +148 -148
  2194. package/lowcode/carousel/snippets.ts +23 -23
  2195. package/lowcode/cascader/meta.ts +175 -175
  2196. package/lowcode/cascader/snippets.ts +46 -46
  2197. package/lowcode/checkbox/meta.ts +85 -85
  2198. package/lowcode/checkbox/snippets.ts +35 -35
  2199. package/lowcode/checkbox.group/meta.ts +155 -155
  2200. package/lowcode/classic-layout/meta.ts +122 -122
  2201. package/lowcode/classic-layout/snippets.ts +65 -65
  2202. package/lowcode/collapse/meta.ts +305 -305
  2203. package/lowcode/collapse/snippets.ts +28 -28
  2204. package/lowcode/collapse.pane/meta.ts +85 -85
  2205. package/lowcode/color-picker/meta.ts +298 -298
  2206. package/lowcode/color-picker/snippets.ts +10 -10
  2207. package/lowcode/component/meta.ts +279 -279
  2208. package/lowcode/config-provider/meta.ts +144 -144
  2209. package/lowcode/config-provider/snippets.ts +10 -10
  2210. package/lowcode/crop-photo/meta.ts +77 -77
  2211. package/lowcode/crop-photo/snippe.ts +12 -12
  2212. package/lowcode/custom-select/meta.ts +202 -202
  2213. package/lowcode/custom-select/snippets.ts +33 -33
  2214. package/lowcode/data-source-form/constants.ts +104 -104
  2215. package/lowcode/data-source-form/meta.ts +1110 -1110
  2216. package/lowcode/data-source-form/snippets.ts +192 -192
  2217. package/lowcode/data-source-form/utils.ts +693 -693
  2218. package/lowcode/data-source-image/meta.ts +74 -74
  2219. package/lowcode/data-source-image/snippets.ts +14 -14
  2220. package/lowcode/data-source-menu/meta.ts +182 -182
  2221. package/lowcode/data-source-qrcode/meta.ts +158 -158
  2222. package/lowcode/data-source-qrcode/snippets.ts +20 -20
  2223. package/lowcode/data-source-table/meta.ts +5800 -5800
  2224. package/lowcode/data-source-table/snippets.ts +90 -90
  2225. package/lowcode/data-source-table/utils.tsx +522 -522
  2226. package/lowcode/data-source-typography/meta.ts +54 -54
  2227. package/lowcode/data-source-typography.text/meta.ts +212 -212
  2228. package/lowcode/data-source-typography.text/snippets.ts +12 -12
  2229. package/lowcode/data-source-wrapper/meta.ts +247 -247
  2230. package/lowcode/data-source-wrapper/snippets.ts +11 -11
  2231. package/lowcode/data-source-wrapper/utils.ts +45 -45
  2232. package/lowcode/date-picker/meta.ts +287 -287
  2233. package/lowcode/date-picker/snippets.ts +50 -50
  2234. package/lowcode/date-picker.old-range-picker/meta.ts +305 -305
  2235. package/lowcode/date-picker.old-range-picker/snippets.ts +11 -11
  2236. package/lowcode/date-picker.range-picker/meta.ts +325 -325
  2237. package/lowcode/date-picker.range-picker/snippets.ts +44 -44
  2238. package/lowcode/descriptions/meta.ts +234 -234
  2239. package/lowcode/descriptions/snippets.ts +18 -18
  2240. package/lowcode/descriptions.item/meta.ts +38 -38
  2241. package/lowcode/directory-tree/meta.ts +2747 -2747
  2242. package/lowcode/div/meta.ts +89 -89
  2243. package/lowcode/divider/meta.ts +70 -70
  2244. package/lowcode/divider/snippets.ts +27 -27
  2245. package/lowcode/drag-sort-tree/meta.ts +117 -117
  2246. package/lowcode/drag-sort-tree/snippets.ts +57 -57
  2247. package/lowcode/drawer/meta.ts +468 -468
  2248. package/lowcode/drawer/snippets.ts +129 -129
  2249. package/lowcode/dropdown/meta.ts +143 -143
  2250. package/lowcode/dropdown/snippets.ts +365 -365
  2251. package/lowcode/dropdown.button/meta.ts +221 -221
  2252. package/lowcode/dropdown.button/snippets.ts +42 -42
  2253. package/lowcode/empty/meta.ts +41 -41
  2254. package/lowcode/empty/snippets.ts +10 -10
  2255. package/lowcode/filter/meta.ts +138 -138
  2256. package/lowcode/form/meta.ts +382 -382
  2257. package/lowcode/form/snippets.ts +32 -32
  2258. package/lowcode/form-group/meta.ts +349 -349
  2259. package/lowcode/form-group/snippets.ts +18 -18
  2260. package/lowcode/form-item-checkbox/meta.ts +108 -108
  2261. package/lowcode/form-item-checkbox/snippets.ts +41 -41
  2262. package/lowcode/form-item-checkbox.group/meta.ts +184 -184
  2263. package/lowcode/form-item-color-picker/meta.ts +314 -314
  2264. package/lowcode/form-item-color-picker/snippets.ts +11 -11
  2265. package/lowcode/form-item-date-picker/meta.ts +448 -448
  2266. package/lowcode/form-item-date-picker/snippets.ts +56 -56
  2267. package/lowcode/form-item-icon-select/meta.ts +65 -65
  2268. package/lowcode/form-item-icon-select/snippets.ts +12 -12
  2269. package/lowcode/form-item-input/meta.ts +262 -262
  2270. package/lowcode/form-item-input/snippets.ts +17 -17
  2271. package/lowcode/form-item-input-number/meta.ts +411 -411
  2272. package/lowcode/form-item-input-number/snippets.ts +31 -31
  2273. package/lowcode/form-item-input.email/meta.ts +284 -284
  2274. package/lowcode/form-item-input.email/snippets.ts +40 -40
  2275. package/lowcode/form-item-input.json/meta.ts +213 -213
  2276. package/lowcode/form-item-input.json/snippets.ts +34 -34
  2277. package/lowcode/form-item-input.mobile/meta.ts +323 -323
  2278. package/lowcode/form-item-input.mobile/snippets.ts +27 -27
  2279. package/lowcode/form-item-input.password/meta.ts +235 -235
  2280. package/lowcode/form-item-input.password/snippets.ts +17 -17
  2281. package/lowcode/form-item-input.phone/meta.ts +299 -299
  2282. package/lowcode/form-item-input.phone/snippets.ts +27 -27
  2283. package/lowcode/form-item-input.subdomain/meta.ts +318 -318
  2284. package/lowcode/form-item-input.subdomain/snippets.ts +27 -27
  2285. package/lowcode/form-item-input.text-area/meta.ts +422 -422
  2286. package/lowcode/form-item-input.text-area/snippets.ts +16 -16
  2287. package/lowcode/form-item-input.url/meta.ts +284 -284
  2288. package/lowcode/form-item-input.url/snippets.ts +20 -20
  2289. package/lowcode/form-item-radio/meta.ts +72 -72
  2290. package/lowcode/form-item-radio/snippets.ts +40 -40
  2291. package/lowcode/form-item-radio.group/meta.ts +239 -239
  2292. package/lowcode/form-item-select/meta.ts +539 -539
  2293. package/lowcode/form-item-select/snippets.ts +65 -65
  2294. package/lowcode/form-item-switch/meta.ts +145 -145
  2295. package/lowcode/form-item-switch/snippets.ts +15 -15
  2296. package/lowcode/form-item-time-picker/meta.ts +304 -304
  2297. package/lowcode/form-item-time-picker/snippets.ts +16 -16
  2298. package/lowcode/form-item-translation/meta.ts +307 -307
  2299. package/lowcode/form-item-translation/snippets.ts +15 -15
  2300. package/lowcode/form-item-upload/meta.ts +458 -458
  2301. package/lowcode/form-item-upload/snippets.ts +12 -12
  2302. package/lowcode/form-item-upload/utils.ts +230 -230
  2303. package/lowcode/form.item/meta.ts +478 -478
  2304. package/lowcode/form.item/snippets.ts +12 -12
  2305. package/lowcode/form.list/meta.ts +42 -42
  2306. package/lowcode/form.list/snippets.ts +11 -11
  2307. package/lowcode/graphic-text-card/meta.ts +1145 -0
  2308. package/lowcode/graphic-text-card/snippets.ts +74 -0
  2309. package/lowcode/grid.col/meta.ts +139 -139
  2310. package/lowcode/grid.col/snippets.ts +1 -1
  2311. package/lowcode/grid.row/meta.ts +118 -118
  2312. package/lowcode/grid.row/snippets.ts +122 -122
  2313. package/lowcode/icon/meta.ts +74 -74
  2314. package/lowcode/icon/snippets.ts +13 -13
  2315. package/lowcode/icon-select/meta.ts +98 -98
  2316. package/lowcode/image/meta.ts +84 -84
  2317. package/lowcode/image/snippets.ts +15 -15
  2318. package/lowcode/information-modal/meta.ts +1931 -1931
  2319. package/lowcode/input/meta.ts +219 -219
  2320. package/lowcode/input/snippets.ts +12 -12
  2321. package/lowcode/input-number/meta.ts +225 -225
  2322. package/lowcode/input-number/snippets.ts +12 -12
  2323. package/lowcode/input-number-range/meta.ts +217 -217
  2324. package/lowcode/input-number-range/snippets.ts +12 -12
  2325. package/lowcode/input.group/meta.ts +53 -53
  2326. package/lowcode/input.group/snippets.ts +24 -24
  2327. package/lowcode/input.password/meta.ts +195 -195
  2328. package/lowcode/input.password/snippets.ts +12 -12
  2329. package/lowcode/input.search/meta.ts +213 -213
  2330. package/lowcode/input.search/snippets.ts +12 -12
  2331. package/lowcode/input.text-area/meta.ts +210 -210
  2332. package/lowcode/input.text-area/snippets.ts +12 -12
  2333. package/lowcode/item/meta.ts +3237 -3237
  2334. package/lowcode/json-wrapper/meta.ts +65 -65
  2335. package/lowcode/json-wrapper/snippets.ts +16 -16
  2336. package/lowcode/list/meta.ts +655 -655
  2337. package/lowcode/list/snippets.ts +382 -382
  2338. package/lowcode/list.item/meta.ts +68 -68
  2339. package/lowcode/list.item.meta/meta.ts +49 -49
  2340. package/lowcode/login/meta.ts +56 -56
  2341. package/lowcode/login-and-register/meta.ts +540 -540
  2342. package/lowcode/login-and-register/snippets.ts +37 -37
  2343. package/lowcode/low-code-page/meta.ts +56 -56
  2344. package/lowcode/lowCodePage/index.ts +47 -47
  2345. package/lowcode/mentions/meta.ts +159 -159
  2346. package/lowcode/mentions/snippets.ts +10 -10
  2347. package/lowcode/menu/meta.ts +243 -243
  2348. package/lowcode/menu/snippets.ts +22 -22
  2349. package/lowcode/menu/utils.ts +97 -97
  2350. package/lowcode/menu.item/meta.ts +63 -63
  2351. package/lowcode/menu.item/snippets.ts +1 -1
  2352. package/lowcode/menu.item-group/meta.ts +110 -110
  2353. package/lowcode/menu.item-group/snippets.ts +1 -1
  2354. package/lowcode/menu.sub-menu/meta.ts +131 -131
  2355. package/lowcode/menu.sub-menu/snippets.ts +1 -1
  2356. package/lowcode/modal/meta.ts +276 -276
  2357. package/lowcode/modal/snippets.ts +33 -33
  2358. package/lowcode/multilevel-card/meta.ts +462 -0
  2359. package/lowcode/multilevel-card/snippets.ts +18 -0
  2360. package/lowcode/organization-tenant-switch/meta.ts +127 -127
  2361. package/lowcode/page/meta.ts +52 -52
  2362. package/lowcode/page-header/meta.ts +101 -101
  2363. package/lowcode/page-header/snippets.ts +13 -13
  2364. package/lowcode/pagination/meta.ts +231 -231
  2365. package/lowcode/pagination/snippets.ts +14 -14
  2366. package/lowcode/pisell-adjust-price/meta.ts +58 -58
  2367. package/lowcode/pisell-adjust-price/snippets.ts +10 -10
  2368. package/lowcode/pisell-adjust-price-input-number/meta.ts +245 -245
  2369. package/lowcode/pisell-alert/meta.ts +117 -117
  2370. package/lowcode/pisell-alert/snippets.ts +50 -50
  2371. package/lowcode/pisell-anchor/meta.ts +118 -118
  2372. package/lowcode/pisell-anchor/snippets.ts +26 -26
  2373. package/lowcode/pisell-app-card/meta.ts +286 -286
  2374. package/lowcode/pisell-avatar/meta.ts +110 -110
  2375. package/lowcode/pisell-avatar/snippets.ts +14 -14
  2376. package/lowcode/pisell-basic-grid/meta.ts +520 -0
  2377. package/lowcode/pisell-batch-action-bar/meta.ts +466 -0
  2378. package/lowcode/pisell-batch-action-bar/snippets.ts +22 -0
  2379. package/lowcode/pisell-card/meta.ts +136 -136
  2380. package/lowcode/pisell-card/snippets.ts +16 -16
  2381. package/lowcode/pisell-card-list/meta.ts +267 -267
  2382. package/lowcode/pisell-card-list/snippets.ts +9 -9
  2383. package/lowcode/pisell-checkbox-group/meta.ts +112 -112
  2384. package/lowcode/pisell-checkbox-group/snippets.ts +13 -13
  2385. package/lowcode/pisell-container/meta.ts +71 -71
  2386. package/lowcode/pisell-container/snippets.ts +14 -14
  2387. package/lowcode/pisell-content/meta.ts +108 -108
  2388. package/lowcode/pisell-countdown/meta.ts +71 -71
  2389. package/lowcode/pisell-countdown/snippets.ts +12 -12
  2390. package/lowcode/pisell-custom-checkbox-group/meta.ts +204 -204
  2391. package/lowcode/pisell-custom-checkbox-group/snippets.ts +56 -56
  2392. package/lowcode/pisell-date-picker/meta.ts +76 -76
  2393. package/lowcode/pisell-date-picker/snippets.ts +9 -9
  2394. package/lowcode/pisell-draggable/meta.ts +189 -189
  2395. package/lowcode/pisell-drop-sort/meta.ts +362 -362
  2396. package/lowcode/pisell-dropdown/meta.ts +180 -180
  2397. package/lowcode/pisell-dropdown/snippets.ts +69 -69
  2398. package/lowcode/pisell-empty/meta.ts +85 -85
  2399. package/lowcode/pisell-empty/snippets.ts +10 -10
  2400. package/lowcode/pisell-floating-panel/meta.ts +232 -232
  2401. package/lowcode/pisell-footer/meta.ts +93 -93
  2402. package/lowcode/pisell-good-pass-card/meta.ts +37 -37
  2403. package/lowcode/pisell-good-pass-card/snippets.ts +8 -8
  2404. package/lowcode/pisell-header/meta.ts +106 -106
  2405. package/lowcode/pisell-header-progress-bar/meta.ts +116 -116
  2406. package/lowcode/pisell-header-progress-bar/snippets.ts +24 -24
  2407. package/lowcode/pisell-image-card/meta.ts +529 -0
  2408. package/lowcode/pisell-image-card/snippets.ts +40 -0
  2409. package/lowcode/pisell-image-carousels/meta.ts +143 -143
  2410. package/lowcode/pisell-image-carousels/snippets.ts +20 -20
  2411. package/lowcode/pisell-information-entry/meta.ts +146 -146
  2412. package/lowcode/pisell-information-entry/snippets.ts +17 -17
  2413. package/lowcode/pisell-input/meta.ts +193 -193
  2414. package/lowcode/pisell-input/snippets.ts +11 -11
  2415. package/lowcode/pisell-input.bank-card-input/meta.ts +62 -62
  2416. package/lowcode/pisell-input.bank-card-input/snippets.ts +11 -11
  2417. package/lowcode/pisell-input.copy/meta.ts +73 -73
  2418. package/lowcode/pisell-input.copy/snippets.ts +10 -10
  2419. package/lowcode/pisell-input.security-code/meta.ts +92 -92
  2420. package/lowcode/pisell-input.security-code/snippets.ts +11 -11
  2421. package/lowcode/pisell-layout/meta.ts +178 -178
  2422. package/lowcode/pisell-list01/meta.ts +73 -73
  2423. package/lowcode/pisell-list01/snippets.ts +35 -35
  2424. package/lowcode/pisell-loading/meta.ts +106 -106
  2425. package/lowcode/pisell-loading/snippets.ts +11 -11
  2426. package/lowcode/pisell-menu/meta.ts +112 -112
  2427. package/lowcode/pisell-modal/meta.ts +200 -200
  2428. package/lowcode/pisell-modal/snippets.ts +38 -38
  2429. package/lowcode/pisell-modal.information/meta.ts +129 -129
  2430. package/lowcode/pisell-modal.information/snippets.ts +17 -17
  2431. package/lowcode/pisell-navigation-menu/meta.ts +137 -137
  2432. package/lowcode/pisell-number-keyboard/meta.ts +98 -98
  2433. package/lowcode/pisell-price-keyboard/meta.ts +174 -174
  2434. package/lowcode/pisell-procedure/meta.ts +688 -0
  2435. package/lowcode/pisell-procedure/snippets.ts +71 -0
  2436. package/lowcode/pisell-qrcode/meta.ts +46 -46
  2437. package/lowcode/pisell-qrcode/snippets.ts +13 -13
  2438. package/lowcode/pisell-qrscanner/meta.ts +85 -85
  2439. package/lowcode/pisell-qrscanner/snippets.ts +24 -24
  2440. package/lowcode/pisell-row/meta.ts +127 -127
  2441. package/lowcode/pisell-row/snippets.ts +24 -24
  2442. package/lowcode/pisell-scan/meta.ts +53 -53
  2443. package/lowcode/pisell-scan/snippets.ts +13 -13
  2444. package/lowcode/pisell-scroll-view/meta.ts +654 -0
  2445. package/lowcode/pisell-section-headers/meta.ts +91 -91
  2446. package/lowcode/pisell-section-headers/snippets.ts +22 -22
  2447. package/lowcode/pisell-sider/meta.ts +178 -178
  2448. package/lowcode/pisell-statistic-list/meta.ts +264 -264
  2449. package/lowcode/pisell-steps/meta.ts +630 -0
  2450. package/lowcode/pisell-steps/snippets.ts +118 -0
  2451. package/lowcode/pisell-super-tabs/meta.ts +776 -0
  2452. package/lowcode/pisell-tabbar/meta.ts +55 -0
  2453. package/lowcode/pisell-tags/meta.ts +123 -123
  2454. package/lowcode/pisell-tags/snippets.ts +14 -14
  2455. package/lowcode/pisell-text/meta.ts +46 -46
  2456. package/lowcode/pisell-text.amount/meta.ts +61 -61
  2457. package/lowcode/pisell-text.amount/snippets.ts +15 -15
  2458. package/lowcode/pisell-text.editable/meta.ts +115 -115
  2459. package/lowcode/pisell-text.editable/snippets.ts +15 -15
  2460. package/lowcode/pisell-tooltip/meta.ts +306 -306
  2461. package/lowcode/pisell-tooltip/snippets.ts +12 -12
  2462. package/lowcode/pisell-upload/meta.ts +516 -516
  2463. package/lowcode/pisell-upload/snippets.ts +20 -20
  2464. package/lowcode/pisell-view-grid/meta.ts +167 -167
  2465. package/lowcode/pisell-view-grid/snippets.ts +54 -54
  2466. package/lowcode/pisell-wallet-pass-card/actionsMeta.ts +216 -216
  2467. package/lowcode/pisell-wallet-pass-card/meta.ts +257 -257
  2468. package/lowcode/pisell-wallet-pass-card/snippets.ts +20 -20
  2469. package/lowcode/popconfirm/meta.ts +120 -120
  2470. package/lowcode/popconfirm/snippets.ts +21 -21
  2471. package/lowcode/popover/meta.ts +332 -332
  2472. package/lowcode/popover/snippets.ts +10 -10
  2473. package/lowcode/product-card/meta.ts +145 -145
  2474. package/lowcode/product-card/snippets.ts +36 -36
  2475. package/lowcode/profile-menu/meta.ts +175 -175
  2476. package/lowcode/profile-menu/snippets.ts +71 -71
  2477. package/lowcode/progress/meta.ts +142 -142
  2478. package/lowcode/progress/snippets.ts +24 -24
  2479. package/lowcode/qrcode/meta.ts +150 -150
  2480. package/lowcode/qrcode/snippets.ts +20 -20
  2481. package/lowcode/radio/meta.ts +69 -69
  2482. package/lowcode/radio/snippets.ts +36 -36
  2483. package/lowcode/radio.group/meta.ts +218 -218
  2484. package/lowcode/rate/meta.ts +133 -133
  2485. package/lowcode/rate/snippets.ts +12 -12
  2486. package/lowcode/record-view/meta.ts +725 -725
  2487. package/lowcode/result/meta.ts +53 -53
  2488. package/lowcode/result/snippets.ts +14 -14
  2489. package/lowcode/section-footers/meta.ts +65 -65
  2490. package/lowcode/section-footers/snippe.ts +20 -20
  2491. package/lowcode/segmented/meta.ts +165 -165
  2492. package/lowcode/segmented/snippets.ts +25 -25
  2493. package/lowcode/select/meta.ts +477 -477
  2494. package/lowcode/select/snippets.ts +29 -29
  2495. package/lowcode/select-time/meta.ts +75 -75
  2496. package/lowcode/skeleton/meta.ts +63 -63
  2497. package/lowcode/skeleton/snippets.ts +13 -13
  2498. package/lowcode/slider/meta.ts +218 -218
  2499. package/lowcode/slider/snippets.ts +12 -12
  2500. package/lowcode/slot/meta.ts +61 -61
  2501. package/lowcode/slot/view.tsx +58 -58
  2502. package/lowcode/sort/meta.ts +117 -117
  2503. package/lowcode/sort/snippets.ts +22 -22
  2504. package/lowcode/sortable-list/meta.ts +119 -119
  2505. package/lowcode/sortable-list/snippets.ts +49 -49
  2506. package/lowcode/space/meta.ts +65 -65
  2507. package/lowcode/space/snippets.ts +24 -24
  2508. package/lowcode/spin/meta.ts +70 -70
  2509. package/lowcode/spin/snippets.ts +13 -13
  2510. package/lowcode/statistic/meta.ts +77 -77
  2511. package/lowcode/statistic/snippets.ts +13 -13
  2512. package/lowcode/steps/meta.ts +281 -281
  2513. package/lowcode/steps/snippets.ts +36 -36
  2514. package/lowcode/steps.step/meta.ts +54 -54
  2515. package/lowcode/steps.step/snippets.ts +1 -1
  2516. package/lowcode/submit-button/meta.ts +1099 -1099
  2517. package/lowcode/submit-button/snippets.ts +22 -22
  2518. package/lowcode/switch/meta.ts +122 -122
  2519. package/lowcode/switch/snippets.ts +12 -12
  2520. package/lowcode/tab-card/README.md +225 -0
  2521. package/lowcode/tab-card/meta.ts +588 -0
  2522. package/lowcode/tab-card/snippets.ts +82 -0
  2523. package/lowcode/table/meta.ts +2495 -2495
  2524. package/lowcode/table/snippets.ts +439 -439
  2525. package/lowcode/tabs/meta.ts +518 -518
  2526. package/lowcode/tabs/snippets.ts +161 -161
  2527. package/lowcode/tabs.tab-pane/meta.ts +78 -78
  2528. package/lowcode/tag/meta.ts +81 -81
  2529. package/lowcode/tag/snippets.ts +13 -13
  2530. package/lowcode/test/meta.ts +47 -47
  2531. package/lowcode/text-card/meta.ts +1093 -0
  2532. package/lowcode/text-card/snippets.ts +87 -0
  2533. package/lowcode/time-picker/meta.ts +232 -232
  2534. package/lowcode/time-picker/snippets.ts +10 -10
  2535. package/lowcode/timeline/meta.ts +212 -212
  2536. package/lowcode/timeline/snippets.ts +31 -31
  2537. package/lowcode/timeline.item/meta.ts +53 -53
  2538. package/lowcode/timeline.item/snippets.ts +10 -10
  2539. package/lowcode/tooltip/meta.ts +306 -306
  2540. package/lowcode/tooltip/snippets.ts +12 -12
  2541. package/lowcode/transfer/meta.ts +305 -305
  2542. package/lowcode/transfer/snippets.ts +42 -42
  2543. package/lowcode/translation/meta.ts +186 -186
  2544. package/lowcode/translation/snippets.ts +12 -12
  2545. package/lowcode/tree/meta.ts +377 -377
  2546. package/lowcode/tree/snippets.ts +30 -30
  2547. package/lowcode/tree-select/meta.ts +320 -320
  2548. package/lowcode/tree-select/snippets.ts +34 -34
  2549. package/lowcode/typography.link/meta.ts +46 -46
  2550. package/lowcode/typography.link/snippets.ts +14 -14
  2551. package/lowcode/typography.paragraph/meta.ts +208 -208
  2552. package/lowcode/typography.paragraph/snippets.ts +14 -14
  2553. package/lowcode/typography.text/meta.ts +207 -207
  2554. package/lowcode/typography.text/snippets.ts +34 -34
  2555. package/lowcode/typography.title/meta.ts +205 -205
  2556. package/lowcode/typography.title/snippets.ts +46 -46
  2557. package/lowcode/upload/meta.ts +439 -439
  2558. package/lowcode/upload/snippets.ts +16 -16
  2559. package/lowcode/virtual-keyboard/meta.ts +55 -55
  2560. package/lowcode/virtual-keyboard-time/meta.ts +55 -55
  2561. package/lowcode/wallet-card/meta.ts +303 -303
  2562. package/lowcode/wallet-card/snippets.ts +44 -44
  2563. package/package.json +30 -8
  2564. package/build/lowcode/assets-daily.json +0 -89
  2565. package/build/lowcode/assets-dev.json +0 -89
  2566. package/build/lowcode/assets-prod.json +0 -89
  2567. package/build/lowcode/designer.html +0 -303
  2568. package/build/lowcode/index.html +0 -305
  2569. package/build/lowcode/index.js +0 -1
  2570. package/build/lowcode/meta.js +0 -26
  2571. package/build/lowcode/preview.css +0 -1
  2572. package/build/lowcode/preview.html +0 -35
  2573. package/build/lowcode/preview.js +0 -310
  2574. package/build/lowcode/render/default/view.css +0 -1
  2575. package/build/lowcode/render/default/view.js +0 -239
  2576. package/build/lowcode/view.css +0 -1
  2577. 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
+ }