@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,529 @@
1
+ declare const _default: {
2
+ 'pisell-tabbar-expand': string;
3
+ 'pisell-tabbar-minimize': string;
4
+ 'pisell-tabbar-all': string;
5
+ 'table-filter-search': string;
6
+ 'table-filter-clear': string;
7
+ 'table-filter-filter': string;
8
+ 'table-filter-min': string;
9
+ 'table-filter-max': string;
10
+ 'table-pagination-previous': string;
11
+ 'table-pagination-next': string;
12
+ 'table-pagination-total': (current: string, total: string) => string;
13
+ 'select-dropdown-render-select-all': string;
14
+ 'select-dropdown-render-search': string;
15
+ 'sort-button-text': string;
16
+ 'sort-oldest-to-newest': string;
17
+ 'sort-newest-to-oldest': string;
18
+ 'sort-a-z': string;
19
+ 'sort-z-a': string;
20
+ 'sort-from-morning-to-night': string;
21
+ 'sort-from-evening-to-morning': string;
22
+ 'sort-0-9': string;
23
+ 'sort-9-0': string;
24
+ 'table-action-filter-button': string;
25
+ 'table-action-filter-quick-filter': string;
26
+ 'table-action-filter-quick-filter-tip': (count: number) => string;
27
+ 'table-action-filter-other-filter': string;
28
+ 'table-action-filter-other-filter-tip': () => string;
29
+ 'table-action-group-by-title': string;
30
+ 'table-action-group-by-title-tip': string;
31
+ 'table-action-column-title': string;
32
+ 'table-column-group-records': string;
33
+ 'table-column-group-lock-tip': string;
34
+ 'record-board-uniform-summary-empty': string;
35
+ 'record-board-uniform-summary-same': string;
36
+ 'record-board-infinite-scroll-loading-more': string;
37
+ 'record-board-infinite-scroll-all-loaded': string;
38
+ 'record-board-infinite-scroll-pull-hint': string;
39
+ 'table-column-drag-sort-disabled-tip': string;
40
+ 'table-action-filter-no-filter': string;
41
+ 'table-action-range-picker-presets-today': string;
42
+ 'table-action-range-picker-presets-yesterday': string;
43
+ 'table-action-range-picker-presets-last-3-day': string;
44
+ 'table-action-range-picker-presets-last-7-day': string;
45
+ 'table-action-range-picker-presets-last-14-day': string;
46
+ 'table-action-range-picker-presets-last-30-day': string;
47
+ 'table-action-range-picker-presets-last-90-day': string;
48
+ 'virtual-keyboard-time-now': string;
49
+ 'virtual-keyboard-time-ok': string;
50
+ 'batch-editor-batch-edit': string;
51
+ 'batch-editor-actions': string;
52
+ 'batch-editor-remove': string;
53
+ 'batch-editor-price': string;
54
+ 'batch-editor-cancel': string;
55
+ 'batch-editor-search': string;
56
+ 'batch-editor-confirm': string;
57
+ 'batch-editor-batch-remove': string;
58
+ 'batch-editor-quick-edit': string;
59
+ 'batch-editor-what-price': string;
60
+ 'batch-editor-quick-edit-title': (product: string, num: string) => string;
61
+ 'batch-editor-quick-edit-title-2': (product: string) => string;
62
+ 'table-action-export-import-export-success': string;
63
+ 'table-action-export-import-button': string;
64
+ 'table-action-export-import-export-range': string;
65
+ 'table-action-export-import-current-page': string;
66
+ 'table-action-export-import-all-records': string;
67
+ 'table-action-export-import-selected-records': string;
68
+ 'table-action-export-import-selected': string;
69
+ 'table-action-export-import-item': (length: number) => string;
70
+ 'table-action-export-import-product': string;
71
+ 'table-action-export-import-table-text-input-title': string;
72
+ 'table-action-export-import-table-text-input-describe': string;
73
+ 'table-action-export-import-table-error-file': string;
74
+ 'table-action-export-import-import-success': string;
75
+ 'table-action-export-import-import-phone': string;
76
+ 'table-action-export-import-table-success-download': string;
77
+ 'table-action-export-import-table-textimport-product': string;
78
+ 'table-action-export-import-table-text-product-template': string;
79
+ 'table-action-export-import-table-text-click-download': string;
80
+ 'table-action-export-import-table-text-edit-file': string;
81
+ 'table-action-export-import-button-import': string;
82
+ 'table-action-export-import-cancel': string;
83
+ 'table-action-export-import-file-completed': string;
84
+ 'table-action-export-import-file-processing': string;
85
+ 'table-action-export-import-file-pending': string;
86
+ 'table-action-export-import-file-refresh': string;
87
+ 'table-action-export-import-export-title': string;
88
+ 'table-action-export-import-file-hint': string;
89
+ 'table-action-export-import-file-name': string;
90
+ 'table-action-export-import-file-content': string;
91
+ 'table-action-export-import-file-content-all': string;
92
+ 'table-action-export-import-file-content-part': string;
93
+ 'table-action-export-import-file-status': string;
94
+ 'table-action-export-import-file-account': string;
95
+ 'table-action-export-import-file-created': string;
96
+ 'table-action-export-import-file-record': (length: number) => string;
97
+ 'table-action-export-import-import-title': string;
98
+ 'table-action-export-import-log-hint': string;
99
+ 'table-action-export-import-log-name': string;
100
+ 'table-action-export-import-log-result': string;
101
+ 'table-action-export-import-log-ok': (num: number) => string;
102
+ 'table-action-export-import-log-err': (num: number) => string;
103
+ 'table-action-export-import-log-check': string;
104
+ 'table-action-export-import-log-detail-title': string;
105
+ 'table-action-export-import-log-err-log': string;
106
+ 'table-action-export-import-log-copy': string;
107
+ 'table-action-export-import-table-success-copy': string;
108
+ 'drag-sort-tree-unavailable-today-tip': string;
109
+ 'date-picker-today': string;
110
+ 'date-picker-yesterday': string;
111
+ 'date-picker-tomorrow': string;
112
+ 'date-picker-next_monday': string;
113
+ 'date-picker-last_friday': string;
114
+ 'date-picker-first_day_of_this_month': string;
115
+ 'date-picker-last_day_of_this_month': string;
116
+ 'date-picker-first_day_of_next_month': string;
117
+ 'date-picker-last_day_of_last_month': string;
118
+ 'date-picker-invalid-date': string;
119
+ 'date-picker-apply': string;
120
+ 'date-picker-shortcut-custom': string;
121
+ 'pisell-input-copy-success': string;
122
+ 'pisell-input-copy': string;
123
+ 'pisell-empty-description-no-data': string;
124
+ 'pisell-information-entry-input-search': string;
125
+ 'pisell-information-entry-input-confirm': string;
126
+ 'pisell-information-entry-scan-exit': string;
127
+ 'pisell-wallet-pass-card-detail': string;
128
+ 'pisell-wallet-pass-card-edit': string;
129
+ 'pisell-wallet-pass-card-name': string;
130
+ 'pisell-wallet-pass-card-store-name': string;
131
+ 'pisell-wallet-pass-card-balance': string;
132
+ 'pisell-wallet-pass-card-redeem': string;
133
+ 'pisell-wallet-pass-card-code': string;
134
+ 'pisell-wallet-pass-card-valid-to': string;
135
+ 'pisell-wallet-pass-card-valid': string;
136
+ 'pisell-wallet-pass-card-confirm': string;
137
+ 'pisell-wallet-pass-card-cancel': string;
138
+ 'pisell-wallet-pass-card-required': string;
139
+ 'pisell-wallet-pass-card-expireDate': string;
140
+ 'pisell-adjust-price-price-override': string;
141
+ 'pisell-adjust-price-discount': string;
142
+ 'pisell-adjust-price-discount-amount': string;
143
+ 'pisell-adjust-price-discount-percentage': string;
144
+ 'pisell-adjust-price-total-after-discount': string;
145
+ 'pisell-adjust-price-discount-can-be-maximum': string;
146
+ 'pisell-discount-card-title': string;
147
+ 'pisell-discount-card-unit': string;
148
+ 'pisell-discount-card-fixed-amount-prefix': string;
149
+ 'pisell-data-source-table-add': string;
150
+ 'pisell-data-source-table-edit': string;
151
+ 'pisell-data-source-table-detail': string;
152
+ 'pisell-data-source-table-delete': string;
153
+ 'pisell-record-view-available': string;
154
+ 'pisell-record-view-unavailable': string;
155
+ 'pisell-data-source-form-required-message': string;
156
+ 'pisell-data-source-form-email-message': string;
157
+ 'pisell-data-source-form-domain-message': string;
158
+ 'pisell-data-source-form-url-message': string;
159
+ 'pisell-data-source-form-phone-message': string;
160
+ 'pisell-data-source-form-min-length-message': (minLength: number) => string;
161
+ 'pisell-data-source-form-max-length-message': (maxLength: number) => string;
162
+ 'pisell-data-source-form-min-value-message': (minValue: number) => string;
163
+ 'pisell-data-source-form-max-value-message': (maxValue: number) => string;
164
+ 'pisell-data-source-form-mobile-message': string;
165
+ 'pisell-data-source-form-pattern-message': string;
166
+ 'pisell-number-format-thousand': string;
167
+ 'pisell-number-format-million': string;
168
+ 'pisell-number-format-billion': string;
169
+ 'walletCard-done': string;
170
+ 'walletCard-qrcode': string;
171
+ 'walletCard-barcode': string;
172
+ 'walletCard-viewPin': string;
173
+ 'pisell-upload-button': string;
174
+ 'pisell-upload-setting-size-error': (maxSize: number) => string;
175
+ 'pisell-upload-setting-type-error': (type: string) => string;
176
+ 'pisell-upload-count-error': (count: number) => string;
177
+ 'pisell-upload-error': (name: string) => string;
178
+ 'pisell-upload-multilingual-title': string;
179
+ 'pisell-upload-multilingual-item-title-original': string;
180
+ 'pisell-upload-multilingual-item-title-en': string;
181
+ 'pisell-upload-multilingual-item-title-zh-CN': string;
182
+ 'pisell-upload-multilingual-item-title-zh-HK': string;
183
+ 'pisell-color-picker-default': string;
184
+ 'pisell-action-get-data': string;
185
+ 'pisell-action-delete-success': string;
186
+ 'pisell-action-delete-failed': string;
187
+ 'walletCard-point': string;
188
+ 'walletCard-rechargeable': string;
189
+ 'walletCard-voucher': string;
190
+ 'walletCard-discount': string;
191
+ 'pisellQrcode-done': string;
192
+ 'pisellQrcode-qrcode': string;
193
+ 'pisell-delete-confirm-title': string;
194
+ 'pisell-delete-confirm-content': string;
195
+ 'pisell-delete-confirm-ok': string;
196
+ 'pisell-delete-confirm-cancel': string;
197
+ 'pisell-design-mode-action-disabled': string;
198
+ 'pisell-translation-original': string;
199
+ 'pisell-version-modal-title': string;
200
+ 'pisell-version-modal-current-version': string;
201
+ 'pisell-version-modal-version': string;
202
+ 'pisell-version-modal-update-notes': string;
203
+ 'pisell-version-modal-patch': string;
204
+ 'pisell-version-modal-minor': string;
205
+ 'pisell-version-modal-major': string;
206
+ 'pisell-version-modal-custom': string;
207
+ 'pisell-version-modal-cancel': string;
208
+ 'pisell-version-modal-confirm': string;
209
+ 'pisell-version-modal-describe-update-notes': string;
210
+ 'pisell-version-modal-version-error': string;
211
+ 'pisell-version-modal-version-required': string;
212
+ 'pisell-version-modal-based-on-version': string;
213
+ 'subdomain-error-too-short': string;
214
+ 'subdomain-error-too-long': string;
215
+ 'subdomain-error-pattern': string;
216
+ 'subdomain-error-numbers-only': string;
217
+ 'subdomain-error-hyphen-ends': string;
218
+ 'subdomain-error-consecutive-hyphens': string;
219
+ 'subdomain-error-required': string;
220
+ 'pisell-icon-select-outlined': string;
221
+ 'pisell-icon-select-filled': string;
222
+ 'pisell-icon-select-two-tone': string;
223
+ 'pisell-icon-select-iconfont': string;
224
+ 'pisell-icon-select-search': string;
225
+ 'pisell-icon-select-select': string;
226
+ 'pisell-lowcode-app-version-control-live': string;
227
+ 'pisell-lowcode-app-version-control-draft': string;
228
+ 'pisell-lowcode-app-version-control-deprecated': string;
229
+ 'pisell-lowcode-app-version-control-new-version': string;
230
+ 'pisell-lowcode-app-version-control-promote-to-live': string;
231
+ 'pisell-lowcode-app-version-control-promote-version': (version: string) => string;
232
+ 'pisell-lowcode-app-version-control-promote-version-describe': string;
233
+ 'pisell-lowcode-app-version-control-promote-version-ok': string;
234
+ 'pisell-lowcode-app-version-control-promote-version-cancel': string;
235
+ 'pisell-lowcode-app-version-control-version-exists': string;
236
+ 'pisell-lowcode-drop-sort-add': string;
237
+ 'pisell-lowcode-navigation-menu-add-sub-menu': string;
238
+ 'pisell-lowcode-navigation-menu-add-page': string;
239
+ 'pisell-lowcode-navigation-menu-add-page-tip': string;
240
+ 'pisell-lowcode-navigation-menu-tag-base': string;
241
+ 'pisell-lowcode-navigation-menu-tag-proCode': string;
242
+ 'pisell-lowcode-navigation-menu-tag-pisell1': string;
243
+ 'pisell-lowcode-navigation-menu-tag-group': string;
244
+ 'pisell-lowcode-navigation-menu-tag-sub-menu': string;
245
+ 'pisell-lowcode-navigation-menu-tag-custom': string;
246
+ 'pisell-data-source-form-app-identifier-pattern': string;
247
+ 'pisell-data-source-form-app-identifier-start-with-letter': string;
248
+ 'pisell-group-permissions-rule-required': string;
249
+ 'pisell-group-permissions-rule-limit': string;
250
+ 'pisell-data-source-form-app-identifier-letters-only': string;
251
+ 'pisell-data-source-form-app-identifier-alphanumeric': string;
252
+ 'pisell-data-source-form-app-identifier-special-ends': string;
253
+ 'pisell-data-source-form-app-identifier-consecutive-special': string;
254
+ 'qrscanner-loading': string;
255
+ 'qrscanner-success': string;
256
+ 'qrscanner-success-qrcode': string;
257
+ 'qrscanner-success-barcode': string;
258
+ 'qrscanner-error-upload-image': string;
259
+ 'qrscanner-error-load-failed': string;
260
+ 'qrscanner-error-no-code': string;
261
+ 'qrscanner-error-camera-init': string;
262
+ 'qrscanner-error-process-image': string;
263
+ 'pisell-login-and-register-title': string;
264
+ 'pisell-login-and-register-subtitle': string;
265
+ 'pisell-login-and-register-email-label': string;
266
+ 'pisell-login-and-register-email-placeholder': string;
267
+ 'pisell-login-and-register-password-label': string;
268
+ 'pisell-login-and-register-password-placeholder': string;
269
+ 'pisell-login-and-register-email-error': string;
270
+ 'pisell-login-and-register-email-error-valid': string;
271
+ 'pisell-login-and-register-password-error': string;
272
+ 'pisell-login-and-register-login': string;
273
+ 'pisell-login-and-register-google': string;
274
+ 'pisell-login-and-register-facebook': string;
275
+ 'pisell-login-and-register-apple': string;
276
+ 'pisell-login-and-register-sign-up': string;
277
+ 'pisell-login-and-register-login-tab': string;
278
+ 'pisell-login-and-register-register-tab': string;
279
+ 'pisell-login-and-register-register-email-placeholder': string;
280
+ 'pisell-login-and-register-register-password-placeholder': string;
281
+ 'pisell-login-and-register-register-button-text': string;
282
+ 'pisell-login-and-register-remember-me': string;
283
+ 'pisell-login-and-register-forgot-password': string;
284
+ 'pisell2.text.goodpass.product-vouchers': string;
285
+ 'pisell2.text.goodpass.last-settlement': string;
286
+ 'pisell2.text.goodpass.view-more': string;
287
+ 'pisell2.text.goodpass.save': string;
288
+ 'pisell-wallet-pass-card-status-used': string;
289
+ 'pisell-wallet-pass-card-status-expired': string;
290
+ 'pisell-wallet-pass-card-status-disabled': string;
291
+ 'pisell-wallet-pass-card-status-conflict': string;
292
+ 'pisell-wallet-pass-card-status-lastPayment': string;
293
+ 'pisell-wallet-pass-card-reset': string;
294
+ 'pisell-wallet-pass-card-done': string;
295
+ 'pisell2.wallet-card.add-holder-tip': string;
296
+ 'pisell2.wallet-card.add-holder-button-text': string;
297
+ 'pisell-camera-no-camera-accessible': string;
298
+ 'pisell-camera-permission-denied': string;
299
+ 'pisell-camera-switch-camera': string;
300
+ 'pisell-camera-canvas': string;
301
+ 'pisell-camera-checking': string;
302
+ 'pisell-camera-no-camera-desc': string;
303
+ 'pisell-upload-camera-local-files': string;
304
+ 'pisell-upload-camera-capture': string;
305
+ 'pisell-upload-camera-retake': string;
306
+ 'pisell-upload-camera-use': string;
307
+ 'pisell-list-tab-group-default': string;
308
+ 'pisell-list-empty-text-default': string;
309
+ 'pisell-list-load-more': string;
310
+ 'pisell-list-view-less': string;
311
+ 'pisell-list-pagination-total': (start: number, end: number, total: number) => string;
312
+ 'pisell-list-scroll-down': string;
313
+ 'pisell-list-scroll-right': string;
314
+ 'pisell-list-pagination-page-of': (current: number, total: number) => string;
315
+ 'pisell-list-pagination-previous': string;
316
+ 'pisell-list-pagination-next': string;
317
+ 'pisell-lookup-placeholder': string;
318
+ 'pisell-lookup-button-text': string;
319
+ 'pisell-lookup-confirm-button-text': string;
320
+ 'pisell-lookup-clear': string;
321
+ 'pisell-lookup-close': string;
322
+ 'pisell-lookup-search-history': string;
323
+ 'pisell-lookup-clear-history': string;
324
+ 'pisell-lookup-suggestions': string;
325
+ 'pisell-lookup-popular-search': string;
326
+ 'pisell-lookup-loading': string;
327
+ 'pisell-lookup-no-data': string;
328
+ 'pisell-find-button-text': string;
329
+ 'pisell-find-placeholder': string;
330
+ 'batch-action-bar-select-all': string;
331
+ 'batch-action-bar-invert': string;
332
+ 'batch-action-bar-clear': string;
333
+ 'batch-action-bar-delete': string;
334
+ 'batch-action-bar-more': string;
335
+ 'batch-action-bar-selected-count': (count: number) => string;
336
+ 'batch-action-bar-confirm-title': string;
337
+ 'batch-action-bar-delete-confirm-title': string;
338
+ 'batch-action-bar-delete-confirm-content': (count: number) => string;
339
+ 'batch-action-bar-delete-confirm-ok': string;
340
+ 'batch-action-bar-delete-confirm-cancel': string;
341
+ 'pisell-procedure-header-back-confirm-title': string;
342
+ 'pisell-procedure-header-back-confirm-desc': string;
343
+ 'pisell-procedure-header-back-confirm-no': string;
344
+ 'pisell-procedure-header-back-confirm-yes': string;
345
+ 'pisell-procedure-header-close-confirm-title': string;
346
+ 'pisell-procedure-header-close-confirm-desc': string;
347
+ 'pisell-procedure-header-close-confirm-no': string;
348
+ 'pisell-procedure-header-close-confirm-yes': string;
349
+ 'pisell-procedure-footer-more': string;
350
+ 'pisell2.recordBoard.toolbar.find': string;
351
+ 'pisell2.recordBoard.toolbar.findPlaceholder': string;
352
+ 'pisell2.recordBoard.toolbar.sort': string;
353
+ 'pisell2.recordBoard.toolbar.sortStatus': string;
354
+ 'pisell2.recordBoard.toolbar.sortStatusFreeFirst': string;
355
+ 'pisell2.recordBoard.toolbar.sortStatusOccupiedFirst': string;
356
+ 'pisell2.recordBoard.toolbar.filter': string;
357
+ 'pisell2.recordBoard.toolbar.reset': string;
358
+ 'pisell2.recordBoard.toolbar.viewGrid': string;
359
+ 'pisell2.recordBoard.toolbar.viewFloorMap': string;
360
+ 'pisell2.recordBoard.toolbar.viewCalendar': string;
361
+ 'pisell2.recordBoard.toolbar.viewResourceWall': string;
362
+ 'pisell2.recordBoard.toolbar.columnSetting': string;
363
+ 'pisell2.recordBoard.toolbar.moreSettings': string;
364
+ 'pisell2.recordBoard.calendar.common.close': string;
365
+ 'pisell2.recordBoard.calendar.common.cancel': string;
366
+ 'pisell2.recordBoard.calendar.common.save': string;
367
+ 'pisell2.recordBoard.calendar.common.saving': string;
368
+ 'pisell2.recordBoard.calendar.common.resourceFallback': string;
369
+ 'pisell2.recordBoard.calendar.common.newBookingName': string;
370
+ 'pisell2.recordBoard.calendar.weekday.mon': string;
371
+ 'pisell2.recordBoard.calendar.weekday.tue': string;
372
+ 'pisell2.recordBoard.calendar.weekday.wed': string;
373
+ 'pisell2.recordBoard.calendar.weekday.thu': string;
374
+ 'pisell2.recordBoard.calendar.weekday.fri': string;
375
+ 'pisell2.recordBoard.calendar.weekday.sat': string;
376
+ 'pisell2.recordBoard.calendar.weekday.sun': string;
377
+ 'pisell2.recordBoard.calendar.block.panelTitle': string;
378
+ 'pisell2.recordBoard.calendar.block.defaultTitle': string;
379
+ 'pisell2.recordBoard.calendar.block.fieldTitle': string;
380
+ 'pisell2.recordBoard.calendar.block.fieldNote': string;
381
+ 'pisell2.recordBoard.calendar.block.fieldResource': string;
382
+ 'pisell2.recordBoard.calendar.block.fieldTimeRange': string;
383
+ 'pisell2.recordBoard.calendar.block.placeholderTitle': string;
384
+ 'pisell2.recordBoard.calendar.block.placeholderNote': string;
385
+ 'pisell2.recordBoard.calendar.block.noResource': string;
386
+ 'pisell2.recordBoard.calendar.block.closeAria': string;
387
+ 'pisell2.recordBoard.calendar.block.warnSelectTime': string;
388
+ 'pisell2.recordBoard.calendar.block.warnEndAfterStart': string;
389
+ 'pisell2.recordBoard.calendar.block.warnSelectResource': string;
390
+ 'pisell2.recordBoard.calendar.overflow.bookingsForDay': string;
391
+ 'pisell2.recordBoard.calendar.overflow.listTitleBookings': string;
392
+ 'pisell2.recordBoard.calendar.overflow.listTitleAllBookings': string;
393
+ 'pisell2.recordBoard.calendar.overflow.moreCount': string;
394
+ 'pisell2.recordBoard.calendar.move.title': string;
395
+ 'pisell2.recordBoard.calendar.move.subtitle': string;
396
+ 'pisell2.recordBoard.calendar.move.customer': string;
397
+ 'pisell2.recordBoard.calendar.move.court': string;
398
+ 'pisell2.recordBoard.calendar.move.newDate': string;
399
+ 'pisell2.recordBoard.calendar.move.newStartTime': string;
400
+ 'pisell2.recordBoard.calendar.move.newEndTime': string;
401
+ 'pisell2.recordBoard.calendar.move.previousInfo': string;
402
+ 'pisell2.recordBoard.calendar.move.original': string;
403
+ 'pisell2.recordBoard.calendar.move.dropTarget': string;
404
+ 'pisell2.recordBoard.calendar.move.updated': string;
405
+ 'pisell2.recordBoard.calendar.move.confirm': string;
406
+ 'pisell2.recordBoard.calendar.move.noPhone': string;
407
+ 'pisell2.recordBoard.calendar.move.noEmail': string;
408
+ 'pisell2.recordBoard.calendar.move.courtFallback': string;
409
+ 'pisell2.recordBoard.calendar.move.slotDisabled': string;
410
+ 'pisell2.recordBoard.calendar.week.headerCourtDate': string;
411
+ 'pisell2.recordBoard.calendar.week.fullyBooked': string;
412
+ 'pisell2.recordBoard.calendar.week.available': string;
413
+ 'pisell2.recordBoard.calendar.day.outsideHours': string;
414
+ 'pisell2.recordBoard.calendar.day.selectedBlock': string;
415
+ 'pisell2.recordBoard.calendar.day.selected': string;
416
+ 'pisell2.recordBoard.calendar.day.tapToSelect': string;
417
+ 'pisell2.recordBoard.calendar.day.deselectAll': string;
418
+ 'pisell2.recordBoard.calendar.day.openSlot': string;
419
+ 'pisell2.recordBoard.calendar.day.block': string;
420
+ 'pisell2.recordBoard.calendar.day.createBooking': string;
421
+ 'pisell2.recordBoard.calendar.day.freeRatio': string;
422
+ 'pisell2.recordBoard.calendar.card.continuesNext': string;
423
+ 'pisell2.recordBoard.calendar.card.blockBy': string;
424
+ 'pisell2.recordBoard.calendar.card.lateMinutesBadge': string;
425
+ 'pisell2.recordBoard.calendar.card.lateMinutesDetail': string;
426
+ 'pisell2.recordBoard.calendar.status.cancel': string;
427
+ 'pisell2.recordBoard.calendar.status.change': string;
428
+ 'pisell2.recordBoard.calendar.status.checkedIn': string;
429
+ 'pisell2.recordBoard.calendar.status.pending': string;
430
+ 'pisell2.recordBoard.calendar.status.new': string;
431
+ 'pisell2.recordBoard.calendar.status.late': string;
432
+ 'pisell2.recordBoard.calendar.status.noShow': string;
433
+ 'pisell2.recordBoard.calendar.detail.staff': string;
434
+ 'pisell2.recordBoard.calendar.detail.orderNote': string;
435
+ 'pisell-resource-wall-appearance-light': string;
436
+ 'pisell-resource-wall-appearance-dark': string;
437
+ 'pisell-resource-wall-control-open': string;
438
+ 'pisell-resource-wall-page-indicator': string;
439
+ 'pisell-resource-wall-layout-custom': string;
440
+ 'pisell-resource-wall-control-title': string;
441
+ 'pisell-resource-wall-control-cancel': string;
442
+ 'pisell-resource-wall-control-apply': string;
443
+ 'pisell-resource-wall-control-close': string;
444
+ 'pisell-resource-wall-control-eyebrow': string;
445
+ 'pisell-resource-wall-control-subtitle': string;
446
+ 'pisell-resource-wall-display-mode': string;
447
+ 'pisell-resource-wall-carousel-paging-mode': string;
448
+ 'pisell-resource-wall-summary-pagination': string;
449
+ 'pisell-resource-wall-summary-page-sec': string;
450
+ 'pisell-resource-wall-modal-select-all': string;
451
+ 'pisell-resource-wall-modal-clear-all': string;
452
+ 'pisell-resource-wall-modal-resource-hint': string;
453
+ 'pisell-resource-wall-status-table-title': string;
454
+ 'pisell-resource-wall-tab-layout': string;
455
+ 'pisell-resource-wall-tab-colors': string;
456
+ 'pisell-resource-wall-tab-status': string;
457
+ 'pisell-resource-wall-resources-section': string;
458
+ 'pisell-resource-wall-select-all': string;
459
+ 'pisell-resource-wall-clear-selection': string;
460
+ 'pisell-resource-wall-max-selection': string;
461
+ 'pisell-resource-wall-layout-preset': string;
462
+ 'pisell-resource-wall-page-duration': string;
463
+ 'pisell-resource-wall-custom-cols': string;
464
+ 'pisell-resource-wall-custom-rows': string;
465
+ 'pisell-resource-wall-occupied-color': string;
466
+ 'pisell-resource-wall-available-color': string;
467
+ 'pisell-resource-wall-boarding-soon-min': string;
468
+ 'pisell-resource-wall-status-col-key': string;
469
+ 'pisell-resource-wall-status-col-label': string;
470
+ 'pisell-resource-wall-status-col-note': string;
471
+ 'pisell-resource-wall-status-col-color': string;
472
+ 'pisell-resource-wall-status-col-notebg': string;
473
+ 'pisell-resource-wall-carousel-dwell-sec-label': string;
474
+ 'pisell-resource-wall-layout-placeholder': string;
475
+ 'pisell-resource-wall-layout-field-label': string;
476
+ 'pisell-resource-wall-panel-custom-cols': string;
477
+ 'pisell-resource-wall-panel-custom-rows': string;
478
+ 'pisell-resource-wall-hero-width-ratio': string;
479
+ 'pisell-resource-wall-hero-width-hint': string;
480
+ 'pisell-resource-wall-hero-benchmark-placeholder': string;
481
+ 'pisell-resource-wall-hero-benchmark-sample': string;
482
+ 'pisell-resource-wall-resources-select-with-count': string;
483
+ 'pisell-resource-wall-resources-capacity-carousel-hint': string;
484
+ 'pisell-resource-wall-occupied-card-color-label': string;
485
+ 'pisell-resource-wall-available-card-color-label': string;
486
+ 'pisell-resource-wall-status-col-explain': string;
487
+ 'pisell-resource-wall-carousel-countdown-line': string;
488
+ 'pisell-resource-wall-countdown-overtime': string;
489
+ 'pisell-resource-wall-countdown-ending-now': string;
490
+ 'pisell-resource-wall-countdown-left': string;
491
+ 'pisell-resource-wall-countdown-zero-overtime': string;
492
+ 'pisell-resource-wall-fullscreen-enter': string;
493
+ 'pisell-resource-wall-fullscreen-exit': string;
494
+ 'pisell-resource-wall-card-hero-available': string;
495
+ 'pisell-resource-wall-card-label-current': string;
496
+ 'pisell-resource-wall-card-label-next': string;
497
+ 'pisell-resource-wall-card-next-line': string;
498
+ 'pisell-resource-wall-card-starts-in': string;
499
+ 'pisell-resource-wall-card-late': string;
500
+ 'pisell-resource-wall-card-current-not-in-use': string;
501
+ 'pisell-resource-wall-floor-status-empty': string;
502
+ 'pisell-resource-wall-floor-status-reserved': string;
503
+ 'pisell-resource-wall-floor-status-late': string;
504
+ 'pisell-resource-wall-floor-status-occupied': string;
505
+ 'pisell-resource-wall-floor-status-expired': string;
506
+ 'pisell-resource-wall-marquee-ending-soon': string;
507
+ 'pisell-resource-wall-card-session-complete': string;
508
+ 'pisell-resource-wall-card-check-in-prompt': string;
509
+ 'pisell-resource-wall-status-id-inUse': string;
510
+ 'pisell-resource-wall-status-id-endingSoon': string;
511
+ 'pisell-resource-wall-status-id-expired': string;
512
+ 'pisell-resource-wall-status-id-available': string;
513
+ 'pisell-resource-wall-status-id-boardingSoon': string;
514
+ 'pisell-resource-wall-status-id-late': string;
515
+ 'pisell-resource-wall-tone-inUse-label': string;
516
+ 'pisell-resource-wall-tone-inUse-note': string;
517
+ 'pisell-resource-wall-tone-endingSoon-label': string;
518
+ 'pisell-resource-wall-tone-endingSoon-note': string;
519
+ 'pisell-resource-wall-tone-expired-label': string;
520
+ 'pisell-resource-wall-tone-expired-note': string;
521
+ 'pisell-resource-wall-tone-available-label': string;
522
+ 'pisell-resource-wall-tone-available-note': string;
523
+ 'pisell-resource-wall-tone-boardingSoon-label': string;
524
+ 'pisell-resource-wall-tone-boardingSoon-note': string;
525
+ 'pisell-resource-wall-tone-late-label': string;
526
+ 'pisell-resource-wall-tone-late-note': string;
527
+ 'pisell2.recordBoard.filter.placeholderEnter': string;
528
+ };
529
+ export default _default;
package/lib/locales/ja.js CHANGED
@@ -57,6 +57,9 @@ var ja_default = {
57
57
  "table-column-group-lock-tip": "固定列は順序を変更できません",
58
58
  "record-board-uniform-summary-empty": "-",
59
59
  "record-board-uniform-summary-same": "同一",
60
+ "record-board-infinite-scroll-loading-more": "読み込み中…",
61
+ "record-board-infinite-scroll-all-loaded": "すべて読み込み済み",
62
+ "record-board-infinite-scroll-pull-hint": "下にスクロールしてさらに読み込む",
60
63
  "table-column-drag-sort-disabled-tip": "自動並び替えが有効になっているため、手動ドラッグは無効です。",
61
64
  "table-action-filter-no-filter": "利用可能なフィルターオプションがありません。",
62
65
  "table-action-range-picker-presets-today": "今日",