@pisell/materials 6.11.48 → 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 (1124) 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/pisellFloorMapLayout/PisellFloorMapLayout.d.ts +13 -0
  12. package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.js +3 -1
  13. package/es/components/pisellFloorMapLayout/components/FigmaTableCard.d.ts +39 -0
  14. package/es/components/pisellFloorMapLayout/components/FloorMapEditPanel.d.ts +11 -0
  15. package/es/components/pisellFloorMapLayout/components/FloorMapEditTopBar.d.ts +60 -0
  16. package/es/components/pisellFloorMapLayout/components/FloorMapToolbar.d.ts +35 -0
  17. package/es/components/pisellFloorMapLayout/components/ItemLayer.d.ts +57 -0
  18. package/es/components/pisellFloorMapLayout/components/ItemLayer.js +9 -4
  19. package/es/components/pisellFloorMapLayout/components/ItemLayer.less +9 -2
  20. package/es/components/pisellFloorMapLayout/components/ViewControls.d.ts +55 -0
  21. package/es/components/pisellFloorMapLayout/components/ViewControlsWithZoom.d.ts +25 -0
  22. package/es/components/pisellFloorMapLayout/hooks/useFloorMapEditState.d.ts +71 -0
  23. package/es/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.d.ts +89 -0
  24. package/es/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.js +74 -23
  25. package/es/components/pisellFloorMapLayout/index.d.ts +26 -0
  26. package/es/components/pisellFloorMapLayout/types.d.ts +646 -0
  27. package/es/components/pisellRecordBoard/PisellRecordBoard.d.ts +9 -0
  28. package/es/components/pisellRecordBoard/PisellRecordBoard.js +14 -6
  29. package/es/components/pisellRecordBoard/layouts/GridLayout/Grid.js +193 -9
  30. package/es/components/pisellRecordBoard/layouts/GridLayout/Grid.less +31 -0
  31. package/es/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendar.js +3 -0
  32. package/es/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendar.less +9 -0
  33. package/es/components/pisellRecordBoard/shellFrame/Calendar/const/bookingCalendarConstants.js +4 -2
  34. package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarDayView.js +26 -10
  35. package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarMonthView.js +16 -8
  36. package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarWeekView.js +20 -31
  37. package/es/components/pisellRecordBoard/shellFrame/ColumnSetting/index.d.ts +8 -0
  38. package/es/components/pisellRecordBoard/shellFrame/Pagination/index.d.ts +14 -0
  39. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/VenueWallCard.less +7 -3
  40. package/es/components/pisellRecordBoard/shellFrame/ToolBar/index.d.ts +12 -0
  41. package/es/components/pisellRecordBoard/shellFrame/ToolBar/recordBoardToolBarI18n.d.ts +13 -0
  42. package/es/components/pisellRecordBoard/shellFrame/ToolBarQuickFilter/index.d.ts +17 -0
  43. package/es/components/pisellRecordBoard/shellFrame/index.d.ts +30 -0
  44. package/es/components/pisellRecordBoard/shellFrame/index.js +4 -1
  45. package/es/components/pisellRecordBoard/types.d.ts +798 -0
  46. package/es/components/pisellTimeNavigator/PisellTimeNavigator.d.ts +10 -0
  47. package/es/components/pisellTimeNavigator/PisellTimeNavigator.js +13 -1
  48. package/es/index.d.ts +265 -0
  49. package/es/locales/en-US.d.ts +560 -0
  50. package/es/locales/en-US.js +5 -2
  51. package/es/locales/ja.d.ts +529 -0
  52. package/es/locales/ja.js +3 -0
  53. package/es/locales/pt.d.ts +529 -0
  54. package/es/locales/pt.js +3 -0
  55. package/es/locales/zh-CN.d.ts +555 -0
  56. package/es/locales/zh-CN.js +5 -2
  57. package/es/locales/zh-TW.d.ts +555 -0
  58. package/es/locales/zh-TW.js +5 -2
  59. package/es/pisell-materials.tw.css +1 -1
  60. package/lib/components/Pagination/index.d.ts +2 -1
  61. package/lib/components/Pagination/index.js +50 -7
  62. package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.d.ts +13 -0
  63. package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.js +3 -1
  64. package/lib/components/pisellFloorMapLayout/components/FigmaTableCard.d.ts +39 -0
  65. package/lib/components/pisellFloorMapLayout/components/FloorMapEditPanel.d.ts +11 -0
  66. package/lib/components/pisellFloorMapLayout/components/FloorMapEditTopBar.d.ts +60 -0
  67. package/lib/components/pisellFloorMapLayout/components/FloorMapToolbar.d.ts +35 -0
  68. package/lib/components/pisellFloorMapLayout/components/ItemLayer.d.ts +57 -0
  69. package/lib/components/pisellFloorMapLayout/components/ItemLayer.js +8 -3
  70. package/lib/components/pisellFloorMapLayout/components/ItemLayer.less +9 -2
  71. package/lib/components/pisellFloorMapLayout/components/ViewControls.d.ts +55 -0
  72. package/lib/components/pisellFloorMapLayout/components/ViewControlsWithZoom.d.ts +25 -0
  73. package/lib/components/pisellFloorMapLayout/hooks/useFloorMapEditState.d.ts +71 -0
  74. package/lib/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.d.ts +89 -0
  75. package/lib/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.js +53 -18
  76. package/lib/components/pisellFloorMapLayout/index.d.ts +26 -0
  77. package/lib/components/pisellFloorMapLayout/types.d.ts +646 -0
  78. package/lib/components/pisellRecordBoard/PisellRecordBoard.d.ts +9 -0
  79. package/lib/components/pisellRecordBoard/PisellRecordBoard.js +16 -6
  80. package/lib/components/pisellRecordBoard/layouts/GridLayout/Grid.js +189 -32
  81. package/lib/components/pisellRecordBoard/layouts/GridLayout/Grid.less +31 -0
  82. package/lib/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendar.js +2 -0
  83. package/lib/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendar.less +9 -0
  84. package/lib/components/pisellRecordBoard/shellFrame/Calendar/const/bookingCalendarConstants.js +2 -2
  85. package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarDayView.js +16 -7
  86. package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarMonthView.js +111 -99
  87. package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarWeekView.js +20 -13
  88. package/lib/components/pisellRecordBoard/shellFrame/ColumnSetting/index.d.ts +8 -0
  89. package/lib/components/pisellRecordBoard/shellFrame/Pagination/index.d.ts +14 -0
  90. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/VenueWallCard.less +7 -3
  91. package/lib/components/pisellRecordBoard/shellFrame/ToolBar/index.d.ts +12 -0
  92. package/lib/components/pisellRecordBoard/shellFrame/ToolBar/recordBoardToolBarI18n.d.ts +13 -0
  93. package/lib/components/pisellRecordBoard/shellFrame/ToolBarQuickFilter/index.d.ts +17 -0
  94. package/lib/components/pisellRecordBoard/shellFrame/index.d.ts +30 -0
  95. package/lib/components/pisellRecordBoard/shellFrame/index.js +2 -1
  96. package/lib/components/pisellRecordBoard/types.d.ts +798 -0
  97. package/lib/components/pisellTimeNavigator/PisellTimeNavigator.d.ts +10 -0
  98. package/lib/components/pisellTimeNavigator/PisellTimeNavigator.js +9 -1
  99. package/lib/index.d.ts +265 -0
  100. package/lib/locales/en-US.d.ts +560 -0
  101. package/lib/locales/en-US.js +4 -1
  102. package/lib/locales/ja.d.ts +529 -0
  103. package/lib/locales/ja.js +3 -0
  104. package/lib/locales/pt.d.ts +529 -0
  105. package/lib/locales/pt.js +3 -0
  106. package/lib/locales/zh-CN.d.ts +555 -0
  107. package/lib/locales/zh-CN.js +4 -1
  108. package/lib/locales/zh-TW.d.ts +555 -0
  109. package/lib/locales/zh-TW.js +4 -1
  110. package/lib/pisell-materials.tw.css +1 -1
  111. package/lowcode/pisell-record-board-calendar-view/meta.ts +1 -1
  112. package/package.json +1 -1
  113. package/es/components/PisellBasicGrid/PisellBasicGrid.d.ts +0 -9
  114. package/es/components/PisellBasicGrid/hooks/index.d.ts +0 -1
  115. package/es/components/PisellBasicGrid/hooks/useGridStyle.d.ts +0 -37
  116. package/es/components/PisellBasicGrid/index.d.ts +0 -6
  117. package/es/components/PisellBasicGrid/types.d.ts +0 -221
  118. package/es/components/PisellBasicGrid/utils/index.d.ts +0 -63
  119. package/es/components/PisellCards/PisellCards.d.ts +0 -8
  120. package/es/components/PisellCards/components/GraphicTextCard/GraphicTextCard.d.ts +0 -8
  121. package/es/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.d.ts +0 -5
  122. package/es/components/PisellCards/components/GraphicTextCard/components/GraphicArea.d.ts +0 -24
  123. package/es/components/PisellCards/components/GraphicTextCard/components/TextContent.d.ts +0 -27
  124. package/es/components/PisellCards/components/GraphicTextCard/components/index.d.ts +0 -6
  125. package/es/components/PisellCards/components/GraphicTextCard/hooks/index.d.ts +0 -5
  126. package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.d.ts +0 -15
  127. package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.d.ts +0 -18
  128. package/es/components/PisellCards/components/GraphicTextCard/index.d.ts +0 -5
  129. package/es/components/PisellCards/components/GraphicTextCard/types.d.ts +0 -290
  130. package/es/components/PisellCards/components/GraphicTextCard/utils/index.d.ts +0 -19
  131. package/es/components/PisellCards/components/MultilevelCard/MultilevelCard.d.ts +0 -19
  132. package/es/components/PisellCards/components/MultilevelCard/components/CardWrapper.d.ts +0 -7
  133. package/es/components/PisellCards/components/MultilevelCard/components/PanelWrapper.d.ts +0 -7
  134. package/es/components/PisellCards/components/MultilevelCard/components/index.d.ts +0 -2
  135. package/es/components/PisellCards/components/MultilevelCard/hooks/index.d.ts +0 -2
  136. package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.d.ts +0 -31
  137. package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.d.ts +0 -28
  138. package/es/components/PisellCards/components/MultilevelCard/index.d.ts +0 -2
  139. package/es/components/PisellCards/components/MultilevelCard/types.d.ts +0 -202
  140. package/es/components/PisellCards/components/MultilevelCard/utils/index.d.ts +0 -6
  141. package/es/components/PisellCards/components/PisellImageCard/PisellImageCard.d.ts +0 -8
  142. package/es/components/PisellCards/components/PisellImageCard/components/index.d.ts +0 -0
  143. package/es/components/PisellCards/components/PisellImageCard/hooks/index.d.ts +0 -5
  144. package/es/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.d.ts +0 -11
  145. package/es/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.d.ts +0 -10
  146. package/es/components/PisellCards/components/PisellImageCard/index.d.ts +0 -5
  147. package/es/components/PisellCards/components/PisellImageCard/types.d.ts +0 -74
  148. package/es/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.d.ts +0 -7
  149. package/es/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.d.ts +0 -7
  150. package/es/components/PisellCards/components/PisellImageCard/utils/index.d.ts +0 -5
  151. package/es/components/PisellCards/components/TabCard/TabCard.d.ts +0 -3
  152. package/es/components/PisellCards/components/TabCard/index.d.ts +0 -5
  153. package/es/components/PisellCards/components/TabCard/types.d.ts +0 -70
  154. package/es/components/PisellCards/components/TextCard/TextCard.d.ts +0 -7
  155. package/es/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +0 -26
  156. package/es/components/PisellCards/components/TextCard/components/IconWrapper.d.ts +0 -17
  157. package/es/components/PisellCards/components/TextCard/components/TextContent.d.ts +0 -21
  158. package/es/components/PisellCards/components/TextCard/components/index.d.ts +0 -6
  159. package/es/components/PisellCards/components/TextCard/hooks/index.d.ts +0 -0
  160. package/es/components/PisellCards/components/TextCard/index.d.ts +0 -5
  161. package/es/components/PisellCards/components/TextCard/types.d.ts +0 -270
  162. package/es/components/PisellCards/components/TextCard/utils/index.d.ts +0 -0
  163. package/es/components/PisellCards/components/index.d.ts +0 -10
  164. package/es/components/PisellCards/hooks/index.d.ts +0 -0
  165. package/es/components/PisellCards/index.d.ts +0 -14
  166. package/es/components/PisellCards/types.d.ts +0 -48
  167. package/es/components/PisellCards/utils/index.d.ts +0 -0
  168. package/es/components/PisellFields/index.d.ts +0 -36
  169. package/es/components/PisellMetrics/index.d.ts +0 -23
  170. package/es/components/PisellProcedure/PisellProcedure.d.ts +0 -22
  171. package/es/components/PisellProcedure/PisellProcedure.stories.d.ts +0 -163
  172. package/es/components/PisellProcedure/components/FooterActions.d.ts +0 -24
  173. package/es/components/PisellProcedure/components/ProcedureBody.d.ts +0 -41
  174. package/es/components/PisellProcedure/components/ProcedureContent.d.ts +0 -23
  175. package/es/components/PisellProcedure/components/ProcedureFooter.d.ts +0 -38
  176. package/es/components/PisellProcedure/components/ProcedureHeader.d.ts +0 -34
  177. package/es/components/PisellProcedure/components/ProcedureSidebar.d.ts +0 -38
  178. package/es/components/PisellProcedure/components/index.d.ts +0 -12
  179. package/es/components/PisellProcedure/hooks/index.d.ts +0 -8
  180. package/es/components/PisellProcedure/hooks/useElementSize.d.ts +0 -38
  181. package/es/components/PisellProcedure/hooks/useOverflowActions.d.ts +0 -43
  182. package/es/components/PisellProcedure/hooks/useResponsiveClass.d.ts +0 -6
  183. package/es/components/PisellProcedure/hooks/useSidebarHeight.d.ts +0 -16
  184. package/es/components/PisellProcedure/hooks/useStepManager.d.ts +0 -50
  185. package/es/components/PisellProcedure/index.d.ts +0 -5
  186. package/es/components/PisellProcedure/types.d.ts +0 -363
  187. package/es/components/PisellProcedure/utils/classNames.d.ts +0 -33
  188. package/es/components/PisellProcedure/utils/extractText.d.ts +0 -20
  189. package/es/components/PisellProcedure/utils/footerPosition.d.ts +0 -41
  190. package/es/components/PisellProcedure/utils/index.d.ts +0 -8
  191. package/es/components/PisellProcedure/utils/layoutRatio.d.ts +0 -42
  192. package/es/components/PisellProcedure/utils/slotHelper.d.ts +0 -27
  193. package/es/components/PisellScrollView/PisellScrollView.d.ts +0 -5
  194. package/es/components/PisellScrollView/PisellScrollView.stories.d.ts +0 -87
  195. package/es/components/PisellScrollView/components/Actions/index.d.ts +0 -12
  196. package/es/components/PisellScrollView/hooks/index.d.ts +0 -3
  197. package/es/components/PisellScrollView/hooks/useIntersection.d.ts +0 -8
  198. package/es/components/PisellScrollView/hooks/useScrollEvents.d.ts +0 -20
  199. package/es/components/PisellScrollView/hooks/useScrollState.d.ts +0 -13
  200. package/es/components/PisellScrollView/index.d.ts +0 -3
  201. package/es/components/PisellScrollView/types.d.ts +0 -203
  202. package/es/components/PisellScrollView/utils/index.d.ts +0 -0
  203. package/es/components/PisellSteps/PisellSteps.d.ts +0 -14
  204. package/es/components/PisellSteps/PisellSteps.stories.d.ts +0 -155
  205. package/es/components/PisellSteps/hooks/index.d.ts +0 -4
  206. package/es/components/PisellSteps/hooks/useAnchor.d.ts +0 -9
  207. package/es/components/PisellSteps/hooks/useResponsive.d.ts +0 -8
  208. package/es/components/PisellSteps/hooks/useStepClick.d.ts +0 -11
  209. package/es/components/PisellSteps/hooks/useStepsState.d.ts +0 -9
  210. package/es/components/PisellSteps/index.d.ts +0 -3
  211. package/es/components/PisellSteps/types.d.ts +0 -257
  212. package/es/components/PisellSteps/utils/index.d.ts +0 -54
  213. package/es/components/PisellSuperTabs/PisellSuperTabs.d.ts +0 -8
  214. package/es/components/PisellSuperTabs/components/index.d.ts +0 -0
  215. package/es/components/PisellSuperTabs/hooks/index.d.ts +0 -1
  216. package/es/components/PisellSuperTabs/hooks/useTabsState.d.ts +0 -7
  217. package/es/components/PisellSuperTabs/index.d.ts +0 -3
  218. package/es/components/PisellSuperTabs/types.d.ts +0 -212
  219. package/es/components/PisellSuperTabs/utils/getRowKey.d.ts +0 -8
  220. package/es/components/PisellSuperTabs/utils/index.d.ts +0 -1
  221. package/es/components/PisellTabbar/PisellTabbar.d.ts +0 -20
  222. package/es/components/PisellTabbar/constants.d.ts +0 -47
  223. package/es/components/PisellTabbar/hooks/index.d.ts +0 -2
  224. package/es/components/PisellTabbar/hooks/useActiveKey.d.ts +0 -55
  225. package/es/components/PisellTabbar/hooks/useExpand.d.ts +0 -42
  226. package/es/components/PisellTabbar/index.d.ts +0 -9
  227. package/es/components/PisellTabbar/locales.d.ts +0 -23
  228. package/es/components/PisellTabbar/mock.d.ts +0 -47
  229. package/es/components/PisellTabbar/template/Template1/PisellTabbar.d.ts +0 -5
  230. package/es/components/PisellTabbar/template/Template1/constants.d.ts +0 -10
  231. package/es/components/PisellTabbar/template/Template1/index.d.ts +0 -6
  232. package/es/components/PisellTabbar/template/Template1/utils/index.d.ts +0 -35
  233. package/es/components/PisellTabbar/template/index.d.ts +0 -0
  234. package/es/components/PisellTabbar/types.d.ts +0 -90
  235. package/es/components/PisellTabbar/utils/index.d.ts +0 -69
  236. package/es/components/PisellTabbar2/PisellTabbar.d.ts +0 -23
  237. package/es/components/PisellTabbar2/components/TabbarLevel.d.ts +0 -8
  238. package/es/components/PisellTabbar2/components/index.d.ts +0 -1
  239. package/es/components/PisellTabbar2/constants.d.ts +0 -46
  240. package/es/components/PisellTabbar2/hooks/index.d.ts +0 -2
  241. package/es/components/PisellTabbar2/hooks/useActiveKey.d.ts +0 -50
  242. package/es/components/PisellTabbar2/hooks/useExpand.d.ts +0 -41
  243. package/es/components/PisellTabbar2/index.d.ts +0 -6
  244. package/es/components/PisellTabbar2/locales.d.ts +0 -23
  245. package/es/components/PisellTabbar2/mock.d.ts +0 -205
  246. package/es/components/PisellTabbar2/types.d.ts +0 -117
  247. package/es/components/PisellTabbar2/utils/index.d.ts +0 -35
  248. package/es/components/PisellTabbar3/PisellTabbar.d.ts +0 -20
  249. package/es/components/PisellTabbar3/index.d.ts +0 -6
  250. package/es/components/PisellTabbar3/locales.d.ts +0 -23
  251. package/es/components/PisellTabbar3/mock.d.ts +0 -47
  252. package/es/components/PisellTabbar3/types.d.ts +0 -111
  253. package/es/components/Template/PisellSteps.d.ts +0 -0
  254. package/es/components/Template/components/index.d.ts +0 -0
  255. package/es/components/Template/hooks/index.d.ts +0 -0
  256. package/es/components/Template/index.d.ts +0 -0
  257. package/es/components/Template/types.d.ts +0 -0
  258. package/es/components/Template/utils/index.d.ts +0 -0
  259. package/es/components/cardMetricItem/index.d.ts +0 -15
  260. package/es/components/cardPro/index.d.ts +0 -4
  261. package/es/components/dataSourceComponents/dataSourceForm/BaseForm.d.ts +0 -3
  262. package/es/components/dataSourceComponents/dataSourceForm/serve.d.ts +0 -178
  263. package/es/components/dataSourceComponents/dataSourceForm/submitButton/index.d.ts +0 -39
  264. package/es/components/dataSourceComponents/dataSourceForm/type.d.ts +0 -32
  265. package/es/components/dataSourceComponents/dataSourceForm/urlUtils.d.ts +0 -24
  266. package/es/components/dataSourceComponents/dataSourceForm/utils.d.ts +0 -57
  267. package/es/components/dataSourceComponents/dataSourceSubForm/index.d.ts +0 -13
  268. package/es/components/dataSourceComponents/dataSourceSubForm/types.d.ts +0 -117
  269. package/es/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +0 -5
  270. package/es/components/dataSourceComponents/dataSourceTable/hooks/useFormat.d.ts +0 -48
  271. package/es/components/dataSourceComponents/fields/Input.Mobile/serve.d.ts +0 -26
  272. package/es/components/dataSourceComponents/fields/RecordListWrapper/ReadPretty.d.ts +0 -9
  273. package/es/components/dataSourceComponents/fields/RecordListWrapper/WithMode.d.ts +0 -4
  274. package/es/components/dataSourceComponents/fields/RecordListWrapper/index.d.ts +0 -11
  275. package/es/components/dataSourceComponents/fields/RecordListWrapper/type.d.ts +0 -87
  276. package/es/components/dataSourceComponents/fields/Tabs/ReadPretty.d.ts +0 -9
  277. package/es/components/dataSourceComponents/fields/Tabs/Tabs.d.ts +0 -23
  278. package/es/components/dataSourceComponents/fields/Tabs/WithMode.d.ts +0 -6
  279. package/es/components/dataSourceComponents/fields/Tabs/index.d.ts +0 -12
  280. package/es/components/dataSourceComponents/fields/Tabs/type.d.ts +0 -38
  281. package/es/components/dataSourceComponents/fields/Translation/BaseTranslation.d.ts +0 -5
  282. package/es/components/dataSourceComponents/fields/Translation/type.d.ts +0 -21
  283. package/es/components/dataSourceComponents/fields/index.d.ts +0 -141
  284. package/es/components/dataSourceComponents/fields/utils.d.ts +0 -3
  285. package/es/components/dataSourceComponents/hooks/useActions.d.ts +0 -18
  286. package/es/components/dataSourceComponents/hooks/useFormSettingParams.d.ts +0 -7
  287. package/es/components/dataSourceComponents/provider/variables/VariablesContext.d.ts +0 -15
  288. package/es/components/dataSourceComponents/provider/variables/VariablesProvider.d.ts +0 -4
  289. package/es/components/drag-sort-tree/TreeItem/index.d.ts +0 -19
  290. package/es/components/filter/components/Dropdown/index.d.ts +0 -9
  291. package/es/components/filter/components/Dropdown/types.d.ts +0 -13
  292. package/es/components/filter/components/FilterButton/index.d.ts +0 -4
  293. package/es/components/filter/components/FilterButton/types.d.ts +0 -24
  294. package/es/components/filter/components/FilterItem/AsyncOptionsSelectWrapper.d.ts +0 -21
  295. package/es/components/filter/types.d.ts +0 -48
  296. package/es/components/iconfont/index.d.ts +0 -8
  297. package/es/components/keyboard/index.d.ts +0 -22
  298. package/es/components/page/index.d.ts +0 -8
  299. package/es/components/pisell-config-provider/context.d.ts +0 -22
  300. package/es/components/pisell-config-provider/index.d.ts +0 -13
  301. package/es/components/pisellAdjustPrice/index.d.ts +0 -4
  302. package/es/components/pisellAdjustPrice/status.d.ts +0 -32
  303. package/es/components/pisellAdjustPrice/type.d.ts +0 -22
  304. package/es/components/pisellBatchActionBar/PisellBatchActionBar.d.ts +0 -31
  305. package/es/components/pisellBatchActionBar/index.d.ts +0 -6
  306. package/es/components/pisellBatchActionBar/types.d.ts +0 -237
  307. package/es/components/pisellCheckboxGroup/index.d.ts +0 -40
  308. package/es/components/pisellCurrency/PisellCurrency.d.ts +0 -39
  309. package/es/components/pisellCurrency/PisellCurrency.stories.d.ts +0 -56
  310. package/es/components/pisellCurrency/components/DisabledView.d.ts +0 -11
  311. package/es/components/pisellCurrency/components/EditView.d.ts +0 -18
  312. package/es/components/pisellCurrency/components/ReadOnlyView.d.ts +0 -17
  313. package/es/components/pisellCurrency/components/index.d.ts +0 -6
  314. package/es/components/pisellCurrency/index.d.ts +0 -7
  315. package/es/components/pisellCurrency/types.d.ts +0 -56
  316. package/es/components/pisellCurrency/utils/currencyFormatter.d.ts +0 -31
  317. package/es/components/pisellCurrency/utils/index.d.ts +0 -5
  318. package/es/components/pisellDataSourceContainer/PisellDataSourceContainer.d.ts +0 -3
  319. package/es/components/pisellDataSourceContainer/components/ColumnsSetting/index.d.ts +0 -28
  320. package/es/components/pisellDataSourceContainer/components/ColumnsSetting/utils.d.ts +0 -28
  321. package/es/components/pisellDataSourceContainer/components/Filter/FilterButton.d.ts +0 -7
  322. package/es/components/pisellDataSourceContainer/components/Filter/QuickFilter.d.ts +0 -10
  323. package/es/components/pisellDataSourceContainer/components/Filter/index.d.ts +0 -14
  324. package/es/components/pisellDataSourceContainer/components/Sort/index.d.ts +0 -9
  325. package/es/components/pisellDataSourceContainer/components/Table/index.d.ts +0 -9
  326. package/es/components/pisellDataSourceContainer/components/Table/useColumns.d.ts +0 -14
  327. package/es/components/pisellDataSourceContainer/hooks/useContainerContext.d.ts +0 -3
  328. package/es/components/pisellDataSourceContainer/hooks/useDataSourceKey.d.ts +0 -5
  329. package/es/components/pisellDataSourceContainer/hooks/useHandleAction.d.ts +0 -32
  330. package/es/components/pisellDataSourceContainer/index.d.ts +0 -28
  331. package/es/components/pisellDataSourceContainer/provider/ChildComponentProps.d.ts +0 -13
  332. package/es/components/pisellDataSourceContainer/provider/HandleActions.d.ts +0 -5
  333. package/es/components/pisellDataSourceContainer/provider/RefManager.d.ts +0 -9
  334. package/es/components/pisellDataSourceContainer/type.d.ts +0 -84
  335. package/es/components/pisellDataSourceContainer/utils/formatData.d.ts +0 -9
  336. package/es/components/pisellDataSourceContainer/utils/withContainer.d.ts +0 -9
  337. package/es/components/pisellDateTimeDisplay/PisellDateTimeDisplay.d.ts +0 -35
  338. package/es/components/pisellDateTimeDisplay/PisellDateTimeDisplay.stories.d.ts +0 -195
  339. package/es/components/pisellDateTimeDisplay/components/DateDisplay.d.ts +0 -48
  340. package/es/components/pisellDateTimeDisplay/components/TimeDisplay.d.ts +0 -42
  341. package/es/components/pisellDateTimeDisplay/components/WeekdayDisplay.d.ts +0 -57
  342. package/es/components/pisellDateTimeDisplay/components/index.d.ts +0 -6
  343. package/es/components/pisellDateTimeDisplay/formats/dateTimeDisplayFormats.d.ts +0 -7
  344. package/es/components/pisellDateTimeDisplay/formats/index.d.ts +0 -1
  345. package/es/components/pisellDateTimeDisplay/hooks/index.d.ts +0 -2
  346. package/es/components/pisellDateTimeDisplay/hooks/useCurrentTime.d.ts +0 -46
  347. package/es/components/pisellDateTimeDisplay/index.d.ts +0 -3
  348. package/es/components/pisellDateTimeDisplay/types.d.ts +0 -352
  349. package/es/components/pisellDateTimeDisplay/utils/formatDate.d.ts +0 -21
  350. package/es/components/pisellDateTimeDisplay/utils/formatDateOrRelative.d.ts +0 -17
  351. package/es/components/pisellDateTimeDisplay/utils/formatTime.d.ts +0 -19
  352. package/es/components/pisellDateTimeDisplay/utils/formatWeekday.d.ts +0 -30
  353. package/es/components/pisellDateTimeDisplay/utils/getRefreshInterval.d.ts +0 -18
  354. package/es/components/pisellDateTimeDisplay/utils/index.d.ts +0 -7
  355. package/es/components/pisellDateTimeDisplay/utils/localeUtils.d.ts +0 -22
  356. package/es/components/pisellDateTimeDisplay/utils/relativeDay.d.ts +0 -24
  357. package/es/components/pisellEmail/PisellEmail.d.ts +0 -37
  358. package/es/components/pisellEmail/PisellEmail.stories.d.ts +0 -116
  359. package/es/components/pisellEmail/components/DisabledView.d.ts +0 -14
  360. package/es/components/pisellEmail/components/EditView.d.ts +0 -15
  361. package/es/components/pisellEmail/components/ReadOnlyView.d.ts +0 -15
  362. package/es/components/pisellEmail/constants/emailDomains.d.ts +0 -5
  363. package/es/components/pisellEmail/constants/emailRegex.d.ts +0 -13
  364. package/es/components/pisellEmail/index.d.ts +0 -7
  365. package/es/components/pisellEmail/types.d.ts +0 -176
  366. package/es/components/pisellEmail/utils/domainSuggestions.d.ts +0 -15
  367. package/es/components/pisellEmail/utils/emailHelper.d.ts +0 -66
  368. package/es/components/pisellEmail/utils/emailValidator.d.ts +0 -45
  369. package/es/components/pisellEmail/utils/index.d.ts +0 -6
  370. package/es/components/pisellFilter/index.d.ts +0 -3
  371. package/es/components/pisellFilter/type.d.ts +0 -7
  372. package/es/components/pisellFind/PisellFind.stories.d.ts +0 -45
  373. package/es/components/pisellFind/index.d.ts +0 -40
  374. package/es/components/pisellFloorMapLayout/components/FloorMapEditQuickActions.d.ts +0 -21
  375. package/es/components/pisellFloorMapLayout/components/FloorMapImageElement.d.ts +0 -6
  376. package/es/components/pisellFloorMapLayout/hooks/useFloorMapPaletteTouchDrag.d.ts +0 -21
  377. package/es/components/pisellFloorMapLayout/shopFloorPlan/shopFloorPlanTypes.d.ts +0 -72
  378. package/es/components/pisellFloorMapLayout/utils/floorMapDataRecordLabel.d.ts +0 -8
  379. package/es/components/pisellFloorMapLayout/utils/floorMapDropUtils.d.ts +0 -27
  380. package/es/components/pisellFloorMapLayout/utils/floorMapStageDefaults.d.ts +0 -8
  381. package/es/components/pisellFloorMapLayout/utils/snap.d.ts +0 -10
  382. package/es/components/pisellGridPro/GridPro.d.ts +0 -9
  383. package/es/components/pisellGridPro/GridView/index.d.ts +0 -5
  384. package/es/components/pisellGridPro/GridView/type.d.ts +0 -3
  385. package/es/components/pisellGridPro/ToolBar/index.d.ts +0 -6
  386. package/es/components/pisellGridPro/ToolBar/type.d.ts +0 -10
  387. package/es/components/pisellGridPro/components/DataCard/components/StatCard/index.d.ts +0 -10
  388. package/es/components/pisellGridPro/components/DataCard/index.d.ts +0 -5
  389. package/es/components/pisellGridPro/components/DataCard/types.d.ts +0 -70
  390. package/es/components/pisellGridPro/components/Footer/index.d.ts +0 -9
  391. package/es/components/pisellGridPro/components/Header/index.d.ts +0 -12
  392. package/es/components/pisellGridPro/index.d.ts +0 -4
  393. package/es/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.d.ts +0 -6
  394. package/es/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.stories.d.ts +0 -10
  395. package/es/components/pisellHierarchicalSummaryList/components/Row.d.ts +0 -35
  396. package/es/components/pisellHierarchicalSummaryList/components/index.d.ts +0 -1
  397. package/es/components/pisellHierarchicalSummaryList/hooks/index.d.ts +0 -2
  398. package/es/components/pisellHierarchicalSummaryList/hooks/useExpandedKeys.d.ts +0 -15
  399. package/es/components/pisellHierarchicalSummaryList/index.d.ts +0 -5
  400. package/es/components/pisellHierarchicalSummaryList/types.d.ts +0 -248
  401. package/es/components/pisellLayout/index.d.ts +0 -14
  402. package/es/components/pisellLongText/PisellLongText.d.ts +0 -39
  403. package/es/components/pisellLongText/PisellLongText.stories.d.ts +0 -123
  404. package/es/components/pisellLongText/components/DisabledView.d.ts +0 -16
  405. package/es/components/pisellLongText/components/EditView.d.ts +0 -19
  406. package/es/components/pisellLongText/components/ReadOnlyView.d.ts +0 -18
  407. package/es/components/pisellLongText/index.d.ts +0 -7
  408. package/es/components/pisellLongText/types.d.ts +0 -147
  409. package/es/components/pisellLookup/PisellLookup.d.ts +0 -4
  410. package/es/components/pisellLookup/PisellLookup.stories.d.ts +0 -129
  411. package/es/components/pisellLookup/components/HotWords.d.ts +0 -7
  412. package/es/components/pisellLookup/components/LookupAuxiliary.d.ts +0 -7
  413. package/es/components/pisellLookup/components/LookupResultHost.d.ts +0 -7
  414. package/es/components/pisellLookup/components/LookupTrigger.d.ts +0 -3
  415. package/es/components/pisellLookup/components/SearchHistory.d.ts +0 -7
  416. package/es/components/pisellLookup/components/SuggestWords.d.ts +0 -7
  417. package/es/components/pisellLookup/components/index.d.ts +0 -9
  418. package/es/components/pisellLookup/hooks/index.d.ts +0 -6
  419. package/es/components/pisellLookup/hooks/useDebounceSearch.d.ts +0 -40
  420. package/es/components/pisellLookup/hooks/useSearchHistory.d.ts +0 -48
  421. package/es/components/pisellLookup/hooks/useSearchState.d.ts +0 -80
  422. package/es/components/pisellLookup/index.d.ts +0 -6
  423. package/es/components/pisellLookup/types.d.ts +0 -667
  424. package/es/components/pisellLookup/utils/index.d.ts +0 -5
  425. package/es/components/pisellLookup/utils/storage.d.ts +0 -42
  426. package/es/components/pisellLookup/utils/trigger.d.ts +0 -42
  427. package/es/components/pisellMetricCard/PisellMetricCard.d.ts +0 -35
  428. package/es/components/pisellMetricCard/PisellMetricCard.stories.d.ts +0 -17
  429. package/es/components/pisellMetricCard/components/MetricComparison.d.ts +0 -14
  430. package/es/components/pisellMetricCard/components/MetricTitle.d.ts +0 -12
  431. package/es/components/pisellMetricCard/components/MetricValue.d.ts +0 -12
  432. package/es/components/pisellMetricCard/components/TrendIcon.d.ts +0 -14
  433. package/es/components/pisellMetricCard/components/index.d.ts +0 -7
  434. package/es/components/pisellMetricCard/index.d.ts +0 -6
  435. package/es/components/pisellMetricCard/types.d.ts +0 -201
  436. package/es/components/pisellMetricCard/utils/calculateTrend.d.ts +0 -14
  437. package/es/components/pisellMetricCard/utils/formatMetricValue.d.ts +0 -34
  438. package/es/components/pisellMetricCard/utils/index.d.ts +0 -5
  439. package/es/components/pisellModal/index.d.ts +0 -62
  440. package/es/components/pisellMultipleSelect/PisellMultipleSelect.d.ts +0 -9
  441. package/es/components/pisellMultipleSelect/PisellMultipleSelect.stories.d.ts +0 -70
  442. package/es/components/pisellMultipleSelect/components/DisabledView.d.ts +0 -8
  443. package/es/components/pisellMultipleSelect/components/EditView.d.ts +0 -8
  444. package/es/components/pisellMultipleSelect/components/ReadOnlyView.d.ts +0 -8
  445. package/es/components/pisellMultipleSelect/index.d.ts +0 -7
  446. package/es/components/pisellMultipleSelect/types.d.ts +0 -160
  447. package/es/components/pisellNumber/PisellNumber.d.ts +0 -42
  448. package/es/components/pisellNumber/PisellNumber.stories.d.ts +0 -66
  449. package/es/components/pisellNumber/components/DisabledView.d.ts +0 -11
  450. package/es/components/pisellNumber/components/EditView.d.ts +0 -18
  451. package/es/components/pisellNumber/components/ReadOnlyView.d.ts +0 -16
  452. package/es/components/pisellNumber/components/index.d.ts +0 -6
  453. package/es/components/pisellNumber/index.d.ts +0 -7
  454. package/es/components/pisellNumber/types.d.ts +0 -168
  455. package/es/components/pisellPercent/PisellPercent.d.ts +0 -38
  456. package/es/components/pisellPercent/PisellPercent.stories.d.ts +0 -52
  457. package/es/components/pisellPercent/components/DisabledView.d.ts +0 -11
  458. package/es/components/pisellPercent/components/EditView.d.ts +0 -17
  459. package/es/components/pisellPercent/components/ReadOnlyView.d.ts +0 -14
  460. package/es/components/pisellPercent/components/index.d.ts +0 -6
  461. package/es/components/pisellPercent/index.d.ts +0 -7
  462. package/es/components/pisellPercent/types.d.ts +0 -68
  463. package/es/components/pisellPercent/utils/index.d.ts +0 -6
  464. package/es/components/pisellPercent/utils/percentFormatter.d.ts +0 -27
  465. package/es/components/pisellPercent/utils/rangeConverter.d.ts +0 -36
  466. package/es/components/pisellPhone/PisellPhone.d.ts +0 -36
  467. package/es/components/pisellPhone/PisellPhone.stories.d.ts +0 -80
  468. package/es/components/pisellPhone/components/DisabledView.d.ts +0 -16
  469. package/es/components/pisellPhone/components/EditView.d.ts +0 -19
  470. package/es/components/pisellPhone/components/ReadOnlyView.d.ts +0 -17
  471. package/es/components/pisellPhone/constants/countryCodes.d.ts +0 -20
  472. package/es/components/pisellPhone/index.d.ts +0 -8
  473. package/es/components/pisellPhone/types.d.ts +0 -209
  474. package/es/components/pisellPhone/utils/countryCodeHelper.d.ts +0 -35
  475. package/es/components/pisellPhone/utils/index.d.ts +0 -6
  476. package/es/components/pisellPhone/utils/phoneFormatter.d.ts +0 -39
  477. package/es/components/pisellPhone/utils/phoneValidator.d.ts +0 -11
  478. package/es/components/pisellQuickFilter/index.d.ts +0 -11
  479. package/es/components/pisellQuickFilter/type.d.ts +0 -12
  480. package/es/components/pisellRating/PisellRating.d.ts +0 -31
  481. package/es/components/pisellRating/PisellRating.stories.d.ts +0 -53
  482. package/es/components/pisellRating/index.d.ts +0 -7
  483. package/es/components/pisellRating/types.d.ts +0 -124
  484. package/es/components/pisellRecordBoard/shellFrame/Calendar/calendarI18n.d.ts +0 -4
  485. package/es/components/pisellRecordBoard/shellFrame/Calendar/calendarPersistGuard.d.ts +0 -18
  486. package/es/components/pisellRecordBoard/shellFrame/Calendar/const/bookingCalendarConstants.d.ts +0 -36
  487. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/NoteTicker.d.ts +0 -14
  488. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanelLayoutTab.d.ts +0 -28
  489. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallViewportToolbar.d.ts +0 -18
  490. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/resourceWallConstants.d.ts +0 -2
  491. package/es/components/pisellReservationSchedule/PisellReservationSchedule.d.ts +0 -10
  492. package/es/components/pisellReservationSchedule/PisellReservationSchedule.stories.d.ts +0 -12
  493. package/es/components/pisellReservationSchedule/index.d.ts +0 -2
  494. package/es/components/pisellReservationSchedule/locales.d.ts +0 -43
  495. package/es/components/pisellReservationSchedule/types.d.ts +0 -52
  496. package/es/components/pisellReservationScheduleBand/PisellReservationScheduleBand.d.ts +0 -10
  497. package/es/components/pisellReservationScheduleBand/PisellReservationScheduleBand.stories.d.ts +0 -16
  498. package/es/components/pisellReservationScheduleBand/index.d.ts +0 -2
  499. package/es/components/pisellReservationScheduleBand/types.d.ts +0 -61
  500. package/es/components/pisellRow/index.d.ts +0 -22
  501. package/es/components/pisellShellFrame/PisellShellFrame.stories.d.ts +0 -15
  502. package/es/components/pisellShellFrame/index.d.ts +0 -2
  503. package/es/components/pisellSingleLineText/PisellSingleLineText.d.ts +0 -40
  504. package/es/components/pisellSingleLineText/PisellSingleLineText.stories.d.ts +0 -102
  505. package/es/components/pisellSingleLineText/components/DisabledView.d.ts +0 -16
  506. package/es/components/pisellSingleLineText/components/EditView.d.ts +0 -19
  507. package/es/components/pisellSingleLineText/components/ReadOnlyView.d.ts +0 -20
  508. package/es/components/pisellSingleLineText/index.d.ts +0 -7
  509. package/es/components/pisellSingleLineText/types.d.ts +0 -139
  510. package/es/components/pisellSingleSelect/PisellSingleSelect.d.ts +0 -9
  511. package/es/components/pisellSingleSelect/PisellSingleSelect.stories.d.ts +0 -66
  512. package/es/components/pisellSingleSelect/components/DisabledView.d.ts +0 -8
  513. package/es/components/pisellSingleSelect/components/EditView.d.ts +0 -8
  514. package/es/components/pisellSingleSelect/components/ReadOnlyView.d.ts +0 -8
  515. package/es/components/pisellSingleSelect/index.d.ts +0 -7
  516. package/es/components/pisellSingleSelect/types.d.ts +0 -92
  517. package/es/components/pisellSort/index.d.ts +0 -3
  518. package/es/components/pisellSort/type.d.ts +0 -7
  519. package/es/components/pisellText/components/Amount/index.d.ts +0 -20
  520. package/es/components/pisellTimeNavigator/PisellTimeNavigator.stories.d.ts +0 -79
  521. package/es/components/pisellTimeNavigator/components/BackgroundLayer.d.ts +0 -14
  522. package/es/components/pisellTimeNavigator/components/NowButton.d.ts +0 -14
  523. package/es/components/pisellTimeNavigator/components/ScaleLayer.d.ts +0 -22
  524. package/es/components/pisellTimeNavigator/components/index.d.ts +0 -5
  525. package/es/components/pisellTimeNavigator/hooks/index.d.ts +0 -5
  526. package/es/components/pisellTimeNavigator/hooks/useDragInertia.d.ts +0 -14
  527. package/es/components/pisellTimeNavigator/hooks/useRealtime.d.ts +0 -5
  528. package/es/components/pisellTimeNavigator/hooks/useTimeAxis.d.ts +0 -27
  529. package/es/components/pisellTimeNavigator/index.d.ts +0 -5
  530. package/es/components/pisellTimeNavigator/locales.d.ts +0 -22
  531. package/es/components/pisellTimeNavigator/types.d.ts +0 -160
  532. package/es/components/pisellTimeNavigator/utils/index.d.ts +0 -41
  533. package/es/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.d.ts +0 -32
  534. package/es/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.stories.d.ts +0 -61
  535. package/es/components/pisellTimeRangeDisplay/components/DateBlock.d.ts +0 -20
  536. package/es/components/pisellTimeRangeDisplay/components/DurationBlock.d.ts +0 -19
  537. package/es/components/pisellTimeRangeDisplay/components/TimeRangeBlock.d.ts +0 -30
  538. package/es/components/pisellTimeRangeDisplay/components/WeekdayBlock.d.ts +0 -18
  539. package/es/components/pisellTimeRangeDisplay/components/index.d.ts +0 -8
  540. package/es/components/pisellTimeRangeDisplay/index.d.ts +0 -3
  541. package/es/components/pisellTimeRangeDisplay/types.d.ts +0 -137
  542. package/es/components/pisellTimeRangeDisplay/utils/formatDuration.d.ts +0 -14
  543. package/es/components/pisellTimeRangeDisplay/utils/index.d.ts +0 -4
  544. package/es/components/pisellTimeRangeDisplay/utils/parseTimeRange.d.ts +0 -23
  545. package/es/components/pisellToast/index.d.ts +0 -17
  546. package/es/components/pisellToast/squareToast/index.d.ts +0 -15
  547. package/es/components/pisellToast/squareToast/methods.d.ts +0 -13
  548. package/es/components/pisellToast/squareToast/renderImperatively.d.ts +0 -28
  549. package/es/components/pisellToast/squareToast/toast.d.ts +0 -25
  550. package/es/components/pisellUrl/PisellUrl.d.ts +0 -37
  551. package/es/components/pisellUrl/PisellUrl.stories.d.ts +0 -108
  552. package/es/components/pisellUrl/components/DisabledView.d.ts +0 -14
  553. package/es/components/pisellUrl/components/EditView.d.ts +0 -15
  554. package/es/components/pisellUrl/components/ReadOnlyView.d.ts +0 -15
  555. package/es/components/pisellUrl/index.d.ts +0 -7
  556. package/es/components/pisellUrl/types.d.ts +0 -160
  557. package/es/components/pisellUrl/utils/index.d.ts +0 -6
  558. package/es/components/pisellUrl/utils/urlFormatter.d.ts +0 -38
  559. package/es/components/pisellUrl/utils/urlHelper.d.ts +0 -63
  560. package/es/components/pisellUrl/utils/urlValidator.d.ts +0 -46
  561. package/es/components/productCard/cartSkuCard/components/AmountFooter/index.d.ts +0 -3
  562. package/es/components/productCard/cartSkuCard/components/Gift/index.d.ts +0 -4
  563. package/es/components/productCard/cartSkuCard/components/Gift/types.d.ts +0 -29
  564. package/es/components/productCard/cartSkuCard/components/MultiDay/index.d.ts +0 -3
  565. package/es/components/productCard/cartSkuCard/components/MultiDay/utils.d.ts +0 -14
  566. package/es/components/productCard/cartSkuCard/components/Note/index.d.ts +0 -3
  567. package/es/components/productCard/cartSkuCard/components/Promotion/index.d.ts +0 -6
  568. package/es/components/productCard/cartSkuCard/components/basicInfo/index.d.ts +0 -36
  569. package/es/components/productCard/cartSkuCard/components/discountReason/index.d.ts +0 -2
  570. package/es/components/productCard/cartSkuCard/components/holders/index.d.ts +0 -3
  571. package/es/components/productCard/cartSkuCard/components/packages/index.d.ts +0 -11
  572. package/es/components/productCard/cartSkuCard/components/packages/utils.d.ts +0 -20
  573. package/es/components/productCard/cartSkuCard/components/resources/index.d.ts +0 -3
  574. package/es/components/productCard/cartSkuCard/components/sales/index.d.ts +0 -12
  575. package/es/components/productCard/cartSkuCard/components/specs/index.d.ts +0 -21
  576. package/es/components/productCard/cartSkuCard/components/swipeAction/index.d.ts +0 -46
  577. package/es/components/productCard/cartSkuCard/components/timeRange/index.d.ts +0 -8
  578. package/es/components/productCard/cartSkuCard/components/weighing/index.d.ts +0 -18
  579. package/es/components/productCard/cartSkuCard/index.d.ts +0 -10
  580. package/es/components/productCard/cartSkuCard/locales.d.ts +0 -198
  581. package/es/components/productCard/components/Action/index.d.ts +0 -4
  582. package/es/components/productCard/components/Header/EditButton/index.d.ts +0 -3
  583. package/es/components/productCard/components/Header/index.d.ts +0 -3
  584. package/es/components/productCard/components/Sales/index.d.ts +0 -3
  585. package/es/components/productCard/components/Time/components/SelectHolder/index.d.ts +0 -3
  586. package/es/components/productCard/components/Time/components/SelectHolderModal/index.d.ts +0 -13
  587. package/es/components/productCard/components/Time/components/SelectHolderMultiple/index.d.ts +0 -2
  588. package/es/components/productCard/locales.d.ts +0 -138
  589. package/es/components/productCard/status.d.ts +0 -32
  590. package/es/components/productCard/types.d.ts +0 -95
  591. package/es/components/productCard/utils.d.ts +0 -33
  592. package/es/components/select/index.d.ts +0 -9
  593. package/es/components/select-time/index.d.ts +0 -13
  594. package/es/components/sort/index.d.ts +0 -5
  595. package/es/components/sort/types.d.ts +0 -39
  596. package/es/components/table/Actions/component/GallerySetting/index.d.ts +0 -8
  597. package/es/components/table/Actions/component/ViewMode/index.d.ts +0 -8
  598. package/es/components/table/Table/AddFieldModal/index.d.ts +0 -4
  599. package/es/components/table/Table/fields/select/Edit/index.d.ts +0 -4
  600. package/es/components/table/Table/fields/types/index.d.ts +0 -33
  601. package/es/components/table/index.d.ts +0 -4
  602. package/es/components/virtual-keyboard/Amount/index.d.ts +0 -5
  603. package/es/components/virtual-keyboard/Amount/themeConfig.d.ts +0 -32
  604. package/es/components/virtual-keyboard/Amount/types.d.ts +0 -44
  605. package/es/components/virtual-keyboard/BaseNumberKeyboard/Presets.d.ts +0 -15
  606. package/es/components/virtual-keyboard/BaseNumberKeyboard/index.d.ts +0 -25
  607. package/es/components/virtual-keyboard/Keyboard/index.d.ts +0 -21
  608. package/es/components/virtual-keyboard/Number/index.d.ts +0 -5
  609. package/es/components/virtual-keyboard/Number/themeConfig.d.ts +0 -32
  610. package/es/components/virtual-keyboard/Number/types.d.ts +0 -26
  611. package/es/components/virtual-keyboard/VirtualKeyInput/index.d.ts +0 -13
  612. package/es/components/virtual-keyboard/index.d.ts +0 -25
  613. package/es/components/virtualInput/BaseVirtualInput/index.d.ts +0 -44
  614. package/es/components/virtualInput/index.d.ts +0 -29
  615. package/es/hooks/useMobile.d.ts +0 -8
  616. package/es/hooks/useThemeTokens.d.ts +0 -7
  617. package/es/theme/tokens.d.ts +0 -22
  618. package/es/utils/tagColor.d.ts +0 -7
  619. package/lib/components/PisellBasicGrid/PisellBasicGrid.d.ts +0 -9
  620. package/lib/components/PisellBasicGrid/hooks/index.d.ts +0 -1
  621. package/lib/components/PisellBasicGrid/hooks/useGridStyle.d.ts +0 -37
  622. package/lib/components/PisellBasicGrid/index.d.ts +0 -6
  623. package/lib/components/PisellBasicGrid/types.d.ts +0 -221
  624. package/lib/components/PisellBasicGrid/utils/index.d.ts +0 -63
  625. package/lib/components/PisellCards/PisellCards.d.ts +0 -8
  626. package/lib/components/PisellCards/components/GraphicTextCard/GraphicTextCard.d.ts +0 -8
  627. package/lib/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.d.ts +0 -5
  628. package/lib/components/PisellCards/components/GraphicTextCard/components/GraphicArea.d.ts +0 -24
  629. package/lib/components/PisellCards/components/GraphicTextCard/components/TextContent.d.ts +0 -27
  630. package/lib/components/PisellCards/components/GraphicTextCard/components/index.d.ts +0 -6
  631. package/lib/components/PisellCards/components/GraphicTextCard/hooks/index.d.ts +0 -5
  632. package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.d.ts +0 -15
  633. package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.d.ts +0 -18
  634. package/lib/components/PisellCards/components/GraphicTextCard/index.d.ts +0 -5
  635. package/lib/components/PisellCards/components/GraphicTextCard/types.d.ts +0 -290
  636. package/lib/components/PisellCards/components/GraphicTextCard/utils/index.d.ts +0 -19
  637. package/lib/components/PisellCards/components/MultilevelCard/MultilevelCard.d.ts +0 -19
  638. package/lib/components/PisellCards/components/MultilevelCard/components/CardWrapper.d.ts +0 -7
  639. package/lib/components/PisellCards/components/MultilevelCard/components/PanelWrapper.d.ts +0 -7
  640. package/lib/components/PisellCards/components/MultilevelCard/components/index.d.ts +0 -2
  641. package/lib/components/PisellCards/components/MultilevelCard/hooks/index.d.ts +0 -2
  642. package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.d.ts +0 -31
  643. package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.d.ts +0 -28
  644. package/lib/components/PisellCards/components/MultilevelCard/index.d.ts +0 -2
  645. package/lib/components/PisellCards/components/MultilevelCard/types.d.ts +0 -202
  646. package/lib/components/PisellCards/components/MultilevelCard/utils/index.d.ts +0 -6
  647. package/lib/components/PisellCards/components/PisellImageCard/PisellImageCard.d.ts +0 -8
  648. package/lib/components/PisellCards/components/PisellImageCard/components/index.d.ts +0 -0
  649. package/lib/components/PisellCards/components/PisellImageCard/hooks/index.d.ts +0 -5
  650. package/lib/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.d.ts +0 -11
  651. package/lib/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.d.ts +0 -10
  652. package/lib/components/PisellCards/components/PisellImageCard/index.d.ts +0 -5
  653. package/lib/components/PisellCards/components/PisellImageCard/types.d.ts +0 -74
  654. package/lib/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.d.ts +0 -7
  655. package/lib/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.d.ts +0 -7
  656. package/lib/components/PisellCards/components/PisellImageCard/utils/index.d.ts +0 -5
  657. package/lib/components/PisellCards/components/TabCard/TabCard.d.ts +0 -3
  658. package/lib/components/PisellCards/components/TabCard/index.d.ts +0 -5
  659. package/lib/components/PisellCards/components/TabCard/types.d.ts +0 -70
  660. package/lib/components/PisellCards/components/TextCard/TextCard.d.ts +0 -7
  661. package/lib/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +0 -26
  662. package/lib/components/PisellCards/components/TextCard/components/IconWrapper.d.ts +0 -17
  663. package/lib/components/PisellCards/components/TextCard/components/TextContent.d.ts +0 -21
  664. package/lib/components/PisellCards/components/TextCard/components/index.d.ts +0 -6
  665. package/lib/components/PisellCards/components/TextCard/hooks/index.d.ts +0 -0
  666. package/lib/components/PisellCards/components/TextCard/index.d.ts +0 -5
  667. package/lib/components/PisellCards/components/TextCard/types.d.ts +0 -270
  668. package/lib/components/PisellCards/components/TextCard/utils/index.d.ts +0 -0
  669. package/lib/components/PisellCards/components/index.d.ts +0 -10
  670. package/lib/components/PisellCards/hooks/index.d.ts +0 -0
  671. package/lib/components/PisellCards/index.d.ts +0 -14
  672. package/lib/components/PisellCards/types.d.ts +0 -48
  673. package/lib/components/PisellCards/utils/index.d.ts +0 -0
  674. package/lib/components/PisellFields/index.d.ts +0 -36
  675. package/lib/components/PisellMetrics/index.d.ts +0 -23
  676. package/lib/components/PisellProcedure/PisellProcedure.d.ts +0 -22
  677. package/lib/components/PisellProcedure/PisellProcedure.stories.d.ts +0 -163
  678. package/lib/components/PisellProcedure/components/FooterActions.d.ts +0 -24
  679. package/lib/components/PisellProcedure/components/ProcedureBody.d.ts +0 -41
  680. package/lib/components/PisellProcedure/components/ProcedureContent.d.ts +0 -23
  681. package/lib/components/PisellProcedure/components/ProcedureFooter.d.ts +0 -38
  682. package/lib/components/PisellProcedure/components/ProcedureHeader.d.ts +0 -34
  683. package/lib/components/PisellProcedure/components/ProcedureSidebar.d.ts +0 -38
  684. package/lib/components/PisellProcedure/components/index.d.ts +0 -12
  685. package/lib/components/PisellProcedure/hooks/index.d.ts +0 -8
  686. package/lib/components/PisellProcedure/hooks/useElementSize.d.ts +0 -38
  687. package/lib/components/PisellProcedure/hooks/useOverflowActions.d.ts +0 -43
  688. package/lib/components/PisellProcedure/hooks/useResponsiveClass.d.ts +0 -6
  689. package/lib/components/PisellProcedure/hooks/useSidebarHeight.d.ts +0 -16
  690. package/lib/components/PisellProcedure/hooks/useStepManager.d.ts +0 -50
  691. package/lib/components/PisellProcedure/index.d.ts +0 -5
  692. package/lib/components/PisellProcedure/types.d.ts +0 -363
  693. package/lib/components/PisellProcedure/utils/classNames.d.ts +0 -33
  694. package/lib/components/PisellProcedure/utils/extractText.d.ts +0 -20
  695. package/lib/components/PisellProcedure/utils/footerPosition.d.ts +0 -41
  696. package/lib/components/PisellProcedure/utils/index.d.ts +0 -8
  697. package/lib/components/PisellProcedure/utils/layoutRatio.d.ts +0 -42
  698. package/lib/components/PisellProcedure/utils/slotHelper.d.ts +0 -27
  699. package/lib/components/PisellScrollView/PisellScrollView.d.ts +0 -5
  700. package/lib/components/PisellScrollView/PisellScrollView.stories.d.ts +0 -87
  701. package/lib/components/PisellScrollView/components/Actions/index.d.ts +0 -12
  702. package/lib/components/PisellScrollView/hooks/index.d.ts +0 -3
  703. package/lib/components/PisellScrollView/hooks/useIntersection.d.ts +0 -8
  704. package/lib/components/PisellScrollView/hooks/useScrollEvents.d.ts +0 -20
  705. package/lib/components/PisellScrollView/hooks/useScrollState.d.ts +0 -13
  706. package/lib/components/PisellScrollView/index.d.ts +0 -3
  707. package/lib/components/PisellScrollView/types.d.ts +0 -203
  708. package/lib/components/PisellScrollView/utils/index.d.ts +0 -0
  709. package/lib/components/PisellSteps/PisellSteps.d.ts +0 -14
  710. package/lib/components/PisellSteps/PisellSteps.stories.d.ts +0 -155
  711. package/lib/components/PisellSteps/hooks/index.d.ts +0 -4
  712. package/lib/components/PisellSteps/hooks/useAnchor.d.ts +0 -9
  713. package/lib/components/PisellSteps/hooks/useResponsive.d.ts +0 -8
  714. package/lib/components/PisellSteps/hooks/useStepClick.d.ts +0 -11
  715. package/lib/components/PisellSteps/hooks/useStepsState.d.ts +0 -9
  716. package/lib/components/PisellSteps/index.d.ts +0 -3
  717. package/lib/components/PisellSteps/types.d.ts +0 -257
  718. package/lib/components/PisellSteps/utils/index.d.ts +0 -54
  719. package/lib/components/PisellSuperTabs/PisellSuperTabs.d.ts +0 -8
  720. package/lib/components/PisellSuperTabs/components/index.d.ts +0 -0
  721. package/lib/components/PisellSuperTabs/hooks/index.d.ts +0 -1
  722. package/lib/components/PisellSuperTabs/hooks/useTabsState.d.ts +0 -7
  723. package/lib/components/PisellSuperTabs/index.d.ts +0 -3
  724. package/lib/components/PisellSuperTabs/types.d.ts +0 -212
  725. package/lib/components/PisellSuperTabs/utils/getRowKey.d.ts +0 -8
  726. package/lib/components/PisellSuperTabs/utils/index.d.ts +0 -1
  727. package/lib/components/PisellTabbar/PisellTabbar.d.ts +0 -20
  728. package/lib/components/PisellTabbar/constants.d.ts +0 -47
  729. package/lib/components/PisellTabbar/hooks/index.d.ts +0 -2
  730. package/lib/components/PisellTabbar/hooks/useActiveKey.d.ts +0 -55
  731. package/lib/components/PisellTabbar/hooks/useExpand.d.ts +0 -42
  732. package/lib/components/PisellTabbar/index.d.ts +0 -9
  733. package/lib/components/PisellTabbar/locales.d.ts +0 -23
  734. package/lib/components/PisellTabbar/mock.d.ts +0 -47
  735. package/lib/components/PisellTabbar/template/Template1/PisellTabbar.d.ts +0 -5
  736. package/lib/components/PisellTabbar/template/Template1/constants.d.ts +0 -10
  737. package/lib/components/PisellTabbar/template/Template1/index.d.ts +0 -6
  738. package/lib/components/PisellTabbar/template/Template1/utils/index.d.ts +0 -35
  739. package/lib/components/PisellTabbar/template/index.d.ts +0 -0
  740. package/lib/components/PisellTabbar/types.d.ts +0 -90
  741. package/lib/components/PisellTabbar/utils/index.d.ts +0 -69
  742. package/lib/components/PisellTabbar2/PisellTabbar.d.ts +0 -23
  743. package/lib/components/PisellTabbar2/components/TabbarLevel.d.ts +0 -8
  744. package/lib/components/PisellTabbar2/components/index.d.ts +0 -1
  745. package/lib/components/PisellTabbar2/constants.d.ts +0 -46
  746. package/lib/components/PisellTabbar2/hooks/index.d.ts +0 -2
  747. package/lib/components/PisellTabbar2/hooks/useActiveKey.d.ts +0 -50
  748. package/lib/components/PisellTabbar2/hooks/useExpand.d.ts +0 -41
  749. package/lib/components/PisellTabbar2/index.d.ts +0 -6
  750. package/lib/components/PisellTabbar2/locales.d.ts +0 -23
  751. package/lib/components/PisellTabbar2/mock.d.ts +0 -205
  752. package/lib/components/PisellTabbar2/types.d.ts +0 -117
  753. package/lib/components/PisellTabbar2/utils/index.d.ts +0 -35
  754. package/lib/components/PisellTabbar3/PisellTabbar.d.ts +0 -20
  755. package/lib/components/PisellTabbar3/index.d.ts +0 -6
  756. package/lib/components/PisellTabbar3/locales.d.ts +0 -23
  757. package/lib/components/PisellTabbar3/mock.d.ts +0 -47
  758. package/lib/components/PisellTabbar3/types.d.ts +0 -111
  759. package/lib/components/Template/PisellSteps.d.ts +0 -0
  760. package/lib/components/Template/components/index.d.ts +0 -0
  761. package/lib/components/Template/hooks/index.d.ts +0 -0
  762. package/lib/components/Template/index.d.ts +0 -0
  763. package/lib/components/Template/types.d.ts +0 -0
  764. package/lib/components/Template/utils/index.d.ts +0 -0
  765. package/lib/components/cardMetricItem/index.d.ts +0 -15
  766. package/lib/components/cardPro/index.d.ts +0 -4
  767. package/lib/components/dataSourceComponents/dataSourceForm/BaseForm.d.ts +0 -3
  768. package/lib/components/dataSourceComponents/dataSourceForm/serve.d.ts +0 -178
  769. package/lib/components/dataSourceComponents/dataSourceForm/submitButton/index.d.ts +0 -39
  770. package/lib/components/dataSourceComponents/dataSourceForm/type.d.ts +0 -32
  771. package/lib/components/dataSourceComponents/dataSourceForm/urlUtils.d.ts +0 -24
  772. package/lib/components/dataSourceComponents/dataSourceForm/utils.d.ts +0 -57
  773. package/lib/components/dataSourceComponents/dataSourceSubForm/index.d.ts +0 -13
  774. package/lib/components/dataSourceComponents/dataSourceSubForm/types.d.ts +0 -117
  775. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +0 -5
  776. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useFormat.d.ts +0 -48
  777. package/lib/components/dataSourceComponents/fields/Input.Mobile/serve.d.ts +0 -26
  778. package/lib/components/dataSourceComponents/fields/RecordListWrapper/ReadPretty.d.ts +0 -9
  779. package/lib/components/dataSourceComponents/fields/RecordListWrapper/WithMode.d.ts +0 -4
  780. package/lib/components/dataSourceComponents/fields/RecordListWrapper/index.d.ts +0 -11
  781. package/lib/components/dataSourceComponents/fields/RecordListWrapper/type.d.ts +0 -87
  782. package/lib/components/dataSourceComponents/fields/Tabs/ReadPretty.d.ts +0 -9
  783. package/lib/components/dataSourceComponents/fields/Tabs/Tabs.d.ts +0 -23
  784. package/lib/components/dataSourceComponents/fields/Tabs/WithMode.d.ts +0 -6
  785. package/lib/components/dataSourceComponents/fields/Tabs/index.d.ts +0 -12
  786. package/lib/components/dataSourceComponents/fields/Tabs/type.d.ts +0 -38
  787. package/lib/components/dataSourceComponents/fields/Translation/BaseTranslation.d.ts +0 -5
  788. package/lib/components/dataSourceComponents/fields/Translation/type.d.ts +0 -21
  789. package/lib/components/dataSourceComponents/fields/index.d.ts +0 -141
  790. package/lib/components/dataSourceComponents/fields/utils.d.ts +0 -3
  791. package/lib/components/dataSourceComponents/hooks/useActions.d.ts +0 -18
  792. package/lib/components/dataSourceComponents/hooks/useFormSettingParams.d.ts +0 -7
  793. package/lib/components/dataSourceComponents/provider/variables/VariablesContext.d.ts +0 -15
  794. package/lib/components/dataSourceComponents/provider/variables/VariablesProvider.d.ts +0 -4
  795. package/lib/components/drag-sort-tree/TreeItem/index.d.ts +0 -19
  796. package/lib/components/filter/components/Dropdown/index.d.ts +0 -9
  797. package/lib/components/filter/components/Dropdown/types.d.ts +0 -13
  798. package/lib/components/filter/components/FilterButton/index.d.ts +0 -4
  799. package/lib/components/filter/components/FilterButton/types.d.ts +0 -24
  800. package/lib/components/filter/components/FilterItem/AsyncOptionsSelectWrapper.d.ts +0 -21
  801. package/lib/components/filter/types.d.ts +0 -48
  802. package/lib/components/iconfont/index.d.ts +0 -8
  803. package/lib/components/keyboard/index.d.ts +0 -22
  804. package/lib/components/page/index.d.ts +0 -8
  805. package/lib/components/pisell-config-provider/context.d.ts +0 -22
  806. package/lib/components/pisell-config-provider/index.d.ts +0 -13
  807. package/lib/components/pisellAdjustPrice/index.d.ts +0 -4
  808. package/lib/components/pisellAdjustPrice/status.d.ts +0 -32
  809. package/lib/components/pisellAdjustPrice/type.d.ts +0 -22
  810. package/lib/components/pisellBatchActionBar/PisellBatchActionBar.d.ts +0 -31
  811. package/lib/components/pisellBatchActionBar/index.d.ts +0 -6
  812. package/lib/components/pisellBatchActionBar/types.d.ts +0 -237
  813. package/lib/components/pisellCheckboxGroup/index.d.ts +0 -40
  814. package/lib/components/pisellCurrency/PisellCurrency.d.ts +0 -39
  815. package/lib/components/pisellCurrency/PisellCurrency.stories.d.ts +0 -56
  816. package/lib/components/pisellCurrency/components/DisabledView.d.ts +0 -11
  817. package/lib/components/pisellCurrency/components/EditView.d.ts +0 -18
  818. package/lib/components/pisellCurrency/components/ReadOnlyView.d.ts +0 -17
  819. package/lib/components/pisellCurrency/components/index.d.ts +0 -6
  820. package/lib/components/pisellCurrency/index.d.ts +0 -7
  821. package/lib/components/pisellCurrency/types.d.ts +0 -56
  822. package/lib/components/pisellCurrency/utils/currencyFormatter.d.ts +0 -31
  823. package/lib/components/pisellCurrency/utils/index.d.ts +0 -5
  824. package/lib/components/pisellDataSourceContainer/PisellDataSourceContainer.d.ts +0 -3
  825. package/lib/components/pisellDataSourceContainer/components/ColumnsSetting/index.d.ts +0 -28
  826. package/lib/components/pisellDataSourceContainer/components/ColumnsSetting/utils.d.ts +0 -28
  827. package/lib/components/pisellDataSourceContainer/components/Filter/FilterButton.d.ts +0 -7
  828. package/lib/components/pisellDataSourceContainer/components/Filter/QuickFilter.d.ts +0 -10
  829. package/lib/components/pisellDataSourceContainer/components/Filter/index.d.ts +0 -14
  830. package/lib/components/pisellDataSourceContainer/components/Sort/index.d.ts +0 -9
  831. package/lib/components/pisellDataSourceContainer/components/Table/index.d.ts +0 -9
  832. package/lib/components/pisellDataSourceContainer/components/Table/useColumns.d.ts +0 -14
  833. package/lib/components/pisellDataSourceContainer/hooks/useContainerContext.d.ts +0 -3
  834. package/lib/components/pisellDataSourceContainer/hooks/useDataSourceKey.d.ts +0 -5
  835. package/lib/components/pisellDataSourceContainer/hooks/useHandleAction.d.ts +0 -32
  836. package/lib/components/pisellDataSourceContainer/index.d.ts +0 -28
  837. package/lib/components/pisellDataSourceContainer/provider/ChildComponentProps.d.ts +0 -13
  838. package/lib/components/pisellDataSourceContainer/provider/HandleActions.d.ts +0 -5
  839. package/lib/components/pisellDataSourceContainer/provider/RefManager.d.ts +0 -9
  840. package/lib/components/pisellDataSourceContainer/type.d.ts +0 -84
  841. package/lib/components/pisellDataSourceContainer/utils/formatData.d.ts +0 -9
  842. package/lib/components/pisellDataSourceContainer/utils/withContainer.d.ts +0 -9
  843. package/lib/components/pisellDateTimeDisplay/PisellDateTimeDisplay.d.ts +0 -35
  844. package/lib/components/pisellDateTimeDisplay/PisellDateTimeDisplay.stories.d.ts +0 -195
  845. package/lib/components/pisellDateTimeDisplay/components/DateDisplay.d.ts +0 -48
  846. package/lib/components/pisellDateTimeDisplay/components/TimeDisplay.d.ts +0 -42
  847. package/lib/components/pisellDateTimeDisplay/components/WeekdayDisplay.d.ts +0 -57
  848. package/lib/components/pisellDateTimeDisplay/components/index.d.ts +0 -6
  849. package/lib/components/pisellDateTimeDisplay/formats/dateTimeDisplayFormats.d.ts +0 -7
  850. package/lib/components/pisellDateTimeDisplay/formats/index.d.ts +0 -1
  851. package/lib/components/pisellDateTimeDisplay/hooks/index.d.ts +0 -2
  852. package/lib/components/pisellDateTimeDisplay/hooks/useCurrentTime.d.ts +0 -46
  853. package/lib/components/pisellDateTimeDisplay/index.d.ts +0 -3
  854. package/lib/components/pisellDateTimeDisplay/types.d.ts +0 -352
  855. package/lib/components/pisellDateTimeDisplay/utils/formatDate.d.ts +0 -21
  856. package/lib/components/pisellDateTimeDisplay/utils/formatDateOrRelative.d.ts +0 -17
  857. package/lib/components/pisellDateTimeDisplay/utils/formatTime.d.ts +0 -19
  858. package/lib/components/pisellDateTimeDisplay/utils/formatWeekday.d.ts +0 -30
  859. package/lib/components/pisellDateTimeDisplay/utils/getRefreshInterval.d.ts +0 -18
  860. package/lib/components/pisellDateTimeDisplay/utils/index.d.ts +0 -7
  861. package/lib/components/pisellDateTimeDisplay/utils/localeUtils.d.ts +0 -22
  862. package/lib/components/pisellDateTimeDisplay/utils/relativeDay.d.ts +0 -24
  863. package/lib/components/pisellEmail/PisellEmail.d.ts +0 -37
  864. package/lib/components/pisellEmail/PisellEmail.stories.d.ts +0 -116
  865. package/lib/components/pisellEmail/components/DisabledView.d.ts +0 -14
  866. package/lib/components/pisellEmail/components/EditView.d.ts +0 -15
  867. package/lib/components/pisellEmail/components/ReadOnlyView.d.ts +0 -15
  868. package/lib/components/pisellEmail/constants/emailDomains.d.ts +0 -5
  869. package/lib/components/pisellEmail/constants/emailRegex.d.ts +0 -13
  870. package/lib/components/pisellEmail/index.d.ts +0 -7
  871. package/lib/components/pisellEmail/types.d.ts +0 -176
  872. package/lib/components/pisellEmail/utils/domainSuggestions.d.ts +0 -15
  873. package/lib/components/pisellEmail/utils/emailHelper.d.ts +0 -66
  874. package/lib/components/pisellEmail/utils/emailValidator.d.ts +0 -45
  875. package/lib/components/pisellEmail/utils/index.d.ts +0 -6
  876. package/lib/components/pisellFilter/index.d.ts +0 -3
  877. package/lib/components/pisellFilter/type.d.ts +0 -7
  878. package/lib/components/pisellFind/PisellFind.stories.d.ts +0 -45
  879. package/lib/components/pisellFind/index.d.ts +0 -40
  880. package/lib/components/pisellFloorMapLayout/components/FloorMapEditQuickActions.d.ts +0 -21
  881. package/lib/components/pisellFloorMapLayout/components/FloorMapImageElement.d.ts +0 -6
  882. package/lib/components/pisellFloorMapLayout/hooks/useFloorMapPaletteTouchDrag.d.ts +0 -21
  883. package/lib/components/pisellFloorMapLayout/shopFloorPlan/shopFloorPlanTypes.d.ts +0 -72
  884. package/lib/components/pisellFloorMapLayout/utils/floorMapDataRecordLabel.d.ts +0 -8
  885. package/lib/components/pisellFloorMapLayout/utils/floorMapDropUtils.d.ts +0 -27
  886. package/lib/components/pisellFloorMapLayout/utils/floorMapStageDefaults.d.ts +0 -8
  887. package/lib/components/pisellFloorMapLayout/utils/snap.d.ts +0 -10
  888. package/lib/components/pisellGridPro/GridPro.d.ts +0 -9
  889. package/lib/components/pisellGridPro/GridView/index.d.ts +0 -5
  890. package/lib/components/pisellGridPro/GridView/type.d.ts +0 -3
  891. package/lib/components/pisellGridPro/ToolBar/index.d.ts +0 -6
  892. package/lib/components/pisellGridPro/ToolBar/type.d.ts +0 -10
  893. package/lib/components/pisellGridPro/components/DataCard/components/StatCard/index.d.ts +0 -10
  894. package/lib/components/pisellGridPro/components/DataCard/index.d.ts +0 -5
  895. package/lib/components/pisellGridPro/components/DataCard/types.d.ts +0 -70
  896. package/lib/components/pisellGridPro/components/Footer/index.d.ts +0 -9
  897. package/lib/components/pisellGridPro/components/Header/index.d.ts +0 -12
  898. package/lib/components/pisellGridPro/index.d.ts +0 -4
  899. package/lib/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.d.ts +0 -6
  900. package/lib/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.stories.d.ts +0 -10
  901. package/lib/components/pisellHierarchicalSummaryList/components/Row.d.ts +0 -35
  902. package/lib/components/pisellHierarchicalSummaryList/components/index.d.ts +0 -1
  903. package/lib/components/pisellHierarchicalSummaryList/hooks/index.d.ts +0 -2
  904. package/lib/components/pisellHierarchicalSummaryList/hooks/useExpandedKeys.d.ts +0 -15
  905. package/lib/components/pisellHierarchicalSummaryList/index.d.ts +0 -5
  906. package/lib/components/pisellHierarchicalSummaryList/types.d.ts +0 -248
  907. package/lib/components/pisellLayout/index.d.ts +0 -14
  908. package/lib/components/pisellLongText/PisellLongText.d.ts +0 -39
  909. package/lib/components/pisellLongText/PisellLongText.stories.d.ts +0 -123
  910. package/lib/components/pisellLongText/components/DisabledView.d.ts +0 -16
  911. package/lib/components/pisellLongText/components/EditView.d.ts +0 -19
  912. package/lib/components/pisellLongText/components/ReadOnlyView.d.ts +0 -18
  913. package/lib/components/pisellLongText/index.d.ts +0 -7
  914. package/lib/components/pisellLongText/types.d.ts +0 -147
  915. package/lib/components/pisellLookup/PisellLookup.d.ts +0 -4
  916. package/lib/components/pisellLookup/PisellLookup.stories.d.ts +0 -129
  917. package/lib/components/pisellLookup/components/HotWords.d.ts +0 -7
  918. package/lib/components/pisellLookup/components/LookupAuxiliary.d.ts +0 -7
  919. package/lib/components/pisellLookup/components/LookupResultHost.d.ts +0 -7
  920. package/lib/components/pisellLookup/components/LookupTrigger.d.ts +0 -3
  921. package/lib/components/pisellLookup/components/SearchHistory.d.ts +0 -7
  922. package/lib/components/pisellLookup/components/SuggestWords.d.ts +0 -7
  923. package/lib/components/pisellLookup/components/index.d.ts +0 -9
  924. package/lib/components/pisellLookup/hooks/index.d.ts +0 -6
  925. package/lib/components/pisellLookup/hooks/useDebounceSearch.d.ts +0 -40
  926. package/lib/components/pisellLookup/hooks/useSearchHistory.d.ts +0 -48
  927. package/lib/components/pisellLookup/hooks/useSearchState.d.ts +0 -80
  928. package/lib/components/pisellLookup/index.d.ts +0 -6
  929. package/lib/components/pisellLookup/types.d.ts +0 -667
  930. package/lib/components/pisellLookup/utils/index.d.ts +0 -5
  931. package/lib/components/pisellLookup/utils/storage.d.ts +0 -42
  932. package/lib/components/pisellLookup/utils/trigger.d.ts +0 -42
  933. package/lib/components/pisellMetricCard/PisellMetricCard.d.ts +0 -35
  934. package/lib/components/pisellMetricCard/PisellMetricCard.stories.d.ts +0 -17
  935. package/lib/components/pisellMetricCard/components/MetricComparison.d.ts +0 -14
  936. package/lib/components/pisellMetricCard/components/MetricTitle.d.ts +0 -12
  937. package/lib/components/pisellMetricCard/components/MetricValue.d.ts +0 -12
  938. package/lib/components/pisellMetricCard/components/TrendIcon.d.ts +0 -14
  939. package/lib/components/pisellMetricCard/components/index.d.ts +0 -7
  940. package/lib/components/pisellMetricCard/index.d.ts +0 -6
  941. package/lib/components/pisellMetricCard/types.d.ts +0 -201
  942. package/lib/components/pisellMetricCard/utils/calculateTrend.d.ts +0 -14
  943. package/lib/components/pisellMetricCard/utils/formatMetricValue.d.ts +0 -34
  944. package/lib/components/pisellMetricCard/utils/index.d.ts +0 -5
  945. package/lib/components/pisellModal/index.d.ts +0 -62
  946. package/lib/components/pisellMultipleSelect/PisellMultipleSelect.d.ts +0 -9
  947. package/lib/components/pisellMultipleSelect/PisellMultipleSelect.stories.d.ts +0 -70
  948. package/lib/components/pisellMultipleSelect/components/DisabledView.d.ts +0 -8
  949. package/lib/components/pisellMultipleSelect/components/EditView.d.ts +0 -8
  950. package/lib/components/pisellMultipleSelect/components/ReadOnlyView.d.ts +0 -8
  951. package/lib/components/pisellMultipleSelect/index.d.ts +0 -7
  952. package/lib/components/pisellMultipleSelect/types.d.ts +0 -160
  953. package/lib/components/pisellNumber/PisellNumber.d.ts +0 -42
  954. package/lib/components/pisellNumber/PisellNumber.stories.d.ts +0 -66
  955. package/lib/components/pisellNumber/components/DisabledView.d.ts +0 -11
  956. package/lib/components/pisellNumber/components/EditView.d.ts +0 -18
  957. package/lib/components/pisellNumber/components/ReadOnlyView.d.ts +0 -16
  958. package/lib/components/pisellNumber/components/index.d.ts +0 -6
  959. package/lib/components/pisellNumber/index.d.ts +0 -7
  960. package/lib/components/pisellNumber/types.d.ts +0 -168
  961. package/lib/components/pisellPercent/PisellPercent.d.ts +0 -38
  962. package/lib/components/pisellPercent/PisellPercent.stories.d.ts +0 -52
  963. package/lib/components/pisellPercent/components/DisabledView.d.ts +0 -11
  964. package/lib/components/pisellPercent/components/EditView.d.ts +0 -17
  965. package/lib/components/pisellPercent/components/ReadOnlyView.d.ts +0 -14
  966. package/lib/components/pisellPercent/components/index.d.ts +0 -6
  967. package/lib/components/pisellPercent/index.d.ts +0 -7
  968. package/lib/components/pisellPercent/types.d.ts +0 -68
  969. package/lib/components/pisellPercent/utils/index.d.ts +0 -6
  970. package/lib/components/pisellPercent/utils/percentFormatter.d.ts +0 -27
  971. package/lib/components/pisellPercent/utils/rangeConverter.d.ts +0 -36
  972. package/lib/components/pisellPhone/PisellPhone.d.ts +0 -36
  973. package/lib/components/pisellPhone/PisellPhone.stories.d.ts +0 -80
  974. package/lib/components/pisellPhone/components/DisabledView.d.ts +0 -16
  975. package/lib/components/pisellPhone/components/EditView.d.ts +0 -19
  976. package/lib/components/pisellPhone/components/ReadOnlyView.d.ts +0 -17
  977. package/lib/components/pisellPhone/constants/countryCodes.d.ts +0 -20
  978. package/lib/components/pisellPhone/index.d.ts +0 -8
  979. package/lib/components/pisellPhone/types.d.ts +0 -209
  980. package/lib/components/pisellPhone/utils/countryCodeHelper.d.ts +0 -35
  981. package/lib/components/pisellPhone/utils/index.d.ts +0 -6
  982. package/lib/components/pisellPhone/utils/phoneFormatter.d.ts +0 -39
  983. package/lib/components/pisellPhone/utils/phoneValidator.d.ts +0 -11
  984. package/lib/components/pisellQuickFilter/index.d.ts +0 -11
  985. package/lib/components/pisellQuickFilter/type.d.ts +0 -12
  986. package/lib/components/pisellRating/PisellRating.d.ts +0 -31
  987. package/lib/components/pisellRating/PisellRating.stories.d.ts +0 -53
  988. package/lib/components/pisellRating/index.d.ts +0 -7
  989. package/lib/components/pisellRating/types.d.ts +0 -124
  990. package/lib/components/pisellRecordBoard/shellFrame/Calendar/calendarI18n.d.ts +0 -4
  991. package/lib/components/pisellRecordBoard/shellFrame/Calendar/calendarPersistGuard.d.ts +0 -18
  992. package/lib/components/pisellRecordBoard/shellFrame/Calendar/const/bookingCalendarConstants.d.ts +0 -36
  993. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/NoteTicker.d.ts +0 -14
  994. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanelLayoutTab.d.ts +0 -28
  995. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallViewportToolbar.d.ts +0 -18
  996. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/resourceWallConstants.d.ts +0 -2
  997. package/lib/components/pisellReservationSchedule/PisellReservationSchedule.d.ts +0 -10
  998. package/lib/components/pisellReservationSchedule/PisellReservationSchedule.stories.d.ts +0 -12
  999. package/lib/components/pisellReservationSchedule/index.d.ts +0 -2
  1000. package/lib/components/pisellReservationSchedule/locales.d.ts +0 -43
  1001. package/lib/components/pisellReservationSchedule/types.d.ts +0 -52
  1002. package/lib/components/pisellReservationScheduleBand/PisellReservationScheduleBand.d.ts +0 -10
  1003. package/lib/components/pisellReservationScheduleBand/PisellReservationScheduleBand.stories.d.ts +0 -16
  1004. package/lib/components/pisellReservationScheduleBand/index.d.ts +0 -2
  1005. package/lib/components/pisellReservationScheduleBand/types.d.ts +0 -61
  1006. package/lib/components/pisellRow/index.d.ts +0 -22
  1007. package/lib/components/pisellShellFrame/PisellShellFrame.stories.d.ts +0 -15
  1008. package/lib/components/pisellShellFrame/index.d.ts +0 -2
  1009. package/lib/components/pisellSingleLineText/PisellSingleLineText.d.ts +0 -40
  1010. package/lib/components/pisellSingleLineText/PisellSingleLineText.stories.d.ts +0 -102
  1011. package/lib/components/pisellSingleLineText/components/DisabledView.d.ts +0 -16
  1012. package/lib/components/pisellSingleLineText/components/EditView.d.ts +0 -19
  1013. package/lib/components/pisellSingleLineText/components/ReadOnlyView.d.ts +0 -20
  1014. package/lib/components/pisellSingleLineText/index.d.ts +0 -7
  1015. package/lib/components/pisellSingleLineText/types.d.ts +0 -139
  1016. package/lib/components/pisellSingleSelect/PisellSingleSelect.d.ts +0 -9
  1017. package/lib/components/pisellSingleSelect/PisellSingleSelect.stories.d.ts +0 -66
  1018. package/lib/components/pisellSingleSelect/components/DisabledView.d.ts +0 -8
  1019. package/lib/components/pisellSingleSelect/components/EditView.d.ts +0 -8
  1020. package/lib/components/pisellSingleSelect/components/ReadOnlyView.d.ts +0 -8
  1021. package/lib/components/pisellSingleSelect/index.d.ts +0 -7
  1022. package/lib/components/pisellSingleSelect/types.d.ts +0 -92
  1023. package/lib/components/pisellSort/index.d.ts +0 -3
  1024. package/lib/components/pisellSort/type.d.ts +0 -7
  1025. package/lib/components/pisellText/components/Amount/index.d.ts +0 -20
  1026. package/lib/components/pisellTimeNavigator/PisellTimeNavigator.stories.d.ts +0 -79
  1027. package/lib/components/pisellTimeNavigator/components/BackgroundLayer.d.ts +0 -14
  1028. package/lib/components/pisellTimeNavigator/components/NowButton.d.ts +0 -14
  1029. package/lib/components/pisellTimeNavigator/components/ScaleLayer.d.ts +0 -22
  1030. package/lib/components/pisellTimeNavigator/components/index.d.ts +0 -5
  1031. package/lib/components/pisellTimeNavigator/hooks/index.d.ts +0 -5
  1032. package/lib/components/pisellTimeNavigator/hooks/useDragInertia.d.ts +0 -14
  1033. package/lib/components/pisellTimeNavigator/hooks/useRealtime.d.ts +0 -5
  1034. package/lib/components/pisellTimeNavigator/hooks/useTimeAxis.d.ts +0 -27
  1035. package/lib/components/pisellTimeNavigator/index.d.ts +0 -5
  1036. package/lib/components/pisellTimeNavigator/locales.d.ts +0 -22
  1037. package/lib/components/pisellTimeNavigator/types.d.ts +0 -160
  1038. package/lib/components/pisellTimeNavigator/utils/index.d.ts +0 -41
  1039. package/lib/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.d.ts +0 -32
  1040. package/lib/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.stories.d.ts +0 -61
  1041. package/lib/components/pisellTimeRangeDisplay/components/DateBlock.d.ts +0 -20
  1042. package/lib/components/pisellTimeRangeDisplay/components/DurationBlock.d.ts +0 -19
  1043. package/lib/components/pisellTimeRangeDisplay/components/TimeRangeBlock.d.ts +0 -30
  1044. package/lib/components/pisellTimeRangeDisplay/components/WeekdayBlock.d.ts +0 -18
  1045. package/lib/components/pisellTimeRangeDisplay/components/index.d.ts +0 -8
  1046. package/lib/components/pisellTimeRangeDisplay/index.d.ts +0 -3
  1047. package/lib/components/pisellTimeRangeDisplay/types.d.ts +0 -137
  1048. package/lib/components/pisellTimeRangeDisplay/utils/formatDuration.d.ts +0 -14
  1049. package/lib/components/pisellTimeRangeDisplay/utils/index.d.ts +0 -4
  1050. package/lib/components/pisellTimeRangeDisplay/utils/parseTimeRange.d.ts +0 -23
  1051. package/lib/components/pisellToast/index.d.ts +0 -17
  1052. package/lib/components/pisellToast/squareToast/index.d.ts +0 -15
  1053. package/lib/components/pisellToast/squareToast/methods.d.ts +0 -13
  1054. package/lib/components/pisellToast/squareToast/renderImperatively.d.ts +0 -28
  1055. package/lib/components/pisellToast/squareToast/toast.d.ts +0 -25
  1056. package/lib/components/pisellUrl/PisellUrl.d.ts +0 -37
  1057. package/lib/components/pisellUrl/PisellUrl.stories.d.ts +0 -108
  1058. package/lib/components/pisellUrl/components/DisabledView.d.ts +0 -14
  1059. package/lib/components/pisellUrl/components/EditView.d.ts +0 -15
  1060. package/lib/components/pisellUrl/components/ReadOnlyView.d.ts +0 -15
  1061. package/lib/components/pisellUrl/index.d.ts +0 -7
  1062. package/lib/components/pisellUrl/types.d.ts +0 -160
  1063. package/lib/components/pisellUrl/utils/index.d.ts +0 -6
  1064. package/lib/components/pisellUrl/utils/urlFormatter.d.ts +0 -38
  1065. package/lib/components/pisellUrl/utils/urlHelper.d.ts +0 -63
  1066. package/lib/components/pisellUrl/utils/urlValidator.d.ts +0 -46
  1067. package/lib/components/productCard/cartSkuCard/components/AmountFooter/index.d.ts +0 -3
  1068. package/lib/components/productCard/cartSkuCard/components/Gift/index.d.ts +0 -4
  1069. package/lib/components/productCard/cartSkuCard/components/Gift/types.d.ts +0 -29
  1070. package/lib/components/productCard/cartSkuCard/components/MultiDay/index.d.ts +0 -3
  1071. package/lib/components/productCard/cartSkuCard/components/MultiDay/utils.d.ts +0 -14
  1072. package/lib/components/productCard/cartSkuCard/components/Note/index.d.ts +0 -3
  1073. package/lib/components/productCard/cartSkuCard/components/Promotion/index.d.ts +0 -6
  1074. package/lib/components/productCard/cartSkuCard/components/basicInfo/index.d.ts +0 -36
  1075. package/lib/components/productCard/cartSkuCard/components/discountReason/index.d.ts +0 -2
  1076. package/lib/components/productCard/cartSkuCard/components/holders/index.d.ts +0 -3
  1077. package/lib/components/productCard/cartSkuCard/components/packages/index.d.ts +0 -11
  1078. package/lib/components/productCard/cartSkuCard/components/packages/utils.d.ts +0 -20
  1079. package/lib/components/productCard/cartSkuCard/components/resources/index.d.ts +0 -3
  1080. package/lib/components/productCard/cartSkuCard/components/sales/index.d.ts +0 -12
  1081. package/lib/components/productCard/cartSkuCard/components/specs/index.d.ts +0 -21
  1082. package/lib/components/productCard/cartSkuCard/components/swipeAction/index.d.ts +0 -46
  1083. package/lib/components/productCard/cartSkuCard/components/timeRange/index.d.ts +0 -8
  1084. package/lib/components/productCard/cartSkuCard/components/weighing/index.d.ts +0 -18
  1085. package/lib/components/productCard/cartSkuCard/index.d.ts +0 -10
  1086. package/lib/components/productCard/cartSkuCard/locales.d.ts +0 -198
  1087. package/lib/components/productCard/components/Action/index.d.ts +0 -4
  1088. package/lib/components/productCard/components/Header/EditButton/index.d.ts +0 -3
  1089. package/lib/components/productCard/components/Header/index.d.ts +0 -3
  1090. package/lib/components/productCard/components/Sales/index.d.ts +0 -3
  1091. package/lib/components/productCard/components/Time/components/SelectHolder/index.d.ts +0 -3
  1092. package/lib/components/productCard/components/Time/components/SelectHolderModal/index.d.ts +0 -13
  1093. package/lib/components/productCard/components/Time/components/SelectHolderMultiple/index.d.ts +0 -2
  1094. package/lib/components/productCard/locales.d.ts +0 -138
  1095. package/lib/components/productCard/status.d.ts +0 -32
  1096. package/lib/components/productCard/types.d.ts +0 -95
  1097. package/lib/components/productCard/utils.d.ts +0 -33
  1098. package/lib/components/select/index.d.ts +0 -9
  1099. package/lib/components/select-time/index.d.ts +0 -13
  1100. package/lib/components/sort/index.d.ts +0 -5
  1101. package/lib/components/sort/types.d.ts +0 -39
  1102. package/lib/components/table/Actions/component/GallerySetting/index.d.ts +0 -8
  1103. package/lib/components/table/Actions/component/ViewMode/index.d.ts +0 -8
  1104. package/lib/components/table/Table/AddFieldModal/index.d.ts +0 -4
  1105. package/lib/components/table/Table/fields/select/Edit/index.d.ts +0 -4
  1106. package/lib/components/table/Table/fields/types/index.d.ts +0 -33
  1107. package/lib/components/table/index.d.ts +0 -4
  1108. package/lib/components/virtual-keyboard/Amount/index.d.ts +0 -5
  1109. package/lib/components/virtual-keyboard/Amount/themeConfig.d.ts +0 -32
  1110. package/lib/components/virtual-keyboard/Amount/types.d.ts +0 -44
  1111. package/lib/components/virtual-keyboard/BaseNumberKeyboard/Presets.d.ts +0 -15
  1112. package/lib/components/virtual-keyboard/BaseNumberKeyboard/index.d.ts +0 -25
  1113. package/lib/components/virtual-keyboard/Keyboard/index.d.ts +0 -21
  1114. package/lib/components/virtual-keyboard/Number/index.d.ts +0 -5
  1115. package/lib/components/virtual-keyboard/Number/themeConfig.d.ts +0 -32
  1116. package/lib/components/virtual-keyboard/Number/types.d.ts +0 -26
  1117. package/lib/components/virtual-keyboard/VirtualKeyInput/index.d.ts +0 -13
  1118. package/lib/components/virtual-keyboard/index.d.ts +0 -25
  1119. package/lib/components/virtualInput/BaseVirtualInput/index.d.ts +0 -44
  1120. package/lib/components/virtualInput/index.d.ts +0 -29
  1121. package/lib/hooks/useMobile.d.ts +0 -8
  1122. package/lib/hooks/useThemeTokens.d.ts +0 -7
  1123. package/lib/theme/tokens.d.ts +0 -22
  1124. package/lib/utils/tagColor.d.ts +0 -7
@@ -1,3 +1,3 @@
1
1
  *,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,0.5);--tw-ring-offset-shadow:0 0 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,0.5);--tw-ring-offset-shadow:0 0 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }
2
2
 
3
- /*! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder, textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.\!container{width:100%!important}.container{width:100%}@media (min-width:640px){.\!container{max-width:640px!important}.container{max-width:640px}}@media (min-width:768px){.\!container{max-width:768px!important}.container{max-width:768px}}@media (min-width:1024px){.\!container{max-width:1024px!important}.container{max-width:1024px}}@media (min-width:1280px){.\!container{max-width:1280px!important}.container{max-width:1280px}}@media (min-width:1536px){.\!container{max-width:1536px!important}.container{max-width:1536px}}.pointer-events-none{pointer-events:none!important}.\!visible,.visible{visibility:visible!important}.collapse{visibility:collapse!important}.static{position:static!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.sticky{position:sticky!important}.inset-0{inset:0!important}.inset-6{inset:1.5rem!important}.inset-x-0{left:0!important;right:0!important}.inset-y-0{top:0!important;bottom:0!important}.bottom-6{bottom:1.5rem!important}.left-0{left:0!important}.left-1\/2{left:50%!important}.left-3{left:.75rem!important}.right-0{right:0!important}.right-3{right:.75rem!important}.top-0{top:0!important}.top-2{top:.5rem!important}.top-3{top:.75rem!important}.top-\[60px\]{top:60px!important}.isolate{isolation:isolate!important}.z-20{z-index:20!important}.z-30{z-index:30!important}.z-50{z-index:50!important}.z-\[25\]{z-index:25!important}.z-\[26\]{z-index:26!important}.z-\[60\]{z-index:60!important}.z-\[69\]{z-index:69!important}.z-\[72\]{z-index:72!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:.75rem!important}.mb-4{margin-bottom:1rem!important}.mt-0\.5{margin-top:.125rem!important}.mt-1{margin-top:.25rem!important}.mt-10{margin-top:2.5rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:.75rem!important}.mt-5{margin-top:1.25rem!important}.mt-6{margin-top:1.5rem!important}.mt-8{margin-top:2rem!important}.mt-auto{margin-top:auto!important}.block{display:block!important}.inline-block{display:inline-block!important}.inline{display:inline!important}.flex{display:flex!important}.inline-flex{display:inline-flex!important}.table{display:table!important}.grid{display:grid!important}.contents{display:contents!important}.hidden{display:none!important}.h-10{height:2.5rem!important}.h-2\.5{height:.625rem!important}.h-3{height:.75rem!important}.h-\[52px\]{height:52px!important}.h-full{height:100%!important}.max-h-\[360px\]{max-height:360px!important}.max-h-\[72vh\]{max-height:72vh!important}.max-h-\[78vh\]{max-height:78vh!important}.max-h-\[92vh\]{max-height:92vh!important}.max-h-none{max-height:none!important}.min-h-0{min-height:0!important}.min-h-\[148px\]{min-height:148px!important}.w-14{width:3.5rem!important}.w-2\.5{width:.625rem!important}.w-3{width:.75rem!important}.w-\[132px\]{width:132px!important}.w-\[2px\]{width:2px!important}.w-\[52px\]{width:52px!important}.w-fit{width:-moz-fit-content!important;width:fit-content!important}.w-full{width:100%!important}.min-w-0{min-width:0!important}.min-w-\[132px\]{min-width:132px!important}.min-w-\[240px\]{min-width:240px!important}.min-w-\[980px\]{min-width:980px!important}.max-w-\[132px\]{max-width:132px!important}.max-w-\[260px\]{max-width:260px!important}.max-w-\[520px\]{max-width:520px!important}.max-w-\[720px\]{max-width:720px!important}.max-w-\[900px\]{max-width:900px!important}.max-w-\[92vw\]{max-width:92vw!important}.max-w-\[980px\]{max-width:980px!important}.max-w-full{max-width:100%!important}.max-w-none{max-width:none!important}.flex-1{flex:1 1 0%!important}.flex-shrink{flex-shrink:1!important}.shrink-0{flex-shrink:0!important}.flex-grow{flex-grow:1!important}.border-collapse{border-collapse:collapse!important}.-translate-x-1\/2{--tw-translate-x:-50%!important}.-rotate-90,.-translate-x-1\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.-rotate-90{--tw-rotate:-90deg!important}.rotate-0{--tw-rotate:0deg!important}.rotate-0,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.cursor-grab{cursor:grab!important}.cursor-grabbing{cursor:grabbing!important}.cursor-pointer{cursor:pointer!important}.touch-pan-x{--tw-pan-x:pan-x!important}.touch-pan-x,.touch-pan-y{touch-action:var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)!important}.touch-pan-y{--tw-pan-y:pan-y!important}.select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.select-text{-webkit-user-select:text!important;-moz-user-select:text!important;user-select:text!important}.select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.resize-none{resize:none!important}.resize{resize:both!important}.auto-rows-\[255px\]{grid-auto-rows:255px!important}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))!important}.grid-cols-\[0\.8fr_1fr_1\.3fr_0\.9fr_0\.9fr\]{grid-template-columns:.8fr 1fr 1.3fr .9fr .9fr!important}.flex-col{flex-direction:column!important}.flex-col-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.items-start{align-items:flex-start!important}.items-end{align-items:flex-end!important}.items-center{align-items:center!important}.items-stretch{align-items:stretch!important}.justify-start{justify-content:flex-start!important}.justify-end{justify-content:flex-end!important}.justify-center{justify-content:center!important}.justify-between{justify-content:space-between!important}.gap-0\.5{gap:.125rem!important}.gap-1{gap:.25rem!important}.gap-1\.5{gap:.375rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:.75rem!important}.gap-4{gap:1rem!important}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-top:calc(0.25rem*(1 - var(--tw-space-y-reverse)))!important;margin-bottom:calc(0.25rem*var(--tw-space-y-reverse))!important}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))!important;margin-bottom:calc(1rem*var(--tw-space-y-reverse))!important}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))!important;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse))!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-y-auto{overflow-y:auto!important}.overscroll-contain{overscroll-behavior:contain!important}.truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.break-all{word-break:break-all!important}.rounded{border-radius:.25rem!important}.rounded-2xl{border-radius:1rem!important}.rounded-3xl{border-radius:1.5rem!important}.rounded-\[28px\]{border-radius:28px!important}.rounded-\[30px\]{border-radius:30px!important}.rounded-full{border-radius:9999px!important}.rounded-lg{border-radius:.5rem!important}.rounded-md{border-radius:.375rem!important}.rounded-xl{border-radius:.75rem!important}.rounded-t-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.border{border-width:1px!important}.border-b{border-bottom-width:1px!important}.border-b-4{border-bottom-width:4px!important}.border-l{border-left-width:1px!important}.border-r{border-right-width:1px!important}.border-dashed{border-style:dashed!important}.border-\[\#d8d0eb\]{--tw-border-opacity:1!important;border-color:rgb(216 208 235/var(--tw-border-opacity,1))!important}.border-\[var\(--border-strong\)\]{border-color:var(--border-strong)!important}.border-\[var\(--brand-light\)\]{border-color:var(--brand-light)!important}.border-amber-200\/35{border-color:rgba(253,230,138,.35)!important}.border-amber-400\/80{border-color:rgba(251,191,36,.8)!important}.border-amber-400\/95{border-color:rgba(251,191,36,.95)!important}.border-cyan-300\/35{border-color:rgba(103,232,249,.35)!important}.border-emerald-300\/35{border-color:rgba(110,231,183,.35)!important}.border-red-200{--tw-border-opacity:1!important;border-color:rgb(254 202 202/var(--tw-border-opacity,1))!important}.border-red-300\/35{border-color:rgba(252,165,165,.35)!important}.border-red-300\/55{border-color:rgba(252,165,165,.55)!important}.border-red-400{--tw-border-opacity:1!important;border-color:rgb(248 113 113/var(--tw-border-opacity,1))!important}.border-red-400\/75{border-color:rgba(248,113,113,.75)!important}.border-red-500\/70{border-color:rgba(239,68,68,.7)!important}.border-red-700\/50{border-color:rgba(185,28,28,.5)!important}.border-red-800\/40{border-color:rgba(153,27,27,.4)!important}.border-slate-200{--tw-border-opacity:1!important;border-color:rgb(226 232 240/var(--tw-border-opacity,1))!important}.border-slate-700{--tw-border-opacity:1!important;border-color:rgb(51 65 85/var(--tw-border-opacity,1))!important}.border-slate-800{--tw-border-opacity:1!important;border-color:rgb(30 41 59/var(--tw-border-opacity,1))!important}.border-violet-300{--tw-border-opacity:1!important;border-color:rgb(196 181 253/var(--tw-border-opacity,1))!important}.border-violet-300\/30{border-color:rgba(196,181,253,.3)!important}.border-violet-400{--tw-border-opacity:1!important;border-color:rgb(167 139 250/var(--tw-border-opacity,1))!important}.border-violet-400\/20{border-color:rgba(167,139,250,.2)!important}.border-violet-500\/30{border-color:rgba(139,92,246,.3)!important}.border-white\/10{border-color:hsla(0,0%,100%,.1)!important}.border-zinc-300\/30{border-color:rgba(212,212,216,.3)!important}.border-zinc-300\/45{border-color:rgba(212,212,216,.45)!important}.border-zinc-400\/45{border-color:rgba(161,161,170,.45)!important}.border-zinc-500\/70{border-color:rgba(113,113,122,.7)!important}.border-zinc-600{--tw-border-opacity:1!important;border-color:rgb(82 82 91/var(--tw-border-opacity,1))!important}.border-zinc-700{--tw-border-opacity:1!important;border-color:rgb(63 63 70/var(--tw-border-opacity,1))!important}.border-zinc-800{--tw-border-opacity:1!important;border-color:rgb(39 39 42/var(--tw-border-opacity,1))!important}.border-zinc-800\/80{border-color:rgba(39,39,42,.8)!important}.border-b-transparent{border-bottom-color:transparent!important}.border-l-transparent{border-left-color:transparent!important}.bg-\[\#101117\]{--tw-bg-opacity:1!important;background-color:rgb(16 17 23/var(--tw-bg-opacity,1))!important}.bg-\[\#111217\]{--tw-bg-opacity:1!important;background-color:rgb(17 18 23/var(--tw-bg-opacity,1))!important}.bg-\[\#111218\]{--tw-bg-opacity:1!important;background-color:rgb(17 18 24/var(--tw-bg-opacity,1))!important}.bg-\[\#121217\]{--tw-bg-opacity:1!important;background-color:rgb(18 18 23/var(--tw-bg-opacity,1))!important}.bg-\[\#151220\]{--tw-bg-opacity:1!important;background-color:rgb(21 18 32/var(--tw-bg-opacity,1))!important}.bg-\[\#151a2f\]{--tw-bg-opacity:1!important;background-color:rgb(21 26 47/var(--tw-bg-opacity,1))!important}.bg-\[\#171820\]{--tw-bg-opacity:1!important;background-color:rgb(23 24 32/var(--tw-bg-opacity,1))!important}.bg-\[\#1a1a22\]{--tw-bg-opacity:1!important;background-color:rgb(26 26 34/var(--tw-bg-opacity,1))!important}.bg-\[\#1a1b21\]{--tw-bg-opacity:1!important;background-color:rgb(26 27 33/var(--tw-bg-opacity,1))!important}.bg-\[\#1c1630\]{--tw-bg-opacity:1!important;background-color:rgb(28 22 48/var(--tw-bg-opacity,1))!important}.bg-\[\#1e1a32\]{--tw-bg-opacity:1!important;background-color:rgb(30 26 50/var(--tw-bg-opacity,1))!important}.bg-\[\#241d40\]{--tw-bg-opacity:1!important;background-color:rgb(36 29 64/var(--tw-bg-opacity,1))!important}.bg-\[var\(--bg-input\)\]{background-color:var(--bg-input)!important}.bg-\[var\(--brand-surface\)\]{background-color:var(--brand-surface)!important}.bg-amber-500{--tw-bg-opacity:1!important;background-color:rgb(245 158 11/var(--tw-bg-opacity,1))!important}.bg-black\/25{background-color:rgba(0,0,0,.25)!important}.bg-black\/45{background-color:rgba(0,0,0,.45)!important}.bg-black\/55{background-color:rgba(0,0,0,.55)!important}.bg-cyan-500{--tw-bg-opacity:1!important;background-color:rgb(6 182 212/var(--tw-bg-opacity,1))!important}.bg-emerald-400\/95{background-color:rgba(52,211,153,.95)!important}.bg-emerald-500{--tw-bg-opacity:1!important;background-color:rgb(16 185 129/var(--tw-bg-opacity,1))!important}.bg-emerald-600{--tw-bg-opacity:1!important;background-color:rgb(5 150 105/var(--tw-bg-opacity,1))!important}.bg-red-50{background-color:rgb(254 242 242/var(--tw-bg-opacity,1))!important}.bg-red-50,.bg-red-500{--tw-bg-opacity:1!important}.bg-red-500{background-color:rgb(239 68 68/var(--tw-bg-opacity,1))!important}.bg-red-500\/25{background-color:rgba(239,68,68,.25)!important}.bg-red-500\/85{background-color:rgba(239,68,68,.85)!important}.bg-red-600{--tw-bg-opacity:1!important;background-color:rgb(220 38 38/var(--tw-bg-opacity,1))!important}.bg-red-700\/70{background-color:rgba(185,28,28,.7)!important}.bg-red-900\/50{background-color:rgba(127,29,29,.5)!important}.bg-red-950\/30{background-color:rgba(69,10,10,.3)!important}.bg-sky-500{background-color:rgb(14 165 233/var(--tw-bg-opacity,1))!important}.bg-sky-500,.bg-slate-100{--tw-bg-opacity:1!important}.bg-slate-100{background-color:rgb(241 245 249/var(--tw-bg-opacity,1))!important}.bg-slate-50{--tw-bg-opacity:1!important;background-color:rgb(248 250 252/var(--tw-bg-opacity,1))!important}.bg-slate-900{--tw-bg-opacity:1!important;background-color:rgb(15 23 42/var(--tw-bg-opacity,1))!important}.bg-slate-900\/40{background-color:rgba(15,23,42,.4)!important}.bg-slate-950{--tw-bg-opacity:1!important;background-color:rgb(2 6 23/var(--tw-bg-opacity,1))!important}.bg-transparent{background-color:transparent!important}.bg-violet-100{--tw-bg-opacity:1!important;background-color:rgb(237 233 254/var(--tw-bg-opacity,1))!important}.bg-violet-200{--tw-bg-opacity:1!important;background-color:rgb(221 214 254/var(--tw-bg-opacity,1))!important}.bg-violet-50{--tw-bg-opacity:1!important;background-color:rgb(245 243 255/var(--tw-bg-opacity,1))!important}.bg-violet-500{--tw-bg-opacity:1!important;background-color:rgb(139 92 246/var(--tw-bg-opacity,1))!important}.bg-violet-600{--tw-bg-opacity:1!important;background-color:rgb(124 58 237/var(--tw-bg-opacity,1))!important}.bg-violet-600\/10{background-color:rgba(124,58,237,.1)!important}.bg-violet-700\/90{background-color:rgba(109,40,217,.9)!important}.bg-violet-900{--tw-bg-opacity:1!important;background-color:rgb(76 29 149/var(--tw-bg-opacity,1))!important}.bg-violet-900\/20{background-color:rgba(76,29,149,.2)!important}.bg-white{--tw-bg-opacity:1!important;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))!important}.bg-white\/10{background-color:hsla(0,0%,100%,.1)!important}.bg-zinc-500\/90{background-color:rgba(113,113,122,.9)!important}.bg-zinc-600{--tw-bg-opacity:1!important;background-color:rgb(82 82 91/var(--tw-bg-opacity,1))!important}.bg-zinc-600\/90{background-color:rgba(82,82,91,.9)!important}.bg-zinc-700\/55{background-color:rgba(63,63,70,.55)!important}.bg-zinc-700\/70{background-color:rgba(63,63,70,.7)!important}.bg-zinc-800{--tw-bg-opacity:1!important;background-color:rgb(39 39 42/var(--tw-bg-opacity,1))!important}.bg-zinc-800\/80{background-color:rgba(39,39,42,.8)!important}.bg-zinc-800\/90{background-color:rgba(39,39,42,.9)!important}.bg-zinc-900{--tw-bg-opacity:1!important;background-color:rgb(24 24 27/var(--tw-bg-opacity,1))!important}.bg-gradient-to-b{background-image:linear-gradient(180deg,var(--tw-gradient-stops))!important}.from-\[\#252038\]{--tw-gradient-from:#252038 var(--tw-gradient-from-position)!important;--tw-gradient-to:rgba(37,32,56,0) var(--tw-gradient-to-position)!important}.from-\[\#252038\],.from-slate-100{--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)!important}.from-slate-100{--tw-gradient-from:#f1f5f9 var(--tw-gradient-from-position)!important;--tw-gradient-to:rgba(241,245,249,0) var(--tw-gradient-to-position)!important}.to-\[\#1a1628\]{--tw-gradient-to:#1a1628 var(--tw-gradient-to-position)!important}.to-slate-50{--tw-gradient-to:#f8fafc var(--tw-gradient-to-position)!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:.75rem!important}.p-4{padding:1rem!important}.p-5{padding:1.25rem!important}.p-6{padding:1.5rem!important}.px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.px-3{padding-left:.75rem!important;padding-right:.75rem!important}.px-4{padding-left:1rem!important;padding-right:1rem!important}.px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.py-0\.5{padding-top:.125rem!important;padding-bottom:.125rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-1\.5{padding-top:.375rem!important;padding-bottom:.375rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-2\.5{padding-top:.625rem!important;padding-bottom:.625rem!important}.py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-4{padding-top:1rem!important;padding-bottom:1rem!important}.pl-4{padding-left:1rem!important}.pr-11{padding-right:2.75rem!important}.pt-1{padding-top:.25rem!important}.text-left{text-align:left!important}.text-center{text-align:center!important}.text-right{text-align:right!important}.align-top{vertical-align:top!important}.text-2xl{font-size:1.5rem!important;line-height:2rem!important}.text-3xl{font-size:1.875rem!important;line-height:2.25rem!important}.text-4xl{font-size:2.25rem!important;line-height:2.5rem!important}.text-\[10px\]{font-size:10px!important}.text-\[11px\]{font-size:11px!important}.text-\[13px\]{font-size:13px!important}.text-\[16px\]{font-size:16px!important}.text-\[20px\]{font-size:20px!important}.text-\[22px\]{font-size:22px!important}.text-base{font-size:1rem!important;line-height:1.5rem!important}.text-sm{font-size:.875rem!important;line-height:1.25rem!important}.text-xl{font-size:1.25rem!important;line-height:1.75rem!important}.text-xs{font-size:.75rem!important;line-height:1rem!important}.font-medium{font-weight:500!important}.font-semibold{font-weight:600!important}.uppercase{text-transform:uppercase!important}.lowercase{text-transform:lowercase!important}.tabular-nums{--tw-numeric-spacing:tabular-nums!important;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)!important}.leading-none{line-height:1!important}.leading-snug{line-height:1.375!important}.leading-tight{line-height:1.25!important}.tracking-\[0\.14em\]{letter-spacing:.14em!important}.tracking-\[0\.24em\]{letter-spacing:.24em!important}.tracking-tight{letter-spacing:-.025em!important}.text-\[\#8f86a9\]{--tw-text-opacity:1!important;color:rgb(143 134 169/var(--tw-text-opacity,1))!important}.text-amber-300{--tw-text-opacity:1!important;color:rgb(252 211 77/var(--tw-text-opacity,1))!important}.text-amber-600{--tw-text-opacity:1!important;color:rgb(217 119 6/var(--tw-text-opacity,1))!important}.text-red-100{color:rgb(254 226 226/var(--tw-text-opacity,1))!important}.text-red-100,.text-red-300{--tw-text-opacity:1!important}.text-red-300{color:rgb(252 165 165/var(--tw-text-opacity,1))!important}.text-red-600{--tw-text-opacity:1!important;color:rgb(220 38 38/var(--tw-text-opacity,1))!important}.text-slate-100{--tw-text-opacity:1!important;color:rgb(241 245 249/var(--tw-text-opacity,1))!important}.text-slate-200{--tw-text-opacity:1!important;color:rgb(226 232 240/var(--tw-text-opacity,1))!important}.text-slate-300{--tw-text-opacity:1!important;color:rgb(203 213 225/var(--tw-text-opacity,1))!important}.text-slate-400{--tw-text-opacity:1!important;color:rgb(148 163 184/var(--tw-text-opacity,1))!important}.text-slate-500{--tw-text-opacity:1!important;color:rgb(100 116 139/var(--tw-text-opacity,1))!important}.text-slate-600{--tw-text-opacity:1!important;color:rgb(71 85 105/var(--tw-text-opacity,1))!important}.text-slate-700{--tw-text-opacity:1!important;color:rgb(51 65 85/var(--tw-text-opacity,1))!important}.text-slate-800{--tw-text-opacity:1!important;color:rgb(30 41 59/var(--tw-text-opacity,1))!important}.text-slate-900{--tw-text-opacity:1!important;color:rgb(15 23 42/var(--tw-text-opacity,1))!important}.text-violet-100{--tw-text-opacity:1!important;color:rgb(237 233 254/var(--tw-text-opacity,1))!important}.text-violet-200{--tw-text-opacity:1!important;color:rgb(221 214 254/var(--tw-text-opacity,1))!important}.text-violet-300{--tw-text-opacity:1!important;color:rgb(196 181 253/var(--tw-text-opacity,1))!important}.text-violet-50{--tw-text-opacity:1!important;color:rgb(245 243 255/var(--tw-text-opacity,1))!important}.text-violet-800{--tw-text-opacity:1!important;color:rgb(91 33 182/var(--tw-text-opacity,1))!important}.text-white{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity,1))!important}.text-white\/90{color:hsla(0,0%,100%,.9)!important}.text-zinc-100{--tw-text-opacity:1!important;color:rgb(244 244 245/var(--tw-text-opacity,1))!important}.text-zinc-200{--tw-text-opacity:1!important;color:rgb(228 228 231/var(--tw-text-opacity,1))!important}.text-zinc-200\/90{color:rgba(228,228,231,.9)!important}.text-zinc-300{--tw-text-opacity:1!important;color:rgb(212 212 216/var(--tw-text-opacity,1))!important}.text-zinc-300\/80{color:rgba(212,212,216,.8)!important}.text-zinc-300\/90{color:rgba(212,212,216,.9)!important}.text-zinc-400{--tw-text-opacity:1!important;color:rgb(161 161 170/var(--tw-text-opacity,1))!important}.text-zinc-500{--tw-text-opacity:1!important;color:rgb(113 113 122/var(--tw-text-opacity,1))!important}.text-zinc-600{--tw-text-opacity:1!important;color:rgb(82 82 91/var(--tw-text-opacity,1))!important}.underline{text-decoration-line:underline!important}.opacity-60{opacity:.6!important}.opacity-80{opacity:.8!important}.opacity-85{opacity:.85!important}.opacity-90{opacity:.9!important}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px -1px rgba(0,0,0,0.1)!important;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)!important}.shadow,.shadow-2xl{box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}.shadow-2xl{--tw-shadow:0 25px 50px -12px rgba(0,0,0,0.25)!important;--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color)!important}.shadow-\[0_0_10px_rgba\(16\2c 185\2c 129\2c 0\.65\)\]{--tw-shadow:0 0 10px rgba(16,185,129,0.65)!important;--tw-shadow-colored:0 0 10px var(--tw-shadow-color)!important}.shadow-\[0_0_10px_rgba\(16\2c 185\2c 129\2c 0\.65\)\],.shadow-\[0_30px_80px_rgba\(15\2c 23\2c 42\2c 0\.16\)\]{box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}.shadow-\[0_30px_80px_rgba\(15\2c 23\2c 42\2c 0\.16\)\]{--tw-shadow:0 30px 80px rgba(15,23,42,0.16)!important;--tw-shadow-colored:0 30px 80px var(--tw-shadow-color)!important}.shadow-\[0_6px_12px_rgba\(0\2c 0\2c 0\2c 0\.08\)\]{--tw-shadow:0 6px 12px rgba(0,0,0,0.08)!important;--tw-shadow-colored:0 6px 12px var(--tw-shadow-color)!important}.shadow-\[0_6px_12px_rgba\(0\2c 0\2c 0\2c 0\.08\)\],.shadow-\[0_8px_16px_rgba\(0\2c 0\2c 0\2c 0\.06\)\]{box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}.shadow-\[0_8px_16px_rgba\(0\2c 0\2c 0\2c 0\.06\)\]{--tw-shadow:0 8px 16px rgba(0,0,0,0.06)!important;--tw-shadow-colored:0 8px 16px var(--tw-shadow-color)!important}.shadow-\[8px_0_16px_rgba\(0\2c 0\2c 0\2c 0\.06\)\]{--tw-shadow:8px 0 16px rgba(0,0,0,0.06)!important;--tw-shadow-colored:8px 0 16px var(--tw-shadow-color)!important}.shadow-\[8px_0_16px_rgba\(0\2c 0\2c 0\2c 0\.06\)\],.shadow-\[8px_0_16px_rgba\(0\2c 0\2c 0\2c 0\.08\)\]{box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}.shadow-\[8px_0_16px_rgba\(0\2c 0\2c 0\2c 0\.08\)\]{--tw-shadow:8px 0 16px rgba(0,0,0,0.08)!important;--tw-shadow-colored:8px 0 16px var(--tw-shadow-color)!important}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -4px rgba(0,0,0,0.1)!important;--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)!important}.shadow-lg,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,0.05)!important;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)!important}.shadow-black\/40{--tw-shadow-color:rgba(0,0,0,0.4)!important;--tw-shadow:var(--tw-shadow-colored)!important}.outline-none{outline:2px solid transparent!important;outline-offset:2px!important}.outline{outline-style:solid!important}.ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)!important}.ring-1,.ring-2{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)!important}.ring-2{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)!important}.ring-red-400\/60{--tw-ring-color:rgba(248,113,113,0.6)!important}.ring-violet-300\/60{--tw-ring-color:rgba(196,181,253,0.6)!important}.ring-violet-400\/60{--tw-ring-color:rgba(167,139,250,0.6)!important}.ring-violet-400\/70{--tw-ring-color:rgba(167,139,250,0.7)!important}.ring-zinc-600\/40{--tw-ring-color:rgba(82,82,91,0.4)!important}.blur{--tw-blur:blur(8px)!important}.blur,.grayscale-\[0\.15\]{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.grayscale-\[0\.15\]{--tw-grayscale:grayscale(0.15)!important}.grayscale-\[0\.2\]{--tw-grayscale:grayscale(0.2)!important}.grayscale-\[0\.2\],.invert{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.invert{--tw-invert:invert(100%)!important}.\!filter,.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.backdrop-blur-\[2px\]{--tw-backdrop-blur:blur(2px)!important}.backdrop-blur-\[2px\],.backdrop-blur-sm{backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)!important}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px)!important}.backdrop-blur-xl{--tw-backdrop-blur:blur(24px)!important}.backdrop-blur-xl,.backdrop-filter{backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)!important}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-duration:.15s!important}.transition-\[padding-right\]{transition-property:padding-right!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-duration:.15s!important}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-duration:.15s!important}.transition-transform{transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-duration:.15s!important}.duration-200{transition-duration:.2s!important}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.\[color-scheme\:dark\]{color-scheme:dark!important}.\[color-scheme\:light\]{color-scheme:light!important}.last\:border-b-0:last-child{border-bottom-width:0!important}.hover\:border-violet-300:hover{--tw-border-opacity:1!important;border-color:rgb(196 181 253/var(--tw-border-opacity,1))!important}.hover\:border-violet-500:hover{--tw-border-opacity:1!important;border-color:rgb(139 92 246/var(--tw-border-opacity,1))!important}.hover\:bg-\[\#241c3f\]:hover{--tw-bg-opacity:1!important;background-color:rgb(36 28 63/var(--tw-bg-opacity,1))!important}.hover\:bg-red-500:hover{--tw-bg-opacity:1!important;background-color:rgb(239 68 68/var(--tw-bg-opacity,1))!important}.hover\:bg-slate-100:hover{--tw-bg-opacity:1!important;background-color:rgb(241 245 249/var(--tw-bg-opacity,1))!important}.hover\:bg-slate-50:hover{--tw-bg-opacity:1!important;background-color:rgb(248 250 252/var(--tw-bg-opacity,1))!important}.hover\:bg-slate-800:hover{--tw-bg-opacity:1!important;background-color:rgb(30 41 59/var(--tw-bg-opacity,1))!important}.hover\:bg-violet-100\/80:hover{background-color:rgba(237,233,254,.8)!important}.hover\:bg-violet-50\/60:hover{background-color:rgba(245,243,255,.6)!important}.hover\:bg-violet-50\/70:hover{background-color:rgba(245,243,255,.7)!important}.hover\:bg-violet-500:hover{--tw-bg-opacity:1!important;background-color:rgb(139 92 246/var(--tw-bg-opacity,1))!important}.hover\:bg-violet-600:hover{--tw-bg-opacity:1!important;background-color:rgb(124 58 237/var(--tw-bg-opacity,1))!important}.hover\:bg-white\/20:hover{background-color:hsla(0,0%,100%,.2)!important}.hover\:bg-white\/60:hover{background-color:hsla(0,0%,100%,.6)!important}.hover\:bg-white\/\[0\.04\]:hover{background-color:hsla(0,0%,100%,.04)!important}.hover\:bg-zinc-400:hover{--tw-bg-opacity:1!important;background-color:rgb(161 161 170/var(--tw-bg-opacity,1))!important}.hover\:bg-zinc-500\/90:hover{background-color:rgba(113,113,122,.9)!important}.hover\:bg-zinc-800:hover{--tw-bg-opacity:1!important;background-color:rgb(39 39 42/var(--tw-bg-opacity,1))!important}.hover\:bg-zinc-900:hover{--tw-bg-opacity:1!important;background-color:rgb(24 24 27/var(--tw-bg-opacity,1))!important}.hover\:text-violet-300:hover{--tw-text-opacity:1!important;color:rgb(196 181 253/var(--tw-text-opacity,1))!important}.hover\:text-violet-500:hover{--tw-text-opacity:1!important;color:rgb(139 92 246/var(--tw-text-opacity,1))!important}.active\:bg-white\/\[0\.07\]:active{background-color:hsla(0,0%,100%,.07)!important}.disabled\:opacity-50:disabled{opacity:.5!important}@media (min-width:640px){.sm\:flex-row{flex-direction:row!important}.sm\:items-center{align-items:center!important}.sm\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.sm\:px-4{padding-left:1rem!important;padding-right:1rem!important}.sm\:py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.sm\:text-\[11px\]{font-size:11px!important}}@media (min-width:768px){.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.md\:items-center{align-items:center!important}.md\:rounded-3xl{border-radius:1.5rem!important}.md\:p-3{padding:.75rem!important}.md\:p-4{padding:1rem!important}.md\:p-6{padding:1.5rem!important}.md\:p-8{padding:2rem!important}.md\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}}.\[\&\:\:-webkit-calendar-picker-indicator\]\:ml-auto::-webkit-calendar-picker-indicator{margin-left:auto!important}.\[\&\:\:-webkit-calendar-picker-indicator\]\:mr-1::-webkit-calendar-picker-indicator{margin-right:.25rem!important}
3
+ /*! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder, textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.\!container{width:100%!important}.container{width:100%}@media (min-width:640px){.\!container{max-width:640px!important}.container{max-width:640px}}@media (min-width:768px){.\!container{max-width:768px!important}.container{max-width:768px}}@media (min-width:1024px){.\!container{max-width:1024px!important}.container{max-width:1024px}}@media (min-width:1280px){.\!container{max-width:1280px!important}.container{max-width:1280px}}@media (min-width:1536px){.\!container{max-width:1536px!important}.container{max-width:1536px}}.pointer-events-none{pointer-events:none!important}.\!visible,.visible{visibility:visible!important}.collapse{visibility:collapse!important}.static{position:static!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.sticky{position:sticky!important}.inset-0{inset:0!important}.inset-6{inset:1.5rem!important}.inset-x-0{left:0!important;right:0!important}.inset-y-0{top:0!important;bottom:0!important}.bottom-6{bottom:1.5rem!important}.left-0{left:0!important}.left-1\/2{left:50%!important}.left-3{left:.75rem!important}.right-0{right:0!important}.right-3{right:.75rem!important}.top-0{top:0!important}.top-2{top:.5rem!important}.top-3{top:.75rem!important}.top-\[60px\]{top:60px!important}.isolate{isolation:isolate!important}.z-20{z-index:20!important}.z-30{z-index:30!important}.z-50{z-index:50!important}.z-\[25\]{z-index:25!important}.z-\[26\]{z-index:26!important}.z-\[60\]{z-index:60!important}.z-\[69\]{z-index:69!important}.z-\[72\]{z-index:72!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:.75rem!important}.mb-4{margin-bottom:1rem!important}.mt-0\.5{margin-top:.125rem!important}.mt-1{margin-top:.25rem!important}.mt-10{margin-top:2.5rem!important}.mt-14{margin-top:3.5rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:.75rem!important}.mt-5{margin-top:1.25rem!important}.mt-6{margin-top:1.5rem!important}.mt-auto{margin-top:auto!important}.block{display:block!important}.inline-block{display:inline-block!important}.inline{display:inline!important}.flex{display:flex!important}.inline-flex{display:inline-flex!important}.table{display:table!important}.grid{display:grid!important}.contents{display:contents!important}.hidden{display:none!important}.h-10{height:2.5rem!important}.h-11{height:2.75rem!important}.h-3{height:.75rem!important}.h-\[52px\]{height:52px!important}.h-full{height:100%!important}.max-h-\[360px\]{max-height:360px!important}.max-h-\[72vh\]{max-height:72vh!important}.max-h-\[78vh\]{max-height:78vh!important}.max-h-\[92vh\]{max-height:92vh!important}.max-h-none{max-height:none!important}.min-h-0{min-height:0!important}.min-h-\[72px\]{min-height:72px!important}.w-11{width:2.75rem!important}.w-14{width:3.5rem!important}.w-3{width:.75rem!important}.w-\[132px\]{width:132px!important}.w-\[2px\]{width:2px!important}.w-\[52px\]{width:52px!important}.w-fit{width:-moz-fit-content!important;width:fit-content!important}.w-full{width:100%!important}.min-w-0{min-width:0!important}.min-w-\[132px\]{min-width:132px!important}.min-w-\[240px\]{min-width:240px!important}.min-w-\[980px\]{min-width:980px!important}.max-w-\[132px\]{max-width:132px!important}.max-w-\[260px\]{max-width:260px!important}.max-w-\[520px\]{max-width:520px!important}.max-w-\[720px\]{max-width:720px!important}.max-w-\[900px\]{max-width:900px!important}.max-w-\[92vw\]{max-width:92vw!important}.max-w-\[980px\]{max-width:980px!important}.max-w-full{max-width:100%!important}.max-w-none{max-width:none!important}.flex-1{flex:1 1 0%!important}.flex-shrink{flex-shrink:1!important}.shrink-0{flex-shrink:0!important}.flex-grow{flex-grow:1!important}.border-collapse{border-collapse:collapse!important}.-translate-x-1\/2{--tw-translate-x:-50%!important}.-rotate-90,.-translate-x-1\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.-rotate-90{--tw-rotate:-90deg!important}.rotate-0{--tw-rotate:0deg!important}.rotate-0,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.cursor-grab{cursor:grab!important}.cursor-grabbing{cursor:grabbing!important}.cursor-pointer{cursor:pointer!important}.touch-pan-x{--tw-pan-x:pan-x!important}.touch-pan-x,.touch-pan-y{touch-action:var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)!important}.touch-pan-y{--tw-pan-y:pan-y!important}.select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.select-text{-webkit-user-select:text!important;-moz-user-select:text!important;user-select:text!important}.select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.resize-none{resize:none!important}.resize{resize:both!important}.auto-rows-\[minmax\(72px\2c auto\)\]{grid-auto-rows:minmax(72px,auto)!important}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))!important}.grid-cols-\[0\.8fr_1fr_1\.3fr_0\.9fr_0\.9fr\]{grid-template-columns:.8fr 1fr 1.3fr .9fr .9fr!important}.flex-col{flex-direction:column!important}.flex-col-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.place-items-center{place-items:center!important}.items-start{align-items:flex-start!important}.items-end{align-items:flex-end!important}.items-center{align-items:center!important}.items-stretch{align-items:stretch!important}.justify-start{justify-content:flex-start!important}.justify-end{justify-content:flex-end!important}.justify-center{justify-content:center!important}.justify-between{justify-content:space-between!important}.gap-0\.5{gap:.125rem!important}.gap-1{gap:.25rem!important}.gap-1\.5{gap:.375rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:.75rem!important}.gap-4{gap:1rem!important}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-top:calc(0.25rem*(1 - var(--tw-space-y-reverse)))!important;margin-bottom:calc(0.25rem*var(--tw-space-y-reverse))!important}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))!important;margin-bottom:calc(1rem*var(--tw-space-y-reverse))!important}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))!important;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse))!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-y-auto{overflow-y:auto!important}.overscroll-contain{overscroll-behavior:contain!important}.truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.rounded{border-radius:.25rem!important}.rounded-2xl{border-radius:1rem!important}.rounded-3xl{border-radius:1.5rem!important}.rounded-\[28px\]{border-radius:28px!important}.rounded-\[30px\]{border-radius:30px!important}.rounded-full{border-radius:9999px!important}.rounded-lg{border-radius:.5rem!important}.rounded-md{border-radius:.375rem!important}.rounded-xl{border-radius:.75rem!important}.rounded-t-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.border{border-width:1px!important}.border-b{border-bottom-width:1px!important}.border-b-4{border-bottom-width:4px!important}.border-l{border-left-width:1px!important}.border-r{border-right-width:1px!important}.border-dashed{border-style:dashed!important}.border-\[\#d8d0eb\]{--tw-border-opacity:1!important;border-color:rgb(216 208 235/var(--tw-border-opacity,1))!important}.border-\[var\(--border-strong\)\]{border-color:var(--border-strong)!important}.border-\[var\(--brand-light\)\]{border-color:var(--brand-light)!important}.border-amber-200\/35{border-color:rgba(253,230,138,.35)!important}.border-amber-400\/80{border-color:rgba(251,191,36,.8)!important}.border-amber-400\/95{border-color:rgba(251,191,36,.95)!important}.border-cyan-300\/35{border-color:rgba(103,232,249,.35)!important}.border-emerald-300\/35{border-color:rgba(110,231,183,.35)!important}.border-red-200{--tw-border-opacity:1!important;border-color:rgb(254 202 202/var(--tw-border-opacity,1))!important}.border-red-300\/35{border-color:rgba(252,165,165,.35)!important}.border-red-300\/55{border-color:rgba(252,165,165,.55)!important}.border-red-400{--tw-border-opacity:1!important;border-color:rgb(248 113 113/var(--tw-border-opacity,1))!important}.border-red-400\/75{border-color:rgba(248,113,113,.75)!important}.border-red-500\/70{border-color:rgba(239,68,68,.7)!important}.border-red-700\/50{border-color:rgba(185,28,28,.5)!important}.border-red-800\/40{border-color:rgba(153,27,27,.4)!important}.border-slate-200{--tw-border-opacity:1!important;border-color:rgb(226 232 240/var(--tw-border-opacity,1))!important}.border-slate-700{--tw-border-opacity:1!important;border-color:rgb(51 65 85/var(--tw-border-opacity,1))!important}.border-slate-800{--tw-border-opacity:1!important;border-color:rgb(30 41 59/var(--tw-border-opacity,1))!important}.border-violet-300{--tw-border-opacity:1!important;border-color:rgb(196 181 253/var(--tw-border-opacity,1))!important}.border-violet-300\/30{border-color:rgba(196,181,253,.3)!important}.border-violet-400{--tw-border-opacity:1!important;border-color:rgb(167 139 250/var(--tw-border-opacity,1))!important}.border-violet-400\/20{border-color:rgba(167,139,250,.2)!important}.border-violet-500\/30{border-color:rgba(139,92,246,.3)!important}.border-white\/10{border-color:hsla(0,0%,100%,.1)!important}.border-zinc-300\/30{border-color:rgba(212,212,216,.3)!important}.border-zinc-300\/45{border-color:rgba(212,212,216,.45)!important}.border-zinc-400\/45{border-color:rgba(161,161,170,.45)!important}.border-zinc-500\/70{border-color:rgba(113,113,122,.7)!important}.border-zinc-600{--tw-border-opacity:1!important;border-color:rgb(82 82 91/var(--tw-border-opacity,1))!important}.border-zinc-700{--tw-border-opacity:1!important;border-color:rgb(63 63 70/var(--tw-border-opacity,1))!important}.border-zinc-800{--tw-border-opacity:1!important;border-color:rgb(39 39 42/var(--tw-border-opacity,1))!important}.border-zinc-800\/80{border-color:rgba(39,39,42,.8)!important}.border-b-transparent{border-bottom-color:transparent!important}.border-l-transparent{border-left-color:transparent!important}.bg-\[\#101117\]{--tw-bg-opacity:1!important;background-color:rgb(16 17 23/var(--tw-bg-opacity,1))!important}.bg-\[\#111217\]{--tw-bg-opacity:1!important;background-color:rgb(17 18 23/var(--tw-bg-opacity,1))!important}.bg-\[\#111218\]{--tw-bg-opacity:1!important;background-color:rgb(17 18 24/var(--tw-bg-opacity,1))!important}.bg-\[\#121217\]{--tw-bg-opacity:1!important;background-color:rgb(18 18 23/var(--tw-bg-opacity,1))!important}.bg-\[\#151220\]{--tw-bg-opacity:1!important;background-color:rgb(21 18 32/var(--tw-bg-opacity,1))!important}.bg-\[\#151a2f\]{--tw-bg-opacity:1!important;background-color:rgb(21 26 47/var(--tw-bg-opacity,1))!important}.bg-\[\#171820\]{--tw-bg-opacity:1!important;background-color:rgb(23 24 32/var(--tw-bg-opacity,1))!important}.bg-\[\#1a1a22\]{--tw-bg-opacity:1!important;background-color:rgb(26 26 34/var(--tw-bg-opacity,1))!important}.bg-\[\#1a1b21\]{--tw-bg-opacity:1!important;background-color:rgb(26 27 33/var(--tw-bg-opacity,1))!important}.bg-\[\#1c1630\]{--tw-bg-opacity:1!important;background-color:rgb(28 22 48/var(--tw-bg-opacity,1))!important}.bg-\[\#1e1a32\]{--tw-bg-opacity:1!important;background-color:rgb(30 26 50/var(--tw-bg-opacity,1))!important}.bg-\[\#241d40\]{--tw-bg-opacity:1!important;background-color:rgb(36 29 64/var(--tw-bg-opacity,1))!important}.bg-\[var\(--bg-input\)\]{background-color:var(--bg-input)!important}.bg-\[var\(--brand-surface\)\]{background-color:var(--brand-surface)!important}.bg-amber-500{--tw-bg-opacity:1!important;background-color:rgb(245 158 11/var(--tw-bg-opacity,1))!important}.bg-black\/25{background-color:rgba(0,0,0,.25)!important}.bg-black\/45{background-color:rgba(0,0,0,.45)!important}.bg-black\/55{background-color:rgba(0,0,0,.55)!important}.bg-cyan-500{--tw-bg-opacity:1!important;background-color:rgb(6 182 212/var(--tw-bg-opacity,1))!important}.bg-emerald-400\/95{background-color:rgba(52,211,153,.95)!important}.bg-emerald-500{--tw-bg-opacity:1!important;background-color:rgb(16 185 129/var(--tw-bg-opacity,1))!important}.bg-emerald-600{--tw-bg-opacity:1!important;background-color:rgb(5 150 105/var(--tw-bg-opacity,1))!important}.bg-red-50{background-color:rgb(254 242 242/var(--tw-bg-opacity,1))!important}.bg-red-50,.bg-red-500{--tw-bg-opacity:1!important}.bg-red-500{background-color:rgb(239 68 68/var(--tw-bg-opacity,1))!important}.bg-red-500\/25{background-color:rgba(239,68,68,.25)!important}.bg-red-500\/85{background-color:rgba(239,68,68,.85)!important}.bg-red-600{--tw-bg-opacity:1!important;background-color:rgb(220 38 38/var(--tw-bg-opacity,1))!important}.bg-red-700\/70{background-color:rgba(185,28,28,.7)!important}.bg-red-900\/50{background-color:rgba(127,29,29,.5)!important}.bg-red-950\/30{background-color:rgba(69,10,10,.3)!important}.bg-sky-500{background-color:rgb(14 165 233/var(--tw-bg-opacity,1))!important}.bg-sky-500,.bg-slate-100{--tw-bg-opacity:1!important}.bg-slate-100{background-color:rgb(241 245 249/var(--tw-bg-opacity,1))!important}.bg-slate-50{--tw-bg-opacity:1!important;background-color:rgb(248 250 252/var(--tw-bg-opacity,1))!important}.bg-slate-900{--tw-bg-opacity:1!important;background-color:rgb(15 23 42/var(--tw-bg-opacity,1))!important}.bg-slate-900\/40{background-color:rgba(15,23,42,.4)!important}.bg-slate-950{--tw-bg-opacity:1!important;background-color:rgb(2 6 23/var(--tw-bg-opacity,1))!important}.bg-transparent{background-color:transparent!important}.bg-violet-100{--tw-bg-opacity:1!important;background-color:rgb(237 233 254/var(--tw-bg-opacity,1))!important}.bg-violet-50{--tw-bg-opacity:1!important;background-color:rgb(245 243 255/var(--tw-bg-opacity,1))!important}.bg-violet-500{--tw-bg-opacity:1!important;background-color:rgb(139 92 246/var(--tw-bg-opacity,1))!important}.bg-violet-600{--tw-bg-opacity:1!important;background-color:rgb(124 58 237/var(--tw-bg-opacity,1))!important}.bg-violet-600\/10{background-color:rgba(124,58,237,.1)!important}.bg-violet-700\/90{background-color:rgba(109,40,217,.9)!important}.bg-violet-900\/20{background-color:rgba(76,29,149,.2)!important}.bg-white{--tw-bg-opacity:1!important;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))!important}.bg-white\/10{background-color:hsla(0,0%,100%,.1)!important}.bg-white\/\[0\.06\]{background-color:hsla(0,0%,100%,.06)!important}.bg-zinc-500\/90{background-color:rgba(113,113,122,.9)!important}.bg-zinc-600{--tw-bg-opacity:1!important;background-color:rgb(82 82 91/var(--tw-bg-opacity,1))!important}.bg-zinc-600\/90{background-color:rgba(82,82,91,.9)!important}.bg-zinc-700\/55{background-color:rgba(63,63,70,.55)!important}.bg-zinc-700\/70{background-color:rgba(63,63,70,.7)!important}.bg-zinc-800{--tw-bg-opacity:1!important;background-color:rgb(39 39 42/var(--tw-bg-opacity,1))!important}.bg-zinc-800\/80{background-color:rgba(39,39,42,.8)!important}.bg-zinc-800\/90{background-color:rgba(39,39,42,.9)!important}.bg-zinc-900{--tw-bg-opacity:1!important;background-color:rgb(24 24 27/var(--tw-bg-opacity,1))!important}.bg-gradient-to-b{background-image:linear-gradient(180deg,var(--tw-gradient-stops))!important}.from-\[\#252038\]{--tw-gradient-from:#252038 var(--tw-gradient-from-position)!important;--tw-gradient-to:rgba(37,32,56,0) var(--tw-gradient-to-position)!important}.from-\[\#252038\],.from-slate-100{--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)!important}.from-slate-100{--tw-gradient-from:#f1f5f9 var(--tw-gradient-from-position)!important;--tw-gradient-to:rgba(241,245,249,0) var(--tw-gradient-to-position)!important}.from-violet-50{--tw-gradient-from:#f5f3ff var(--tw-gradient-from-position)!important;--tw-gradient-to:rgba(245,243,255,0) var(--tw-gradient-to-position)!important}.from-violet-50,.from-violet-950\/40{--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)!important}.from-violet-950\/40{--tw-gradient-from:rgba(46,16,101,0.4) var(--tw-gradient-from-position)!important;--tw-gradient-to:rgba(46,16,101,0) var(--tw-gradient-to-position)!important}.to-\[\#1a1628\]{--tw-gradient-to:#1a1628 var(--tw-gradient-to-position)!important}.to-\[\#1a1a22\]{--tw-gradient-to:#1a1a22 var(--tw-gradient-to-position)!important}.to-slate-50{--tw-gradient-to:#f8fafc var(--tw-gradient-to-position)!important}.to-white{--tw-gradient-to:#fff var(--tw-gradient-to-position)!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:.75rem!important}.p-4{padding:1rem!important}.p-5{padding:1.25rem!important}.p-6{padding:1.5rem!important}.px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.px-3{padding-left:.75rem!important;padding-right:.75rem!important}.px-4{padding-left:1rem!important;padding-right:1rem!important}.px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.py-0\.5{padding-top:.125rem!important;padding-bottom:.125rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-1\.5{padding-top:.375rem!important;padding-bottom:.375rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-2\.5{padding-top:.625rem!important;padding-bottom:.625rem!important}.py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-4{padding-top:1rem!important;padding-bottom:1rem!important}.pb-2{padding-bottom:.5rem!important}.pl-4{padding-left:1rem!important}.pr-11{padding-right:2.75rem!important}.pt-1{padding-top:.25rem!important}.pt-1\.5{padding-top:.375rem!important}.text-left{text-align:left!important}.text-center{text-align:center!important}.text-right{text-align:right!important}.align-top{vertical-align:top!important}.text-2xl{font-size:1.5rem!important;line-height:2rem!important}.text-3xl{font-size:1.875rem!important;line-height:2.25rem!important}.text-4xl{font-size:2.25rem!important;line-height:2.5rem!important}.text-\[10px\]{font-size:10px!important}.text-\[11px\]{font-size:11px!important}.text-\[13px\]{font-size:13px!important}.text-\[16px\]{font-size:16px!important}.text-\[20px\]{font-size:20px!important}.text-\[22px\]{font-size:22px!important}.text-base{font-size:1rem!important;line-height:1.5rem!important}.text-sm{font-size:.875rem!important;line-height:1.25rem!important}.text-xl{font-size:1.25rem!important;line-height:1.75rem!important}.text-xs{font-size:.75rem!important;line-height:1rem!important}.font-medium{font-weight:500!important}.font-semibold{font-weight:600!important}.uppercase{text-transform:uppercase!important}.lowercase{text-transform:lowercase!important}.tabular-nums{--tw-numeric-spacing:tabular-nums!important;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)!important}.leading-\[1\],.leading-none{line-height:1!important}.leading-snug{line-height:1.375!important}.leading-tight{line-height:1.25!important}.tracking-\[0\.14em\]{letter-spacing:.14em!important}.tracking-\[0\.24em\]{letter-spacing:.24em!important}.tracking-tight{letter-spacing:-.025em!important}.text-\[\#8f86a9\]{--tw-text-opacity:1!important;color:rgb(143 134 169/var(--tw-text-opacity,1))!important}.text-amber-300{--tw-text-opacity:1!important;color:rgb(252 211 77/var(--tw-text-opacity,1))!important}.text-amber-600{--tw-text-opacity:1!important;color:rgb(217 119 6/var(--tw-text-opacity,1))!important}.text-red-100{color:rgb(254 226 226/var(--tw-text-opacity,1))!important}.text-red-100,.text-red-300{--tw-text-opacity:1!important}.text-red-300{color:rgb(252 165 165/var(--tw-text-opacity,1))!important}.text-red-600{--tw-text-opacity:1!important;color:rgb(220 38 38/var(--tw-text-opacity,1))!important}.text-slate-100{--tw-text-opacity:1!important;color:rgb(241 245 249/var(--tw-text-opacity,1))!important}.text-slate-200{--tw-text-opacity:1!important;color:rgb(226 232 240/var(--tw-text-opacity,1))!important}.text-slate-300{--tw-text-opacity:1!important;color:rgb(203 213 225/var(--tw-text-opacity,1))!important}.text-slate-400{--tw-text-opacity:1!important;color:rgb(148 163 184/var(--tw-text-opacity,1))!important}.text-slate-500{--tw-text-opacity:1!important;color:rgb(100 116 139/var(--tw-text-opacity,1))!important}.text-slate-600{--tw-text-opacity:1!important;color:rgb(71 85 105/var(--tw-text-opacity,1))!important}.text-slate-700{--tw-text-opacity:1!important;color:rgb(51 65 85/var(--tw-text-opacity,1))!important}.text-slate-800{--tw-text-opacity:1!important;color:rgb(30 41 59/var(--tw-text-opacity,1))!important}.text-slate-900{--tw-text-opacity:1!important;color:rgb(15 23 42/var(--tw-text-opacity,1))!important}.text-violet-100{--tw-text-opacity:1!important;color:rgb(237 233 254/var(--tw-text-opacity,1))!important}.text-violet-200{--tw-text-opacity:1!important;color:rgb(221 214 254/var(--tw-text-opacity,1))!important}.text-violet-300{--tw-text-opacity:1!important;color:rgb(196 181 253/var(--tw-text-opacity,1))!important}.text-violet-50{--tw-text-opacity:1!important;color:rgb(245 243 255/var(--tw-text-opacity,1))!important}.text-violet-800{--tw-text-opacity:1!important;color:rgb(91 33 182/var(--tw-text-opacity,1))!important}.text-white{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity,1))!important}.text-white\/90{color:hsla(0,0%,100%,.9)!important}.text-zinc-100{--tw-text-opacity:1!important;color:rgb(244 244 245/var(--tw-text-opacity,1))!important}.text-zinc-200{--tw-text-opacity:1!important;color:rgb(228 228 231/var(--tw-text-opacity,1))!important}.text-zinc-200\/90{color:rgba(228,228,231,.9)!important}.text-zinc-300{--tw-text-opacity:1!important;color:rgb(212 212 216/var(--tw-text-opacity,1))!important}.text-zinc-300\/80{color:rgba(212,212,216,.8)!important}.text-zinc-300\/90{color:rgba(212,212,216,.9)!important}.text-zinc-400{--tw-text-opacity:1!important;color:rgb(161 161 170/var(--tw-text-opacity,1))!important}.text-zinc-500{--tw-text-opacity:1!important;color:rgb(113 113 122/var(--tw-text-opacity,1))!important}.text-zinc-600{--tw-text-opacity:1!important;color:rgb(82 82 91/var(--tw-text-opacity,1))!important}.underline{text-decoration-line:underline!important}.opacity-60{opacity:.6!important}.opacity-80{opacity:.8!important}.opacity-85{opacity:.85!important}.opacity-90{opacity:.9!important}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px -1px rgba(0,0,0,0.1)!important;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)!important}.shadow,.shadow-2xl{box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}.shadow-2xl{--tw-shadow:0 25px 50px -12px rgba(0,0,0,0.25)!important;--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color)!important}.shadow-\[0_0_10px_rgba\(16\2c 185\2c 129\2c 0\.65\)\]{--tw-shadow:0 0 10px rgba(16,185,129,0.65)!important;--tw-shadow-colored:0 0 10px var(--tw-shadow-color)!important}.shadow-\[0_0_10px_rgba\(16\2c 185\2c 129\2c 0\.65\)\],.shadow-\[0_30px_80px_rgba\(15\2c 23\2c 42\2c 0\.16\)\]{box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}.shadow-\[0_30px_80px_rgba\(15\2c 23\2c 42\2c 0\.16\)\]{--tw-shadow:0 30px 80px rgba(15,23,42,0.16)!important;--tw-shadow-colored:0 30px 80px var(--tw-shadow-color)!important}.shadow-\[0_6px_12px_rgba\(0\2c 0\2c 0\2c 0\.08\)\]{--tw-shadow:0 6px 12px rgba(0,0,0,0.08)!important;--tw-shadow-colored:0 6px 12px var(--tw-shadow-color)!important}.shadow-\[0_6px_12px_rgba\(0\2c 0\2c 0\2c 0\.08\)\],.shadow-\[0_8px_16px_rgba\(0\2c 0\2c 0\2c 0\.06\)\]{box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}.shadow-\[0_8px_16px_rgba\(0\2c 0\2c 0\2c 0\.06\)\]{--tw-shadow:0 8px 16px rgba(0,0,0,0.06)!important;--tw-shadow-colored:0 8px 16px var(--tw-shadow-color)!important}.shadow-\[8px_0_16px_rgba\(0\2c 0\2c 0\2c 0\.06\)\]{--tw-shadow:8px 0 16px rgba(0,0,0,0.06)!important;--tw-shadow-colored:8px 0 16px var(--tw-shadow-color)!important}.shadow-\[8px_0_16px_rgba\(0\2c 0\2c 0\2c 0\.06\)\],.shadow-\[8px_0_16px_rgba\(0\2c 0\2c 0\2c 0\.08\)\]{box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}.shadow-\[8px_0_16px_rgba\(0\2c 0\2c 0\2c 0\.08\)\]{--tw-shadow:8px 0 16px rgba(0,0,0,0.08)!important;--tw-shadow-colored:8px 0 16px var(--tw-shadow-color)!important}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -4px rgba(0,0,0,0.1)!important;--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)!important}.shadow-lg,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,0.05)!important;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)!important}.shadow-black\/40{--tw-shadow-color:rgba(0,0,0,0.4)!important;--tw-shadow:var(--tw-shadow-colored)!important}.outline-none{outline:2px solid transparent!important;outline-offset:2px!important}.outline{outline-style:solid!important}.ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)!important}.ring-1,.ring-2{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)!important}.ring-2{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)!important}.ring-red-400\/60{--tw-ring-color:rgba(248,113,113,0.6)!important}.ring-violet-300\/60{--tw-ring-color:rgba(196,181,253,0.6)!important}.ring-violet-400\/60{--tw-ring-color:rgba(167,139,250,0.6)!important}.ring-violet-400\/70{--tw-ring-color:rgba(167,139,250,0.7)!important}.ring-violet-500\/70{--tw-ring-color:rgba(139,92,246,0.7)!important}.ring-zinc-600\/40{--tw-ring-color:rgba(82,82,91,0.4)!important}.blur{--tw-blur:blur(8px)!important}.blur,.grayscale-\[0\.15\]{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.grayscale-\[0\.15\]{--tw-grayscale:grayscale(0.15)!important}.grayscale-\[0\.2\]{--tw-grayscale:grayscale(0.2)!important}.grayscale-\[0\.2\],.invert{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.invert{--tw-invert:invert(100%)!important}.\!filter,.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.backdrop-blur-\[2px\]{--tw-backdrop-blur:blur(2px)!important}.backdrop-blur-\[2px\],.backdrop-blur-sm{backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)!important}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px)!important}.backdrop-blur-xl{--tw-backdrop-blur:blur(24px)!important}.backdrop-blur-xl,.backdrop-filter{backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)!important}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-duration:.15s!important}.transition-\[padding-right\]{transition-property:padding-right!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-duration:.15s!important}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-duration:.15s!important}.transition-transform{transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-duration:.15s!important}.duration-200{transition-duration:.2s!important}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.\[color-scheme\:dark\]{color-scheme:dark!important}.\[color-scheme\:light\]{color-scheme:light!important}.last\:border-b-0:last-child{border-bottom-width:0!important}.hover\:border-violet-300:hover{--tw-border-opacity:1!important;border-color:rgb(196 181 253/var(--tw-border-opacity,1))!important}.hover\:border-violet-500:hover{--tw-border-opacity:1!important;border-color:rgb(139 92 246/var(--tw-border-opacity,1))!important}.hover\:bg-\[\#241c3f\]:hover{--tw-bg-opacity:1!important;background-color:rgb(36 28 63/var(--tw-bg-opacity,1))!important}.hover\:bg-red-500:hover{--tw-bg-opacity:1!important;background-color:rgb(239 68 68/var(--tw-bg-opacity,1))!important}.hover\:bg-slate-100:hover{--tw-bg-opacity:1!important;background-color:rgb(241 245 249/var(--tw-bg-opacity,1))!important}.hover\:bg-slate-50:hover{--tw-bg-opacity:1!important;background-color:rgb(248 250 252/var(--tw-bg-opacity,1))!important}.hover\:bg-slate-800:hover{--tw-bg-opacity:1!important;background-color:rgb(30 41 59/var(--tw-bg-opacity,1))!important}.hover\:bg-violet-100\/80:hover{background-color:rgba(237,233,254,.8)!important}.hover\:bg-violet-50\/60:hover{background-color:rgba(245,243,255,.6)!important}.hover\:bg-violet-50\/70:hover{background-color:rgba(245,243,255,.7)!important}.hover\:bg-violet-500:hover{--tw-bg-opacity:1!important;background-color:rgb(139 92 246/var(--tw-bg-opacity,1))!important}.hover\:bg-violet-600:hover{--tw-bg-opacity:1!important;background-color:rgb(124 58 237/var(--tw-bg-opacity,1))!important}.hover\:bg-white\/20:hover{background-color:hsla(0,0%,100%,.2)!important}.hover\:bg-white\/60:hover{background-color:hsla(0,0%,100%,.6)!important}.hover\:bg-white\/\[0\.04\]:hover{background-color:hsla(0,0%,100%,.04)!important}.hover\:bg-zinc-400:hover{--tw-bg-opacity:1!important;background-color:rgb(161 161 170/var(--tw-bg-opacity,1))!important}.hover\:bg-zinc-500\/90:hover{background-color:rgba(113,113,122,.9)!important}.hover\:bg-zinc-800:hover{--tw-bg-opacity:1!important;background-color:rgb(39 39 42/var(--tw-bg-opacity,1))!important}.hover\:bg-zinc-900:hover{--tw-bg-opacity:1!important;background-color:rgb(24 24 27/var(--tw-bg-opacity,1))!important}.hover\:text-violet-300:hover{--tw-text-opacity:1!important;color:rgb(196 181 253/var(--tw-text-opacity,1))!important}.hover\:text-violet-500:hover{--tw-text-opacity:1!important;color:rgb(139 92 246/var(--tw-text-opacity,1))!important}.active\:bg-white\/\[0\.07\]:active{background-color:hsla(0,0%,100%,.07)!important}.disabled\:opacity-50:disabled{opacity:.5!important}@media (min-width:640px){.sm\:flex-row{flex-direction:row!important}.sm\:items-center{align-items:center!important}.sm\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.sm\:px-4{padding-left:1rem!important;padding-right:1rem!important}.sm\:py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.sm\:text-\[11px\]{font-size:11px!important}}@media (min-width:768px){.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.md\:items-center{align-items:center!important}.md\:rounded-3xl{border-radius:1.5rem!important}.md\:p-3{padding:.75rem!important}.md\:p-4{padding:1rem!important}.md\:p-6{padding:1.5rem!important}.md\:p-8{padding:2rem!important}.md\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}}.\[\&\:\:-webkit-calendar-picker-indicator\]\:ml-auto::-webkit-calendar-picker-indicator{margin-left:auto!important}.\[\&\:\:-webkit-calendar-picker-indicator\]\:mr-1::-webkit-calendar-picker-indicator{margin-right:.25rem!important}
@@ -4,7 +4,8 @@ declare const Pagination: (props: PaginationProps) => JSX.Element | null;
4
4
  export declare const paginationConfig: {
5
5
  className: string;
6
6
  defaultCurrent: number;
7
- showTotal: (total: number, range: [number, number]) => string;
7
+ /** 无 props 上下文时仅能根据 total + range 近似推算(见 resolveCurrentPage) */
8
+ showTotal: (totalRecords: number, range: [number, number]) => any;
8
9
  responsive: boolean;
9
10
  size: string;
10
11
  };
@@ -49,16 +49,26 @@ function getPaginationText(key) {
49
49
  if (fromUtils !== fullKey) return fromUtils;
50
50
  return (0, import_locales.getText)(fullKey) ?? (0, import_locales.getText)(`table-pagination-${key}`);
51
51
  }
52
+ function resolveCurrentPage(props, range, pageSize) {
53
+ const fromProps = props.current ?? props.defaultCurrent;
54
+ if (typeof fromProps === "number" && fromProps >= 1) {
55
+ return fromProps;
56
+ }
57
+ const start = range[0];
58
+ if (start == null || start < 1 || pageSize < 1) {
59
+ return 1;
60
+ }
61
+ return Math.floor((start - 1) / pageSize) + 1;
62
+ }
52
63
  var Pagination = (props) => {
53
64
  const show = (0, import_react.useMemo)(() => {
54
65
  return Object.keys(props).length;
55
66
  }, [props]);
56
67
  const isMiniPagination = (0, import_useIsMobileTable.default)();
57
- const effectiveConfig = (0, import_react.useMemo)(() => {
68
+ const itemRenderFn = (0, import_react.useMemo)(() => {
58
69
  const prevText = getPaginationText("previous");
59
70
  const nextText = getPaginationText("next");
60
- const showTotalFn = getPaginationText("showTotal");
61
- const itemRenderFn = (_, type, originalElement) => {
71
+ return (_, type, originalElement) => {
62
72
  if (type === "prev") {
63
73
  return /* @__PURE__ */ import_react.default.createElement("div", { className: (0, import_classnames.default)("paginator-page-btn", "left") }, /* @__PURE__ */ import_react.default.createElement(import_ArrowLeft.default, { className: "paginator-page-btn-left-icon" }), /* @__PURE__ */ import_react.default.createElement("span", { className: "paginator-page-btn-text" }, prevText));
64
74
  }
@@ -67,16 +77,35 @@ var Pagination = (props) => {
67
77
  }
68
78
  return originalElement;
69
79
  };
70
- const showTotal = typeof showTotalFn === "function" ? (total, range) => showTotalFn(range[0], range[1]) : (total, range) => `Page ${range[0]} of ${range[1]}`;
80
+ }, []);
81
+ const showTotalDefault = (0, import_react.useCallback)(
82
+ (totalRecords, range) => {
83
+ const pageSize = props.pageSize ?? props.defaultPageSize ?? 10;
84
+ const currentPage = resolveCurrentPage(props, range, pageSize);
85
+ const totalPages = totalRecords <= 0 ? 1 : Math.max(1, Math.ceil(totalRecords / pageSize));
86
+ const showTotalFn = getPaginationText("showTotal");
87
+ if (typeof showTotalFn === "function") {
88
+ return showTotalFn(currentPage, totalPages);
89
+ }
90
+ return `Page ${currentPage} of ${totalPages}`;
91
+ },
92
+ [
93
+ props.current,
94
+ props.defaultCurrent,
95
+ props.pageSize,
96
+ props.defaultPageSize
97
+ ]
98
+ );
99
+ const effectiveConfig = (0, import_react.useMemo)(() => {
71
100
  return {
72
101
  className: "materials-grid-paginator",
73
102
  defaultCurrent: 1,
74
- showTotal,
103
+ showTotal: showTotalDefault,
75
104
  itemRender: itemRenderFn,
76
105
  responsive: true,
77
106
  size: "small"
78
107
  };
79
- }, []);
108
+ }, [itemRenderFn, showTotalDefault]);
80
109
  const content = (0, import_react.useMemo)(() => {
81
110
  if (!show) {
82
111
  return null;
@@ -92,7 +121,21 @@ var Pagination = (props) => {
92
121
  var paginationConfig = {
93
122
  className: "materials-grid-paginator",
94
123
  defaultCurrent: 1,
95
- showTotal: (total, range) => `Page ${range[0]} of ${range[1]}`,
124
+ /** props 上下文时仅能根据 total + range 近似推算(见 resolveCurrentPage) */
125
+ showTotal: (totalRecords, range) => {
126
+ const pageSize = 10;
127
+ const currentPage = resolveCurrentPage(
128
+ { pageSize },
129
+ range,
130
+ pageSize
131
+ );
132
+ const totalPages = totalRecords <= 0 ? 1 : Math.max(1, Math.ceil(totalRecords / pageSize));
133
+ const fn = getPaginationText("showTotal");
134
+ if (typeof fn === "function") {
135
+ return fn(currentPage, totalPages);
136
+ }
137
+ return `Page ${currentPage} of ${totalPages}`;
138
+ },
96
139
  responsive: true,
97
140
  size: "small"
98
141
  };
@@ -0,0 +1,13 @@
1
+ /**
2
+ * PisellFloorMapLayout - 空间布局视图
3
+ * 支持两种用法:1) 仅传入 items + renderItem(原有用法);2) 传入 floorMapConfig + dataSources + mode 使用平面图视图(含多画布/编辑态)
4
+ */
5
+ import React from 'react';
6
+ import type { FloorMapItemBase, PisellFloorMapLayoutProps, PisellFloorMapLayoutRef } from './types';
7
+ import './PisellFloorMapLayout.less';
8
+ /** 空间布局根组件:阅读/编辑、列表与平面图双模式,ref 见 {@link PisellFloorMapLayoutRef} */
9
+ declare const PisellFloorMapLayout: <T extends FloorMapItemBase = FloorMapItemBase>(props: PisellFloorMapLayoutProps<T> & {
10
+ ref?: React.Ref<PisellFloorMapLayoutRef | null> | undefined;
11
+ }) => React.ReactElement;
12
+ export { PisellFloorMapLayout };
13
+ export default PisellFloorMapLayout;
@@ -79,6 +79,7 @@ function PisellFloorMapLayoutInner(props, ref) {
79
79
  pan = {},
80
80
  controls = {},
81
81
  enableHover = true,
82
+ readModeSelectedItemId,
82
83
  onItemClick,
83
84
  onItemHover,
84
85
  onItemLeave,
@@ -776,7 +777,8 @@ function PisellFloorMapLayoutInner(props, ref) {
776
777
  onItemHover,
777
778
  onItemLeave,
778
779
  getMergedItemWrapperStyle,
779
- onInteractionChange: setIsInteractingWithElement
780
+ onInteractionChange: setIsInteractingWithElement,
781
+ readModeSelectedItemId
780
782
  }
781
783
  ),
782
784
  isFloorMapView && mode === "edit" && (placeMode == null ? void 0 : placeMode.type) === "scene" && /* @__PURE__ */ import_react.default.createElement(
@@ -0,0 +1,39 @@
1
+ /// <reference types="react" />
2
+ import type { FloorMapMergedItem, FloorMapDataSources } from '../types';
3
+ export declare type FigmaTableStatus = 'available' | 'reserved' | 'waiting' | 'dining' | 'billed' | 'availableSoon';
4
+ /** 方桌/圆桌卡片展示用数据结构(与 Figma 设计一致,支持桌号/状态/人数/区域等) */
5
+ export interface FigmaTableCardItem {
6
+ id: string;
7
+ /**
8
+ * 无绑定或无可展示数据行时与蘸料摆台占位一致:浅灰底 + 虚线框 + 提示文案
9
+ * @see getRenderItemByKindCondimentStation(RecordBoard Story)
10
+ */
11
+ isNoDataPlaceholder?: boolean;
12
+ placeholderBorderColor?: string;
13
+ placeholderHint?: string;
14
+ /** 占位主标题:优先图元名称,否则「餐桌」/「圆桌」 */
15
+ placeholderTitle?: string;
16
+ /** 桌号/名称,空闲态居中显示 */
17
+ displayName?: string;
18
+ status?: FigmaTableStatus;
19
+ customerName?: string;
20
+ reserveTime?: string;
21
+ /** 当前用餐人数(与 Figma 设计一致) */
22
+ guests?: number;
23
+ /** 可坐人数(与表格列「可坐人数」绑定) */
24
+ capacity?: number;
25
+ dishes?: string;
26
+ duration?: string;
27
+ /** 区域(与表格列「区域」绑定,如大厅/包厢A) */
28
+ area?: string;
29
+ }
30
+ /** 从 merged item + dataSources 得到卡片数据 */
31
+ export declare function getFigmaTableCardFromMerged(item: FloorMapMergedItem, dataSources: FloorMapDataSources): FigmaTableCardItem;
32
+ /** 渲染 Figma 样式的方桌卡片(上下小条 + 资源信息标题栏 + 白底卡片 + 状态色边框) */
33
+ export declare function renderFigmaStyleTableCard(cardItem: FigmaTableCardItem): JSX.Element;
34
+ /** 渲染 Figma 样式的圆桌卡片(顶部资源信息 chip + 圆形主体,圆形主体只展示状态相关内容) */
35
+ export declare function renderFigmaStyleRoundTableCard(cardItem: FigmaTableCardItem): JSX.Element;
36
+ /** 返回用于 renderItemByKind.table 的渲染函数(方桌) */
37
+ export declare function getRenderItemByKindTable(dataSources: FloorMapDataSources): (item: unknown) => JSX.Element;
38
+ /** 返回用于 renderItemByKind.roundTable 的渲染函数(圆桌) */
39
+ export declare function getRenderItemByKindRoundTable(dataSources: FloorMapDataSources): (item: unknown) => JSX.Element;
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ import type { FloorMapEditPanelParams, FloorMapViewConfig, FloorMapDataSources } from '../types';
3
+ import './FloorMapEditPanel.less';
4
+ export interface FloorMapEditPanelProps extends FloorMapEditPanelParams {
5
+ config: FloorMapViewConfig;
6
+ dataSources: FloorMapDataSources;
7
+ savingRecord?: boolean;
8
+ className?: string;
9
+ }
10
+ export declare function FloorMapEditPanel(props: FloorMapEditPanelProps): JSX.Element;
11
+ export default FloorMapEditPanel;
@@ -0,0 +1,60 @@
1
+ /**
2
+ * FloorMapEditTopBar - 编辑态顶栏
3
+ * - `mode="compact"`:画布 Tab + 可选 `canvasTabsBarTrailing`(全屏入口在左下 Dock)
4
+ * - `mode="full"`:画布 Tab + `canvasTabsBarTrailing` + 保存(仅非浏览器全屏时)+ 扩展操作
5
+ */
6
+ import React from 'react';
7
+ import type { CanvasTabsProps } from './CanvasTabs';
8
+ import type { FloorMapControlsConfig, FloorMapViewConfig } from '../types';
9
+ import './FloorMapEditTopBar.less';
10
+ export declare type FloorMapEditTopBarMode = 'full' | 'compact';
11
+ export interface FloorMapEditTopBarProps {
12
+ /** full:全屏时的完整顶栏;compact:非全屏时 Tab + 扩展区 */
13
+ mode?: FloorMapEditTopBarMode;
14
+ config: FloorMapViewConfig;
15
+ canvases: CanvasTabsProps['canvases'];
16
+ currentCanvasId: CanvasTabsProps['currentCanvasId'];
17
+ onTabChange: CanvasTabsProps['onTabChange'];
18
+ canEditTabs?: CanvasTabsProps['canEdit'];
19
+ onAddCanvas?: CanvasTabsProps['onAddCanvas'];
20
+ onRemoveCanvas?: CanvasTabsProps['onRemoveCanvas'];
21
+ onRenameCanvas?: CanvasTabsProps['onRenameCanvas'];
22
+ onSave?: () => void;
23
+ saving?: boolean;
24
+ saveError?: Error | string;
25
+ layoutDirty?: boolean;
26
+ /** full 模式:浏览器全屏时为 true,顶栏不展示保存(改由侧栏) */
27
+ isFullscreen?: boolean;
28
+ controls?: FloorMapControlsConfig;
29
+ /** 顶栏右侧扩展(如「区域定位」等),仅 full 模式 */
30
+ extraActions?: React.ReactNode;
31
+ /** 画布 Tab 同排最右侧业务区 */
32
+ canvasTabsBarTrailing?: React.ReactNode;
33
+ /** 启用画布仅 1 个时隐藏 Tab 行,仅保留右侧操作区(全屏顶栏保存等) */
34
+ hideCanvasTabs?: boolean;
35
+ /** 撤销当前编辑步骤(不传则不显示按钮) */
36
+ onUndo?: () => void;
37
+ /** 重做最近一次撤销(不传则不显示按钮) */
38
+ onRedo?: () => void;
39
+ /** 是否还有可撤销步骤 */
40
+ canUndo?: boolean;
41
+ /** 是否还有可重做步骤 */
42
+ canRedo?: boolean;
43
+ /**
44
+ * 退出编辑模式回调(不保存)。
45
+ * 传入后顶栏右侧会渲染「取消编辑」+「完成」两个按钮,替代原独立「保存」按钮:
46
+ * - 取消编辑 → `onCancelEdit?.() ?? onExitEdit()`
47
+ * - 完成 → `onSave?.()` + `onExitEdit()`
48
+ * 不传则维持旧版「保存」按钮(保存但不退出)。
49
+ */
50
+ onExitEdit?: () => void;
51
+ /**
52
+ * 「取消编辑」专用回调(可选)。传入时取消按钮优先调它,业务层可以在这里
53
+ * 完成「丢弃草稿 + 退出编辑」组合,从而保证回到阅读态不会看到未保存的脏数据。
54
+ * 不传时取消按钮回退到 `onExitEdit`。完成按钮链路不受此 prop 影响。
55
+ */
56
+ onCancelEdit?: () => void;
57
+ className?: string;
58
+ }
59
+ export declare function FloorMapEditTopBar(props: FloorMapEditTopBarProps): JSX.Element | null;
60
+ export default FloorMapEditTopBar;
@@ -0,0 +1,35 @@
1
+ /**
2
+ * FloorMapToolbar - 编辑态左侧侧边栏:按分类添加图元、绑定数据源与行;保存可选(默认用顶栏)
3
+ */
4
+ import React from 'react';
5
+ import type { FloorMapViewConfig, FloorMapDataSources, FloorMapMergedItem, FloorMapSceneElement, FloorMapPlaceMode } from '../types';
6
+ import { type FloorMapPaletteDragPayload } from '../utils/floorMapDropUtils';
7
+ import './FloorMapToolbar.less';
8
+ export type { FloorMapPlaceMode as PlaceMode };
9
+ export interface FloorMapToolbarProps {
10
+ config: FloorMapViewConfig;
11
+ dataSources: FloorMapDataSources;
12
+ dataSourceLabels?: Record<string, string>;
13
+ canCreate: boolean;
14
+ placeMode: FloorMapPlaceMode;
15
+ onPlaceModeChange: (mode: FloorMapPlaceMode) => void;
16
+ renderPreviewItem?: (item: FloorMapMergedItem) => React.ReactNode;
17
+ placementPreviewSize?: {
18
+ width: number;
19
+ height: number;
20
+ };
21
+ decorationPreviewSize?: number;
22
+ sceneElements?: FloorMapSceneElement[];
23
+ onSave?: () => void;
24
+ saving?: boolean;
25
+ saveError?: Error | string;
26
+ /** 布局草稿已相对持久化配置变更,提示用户点击本栏「保存」 */
27
+ layoutDirty?: boolean;
28
+ className?: string;
29
+ /** 触摸/笔:Pointer 拖拽落点(mouse 仍用 HTML5 DnD) */
30
+ onPaletteCardPointerDown?: (payload: FloorMapPaletteDragPayload, e: React.PointerEvent<HTMLButtonElement>) => void;
31
+ /** 触摸拖放结束后吞掉按钮 click,避免误触切换落点模式 */
32
+ consumeToolbarClickIfTouchDrag?: () => boolean;
33
+ }
34
+ export declare function FloorMapToolbar(props: FloorMapToolbarProps): JSX.Element;
35
+ export default FloorMapToolbar;
@@ -0,0 +1,57 @@
1
+ /**
2
+ * ItemLayer - 楼层图展示层
3
+ * 按 items 的 (x, y) 与 cellSize 定位,用 renderItem 渲染每项内容
4
+ */
5
+ import React from 'react';
6
+ import type { FloorMapItemBase, FloorMapItemUnit } from '../types';
7
+ import type { CSSProperties } from 'react';
8
+ import './ItemLayer.less';
9
+ export interface ItemLayerProps<T extends FloorMapItemBase> {
10
+ /** 资源列表 */
11
+ items: T[];
12
+ /** 每项渲染函数 */
13
+ renderItem: (item: T, index: number) => React.ReactNode;
14
+ /** 每项 key */
15
+ rowKey?: string | ((item: T, index: number) => string);
16
+ /** 每格像素尺寸(cell 单位时用;pixel 单位时作为缺省宽高) */
17
+ cellSize: number;
18
+ /** item 坐标与尺寸单位:cell 格子数,pixel 像素 */
19
+ itemUnit?: FloorMapItemUnit;
20
+ /** item 之间的间距(像素),仅 cell 单位时生效 */
21
+ itemGap?: number;
22
+ /** 内容区总宽度(像素),由 items 推导或外部传入 */
23
+ contentWidth: number;
24
+ /** 内容区总高度(像素) */
25
+ contentHeight: number;
26
+ /** 内容区 X 偏移(画布包围盒向左/上扩展时,图元层整体平移) */
27
+ contentOffsetX?: number;
28
+ /** 内容区 Y 偏移 */
29
+ contentOffsetY?: number;
30
+ /** 是否启用 hover 事件 */
31
+ enableHover?: boolean;
32
+ /**
33
+ * 是否在 hover 时显示外沿描边(选中感高亮)。默认 true。
34
+ * 平面图只读态可由布局关闭,仅去掉描边,不影响 onItemHover。
35
+ */
36
+ itemHoverOutline?: boolean;
37
+ /** 点击回调 */
38
+ onItemClick?: (item: T, index: number, e: React.MouseEvent<HTMLElement>) => void;
39
+ /** hover 进入 */
40
+ onItemHover?: (item: T, index: number, e: React.MouseEvent<HTMLElement>) => void;
41
+ /** hover 离开 */
42
+ onItemLeave?: (item: T, index: number, e: React.MouseEvent<HTMLElement>) => void;
43
+ /** 每项外层容器额外样式(与定位样式合并) */
44
+ getMergedItemWrapperStyle?: (item: T, index: number) => CSSProperties | undefined;
45
+ /**
46
+ * 阅读态:与 {@link rowKey} 解析 id 相等的图元加选中外圈(如详情 Modal 打开时)。
47
+ */
48
+ readModeSelectedItemId?: string | null;
49
+ /**
50
+ * 与编辑态一致:在含 `data-pisell-floor-room-scroll-surface` 的区域内按下时置 true,
51
+ * 用于禁用 Transform 画布平移,避免图元内纵向滑动拖动画布。
52
+ */
53
+ onInteractionChange?: (active: boolean) => void;
54
+ className?: string;
55
+ }
56
+ export declare function ItemLayer<T extends FloorMapItemBase>(props: ItemLayerProps<T>): JSX.Element;
57
+ export default ItemLayer;
@@ -38,6 +38,7 @@ var import_classnames = __toESM(require("classnames"));
38
38
  var import_ItemLayer = require("./ItemLayer.less");
39
39
  var PREFIX = "pisell-floor-map-layout";
40
40
  var ROOM_SCROLL_SURFACE_SELECTOR = "[data-pisell-floor-room-scroll-surface]";
41
+ var READ_MODE_SELECTED_STACK_Z = 1e6;
41
42
  function getItemKey(item, index, rowKey) {
42
43
  if (!rowKey) return item.id;
43
44
  if (typeof rowKey === "string")
@@ -76,6 +77,7 @@ function ItemLayer(props) {
76
77
  onItemLeave,
77
78
  getMergedItemWrapperStyle,
78
79
  onInteractionChange,
80
+ readModeSelectedItemId,
79
81
  className
80
82
  } = props;
81
83
  const notifyRoomScrollSurfaceActive = (0, import_react.useCallback)(() => {
@@ -142,13 +144,15 @@ function ItemLayer(props) {
142
144
  }
143
145
  const key = getItemKey(item, index, rowKey);
144
146
  const shapeStyle = getShapeStyle(item.shape);
147
+ const selectedRead = readModeSelectedItemId != null && String(readModeSelectedItemId).trim() !== "" && key === String(readModeSelectedItemId);
145
148
  return /* @__PURE__ */ import_react.default.createElement(
146
149
  "div",
147
150
  {
148
151
  key,
149
152
  className: (0, import_classnames.default)(`${PREFIX}-item`, {
150
153
  [`${PREFIX}-item-hoverable`]: enableHover,
151
- [`${PREFIX}-item-hover-outline`]: enableHover && itemHoverOutline
154
+ [`${PREFIX}-item-hover-outline`]: enableHover && itemHoverOutline,
155
+ [`${PREFIX}-item-read-selected`]: selectedRead
152
156
  }),
153
157
  style: {
154
158
  position: "absolute",
@@ -157,7 +161,7 @@ function ItemLayer(props) {
157
161
  width,
158
162
  height,
159
163
  boxSizing: "border-box",
160
- zIndex: item.zIndex ?? 0,
164
+ zIndex: selectedRead ? READ_MODE_SELECTED_STACK_Z + (item.zIndex ?? 0) : item.zIndex ?? 0,
161
165
  ...shapeStyle,
162
166
  ...getMergedItemWrapperStyle == null ? void 0 : getMergedItemWrapperStyle(item, index)
163
167
  },
@@ -184,7 +188,8 @@ function ItemLayer(props) {
184
188
  onItemLeave,
185
189
  getMergedItemWrapperStyle,
186
190
  handleItemPointerDownCapture,
187
- handleItemTouchStartCapture
191
+ handleItemTouchStartCapture,
192
+ readModeSelectedItemId
188
193
  ]);
189
194
  return /* @__PURE__ */ import_react.default.createElement(
190
195
  "div",
@@ -13,10 +13,17 @@
13
13
 
14
14
  /** hover 描边与编辑态选中一致(见 EditableItemLayer:`pisell-floor-map-layout-editable-item-selected`) */
15
15
 
16
- &-hoverable&-hover-outline:hover {
16
+ // &-hoverable&-hover-outline:hover {
17
+ // outline: 3px solid var(--fmap-primary, #1677ff);
18
+ // outline-offset: 0;
19
+ // box-shadow: 0 0 0 1px rgba(22, 119, 255, 0.25);
20
+ // z-index: 1;
21
+ // }
22
+
23
+ /** 阅读态:详情弹层等打开时由业务传入 `readModeSelectedItemId`,与编辑态选中描边一致 */
24
+ &-read-selected {
17
25
  outline: 3px solid var(--fmap-primary, #1677ff);
18
26
  outline-offset: 0;
19
27
  box-shadow: 0 0 0 1px rgba(22, 119, 255, 0.25);
20
- z-index: 1;
21
28
  }
22
29
  }