@pisell/materials 3.3.104 → 3.3.105

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 (567) 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/index.js +1 -1
  5. package/build/lowcode/meta.js +1 -1
  6. package/build/lowcode/preview.js +6 -6
  7. package/build/lowcode/render/default/view.js +2 -2
  8. package/build/lowcode/view.js +1 -1
  9. package/es/components/PisellBasicGrid/PisellBasicGrid.d.ts +9 -0
  10. package/es/components/PisellBasicGrid/hooks/index.d.ts +1 -0
  11. package/es/components/PisellBasicGrid/hooks/useGridStyle.d.ts +37 -0
  12. package/es/components/PisellBasicGrid/index.d.ts +6 -0
  13. package/es/components/PisellBasicGrid/types.d.ts +221 -0
  14. package/es/components/PisellBasicGrid/utils/index.d.ts +63 -0
  15. package/es/components/PisellCards/PisellCards.d.ts +8 -0
  16. package/es/components/PisellCards/components/GraphicTextCard/GraphicTextCard.d.ts +0 -1
  17. package/es/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.d.ts +5 -0
  18. package/es/components/PisellCards/components/GraphicTextCard/components/TextContent.d.ts +27 -0
  19. package/es/components/PisellCards/components/GraphicTextCard/hooks/index.d.ts +5 -0
  20. package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.d.ts +15 -0
  21. package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.d.ts +18 -0
  22. package/es/components/PisellCards/components/GraphicTextCard/index.d.ts +5 -0
  23. package/es/components/PisellCards/components/GraphicTextCard/types.d.ts +290 -0
  24. package/es/components/PisellCards/components/GraphicTextCard/utils/index.d.ts +19 -0
  25. package/es/components/PisellCards/components/MultilevelCard/MultilevelCard.d.ts +19 -0
  26. package/es/components/PisellCards/components/MultilevelCard/components/CardWrapper.d.ts +7 -0
  27. package/es/components/PisellCards/components/MultilevelCard/components/PanelWrapper.d.ts +7 -0
  28. package/es/components/PisellCards/components/MultilevelCard/components/index.d.ts +2 -0
  29. package/es/components/PisellCards/components/MultilevelCard/hooks/index.d.ts +2 -0
  30. package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.d.ts +31 -0
  31. package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.d.ts +28 -0
  32. package/es/components/PisellCards/components/MultilevelCard/index.d.ts +2 -0
  33. package/es/components/PisellCards/components/MultilevelCard/types.d.ts +202 -0
  34. package/es/components/PisellCards/components/MultilevelCard/utils/index.d.ts +6 -0
  35. package/es/components/PisellCards/components/PisellImageCard/components/index.d.ts +0 -0
  36. package/es/components/PisellCards/components/PisellImageCard/hooks/index.d.ts +5 -0
  37. package/es/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.d.ts +11 -0
  38. package/es/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.d.ts +10 -0
  39. package/es/components/PisellCards/components/PisellImageCard/types.d.ts +74 -0
  40. package/es/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.d.ts +7 -0
  41. package/es/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.d.ts +7 -0
  42. package/es/components/PisellCards/components/PisellImageCard/utils/index.d.ts +5 -0
  43. package/es/components/PisellCards/components/TabCard/TabCard.d.ts +3 -0
  44. package/es/components/PisellCards/components/TabCard/index.d.ts +5 -0
  45. package/es/components/PisellCards/components/TabCard/types.d.ts +70 -0
  46. package/es/components/PisellCards/components/TextCard/TextCard.d.ts +7 -0
  47. package/es/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +26 -0
  48. package/es/components/PisellCards/components/TextCard/components/IconWrapper.d.ts +17 -0
  49. package/es/components/PisellCards/components/TextCard/components/TextContent.d.ts +21 -0
  50. package/es/components/PisellCards/components/TextCard/components/index.d.ts +6 -0
  51. package/es/components/PisellCards/components/TextCard/hooks/index.d.ts +0 -0
  52. package/es/components/PisellCards/components/TextCard/index.d.ts +5 -0
  53. package/es/components/PisellCards/components/TextCard/types.d.ts +270 -0
  54. package/es/components/PisellCards/components/TextCard/utils/index.d.ts +0 -0
  55. package/es/components/PisellCards/hooks/index.d.ts +0 -0
  56. package/es/components/PisellCards/types.d.ts +48 -0
  57. package/es/components/PisellCards/utils/index.d.ts +0 -0
  58. package/es/components/PisellProcedure/components/FooterActions.d.ts +24 -0
  59. package/es/components/PisellProcedure/components/ProcedureContent.d.ts +23 -0
  60. package/es/components/PisellProcedure/components/ProcedureSidebar.d.ts +38 -0
  61. package/es/components/PisellProcedure/hooks/index.d.ts +8 -0
  62. package/es/components/PisellProcedure/hooks/useElementSize.d.ts +38 -0
  63. package/es/components/PisellProcedure/hooks/useOverflowActions.d.ts +43 -0
  64. package/es/components/PisellProcedure/hooks/useResponsiveClass.d.ts +6 -0
  65. package/es/components/PisellProcedure/hooks/useSidebarHeight.d.ts +16 -0
  66. package/es/components/PisellProcedure/hooks/useStepManager.d.ts +50 -0
  67. package/es/components/PisellProcedure/types.d.ts +363 -0
  68. package/es/components/PisellProcedure/utils/classNames.d.ts +33 -0
  69. package/es/components/PisellProcedure/utils/extractText.d.ts +20 -0
  70. package/es/components/PisellProcedure/utils/footerPosition.d.ts +41 -0
  71. package/es/components/PisellProcedure/utils/index.d.ts +8 -0
  72. package/es/components/PisellProcedure/utils/layoutRatio.d.ts +42 -0
  73. package/es/components/PisellProcedure/utils/slotHelper.d.ts +27 -0
  74. package/es/components/PisellScrollView/PisellScrollView.stories.d.ts +87 -0
  75. package/es/components/PisellScrollView/components/Actions/index.d.ts +18 -0
  76. package/es/components/PisellScrollView/hooks/index.d.ts +3 -0
  77. package/es/components/PisellScrollView/hooks/useIntersection.d.ts +8 -0
  78. package/es/components/PisellScrollView/hooks/useScrollEvents.d.ts +20 -0
  79. package/es/components/PisellScrollView/index.d.ts +3 -0
  80. package/es/components/PisellScrollView/types.d.ts +203 -0
  81. package/es/components/PisellScrollView/utils/index.d.ts +0 -0
  82. package/es/components/PisellSteps/PisellSteps.stories.d.ts +155 -0
  83. package/es/components/PisellSteps/hooks/index.d.ts +4 -0
  84. package/es/components/PisellSteps/hooks/useAnchor.d.ts +9 -0
  85. package/es/components/PisellSteps/hooks/useResponsive.d.ts +8 -0
  86. package/es/components/PisellSteps/hooks/useStepClick.d.ts +11 -0
  87. package/es/components/PisellSteps/hooks/useStepsState.d.ts +9 -0
  88. package/es/components/PisellSteps/index.d.ts +3 -0
  89. package/es/components/PisellSteps/types.d.ts +257 -0
  90. package/es/components/PisellSteps/utils/index.d.ts +54 -0
  91. package/es/components/PisellSuperTabs/components/index.d.ts +0 -0
  92. package/es/components/PisellSuperTabs/utils/getRowKey.d.ts +8 -0
  93. package/es/components/PisellSuperTabs/utils/index.d.ts +1 -0
  94. package/es/components/PisellTabbar/locales.d.ts +23 -0
  95. package/es/components/PisellTabbar/mock.d.ts +47 -0
  96. package/es/components/PisellTabbar/template/index.d.ts +0 -0
  97. package/es/components/PisellTabbar2/constants.d.ts +46 -0
  98. package/es/components/PisellTabbar2/hooks/index.d.ts +2 -0
  99. package/es/components/PisellTabbar2/hooks/useActiveKey.d.ts +50 -0
  100. package/es/components/PisellTabbar2/hooks/useExpand.d.ts +41 -0
  101. package/es/components/PisellTabbar2/locales.d.ts +23 -0
  102. package/es/components/PisellTabbar2/mock.d.ts +205 -0
  103. package/es/components/PisellTabbar2/types.d.ts +117 -0
  104. package/es/components/PisellTabbar2/utils/index.d.ts +35 -0
  105. package/es/components/PisellTabbar3/locales.d.ts +23 -0
  106. package/es/components/PisellTabbar3/mock.d.ts +47 -0
  107. package/es/components/PisellTabbar3/types.d.ts +111 -0
  108. package/es/components/Template/PisellSteps.d.ts +0 -0
  109. package/es/components/Template/components/index.d.ts +0 -0
  110. package/es/components/Template/hooks/index.d.ts +0 -0
  111. package/es/components/Template/index.d.ts +0 -0
  112. package/es/components/Template/types.d.ts +0 -0
  113. package/es/components/Template/utils/index.d.ts +0 -0
  114. package/es/components/auto-complete-number/index.d.ts +0 -1
  115. package/es/components/badge/index.d.ts +0 -1
  116. package/es/components/batch-editor/fields/index.d.ts +0 -1
  117. package/es/components/calendar/index.d.ts +0 -1
  118. package/es/components/checkbox/index.d.ts +0 -1
  119. package/es/components/classicLayout/index.d.ts +0 -1
  120. package/es/components/colorPicker/index.d.ts +0 -1
  121. package/es/components/config-provider/index.d.ts +0 -1
  122. package/es/components/dataSourceComponents/dataSourceForm/formItem.d.ts +1 -0
  123. package/es/components/dataSourceComponents/dataSourceForm/urlUtils.d.ts +24 -0
  124. package/es/components/dataSourceComponents/dataSourceTable/BaseTable.d.ts +5 -2
  125. package/es/components/dataSourceComponents/dataSourceTable/BaseTable.js +3 -1
  126. package/es/components/dataSourceComponents/dataSourceTable/filter/index.d.ts +0 -1
  127. package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +6 -1
  128. package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.js +23 -7
  129. package/es/components/dataSourceComponents/fields/Input.Phone/serve.d.ts +27 -0
  130. package/es/components/dataSourceComponents/fields/index.d.ts +4 -4
  131. package/es/components/dataSourceComponents/hooks/useFormSettingParams.d.ts +7 -0
  132. package/es/components/drag-sort-tree/index.d.ts +0 -1
  133. package/es/components/dropdown/index.d.ts +0 -1
  134. package/es/components/filter/components/items/index.d.ts +0 -1
  135. package/es/components/filter/components/items/text/Editor/index.d.ts +0 -1
  136. package/es/components/filter/components/items/text/Preview/index.d.ts +0 -1
  137. package/es/components/filter/components/items/text/index.d.ts +0 -1
  138. package/es/components/pisellBatchActionBar/types.d.ts +237 -0
  139. package/es/components/pisellCard/index.d.ts +0 -1
  140. package/es/components/pisellDataSourceContainer/utils/formatData.d.ts +9 -0
  141. package/es/components/pisellDateTimeDisplay/formats/dateTimeDisplayFormats.d.ts +7 -0
  142. package/es/components/pisellDateTimeDisplay/formats/index.d.ts +1 -0
  143. package/es/components/pisellDateTimeDisplay/types.d.ts +352 -0
  144. package/es/components/pisellDateTimeDisplay/utils/formatTime.d.ts +19 -0
  145. package/es/components/pisellDateTimeDisplay/utils/getRefreshInterval.d.ts +18 -0
  146. package/es/components/pisellEmail/constants/emailDomains.d.ts +5 -0
  147. package/es/components/pisellEmail/constants/emailRegex.d.ts +13 -0
  148. package/es/components/pisellEmail/utils/domainSuggestions.d.ts +15 -0
  149. package/es/components/pisellFloorMapLayout/components/FloorMapEditQuickActions.d.ts +23 -0
  150. package/es/components/pisellFloorMapLayout/components/HistoryIcons.d.ts +39 -0
  151. package/es/components/pisellFloorMapLayout/floorMapLayoutConstants.d.ts +35 -0
  152. package/es/components/pisellFloorMapLayout/hooks/floorMapViewportPersistence.d.ts +25 -0
  153. package/es/components/pisellFloorMapLayout/hooks/useDraftConfigHistory.d.ts +18 -0
  154. package/es/components/pisellFloorMapLayout/hooks/useFloorMapPaletteTouchDrag.d.ts +21 -0
  155. package/es/components/pisellFloorMapLayout/locales-ja.d.ts +184 -0
  156. package/es/components/pisellFloorMapLayout/locales-pt.d.ts +184 -0
  157. package/es/components/pisellFloorMapLayout/locales.d.ts +969 -0
  158. package/es/components/pisellFloorMapLayout/shopFloorPlan/shopFloorPlanTypes.d.ts +80 -0
  159. package/es/components/pisellFloorMapLayout/utils/alignSnap.d.ts +64 -0
  160. package/es/components/pisellFloorMapLayout/utils/floorMapBuiltinShapes.d.ts +59 -0
  161. package/es/components/pisellFloorMapLayout/utils/floorMapDataRecordLabel.d.ts +8 -0
  162. package/es/components/pisellFloorMapLayout/utils/floorMapDropUtils.d.ts +33 -0
  163. package/es/components/pisellFloorMapLayout/utils/floorMapElementNameAsTitle.d.ts +50 -0
  164. package/es/components/pisellFloorMapLayout/utils/floorMapResourcePickerDisplay.d.ts +27 -0
  165. package/es/components/pisellFloorMapLayout/utils/floorMapResourcePickerTypes.d.ts +109 -0
  166. package/es/components/pisellFloorMapLayout/utils/floorMapStageDefaults.d.ts +8 -0
  167. package/es/components/pisellFloorMapLayout/utils/snap.d.ts +10 -0
  168. package/es/components/pisellGridPro/GridPro.d.ts +9 -0
  169. package/es/components/pisellGridPro/GridView/index.d.ts +5 -0
  170. package/es/components/pisellGridPro/GridView/type.d.ts +3 -0
  171. package/es/components/pisellGridPro/ToolBar/index.d.ts +6 -0
  172. package/es/components/pisellGridPro/ToolBar/type.d.ts +10 -0
  173. package/es/components/pisellGridPro/components/DataCard/components/StatCard/index.d.ts +10 -0
  174. package/es/components/pisellGridPro/components/DataCard/index.d.ts +5 -0
  175. package/es/components/pisellGridPro/components/DataCard/types.d.ts +70 -0
  176. package/es/components/pisellGridPro/components/Footer/index.d.ts +9 -0
  177. package/es/components/pisellGridPro/components/Header/index.d.ts +12 -0
  178. package/es/components/pisellGridPro/index.d.ts +4 -0
  179. package/es/components/pisellInformationEntry/Scan/index.d.ts +0 -1
  180. package/es/components/pisellLayout/index.d.ts +14 -0
  181. package/es/components/pisellLookup/hooks/useDebounceSearch.d.ts +40 -0
  182. package/es/components/pisellLookup/hooks/useSearchState.d.ts +80 -0
  183. package/es/components/pisellLookup/utils/storage.d.ts +42 -0
  184. package/es/components/pisellMetricCard/components/MetricTitle.d.ts +12 -0
  185. package/es/components/pisellMetricCard/components/MetricValue.d.ts +12 -0
  186. package/es/components/pisellMetricCard/components/TrendIcon.d.ts +14 -0
  187. package/es/components/pisellMetricCard/types.d.ts +201 -0
  188. package/es/components/pisellMetricCard/utils/calculateTrend.d.ts +14 -0
  189. package/es/components/pisellMobileDateRangePicker/PisellMobileDateRangePicker.d.ts +8 -0
  190. package/es/components/pisellMobileDateRangePicker/index.d.ts +2 -0
  191. package/es/components/pisellMobileDateRangePicker/types.d.ts +28 -0
  192. package/es/components/pisellPercent/utils/rangeConverter.d.ts +36 -0
  193. package/es/components/pisellPhone/utils/phoneFormatter.d.ts +39 -0
  194. package/es/components/pisellRecordBoard/shellFrame/Calendar/calendarI18n.d.ts +4 -0
  195. package/es/components/pisellRecordBoard/shellFrame/Calendar/calendarPersistGuard.d.ts +18 -0
  196. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/NoteTicker.d.ts +14 -0
  197. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallViewportToolbar.d.ts +18 -0
  198. package/es/components/pisellRecordBoard/shellFrame/ResourceWall/resourceWallConstants.d.ts +2 -0
  199. package/es/components/pisellRecordBoard/shellFrame/ToolBar/recordBoardToolBarConstants.d.ts +8 -0
  200. package/es/components/pisellReservationSchedule/locales.d.ts +43 -0
  201. package/es/components/pisellReservationSchedule/types.d.ts +52 -0
  202. package/es/components/pisellReservationScheduleBand/types.d.ts +68 -0
  203. package/es/components/pisellReservationScheduleBand/utils/formatScheduleAtLabel.d.ts +9 -0
  204. package/es/components/pisellSort/index.d.ts +3 -0
  205. package/es/components/pisellSort/type.d.ts +7 -0
  206. package/es/components/pisellTimeNavigator/components/BackgroundLayer.d.ts +14 -0
  207. package/es/components/pisellTimeNavigator/components/CursorLayer.d.ts +29 -0
  208. package/es/components/pisellTimeNavigator/components/GestureLayer.d.ts +41 -0
  209. package/es/components/pisellTimeNavigator/components/ScaleLayer.d.ts +40 -0
  210. package/es/components/pisellTimeNavigator/hooks/index.d.ts +5 -0
  211. package/es/components/pisellTimeNavigator/hooks/useDragInertia.d.ts +14 -0
  212. package/es/components/pisellTimeNavigator/hooks/useRealtime.d.ts +5 -0
  213. package/es/components/pisellTimeNavigator/hooks/useTimeAxis.d.ts +37 -0
  214. package/es/components/pisellTimeNavigator/locales.d.ts +22 -0
  215. package/es/components/pisellTimeNavigator/timeNavigatorConstants.d.ts +20 -0
  216. package/es/components/pisellTimeNavigator/types.d.ts +175 -0
  217. package/es/components/pisellTimeNavigator/utils/index.d.ts +79 -0
  218. package/es/components/pisellTimeRangeDisplay/utils/formatDuration.d.ts +14 -0
  219. package/es/components/pisellUpload/index.d.ts +0 -1
  220. package/es/components/pisellUrl/utils/index.d.ts +6 -0
  221. package/es/components/pisellUrl/utils/urlFormatter.d.ts +38 -0
  222. package/es/components/pisellUrl/utils/urlHelper.d.ts +63 -0
  223. package/es/components/pisellUrl/utils/urlValidator.d.ts +46 -0
  224. package/es/components/productCard/components/Divider/index.d.ts +0 -1
  225. package/es/components/productCard/components/Header/DeleteButton/index.d.ts +0 -1
  226. package/es/components/productCard/components/Time/components/Like/index.d.ts +0 -1
  227. package/es/components/radio/index.d.ts +0 -1
  228. package/es/components/segmented/index.d.ts +0 -1
  229. package/es/components/select-time/RightPanel/index.d.ts +0 -1
  230. package/es/components/skeleton/index.d.ts +0 -1
  231. package/es/components/slider/index.d.ts +0 -1
  232. package/es/components/sort/components/InlineMenu/index.d.ts +0 -1
  233. package/es/components/sort/types.d.ts +39 -0
  234. package/es/components/table/Actions/component/ExportImport/index.d.ts +1 -0
  235. package/es/components/table/Actions/component/GallerySetting/index.d.ts +1 -0
  236. package/es/components/table/Actions/component/Group/PopoverContent.d.ts +0 -1
  237. package/es/components/table/Actions/component/Group/index.d.ts +1 -0
  238. package/es/components/table/Gallery/components/GalleryItem/components/Cover/index.d.ts +1 -0
  239. package/es/components/table/Gallery/components/GalleryItem/components/Title/index.d.ts +1 -0
  240. package/es/components/table/Summary/index.d.ts +0 -1
  241. package/es/components/table/Table/SelectField/index.d.ts +0 -1
  242. package/es/components/table/Table/fields/date/Config/index.d.ts +0 -1
  243. package/es/components/table/Table/fields/date/Sort/index.d.ts +0 -1
  244. package/es/components/table/Table/fields/image/Config/index.d.ts +0 -1
  245. package/es/components/table/Table/fields/image/Sort/index.d.ts +0 -1
  246. package/es/components/table/Table/fields/index.d.ts +2 -2
  247. package/es/components/table/Table/fields/link/Config/index.d.ts +0 -1
  248. package/es/components/table/Table/fields/link/Sort/index.d.ts +0 -1
  249. package/es/components/table/Table/fields/number/Config/index.d.ts +0 -1
  250. package/es/components/table/Table/fields/number/Sort/index.d.ts +0 -1
  251. package/es/components/table/Table/fields/numberRange/Config/index.d.ts +0 -1
  252. package/es/components/table/Table/fields/numberRange/Sort/index.d.ts +0 -1
  253. package/es/components/table/Table/fields/oldRangePicker/Config/index.d.ts +0 -1
  254. package/es/components/table/Table/fields/oldRangePicker/Sort/index.d.ts +0 -1
  255. package/es/components/table/Table/fields/pSwitch/Config/index.d.ts +0 -1
  256. package/es/components/table/Table/fields/pSwitch/Sort/index.d.ts +0 -1
  257. package/es/components/table/Table/fields/rangePicker/Config/index.d.ts +0 -1
  258. package/es/components/table/Table/fields/rangePicker/Sort/index.d.ts +0 -1
  259. package/es/components/table/Table/fields/search/Config/index.d.ts +0 -1
  260. package/es/components/table/Table/fields/search/Sort/index.d.ts +0 -1
  261. package/es/components/table/Table/fields/select/Config/index.d.ts +0 -1
  262. package/es/components/table/Table/fields/select/Sort/index.d.ts +0 -1
  263. package/es/components/table/Table/fields/select/index.d.ts +0 -1
  264. package/es/components/table/Table/fields/text/Config/index.d.ts +0 -1
  265. package/es/components/table/Table/fields/text/Show/index.d.ts +1 -0
  266. package/es/components/table/Table/fields/text/Sort/index.d.ts +0 -1
  267. package/es/components/table/Table/fields/text/index.d.ts +1 -0
  268. package/es/components/table/Table/fields/treeSelect/Config/index.d.ts +0 -1
  269. package/es/components/table/Table/fields/treeSelect/Sort/index.d.ts +0 -1
  270. package/es/components/table/Table/fields/types/index.d.ts +33 -0
  271. package/es/components/table/Table/tableConfig/summary/index.d.ts +0 -1
  272. package/es/components/table/Table/utils.d.ts +1 -1
  273. package/es/components/table/TableFilter/SortIcon.d.ts +0 -1
  274. package/es/components/table/View/index.d.ts +0 -1
  275. package/es/components/time-picker/index.d.ts +0 -1
  276. package/es/components/upload/index.d.ts +0 -1
  277. package/es/components/virtual-keyboard/Time/utils.d.ts +0 -1
  278. package/es/components/virtualInput/BaseVirtualInput/index.d.ts +44 -0
  279. package/es/components/virtualInput/index.d.ts +29 -0
  280. package/es/components/walletCard/Guest/index.d.ts +0 -1
  281. package/es/components/walletCard/Guide/index.d.ts +0 -1
  282. package/es/hooks/useMobile.d.ts +8 -0
  283. package/es/hooks/useThemeTokens.d.ts +7 -0
  284. package/es/theme/tokens.d.ts +22 -0
  285. package/es/utils/platform.d.ts +1 -1
  286. package/es/utils/tagColor.d.ts +7 -0
  287. package/lib/components/PisellBasicGrid/PisellBasicGrid.d.ts +9 -0
  288. package/lib/components/PisellBasicGrid/hooks/index.d.ts +1 -0
  289. package/lib/components/PisellBasicGrid/hooks/useGridStyle.d.ts +37 -0
  290. package/lib/components/PisellBasicGrid/index.d.ts +6 -0
  291. package/lib/components/PisellBasicGrid/types.d.ts +221 -0
  292. package/lib/components/PisellBasicGrid/utils/index.d.ts +63 -0
  293. package/lib/components/PisellCards/PisellCards.d.ts +8 -0
  294. package/lib/components/PisellCards/components/GraphicTextCard/GraphicTextCard.d.ts +0 -1
  295. package/lib/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.d.ts +5 -0
  296. package/lib/components/PisellCards/components/GraphicTextCard/components/TextContent.d.ts +27 -0
  297. package/lib/components/PisellCards/components/GraphicTextCard/hooks/index.d.ts +5 -0
  298. package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.d.ts +15 -0
  299. package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.d.ts +18 -0
  300. package/lib/components/PisellCards/components/GraphicTextCard/index.d.ts +5 -0
  301. package/lib/components/PisellCards/components/GraphicTextCard/types.d.ts +290 -0
  302. package/lib/components/PisellCards/components/GraphicTextCard/utils/index.d.ts +19 -0
  303. package/lib/components/PisellCards/components/MultilevelCard/MultilevelCard.d.ts +19 -0
  304. package/lib/components/PisellCards/components/MultilevelCard/components/CardWrapper.d.ts +7 -0
  305. package/lib/components/PisellCards/components/MultilevelCard/components/PanelWrapper.d.ts +7 -0
  306. package/lib/components/PisellCards/components/MultilevelCard/components/index.d.ts +2 -0
  307. package/lib/components/PisellCards/components/MultilevelCard/hooks/index.d.ts +2 -0
  308. package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.d.ts +31 -0
  309. package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.d.ts +28 -0
  310. package/lib/components/PisellCards/components/MultilevelCard/index.d.ts +2 -0
  311. package/lib/components/PisellCards/components/MultilevelCard/types.d.ts +202 -0
  312. package/lib/components/PisellCards/components/MultilevelCard/utils/index.d.ts +6 -0
  313. package/lib/components/PisellCards/components/PisellImageCard/components/index.d.ts +0 -0
  314. package/lib/components/PisellCards/components/PisellImageCard/hooks/index.d.ts +5 -0
  315. package/lib/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.d.ts +11 -0
  316. package/lib/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.d.ts +10 -0
  317. package/lib/components/PisellCards/components/PisellImageCard/types.d.ts +74 -0
  318. package/lib/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.d.ts +7 -0
  319. package/lib/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.d.ts +7 -0
  320. package/lib/components/PisellCards/components/PisellImageCard/utils/index.d.ts +5 -0
  321. package/lib/components/PisellCards/components/TabCard/TabCard.d.ts +3 -0
  322. package/lib/components/PisellCards/components/TabCard/index.d.ts +5 -0
  323. package/lib/components/PisellCards/components/TabCard/types.d.ts +70 -0
  324. package/lib/components/PisellCards/components/TextCard/TextCard.d.ts +7 -0
  325. package/lib/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +26 -0
  326. package/lib/components/PisellCards/components/TextCard/components/IconWrapper.d.ts +17 -0
  327. package/lib/components/PisellCards/components/TextCard/components/TextContent.d.ts +21 -0
  328. package/lib/components/PisellCards/components/TextCard/components/index.d.ts +6 -0
  329. package/lib/components/PisellCards/components/TextCard/hooks/index.d.ts +0 -0
  330. package/lib/components/PisellCards/components/TextCard/index.d.ts +5 -0
  331. package/lib/components/PisellCards/components/TextCard/types.d.ts +270 -0
  332. package/lib/components/PisellCards/components/TextCard/utils/index.d.ts +0 -0
  333. package/lib/components/PisellCards/hooks/index.d.ts +0 -0
  334. package/lib/components/PisellCards/types.d.ts +48 -0
  335. package/lib/components/PisellCards/utils/index.d.ts +0 -0
  336. package/lib/components/PisellProcedure/components/FooterActions.d.ts +24 -0
  337. package/lib/components/PisellProcedure/components/ProcedureContent.d.ts +23 -0
  338. package/lib/components/PisellProcedure/components/ProcedureSidebar.d.ts +38 -0
  339. package/lib/components/PisellProcedure/hooks/index.d.ts +8 -0
  340. package/lib/components/PisellProcedure/hooks/useElementSize.d.ts +38 -0
  341. package/lib/components/PisellProcedure/hooks/useOverflowActions.d.ts +43 -0
  342. package/lib/components/PisellProcedure/hooks/useResponsiveClass.d.ts +6 -0
  343. package/lib/components/PisellProcedure/hooks/useSidebarHeight.d.ts +16 -0
  344. package/lib/components/PisellProcedure/hooks/useStepManager.d.ts +50 -0
  345. package/lib/components/PisellProcedure/types.d.ts +363 -0
  346. package/lib/components/PisellProcedure/utils/classNames.d.ts +33 -0
  347. package/lib/components/PisellProcedure/utils/extractText.d.ts +20 -0
  348. package/lib/components/PisellProcedure/utils/footerPosition.d.ts +41 -0
  349. package/lib/components/PisellProcedure/utils/index.d.ts +8 -0
  350. package/lib/components/PisellProcedure/utils/layoutRatio.d.ts +42 -0
  351. package/lib/components/PisellProcedure/utils/slotHelper.d.ts +27 -0
  352. package/lib/components/PisellScrollView/PisellScrollView.stories.d.ts +87 -0
  353. package/lib/components/PisellScrollView/components/Actions/index.d.ts +18 -0
  354. package/lib/components/PisellScrollView/hooks/index.d.ts +3 -0
  355. package/lib/components/PisellScrollView/hooks/useIntersection.d.ts +8 -0
  356. package/lib/components/PisellScrollView/hooks/useScrollEvents.d.ts +20 -0
  357. package/lib/components/PisellScrollView/index.d.ts +3 -0
  358. package/lib/components/PisellScrollView/types.d.ts +203 -0
  359. package/lib/components/PisellScrollView/utils/index.d.ts +0 -0
  360. package/lib/components/PisellSteps/PisellSteps.stories.d.ts +155 -0
  361. package/lib/components/PisellSteps/hooks/index.d.ts +4 -0
  362. package/lib/components/PisellSteps/hooks/useAnchor.d.ts +9 -0
  363. package/lib/components/PisellSteps/hooks/useResponsive.d.ts +8 -0
  364. package/lib/components/PisellSteps/hooks/useStepClick.d.ts +11 -0
  365. package/lib/components/PisellSteps/hooks/useStepsState.d.ts +9 -0
  366. package/lib/components/PisellSteps/index.d.ts +3 -0
  367. package/lib/components/PisellSteps/types.d.ts +257 -0
  368. package/lib/components/PisellSteps/utils/index.d.ts +54 -0
  369. package/lib/components/PisellSuperTabs/components/index.d.ts +0 -0
  370. package/lib/components/PisellSuperTabs/utils/getRowKey.d.ts +8 -0
  371. package/lib/components/PisellSuperTabs/utils/index.d.ts +1 -0
  372. package/lib/components/PisellTabbar/locales.d.ts +23 -0
  373. package/lib/components/PisellTabbar/mock.d.ts +47 -0
  374. package/lib/components/PisellTabbar/template/index.d.ts +0 -0
  375. package/lib/components/PisellTabbar2/constants.d.ts +46 -0
  376. package/lib/components/PisellTabbar2/hooks/index.d.ts +2 -0
  377. package/lib/components/PisellTabbar2/hooks/useActiveKey.d.ts +50 -0
  378. package/lib/components/PisellTabbar2/hooks/useExpand.d.ts +41 -0
  379. package/lib/components/PisellTabbar2/locales.d.ts +23 -0
  380. package/lib/components/PisellTabbar2/mock.d.ts +205 -0
  381. package/lib/components/PisellTabbar2/types.d.ts +117 -0
  382. package/lib/components/PisellTabbar2/utils/index.d.ts +35 -0
  383. package/lib/components/PisellTabbar3/locales.d.ts +23 -0
  384. package/lib/components/PisellTabbar3/mock.d.ts +47 -0
  385. package/lib/components/PisellTabbar3/types.d.ts +111 -0
  386. package/lib/components/Template/PisellSteps.d.ts +0 -0
  387. package/lib/components/Template/components/index.d.ts +0 -0
  388. package/lib/components/Template/hooks/index.d.ts +0 -0
  389. package/lib/components/Template/index.d.ts +0 -0
  390. package/lib/components/Template/types.d.ts +0 -0
  391. package/lib/components/Template/utils/index.d.ts +0 -0
  392. package/lib/components/auto-complete-number/index.d.ts +0 -1
  393. package/lib/components/badge/index.d.ts +0 -1
  394. package/lib/components/batch-editor/fields/index.d.ts +0 -1
  395. package/lib/components/calendar/index.d.ts +0 -1
  396. package/lib/components/checkbox/index.d.ts +0 -1
  397. package/lib/components/classicLayout/index.d.ts +0 -1
  398. package/lib/components/colorPicker/index.d.ts +0 -1
  399. package/lib/components/config-provider/index.d.ts +0 -1
  400. package/lib/components/dataSourceComponents/dataSourceForm/formItem.d.ts +1 -0
  401. package/lib/components/dataSourceComponents/dataSourceForm/urlUtils.d.ts +24 -0
  402. package/lib/components/dataSourceComponents/dataSourceTable/BaseTable.d.ts +5 -2
  403. package/lib/components/dataSourceComponents/dataSourceTable/BaseTable.js +2 -1
  404. package/lib/components/dataSourceComponents/dataSourceTable/filter/index.d.ts +0 -1
  405. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +6 -1
  406. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.js +31 -11
  407. package/lib/components/dataSourceComponents/fields/Input.Phone/serve.d.ts +27 -0
  408. package/lib/components/dataSourceComponents/fields/index.d.ts +4 -4
  409. package/lib/components/dataSourceComponents/hooks/useFormSettingParams.d.ts +7 -0
  410. package/lib/components/drag-sort-tree/index.d.ts +0 -1
  411. package/lib/components/dropdown/index.d.ts +0 -1
  412. package/lib/components/filter/components/items/index.d.ts +0 -1
  413. package/lib/components/filter/components/items/text/Editor/index.d.ts +0 -1
  414. package/lib/components/filter/components/items/text/Preview/index.d.ts +0 -1
  415. package/lib/components/filter/components/items/text/index.d.ts +0 -1
  416. package/lib/components/pisellBatchActionBar/types.d.ts +237 -0
  417. package/lib/components/pisellCard/index.d.ts +0 -1
  418. package/lib/components/pisellDataSourceContainer/utils/formatData.d.ts +9 -0
  419. package/lib/components/pisellDateTimeDisplay/formats/dateTimeDisplayFormats.d.ts +7 -0
  420. package/lib/components/pisellDateTimeDisplay/formats/index.d.ts +1 -0
  421. package/lib/components/pisellDateTimeDisplay/types.d.ts +352 -0
  422. package/lib/components/pisellDateTimeDisplay/utils/formatTime.d.ts +19 -0
  423. package/lib/components/pisellDateTimeDisplay/utils/getRefreshInterval.d.ts +18 -0
  424. package/lib/components/pisellEmail/constants/emailDomains.d.ts +5 -0
  425. package/lib/components/pisellEmail/constants/emailRegex.d.ts +13 -0
  426. package/lib/components/pisellEmail/utils/domainSuggestions.d.ts +15 -0
  427. package/lib/components/pisellFloorMapLayout/components/FloorMapEditQuickActions.d.ts +23 -0
  428. package/lib/components/pisellFloorMapLayout/components/HistoryIcons.d.ts +39 -0
  429. package/lib/components/pisellFloorMapLayout/floorMapLayoutConstants.d.ts +35 -0
  430. package/lib/components/pisellFloorMapLayout/hooks/floorMapViewportPersistence.d.ts +25 -0
  431. package/lib/components/pisellFloorMapLayout/hooks/useDraftConfigHistory.d.ts +18 -0
  432. package/lib/components/pisellFloorMapLayout/hooks/useFloorMapPaletteTouchDrag.d.ts +21 -0
  433. package/lib/components/pisellFloorMapLayout/locales-ja.d.ts +184 -0
  434. package/lib/components/pisellFloorMapLayout/locales-pt.d.ts +184 -0
  435. package/lib/components/pisellFloorMapLayout/locales.d.ts +969 -0
  436. package/lib/components/pisellFloorMapLayout/shopFloorPlan/shopFloorPlanTypes.d.ts +80 -0
  437. package/lib/components/pisellFloorMapLayout/utils/alignSnap.d.ts +64 -0
  438. package/lib/components/pisellFloorMapLayout/utils/floorMapBuiltinShapes.d.ts +59 -0
  439. package/lib/components/pisellFloorMapLayout/utils/floorMapDataRecordLabel.d.ts +8 -0
  440. package/lib/components/pisellFloorMapLayout/utils/floorMapDropUtils.d.ts +33 -0
  441. package/lib/components/pisellFloorMapLayout/utils/floorMapElementNameAsTitle.d.ts +50 -0
  442. package/lib/components/pisellFloorMapLayout/utils/floorMapResourcePickerDisplay.d.ts +27 -0
  443. package/lib/components/pisellFloorMapLayout/utils/floorMapResourcePickerTypes.d.ts +109 -0
  444. package/lib/components/pisellFloorMapLayout/utils/floorMapStageDefaults.d.ts +8 -0
  445. package/lib/components/pisellFloorMapLayout/utils/snap.d.ts +10 -0
  446. package/lib/components/pisellGridPro/GridPro.d.ts +9 -0
  447. package/lib/components/pisellGridPro/GridView/index.d.ts +5 -0
  448. package/lib/components/pisellGridPro/GridView/type.d.ts +3 -0
  449. package/lib/components/pisellGridPro/ToolBar/index.d.ts +6 -0
  450. package/lib/components/pisellGridPro/ToolBar/type.d.ts +10 -0
  451. package/lib/components/pisellGridPro/components/DataCard/components/StatCard/index.d.ts +10 -0
  452. package/lib/components/pisellGridPro/components/DataCard/index.d.ts +5 -0
  453. package/lib/components/pisellGridPro/components/DataCard/types.d.ts +70 -0
  454. package/lib/components/pisellGridPro/components/Footer/index.d.ts +9 -0
  455. package/lib/components/pisellGridPro/components/Header/index.d.ts +12 -0
  456. package/lib/components/pisellGridPro/index.d.ts +4 -0
  457. package/lib/components/pisellInformationEntry/Scan/index.d.ts +0 -1
  458. package/lib/components/pisellLayout/index.d.ts +14 -0
  459. package/lib/components/pisellLookup/hooks/useDebounceSearch.d.ts +40 -0
  460. package/lib/components/pisellLookup/hooks/useSearchState.d.ts +80 -0
  461. package/lib/components/pisellLookup/utils/storage.d.ts +42 -0
  462. package/lib/components/pisellMetricCard/components/MetricTitle.d.ts +12 -0
  463. package/lib/components/pisellMetricCard/components/MetricValue.d.ts +12 -0
  464. package/lib/components/pisellMetricCard/components/TrendIcon.d.ts +14 -0
  465. package/lib/components/pisellMetricCard/types.d.ts +201 -0
  466. package/lib/components/pisellMetricCard/utils/calculateTrend.d.ts +14 -0
  467. package/lib/components/pisellMobileDateRangePicker/PisellMobileDateRangePicker.d.ts +8 -0
  468. package/lib/components/pisellMobileDateRangePicker/index.d.ts +2 -0
  469. package/lib/components/pisellMobileDateRangePicker/types.d.ts +28 -0
  470. package/lib/components/pisellPercent/utils/rangeConverter.d.ts +36 -0
  471. package/lib/components/pisellPhone/utils/phoneFormatter.d.ts +39 -0
  472. package/lib/components/pisellRecordBoard/shellFrame/Calendar/calendarI18n.d.ts +4 -0
  473. package/lib/components/pisellRecordBoard/shellFrame/Calendar/calendarPersistGuard.d.ts +18 -0
  474. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/NoteTicker.d.ts +14 -0
  475. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallViewportToolbar.d.ts +18 -0
  476. package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/resourceWallConstants.d.ts +2 -0
  477. package/lib/components/pisellRecordBoard/shellFrame/ToolBar/recordBoardToolBarConstants.d.ts +8 -0
  478. package/lib/components/pisellReservationSchedule/locales.d.ts +43 -0
  479. package/lib/components/pisellReservationSchedule/types.d.ts +52 -0
  480. package/lib/components/pisellReservationScheduleBand/types.d.ts +68 -0
  481. package/lib/components/pisellReservationScheduleBand/utils/formatScheduleAtLabel.d.ts +9 -0
  482. package/lib/components/pisellSort/index.d.ts +3 -0
  483. package/lib/components/pisellSort/type.d.ts +7 -0
  484. package/lib/components/pisellTimeNavigator/components/BackgroundLayer.d.ts +14 -0
  485. package/lib/components/pisellTimeNavigator/components/CursorLayer.d.ts +29 -0
  486. package/lib/components/pisellTimeNavigator/components/GestureLayer.d.ts +41 -0
  487. package/lib/components/pisellTimeNavigator/components/ScaleLayer.d.ts +40 -0
  488. package/lib/components/pisellTimeNavigator/hooks/index.d.ts +5 -0
  489. package/lib/components/pisellTimeNavigator/hooks/useDragInertia.d.ts +14 -0
  490. package/lib/components/pisellTimeNavigator/hooks/useRealtime.d.ts +5 -0
  491. package/lib/components/pisellTimeNavigator/hooks/useTimeAxis.d.ts +37 -0
  492. package/lib/components/pisellTimeNavigator/locales.d.ts +22 -0
  493. package/lib/components/pisellTimeNavigator/timeNavigatorConstants.d.ts +20 -0
  494. package/lib/components/pisellTimeNavigator/types.d.ts +175 -0
  495. package/lib/components/pisellTimeNavigator/utils/index.d.ts +79 -0
  496. package/lib/components/pisellTimeRangeDisplay/utils/formatDuration.d.ts +14 -0
  497. package/lib/components/pisellUpload/index.d.ts +0 -1
  498. package/lib/components/pisellUrl/utils/index.d.ts +6 -0
  499. package/lib/components/pisellUrl/utils/urlFormatter.d.ts +38 -0
  500. package/lib/components/pisellUrl/utils/urlHelper.d.ts +63 -0
  501. package/lib/components/pisellUrl/utils/urlValidator.d.ts +46 -0
  502. package/lib/components/productCard/components/Divider/index.d.ts +0 -1
  503. package/lib/components/productCard/components/Header/DeleteButton/index.d.ts +0 -1
  504. package/lib/components/productCard/components/Time/components/Like/index.d.ts +0 -1
  505. package/lib/components/radio/index.d.ts +0 -1
  506. package/lib/components/segmented/index.d.ts +0 -1
  507. package/lib/components/select-time/RightPanel/index.d.ts +0 -1
  508. package/lib/components/skeleton/index.d.ts +0 -1
  509. package/lib/components/slider/index.d.ts +0 -1
  510. package/lib/components/sort/components/InlineMenu/index.d.ts +0 -1
  511. package/lib/components/sort/types.d.ts +39 -0
  512. package/lib/components/table/Actions/component/ExportImport/index.d.ts +1 -0
  513. package/lib/components/table/Actions/component/GallerySetting/index.d.ts +1 -0
  514. package/lib/components/table/Actions/component/Group/PopoverContent.d.ts +0 -1
  515. package/lib/components/table/Actions/component/Group/index.d.ts +1 -0
  516. package/lib/components/table/Gallery/components/GalleryItem/components/Cover/index.d.ts +1 -0
  517. package/lib/components/table/Gallery/components/GalleryItem/components/Title/index.d.ts +1 -0
  518. package/lib/components/table/Summary/index.d.ts +0 -1
  519. package/lib/components/table/Table/SelectField/index.d.ts +0 -1
  520. package/lib/components/table/Table/fields/date/Config/index.d.ts +0 -1
  521. package/lib/components/table/Table/fields/date/Sort/index.d.ts +0 -1
  522. package/lib/components/table/Table/fields/image/Config/index.d.ts +0 -1
  523. package/lib/components/table/Table/fields/image/Sort/index.d.ts +0 -1
  524. package/lib/components/table/Table/fields/index.d.ts +2 -2
  525. package/lib/components/table/Table/fields/link/Config/index.d.ts +0 -1
  526. package/lib/components/table/Table/fields/link/Sort/index.d.ts +0 -1
  527. package/lib/components/table/Table/fields/number/Config/index.d.ts +0 -1
  528. package/lib/components/table/Table/fields/number/Sort/index.d.ts +0 -1
  529. package/lib/components/table/Table/fields/numberRange/Config/index.d.ts +0 -1
  530. package/lib/components/table/Table/fields/numberRange/Sort/index.d.ts +0 -1
  531. package/lib/components/table/Table/fields/oldRangePicker/Config/index.d.ts +0 -1
  532. package/lib/components/table/Table/fields/oldRangePicker/Sort/index.d.ts +0 -1
  533. package/lib/components/table/Table/fields/pSwitch/Config/index.d.ts +0 -1
  534. package/lib/components/table/Table/fields/pSwitch/Sort/index.d.ts +0 -1
  535. package/lib/components/table/Table/fields/rangePicker/Config/index.d.ts +0 -1
  536. package/lib/components/table/Table/fields/rangePicker/Sort/index.d.ts +0 -1
  537. package/lib/components/table/Table/fields/search/Config/index.d.ts +0 -1
  538. package/lib/components/table/Table/fields/search/Sort/index.d.ts +0 -1
  539. package/lib/components/table/Table/fields/select/Config/index.d.ts +0 -1
  540. package/lib/components/table/Table/fields/select/Sort/index.d.ts +0 -1
  541. package/lib/components/table/Table/fields/select/index.d.ts +0 -1
  542. package/lib/components/table/Table/fields/text/Config/index.d.ts +0 -1
  543. package/lib/components/table/Table/fields/text/Show/index.d.ts +1 -0
  544. package/lib/components/table/Table/fields/text/Sort/index.d.ts +0 -1
  545. package/lib/components/table/Table/fields/text/index.d.ts +1 -0
  546. package/lib/components/table/Table/fields/treeSelect/Config/index.d.ts +0 -1
  547. package/lib/components/table/Table/fields/treeSelect/Sort/index.d.ts +0 -1
  548. package/lib/components/table/Table/fields/types/index.d.ts +33 -0
  549. package/lib/components/table/Table/tableConfig/summary/index.d.ts +0 -1
  550. package/lib/components/table/Table/utils.d.ts +1 -1
  551. package/lib/components/table/TableFilter/SortIcon.d.ts +0 -1
  552. package/lib/components/table/View/index.d.ts +0 -1
  553. package/lib/components/time-picker/index.d.ts +0 -1
  554. package/lib/components/upload/index.d.ts +0 -1
  555. package/lib/components/virtual-keyboard/Time/utils.d.ts +0 -1
  556. package/lib/components/virtualInput/BaseVirtualInput/index.d.ts +44 -0
  557. package/lib/components/virtualInput/index.d.ts +29 -0
  558. package/lib/components/walletCard/Guest/index.d.ts +0 -1
  559. package/lib/components/walletCard/Guide/index.d.ts +0 -1
  560. package/lib/hooks/useMobile.d.ts +8 -0
  561. package/lib/hooks/useThemeTokens.d.ts +7 -0
  562. package/lib/theme/tokens.d.ts +22 -0
  563. package/lib/utils/platform.d.ts +1 -1
  564. package/lib/utils/tagColor.d.ts +7 -0
  565. package/lowcode/render-figma-style-round-table-card/meta.ts +1 -1
  566. package/lowcode/render-figma-style-table-card/meta.ts +1 -1
  567. package/package.json +1 -1
@@ -0,0 +1,184 @@
1
+ /**
2
+ * PisellFloorMapLayout — 日本語
3
+ */
4
+ declare const _default: {
5
+ 'pisell-floor-map-layout.loading': string;
6
+ 'pisell-floor-map-layout.read-canvas-tabs.aria': string;
7
+ 'pisell-floor-map-layout.edit-top-bar.aria': string;
8
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-enter-aria': string;
9
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-enter-title': string;
10
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-exit-aria': string;
11
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-exit-title': string;
12
+ 'pisell-floor-map-layout.edit-top-bar.unsaved': string;
13
+ 'pisell-floor-map-layout.edit-top-bar.save': string;
14
+ 'pisell-floor-map-layout.edit-top-bar.saving': string;
15
+ 'pisell-floor-map-layout.edit-top-bar.undo': string;
16
+ 'pisell-floor-map-layout.edit-top-bar.redo': string;
17
+ 'pisell-floor-map-layout.edit-top-bar.cancel-edit': string;
18
+ 'pisell-floor-map-layout.edit-top-bar.finish-edit': string;
19
+ 'pisell-floor-map-layout.edit-top-bar.cancel-confirm-title': string;
20
+ 'pisell-floor-map-layout.edit-top-bar.cancel-confirm-content': string;
21
+ 'pisell-floor-map-layout.edit-top-bar.cancel-confirm-ok': string;
22
+ 'pisell-floor-map-layout.edit-top-bar.cancel-confirm-cancel': string;
23
+ 'pisell-floor-map-layout.canvas-tabs.empty': string;
24
+ 'pisell-floor-map-layout.canvas-tabs.add': string;
25
+ 'pisell-floor-map-layout.canvas-tabs.add-title': string;
26
+ 'pisell-floor-map-layout.canvas-tabs.hint': string;
27
+ 'pisell-floor-map-layout.canvas-tabs.rename-aria': string;
28
+ 'pisell-floor-map-layout.canvas-tabs.remove-aria': string;
29
+ 'pisell-floor-map-layout.canvas-tabs.rename-title': string;
30
+ 'pisell-floor-map-layout.canvas-tabs.rename-button-aria': string;
31
+ 'pisell-floor-map-layout.canvas-tabs.rename-button-title': string;
32
+ 'pisell-floor-map-layout.canvas-tabs.default-new-canvas-name': string;
33
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-title': string;
34
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-ok': string;
35
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-cancel': string;
36
+ 'pisell-floor-map-layout.canvas-tabs.overview': string;
37
+ 'pisell-floor-map-layout.canvas-tabs.overview-aria': string;
38
+ 'pisell-floor-map-layout.overview.empty': string;
39
+ 'pisell-floor-map-layout.overview.area-title-badge': string;
40
+ 'pisell-floor-map-layout.overview.canvas-card-aria': string;
41
+ 'pisell-floor-map-layout.edit-panel.element-props': string;
42
+ 'pisell-floor-map-layout.edit-panel.close-aria': string;
43
+ 'pisell-floor-map-layout.edit-panel.hint-apply': string;
44
+ 'pisell-floor-map-layout.edit-panel.hint-save': string;
45
+ 'pisell-floor-map-layout.edit-panel.section-layout': string;
46
+ 'pisell-floor-map-layout.edit-panel.lock-on': string;
47
+ 'pisell-floor-map-layout.edit-panel.lock-off': string;
48
+ 'pisell-floor-map-layout.edit-panel.label-x': string;
49
+ 'pisell-floor-map-layout.edit-panel.label-y': string;
50
+ 'pisell-floor-map-layout.edit-panel.label-z': string;
51
+ 'pisell-floor-map-layout.edit-panel.label-width': string;
52
+ 'pisell-floor-map-layout.edit-panel.label-height': string;
53
+ 'pisell-floor-map-layout.edit-panel.label-name': string;
54
+ 'pisell-floor-map-layout.edit-panel.label-name-stage': string;
55
+ 'pisell-floor-map-layout.edit-panel.ph-name-stage': string;
56
+ 'pisell-floor-map-layout.edit-panel.ph-name': string;
57
+ 'pisell-floor-map-layout.edit-panel.label-name-as-title': string;
58
+ 'pisell-floor-map-layout.edit-panel.tip-name-as-title': string;
59
+ 'pisell-floor-map-layout.edit-panel.label-builtin-shape': string;
60
+ 'pisell-floor-map-layout.edit-panel.extra-builtin-shape': string;
61
+ 'pisell-floor-map-layout.edit-panel.ph-builtin-shape': string;
62
+ 'pisell-floor-map-layout.edit-panel.label-image-url': string;
63
+ 'pisell-floor-map-layout.edit-panel.extra-image-url': string;
64
+ 'pisell-floor-map-layout.edit-panel.ph-https': string;
65
+ 'pisell-floor-map-layout.edit-panel.label-canvas': string;
66
+ 'pisell-floor-map-layout.edit-panel.label-element-kind': string;
67
+ 'pisell-floor-map-layout.edit-panel.hint-kind-binding-cleared': string;
68
+ 'pisell-floor-map-layout.edit-panel.apply': string;
69
+ 'pisell-floor-map-layout.edit-panel.data-binding': string;
70
+ 'pisell-floor-map-layout.edit-panel.data-binding-note': string;
71
+ 'pisell-floor-map-layout.edit-panel.label-data-source': string;
72
+ 'pisell-floor-map-layout.edit-panel.ph-data-source': string;
73
+ 'pisell-floor-map-layout.edit-panel.label-pick-row': string;
74
+ 'pisell-floor-map-layout.edit-panel.ph-pick-row': string;
75
+ 'pisell-floor-map-layout.edit-panel.ph-no-rows': string;
76
+ 'pisell-floor-map-layout.edit-panel.hint-unbound': string;
77
+ 'pisell-floor-map-layout.edit-panel.record-title': string;
78
+ 'pisell-floor-map-layout.edit-panel.pop-title': string;
79
+ 'pisell-floor-map-layout.edit-panel.pop-desc': string;
80
+ 'pisell-floor-map-layout.edit-panel.btn-delete': string;
81
+ 'pisell-floor-map-layout.edit-panel.btn-cancel': string;
82
+ 'pisell-floor-map-layout.edit-panel.btn-ok-delete': string;
83
+ 'pisell-floor-map-layout.edit-quick.lock': string;
84
+ 'pisell-floor-map-layout.edit-quick.unlock': string;
85
+ 'pisell-floor-map-layout.edit-quick.duplicate': string;
86
+ 'pisell-floor-map-layout.edit-quick.delete': string;
87
+ 'pisell-floor-map-layout.edit-quick.status-locked': string;
88
+ 'pisell-floor-map-layout.edit-quick.status-unlocked': string;
89
+ 'pisell-floor-map-layout.edit-quick.aria-toolbar': string;
90
+ 'pisell-floor-map-layout.toolbar.category-fallback': string;
91
+ 'pisell-floor-map-layout.toolbar.palette-card-title': string;
92
+ 'pisell-floor-map-layout.toolbar.data-binding-optional': string;
93
+ 'pisell-floor-map-layout.toolbar.hint-after-select-ds': string;
94
+ 'pisell-floor-map-layout.toolbar.hint-no-unplaced-rows': string;
95
+ 'pisell-floor-map-layout.toolbar.ph-select-records': string;
96
+ 'pisell-floor-map-layout.toolbar.hint-multi-drop': string;
97
+ 'pisell-floor-map-layout.toolbar.open-resource-picker': string;
98
+ 'pisell-floor-map-layout.toolbar.select-with-label': string;
99
+ 'pisell-floor-map-layout.toolbar.resource-picker-none-selected': string;
100
+ 'pisell-floor-map-layout.toolbar.resource-picker-summary': string;
101
+ 'pisell-floor-map-layout.toolbar.resource-picker-summary-empty': string;
102
+ 'pisell-floor-map-layout.resource-picker.title': string;
103
+ 'pisell-floor-map-layout.resource-picker.search-ph': string;
104
+ 'pisell-floor-map-layout.resource-picker.select-all': string;
105
+ 'pisell-floor-map-layout.resource-picker.deselect-all': string;
106
+ 'pisell-floor-map-layout.resource-picker.selected-count': string;
107
+ 'pisell-floor-map-layout.resource-picker.filter-all': string;
108
+ 'pisell-floor-map-layout.resource-picker.empty': string;
109
+ 'pisell-floor-map-layout.resource-picker.confirm': string;
110
+ 'pisell-floor-map-layout.resource-picker.cancel': string;
111
+ 'pisell-floor-map-layout.resource-picker.single-hint': string;
112
+ 'pisell-floor-map-layout.resource-picker.level-area': string;
113
+ 'pisell-floor-map-layout.resource-picker.level-1': string;
114
+ 'pisell-floor-map-layout.resource-picker.level-2': string;
115
+ 'pisell-floor-map-layout.resource-picker.level-3': string;
116
+ 'pisell-floor-map-layout.toolbar.no-data-sources': string;
117
+ 'pisell-floor-map-layout.toolbar.cancel-place': string;
118
+ 'pisell-floor-map-layout.toolbar.layout-dirty-hint': string;
119
+ 'pisell-floor-map-layout.toolbar.save': string;
120
+ 'pisell-floor-map-layout.toolbar.saving': string;
121
+ 'pisell-floor-map-layout.toolbar.collapse': string;
122
+ 'pisell-floor-map-layout.toolbar.expand': string;
123
+ 'pisell-floor-map-layout.toolbar.add-to-canvas': string;
124
+ 'pisell-floor-map-layout.toolbar.view-all': string;
125
+ 'pisell-floor-map-layout.toolbar.view-all-modal-title': string;
126
+ 'pisell-floor-map-layout.toolbar.view-all-modal-hint': string;
127
+ 'pisell-floor-map-layout.toolbar.view-all-modal-add': string;
128
+ 'pisell-floor-map-layout.toolbar.view-all-modal-cancel': string;
129
+ 'pisell-floor-map-layout.toolbar.view-all-modal-qty-decrease': string;
130
+ 'pisell-floor-map-layout.toolbar.view-all-modal-qty-increase': string;
131
+ 'pisell-floor-map-layout.toolbar.view-all-modal-category-image': string;
132
+ 'pisell-floor-map-layout.toolbar.view-all-modal-category-icon': string;
133
+ 'pisell-floor-map-layout.view-controls.zoom-out-aria': string;
134
+ 'pisell-floor-map-layout.view-controls.zoom-in-aria': string;
135
+ 'pisell-floor-map-layout.view-controls.reset-aria': string;
136
+ 'pisell-floor-map-layout.view-controls.fit-bounds-aria': string;
137
+ 'pisell-floor-map-layout.view-controls.grid-hide-aria': string;
138
+ 'pisell-floor-map-layout.view-controls.grid-show-aria': string;
139
+ 'pisell-floor-map-layout.view-controls.edges-hide-aria': string;
140
+ 'pisell-floor-map-layout.view-controls.edges-show-aria': string;
141
+ 'pisell-floor-map-layout.view-controls.fullscreen-aria': string;
142
+ 'pisell-floor-map-layout.view-controls.fullscreen-exit-aria': string;
143
+ 'pisell-floor-map-layout.view-controls.expand-tools-aria': string;
144
+ 'pisell-floor-map-layout.view-controls.collapse-tools-aria': string;
145
+ 'pisell-floor-map-layout.view-controls.viewport-lock-aria': string;
146
+ 'pisell-floor-map-layout.view-controls.viewport-unlock-aria': string;
147
+ 'pisell-floor-map-layout.builtin-shape.default-name': string;
148
+ 'pisell-floor-map-layout.builtin-shape.hint-no-key': string;
149
+ 'pisell-floor-map-layout.builtin-shape.toilet': string;
150
+ 'pisell-floor-map-layout.builtin-shape.divider': string;
151
+ 'pisell-floor-map-layout.builtin-shape.column': string;
152
+ 'pisell-floor-map-layout.builtin-shape.sofa': string;
153
+ 'pisell-floor-map-layout.builtin-shape.door': string;
154
+ 'pisell-floor-map-layout.builtin-shape.flower-pot': string;
155
+ 'pisell-floor-map-layout.builtin-shape.palette-pick-label': string;
156
+ 'pisell-floor-map-layout.palette.builtin-shape': string;
157
+ 'pisell-floor-map-layout.image-element.default-name': string;
158
+ 'pisell-floor-map-layout.placement.fallback-image-name': string;
159
+ 'pisell-floor-map-layout.selection-zone.title-badge': string;
160
+ 'pisell-floor-map-layout.selection-zone.unnamed': string;
161
+ 'pisell-floor-map-layout.image-element.hint-no-url': string;
162
+ 'pisell-floor-map-layout.image-element.hint-load-fail': string;
163
+ 'pisell-floor-map-layout.data-form.empty': string;
164
+ 'pisell-floor-map-layout.data-form.save-record': string;
165
+ 'pisell-floor-map-layout.binding-error.required-row': string;
166
+ 'pisell-floor-map-layout.binding-error.ds-not-allowed': string;
167
+ 'pisell-floor-map-layout.binding-error.missing-field': string;
168
+ 'pisell-floor-map-layout.card-placeholder.hint-select-row': string;
169
+ 'pisell-floor-map-layout.card-placeholder.hint-bind-datasource': string;
170
+ 'pisell-floor-map-layout.card-placeholder.hint-new-slot': string;
171
+ 'pisell-floor-map-layout.card-placeholder.hint-row-not-found': string;
172
+ 'pisell-floor-map-layout.figma-card.kind-round-table': string;
173
+ 'pisell-floor-map-layout.figma-card.kind-square-table': string;
174
+ 'pisell-floor-map-layout.figma-card.default-table': string;
175
+ 'pisell-floor-map-layout.figma-card.capacity-seats': string;
176
+ 'pisell-floor-map-layout.figma-card.guests-count': string;
177
+ 'pisell-floor-map-layout.figma-card.status-available': string;
178
+ 'pisell-floor-map-layout.figma-card.status-reserved': string;
179
+ 'pisell-floor-map-layout.figma-card.status-waiting': string;
180
+ 'pisell-floor-map-layout.figma-card.status-dining': string;
181
+ 'pisell-floor-map-layout.figma-card.status-billed': string;
182
+ 'pisell-floor-map-layout.figma-card.status-availableSoon': string;
183
+ };
184
+ export default _default;
@@ -0,0 +1,184 @@
1
+ /**
2
+ * PisellFloorMapLayout — Português
3
+ */
4
+ declare const _default: {
5
+ 'pisell-floor-map-layout.loading': string;
6
+ 'pisell-floor-map-layout.read-canvas-tabs.aria': string;
7
+ 'pisell-floor-map-layout.edit-top-bar.aria': string;
8
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-enter-aria': string;
9
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-enter-title': string;
10
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-exit-aria': string;
11
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-exit-title': string;
12
+ 'pisell-floor-map-layout.edit-top-bar.unsaved': string;
13
+ 'pisell-floor-map-layout.edit-top-bar.save': string;
14
+ 'pisell-floor-map-layout.edit-top-bar.saving': string;
15
+ 'pisell-floor-map-layout.edit-top-bar.undo': string;
16
+ 'pisell-floor-map-layout.edit-top-bar.redo': string;
17
+ 'pisell-floor-map-layout.edit-top-bar.cancel-edit': string;
18
+ 'pisell-floor-map-layout.edit-top-bar.finish-edit': string;
19
+ 'pisell-floor-map-layout.edit-top-bar.cancel-confirm-title': string;
20
+ 'pisell-floor-map-layout.edit-top-bar.cancel-confirm-content': string;
21
+ 'pisell-floor-map-layout.edit-top-bar.cancel-confirm-ok': string;
22
+ 'pisell-floor-map-layout.edit-top-bar.cancel-confirm-cancel': string;
23
+ 'pisell-floor-map-layout.canvas-tabs.empty': string;
24
+ 'pisell-floor-map-layout.canvas-tabs.add': string;
25
+ 'pisell-floor-map-layout.canvas-tabs.add-title': string;
26
+ 'pisell-floor-map-layout.canvas-tabs.hint': string;
27
+ 'pisell-floor-map-layout.canvas-tabs.rename-aria': string;
28
+ 'pisell-floor-map-layout.canvas-tabs.remove-aria': string;
29
+ 'pisell-floor-map-layout.canvas-tabs.rename-title': string;
30
+ 'pisell-floor-map-layout.canvas-tabs.rename-button-aria': string;
31
+ 'pisell-floor-map-layout.canvas-tabs.rename-button-title': string;
32
+ 'pisell-floor-map-layout.canvas-tabs.default-new-canvas-name': string;
33
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-title': string;
34
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-ok': string;
35
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-cancel': string;
36
+ 'pisell-floor-map-layout.canvas-tabs.overview': string;
37
+ 'pisell-floor-map-layout.canvas-tabs.overview-aria': string;
38
+ 'pisell-floor-map-layout.overview.empty': string;
39
+ 'pisell-floor-map-layout.overview.area-title-badge': string;
40
+ 'pisell-floor-map-layout.overview.canvas-card-aria': string;
41
+ 'pisell-floor-map-layout.edit-panel.element-props': string;
42
+ 'pisell-floor-map-layout.edit-panel.close-aria': string;
43
+ 'pisell-floor-map-layout.edit-panel.hint-apply': string;
44
+ 'pisell-floor-map-layout.edit-panel.hint-save': string;
45
+ 'pisell-floor-map-layout.edit-panel.section-layout': string;
46
+ 'pisell-floor-map-layout.edit-panel.lock-on': string;
47
+ 'pisell-floor-map-layout.edit-panel.lock-off': string;
48
+ 'pisell-floor-map-layout.edit-panel.label-x': string;
49
+ 'pisell-floor-map-layout.edit-panel.label-y': string;
50
+ 'pisell-floor-map-layout.edit-panel.label-z': string;
51
+ 'pisell-floor-map-layout.edit-panel.label-width': string;
52
+ 'pisell-floor-map-layout.edit-panel.label-height': string;
53
+ 'pisell-floor-map-layout.edit-panel.label-name': string;
54
+ 'pisell-floor-map-layout.edit-panel.label-name-stage': string;
55
+ 'pisell-floor-map-layout.edit-panel.ph-name-stage': string;
56
+ 'pisell-floor-map-layout.edit-panel.ph-name': string;
57
+ 'pisell-floor-map-layout.edit-panel.label-name-as-title': string;
58
+ 'pisell-floor-map-layout.edit-panel.tip-name-as-title': string;
59
+ 'pisell-floor-map-layout.edit-panel.label-builtin-shape': string;
60
+ 'pisell-floor-map-layout.edit-panel.extra-builtin-shape': string;
61
+ 'pisell-floor-map-layout.edit-panel.ph-builtin-shape': string;
62
+ 'pisell-floor-map-layout.edit-panel.label-image-url': string;
63
+ 'pisell-floor-map-layout.edit-panel.extra-image-url': string;
64
+ 'pisell-floor-map-layout.edit-panel.ph-https': string;
65
+ 'pisell-floor-map-layout.edit-panel.label-canvas': string;
66
+ 'pisell-floor-map-layout.edit-panel.label-element-kind': string;
67
+ 'pisell-floor-map-layout.edit-panel.hint-kind-binding-cleared': string;
68
+ 'pisell-floor-map-layout.edit-panel.apply': string;
69
+ 'pisell-floor-map-layout.edit-panel.data-binding': string;
70
+ 'pisell-floor-map-layout.edit-panel.data-binding-note': string;
71
+ 'pisell-floor-map-layout.edit-panel.label-data-source': string;
72
+ 'pisell-floor-map-layout.edit-panel.ph-data-source': string;
73
+ 'pisell-floor-map-layout.edit-panel.label-pick-row': string;
74
+ 'pisell-floor-map-layout.edit-panel.ph-pick-row': string;
75
+ 'pisell-floor-map-layout.edit-panel.ph-no-rows': string;
76
+ 'pisell-floor-map-layout.edit-panel.hint-unbound': string;
77
+ 'pisell-floor-map-layout.edit-panel.record-title': string;
78
+ 'pisell-floor-map-layout.edit-panel.pop-title': string;
79
+ 'pisell-floor-map-layout.edit-panel.pop-desc': string;
80
+ 'pisell-floor-map-layout.edit-panel.btn-delete': string;
81
+ 'pisell-floor-map-layout.edit-panel.btn-cancel': string;
82
+ 'pisell-floor-map-layout.edit-panel.btn-ok-delete': string;
83
+ 'pisell-floor-map-layout.edit-quick.lock': string;
84
+ 'pisell-floor-map-layout.edit-quick.unlock': string;
85
+ 'pisell-floor-map-layout.edit-quick.duplicate': string;
86
+ 'pisell-floor-map-layout.edit-quick.delete': string;
87
+ 'pisell-floor-map-layout.edit-quick.status-locked': string;
88
+ 'pisell-floor-map-layout.edit-quick.status-unlocked': string;
89
+ 'pisell-floor-map-layout.edit-quick.aria-toolbar': string;
90
+ 'pisell-floor-map-layout.toolbar.category-fallback': string;
91
+ 'pisell-floor-map-layout.toolbar.palette-card-title': string;
92
+ 'pisell-floor-map-layout.toolbar.data-binding-optional': string;
93
+ 'pisell-floor-map-layout.toolbar.hint-after-select-ds': string;
94
+ 'pisell-floor-map-layout.toolbar.hint-no-unplaced-rows': string;
95
+ 'pisell-floor-map-layout.toolbar.ph-select-records': string;
96
+ 'pisell-floor-map-layout.toolbar.hint-multi-drop': string;
97
+ 'pisell-floor-map-layout.toolbar.open-resource-picker': string;
98
+ 'pisell-floor-map-layout.toolbar.select-with-label': string;
99
+ 'pisell-floor-map-layout.toolbar.resource-picker-none-selected': string;
100
+ 'pisell-floor-map-layout.toolbar.resource-picker-summary': string;
101
+ 'pisell-floor-map-layout.toolbar.resource-picker-summary-empty': string;
102
+ 'pisell-floor-map-layout.resource-picker.title': string;
103
+ 'pisell-floor-map-layout.resource-picker.search-ph': string;
104
+ 'pisell-floor-map-layout.resource-picker.select-all': string;
105
+ 'pisell-floor-map-layout.resource-picker.deselect-all': string;
106
+ 'pisell-floor-map-layout.resource-picker.selected-count': string;
107
+ 'pisell-floor-map-layout.resource-picker.filter-all': string;
108
+ 'pisell-floor-map-layout.resource-picker.empty': string;
109
+ 'pisell-floor-map-layout.resource-picker.confirm': string;
110
+ 'pisell-floor-map-layout.resource-picker.cancel': string;
111
+ 'pisell-floor-map-layout.resource-picker.single-hint': string;
112
+ 'pisell-floor-map-layout.resource-picker.level-area': string;
113
+ 'pisell-floor-map-layout.resource-picker.level-1': string;
114
+ 'pisell-floor-map-layout.resource-picker.level-2': string;
115
+ 'pisell-floor-map-layout.resource-picker.level-3': string;
116
+ 'pisell-floor-map-layout.toolbar.no-data-sources': string;
117
+ 'pisell-floor-map-layout.toolbar.cancel-place': string;
118
+ 'pisell-floor-map-layout.toolbar.layout-dirty-hint': string;
119
+ 'pisell-floor-map-layout.toolbar.save': string;
120
+ 'pisell-floor-map-layout.toolbar.saving': string;
121
+ 'pisell-floor-map-layout.toolbar.collapse': string;
122
+ 'pisell-floor-map-layout.toolbar.expand': string;
123
+ 'pisell-floor-map-layout.toolbar.add-to-canvas': string;
124
+ 'pisell-floor-map-layout.toolbar.view-all': string;
125
+ 'pisell-floor-map-layout.toolbar.view-all-modal-title': string;
126
+ 'pisell-floor-map-layout.toolbar.view-all-modal-hint': string;
127
+ 'pisell-floor-map-layout.toolbar.view-all-modal-add': string;
128
+ 'pisell-floor-map-layout.toolbar.view-all-modal-cancel': string;
129
+ 'pisell-floor-map-layout.toolbar.view-all-modal-qty-decrease': string;
130
+ 'pisell-floor-map-layout.toolbar.view-all-modal-qty-increase': string;
131
+ 'pisell-floor-map-layout.toolbar.view-all-modal-category-image': string;
132
+ 'pisell-floor-map-layout.toolbar.view-all-modal-category-icon': string;
133
+ 'pisell-floor-map-layout.view-controls.zoom-out-aria': string;
134
+ 'pisell-floor-map-layout.view-controls.zoom-in-aria': string;
135
+ 'pisell-floor-map-layout.view-controls.reset-aria': string;
136
+ 'pisell-floor-map-layout.view-controls.fit-bounds-aria': string;
137
+ 'pisell-floor-map-layout.view-controls.grid-hide-aria': string;
138
+ 'pisell-floor-map-layout.view-controls.grid-show-aria': string;
139
+ 'pisell-floor-map-layout.view-controls.edges-hide-aria': string;
140
+ 'pisell-floor-map-layout.view-controls.edges-show-aria': string;
141
+ 'pisell-floor-map-layout.view-controls.fullscreen-aria': string;
142
+ 'pisell-floor-map-layout.view-controls.fullscreen-exit-aria': string;
143
+ 'pisell-floor-map-layout.view-controls.expand-tools-aria': string;
144
+ 'pisell-floor-map-layout.view-controls.collapse-tools-aria': string;
145
+ 'pisell-floor-map-layout.view-controls.viewport-lock-aria': string;
146
+ 'pisell-floor-map-layout.view-controls.viewport-unlock-aria': string;
147
+ 'pisell-floor-map-layout.builtin-shape.default-name': string;
148
+ 'pisell-floor-map-layout.builtin-shape.hint-no-key': string;
149
+ 'pisell-floor-map-layout.builtin-shape.toilet': string;
150
+ 'pisell-floor-map-layout.builtin-shape.divider': string;
151
+ 'pisell-floor-map-layout.builtin-shape.column': string;
152
+ 'pisell-floor-map-layout.builtin-shape.sofa': string;
153
+ 'pisell-floor-map-layout.builtin-shape.door': string;
154
+ 'pisell-floor-map-layout.builtin-shape.flower-pot': string;
155
+ 'pisell-floor-map-layout.builtin-shape.palette-pick-label': string;
156
+ 'pisell-floor-map-layout.palette.builtin-shape': string;
157
+ 'pisell-floor-map-layout.image-element.default-name': string;
158
+ 'pisell-floor-map-layout.placement.fallback-image-name': string;
159
+ 'pisell-floor-map-layout.selection-zone.title-badge': string;
160
+ 'pisell-floor-map-layout.selection-zone.unnamed': string;
161
+ 'pisell-floor-map-layout.image-element.hint-no-url': string;
162
+ 'pisell-floor-map-layout.image-element.hint-load-fail': string;
163
+ 'pisell-floor-map-layout.data-form.empty': string;
164
+ 'pisell-floor-map-layout.data-form.save-record': string;
165
+ 'pisell-floor-map-layout.binding-error.required-row': string;
166
+ 'pisell-floor-map-layout.binding-error.ds-not-allowed': string;
167
+ 'pisell-floor-map-layout.binding-error.missing-field': string;
168
+ 'pisell-floor-map-layout.card-placeholder.hint-select-row': string;
169
+ 'pisell-floor-map-layout.card-placeholder.hint-bind-datasource': string;
170
+ 'pisell-floor-map-layout.card-placeholder.hint-new-slot': string;
171
+ 'pisell-floor-map-layout.card-placeholder.hint-row-not-found': string;
172
+ 'pisell-floor-map-layout.figma-card.kind-round-table': string;
173
+ 'pisell-floor-map-layout.figma-card.kind-square-table': string;
174
+ 'pisell-floor-map-layout.figma-card.default-table': string;
175
+ 'pisell-floor-map-layout.figma-card.capacity-seats': string;
176
+ 'pisell-floor-map-layout.figma-card.guests-count': string;
177
+ 'pisell-floor-map-layout.figma-card.status-available': string;
178
+ 'pisell-floor-map-layout.figma-card.status-reserved': string;
179
+ 'pisell-floor-map-layout.figma-card.status-waiting': string;
180
+ 'pisell-floor-map-layout.figma-card.status-dining': string;
181
+ 'pisell-floor-map-layout.figma-card.status-billed': string;
182
+ 'pisell-floor-map-layout.figma-card.status-availableSoon': string;
183
+ };
184
+ export default _default;