@pisell/materials 6.11.49 → 6.11.50

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 (932) hide show
  1. package/build/lowcode/assets-daily.json +11 -11
  2. package/build/lowcode/assets-dev.json +2 -2
  3. package/build/lowcode/assets-prod.json +11 -11
  4. package/build/lowcode/meta.js +1 -1
  5. package/build/lowcode/render/default/view.css +1 -1
  6. package/build/lowcode/render/default/view.js +6 -6
  7. package/build/lowcode/view.css +1 -1
  8. package/build/lowcode/view.js +5 -5
  9. package/es/components/Pagination/index.d.ts +2 -1
  10. package/es/components/Pagination/index.js +58 -24
  11. package/es/components/PisellLayouts/index.d.ts +38 -0
  12. package/es/components/pisellCardList/index.d.ts +107 -0
  13. package/es/components/pisellDataSourceContainer/components/{Table → Pagination}/index.d.ts +1 -4
  14. package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.d.ts +13 -0
  15. package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.js +3 -1
  16. package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.stories.d.ts +55 -0
  17. package/es/components/pisellFloorMapLayout/components/CanvasTabs.d.ts +22 -0
  18. package/es/components/pisellFloorMapLayout/components/EditableItemLayer.d.ts +46 -0
  19. package/es/components/pisellFloorMapLayout/components/FigmaTableCard.d.ts +39 -0
  20. package/es/components/pisellFloorMapLayout/components/FloorMapDataForm.d.ts +17 -0
  21. package/es/components/pisellFloorMapLayout/components/FloorMapEditPanel.d.ts +11 -0
  22. package/es/components/pisellFloorMapLayout/components/FloorMapEditTopBar.d.ts +60 -0
  23. package/es/components/pisellFloorMapLayout/components/FloorMapToolbar.d.ts +35 -0
  24. package/es/components/pisellFloorMapLayout/components/ItemLayer.d.ts +57 -0
  25. package/es/components/pisellFloorMapLayout/components/ItemLayer.js +9 -4
  26. package/es/components/pisellFloorMapLayout/components/ItemLayer.less +9 -2
  27. package/es/components/pisellFloorMapLayout/components/MapLayer.d.ts +27 -0
  28. package/es/components/pisellFloorMapLayout/components/ViewControls.d.ts +55 -0
  29. package/es/components/pisellFloorMapLayout/components/ViewControlsWithZoom.d.ts +25 -0
  30. package/es/components/pisellFloorMapLayout/components/index.d.ts +21 -0
  31. package/es/components/pisellFloorMapLayout/context/FloorMapLayoutContext.d.ts +16 -0
  32. package/es/components/pisellFloorMapLayout/context/mergeFloorMapLayoutContext.d.ts +5 -0
  33. package/es/components/pisellFloorMapLayout/hooks/useFloorMapEditState.d.ts +71 -0
  34. package/es/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.d.ts +89 -0
  35. package/es/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.js +74 -23
  36. package/es/components/pisellFloorMapLayout/hooks/useShopFloorPlanSubscription.d.ts +19 -0
  37. package/es/components/pisellFloorMapLayout/index.d.ts +26 -0
  38. package/es/components/pisellFloorMapLayout/shopFloorPlan/shopFloorPlanClient.d.ts +10 -0
  39. package/es/components/pisellFloorMapLayout/shopFloorPlan/shopFloorPlanMapping.d.ts +18 -0
  40. package/es/components/pisellFloorMapLayout/shopFloorPlan/shopFloorPlanPure.d.ts +22 -0
  41. package/es/components/pisellFloorMapLayout/types.d.ts +646 -0
  42. package/es/components/pisellFloorMapLayout/utils/floorMapCanvasDisplay.d.ts +20 -0
  43. package/es/components/pisellFloorMapLayout/utils/floorMapConfigMerge.d.ts +8 -0
  44. package/es/components/pisellFloorMapLayout/utils/floorMapDataBindingUtils.d.ts +21 -0
  45. package/es/components/pisellFloorMapLayout/utils/floorMapElementKindUtils.d.ts +22 -0
  46. package/es/components/pisellFloorMapLayout/utils/floorMapFallbackRender.d.ts +11 -0
  47. package/es/components/pisellFloorMapLayout/utils/floorMapRemotePersist.d.ts +17 -0
  48. package/es/components/pisellFloorMapLayout/utils/floorMapViewConfigDiff.d.ts +8 -0
  49. package/es/components/pisellFloorMapLayout/utils/layoutMeasurements.d.ts +30 -0
  50. package/es/components/pisellFloorMapLayout/utils/mergeCanvasesForTabs.d.ts +7 -0
  51. package/es/components/pisellGoodPassCard/index.d.ts +50 -0
  52. package/es/components/pisellRecordBoard/PisellRecordBoard.d.ts +9 -0
  53. package/es/components/pisellRecordBoard/PisellRecordBoard.js +14 -6
  54. package/es/components/pisellRecordBoard/layouts/GridLayout/Grid.d.ts +14 -0
  55. package/es/components/pisellRecordBoard/layouts/GridLayout/Grid.js +193 -9
  56. package/es/components/pisellRecordBoard/layouts/GridLayout/Grid.less +31 -0
  57. package/es/components/pisellRecordBoard/shellFrame/Calendar/RecordBoardCalendar.d.ts +8 -0
  58. package/es/components/pisellRecordBoard/shellFrame/Calendar/utils/BookingCalendarStyle.d.ts +1 -1
  59. package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarMonthView.js +6 -3
  60. package/es/components/pisellRecordBoard/shellFrame/Calendar/view/bookingCalendarDayViewContext.d.ts +12 -0
  61. package/es/components/pisellRecordBoard/shellFrame/ColumnSetting/index.d.ts +8 -0
  62. package/es/components/pisellRecordBoard/shellFrame/FloorMap.d.ts +14 -0
  63. package/es/components/pisellRecordBoard/shellFrame/Pagination/index.d.ts +14 -0
  64. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/PisellRecordBoardResourceWallView.d.ts +12 -0
  65. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/RecordBoardResourceWall.d.ts +8 -0
  66. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanel.d.ts +50 -0
  67. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanelColorTab.d.ts +17 -0
  68. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/VenueWallCard.d.ts +22 -0
  69. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/venueWallCardPresentation.d.ts +58 -0
  70. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/venueWallUtils.d.ts +64 -0
  71. package/es/components/pisellRecordBoard/shellFrame/ShellBodyMetaContext.d.ts +24 -0
  72. package/es/components/pisellRecordBoard/shellFrame/ToolBar/index.d.ts +12 -0
  73. package/es/components/pisellRecordBoard/shellFrame/ToolBar/recordBoardToolBarI18n.d.ts +13 -0
  74. package/es/components/pisellRecordBoard/shellFrame/ToolBarQuickFilter/index.d.ts +17 -0
  75. package/es/components/pisellRecordBoard/shellFrame/index.js +4 -1
  76. package/es/components/pisellRecordBoard/types.d.ts +798 -0
  77. package/es/components/pisellRecordBoard/utils/partitionShellFrameChildren.d.ts +23 -0
  78. package/es/components/pisellRecordBoard/utils/recordBoardColumns.d.ts +52 -0
  79. package/es/components/pisellTimeNavigator/PisellTimeNavigator.d.ts +10 -0
  80. package/es/components/pisellTimeNavigator/PisellTimeNavigator.js +13 -1
  81. package/es/components/pisellWalletPassCard/index.d.ts +146 -0
  82. package/es/components/productCard/index.d.ts +7 -0
  83. package/es/locales/en-US.d.ts +560 -0
  84. package/es/locales/en-US.js +5 -2
  85. package/es/locales/ja.d.ts +529 -0
  86. package/es/locales/ja.js +3 -0
  87. package/es/locales/pt.d.ts +529 -0
  88. package/es/locales/pt.js +3 -0
  89. package/es/locales/zh-CN.d.ts +555 -0
  90. package/es/locales/zh-CN.js +5 -2
  91. package/es/locales/zh-TW.d.ts +555 -0
  92. package/es/locales/zh-TW.js +5 -2
  93. package/es/pisell-materials.tw.css +1 -1
  94. package/lib/components/Pagination/index.d.ts +2 -1
  95. package/lib/components/Pagination/index.js +50 -7
  96. package/lib/components/PisellLayouts/index.d.ts +38 -0
  97. package/lib/components/pisellCardList/index.d.ts +107 -0
  98. package/lib/components/pisellDataSourceContainer/components/{Table → Pagination}/index.d.ts +1 -4
  99. package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.d.ts +13 -0
  100. package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.js +3 -1
  101. package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.stories.d.ts +55 -0
  102. package/lib/components/pisellFloorMapLayout/components/CanvasTabs.d.ts +22 -0
  103. package/lib/components/pisellFloorMapLayout/components/EditableItemLayer.d.ts +46 -0
  104. package/lib/components/pisellFloorMapLayout/components/FigmaTableCard.d.ts +39 -0
  105. package/lib/components/pisellFloorMapLayout/components/FloorMapDataForm.d.ts +17 -0
  106. package/lib/components/pisellFloorMapLayout/components/FloorMapEditPanel.d.ts +11 -0
  107. package/lib/components/pisellFloorMapLayout/components/FloorMapEditTopBar.d.ts +60 -0
  108. package/lib/components/pisellFloorMapLayout/components/FloorMapToolbar.d.ts +35 -0
  109. package/lib/components/pisellFloorMapLayout/components/ItemLayer.d.ts +57 -0
  110. package/lib/components/pisellFloorMapLayout/components/ItemLayer.js +8 -3
  111. package/lib/components/pisellFloorMapLayout/components/ItemLayer.less +9 -2
  112. package/lib/components/pisellFloorMapLayout/components/MapLayer.d.ts +27 -0
  113. package/lib/components/pisellFloorMapLayout/components/ViewControls.d.ts +55 -0
  114. package/lib/components/pisellFloorMapLayout/components/ViewControlsWithZoom.d.ts +25 -0
  115. package/lib/components/pisellFloorMapLayout/components/index.d.ts +21 -0
  116. package/lib/components/pisellFloorMapLayout/context/FloorMapLayoutContext.d.ts +16 -0
  117. package/lib/components/pisellFloorMapLayout/context/mergeFloorMapLayoutContext.d.ts +5 -0
  118. package/lib/components/pisellFloorMapLayout/hooks/useFloorMapEditState.d.ts +71 -0
  119. package/lib/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.d.ts +89 -0
  120. package/lib/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.js +53 -18
  121. package/lib/components/pisellFloorMapLayout/hooks/useShopFloorPlanSubscription.d.ts +19 -0
  122. package/lib/components/pisellFloorMapLayout/index.d.ts +26 -0
  123. package/lib/components/pisellFloorMapLayout/shopFloorPlan/shopFloorPlanClient.d.ts +10 -0
  124. package/lib/components/pisellFloorMapLayout/shopFloorPlan/shopFloorPlanMapping.d.ts +18 -0
  125. package/lib/components/pisellFloorMapLayout/shopFloorPlan/shopFloorPlanPure.d.ts +22 -0
  126. package/lib/components/pisellFloorMapLayout/types.d.ts +646 -0
  127. package/lib/components/pisellFloorMapLayout/utils/floorMapCanvasDisplay.d.ts +20 -0
  128. package/lib/components/pisellFloorMapLayout/utils/floorMapConfigMerge.d.ts +8 -0
  129. package/lib/components/pisellFloorMapLayout/utils/floorMapDataBindingUtils.d.ts +21 -0
  130. package/lib/components/pisellFloorMapLayout/utils/floorMapElementKindUtils.d.ts +22 -0
  131. package/lib/components/pisellFloorMapLayout/utils/floorMapFallbackRender.d.ts +11 -0
  132. package/lib/components/pisellFloorMapLayout/utils/floorMapRemotePersist.d.ts +17 -0
  133. package/lib/components/pisellFloorMapLayout/utils/floorMapViewConfigDiff.d.ts +8 -0
  134. package/lib/components/pisellFloorMapLayout/utils/layoutMeasurements.d.ts +30 -0
  135. package/lib/components/pisellFloorMapLayout/utils/mergeCanvasesForTabs.d.ts +7 -0
  136. package/lib/components/pisellGoodPassCard/index.d.ts +50 -0
  137. package/lib/components/pisellRecordBoard/PisellRecordBoard.d.ts +9 -0
  138. package/lib/components/pisellRecordBoard/PisellRecordBoard.js +16 -6
  139. package/lib/components/pisellRecordBoard/layouts/GridLayout/Grid.d.ts +14 -0
  140. package/lib/components/pisellRecordBoard/layouts/GridLayout/Grid.js +189 -32
  141. package/lib/components/pisellRecordBoard/layouts/GridLayout/Grid.less +31 -0
  142. package/lib/components/pisellRecordBoard/shellFrame/Calendar/RecordBoardCalendar.d.ts +8 -0
  143. package/lib/components/pisellRecordBoard/shellFrame/Calendar/utils/BookingCalendarStyle.d.ts +1 -1
  144. package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarMonthView.js +99 -96
  145. package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/bookingCalendarDayViewContext.d.ts +12 -0
  146. package/lib/components/pisellRecordBoard/shellFrame/ColumnSetting/index.d.ts +8 -0
  147. package/lib/components/pisellRecordBoard/shellFrame/FloorMap.d.ts +14 -0
  148. package/lib/components/pisellRecordBoard/shellFrame/Pagination/index.d.ts +14 -0
  149. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/PisellRecordBoardResourceWallView.d.ts +12 -0
  150. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/RecordBoardResourceWall.d.ts +8 -0
  151. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanel.d.ts +50 -0
  152. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanelColorTab.d.ts +17 -0
  153. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/VenueWallCard.d.ts +22 -0
  154. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/venueWallCardPresentation.d.ts +58 -0
  155. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/venueWallUtils.d.ts +64 -0
  156. package/lib/components/pisellRecordBoard/shellFrame/ShellBodyMetaContext.d.ts +24 -0
  157. package/lib/components/pisellRecordBoard/shellFrame/ToolBar/index.d.ts +12 -0
  158. package/lib/components/pisellRecordBoard/shellFrame/ToolBar/recordBoardToolBarI18n.d.ts +13 -0
  159. package/lib/components/pisellRecordBoard/shellFrame/ToolBarQuickFilter/index.d.ts +17 -0
  160. package/lib/components/pisellRecordBoard/shellFrame/index.js +2 -1
  161. package/lib/components/pisellRecordBoard/types.d.ts +798 -0
  162. package/lib/components/pisellRecordBoard/utils/partitionShellFrameChildren.d.ts +23 -0
  163. package/lib/components/pisellRecordBoard/utils/recordBoardColumns.d.ts +52 -0
  164. package/lib/components/pisellTimeNavigator/PisellTimeNavigator.d.ts +10 -0
  165. package/lib/components/pisellTimeNavigator/PisellTimeNavigator.js +9 -1
  166. package/lib/components/pisellWalletPassCard/index.d.ts +146 -0
  167. package/lib/components/productCard/index.d.ts +7 -0
  168. package/lib/locales/en-US.d.ts +560 -0
  169. package/lib/locales/en-US.js +4 -1
  170. package/lib/locales/ja.d.ts +529 -0
  171. package/lib/locales/ja.js +3 -0
  172. package/lib/locales/pt.d.ts +529 -0
  173. package/lib/locales/pt.js +3 -0
  174. package/lib/locales/zh-CN.d.ts +555 -0
  175. package/lib/locales/zh-CN.js +4 -1
  176. package/lib/locales/zh-TW.d.ts +555 -0
  177. package/lib/locales/zh-TW.js +4 -1
  178. package/lib/pisell-materials.tw.css +1 -1
  179. package/lowcode/pisell-record-board-calendar-view/meta.ts +1 -1
  180. package/package.json +1 -1
  181. package/es/components/PisellBasicGrid/PisellBasicGrid.d.ts +0 -9
  182. package/es/components/PisellBasicGrid/hooks/index.d.ts +0 -1
  183. package/es/components/PisellBasicGrid/hooks/useGridStyle.d.ts +0 -37
  184. package/es/components/PisellBasicGrid/index.d.ts +0 -6
  185. package/es/components/PisellBasicGrid/types.d.ts +0 -221
  186. package/es/components/PisellBasicGrid/utils/index.d.ts +0 -63
  187. package/es/components/PisellCards/PisellCards.d.ts +0 -8
  188. package/es/components/PisellCards/components/GraphicTextCard/GraphicTextCard.d.ts +0 -8
  189. package/es/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.d.ts +0 -5
  190. package/es/components/PisellCards/components/GraphicTextCard/components/GraphicArea.d.ts +0 -24
  191. package/es/components/PisellCards/components/GraphicTextCard/components/TextContent.d.ts +0 -27
  192. package/es/components/PisellCards/components/GraphicTextCard/components/index.d.ts +0 -6
  193. package/es/components/PisellCards/components/GraphicTextCard/hooks/index.d.ts +0 -5
  194. package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.d.ts +0 -15
  195. package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.d.ts +0 -18
  196. package/es/components/PisellCards/components/GraphicTextCard/index.d.ts +0 -5
  197. package/es/components/PisellCards/components/GraphicTextCard/types.d.ts +0 -290
  198. package/es/components/PisellCards/components/GraphicTextCard/utils/index.d.ts +0 -19
  199. package/es/components/PisellCards/components/MultilevelCard/MultilevelCard.d.ts +0 -19
  200. package/es/components/PisellCards/components/MultilevelCard/components/CardWrapper.d.ts +0 -7
  201. package/es/components/PisellCards/components/MultilevelCard/components/index.d.ts +0 -2
  202. package/es/components/PisellCards/components/MultilevelCard/hooks/index.d.ts +0 -2
  203. package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.d.ts +0 -31
  204. package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.d.ts +0 -28
  205. package/es/components/PisellCards/components/MultilevelCard/index.d.ts +0 -2
  206. package/es/components/PisellCards/components/MultilevelCard/types.d.ts +0 -202
  207. package/es/components/PisellCards/components/MultilevelCard/utils/index.d.ts +0 -6
  208. package/es/components/PisellCards/components/PisellImageCard/PisellImageCard.d.ts +0 -8
  209. package/es/components/PisellCards/components/PisellImageCard/components/index.d.ts +0 -0
  210. package/es/components/PisellCards/components/PisellImageCard/hooks/index.d.ts +0 -5
  211. package/es/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.d.ts +0 -11
  212. package/es/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.d.ts +0 -10
  213. package/es/components/PisellCards/components/PisellImageCard/index.d.ts +0 -5
  214. package/es/components/PisellCards/components/PisellImageCard/types.d.ts +0 -74
  215. package/es/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.d.ts +0 -7
  216. package/es/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.d.ts +0 -7
  217. package/es/components/PisellCards/components/PisellImageCard/utils/index.d.ts +0 -5
  218. package/es/components/PisellCards/components/TabCard/TabCard.d.ts +0 -3
  219. package/es/components/PisellCards/components/TabCard/index.d.ts +0 -5
  220. package/es/components/PisellCards/components/TabCard/types.d.ts +0 -70
  221. package/es/components/PisellCards/components/TextCard/TextCard.d.ts +0 -7
  222. package/es/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +0 -26
  223. package/es/components/PisellCards/components/TextCard/components/IconWrapper.d.ts +0 -17
  224. package/es/components/PisellCards/components/TextCard/components/TextContent.d.ts +0 -21
  225. package/es/components/PisellCards/components/TextCard/components/index.d.ts +0 -6
  226. package/es/components/PisellCards/components/TextCard/hooks/index.d.ts +0 -0
  227. package/es/components/PisellCards/components/TextCard/index.d.ts +0 -5
  228. package/es/components/PisellCards/components/TextCard/types.d.ts +0 -270
  229. package/es/components/PisellCards/components/TextCard/utils/index.d.ts +0 -0
  230. package/es/components/PisellCards/components/index.d.ts +0 -10
  231. package/es/components/PisellCards/hooks/index.d.ts +0 -0
  232. package/es/components/PisellCards/index.d.ts +0 -14
  233. package/es/components/PisellCards/types.d.ts +0 -48
  234. package/es/components/PisellCards/utils/index.d.ts +0 -0
  235. package/es/components/PisellFields/index.d.ts +0 -36
  236. package/es/components/PisellMetrics/index.d.ts +0 -23
  237. package/es/components/PisellProcedure/PisellProcedure.d.ts +0 -22
  238. package/es/components/PisellProcedure/PisellProcedure.stories.d.ts +0 -163
  239. package/es/components/PisellProcedure/components/FooterActions.d.ts +0 -24
  240. package/es/components/PisellProcedure/components/ProcedureBody.d.ts +0 -41
  241. package/es/components/PisellProcedure/components/ProcedureContent.d.ts +0 -23
  242. package/es/components/PisellProcedure/components/ProcedureFooter.d.ts +0 -38
  243. package/es/components/PisellProcedure/components/ProcedureHeader.d.ts +0 -34
  244. package/es/components/PisellProcedure/components/ProcedureSidebar.d.ts +0 -38
  245. package/es/components/PisellProcedure/components/index.d.ts +0 -12
  246. package/es/components/PisellProcedure/hooks/index.d.ts +0 -8
  247. package/es/components/PisellProcedure/hooks/useElementSize.d.ts +0 -38
  248. package/es/components/PisellProcedure/hooks/useOverflowActions.d.ts +0 -43
  249. package/es/components/PisellProcedure/hooks/useResponsiveClass.d.ts +0 -6
  250. package/es/components/PisellProcedure/hooks/useSidebarHeight.d.ts +0 -16
  251. package/es/components/PisellProcedure/hooks/useStepManager.d.ts +0 -50
  252. package/es/components/PisellProcedure/index.d.ts +0 -5
  253. package/es/components/PisellProcedure/types.d.ts +0 -363
  254. package/es/components/PisellProcedure/utils/classNames.d.ts +0 -33
  255. package/es/components/PisellProcedure/utils/extractText.d.ts +0 -20
  256. package/es/components/PisellProcedure/utils/footerPosition.d.ts +0 -41
  257. package/es/components/PisellProcedure/utils/index.d.ts +0 -8
  258. package/es/components/PisellProcedure/utils/layoutRatio.d.ts +0 -42
  259. package/es/components/PisellProcedure/utils/slotHelper.d.ts +0 -27
  260. package/es/components/PisellScrollView/PisellScrollView.d.ts +0 -5
  261. package/es/components/PisellScrollView/PisellScrollView.stories.d.ts +0 -87
  262. package/es/components/PisellScrollView/components/Actions/index.d.ts +0 -12
  263. package/es/components/PisellScrollView/hooks/index.d.ts +0 -3
  264. package/es/components/PisellScrollView/hooks/useIntersection.d.ts +0 -8
  265. package/es/components/PisellScrollView/hooks/useScrollEvents.d.ts +0 -20
  266. package/es/components/PisellScrollView/hooks/useScrollState.d.ts +0 -13
  267. package/es/components/PisellScrollView/index.d.ts +0 -3
  268. package/es/components/PisellScrollView/types.d.ts +0 -203
  269. package/es/components/PisellScrollView/utils/index.d.ts +0 -0
  270. package/es/components/PisellSteps/PisellSteps.stories.d.ts +0 -155
  271. package/es/components/PisellSteps/hooks/index.d.ts +0 -4
  272. package/es/components/PisellSteps/hooks/useAnchor.d.ts +0 -9
  273. package/es/components/PisellSteps/hooks/useResponsive.d.ts +0 -8
  274. package/es/components/PisellSteps/hooks/useStepClick.d.ts +0 -11
  275. package/es/components/PisellSteps/hooks/useStepsState.d.ts +0 -9
  276. package/es/components/PisellSteps/index.d.ts +0 -3
  277. package/es/components/PisellSteps/types.d.ts +0 -257
  278. package/es/components/PisellSteps/utils/index.d.ts +0 -54
  279. package/es/components/PisellSuperTabs/components/index.d.ts +0 -0
  280. package/es/components/PisellSuperTabs/hooks/index.d.ts +0 -1
  281. package/es/components/PisellSuperTabs/index.d.ts +0 -3
  282. package/es/components/PisellSuperTabs/utils/getRowKey.d.ts +0 -8
  283. package/es/components/PisellSuperTabs/utils/index.d.ts +0 -1
  284. package/es/components/PisellTabbar/hooks/index.d.ts +0 -2
  285. package/es/components/PisellTabbar/index.d.ts +0 -9
  286. package/es/components/PisellTabbar/locales.d.ts +0 -23
  287. package/es/components/PisellTabbar/mock.d.ts +0 -47
  288. package/es/components/PisellTabbar/template/Template1/index.d.ts +0 -6
  289. package/es/components/PisellTabbar/template/Template1/utils/index.d.ts +0 -35
  290. package/es/components/PisellTabbar/template/index.d.ts +0 -0
  291. package/es/components/PisellTabbar2/PisellTabbar.d.ts +0 -23
  292. package/es/components/PisellTabbar2/components/TabbarLevel.d.ts +0 -8
  293. package/es/components/PisellTabbar2/components/index.d.ts +0 -1
  294. package/es/components/PisellTabbar2/constants.d.ts +0 -46
  295. package/es/components/PisellTabbar2/hooks/index.d.ts +0 -2
  296. package/es/components/PisellTabbar2/hooks/useActiveKey.d.ts +0 -50
  297. package/es/components/PisellTabbar2/hooks/useExpand.d.ts +0 -41
  298. package/es/components/PisellTabbar2/index.d.ts +0 -6
  299. package/es/components/PisellTabbar2/locales.d.ts +0 -23
  300. package/es/components/PisellTabbar2/mock.d.ts +0 -205
  301. package/es/components/PisellTabbar2/types.d.ts +0 -117
  302. package/es/components/PisellTabbar2/utils/index.d.ts +0 -35
  303. package/es/components/PisellTabbar3/PisellTabbar.d.ts +0 -20
  304. package/es/components/PisellTabbar3/index.d.ts +0 -6
  305. package/es/components/PisellTabbar3/locales.d.ts +0 -23
  306. package/es/components/PisellTabbar3/mock.d.ts +0 -47
  307. package/es/components/PisellTabbar3/types.d.ts +0 -111
  308. package/es/components/Template/PisellSteps.d.ts +0 -0
  309. package/es/components/Template/components/index.d.ts +0 -0
  310. package/es/components/Template/hooks/index.d.ts +0 -0
  311. package/es/components/Template/index.d.ts +0 -0
  312. package/es/components/Template/types.d.ts +0 -0
  313. package/es/components/Template/utils/index.d.ts +0 -0
  314. package/es/components/cardMetricItem/index.d.ts +0 -15
  315. package/es/components/dataSourceComponents/dataSourceForm/serve.d.ts +0 -178
  316. package/es/components/dataSourceComponents/dataSourceForm/urlUtils.d.ts +0 -24
  317. package/es/components/dataSourceComponents/dataSourceForm/utils.d.ts +0 -57
  318. package/es/components/dataSourceComponents/dataSourceSubForm/index.d.ts +0 -13
  319. package/es/components/dataSourceComponents/dataSourceSubForm/types.d.ts +0 -117
  320. package/es/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +0 -5
  321. package/es/components/dataSourceComponents/dataSourceTable/hooks/useFormat.d.ts +0 -48
  322. package/es/components/dataSourceComponents/fields/RecordListWrapper/ReadPretty.d.ts +0 -9
  323. package/es/components/dataSourceComponents/fields/RecordListWrapper/WithMode.d.ts +0 -4
  324. package/es/components/dataSourceComponents/fields/RecordListWrapper/index.d.ts +0 -11
  325. package/es/components/dataSourceComponents/fields/RecordListWrapper/type.d.ts +0 -87
  326. package/es/components/dataSourceComponents/fields/Tabs/ReadPretty.d.ts +0 -9
  327. package/es/components/dataSourceComponents/fields/Tabs/Tabs.d.ts +0 -23
  328. package/es/components/dataSourceComponents/fields/Tabs/WithMode.d.ts +0 -6
  329. package/es/components/dataSourceComponents/fields/Tabs/index.d.ts +0 -12
  330. package/es/components/dataSourceComponents/fields/Tabs/type.d.ts +0 -38
  331. package/es/components/dataSourceComponents/fields/Translation/BaseTranslation.d.ts +0 -5
  332. package/es/components/dataSourceComponents/fields/Translation/type.d.ts +0 -21
  333. package/es/components/dataSourceComponents/fields/index.d.ts +0 -141
  334. package/es/components/dataSourceComponents/fields/utils.d.ts +0 -3
  335. package/es/components/dataSourceComponents/hooks/useActions.d.ts +0 -18
  336. package/es/components/dataSourceComponents/hooks/useFormSettingParams.d.ts +0 -7
  337. package/es/components/filter/components/Dropdown/index.d.ts +0 -9
  338. package/es/components/filter/components/Dropdown/types.d.ts +0 -13
  339. package/es/components/filter/components/FilterButton/index.d.ts +0 -4
  340. package/es/components/filter/components/FilterButton/types.d.ts +0 -24
  341. package/es/components/filter/components/FilterItem/AsyncOptionsSelectWrapper.d.ts +0 -21
  342. package/es/components/filter/types.d.ts +0 -48
  343. package/es/components/keyboard/index.d.ts +0 -22
  344. package/es/components/pisellBatchActionBar/PisellBatchActionBar.d.ts +0 -31
  345. package/es/components/pisellBatchActionBar/index.d.ts +0 -6
  346. package/es/components/pisellBatchActionBar/types.d.ts +0 -237
  347. package/es/components/pisellCurrency/PisellCurrency.d.ts +0 -39
  348. package/es/components/pisellCurrency/PisellCurrency.stories.d.ts +0 -56
  349. package/es/components/pisellCurrency/components/DisabledView.d.ts +0 -11
  350. package/es/components/pisellCurrency/components/EditView.d.ts +0 -18
  351. package/es/components/pisellCurrency/components/ReadOnlyView.d.ts +0 -17
  352. package/es/components/pisellCurrency/components/index.d.ts +0 -6
  353. package/es/components/pisellCurrency/index.d.ts +0 -7
  354. package/es/components/pisellCurrency/types.d.ts +0 -56
  355. package/es/components/pisellCurrency/utils/currencyFormatter.d.ts +0 -31
  356. package/es/components/pisellCurrency/utils/index.d.ts +0 -5
  357. package/es/components/pisellDataSourceContainer/PisellDataSourceContainer.d.ts +0 -3
  358. package/es/components/pisellDataSourceContainer/components/ColumnsSetting/index.d.ts +0 -28
  359. package/es/components/pisellDataSourceContainer/components/ColumnsSetting/utils.d.ts +0 -28
  360. package/es/components/pisellDataSourceContainer/components/Filter/FilterButton.d.ts +0 -7
  361. package/es/components/pisellDataSourceContainer/components/Filter/QuickFilter.d.ts +0 -10
  362. package/es/components/pisellDataSourceContainer/components/Filter/index.d.ts +0 -14
  363. package/es/components/pisellDataSourceContainer/components/Sort/index.d.ts +0 -9
  364. package/es/components/pisellDataSourceContainer/components/Table/useColumns.d.ts +0 -14
  365. package/es/components/pisellDataSourceContainer/hooks/useContainerContext.d.ts +0 -3
  366. package/es/components/pisellDataSourceContainer/hooks/useDataSourceKey.d.ts +0 -5
  367. package/es/components/pisellDataSourceContainer/hooks/useHandleAction.d.ts +0 -32
  368. package/es/components/pisellDataSourceContainer/index.d.ts +0 -28
  369. package/es/components/pisellDataSourceContainer/provider/ChildComponentProps.d.ts +0 -13
  370. package/es/components/pisellDataSourceContainer/provider/HandleActions.d.ts +0 -5
  371. package/es/components/pisellDataSourceContainer/provider/RefManager.d.ts +0 -9
  372. package/es/components/pisellDataSourceContainer/type.d.ts +0 -84
  373. package/es/components/pisellDataSourceContainer/utils/formatData.d.ts +0 -9
  374. package/es/components/pisellDataSourceContainer/utils/withContainer.d.ts +0 -9
  375. package/es/components/pisellDateTimeDisplay/PisellDateTimeDisplay.d.ts +0 -35
  376. package/es/components/pisellDateTimeDisplay/PisellDateTimeDisplay.stories.d.ts +0 -195
  377. package/es/components/pisellDateTimeDisplay/components/DateDisplay.d.ts +0 -48
  378. package/es/components/pisellDateTimeDisplay/components/TimeDisplay.d.ts +0 -42
  379. package/es/components/pisellDateTimeDisplay/components/WeekdayDisplay.d.ts +0 -57
  380. package/es/components/pisellDateTimeDisplay/components/index.d.ts +0 -6
  381. package/es/components/pisellDateTimeDisplay/formats/dateTimeDisplayFormats.d.ts +0 -7
  382. package/es/components/pisellDateTimeDisplay/formats/index.d.ts +0 -1
  383. package/es/components/pisellDateTimeDisplay/hooks/index.d.ts +0 -2
  384. package/es/components/pisellDateTimeDisplay/hooks/useCurrentTime.d.ts +0 -46
  385. package/es/components/pisellDateTimeDisplay/index.d.ts +0 -3
  386. package/es/components/pisellDateTimeDisplay/types.d.ts +0 -352
  387. package/es/components/pisellDateTimeDisplay/utils/formatDate.d.ts +0 -21
  388. package/es/components/pisellDateTimeDisplay/utils/formatDateOrRelative.d.ts +0 -17
  389. package/es/components/pisellDateTimeDisplay/utils/formatTime.d.ts +0 -19
  390. package/es/components/pisellDateTimeDisplay/utils/formatWeekday.d.ts +0 -30
  391. package/es/components/pisellDateTimeDisplay/utils/getRefreshInterval.d.ts +0 -18
  392. package/es/components/pisellDateTimeDisplay/utils/index.d.ts +0 -7
  393. package/es/components/pisellDateTimeDisplay/utils/localeUtils.d.ts +0 -22
  394. package/es/components/pisellDateTimeDisplay/utils/relativeDay.d.ts +0 -24
  395. package/es/components/pisellEmail/PisellEmail.d.ts +0 -37
  396. package/es/components/pisellEmail/PisellEmail.stories.d.ts +0 -116
  397. package/es/components/pisellEmail/components/DisabledView.d.ts +0 -14
  398. package/es/components/pisellEmail/components/EditView.d.ts +0 -15
  399. package/es/components/pisellEmail/components/ReadOnlyView.d.ts +0 -15
  400. package/es/components/pisellEmail/constants/emailDomains.d.ts +0 -5
  401. package/es/components/pisellEmail/constants/emailRegex.d.ts +0 -13
  402. package/es/components/pisellEmail/index.d.ts +0 -7
  403. package/es/components/pisellEmail/types.d.ts +0 -176
  404. package/es/components/pisellEmail/utils/domainSuggestions.d.ts +0 -15
  405. package/es/components/pisellEmail/utils/emailHelper.d.ts +0 -66
  406. package/es/components/pisellEmail/utils/emailValidator.d.ts +0 -45
  407. package/es/components/pisellEmail/utils/index.d.ts +0 -6
  408. package/es/components/pisellFind/PisellFind.stories.d.ts +0 -45
  409. package/es/components/pisellFind/index.d.ts +0 -40
  410. package/es/components/pisellGridPro/GridPro.d.ts +0 -9
  411. package/es/components/pisellGridPro/GridView/index.d.ts +0 -5
  412. package/es/components/pisellGridPro/GridView/type.d.ts +0 -3
  413. package/es/components/pisellGridPro/ToolBar/index.d.ts +0 -6
  414. package/es/components/pisellGridPro/ToolBar/type.d.ts +0 -10
  415. package/es/components/pisellGridPro/components/DataCard/components/StatCard/index.d.ts +0 -10
  416. package/es/components/pisellGridPro/components/DataCard/index.d.ts +0 -5
  417. package/es/components/pisellGridPro/components/DataCard/types.d.ts +0 -70
  418. package/es/components/pisellGridPro/components/Footer/index.d.ts +0 -9
  419. package/es/components/pisellGridPro/components/Header/index.d.ts +0 -12
  420. package/es/components/pisellGridPro/index.d.ts +0 -4
  421. package/es/components/pisellLayout/index.d.ts +0 -14
  422. package/es/components/pisellLongText/PisellLongText.d.ts +0 -39
  423. package/es/components/pisellLongText/PisellLongText.stories.d.ts +0 -123
  424. package/es/components/pisellLongText/components/DisabledView.d.ts +0 -16
  425. package/es/components/pisellLongText/components/EditView.d.ts +0 -19
  426. package/es/components/pisellLongText/components/ReadOnlyView.d.ts +0 -18
  427. package/es/components/pisellLongText/index.d.ts +0 -7
  428. package/es/components/pisellLongText/types.d.ts +0 -147
  429. package/es/components/pisellLookup/PisellLookup.d.ts +0 -4
  430. package/es/components/pisellLookup/PisellLookup.stories.d.ts +0 -129
  431. package/es/components/pisellLookup/components/HotWords.d.ts +0 -7
  432. package/es/components/pisellLookup/components/LookupAuxiliary.d.ts +0 -7
  433. package/es/components/pisellLookup/components/LookupResultHost.d.ts +0 -7
  434. package/es/components/pisellLookup/components/SearchHistory.d.ts +0 -7
  435. package/es/components/pisellLookup/components/SuggestWords.d.ts +0 -7
  436. package/es/components/pisellLookup/components/index.d.ts +0 -9
  437. package/es/components/pisellLookup/hooks/index.d.ts +0 -6
  438. package/es/components/pisellLookup/hooks/useDebounceSearch.d.ts +0 -40
  439. package/es/components/pisellLookup/hooks/useSearchHistory.d.ts +0 -48
  440. package/es/components/pisellLookup/hooks/useSearchState.d.ts +0 -80
  441. package/es/components/pisellLookup/index.d.ts +0 -6
  442. package/es/components/pisellLookup/types.d.ts +0 -667
  443. package/es/components/pisellLookup/utils/index.d.ts +0 -5
  444. package/es/components/pisellLookup/utils/storage.d.ts +0 -42
  445. package/es/components/pisellLookup/utils/trigger.d.ts +0 -42
  446. package/es/components/pisellMetricCard/PisellMetricCard.d.ts +0 -35
  447. package/es/components/pisellMetricCard/PisellMetricCard.stories.d.ts +0 -17
  448. package/es/components/pisellMetricCard/components/MetricComparison.d.ts +0 -14
  449. package/es/components/pisellMetricCard/components/MetricTitle.d.ts +0 -12
  450. package/es/components/pisellMetricCard/components/MetricValue.d.ts +0 -12
  451. package/es/components/pisellMetricCard/components/TrendIcon.d.ts +0 -14
  452. package/es/components/pisellMetricCard/components/index.d.ts +0 -7
  453. package/es/components/pisellMetricCard/index.d.ts +0 -6
  454. package/es/components/pisellMetricCard/types.d.ts +0 -201
  455. package/es/components/pisellMetricCard/utils/calculateTrend.d.ts +0 -14
  456. package/es/components/pisellMetricCard/utils/formatMetricValue.d.ts +0 -34
  457. package/es/components/pisellMetricCard/utils/index.d.ts +0 -5
  458. package/es/components/pisellMultipleSelect/PisellMultipleSelect.d.ts +0 -9
  459. package/es/components/pisellMultipleSelect/PisellMultipleSelect.stories.d.ts +0 -70
  460. package/es/components/pisellMultipleSelect/components/DisabledView.d.ts +0 -8
  461. package/es/components/pisellMultipleSelect/components/EditView.d.ts +0 -8
  462. package/es/components/pisellMultipleSelect/components/ReadOnlyView.d.ts +0 -8
  463. package/es/components/pisellMultipleSelect/index.d.ts +0 -7
  464. package/es/components/pisellMultipleSelect/types.d.ts +0 -160
  465. package/es/components/pisellNumber/PisellNumber.d.ts +0 -42
  466. package/es/components/pisellNumber/PisellNumber.stories.d.ts +0 -66
  467. package/es/components/pisellNumber/components/DisabledView.d.ts +0 -11
  468. package/es/components/pisellNumber/components/EditView.d.ts +0 -18
  469. package/es/components/pisellNumber/components/ReadOnlyView.d.ts +0 -16
  470. package/es/components/pisellNumber/components/index.d.ts +0 -6
  471. package/es/components/pisellNumber/index.d.ts +0 -7
  472. package/es/components/pisellNumber/types.d.ts +0 -168
  473. package/es/components/pisellPercent/PisellPercent.d.ts +0 -38
  474. package/es/components/pisellPercent/PisellPercent.stories.d.ts +0 -52
  475. package/es/components/pisellPercent/components/DisabledView.d.ts +0 -11
  476. package/es/components/pisellPercent/components/EditView.d.ts +0 -17
  477. package/es/components/pisellPercent/components/ReadOnlyView.d.ts +0 -14
  478. package/es/components/pisellPercent/components/index.d.ts +0 -6
  479. package/es/components/pisellPercent/index.d.ts +0 -7
  480. package/es/components/pisellPercent/types.d.ts +0 -68
  481. package/es/components/pisellPercent/utils/index.d.ts +0 -6
  482. package/es/components/pisellPercent/utils/percentFormatter.d.ts +0 -27
  483. package/es/components/pisellPercent/utils/rangeConverter.d.ts +0 -36
  484. package/es/components/pisellPhone/PisellPhone.d.ts +0 -36
  485. package/es/components/pisellPhone/PisellPhone.stories.d.ts +0 -80
  486. package/es/components/pisellPhone/components/DisabledView.d.ts +0 -16
  487. package/es/components/pisellPhone/components/EditView.d.ts +0 -19
  488. package/es/components/pisellPhone/components/ReadOnlyView.d.ts +0 -17
  489. package/es/components/pisellPhone/constants/countryCodes.d.ts +0 -20
  490. package/es/components/pisellPhone/index.d.ts +0 -8
  491. package/es/components/pisellPhone/types.d.ts +0 -209
  492. package/es/components/pisellPhone/utils/countryCodeHelper.d.ts +0 -35
  493. package/es/components/pisellPhone/utils/index.d.ts +0 -6
  494. package/es/components/pisellPhone/utils/phoneFormatter.d.ts +0 -39
  495. package/es/components/pisellPhone/utils/phoneValidator.d.ts +0 -11
  496. package/es/components/pisellQuickFilter/index.d.ts +0 -11
  497. package/es/components/pisellQuickFilter/type.d.ts +0 -12
  498. package/es/components/pisellRating/PisellRating.d.ts +0 -31
  499. package/es/components/pisellRating/PisellRating.stories.d.ts +0 -53
  500. package/es/components/pisellRating/index.d.ts +0 -7
  501. package/es/components/pisellRating/types.d.ts +0 -124
  502. package/es/components/pisellRecordBoard/shellFrame/Calendar/const/bookingCalendarConstants.d.ts +0 -38
  503. package/es/components/pisellRow/index.d.ts +0 -22
  504. package/es/components/pisellShellFrame/PisellShellFrame.stories.d.ts +0 -15
  505. package/es/components/pisellShellFrame/index.d.ts +0 -2
  506. package/es/components/pisellSingleLineText/PisellSingleLineText.d.ts +0 -40
  507. package/es/components/pisellSingleLineText/PisellSingleLineText.stories.d.ts +0 -102
  508. package/es/components/pisellSingleLineText/components/DisabledView.d.ts +0 -16
  509. package/es/components/pisellSingleLineText/components/EditView.d.ts +0 -19
  510. package/es/components/pisellSingleLineText/components/ReadOnlyView.d.ts +0 -20
  511. package/es/components/pisellSingleLineText/index.d.ts +0 -7
  512. package/es/components/pisellSingleLineText/types.d.ts +0 -139
  513. package/es/components/pisellSingleSelect/PisellSingleSelect.d.ts +0 -9
  514. package/es/components/pisellSingleSelect/PisellSingleSelect.stories.d.ts +0 -66
  515. package/es/components/pisellSingleSelect/components/DisabledView.d.ts +0 -8
  516. package/es/components/pisellSingleSelect/components/EditView.d.ts +0 -8
  517. package/es/components/pisellSingleSelect/components/ReadOnlyView.d.ts +0 -8
  518. package/es/components/pisellSingleSelect/index.d.ts +0 -7
  519. package/es/components/pisellSingleSelect/types.d.ts +0 -92
  520. package/es/components/pisellSort/index.d.ts +0 -3
  521. package/es/components/pisellSort/type.d.ts +0 -7
  522. package/es/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.d.ts +0 -32
  523. package/es/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.stories.d.ts +0 -61
  524. package/es/components/pisellTimeRangeDisplay/components/DateBlock.d.ts +0 -20
  525. package/es/components/pisellTimeRangeDisplay/components/DurationBlock.d.ts +0 -19
  526. package/es/components/pisellTimeRangeDisplay/components/TimeRangeBlock.d.ts +0 -30
  527. package/es/components/pisellTimeRangeDisplay/components/WeekdayBlock.d.ts +0 -18
  528. package/es/components/pisellTimeRangeDisplay/components/index.d.ts +0 -8
  529. package/es/components/pisellTimeRangeDisplay/index.d.ts +0 -3
  530. package/es/components/pisellTimeRangeDisplay/types.d.ts +0 -137
  531. package/es/components/pisellTimeRangeDisplay/utils/formatDuration.d.ts +0 -14
  532. package/es/components/pisellTimeRangeDisplay/utils/index.d.ts +0 -4
  533. package/es/components/pisellTimeRangeDisplay/utils/parseTimeRange.d.ts +0 -23
  534. package/es/components/pisellUrl/PisellUrl.d.ts +0 -37
  535. package/es/components/pisellUrl/PisellUrl.stories.d.ts +0 -108
  536. package/es/components/pisellUrl/components/DisabledView.d.ts +0 -14
  537. package/es/components/pisellUrl/components/EditView.d.ts +0 -15
  538. package/es/components/pisellUrl/components/ReadOnlyView.d.ts +0 -15
  539. package/es/components/pisellUrl/index.d.ts +0 -7
  540. package/es/components/pisellUrl/types.d.ts +0 -160
  541. package/es/components/pisellUrl/utils/index.d.ts +0 -6
  542. package/es/components/pisellUrl/utils/urlFormatter.d.ts +0 -38
  543. package/es/components/pisellUrl/utils/urlHelper.d.ts +0 -63
  544. package/es/components/pisellUrl/utils/urlValidator.d.ts +0 -46
  545. package/es/components/select/index.d.ts +0 -9
  546. package/es/components/sort/types.d.ts +0 -39
  547. package/es/components/table/Actions/component/GallerySetting/index.d.ts +0 -8
  548. package/es/components/table/Actions/component/ViewMode/index.d.ts +0 -8
  549. package/es/components/table/Table/fields/select/Edit/index.d.ts +0 -4
  550. package/es/components/table/Table/fields/types/index.d.ts +0 -33
  551. package/es/components/virtualInput/BaseVirtualInput/index.d.ts +0 -44
  552. package/es/components/virtualInput/index.d.ts +0 -29
  553. package/es/hooks/useMobile.d.ts +0 -8
  554. package/es/hooks/useThemeTokens.d.ts +0 -7
  555. package/es/theme/tokens.d.ts +0 -22
  556. package/es/utils/tagColor.d.ts +0 -7
  557. package/lib/components/PisellBasicGrid/PisellBasicGrid.d.ts +0 -9
  558. package/lib/components/PisellBasicGrid/hooks/index.d.ts +0 -1
  559. package/lib/components/PisellBasicGrid/hooks/useGridStyle.d.ts +0 -37
  560. package/lib/components/PisellBasicGrid/index.d.ts +0 -6
  561. package/lib/components/PisellBasicGrid/types.d.ts +0 -221
  562. package/lib/components/PisellBasicGrid/utils/index.d.ts +0 -63
  563. package/lib/components/PisellCards/PisellCards.d.ts +0 -8
  564. package/lib/components/PisellCards/components/GraphicTextCard/GraphicTextCard.d.ts +0 -8
  565. package/lib/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.d.ts +0 -5
  566. package/lib/components/PisellCards/components/GraphicTextCard/components/GraphicArea.d.ts +0 -24
  567. package/lib/components/PisellCards/components/GraphicTextCard/components/TextContent.d.ts +0 -27
  568. package/lib/components/PisellCards/components/GraphicTextCard/components/index.d.ts +0 -6
  569. package/lib/components/PisellCards/components/GraphicTextCard/hooks/index.d.ts +0 -5
  570. package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.d.ts +0 -15
  571. package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.d.ts +0 -18
  572. package/lib/components/PisellCards/components/GraphicTextCard/index.d.ts +0 -5
  573. package/lib/components/PisellCards/components/GraphicTextCard/types.d.ts +0 -290
  574. package/lib/components/PisellCards/components/GraphicTextCard/utils/index.d.ts +0 -19
  575. package/lib/components/PisellCards/components/MultilevelCard/MultilevelCard.d.ts +0 -19
  576. package/lib/components/PisellCards/components/MultilevelCard/components/CardWrapper.d.ts +0 -7
  577. package/lib/components/PisellCards/components/MultilevelCard/components/index.d.ts +0 -2
  578. package/lib/components/PisellCards/components/MultilevelCard/hooks/index.d.ts +0 -2
  579. package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.d.ts +0 -31
  580. package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.d.ts +0 -28
  581. package/lib/components/PisellCards/components/MultilevelCard/index.d.ts +0 -2
  582. package/lib/components/PisellCards/components/MultilevelCard/types.d.ts +0 -202
  583. package/lib/components/PisellCards/components/MultilevelCard/utils/index.d.ts +0 -6
  584. package/lib/components/PisellCards/components/PisellImageCard/PisellImageCard.d.ts +0 -8
  585. package/lib/components/PisellCards/components/PisellImageCard/components/index.d.ts +0 -0
  586. package/lib/components/PisellCards/components/PisellImageCard/hooks/index.d.ts +0 -5
  587. package/lib/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.d.ts +0 -11
  588. package/lib/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.d.ts +0 -10
  589. package/lib/components/PisellCards/components/PisellImageCard/index.d.ts +0 -5
  590. package/lib/components/PisellCards/components/PisellImageCard/types.d.ts +0 -74
  591. package/lib/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.d.ts +0 -7
  592. package/lib/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.d.ts +0 -7
  593. package/lib/components/PisellCards/components/PisellImageCard/utils/index.d.ts +0 -5
  594. package/lib/components/PisellCards/components/TabCard/TabCard.d.ts +0 -3
  595. package/lib/components/PisellCards/components/TabCard/index.d.ts +0 -5
  596. package/lib/components/PisellCards/components/TabCard/types.d.ts +0 -70
  597. package/lib/components/PisellCards/components/TextCard/TextCard.d.ts +0 -7
  598. package/lib/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +0 -26
  599. package/lib/components/PisellCards/components/TextCard/components/IconWrapper.d.ts +0 -17
  600. package/lib/components/PisellCards/components/TextCard/components/TextContent.d.ts +0 -21
  601. package/lib/components/PisellCards/components/TextCard/components/index.d.ts +0 -6
  602. package/lib/components/PisellCards/components/TextCard/hooks/index.d.ts +0 -0
  603. package/lib/components/PisellCards/components/TextCard/index.d.ts +0 -5
  604. package/lib/components/PisellCards/components/TextCard/types.d.ts +0 -270
  605. package/lib/components/PisellCards/components/TextCard/utils/index.d.ts +0 -0
  606. package/lib/components/PisellCards/components/index.d.ts +0 -10
  607. package/lib/components/PisellCards/hooks/index.d.ts +0 -0
  608. package/lib/components/PisellCards/index.d.ts +0 -14
  609. package/lib/components/PisellCards/types.d.ts +0 -48
  610. package/lib/components/PisellCards/utils/index.d.ts +0 -0
  611. package/lib/components/PisellFields/index.d.ts +0 -36
  612. package/lib/components/PisellMetrics/index.d.ts +0 -23
  613. package/lib/components/PisellProcedure/PisellProcedure.d.ts +0 -22
  614. package/lib/components/PisellProcedure/PisellProcedure.stories.d.ts +0 -163
  615. package/lib/components/PisellProcedure/components/FooterActions.d.ts +0 -24
  616. package/lib/components/PisellProcedure/components/ProcedureBody.d.ts +0 -41
  617. package/lib/components/PisellProcedure/components/ProcedureContent.d.ts +0 -23
  618. package/lib/components/PisellProcedure/components/ProcedureFooter.d.ts +0 -38
  619. package/lib/components/PisellProcedure/components/ProcedureHeader.d.ts +0 -34
  620. package/lib/components/PisellProcedure/components/ProcedureSidebar.d.ts +0 -38
  621. package/lib/components/PisellProcedure/components/index.d.ts +0 -12
  622. package/lib/components/PisellProcedure/hooks/index.d.ts +0 -8
  623. package/lib/components/PisellProcedure/hooks/useElementSize.d.ts +0 -38
  624. package/lib/components/PisellProcedure/hooks/useOverflowActions.d.ts +0 -43
  625. package/lib/components/PisellProcedure/hooks/useResponsiveClass.d.ts +0 -6
  626. package/lib/components/PisellProcedure/hooks/useSidebarHeight.d.ts +0 -16
  627. package/lib/components/PisellProcedure/hooks/useStepManager.d.ts +0 -50
  628. package/lib/components/PisellProcedure/index.d.ts +0 -5
  629. package/lib/components/PisellProcedure/types.d.ts +0 -363
  630. package/lib/components/PisellProcedure/utils/classNames.d.ts +0 -33
  631. package/lib/components/PisellProcedure/utils/extractText.d.ts +0 -20
  632. package/lib/components/PisellProcedure/utils/footerPosition.d.ts +0 -41
  633. package/lib/components/PisellProcedure/utils/index.d.ts +0 -8
  634. package/lib/components/PisellProcedure/utils/layoutRatio.d.ts +0 -42
  635. package/lib/components/PisellProcedure/utils/slotHelper.d.ts +0 -27
  636. package/lib/components/PisellScrollView/PisellScrollView.d.ts +0 -5
  637. package/lib/components/PisellScrollView/PisellScrollView.stories.d.ts +0 -87
  638. package/lib/components/PisellScrollView/components/Actions/index.d.ts +0 -12
  639. package/lib/components/PisellScrollView/hooks/index.d.ts +0 -3
  640. package/lib/components/PisellScrollView/hooks/useIntersection.d.ts +0 -8
  641. package/lib/components/PisellScrollView/hooks/useScrollEvents.d.ts +0 -20
  642. package/lib/components/PisellScrollView/hooks/useScrollState.d.ts +0 -13
  643. package/lib/components/PisellScrollView/index.d.ts +0 -3
  644. package/lib/components/PisellScrollView/types.d.ts +0 -203
  645. package/lib/components/PisellScrollView/utils/index.d.ts +0 -0
  646. package/lib/components/PisellSteps/PisellSteps.stories.d.ts +0 -155
  647. package/lib/components/PisellSteps/hooks/index.d.ts +0 -4
  648. package/lib/components/PisellSteps/hooks/useAnchor.d.ts +0 -9
  649. package/lib/components/PisellSteps/hooks/useResponsive.d.ts +0 -8
  650. package/lib/components/PisellSteps/hooks/useStepClick.d.ts +0 -11
  651. package/lib/components/PisellSteps/hooks/useStepsState.d.ts +0 -9
  652. package/lib/components/PisellSteps/index.d.ts +0 -3
  653. package/lib/components/PisellSteps/types.d.ts +0 -257
  654. package/lib/components/PisellSteps/utils/index.d.ts +0 -54
  655. package/lib/components/PisellSuperTabs/components/index.d.ts +0 -0
  656. package/lib/components/PisellSuperTabs/hooks/index.d.ts +0 -1
  657. package/lib/components/PisellSuperTabs/index.d.ts +0 -3
  658. package/lib/components/PisellSuperTabs/utils/getRowKey.d.ts +0 -8
  659. package/lib/components/PisellSuperTabs/utils/index.d.ts +0 -1
  660. package/lib/components/PisellTabbar/hooks/index.d.ts +0 -2
  661. package/lib/components/PisellTabbar/index.d.ts +0 -9
  662. package/lib/components/PisellTabbar/locales.d.ts +0 -23
  663. package/lib/components/PisellTabbar/mock.d.ts +0 -47
  664. package/lib/components/PisellTabbar/template/Template1/index.d.ts +0 -6
  665. package/lib/components/PisellTabbar/template/Template1/utils/index.d.ts +0 -35
  666. package/lib/components/PisellTabbar/template/index.d.ts +0 -0
  667. package/lib/components/PisellTabbar2/PisellTabbar.d.ts +0 -23
  668. package/lib/components/PisellTabbar2/components/TabbarLevel.d.ts +0 -8
  669. package/lib/components/PisellTabbar2/components/index.d.ts +0 -1
  670. package/lib/components/PisellTabbar2/constants.d.ts +0 -46
  671. package/lib/components/PisellTabbar2/hooks/index.d.ts +0 -2
  672. package/lib/components/PisellTabbar2/hooks/useActiveKey.d.ts +0 -50
  673. package/lib/components/PisellTabbar2/hooks/useExpand.d.ts +0 -41
  674. package/lib/components/PisellTabbar2/index.d.ts +0 -6
  675. package/lib/components/PisellTabbar2/locales.d.ts +0 -23
  676. package/lib/components/PisellTabbar2/mock.d.ts +0 -205
  677. package/lib/components/PisellTabbar2/types.d.ts +0 -117
  678. package/lib/components/PisellTabbar2/utils/index.d.ts +0 -35
  679. package/lib/components/PisellTabbar3/PisellTabbar.d.ts +0 -20
  680. package/lib/components/PisellTabbar3/index.d.ts +0 -6
  681. package/lib/components/PisellTabbar3/locales.d.ts +0 -23
  682. package/lib/components/PisellTabbar3/mock.d.ts +0 -47
  683. package/lib/components/PisellTabbar3/types.d.ts +0 -111
  684. package/lib/components/Template/PisellSteps.d.ts +0 -0
  685. package/lib/components/Template/components/index.d.ts +0 -0
  686. package/lib/components/Template/hooks/index.d.ts +0 -0
  687. package/lib/components/Template/index.d.ts +0 -0
  688. package/lib/components/Template/types.d.ts +0 -0
  689. package/lib/components/Template/utils/index.d.ts +0 -0
  690. package/lib/components/cardMetricItem/index.d.ts +0 -15
  691. package/lib/components/dataSourceComponents/dataSourceForm/serve.d.ts +0 -178
  692. package/lib/components/dataSourceComponents/dataSourceForm/urlUtils.d.ts +0 -24
  693. package/lib/components/dataSourceComponents/dataSourceForm/utils.d.ts +0 -57
  694. package/lib/components/dataSourceComponents/dataSourceSubForm/index.d.ts +0 -13
  695. package/lib/components/dataSourceComponents/dataSourceSubForm/types.d.ts +0 -117
  696. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +0 -5
  697. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useFormat.d.ts +0 -48
  698. package/lib/components/dataSourceComponents/fields/RecordListWrapper/ReadPretty.d.ts +0 -9
  699. package/lib/components/dataSourceComponents/fields/RecordListWrapper/WithMode.d.ts +0 -4
  700. package/lib/components/dataSourceComponents/fields/RecordListWrapper/index.d.ts +0 -11
  701. package/lib/components/dataSourceComponents/fields/RecordListWrapper/type.d.ts +0 -87
  702. package/lib/components/dataSourceComponents/fields/Tabs/ReadPretty.d.ts +0 -9
  703. package/lib/components/dataSourceComponents/fields/Tabs/Tabs.d.ts +0 -23
  704. package/lib/components/dataSourceComponents/fields/Tabs/WithMode.d.ts +0 -6
  705. package/lib/components/dataSourceComponents/fields/Tabs/index.d.ts +0 -12
  706. package/lib/components/dataSourceComponents/fields/Tabs/type.d.ts +0 -38
  707. package/lib/components/dataSourceComponents/fields/Translation/BaseTranslation.d.ts +0 -5
  708. package/lib/components/dataSourceComponents/fields/Translation/type.d.ts +0 -21
  709. package/lib/components/dataSourceComponents/fields/index.d.ts +0 -141
  710. package/lib/components/dataSourceComponents/fields/utils.d.ts +0 -3
  711. package/lib/components/dataSourceComponents/hooks/useActions.d.ts +0 -18
  712. package/lib/components/dataSourceComponents/hooks/useFormSettingParams.d.ts +0 -7
  713. package/lib/components/filter/components/Dropdown/index.d.ts +0 -9
  714. package/lib/components/filter/components/Dropdown/types.d.ts +0 -13
  715. package/lib/components/filter/components/FilterButton/index.d.ts +0 -4
  716. package/lib/components/filter/components/FilterButton/types.d.ts +0 -24
  717. package/lib/components/filter/components/FilterItem/AsyncOptionsSelectWrapper.d.ts +0 -21
  718. package/lib/components/filter/types.d.ts +0 -48
  719. package/lib/components/keyboard/index.d.ts +0 -22
  720. package/lib/components/pisellBatchActionBar/PisellBatchActionBar.d.ts +0 -31
  721. package/lib/components/pisellBatchActionBar/index.d.ts +0 -6
  722. package/lib/components/pisellBatchActionBar/types.d.ts +0 -237
  723. package/lib/components/pisellCurrency/PisellCurrency.d.ts +0 -39
  724. package/lib/components/pisellCurrency/PisellCurrency.stories.d.ts +0 -56
  725. package/lib/components/pisellCurrency/components/DisabledView.d.ts +0 -11
  726. package/lib/components/pisellCurrency/components/EditView.d.ts +0 -18
  727. package/lib/components/pisellCurrency/components/ReadOnlyView.d.ts +0 -17
  728. package/lib/components/pisellCurrency/components/index.d.ts +0 -6
  729. package/lib/components/pisellCurrency/index.d.ts +0 -7
  730. package/lib/components/pisellCurrency/types.d.ts +0 -56
  731. package/lib/components/pisellCurrency/utils/currencyFormatter.d.ts +0 -31
  732. package/lib/components/pisellCurrency/utils/index.d.ts +0 -5
  733. package/lib/components/pisellDataSourceContainer/PisellDataSourceContainer.d.ts +0 -3
  734. package/lib/components/pisellDataSourceContainer/components/ColumnsSetting/index.d.ts +0 -28
  735. package/lib/components/pisellDataSourceContainer/components/ColumnsSetting/utils.d.ts +0 -28
  736. package/lib/components/pisellDataSourceContainer/components/Filter/FilterButton.d.ts +0 -7
  737. package/lib/components/pisellDataSourceContainer/components/Filter/QuickFilter.d.ts +0 -10
  738. package/lib/components/pisellDataSourceContainer/components/Filter/index.d.ts +0 -14
  739. package/lib/components/pisellDataSourceContainer/components/Sort/index.d.ts +0 -9
  740. package/lib/components/pisellDataSourceContainer/components/Table/useColumns.d.ts +0 -14
  741. package/lib/components/pisellDataSourceContainer/hooks/useContainerContext.d.ts +0 -3
  742. package/lib/components/pisellDataSourceContainer/hooks/useDataSourceKey.d.ts +0 -5
  743. package/lib/components/pisellDataSourceContainer/hooks/useHandleAction.d.ts +0 -32
  744. package/lib/components/pisellDataSourceContainer/index.d.ts +0 -28
  745. package/lib/components/pisellDataSourceContainer/provider/ChildComponentProps.d.ts +0 -13
  746. package/lib/components/pisellDataSourceContainer/provider/HandleActions.d.ts +0 -5
  747. package/lib/components/pisellDataSourceContainer/provider/RefManager.d.ts +0 -9
  748. package/lib/components/pisellDataSourceContainer/type.d.ts +0 -84
  749. package/lib/components/pisellDataSourceContainer/utils/formatData.d.ts +0 -9
  750. package/lib/components/pisellDataSourceContainer/utils/withContainer.d.ts +0 -9
  751. package/lib/components/pisellDateTimeDisplay/PisellDateTimeDisplay.d.ts +0 -35
  752. package/lib/components/pisellDateTimeDisplay/PisellDateTimeDisplay.stories.d.ts +0 -195
  753. package/lib/components/pisellDateTimeDisplay/components/DateDisplay.d.ts +0 -48
  754. package/lib/components/pisellDateTimeDisplay/components/TimeDisplay.d.ts +0 -42
  755. package/lib/components/pisellDateTimeDisplay/components/WeekdayDisplay.d.ts +0 -57
  756. package/lib/components/pisellDateTimeDisplay/components/index.d.ts +0 -6
  757. package/lib/components/pisellDateTimeDisplay/formats/dateTimeDisplayFormats.d.ts +0 -7
  758. package/lib/components/pisellDateTimeDisplay/formats/index.d.ts +0 -1
  759. package/lib/components/pisellDateTimeDisplay/hooks/index.d.ts +0 -2
  760. package/lib/components/pisellDateTimeDisplay/hooks/useCurrentTime.d.ts +0 -46
  761. package/lib/components/pisellDateTimeDisplay/index.d.ts +0 -3
  762. package/lib/components/pisellDateTimeDisplay/types.d.ts +0 -352
  763. package/lib/components/pisellDateTimeDisplay/utils/formatDate.d.ts +0 -21
  764. package/lib/components/pisellDateTimeDisplay/utils/formatDateOrRelative.d.ts +0 -17
  765. package/lib/components/pisellDateTimeDisplay/utils/formatTime.d.ts +0 -19
  766. package/lib/components/pisellDateTimeDisplay/utils/formatWeekday.d.ts +0 -30
  767. package/lib/components/pisellDateTimeDisplay/utils/getRefreshInterval.d.ts +0 -18
  768. package/lib/components/pisellDateTimeDisplay/utils/index.d.ts +0 -7
  769. package/lib/components/pisellDateTimeDisplay/utils/localeUtils.d.ts +0 -22
  770. package/lib/components/pisellDateTimeDisplay/utils/relativeDay.d.ts +0 -24
  771. package/lib/components/pisellEmail/PisellEmail.d.ts +0 -37
  772. package/lib/components/pisellEmail/PisellEmail.stories.d.ts +0 -116
  773. package/lib/components/pisellEmail/components/DisabledView.d.ts +0 -14
  774. package/lib/components/pisellEmail/components/EditView.d.ts +0 -15
  775. package/lib/components/pisellEmail/components/ReadOnlyView.d.ts +0 -15
  776. package/lib/components/pisellEmail/constants/emailDomains.d.ts +0 -5
  777. package/lib/components/pisellEmail/constants/emailRegex.d.ts +0 -13
  778. package/lib/components/pisellEmail/index.d.ts +0 -7
  779. package/lib/components/pisellEmail/types.d.ts +0 -176
  780. package/lib/components/pisellEmail/utils/domainSuggestions.d.ts +0 -15
  781. package/lib/components/pisellEmail/utils/emailHelper.d.ts +0 -66
  782. package/lib/components/pisellEmail/utils/emailValidator.d.ts +0 -45
  783. package/lib/components/pisellEmail/utils/index.d.ts +0 -6
  784. package/lib/components/pisellFind/PisellFind.stories.d.ts +0 -45
  785. package/lib/components/pisellFind/index.d.ts +0 -40
  786. package/lib/components/pisellGridPro/GridPro.d.ts +0 -9
  787. package/lib/components/pisellGridPro/GridView/index.d.ts +0 -5
  788. package/lib/components/pisellGridPro/GridView/type.d.ts +0 -3
  789. package/lib/components/pisellGridPro/ToolBar/index.d.ts +0 -6
  790. package/lib/components/pisellGridPro/ToolBar/type.d.ts +0 -10
  791. package/lib/components/pisellGridPro/components/DataCard/components/StatCard/index.d.ts +0 -10
  792. package/lib/components/pisellGridPro/components/DataCard/index.d.ts +0 -5
  793. package/lib/components/pisellGridPro/components/DataCard/types.d.ts +0 -70
  794. package/lib/components/pisellGridPro/components/Footer/index.d.ts +0 -9
  795. package/lib/components/pisellGridPro/components/Header/index.d.ts +0 -12
  796. package/lib/components/pisellGridPro/index.d.ts +0 -4
  797. package/lib/components/pisellLayout/index.d.ts +0 -14
  798. package/lib/components/pisellLongText/PisellLongText.d.ts +0 -39
  799. package/lib/components/pisellLongText/PisellLongText.stories.d.ts +0 -123
  800. package/lib/components/pisellLongText/components/DisabledView.d.ts +0 -16
  801. package/lib/components/pisellLongText/components/EditView.d.ts +0 -19
  802. package/lib/components/pisellLongText/components/ReadOnlyView.d.ts +0 -18
  803. package/lib/components/pisellLongText/index.d.ts +0 -7
  804. package/lib/components/pisellLongText/types.d.ts +0 -147
  805. package/lib/components/pisellLookup/PisellLookup.d.ts +0 -4
  806. package/lib/components/pisellLookup/PisellLookup.stories.d.ts +0 -129
  807. package/lib/components/pisellLookup/components/HotWords.d.ts +0 -7
  808. package/lib/components/pisellLookup/components/LookupAuxiliary.d.ts +0 -7
  809. package/lib/components/pisellLookup/components/LookupResultHost.d.ts +0 -7
  810. package/lib/components/pisellLookup/components/SearchHistory.d.ts +0 -7
  811. package/lib/components/pisellLookup/components/SuggestWords.d.ts +0 -7
  812. package/lib/components/pisellLookup/components/index.d.ts +0 -9
  813. package/lib/components/pisellLookup/hooks/index.d.ts +0 -6
  814. package/lib/components/pisellLookup/hooks/useDebounceSearch.d.ts +0 -40
  815. package/lib/components/pisellLookup/hooks/useSearchHistory.d.ts +0 -48
  816. package/lib/components/pisellLookup/hooks/useSearchState.d.ts +0 -80
  817. package/lib/components/pisellLookup/index.d.ts +0 -6
  818. package/lib/components/pisellLookup/types.d.ts +0 -667
  819. package/lib/components/pisellLookup/utils/index.d.ts +0 -5
  820. package/lib/components/pisellLookup/utils/storage.d.ts +0 -42
  821. package/lib/components/pisellLookup/utils/trigger.d.ts +0 -42
  822. package/lib/components/pisellMetricCard/PisellMetricCard.d.ts +0 -35
  823. package/lib/components/pisellMetricCard/PisellMetricCard.stories.d.ts +0 -17
  824. package/lib/components/pisellMetricCard/components/MetricComparison.d.ts +0 -14
  825. package/lib/components/pisellMetricCard/components/MetricTitle.d.ts +0 -12
  826. package/lib/components/pisellMetricCard/components/MetricValue.d.ts +0 -12
  827. package/lib/components/pisellMetricCard/components/TrendIcon.d.ts +0 -14
  828. package/lib/components/pisellMetricCard/components/index.d.ts +0 -7
  829. package/lib/components/pisellMetricCard/index.d.ts +0 -6
  830. package/lib/components/pisellMetricCard/types.d.ts +0 -201
  831. package/lib/components/pisellMetricCard/utils/calculateTrend.d.ts +0 -14
  832. package/lib/components/pisellMetricCard/utils/formatMetricValue.d.ts +0 -34
  833. package/lib/components/pisellMetricCard/utils/index.d.ts +0 -5
  834. package/lib/components/pisellMultipleSelect/PisellMultipleSelect.d.ts +0 -9
  835. package/lib/components/pisellMultipleSelect/PisellMultipleSelect.stories.d.ts +0 -70
  836. package/lib/components/pisellMultipleSelect/components/DisabledView.d.ts +0 -8
  837. package/lib/components/pisellMultipleSelect/components/EditView.d.ts +0 -8
  838. package/lib/components/pisellMultipleSelect/components/ReadOnlyView.d.ts +0 -8
  839. package/lib/components/pisellMultipleSelect/index.d.ts +0 -7
  840. package/lib/components/pisellMultipleSelect/types.d.ts +0 -160
  841. package/lib/components/pisellNumber/PisellNumber.d.ts +0 -42
  842. package/lib/components/pisellNumber/PisellNumber.stories.d.ts +0 -66
  843. package/lib/components/pisellNumber/components/DisabledView.d.ts +0 -11
  844. package/lib/components/pisellNumber/components/EditView.d.ts +0 -18
  845. package/lib/components/pisellNumber/components/ReadOnlyView.d.ts +0 -16
  846. package/lib/components/pisellNumber/components/index.d.ts +0 -6
  847. package/lib/components/pisellNumber/index.d.ts +0 -7
  848. package/lib/components/pisellNumber/types.d.ts +0 -168
  849. package/lib/components/pisellPercent/PisellPercent.d.ts +0 -38
  850. package/lib/components/pisellPercent/PisellPercent.stories.d.ts +0 -52
  851. package/lib/components/pisellPercent/components/DisabledView.d.ts +0 -11
  852. package/lib/components/pisellPercent/components/EditView.d.ts +0 -17
  853. package/lib/components/pisellPercent/components/ReadOnlyView.d.ts +0 -14
  854. package/lib/components/pisellPercent/components/index.d.ts +0 -6
  855. package/lib/components/pisellPercent/index.d.ts +0 -7
  856. package/lib/components/pisellPercent/types.d.ts +0 -68
  857. package/lib/components/pisellPercent/utils/index.d.ts +0 -6
  858. package/lib/components/pisellPercent/utils/percentFormatter.d.ts +0 -27
  859. package/lib/components/pisellPercent/utils/rangeConverter.d.ts +0 -36
  860. package/lib/components/pisellPhone/PisellPhone.d.ts +0 -36
  861. package/lib/components/pisellPhone/PisellPhone.stories.d.ts +0 -80
  862. package/lib/components/pisellPhone/components/DisabledView.d.ts +0 -16
  863. package/lib/components/pisellPhone/components/EditView.d.ts +0 -19
  864. package/lib/components/pisellPhone/components/ReadOnlyView.d.ts +0 -17
  865. package/lib/components/pisellPhone/constants/countryCodes.d.ts +0 -20
  866. package/lib/components/pisellPhone/index.d.ts +0 -8
  867. package/lib/components/pisellPhone/types.d.ts +0 -209
  868. package/lib/components/pisellPhone/utils/countryCodeHelper.d.ts +0 -35
  869. package/lib/components/pisellPhone/utils/index.d.ts +0 -6
  870. package/lib/components/pisellPhone/utils/phoneFormatter.d.ts +0 -39
  871. package/lib/components/pisellPhone/utils/phoneValidator.d.ts +0 -11
  872. package/lib/components/pisellQuickFilter/index.d.ts +0 -11
  873. package/lib/components/pisellQuickFilter/type.d.ts +0 -12
  874. package/lib/components/pisellRating/PisellRating.d.ts +0 -31
  875. package/lib/components/pisellRating/PisellRating.stories.d.ts +0 -53
  876. package/lib/components/pisellRating/index.d.ts +0 -7
  877. package/lib/components/pisellRating/types.d.ts +0 -124
  878. package/lib/components/pisellRecordBoard/shellFrame/Calendar/const/bookingCalendarConstants.d.ts +0 -38
  879. package/lib/components/pisellRow/index.d.ts +0 -22
  880. package/lib/components/pisellShellFrame/PisellShellFrame.stories.d.ts +0 -15
  881. package/lib/components/pisellShellFrame/index.d.ts +0 -2
  882. package/lib/components/pisellSingleLineText/PisellSingleLineText.d.ts +0 -40
  883. package/lib/components/pisellSingleLineText/PisellSingleLineText.stories.d.ts +0 -102
  884. package/lib/components/pisellSingleLineText/components/DisabledView.d.ts +0 -16
  885. package/lib/components/pisellSingleLineText/components/EditView.d.ts +0 -19
  886. package/lib/components/pisellSingleLineText/components/ReadOnlyView.d.ts +0 -20
  887. package/lib/components/pisellSingleLineText/index.d.ts +0 -7
  888. package/lib/components/pisellSingleLineText/types.d.ts +0 -139
  889. package/lib/components/pisellSingleSelect/PisellSingleSelect.d.ts +0 -9
  890. package/lib/components/pisellSingleSelect/PisellSingleSelect.stories.d.ts +0 -66
  891. package/lib/components/pisellSingleSelect/components/DisabledView.d.ts +0 -8
  892. package/lib/components/pisellSingleSelect/components/EditView.d.ts +0 -8
  893. package/lib/components/pisellSingleSelect/components/ReadOnlyView.d.ts +0 -8
  894. package/lib/components/pisellSingleSelect/index.d.ts +0 -7
  895. package/lib/components/pisellSingleSelect/types.d.ts +0 -92
  896. package/lib/components/pisellSort/index.d.ts +0 -3
  897. package/lib/components/pisellSort/type.d.ts +0 -7
  898. package/lib/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.d.ts +0 -32
  899. package/lib/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.stories.d.ts +0 -61
  900. package/lib/components/pisellTimeRangeDisplay/components/DateBlock.d.ts +0 -20
  901. package/lib/components/pisellTimeRangeDisplay/components/DurationBlock.d.ts +0 -19
  902. package/lib/components/pisellTimeRangeDisplay/components/TimeRangeBlock.d.ts +0 -30
  903. package/lib/components/pisellTimeRangeDisplay/components/WeekdayBlock.d.ts +0 -18
  904. package/lib/components/pisellTimeRangeDisplay/components/index.d.ts +0 -8
  905. package/lib/components/pisellTimeRangeDisplay/index.d.ts +0 -3
  906. package/lib/components/pisellTimeRangeDisplay/types.d.ts +0 -137
  907. package/lib/components/pisellTimeRangeDisplay/utils/formatDuration.d.ts +0 -14
  908. package/lib/components/pisellTimeRangeDisplay/utils/index.d.ts +0 -4
  909. package/lib/components/pisellTimeRangeDisplay/utils/parseTimeRange.d.ts +0 -23
  910. package/lib/components/pisellUrl/PisellUrl.d.ts +0 -37
  911. package/lib/components/pisellUrl/PisellUrl.stories.d.ts +0 -108
  912. package/lib/components/pisellUrl/components/DisabledView.d.ts +0 -14
  913. package/lib/components/pisellUrl/components/EditView.d.ts +0 -15
  914. package/lib/components/pisellUrl/components/ReadOnlyView.d.ts +0 -15
  915. package/lib/components/pisellUrl/index.d.ts +0 -7
  916. package/lib/components/pisellUrl/types.d.ts +0 -160
  917. package/lib/components/pisellUrl/utils/index.d.ts +0 -6
  918. package/lib/components/pisellUrl/utils/urlFormatter.d.ts +0 -38
  919. package/lib/components/pisellUrl/utils/urlHelper.d.ts +0 -63
  920. package/lib/components/pisellUrl/utils/urlValidator.d.ts +0 -46
  921. package/lib/components/select/index.d.ts +0 -9
  922. package/lib/components/sort/types.d.ts +0 -39
  923. package/lib/components/table/Actions/component/GallerySetting/index.d.ts +0 -8
  924. package/lib/components/table/Actions/component/ViewMode/index.d.ts +0 -8
  925. package/lib/components/table/Table/fields/select/Edit/index.d.ts +0 -4
  926. package/lib/components/table/Table/fields/types/index.d.ts +0 -33
  927. package/lib/components/virtualInput/BaseVirtualInput/index.d.ts +0 -44
  928. package/lib/components/virtualInput/index.d.ts +0 -29
  929. package/lib/hooks/useMobile.d.ts +0 -8
  930. package/lib/hooks/useThemeTokens.d.ts +0 -7
  931. package/lib/theme/tokens.d.ts +0 -22
  932. package/lib/utils/tagColor.d.ts +0 -7
@@ -4,7 +4,8 @@ declare const Pagination: (props: PaginationProps) => JSX.Element | null;
4
4
  export declare const paginationConfig: {
5
5
  className: string;
6
6
  defaultCurrent: number;
7
- showTotal: (total: number, range: [number, number]) => string;
7
+ /** 无 props 上下文时仅能根据 total + range 近似推算(见 resolveCurrentPage) */
8
+ showTotal: (totalRecords: number, range: [number, number]) => any;
8
9
  responsive: boolean;
9
10
  size: string;
10
11
  };
@@ -8,7 +8,7 @@ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
8
8
  function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
9
9
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
10
10
  function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
11
- import React, { useEffect, useMemo, useState } from 'react';
11
+ import React, { useCallback, useEffect, useMemo, useState } from 'react';
12
12
  // import { ArrowLeft, ArrowRight } from "@pisell/icon/es";
13
13
  import ArrowRight from '@pisell/icon/es/ArrowRight';
14
14
  import ArrowLeft from '@pisell/icon/es/ArrowLeft';
@@ -26,16 +26,32 @@ function getPaginationText(key) {
26
26
  if (fromUtils !== fullKey) return fromUtils;
27
27
  return (_getText = getText(fullKey)) !== null && _getText !== void 0 ? _getText : getText("table-pagination-".concat(key));
28
28
  }
29
+
30
+ /**
31
+ * antd Pagination 的 showTotal(total, range) 中 range 为本页条目序号区间 [start, end],
32
+ * 不是页码。未受控时用 range 与 pageSize 推算当前页。
33
+ */
34
+ function resolveCurrentPage(props, range, pageSize) {
35
+ var _props$current;
36
+ var fromProps = (_props$current = props.current) !== null && _props$current !== void 0 ? _props$current : props.defaultCurrent;
37
+ if (typeof fromProps === 'number' && fromProps >= 1) {
38
+ return fromProps;
39
+ }
40
+ var start = range[0];
41
+ if (start == null || start < 1 || pageSize < 1) {
42
+ return 1;
43
+ }
44
+ return Math.floor((start - 1) / pageSize) + 1;
45
+ }
29
46
  var Pagination = function Pagination(props) {
30
47
  var show = useMemo(function () {
31
48
  return Object.keys(props).length;
32
49
  }, [props]);
33
50
  var isMiniPagination = useIsMobileTable();
34
- var effectiveConfig = useMemo(function () {
51
+ var itemRenderFn = useMemo(function () {
35
52
  var prevText = getPaginationText('previous');
36
53
  var nextText = getPaginationText('next');
37
- var showTotalFn = getPaginationText('showTotal');
38
- var itemRenderFn = function itemRenderFn(_, type, originalElement) {
54
+ return function (_, type, originalElement) {
39
55
  if (type === 'prev') {
40
56
  return /*#__PURE__*/React.createElement("div", {
41
57
  className: classNames('paginator-page-btn', 'left')
@@ -56,20 +72,28 @@ var Pagination = function Pagination(props) {
56
72
  }
57
73
  return originalElement;
58
74
  };
59
- var showTotal = typeof showTotalFn === 'function' ? function (total, range) {
60
- return showTotalFn(range[0], range[1]);
61
- } : function (total, range) {
62
- return "Page ".concat(range[0], " of ").concat(range[1]);
63
- };
75
+ }, []);
76
+ var showTotalDefault = useCallback(function (totalRecords, range) {
77
+ var _ref, _props$pageSize;
78
+ var pageSize = (_ref = (_props$pageSize = props.pageSize) !== null && _props$pageSize !== void 0 ? _props$pageSize : props.defaultPageSize) !== null && _ref !== void 0 ? _ref : 10;
79
+ var currentPage = resolveCurrentPage(props, range, pageSize);
80
+ var totalPages = totalRecords <= 0 ? 1 : Math.max(1, Math.ceil(totalRecords / pageSize));
81
+ var showTotalFn = getPaginationText('showTotal');
82
+ if (typeof showTotalFn === 'function') {
83
+ return showTotalFn(currentPage, totalPages);
84
+ }
85
+ return "Page ".concat(currentPage, " of ").concat(totalPages);
86
+ }, [props.current, props.defaultCurrent, props.pageSize, props.defaultPageSize]);
87
+ var effectiveConfig = useMemo(function () {
64
88
  return {
65
89
  className: 'materials-grid-paginator',
66
90
  defaultCurrent: 1,
67
- showTotal: showTotal,
91
+ showTotal: showTotalDefault,
68
92
  itemRender: itemRenderFn,
69
93
  responsive: true,
70
94
  size: 'small'
71
95
  };
72
- }, []);
96
+ }, [itemRenderFn, showTotalDefault]);
73
97
  var content = useMemo(function () {
74
98
  if (!show) {
75
99
  return null;
@@ -85,18 +109,28 @@ var Pagination = function Pagination(props) {
85
109
  export var paginationConfig = {
86
110
  className: 'materials-grid-paginator',
87
111
  defaultCurrent: 1,
88
- showTotal: function showTotal(total, range) {
89
- return "Page ".concat(range[0], " of ").concat(range[1]);
112
+ /** props 上下文时仅能根据 total + range 近似推算(见 resolveCurrentPage) */
113
+ showTotal: function showTotal(totalRecords, range) {
114
+ var pageSize = 10;
115
+ var currentPage = resolveCurrentPage({
116
+ pageSize: pageSize
117
+ }, range, pageSize);
118
+ var totalPages = totalRecords <= 0 ? 1 : Math.max(1, Math.ceil(totalRecords / pageSize));
119
+ var fn = getPaginationText('showTotal');
120
+ if (typeof fn === 'function') {
121
+ return fn(currentPage, totalPages);
122
+ }
123
+ return "Page ".concat(currentPage, " of ").concat(totalPages);
90
124
  },
91
125
  responsive: true,
92
126
  size: 'small'
93
127
  };
94
128
  export default Pagination;
95
129
  var MiniPagination = function MiniPagination(props) {
96
- var _props$current = props.current,
97
- current = _props$current === void 0 ? 1 : _props$current,
98
- _props$pageSize = props.pageSize,
99
- pageSize = _props$pageSize === void 0 ? 10 : _props$pageSize,
130
+ var _props$current2 = props.current,
131
+ current = _props$current2 === void 0 ? 1 : _props$current2,
132
+ _props$pageSize2 = props.pageSize,
133
+ pageSize = _props$pageSize2 === void 0 ? 10 : _props$pageSize2,
100
134
  _props$total = props.total,
101
135
  total = _props$total === void 0 ? 0 : _props$total;
102
136
 
@@ -163,13 +197,13 @@ var MiniPagination = function MiniPagination(props) {
163
197
  className: 'paginator-page-btn-right-icon'
164
198
  }))));
165
199
  };
166
- export var FormPagination = function FormPagination(_ref) {
167
- var _ref$value = _ref.value,
168
- value = _ref$value === void 0 ? {} : _ref$value,
169
- onChange = _ref.onChange,
170
- page = _ref.page,
171
- pageSize = _ref.pageSize,
172
- other = _objectWithoutProperties(_ref, _excluded);
200
+ export var FormPagination = function FormPagination(_ref2) {
201
+ var _ref2$value = _ref2.value,
202
+ value = _ref2$value === void 0 ? {} : _ref2$value,
203
+ onChange = _ref2.onChange,
204
+ page = _ref2.page,
205
+ pageSize = _ref2.pageSize,
206
+ other = _objectWithoutProperties(_ref2, _excluded);
173
207
  var _useState = useState(page || 1),
174
208
  _useState2 = _slicedToArray(_useState, 2),
175
209
  _p = _useState2[0],
@@ -0,0 +1,38 @@
1
+ /**
2
+ * PisellLayouts 命名空间
3
+ * 布局组件集合
4
+ *
5
+ * @example
6
+ * import { PisellLayouts } from '@pisell/materials';
7
+ *
8
+ * <PisellLayouts.BasicGrid columns={3} gap={16}>
9
+ * {items.map(item => <Card key={item.id} {...item} />)}
10
+ * </PisellLayouts.BasicGrid>
11
+ *
12
+ * <PisellLayouts.ScrollView direction="horizontal">
13
+ * <Content />
14
+ * </PisellLayouts.ScrollView>
15
+ */
16
+ /// <reference types="react" />
17
+ declare const PisellLayouts: {
18
+ BasicGrid: <T>(props: import("../PisellBasicGrid").PisellBasicGridProps<T>) => JSX.Element;
19
+ ScrollView: import("react").ForwardRefExoticComponent<Omit<import("../PisellScrollView").PisellScrollViewProps, "ref"> & import("react").RefAttributes<import("../PisellScrollView").PisellScrollViewRef>>;
20
+ FloorMapLayout: <T_1 extends import("../pisellFloorMapLayout").FloorMapItemBase = import("../pisellFloorMapLayout").FloorMapItemBase>(props: import("../pisellFloorMapLayout").PisellFloorMapLayoutProps<T_1> & {
21
+ ref?: import("react").Ref<import("../pisellFloorMapLayout").PisellFloorMapLayoutRef | null> | undefined;
22
+ }) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
23
+ Layout: import("../pisellLayout").CompoundedComponent;
24
+ Content: import("react").FC<import("../pisellLayout/content").PisellContentProps>;
25
+ Footer: import("react").FC<import("../pisellLayout/footer").PisellFooterProps>;
26
+ Header: import("react").FC<import("../pisellLayout/header").PisellHeaderProps>;
27
+ Sider: import("react").FC<import("../pisellLayout/sider").PisellSiderProps>;
28
+ Container: <T_2 extends import("../pisellContainer").RenderType>(props: import("../pisellContainer").PisellContainerProps<T_2>) => any;
29
+ Row: (props: import("../pisellRow").PisellRowProps) => JSX.Element;
30
+ ViewGrid: import("react").FC<import("../pisellViewGrid").PisellViewGridProps>;
31
+ };
32
+ export default PisellLayouts;
33
+ export type { PisellBasicGridProps } from '../PisellBasicGrid';
34
+ export type { PisellScrollViewProps } from '../PisellScrollView';
35
+ export type { PisellFloorMapLayoutProps, PisellFloorMapLayoutRef, FloorMapFullscreenMode, FloorMapLayoutContextValue, FloorMapLayoutProviderProps, } from '../pisellFloorMapLayout';
36
+ export { FloorMapLayoutProvider, useFloorMapLayoutContext, EMPTY_FLOOR_MAP_LAYOUT_CONTEXT, mergeFloorMapLayoutPropsFromContext, } from '../pisellFloorMapLayout';
37
+ export type { PisellLayoutProps, CompoundedComponent } from '../pisellLayout';
38
+ export type { PisellRowProps } from '../pisellRow';
@@ -0,0 +1,107 @@
1
+ import React from 'react';
2
+ import { PisellCheckboxGroupProps } from '../pisellCheckboxGroup';
3
+ import { PisellContextType } from '../pisell-config-provider/context';
4
+ import { PisellWalletPassCardProps, FormatOption } from '../pisellWalletPassCard';
5
+ import './index.less';
6
+ export interface PisellCardListProps extends Omit<PisellCheckboxGroupProps, 'options'> {
7
+ platform?: PisellContextType['platform'];
8
+ /** 当用户查看完所有记录时,底部会显示此消息 */
9
+ endMessage?: React.ReactNode;
10
+ /** 加载下次数据时的加载站位 */
11
+ loader?: React.ReactNode;
12
+ /** 是否有更多数据 */
13
+ hasMore: boolean;
14
+ /** 加载更多数据回调 */
15
+ loadMoreData?: () => Promise<void>;
16
+ /** 当前list数据 */
17
+ data: PisellWalletPassCardProps[];
18
+ /** list空数据时展示内容 */
19
+ empty?: React.ReactNode;
20
+ /** 是否展示空状态 */
21
+ showEmpty?: boolean;
22
+ /** 是否展示卡片名称 */
23
+ showName?: boolean;
24
+ /** 是否展示店铺名称 */
25
+ showStoreName?: boolean;
26
+ /** 是否展示核销金额 */
27
+ showRedeem?: boolean;
28
+ /** 是否展示余额 */
29
+ showBalance?: boolean;
30
+ /** 是否展示编码 */
31
+ showCode?: boolean;
32
+ /** 是否展示到期时间 */
33
+ showValidDate?: boolean;
34
+ /** 使用日程信息计算有效期 */
35
+ validDateBySchedule?: boolean;
36
+ /** 日程列表 */
37
+ scheduleList?: any[];
38
+ /** 是否展示详情按钮 */
39
+ showDetail?: boolean;
40
+ /** 是否展示二维码 */
41
+ showQrCode?: boolean;
42
+ /** 是否展示封面图 */
43
+ showCover?: boolean;
44
+ /** 是否余额货币单位 */
45
+ showBalanceSymbol?: boolean;
46
+ /** 卡片大小 */
47
+ type?: 'default' | 'mini';
48
+ /** 展示操作按钮 */
49
+ showActions?: boolean;
50
+ /** 操作按钮配置 */
51
+ actions?: {
52
+ /** 按钮展示方式 */
53
+ layout: 'expanded' | 'collapsed';
54
+ /** detail 按钮配置 */
55
+ detail?: {
56
+ visible: boolean;
57
+ iconColor: string;
58
+ };
59
+ /** edit按钮配置 */
60
+ edit?: {
61
+ visible: boolean;
62
+ iconColor: string;
63
+ dialogTitle: string;
64
+ enableDialog: boolean;
65
+ fields: {
66
+ name: string;
67
+ label: string;
68
+ };
69
+ };
70
+ };
71
+ /** 编辑编辑按钮后,弹窗展示之前 */
72
+ beforeEdit?: (value: any, index: number) => Promise<any> | boolean | void;
73
+ /** 编辑弹窗点击提交 */
74
+ onConfirmEdit?: (value: any, index: number, data: any) => void;
75
+ /** 是否展示状态标识 */
76
+ showStatus?: boolean;
77
+ /** 名称标题字号字重颜色配置 */
78
+ nameTitleStyle?: {
79
+ fontSize: number;
80
+ fontWeight: number;
81
+ color: string;
82
+ };
83
+ /** 开启编辑金额 */
84
+ enableEditAmount?: boolean;
85
+ /** 编辑金额事件 */
86
+ onConfirmEditAmount?: (value: number, index: number, data: any) => void;
87
+ /** 是否使用外部详情处理 */
88
+ useExternalDetail?: boolean;
89
+ /** 详情事件 */
90
+ onDetail?: (value: any, index: number) => void;
91
+ /** 自定义余额格式化函数,如果提供则优先使用 */
92
+ formatBalance?: (balance?: number, option?: FormatOption) => React.ReactNode;
93
+ /** 自定义余额标题格式化函数,如果提供则优先使用 */
94
+ formatBalanceTitle?: (balanceTitle?: string, option?: FormatOption) => React.ReactNode;
95
+ /** 自定义使用金额格式化函数,如果提供则优先使用 */
96
+ formatRedeem?: (redeem?: number, option?: FormatOption) => React.ReactNode;
97
+ /** 自定义使用金额标题格式化函数,如果提供则优先使用 */
98
+ formatRedeemTitle?: (redeemTitle?: string, option?: FormatOption) => React.ReactNode;
99
+ /** 编辑金额前事件 */
100
+ onBeforeEditAmount?: (value: any, index: number, data: any) => Promise<any> | boolean | void;
101
+ /** 选项点击事件 */
102
+ onItemClick?: (e: React.MouseEvent<HTMLDivElement>, option: any) => void;
103
+ /** 是否展示选中状态的背景色 */
104
+ showActiveBackground?: boolean;
105
+ }
106
+ declare const _default: React.NamedExoticComponent<PisellCardListProps>;
107
+ export default _default;
@@ -1,9 +1,6 @@
1
1
  import React from 'react';
2
2
  import { DataSourceContainerContextType } from '../../type';
3
- declare const _default: React.ForwardRefExoticComponent<Omit<Partial<import("antd").TableProps<any>> & DataSourceContainerContextType & {
4
- scopeId?: string | undefined;
5
- __id?: string | undefined;
6
- } & React.RefAttributes<unknown> & {
3
+ declare const _default: React.ForwardRefExoticComponent<Omit<Partial<import("antd").PaginationProps> & DataSourceContainerContextType & React.RefAttributes<unknown> & {
7
4
  refId?: string | undefined;
8
5
  }, "ref"> & React.RefAttributes<any>>;
9
6
  export default _default;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * PisellFloorMapLayout - 空间布局视图
3
+ * 支持两种用法:1) 仅传入 items + renderItem(原有用法);2) 传入 floorMapConfig + dataSources + mode 使用平面图视图(含多画布/编辑态)
4
+ */
5
+ import React from 'react';
6
+ import type { FloorMapItemBase, PisellFloorMapLayoutProps, PisellFloorMapLayoutRef } from './types';
7
+ import './PisellFloorMapLayout.less';
8
+ /** 空间布局根组件:阅读/编辑、列表与平面图双模式,ref 见 {@link PisellFloorMapLayoutRef} */
9
+ declare const PisellFloorMapLayout: <T extends FloorMapItemBase = FloorMapItemBase>(props: PisellFloorMapLayoutProps<T> & {
10
+ ref?: React.Ref<PisellFloorMapLayoutRef | null> | undefined;
11
+ }) => React.ReactElement;
12
+ export { PisellFloorMapLayout };
13
+ export default PisellFloorMapLayout;
@@ -70,6 +70,7 @@ function PisellFloorMapLayoutInner(props, ref) {
70
70
  controls = _p$controls === void 0 ? {} : _p$controls,
71
71
  _p$enableHover = p.enableHover,
72
72
  enableHover = _p$enableHover === void 0 ? true : _p$enableHover,
73
+ readModeSelectedItemId = p.readModeSelectedItemId,
73
74
  onItemClick = p.onItemClick,
74
75
  onItemHover = p.onItemHover,
75
76
  onItemLeave = p.onItemLeave,
@@ -797,7 +798,8 @@ function PisellFloorMapLayoutInner(props, ref) {
797
798
  onItemHover: onItemHover,
798
799
  onItemLeave: onItemLeave,
799
800
  getMergedItemWrapperStyle: getMergedItemWrapperStyle,
800
- onInteractionChange: setIsInteractingWithElement
801
+ onInteractionChange: setIsInteractingWithElement,
802
+ readModeSelectedItemId: readModeSelectedItemId
801
803
  }), isFloorMapView && mode === 'edit' && (placeMode === null || placeMode === void 0 ? void 0 : placeMode.type) === 'scene' && /*#__PURE__*/React.createElement("div", {
802
804
  className: placeOverlayClass,
803
805
  style: {
@@ -0,0 +1,55 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { PisellFloorMapLayout } from './PisellFloorMapLayout';
3
+ /**
4
+ * PisellFloorMapLayout 楼层图布局
5
+ *
6
+ * 空间布局视图:在二维平面按坐标渲染资源(桌台/房间/工位等),
7
+ * 支持缩放、平移、复位、区域定位,仅负责展示与交互。
8
+ */
9
+ declare const meta: Meta<typeof PisellFloorMapLayout>;
10
+ export default meta;
11
+ declare type Story = StoryObj<typeof PisellFloorMapLayout>;
12
+ /**
13
+ * 默认 - 纯色底 + 简单格子(格子单位,默认 item 间距 8px)
14
+ */
15
+ export declare const Default: Story;
16
+ /**
17
+ * 显示网格线(item 间距由 mapLayer.gap 控制)
18
+ */
19
+ export declare const WithGrid: Story;
20
+ /**
21
+ * 开启平移 - 可拖拽画布
22
+ */
23
+ export declare const WithPan: Story;
24
+ export declare const WithShapes: Story;
25
+ export declare const WithVariableSizes: Story;
26
+ export declare const PixelUnits: Story;
27
+ /**
28
+ * 点击与 Hover 事件
29
+ */
30
+ export declare const WithEvents: Story;
31
+ /**
32
+ * Ref 调用 - 外部按钮控制缩放/复位/区域定位
33
+ */
34
+ export declare const WithRefControls: Story;
35
+ export declare const FloorMapViewEdit: Story;
36
+ /**
37
+ * 平面图编辑态 + 自定义数据源记录表单(`dataSourceRecordForm.sales`)
38
+ */
39
+ export declare const FloorMapViewEditCustomRecordForm: Story;
40
+ /**
41
+ * Floor Map 视图 - 阅读态(方桌同样用 Figma 样式)
42
+ */
43
+ export declare const FloorMapViewRead: Story;
44
+ /**
45
+ * 自定义控制按钮显隐
46
+ */
47
+ export declare const ControlsHidden: Story;
48
+ /**
49
+ * `FloorMapLayoutProvider` 注入 `floorMapConfig` / `dataSources`;Layout 仅传展示向 props
50
+ */
51
+ export declare const FloorMapWithLayoutProvider: Story;
52
+ /**
53
+ * Figma 设计稿效果 - 餐厅桌台状态图(顶部 Tab + 图例参考 node 14131:6266,内容区不变)
54
+ */
55
+ export declare const FigmaDesign: Story;
@@ -0,0 +1,22 @@
1
+ /// <reference types="react" />
2
+ import type { FloorMapCanvas, FloorMapCanvasNameI18n } from '../types';
3
+ import './CanvasTabs.less';
4
+ export interface CanvasTabsProps {
5
+ /** 画布列表 */
6
+ canvases: FloorMapCanvas[];
7
+ /** 当前画布 id */
8
+ currentCanvasId: string | null;
9
+ /** 切换画布 */
10
+ onTabChange: (canvasId: string) => void;
11
+ /** 是否允许添加/删除/重命名画布(编辑态) */
12
+ canEdit?: boolean;
13
+ /** 添加画布 */
14
+ onAddCanvas?: () => void;
15
+ /** 删除画布(至少保留一个画布时可调用) */
16
+ onRemoveCanvas?: (canvasId: string) => void;
17
+ /** 重命名画布(对象写入 `name`,并清除 `nameKey`) */
18
+ onRenameCanvas?: (canvasId: string, name: string | FloorMapCanvasNameI18n) => void;
19
+ className?: string;
20
+ }
21
+ export declare function CanvasTabs(props: CanvasTabsProps): JSX.Element;
22
+ export default CanvasTabs;
@@ -0,0 +1,46 @@
1
+ /**
2
+ * EditableItemLayer - 编辑态图元层:拖拽、缩放、选中、吸附
3
+ */
4
+ import React, { type CSSProperties } from 'react';
5
+ import type { FloorMapItemBase, FloorMapMergedItem, FloorMapRenderOptions } from '../types';
6
+ import { type FloorMapEditQuickActionLabels } from './FloorMapEditQuickActions';
7
+ import './EditableItemLayer.less';
8
+ export interface EditableItemLayerProps<T extends FloorMapItemBase = FloorMapMergedItem> {
9
+ items: T[];
10
+ renderItem: (item: T, index: number, options?: FloorMapRenderOptions) => React.ReactNode;
11
+ rowKey?: string | ((item: T, index: number) => string);
12
+ cellSize: number;
13
+ itemUnit?: 'cell' | 'pixel';
14
+ itemGap?: number;
15
+ contentWidth: number;
16
+ contentHeight: number;
17
+ /** 内容区 X/Y 偏移(画布包围盒向左/上扩展时,图元层整体平移) */
18
+ contentOffsetX?: number;
19
+ contentOffsetY?: number;
20
+ selectedId: string | null;
21
+ onSelect: (id: string | null) => void;
22
+ onUpdateItem: (itemId: string, patch: Partial<{
23
+ x: number;
24
+ y: number;
25
+ width: number;
26
+ height: number;
27
+ }>) => void;
28
+ snapStep?: number;
29
+ /** 画布当前缩放,用于将屏幕位移转为内容位移 */
30
+ scale?: number;
31
+ /** 拖拽/缩放图元时通知父组件,用于禁用画布平移,避免松手时画布跟着动 */
32
+ onInteractionChange?: (active: boolean) => void;
33
+ /** 每项外层容器额外样式(与定位样式合并) */
34
+ getMergedItemWrapperStyle?: (item: T, index: number) => CSSProperties | undefined;
35
+ className?: string;
36
+ /** 编辑态选中时图元旁快捷栏(上锁 / 复制 / 删除) */
37
+ editQuickBar?: {
38
+ labels: FloorMapEditQuickActionLabels;
39
+ isLocked: boolean;
40
+ onToggleLock: () => void;
41
+ onDuplicate: () => void;
42
+ onDelete: () => void;
43
+ } | null;
44
+ }
45
+ export declare function EditableItemLayer<T extends FloorMapItemBase>(props: EditableItemLayerProps<T>): JSX.Element;
46
+ export default EditableItemLayer;
@@ -0,0 +1,39 @@
1
+ /// <reference types="react" />
2
+ import type { FloorMapMergedItem, FloorMapDataSources } from '../types';
3
+ export declare type FigmaTableStatus = 'available' | 'reserved' | 'waiting' | 'dining' | 'billed' | 'availableSoon';
4
+ /** 方桌/圆桌卡片展示用数据结构(与 Figma 设计一致,支持桌号/状态/人数/区域等) */
5
+ export interface FigmaTableCardItem {
6
+ id: string;
7
+ /**
8
+ * 无绑定或无可展示数据行时与蘸料摆台占位一致:浅灰底 + 虚线框 + 提示文案
9
+ * @see getRenderItemByKindCondimentStation(RecordBoard Story)
10
+ */
11
+ isNoDataPlaceholder?: boolean;
12
+ placeholderBorderColor?: string;
13
+ placeholderHint?: string;
14
+ /** 占位主标题:优先图元名称,否则「餐桌」/「圆桌」 */
15
+ placeholderTitle?: string;
16
+ /** 桌号/名称,空闲态居中显示 */
17
+ displayName?: string;
18
+ status?: FigmaTableStatus;
19
+ customerName?: string;
20
+ reserveTime?: string;
21
+ /** 当前用餐人数(与 Figma 设计一致) */
22
+ guests?: number;
23
+ /** 可坐人数(与表格列「可坐人数」绑定) */
24
+ capacity?: number;
25
+ dishes?: string;
26
+ duration?: string;
27
+ /** 区域(与表格列「区域」绑定,如大厅/包厢A) */
28
+ area?: string;
29
+ }
30
+ /** 从 merged item + dataSources 得到卡片数据 */
31
+ export declare function getFigmaTableCardFromMerged(item: FloorMapMergedItem, dataSources: FloorMapDataSources): FigmaTableCardItem;
32
+ /** 渲染 Figma 样式的方桌卡片(上下小条 + 资源信息标题栏 + 白底卡片 + 状态色边框) */
33
+ export declare function renderFigmaStyleTableCard(cardItem: FigmaTableCardItem): JSX.Element;
34
+ /** 渲染 Figma 样式的圆桌卡片(顶部资源信息 chip + 圆形主体,圆形主体只展示状态相关内容) */
35
+ export declare function renderFigmaStyleRoundTableCard(cardItem: FigmaTableCardItem): JSX.Element;
36
+ /** 返回用于 renderItemByKind.table 的渲染函数(方桌) */
37
+ export declare function getRenderItemByKindTable(dataSources: FloorMapDataSources): (item: unknown) => JSX.Element;
38
+ /** 返回用于 renderItemByKind.roundTable 的渲染函数(圆桌) */
39
+ export declare function getRenderItemByKindRoundTable(dataSources: FloorMapDataSources): (item: unknown) => JSX.Element;
@@ -0,0 +1,17 @@
1
+ /// <reference types="react" />
2
+ import type { FloorMapDataSources, DataSourceFormColumn } from '../types';
3
+ import './FloorMapDataForm.less';
4
+ export interface FloorMapDataFormProps {
5
+ dataSourceKey: string;
6
+ recordId: string;
7
+ record: Record<string, unknown>;
8
+ dataSources: FloorMapDataSources;
9
+ onSave: (dataSourceKey: string, id: string, newData: Record<string, unknown>) => void;
10
+ saving?: boolean;
11
+ /** 列配置:标签、类型(string/number/select)、选项(select 时);不传则自动列举 record 除 id 外字段 */
12
+ columns?: DataSourceFormColumn[];
13
+ className?: string;
14
+ }
15
+ /** 简单通用表单:可编辑记录中的字段;支持 columns 配置标签与控件类型 */
16
+ export declare function FloorMapDataForm(props: FloorMapDataFormProps): JSX.Element;
17
+ export default FloorMapDataForm;
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ import type { FloorMapEditPanelParams, FloorMapViewConfig, FloorMapDataSources } from '../types';
3
+ import './FloorMapEditPanel.less';
4
+ export interface FloorMapEditPanelProps extends FloorMapEditPanelParams {
5
+ config: FloorMapViewConfig;
6
+ dataSources: FloorMapDataSources;
7
+ savingRecord?: boolean;
8
+ className?: string;
9
+ }
10
+ export declare function FloorMapEditPanel(props: FloorMapEditPanelProps): JSX.Element;
11
+ export default FloorMapEditPanel;
@@ -0,0 +1,60 @@
1
+ /**
2
+ * FloorMapEditTopBar - 编辑态顶栏
3
+ * - `mode="compact"`:画布 Tab + 可选 `canvasTabsBarTrailing`(全屏入口在左下 Dock)
4
+ * - `mode="full"`:画布 Tab + `canvasTabsBarTrailing` + 保存(仅非浏览器全屏时)+ 扩展操作
5
+ */
6
+ import React from 'react';
7
+ import type { CanvasTabsProps } from './CanvasTabs';
8
+ import type { FloorMapControlsConfig, FloorMapViewConfig } from '../types';
9
+ import './FloorMapEditTopBar.less';
10
+ export declare type FloorMapEditTopBarMode = 'full' | 'compact';
11
+ export interface FloorMapEditTopBarProps {
12
+ /** full:全屏时的完整顶栏;compact:非全屏时 Tab + 扩展区 */
13
+ mode?: FloorMapEditTopBarMode;
14
+ config: FloorMapViewConfig;
15
+ canvases: CanvasTabsProps['canvases'];
16
+ currentCanvasId: CanvasTabsProps['currentCanvasId'];
17
+ onTabChange: CanvasTabsProps['onTabChange'];
18
+ canEditTabs?: CanvasTabsProps['canEdit'];
19
+ onAddCanvas?: CanvasTabsProps['onAddCanvas'];
20
+ onRemoveCanvas?: CanvasTabsProps['onRemoveCanvas'];
21
+ onRenameCanvas?: CanvasTabsProps['onRenameCanvas'];
22
+ onSave?: () => void;
23
+ saving?: boolean;
24
+ saveError?: Error | string;
25
+ layoutDirty?: boolean;
26
+ /** full 模式:浏览器全屏时为 true,顶栏不展示保存(改由侧栏) */
27
+ isFullscreen?: boolean;
28
+ controls?: FloorMapControlsConfig;
29
+ /** 顶栏右侧扩展(如「区域定位」等),仅 full 模式 */
30
+ extraActions?: React.ReactNode;
31
+ /** 画布 Tab 同排最右侧业务区 */
32
+ canvasTabsBarTrailing?: React.ReactNode;
33
+ /** 启用画布仅 1 个时隐藏 Tab 行,仅保留右侧操作区(全屏顶栏保存等) */
34
+ hideCanvasTabs?: boolean;
35
+ /** 撤销当前编辑步骤(不传则不显示按钮) */
36
+ onUndo?: () => void;
37
+ /** 重做最近一次撤销(不传则不显示按钮) */
38
+ onRedo?: () => void;
39
+ /** 是否还有可撤销步骤 */
40
+ canUndo?: boolean;
41
+ /** 是否还有可重做步骤 */
42
+ canRedo?: boolean;
43
+ /**
44
+ * 退出编辑模式回调(不保存)。
45
+ * 传入后顶栏右侧会渲染「取消编辑」+「完成」两个按钮,替代原独立「保存」按钮:
46
+ * - 取消编辑 → `onCancelEdit?.() ?? onExitEdit()`
47
+ * - 完成 → `onSave?.()` + `onExitEdit()`
48
+ * 不传则维持旧版「保存」按钮(保存但不退出)。
49
+ */
50
+ onExitEdit?: () => void;
51
+ /**
52
+ * 「取消编辑」专用回调(可选)。传入时取消按钮优先调它,业务层可以在这里
53
+ * 完成「丢弃草稿 + 退出编辑」组合,从而保证回到阅读态不会看到未保存的脏数据。
54
+ * 不传时取消按钮回退到 `onExitEdit`。完成按钮链路不受此 prop 影响。
55
+ */
56
+ onCancelEdit?: () => void;
57
+ className?: string;
58
+ }
59
+ export declare function FloorMapEditTopBar(props: FloorMapEditTopBarProps): JSX.Element | null;
60
+ export default FloorMapEditTopBar;
@@ -0,0 +1,35 @@
1
+ /**
2
+ * FloorMapToolbar - 编辑态左侧侧边栏:按分类添加图元、绑定数据源与行;保存可选(默认用顶栏)
3
+ */
4
+ import React from 'react';
5
+ import type { FloorMapViewConfig, FloorMapDataSources, FloorMapMergedItem, FloorMapSceneElement, FloorMapPlaceMode } from '../types';
6
+ import { type FloorMapPaletteDragPayload } from '../utils/floorMapDropUtils';
7
+ import './FloorMapToolbar.less';
8
+ export type { FloorMapPlaceMode as PlaceMode };
9
+ export interface FloorMapToolbarProps {
10
+ config: FloorMapViewConfig;
11
+ dataSources: FloorMapDataSources;
12
+ dataSourceLabels?: Record<string, string>;
13
+ canCreate: boolean;
14
+ placeMode: FloorMapPlaceMode;
15
+ onPlaceModeChange: (mode: FloorMapPlaceMode) => void;
16
+ renderPreviewItem?: (item: FloorMapMergedItem) => React.ReactNode;
17
+ placementPreviewSize?: {
18
+ width: number;
19
+ height: number;
20
+ };
21
+ decorationPreviewSize?: number;
22
+ sceneElements?: FloorMapSceneElement[];
23
+ onSave?: () => void;
24
+ saving?: boolean;
25
+ saveError?: Error | string;
26
+ /** 布局草稿已相对持久化配置变更,提示用户点击本栏「保存」 */
27
+ layoutDirty?: boolean;
28
+ className?: string;
29
+ /** 触摸/笔:Pointer 拖拽落点(mouse 仍用 HTML5 DnD) */
30
+ onPaletteCardPointerDown?: (payload: FloorMapPaletteDragPayload, e: React.PointerEvent<HTMLButtonElement>) => void;
31
+ /** 触摸拖放结束后吞掉按钮 click,避免误触切换落点模式 */
32
+ consumeToolbarClickIfTouchDrag?: () => boolean;
33
+ }
34
+ export declare function FloorMapToolbar(props: FloorMapToolbarProps): JSX.Element;
35
+ export default FloorMapToolbar;