@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
@@ -0,0 +1,14 @@
1
+ import React from 'react';
2
+ import './index.less';
3
+ import type { RecordBoardContextValue } from '../../types';
4
+ export interface RecordBoardPaginationProps extends Partial<Pick<RecordBoardContextValue, 'pagination' | 'total' | 'onPageChange' | 'loading'>> {
5
+ className?: string;
6
+ style?: React.CSSProperties;
7
+ render?: (ctx: RecordBoardContextValue) => React.ReactNode;
8
+ }
9
+ /**
10
+ * RecordBoard 下的分页:接入 packages/materials 的 Pagination,从 context 取 pagination / total / onPageChange;可透传 childComponentProps.pagination。
11
+ * 当 context 中 pagination 缺失时使用默认分页,避免在 Storybook 或未完整注入 context 时报错。
12
+ */
13
+ declare const RecordBoardPagination: React.FC<RecordBoardPaginationProps>;
14
+ export default RecordBoardPagination;
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import type { RecordBoardResourceWallProps } from '../../types';
3
+ import './ResourceWallViewport.less';
4
+ /** 与 {@link RecordBoardResourceWallProps.filterFieldKey} 默认一致 */
5
+ export declare const DEFAULT_RESOURCE_WALL_FILTER_FIELD_KEY = "resource_wall_resource_ids";
6
+ /**
7
+ * RecordBoard 大屏资源墙主视口:`cards` 提供全量卡数据;可见列表由
8
+ * `searchParams.filter.values[filterFieldKey]` 中的资源 id 与 `cards` 交集决定。
9
+ * 若 ToolBar `searchParams.sort` 指向状态列(默认字段名 `status`),则按占用态重排展示顺序。
10
+ * 支持网格分页轮播、浅深外观、伪全屏与控制台(布局 / 配色 / 选中资源)。
11
+ */
12
+ export declare const PisellRecordBoardResourceWallView: React.FC<RecordBoardResourceWallProps>;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import type { RecordBoardResourceWallProps } from '../../types';
3
+ /**
4
+ * RecordBoard 大屏资源墙槽位:仅在 PisellRecordBoard.ShellFrame 内使用,本身不渲染 DOM。
5
+ * 与 GridLayout / FloorMap / Calendar 并存时出现视图切换。
6
+ */
7
+ declare const RecordBoardResourceWall: React.FC<RecordBoardResourceWallProps>;
8
+ export default RecordBoardResourceWall;
@@ -0,0 +1,50 @@
1
+ import React from 'react';
2
+ import { type VenueWallStatusToneOverrides } from './venueWallUtils';
3
+ export declare type ResourceWallLayoutPreset = {
4
+ key: string;
5
+ label: string;
6
+ cols: number;
7
+ rows: number;
8
+ };
9
+ export declare type ResourceWallControlPanelApplyPayload = {
10
+ resourceIds: string[];
11
+ layoutKey: string;
12
+ customCols: number;
13
+ customRows: number;
14
+ pageDurationSec: number;
15
+ occupiedCardColor: string;
16
+ availableCardColor: string;
17
+ boardingSoonBeforeMin: number;
18
+ statusToneOverrides: VenueWallStatusToneOverrides;
19
+ /** 与 test.tsx「主文案基准宽度占比」对接,写入 {@link VenueWallCard} */
20
+ heroMaxWidthRatio: number;
21
+ };
22
+ export interface ResourceWallControlPanelProps {
23
+ open: boolean;
24
+ onClose: () => void;
25
+ isDark: boolean;
26
+ layoutPresets: readonly ResourceWallLayoutPreset[];
27
+ layoutKey: string;
28
+ customCols: number;
29
+ customRows: number;
30
+ pageDurationSec: number;
31
+ occupiedCardColor: string;
32
+ availableCardColor: string;
33
+ boardingSoonBeforeMin: number;
34
+ statusToneOverrides: VenueWallStatusToneOverrides | undefined;
35
+ selectedResourceIds: string[];
36
+ onApply: (payload: ResourceWallControlPanelApplyPayload) => void;
37
+ /** 与 test.tsx「当前分页 / 倒计时」展示一致(1-based current) */
38
+ carouselPager: {
39
+ currentPage: number;
40
+ totalPages: number;
41
+ };
42
+ /** 主文案宽度占比初值,与 {@link VenueWallCardProps.heroMaxWidthRatio} 一致 */
43
+ heroMaxWidthRatio?: number;
44
+ }
45
+ /**
46
+ * 资源墙管理台(Portal):选资源、网格预设/自定义行列、翻页秒数、占用/空闲色、六态说明与色值;
47
+ * `onApply` 回传负载中含 `diffVenueWallStatusToneOverrides` 压缩结果。
48
+ * 源自 test `showAdmin` 对接;关闭(Close / Escape / 遮罩)时提交草稿并关闭。
49
+ */
50
+ export declare const ResourceWallControlPanel: React.FC<ResourceWallControlPanelProps>;
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ import { type VenueWallStatusKey, type VenueWallStatusTone } from './venueWallUtils';
3
+ export interface ResourceWallControlPanelColorTabProps {
4
+ adminSectionBg: string;
5
+ adminInputBg: string;
6
+ headerText: string;
7
+ mutedText: string;
8
+ divider: string;
9
+ draftOcc: string;
10
+ setDraftOcc: (v: string) => void;
11
+ draftAvail: string;
12
+ setDraftAvail: (v: string) => void;
13
+ draftTones: Record<VenueWallStatusKey, VenueWallStatusTone>;
14
+ setDraftTones: React.Dispatch<React.SetStateAction<Record<VenueWallStatusKey, VenueWallStatusTone>>>;
15
+ }
16
+ /** 控制台「外观 / 颜色」分页:占用/空闲底色与六态表格 */
17
+ export declare const ResourceWallControlPanelColorTab: React.FC<ResourceWallControlPanelColorTabProps>;
@@ -0,0 +1,22 @@
1
+ import React from 'react';
2
+ import type { RecordBoardResourceWallCardModel } from '../../types';
3
+ import { type VenueWallStatusKey, type VenueWallStatusTone } from './venueWallUtils';
4
+ import './VenueWallCard.less';
5
+ export interface VenueWallCardProps {
6
+ card: RecordBoardResourceWallCardModel;
7
+ /** 与 PisellRecordBoardResourceWallView 顶栏同源墙钟毫秒时间戳(唯一定时器驱动) */
8
+ wallNowMs: number;
9
+ /** boardingSoon:用于进度条分母(分钟);与「距结束」快结束窗口对称 */
10
+ boardingSoonBeforeMin?: number;
11
+ occupiedCardColor?: string;
12
+ availableCardColor?: string;
13
+ heroMaxWidthRatio?: number;
14
+ /** 合并后的六态配色与文案;不传则用默认 map */
15
+ statusToneMap?: Record<VenueWallStatusKey, VenueWallStatusTone>;
16
+ /** 非占用态主/辅文案色在暗色外壳下的对比度 */
17
+ appearance?: 'light' | 'dark';
18
+ }
19
+ declare function VenueWallCardInner({ card, wallNowMs, boardingSoonBeforeMin, occupiedCardColor, availableCardColor, statusToneMap: statusToneMapProp, appearance, }: VenueWallCardProps): JSX.Element;
20
+ /** 单块场地大屏卡:漂移与文案由 {@link buildVenueWallCardPresentation} 统一计算 */
21
+ export declare const VenueWallCard: React.MemoExoticComponent<typeof VenueWallCardInner>;
22
+ export {};
@@ -0,0 +1,58 @@
1
+ import type { RecordBoardResourceWallCardModel } from '../../types';
2
+ import { type VenueWallStatusKey, type VenueWallStatusTone } from './venueWallUtils';
3
+ /** 与平面图 empty / reserved / occupied 对齐的三种大屏展示态 */
4
+ export declare type VenueWallFloorLikeStatus = 'empty' | 'reserved' | 'occupied';
5
+ /**
6
+ * 标题胶囊 5 态:在 floorLike 三大类基础上,把 `late` 与 `expired` 拆出独立色与文案,
7
+ * 与当前区一档强调色(红)对齐。
8
+ */
9
+ export declare type VenueWallHeaderStatusKey = 'empty' | 'reserved' | 'late' | 'occupied' | 'expired';
10
+ /** 由 {@link buildVenueWallCardPresentation} 产出,供 VenueWallCard 渲染层使用 */
11
+ export declare type VenueWallCardPresentation = {
12
+ statusKey: VenueWallStatusKey;
13
+ floorLikeStatus: VenueWallFloorLikeStatus;
14
+ /** 标题栏右侧 5 态键,决定胶囊样式(描边/底色变体) */
15
+ headerStatusKey: VenueWallHeaderStatusKey;
16
+ /** 标题栏右侧:空闲 / 预约中 / 迟到 / 占用中 / 超时 */
17
+ headerStatusLabel: string;
18
+ /** 标题胶囊主色(迟到/超时为红,与一档强调色对齐) */
19
+ headerStatusColor: string;
20
+ /** 紫色渐变占用卡 vs 浅色强调卡 */
21
+ cardVariant: 'occupied' | 'accent';
22
+ mainColor: string;
23
+ subColor: string;
24
+ surfaceAccentColor: string;
25
+ /** 当前区一档:剩余时间 / 距开始 / 结束提示等(非布局「块」) */
26
+ primaryEmphasisLine: string;
27
+ primaryEmphasisColor: string;
28
+ /** 二档:预约时段文案 */
29
+ timeRangeLine: string;
30
+ /** 二档:联系人(「Available to Book」等占位已剥离) */
31
+ contactLine: string;
32
+ showProgress: boolean;
33
+ progress: number;
34
+ progressColor: string;
35
+ showEndingSoonMarquee: boolean;
36
+ marqueeText: string;
37
+ marqueeColor: string;
38
+ /** 跑马灯胶囊底:与 {@link primaryEmphasisColor} 同一强调色(半透明叠底) */
39
+ marqueeShellBackground: string;
40
+ };
41
+ /**
42
+ * 纯函数:三态大屏文案 + 进度 + 条件跑马灯。
43
+ * 右上角标题栏仅保留 empty/reserved/occupied;迟到/超时只出现在当前区一档主提示。
44
+ */
45
+ export declare function buildVenueWallCardPresentation(args: {
46
+ card: RecordBoardResourceWallCardModel;
47
+ toneMap: Record<VenueWallStatusKey, VenueWallStatusTone>;
48
+ wallNowMs: number;
49
+ liveRemainingMin: number;
50
+ liveRemainingPreciseMin: number;
51
+ liveStartsInMin: number;
52
+ liveLateMin: number;
53
+ boardingSoonBeforeMin: number;
54
+ idleMain: string;
55
+ idleSub: string;
56
+ occupiedCardColor: string;
57
+ availableCardColor: string;
58
+ }): VenueWallCardPresentation;
@@ -0,0 +1,64 @@
1
+ /**
2
+ * 资源墙(Venue Wall)共用工具:六态键、默认色板、倒计时文案、卡片状态推导、配色合并与 diff。
3
+ */
4
+ import type { RecordBoardResourceWallCardModel } from '../../types';
5
+ export declare type VenueWallStatusKey = 'inUse' | 'endingSoon' | 'expired' | 'available' | 'boardingSoon' | 'late';
6
+ /** 单态展示配置(与 {@link VENUE_WALL_STATUS_COLOR_MAP} 值同形) */
7
+ export declare type VenueWallStatusTone = {
8
+ key: VenueWallStatusKey;
9
+ label: string;
10
+ note: string;
11
+ color: string;
12
+ noteBg: string;
13
+ };
14
+ /** 仅覆盖部分字段;用于 Control Panel / localStorage */
15
+ export declare type VenueWallStatusToneOverrides = Partial<Record<VenueWallStatusKey, Partial<VenueWallStatusTone>>>;
16
+ /** 单外观(浅 / 深)下的占用/空闲色与六态覆盖;持久化时 light、dark 各存一份 */
17
+ export declare type VenueWallAppearanceSlot = {
18
+ occupiedCardColor?: string;
19
+ availableCardColor?: string;
20
+ statusToneOverrides?: VenueWallStatusToneOverrides;
21
+ };
22
+ export declare type VenueWallAppearanceTheme = {
23
+ light?: VenueWallAppearanceSlot;
24
+ dark?: VenueWallAppearanceSlot;
25
+ };
26
+ export declare const VENUE_WALL_STATUS_KEYS: VenueWallStatusKey[];
27
+ /**
28
+ * 六态默认色与占位英文;`getVenueWallStatusToneMap` 会将 label/note 换为 i18n,此处仅作 merge 基底。
29
+ */
30
+ export declare const VENUE_WALL_STATUS_COLOR_MAP: Record<VenueWallStatusKey, VenueWallStatusTone>;
31
+ /** 将 `#RGB` / `#RRGGBB` 转为 `rgba(...)`,供渐变与半透明底 */
32
+ export declare function alphaColor(hex: string, alpha: number): string;
33
+ /** 将数值限制在 [min, max](布局行列、主文案比例等) */
34
+ export declare const clamp: (value: number, min: number, max: number) => number;
35
+ /** 由卡片字段推导状态键(与演示页 test.tsx 规则一致) */
36
+ export declare function deriveVenueWallStatus(card: RecordBoardResourceWallCardModel): VenueWallStatusKey;
37
+ /**
38
+ * ToolBar Sort 写入的 `searchParams.sort`(如 `status:asc:string`)拆出字段名与升降序。
39
+ */
40
+ export declare function parseRecordBoardToolbarSortParam(sort: unknown): {
41
+ field: string;
42
+ dir: 'asc' | 'desc';
43
+ } | null;
44
+ /** 当 Sort 字段名匹配这些 key(忽略大小写)时,资源墙按占用态重排卡片 */
45
+ export declare const DEFAULT_RESOURCE_WALL_STATUS_SORT_FIELD_KEYS: string[];
46
+ export declare function matchesResourceWallStatusSortField(sortField: string, keys: readonly string[]): boolean;
47
+ /**
48
+ * 用于资源墙排序:占用/将结/已结束为 1,其余为 0(与 {@link deriveVenueWallStatus} 一致)。
49
+ * asc → 空闲侧在前;desc → 占用侧在前。
50
+ */
51
+ export declare function venueWallOccupiedSortRank(card: RecordBoardResourceWallCardModel): 0 | 1;
52
+ export declare function formatDurationHM(minAbs: number): string;
53
+ /**
54
+ * 将「剩余/超支分钟数」格式化为跑码条/主副标题用短文案(走 i18n 模板,负值表示 overtime)。
55
+ */
56
+ export declare function formatVenueWallCountdown(min: number): string;
57
+ /**
58
+ * 合并默认六态配色与业务覆盖,供 {@link VenueWallCard} 与 Control Panel 表单初值共用。
59
+ */
60
+ export declare function getVenueWallStatusToneMap(overrides?: VenueWallStatusToneOverrides | null): Record<VenueWallStatusKey, VenueWallStatusTone>;
61
+ /**
62
+ * 将编辑后的完整六态表压成「相对默认」的 overrides,便于持久化与 props 传递。
63
+ */
64
+ export declare function diffVenueWallStatusToneOverrides(draft: Record<VenueWallStatusKey, VenueWallStatusTone>): VenueWallStatusToneOverrides;
@@ -0,0 +1,24 @@
1
+ import React from 'react';
2
+ import type { RecordBoardFloorMapProps, RecordBoardCalendarProps, RecordBoardResourceWallProps } from '../types';
3
+ /**
4
+ * ShellFrame 解析子节点后的元信息,供 ToolBar 等判断是否需要「表格 / 平面图 / 日历」Segmented。
5
+ * 未处于 ShellFrame.Provider 内时为 undefined(如单独挂载 ToolBar)。
6
+ */
7
+ export interface RecordBoardShellBodyMeta {
8
+ /** 子组件 FloorMap props 与根级 floorMap 合并后的结果(子优先) */
9
+ effectiveFloorMapProps?: RecordBoardFloorMapProps;
10
+ /** 子组件 Calendar props 与根级 calendar 合并后的结果(子优先) */
11
+ effectiveCalendarProps?: RecordBoardCalendarProps;
12
+ /** ShellFrame 内是否存在 GridLayout / CardLayout 等非 FloorMap 子节点 */
13
+ hasGridContent: boolean;
14
+ /** 合并后是否存在可渲染的平面图配置 */
15
+ hasFloorMapSlot: boolean;
16
+ /** 合并后是否存在可渲染的日历配置 */
17
+ hasCalendarSlot: boolean;
18
+ /** 子组件 ResourceWall props 与根级 resourceWall 合并后的结果(子优先) */
19
+ effectiveResourceWallProps?: RecordBoardResourceWallProps;
20
+ /** 合并后是否存在大屏资源墙槽(根级或子节点声明即 true) */
21
+ hasResourceWallSlot: boolean;
22
+ }
23
+ export declare const RecordBoardShellBodyMetaContext: React.Context<RecordBoardShellBodyMeta | undefined>;
24
+ export declare function useRecordBoardShellBodyMeta(): RecordBoardShellBodyMeta | undefined;
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import type { RecordBoardToolBarProps as ToolBarPropsType } from '../../types';
3
+ import './ToolBarFilter.less';
4
+ import './recordBoardToolbar.less';
5
+ /**
6
+ * RecordBoard 下的工具栏:使用 PisellToolBar。
7
+ * 左侧默认 PisellFind(inline);右侧默认 PisellFilter。通过 childComponentProps.toolBar.search / toolBar.filter 为对象时透传对应组件 props,为 false 时不渲染。
8
+ * 可透传 topLeft、topRight、bottomLeft、bottomRight、tabs。
9
+ */
10
+ declare const RecordBoardToolBar: React.FC<RecordBoardToolBarProps>;
11
+ export declare type RecordBoardToolBarProps = ToolBarPropsType;
12
+ export default RecordBoardToolBar;
@@ -0,0 +1,13 @@
1
+ import type { SortItemProps } from '../../../sort/types';
2
+ import type { FilterValueType } from '../../../filter/components/FilterButton/types';
3
+ /** 与 Quick Filter 同源:优先 utils,若 utils 返回 key(未命中)则用 materials 再回退 */
4
+ export declare function getSortButtonText(): string;
5
+ /** 资源墙无状态列派生项时注入:下拉仅「状态 → 空闲优先 / 占用优先」,仍渲染排序按钮 */
6
+ export declare function buildResourceWallStatusSortFallbackItem(sortConfig: unknown): SortItemProps;
7
+ export declare function getFilterButtonText(): string;
8
+ export declare function getViewGridLabel(): string;
9
+ export declare function getViewFloorMapLabel(): string;
10
+ export declare function getViewCalendarLabel(): string;
11
+ export declare function getViewResourceWallLabel(): string;
12
+ /** 筛选无值时使用的默认筛选项;业务可通过 childComponentProps.toolBar.filter.defaultFilterValue 覆盖 */
13
+ export declare function getDefaultFilterValue(): FilterValueType;
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ import type { FilterItemProps } from '../../../filter/types';
3
+ export interface ToolBarQuickFilterProps {
4
+ /** 快速筛选项列表(与 Filter 的 quickFilter 同结构),不传则从 columns 派生时由父级传入 */
5
+ filterList?: FilterItemProps[];
6
+ /** 表单字段前缀,与 PisellFilter 保持一致,默认 '' */
7
+ formFiltersPrefix?: string;
8
+ /** 表单项尺寸 */
9
+ size?: 'small' | 'middle' | 'large';
10
+ }
11
+ /**
12
+ * RecordBoard 工具栏左侧内联快速筛选:将 quickFilter 直接展示在 ToolBar 左侧,不放入 Filter 弹层。
13
+ * 与 searchParams.filter 联动,变更写入 searchParams.filter.values 并触发 onSearch。
14
+ * 启用时建议 ToolBar 对 PisellFilter 传 hiddenQuickFilter: true,仅保留高级筛选在弹层内。
15
+ */
16
+ declare const ToolBarQuickFilter: React.FC<ToolBarQuickFilterProps>;
17
+ export default ToolBarQuickFilter;
@@ -167,6 +167,9 @@ var RecordBoardShellFrame = function RecordBoardShellFrame(_ref2) {
167
167
  var showGrid = useMemo(function () {
168
168
  return hasGridContent && ctx.bodyView === 'grid';
169
169
  }, [hasGridContent, ctx.bodyView]);
170
+
171
+ /** 无限滚动时不展示底部分页(含 paginationRender 挂载点) */
172
+ var showGridPagination = showGrid && ctx.gridInfiniteScroll !== true;
170
173
  var showFloorMap = useMemo(function () {
171
174
  return hasFloorMapSlot && effectiveFloorMapProps != null && ctx.bodyView === 'floorMap';
172
175
  }, [hasFloorMapSlot, effectiveFloorMapProps, ctx.bodyView]);
@@ -259,7 +262,7 @@ var RecordBoardShellFrame = function RecordBoardShellFrame(_ref2) {
259
262
  var bodyContent = fillHeight ? /*#__PURE__*/React.createElement(React.Fragment, null, showGrid ? /*#__PURE__*/React.createElement(ScrollAreaMeasurer, {
260
263
  onHeight: (_ctx$setScrollAreaHei = ctx === null || ctx === void 0 ? void 0 : ctx.setScrollAreaHeight) !== null && _ctx$setScrollAreaHei !== void 0 ? _ctx$setScrollAreaHei : function () {},
261
264
  autoCalc: ctx === null || ctx === void 0 || (_ctx$childComponentPr = ctx.childComponentProps) === null || _ctx$childComponentPr === void 0 || (_ctx$childComponentPr = _ctx$childComponentPr.grid) === null || _ctx$childComponentPr === void 0 || (_ctx$childComponentPr = _ctx$childComponentPr.scroll) === null || _ctx$childComponentPr === void 0 ? void 0 : _ctx$childComponentPr.autoCalc
262
- }, gridChildren) : showResourceWall ? resourceWallNode : showCalendar ? calendarNode : floorMapNode, showGrid ? /*#__PURE__*/React.createElement(RecordBoardPagination, null) : null) : /*#__PURE__*/React.createElement(React.Fragment, null, showGrid ? gridChildren : showResourceWall ? resourceWallNode : showCalendar ? calendarNode : floorMapNode, showGrid ? /*#__PURE__*/React.createElement(RecordBoardPagination, null) : null);
265
+ }, gridChildren) : showResourceWall ? resourceWallNode : showCalendar ? calendarNode : floorMapNode, showGridPagination ? /*#__PURE__*/React.createElement(RecordBoardPagination, null) : null) : /*#__PURE__*/React.createElement(React.Fragment, null, showGrid ? gridChildren : showResourceWall ? resourceWallNode : showCalendar ? calendarNode : floorMapNode, showGridPagination ? /*#__PURE__*/React.createElement(RecordBoardPagination, null) : null);
263
266
  var shellStyle = fillHeight && style ? _objectSpread(_objectSpread({}, style), FILL_HEIGHT_WRAPPER_STYLE) : fillHeight ? FILL_HEIGHT_WRAPPER_STYLE : style;
264
267
  var wrapper = /*#__PURE__*/React.createElement(RecordBoardShellBodyMetaContext.Provider, {
265
268
  value: shellBodyMeta