@pisell/materials 6.11.17 → 6.11.19

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 (553) 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 +7 -7
  6. package/build/lowcode/preview.js +9 -9
  7. package/build/lowcode/render/default/view.css +1 -1
  8. package/build/lowcode/render/default/view.js +32 -32
  9. package/build/lowcode/view.css +1 -1
  10. package/build/lowcode/view.js +25 -25
  11. package/es/components/PisellCards/index.d.ts +1 -0
  12. package/es/components/PisellFields/index.d.ts +1 -0
  13. package/es/components/PisellLayouts/index.d.ts +11 -5
  14. package/es/components/PisellLayouts/index.js +8 -4
  15. package/es/components/PisellMetrics/index.d.ts +1 -0
  16. package/es/components/dataSourceComponents/dataSourceForm/utils.d.ts +1 -1
  17. package/es/components/dataSourceComponents/dataSourceShow/dataSourceQRCode/index.d.ts +1 -0
  18. package/es/components/dataSourceComponents/dataSourceSubForm/index.d.ts +13 -0
  19. package/es/components/dataSourceComponents/dataSourceSubForm/index.js +274 -0
  20. package/es/components/dataSourceComponents/dataSourceSubForm/index.less +19 -0
  21. package/es/components/dataSourceComponents/dataSourceSubForm/schema-full-example.json +544 -0
  22. package/es/components/dataSourceComponents/dataSourceSubForm/schema-simple-example.json +174 -0
  23. package/es/components/dataSourceComponents/dataSourceSubForm/types.d.ts +117 -0
  24. package/es/components/dataSourceComponents/dataSourceSubForm/types.js +1 -0
  25. package/es/components/dataSourceComponents/dataSourceTable/hooks/useDataSourceKey.d.ts +1 -0
  26. package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +2 -2
  27. package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +1 -0
  28. package/es/components/dataSourceComponents/fields/RecordListWrapper/ReadPretty.d.ts +9 -0
  29. package/es/components/dataSourceComponents/fields/RecordListWrapper/ReadPretty.js +61 -0
  30. package/es/components/dataSourceComponents/fields/RecordListWrapper/WithMode.d.ts +4 -0
  31. package/es/components/dataSourceComponents/fields/RecordListWrapper/WithMode.js +176 -0
  32. package/es/components/dataSourceComponents/fields/RecordListWrapper/index.d.ts +12 -0
  33. package/es/components/dataSourceComponents/fields/RecordListWrapper/index.js +11 -0
  34. package/es/components/dataSourceComponents/fields/RecordListWrapper/type.d.ts +87 -0
  35. package/es/components/dataSourceComponents/fields/RecordListWrapper/type.js +1 -0
  36. package/es/components/dataSourceComponents/fields/Select/index.d.ts +1 -1
  37. package/es/components/dataSourceComponents/fields/Tabs/ReadPretty.d.ts +9 -0
  38. package/es/components/dataSourceComponents/fields/Tabs/ReadPretty.js +16 -0
  39. package/es/components/dataSourceComponents/fields/Tabs/Tabs.d.ts +23 -0
  40. package/es/components/dataSourceComponents/fields/Tabs/Tabs.js +93 -0
  41. package/es/components/dataSourceComponents/fields/Tabs/Tabs.less +64 -0
  42. package/es/components/dataSourceComponents/fields/Tabs/WithMode.d.ts +6 -0
  43. package/es/components/dataSourceComponents/fields/Tabs/WithMode.js +9 -0
  44. package/es/components/dataSourceComponents/fields/Tabs/index.d.ts +13 -0
  45. package/es/components/dataSourceComponents/fields/Tabs/index.js +18 -0
  46. package/es/components/dataSourceComponents/fields/Tabs/type.d.ts +38 -0
  47. package/es/components/dataSourceComponents/fields/Tabs/type.js +1 -0
  48. package/es/components/dataSourceComponents/fields/Upload/utils.d.ts +1 -1
  49. package/es/components/dataSourceComponents/fields/index.d.ts +50 -11
  50. package/es/components/dataSourceComponents/fields/index.js +5 -1
  51. package/es/components/dataSourceComponents/fields/utils.js +3 -0
  52. package/es/components/date-picker/index.d.ts +1 -0
  53. package/es/components/pisellDataSourceContainer/hooks/useDataSourceKey.d.ts +1 -0
  54. package/es/components/pisellFilter/type.d.ts +4 -2
  55. package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.d.ts +12 -0
  56. package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.js +611 -0
  57. package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.less +92 -0
  58. package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.stories.d.ts +55 -0
  59. package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.stories.js +1667 -0
  60. package/es/components/pisellFloorMapLayout/components/CanvasTabs.d.ts +27 -0
  61. package/es/components/pisellFloorMapLayout/components/CanvasTabs.js +203 -0
  62. package/es/components/pisellFloorMapLayout/components/CanvasTabs.less +189 -0
  63. package/es/components/pisellFloorMapLayout/components/EditableItemLayer.d.ts +37 -0
  64. package/es/components/pisellFloorMapLayout/components/EditableItemLayer.js +341 -0
  65. package/es/components/pisellFloorMapLayout/components/EditableItemLayer.less +89 -0
  66. package/es/components/pisellFloorMapLayout/components/FigmaTableCard.d.ts +43 -0
  67. package/es/components/pisellFloorMapLayout/components/FigmaTableCard.js +436 -0
  68. package/es/components/pisellFloorMapLayout/components/FloorMapDataForm.d.ts +21 -0
  69. package/es/components/pisellFloorMapLayout/components/FloorMapDataForm.js +133 -0
  70. package/es/components/pisellFloorMapLayout/components/FloorMapDataForm.less +7 -0
  71. package/es/components/pisellFloorMapLayout/components/FloorMapEditPanel.d.ts +14 -0
  72. package/es/components/pisellFloorMapLayout/components/FloorMapEditPanel.js +543 -0
  73. package/es/components/pisellFloorMapLayout/components/FloorMapEditPanel.less +162 -0
  74. package/es/components/pisellFloorMapLayout/components/FloorMapEditTopBar.d.ts +36 -0
  75. package/es/components/pisellFloorMapLayout/components/FloorMapEditTopBar.js +135 -0
  76. package/es/components/pisellFloorMapLayout/components/FloorMapEditTopBar.less +150 -0
  77. package/es/components/pisellFloorMapLayout/components/FloorMapImageElement.d.ts +9 -0
  78. package/es/components/pisellFloorMapLayout/components/FloorMapImageElement.js +71 -0
  79. package/es/components/pisellFloorMapLayout/components/FloorMapToolbar.d.ts +35 -0
  80. package/es/components/pisellFloorMapLayout/components/FloorMapToolbar.js +369 -0
  81. package/es/components/pisellFloorMapLayout/components/FloorMapToolbar.less +239 -0
  82. package/es/components/pisellFloorMapLayout/components/ItemLayer.js +195 -0
  83. package/es/components/pisellFloorMapLayout/components/ItemLayer.less +19 -0
  84. package/es/components/pisellFloorMapLayout/components/MapLayer.d.ts +27 -0
  85. package/es/components/pisellFloorMapLayout/components/MapLayer.js +85 -0
  86. package/es/components/pisellFloorMapLayout/components/MapLayer.less +7 -0
  87. package/es/components/pisellFloorMapLayout/components/ViewControls.d.ts +33 -0
  88. package/es/components/pisellFloorMapLayout/components/ViewControls.js +90 -0
  89. package/es/components/pisellFloorMapLayout/components/ViewControls.less +101 -0
  90. package/es/components/pisellFloorMapLayout/components/ViewControlsWithZoom.d.ts +16 -0
  91. package/es/components/pisellFloorMapLayout/components/ViewControlsWithZoom.js +29 -0
  92. package/es/components/pisellFloorMapLayout/components/index.d.ts +21 -0
  93. package/es/components/pisellFloorMapLayout/components/index.js +13 -0
  94. package/es/components/pisellFloorMapLayout/context/FloorMapLayoutContext.d.ts +16 -0
  95. package/es/components/pisellFloorMapLayout/context/FloorMapLayoutContext.js +21 -0
  96. package/es/components/pisellFloorMapLayout/context/mergeFloorMapLayoutContext.d.ts +5 -0
  97. package/es/components/pisellFloorMapLayout/context/mergeFloorMapLayoutContext.js +28 -0
  98. package/es/components/pisellFloorMapLayout/hooks/useFloorMapEditState.d.ts +63 -0
  99. package/es/components/pisellFloorMapLayout/hooks/useFloorMapEditState.js +562 -0
  100. package/es/components/pisellFloorMapLayout/hooks/useFloorMapPaletteTouchDrag.d.ts +21 -0
  101. package/es/components/pisellFloorMapLayout/hooks/useFloorMapPaletteTouchDrag.js +122 -0
  102. package/es/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.d.ts +67 -0
  103. package/es/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.js +399 -0
  104. package/es/components/pisellFloorMapLayout/index.d.ts +15 -0
  105. package/es/components/pisellFloorMapLayout/index.js +12 -0
  106. package/es/components/pisellFloorMapLayout/locales-ja.d.ts +104 -0
  107. package/es/components/pisellFloorMapLayout/locales-ja.js +103 -0
  108. package/es/components/pisellFloorMapLayout/locales-pt.d.ts +104 -0
  109. package/es/components/pisellFloorMapLayout/locales-pt.js +103 -0
  110. package/es/components/pisellFloorMapLayout/locales.d.ts +506 -0
  111. package/es/components/pisellFloorMapLayout/locales.js +310 -0
  112. package/es/components/pisellFloorMapLayout/types.d.ts +586 -0
  113. package/es/components/pisellFloorMapLayout/types.js +152 -0
  114. package/es/components/pisellFloorMapLayout/utils/floorMapCanvasDisplay.d.ts +20 -0
  115. package/es/components/pisellFloorMapLayout/utils/floorMapCanvasDisplay.js +129 -0
  116. package/es/components/pisellFloorMapLayout/utils/floorMapConfigMerge.d.ts +8 -0
  117. package/es/components/pisellFloorMapLayout/utils/floorMapConfigMerge.js +87 -0
  118. package/es/components/pisellFloorMapLayout/utils/floorMapDataRecordLabel.d.ts +8 -0
  119. package/es/components/pisellFloorMapLayout/utils/floorMapDataRecordLabel.js +15 -0
  120. package/es/components/pisellFloorMapLayout/utils/floorMapDropUtils.d.ts +27 -0
  121. package/es/components/pisellFloorMapLayout/utils/floorMapDropUtils.js +56 -0
  122. package/es/components/pisellFloorMapLayout/utils/floorMapElementKindUtils.d.ts +22 -0
  123. package/es/components/pisellFloorMapLayout/utils/floorMapElementKindUtils.js +156 -0
  124. package/es/components/pisellFloorMapLayout/utils/floorMapFallbackRender.d.ts +11 -0
  125. package/es/components/pisellFloorMapLayout/utils/floorMapFallbackRender.js +89 -0
  126. package/es/components/pisellFloorMapLayout/utils/floorMapStageDefaults.d.ts +8 -0
  127. package/es/components/pisellFloorMapLayout/utils/floorMapStageDefaults.js +8 -0
  128. package/es/components/pisellFloorMapLayout/utils/floorMapViewConfigDiff.d.ts +8 -0
  129. package/es/components/pisellFloorMapLayout/utils/floorMapViewConfigDiff.js +108 -0
  130. package/es/components/pisellFloorMapLayout/utils/layoutMeasurements.d.ts +30 -0
  131. package/es/components/pisellFloorMapLayout/utils/layoutMeasurements.js +125 -0
  132. package/es/components/pisellFloorMapLayout/utils/mergeCanvasesForTabs.d.ts +7 -0
  133. package/es/components/pisellFloorMapLayout/utils/mergeCanvasesForTabs.js +29 -0
  134. package/es/components/pisellFloorMapLayout/utils/snap.d.ts +10 -0
  135. package/es/components/pisellFloorMapLayout/utils/snap.js +21 -0
  136. package/es/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.d.ts +6 -0
  137. package/es/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.js +175 -0
  138. package/es/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.less +129 -0
  139. package/es/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.stories.js +237 -0
  140. package/es/components/pisellHierarchicalSummaryList/components/Row.d.ts +35 -0
  141. package/es/components/pisellHierarchicalSummaryList/components/Row.js +313 -0
  142. package/es/components/pisellHierarchicalSummaryList/components/index.js +1 -0
  143. package/es/components/pisellHierarchicalSummaryList/hooks/index.js +1 -0
  144. package/es/components/pisellHierarchicalSummaryList/hooks/useExpandedKeys.js +34 -0
  145. package/es/components/pisellHierarchicalSummaryList/index.js +5 -0
  146. package/es/components/pisellHierarchicalSummaryList/types.js +1 -0
  147. package/es/components/pisellModal/components/index.d.ts +1 -0
  148. package/es/components/pisellRecordBoard/PisellRecordBoard.d.ts +2 -1
  149. package/es/components/pisellRecordBoard/PisellRecordBoard.js +98 -18
  150. package/es/components/pisellRecordBoard/PisellRecordBoard.stories.d.ts +4 -0
  151. package/es/components/pisellRecordBoard/PisellRecordBoard.stories.js +1276 -344
  152. package/es/components/pisellRecordBoard/index.d.ts +8 -2
  153. package/es/components/pisellRecordBoard/index.js +4 -2
  154. package/es/components/pisellRecordBoard/shellFrame/ColumnSetting/index.js +1 -3
  155. package/es/components/pisellRecordBoard/shellFrame/FloorMap.d.ts +14 -0
  156. package/es/components/pisellRecordBoard/shellFrame/FloorMap.js +15 -0
  157. package/es/components/pisellRecordBoard/shellFrame/ShellBodyMetaContext.d.ts +16 -0
  158. package/es/components/pisellRecordBoard/shellFrame/ShellBodyMetaContext.js +11 -0
  159. package/es/components/pisellRecordBoard/shellFrame/ToolBar/ToolBarFilter.less +61 -0
  160. package/es/components/pisellRecordBoard/shellFrame/ToolBar/index.d.ts +1 -0
  161. package/es/components/pisellRecordBoard/shellFrame/ToolBar/index.js +69 -11
  162. package/es/components/pisellRecordBoard/shellFrame/ToolBar/recordBoardToolbar.less +23 -0
  163. package/es/components/pisellRecordBoard/shellFrame/index.d.ts +6 -10
  164. package/es/components/pisellRecordBoard/shellFrame/index.js +111 -20
  165. package/es/components/pisellRecordBoard/shellFrame/shellFrameFloorMap.less +25 -0
  166. package/es/components/pisellRecordBoard/types.d.ts +68 -2
  167. package/es/components/pisellRecordBoard/utils/partitionShellFrameChildren.d.ts +15 -0
  168. package/es/components/pisellRecordBoard/utils/partitionShellFrameChildren.js +57 -0
  169. package/es/components/pisellRecordBoard/utils/recordBoardColumns.js +3 -2
  170. package/es/components/pisellReservationSchedule/PisellReservationSchedule.d.ts +10 -0
  171. package/es/components/pisellReservationSchedule/PisellReservationSchedule.js +156 -0
  172. package/es/components/pisellReservationSchedule/PisellReservationSchedule.less +88 -0
  173. package/es/components/pisellReservationSchedule/PisellReservationSchedule.stories.d.ts +12 -0
  174. package/es/components/pisellReservationSchedule/PisellReservationSchedule.stories.js +105 -0
  175. package/es/components/pisellReservationSchedule/index.d.ts +2 -0
  176. package/es/components/pisellReservationSchedule/index.js +1 -0
  177. package/es/components/pisellReservationSchedule/locales.d.ts +25 -0
  178. package/es/components/pisellReservationSchedule/locales.js +24 -0
  179. package/es/components/pisellReservationSchedule/types.d.ts +42 -0
  180. package/es/components/pisellReservationSchedule/types.js +1 -0
  181. package/es/components/pisellReservationScheduleBand/PisellReservationScheduleBand.d.ts +10 -0
  182. package/es/components/pisellReservationScheduleBand/PisellReservationScheduleBand.js +94 -0
  183. package/es/components/pisellReservationScheduleBand/PisellReservationScheduleBand.less +66 -0
  184. package/es/components/pisellReservationScheduleBand/PisellReservationScheduleBand.stories.d.ts +16 -0
  185. package/es/components/pisellReservationScheduleBand/PisellReservationScheduleBand.stories.js +197 -0
  186. package/es/components/pisellReservationScheduleBand/index.d.ts +2 -0
  187. package/es/components/pisellReservationScheduleBand/index.js +1 -0
  188. package/es/components/pisellReservationScheduleBand/types.d.ts +49 -0
  189. package/es/components/pisellReservationScheduleBand/types.js +1 -0
  190. package/es/components/pisellShellFrame/PisellShellFrame.less +11 -0
  191. package/es/components/pisellTimeNavigator/PisellTimeNavigator.d.ts +10 -0
  192. package/es/components/pisellTimeNavigator/PisellTimeNavigator.js +787 -0
  193. package/es/components/pisellTimeNavigator/PisellTimeNavigator.less +461 -0
  194. package/es/components/pisellTimeNavigator/PisellTimeNavigator.stories.d.ts +79 -0
  195. package/es/components/pisellTimeNavigator/PisellTimeNavigator.stories.js +290 -0
  196. package/es/components/pisellTimeNavigator/components/BackgroundLayer.js +30 -0
  197. package/es/components/pisellTimeNavigator/components/CursorLayer.d.ts +25 -0
  198. package/es/components/pisellTimeNavigator/components/CursorLayer.js +77 -0
  199. package/es/components/pisellTimeNavigator/components/GestureLayer.d.ts +33 -0
  200. package/es/components/pisellTimeNavigator/components/GestureLayer.js +91 -0
  201. package/es/components/pisellTimeNavigator/components/NowButton.d.ts +14 -0
  202. package/es/components/pisellTimeNavigator/components/NowButton.js +38 -0
  203. package/es/components/pisellTimeNavigator/components/ScaleLayer.d.ts +22 -0
  204. package/es/components/pisellTimeNavigator/components/ScaleLayer.js +73 -0
  205. package/es/components/pisellTimeNavigator/components/index.d.ts +5 -0
  206. package/es/components/pisellTimeNavigator/components/index.js +5 -0
  207. package/es/components/pisellTimeNavigator/hooks/index.d.ts +5 -0
  208. package/es/components/pisellTimeNavigator/hooks/index.js +3 -0
  209. package/es/components/pisellTimeNavigator/hooks/useDragInertia.js +109 -0
  210. package/es/components/pisellTimeNavigator/hooks/useRealtime.js +16 -0
  211. package/es/components/pisellTimeNavigator/hooks/useTimeAxis.js +76 -0
  212. package/es/components/pisellTimeNavigator/index.d.ts +5 -0
  213. package/es/components/pisellTimeNavigator/index.js +4 -0
  214. package/es/components/pisellTimeNavigator/locales.d.ts +22 -0
  215. package/es/components/pisellTimeNavigator/locales.js +21 -0
  216. package/es/components/pisellTimeNavigator/types.js +1 -0
  217. package/es/components/pisellTimeNavigator/utils/index.js +116 -0
  218. package/es/components/pisellWalletPassCard/index.js +1 -1
  219. package/es/components/productCard/cartSkuCard/components/packages/utils.d.ts +1 -1
  220. package/es/components/productCard/components/Packages/utils.d.ts +1 -1
  221. package/es/components/table/Table/fields/date/index.d.ts +1 -0
  222. package/es/components/table/Table/fields/index.d.ts +3 -2
  223. package/es/components/table/Table/fields/link/index.d.ts +1 -0
  224. package/es/components/table/Table/fields/number/index.d.ts +1 -0
  225. package/es/components/table/Table/fields/numberRange/index.d.ts +1 -0
  226. package/es/components/table/Table/fields/oldRangePicker/index.d.ts +1 -0
  227. package/es/components/table/Table/fields/rangePicker/index.d.ts +1 -0
  228. package/es/components/table/Table/fields/search/index.d.ts +1 -0
  229. package/es/components/table/Table/fields/select/index.d.ts +1 -0
  230. package/es/components/table/Table/fields/text/index.d.ts +1 -0
  231. package/es/components/table/Table/fields/treeSelect/index.d.ts +1 -0
  232. package/es/components/table/Table/utils.d.ts +1 -1
  233. package/es/components/table/index.js +1 -1
  234. package/es/hooks/useResponsive.d.ts +1 -1
  235. package/es/index.d.ts +49 -33
  236. package/es/index.js +47 -27
  237. package/es/locales/en-US.d.ts +3 -0
  238. package/es/locales/en-US.js +3 -0
  239. package/es/locales/ja.d.ts +8 -0
  240. package/es/locales/ja.js +25 -7
  241. package/es/locales/pt.d.ts +8 -0
  242. package/es/locales/pt.js +21 -3
  243. package/es/locales/zh-CN.d.ts +3 -0
  244. package/es/locales/zh-CN.js +3 -0
  245. package/es/locales/zh-TW.d.ts +3 -0
  246. package/es/locales/zh-TW.js +3 -0
  247. package/lib/components/PisellCards/index.d.ts +1 -0
  248. package/lib/components/PisellFields/index.d.ts +1 -0
  249. package/lib/components/PisellLayouts/index.d.ts +11 -5
  250. package/lib/components/PisellLayouts/index.js +15 -1
  251. package/lib/components/PisellMetrics/index.d.ts +1 -0
  252. package/lib/components/dataSourceComponents/dataSourceForm/utils.d.ts +1 -1
  253. package/lib/components/dataSourceComponents/dataSourceShow/dataSourceQRCode/index.d.ts +1 -0
  254. package/lib/components/dataSourceComponents/dataSourceSubForm/index.d.ts +13 -0
  255. package/lib/components/dataSourceComponents/dataSourceSubForm/index.js +229 -0
  256. package/lib/components/dataSourceComponents/dataSourceSubForm/index.less +19 -0
  257. package/lib/components/dataSourceComponents/dataSourceSubForm/schema-full-example.json +544 -0
  258. package/lib/components/dataSourceComponents/dataSourceSubForm/schema-simple-example.json +174 -0
  259. package/lib/components/dataSourceComponents/dataSourceSubForm/types.d.ts +117 -0
  260. package/lib/components/dataSourceComponents/dataSourceSubForm/types.js +17 -0
  261. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDataSourceKey.d.ts +1 -0
  262. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +2 -2
  263. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +1 -0
  264. package/lib/components/dataSourceComponents/fields/RecordListWrapper/ReadPretty.d.ts +9 -0
  265. package/lib/components/dataSourceComponents/fields/RecordListWrapper/ReadPretty.js +64 -0
  266. package/lib/components/dataSourceComponents/fields/RecordListWrapper/WithMode.d.ts +4 -0
  267. package/lib/components/dataSourceComponents/fields/RecordListWrapper/WithMode.js +157 -0
  268. package/lib/components/dataSourceComponents/fields/RecordListWrapper/index.d.ts +12 -0
  269. package/lib/components/dataSourceComponents/fields/RecordListWrapper/index.js +40 -0
  270. package/lib/components/dataSourceComponents/fields/RecordListWrapper/type.d.ts +87 -0
  271. package/lib/components/dataSourceComponents/fields/RecordListWrapper/type.js +17 -0
  272. package/lib/components/dataSourceComponents/fields/Select/index.d.ts +1 -1
  273. package/lib/components/dataSourceComponents/fields/Tabs/ReadPretty.d.ts +9 -0
  274. package/lib/components/dataSourceComponents/fields/Tabs/ReadPretty.js +45 -0
  275. package/lib/components/dataSourceComponents/fields/Tabs/Tabs.d.ts +23 -0
  276. package/lib/components/dataSourceComponents/fields/Tabs/Tabs.js +95 -0
  277. package/lib/components/dataSourceComponents/fields/Tabs/Tabs.less +64 -0
  278. package/lib/components/dataSourceComponents/fields/Tabs/WithMode.d.ts +6 -0
  279. package/lib/components/dataSourceComponents/fields/Tabs/WithMode.js +39 -0
  280. package/lib/components/dataSourceComponents/fields/Tabs/index.d.ts +13 -0
  281. package/lib/components/dataSourceComponents/fields/Tabs/index.js +40 -0
  282. package/lib/components/dataSourceComponents/fields/Tabs/type.d.ts +38 -0
  283. package/lib/components/dataSourceComponents/fields/Tabs/type.js +17 -0
  284. package/lib/components/dataSourceComponents/fields/Upload/utils.d.ts +1 -1
  285. package/lib/components/dataSourceComponents/fields/index.d.ts +50 -11
  286. package/lib/components/dataSourceComponents/fields/index.js +5 -1
  287. package/lib/components/dataSourceComponents/fields/utils.js +3 -0
  288. package/lib/components/date-picker/index.d.ts +1 -0
  289. package/lib/components/pisellDataSourceContainer/hooks/useDataSourceKey.d.ts +1 -0
  290. package/lib/components/pisellFilter/type.d.ts +4 -2
  291. package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.d.ts +12 -0
  292. package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.js +709 -0
  293. package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.less +92 -0
  294. package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.stories.d.ts +55 -0
  295. package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.stories.js +1353 -0
  296. package/lib/components/pisellFloorMapLayout/components/CanvasTabs.d.ts +27 -0
  297. package/lib/components/pisellFloorMapLayout/components/CanvasTabs.js +237 -0
  298. package/lib/components/pisellFloorMapLayout/components/CanvasTabs.less +189 -0
  299. package/lib/components/pisellFloorMapLayout/components/EditableItemLayer.d.ts +37 -0
  300. package/lib/components/pisellFloorMapLayout/components/EditableItemLayer.js +358 -0
  301. package/lib/components/pisellFloorMapLayout/components/EditableItemLayer.less +89 -0
  302. package/lib/components/pisellFloorMapLayout/components/FigmaTableCard.d.ts +43 -0
  303. package/lib/components/pisellFloorMapLayout/components/FigmaTableCard.js +486 -0
  304. package/lib/components/pisellFloorMapLayout/components/FloorMapDataForm.d.ts +21 -0
  305. package/lib/components/pisellFloorMapLayout/components/FloorMapDataForm.js +119 -0
  306. package/lib/components/pisellFloorMapLayout/components/FloorMapDataForm.less +7 -0
  307. package/lib/components/pisellFloorMapLayout/components/FloorMapEditPanel.d.ts +14 -0
  308. package/lib/components/pisellFloorMapLayout/components/FloorMapEditPanel.js +556 -0
  309. package/lib/components/pisellFloorMapLayout/components/FloorMapEditPanel.less +162 -0
  310. package/lib/components/pisellFloorMapLayout/components/FloorMapEditTopBar.d.ts +36 -0
  311. package/lib/components/pisellFloorMapLayout/components/FloorMapEditTopBar.js +199 -0
  312. package/lib/components/pisellFloorMapLayout/components/FloorMapEditTopBar.less +150 -0
  313. package/lib/components/pisellFloorMapLayout/components/FloorMapImageElement.d.ts +9 -0
  314. package/lib/components/pisellFloorMapLayout/components/FloorMapImageElement.js +96 -0
  315. package/lib/components/pisellFloorMapLayout/components/FloorMapToolbar.d.ts +35 -0
  316. package/lib/components/pisellFloorMapLayout/components/FloorMapToolbar.js +348 -0
  317. package/lib/components/pisellFloorMapLayout/components/FloorMapToolbar.less +239 -0
  318. package/lib/components/pisellFloorMapLayout/components/ItemLayer.js +219 -0
  319. package/lib/components/pisellFloorMapLayout/components/ItemLayer.less +19 -0
  320. package/lib/components/pisellFloorMapLayout/components/MapLayer.d.ts +27 -0
  321. package/lib/components/pisellFloorMapLayout/components/MapLayer.js +110 -0
  322. package/lib/components/pisellFloorMapLayout/components/MapLayer.less +7 -0
  323. package/lib/components/pisellFloorMapLayout/components/ViewControls.d.ts +33 -0
  324. package/lib/components/pisellFloorMapLayout/components/ViewControls.js +127 -0
  325. package/lib/components/pisellFloorMapLayout/components/ViewControls.less +101 -0
  326. package/lib/components/pisellFloorMapLayout/components/ViewControlsWithZoom.d.ts +16 -0
  327. package/lib/components/pisellFloorMapLayout/components/ViewControlsWithZoom.js +65 -0
  328. package/lib/components/pisellFloorMapLayout/components/index.d.ts +21 -0
  329. package/lib/components/pisellFloorMapLayout/components/index.js +56 -0
  330. package/lib/components/pisellFloorMapLayout/context/FloorMapLayoutContext.d.ts +16 -0
  331. package/lib/components/pisellFloorMapLayout/context/FloorMapLayoutContext.js +54 -0
  332. package/lib/components/pisellFloorMapLayout/context/mergeFloorMapLayoutContext.d.ts +5 -0
  333. package/lib/components/pisellFloorMapLayout/context/mergeFloorMapLayoutContext.js +47 -0
  334. package/lib/components/pisellFloorMapLayout/hooks/useFloorMapEditState.d.ts +63 -0
  335. package/lib/components/pisellFloorMapLayout/hooks/useFloorMapEditState.js +546 -0
  336. package/lib/components/pisellFloorMapLayout/hooks/useFloorMapPaletteTouchDrag.d.ts +21 -0
  337. package/lib/components/pisellFloorMapLayout/hooks/useFloorMapPaletteTouchDrag.js +146 -0
  338. package/lib/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.d.ts +67 -0
  339. package/lib/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.js +382 -0
  340. package/lib/components/pisellFloorMapLayout/index.d.ts +15 -0
  341. package/lib/components/pisellFloorMapLayout/index.js +64 -0
  342. package/lib/components/pisellFloorMapLayout/locales-ja.d.ts +104 -0
  343. package/lib/components/pisellFloorMapLayout/locales-ja.js +124 -0
  344. package/lib/components/pisellFloorMapLayout/locales-pt.d.ts +104 -0
  345. package/lib/components/pisellFloorMapLayout/locales-pt.js +124 -0
  346. package/lib/components/pisellFloorMapLayout/locales.d.ts +506 -0
  347. package/lib/components/pisellFloorMapLayout/locales.js +340 -0
  348. package/lib/components/pisellFloorMapLayout/types.d.ts +586 -0
  349. package/lib/components/pisellFloorMapLayout/types.js +32 -0
  350. package/lib/components/pisellFloorMapLayout/utils/floorMapCanvasDisplay.d.ts +20 -0
  351. package/lib/components/pisellFloorMapLayout/utils/floorMapCanvasDisplay.js +126 -0
  352. package/lib/components/pisellFloorMapLayout/utils/floorMapConfigMerge.d.ts +8 -0
  353. package/lib/components/pisellFloorMapLayout/utils/floorMapConfigMerge.js +66 -0
  354. package/lib/components/pisellFloorMapLayout/utils/floorMapDataRecordLabel.d.ts +8 -0
  355. package/lib/components/pisellFloorMapLayout/utils/floorMapDataRecordLabel.js +38 -0
  356. package/lib/components/pisellFloorMapLayout/utils/floorMapDropUtils.d.ts +27 -0
  357. package/lib/components/pisellFloorMapLayout/utils/floorMapDropUtils.js +67 -0
  358. package/lib/components/pisellFloorMapLayout/utils/floorMapElementKindUtils.d.ts +22 -0
  359. package/lib/components/pisellFloorMapLayout/utils/floorMapElementKindUtils.js +142 -0
  360. package/lib/components/pisellFloorMapLayout/utils/floorMapFallbackRender.d.ts +11 -0
  361. package/lib/components/pisellFloorMapLayout/utils/floorMapFallbackRender.js +136 -0
  362. package/lib/components/pisellFloorMapLayout/utils/floorMapStageDefaults.d.ts +8 -0
  363. package/lib/components/pisellFloorMapLayout/utils/floorMapStageDefaults.js +33 -0
  364. package/lib/components/pisellFloorMapLayout/utils/floorMapViewConfigDiff.d.ts +8 -0
  365. package/lib/components/pisellFloorMapLayout/utils/floorMapViewConfigDiff.js +128 -0
  366. package/lib/components/pisellFloorMapLayout/utils/layoutMeasurements.d.ts +30 -0
  367. package/lib/components/pisellFloorMapLayout/utils/layoutMeasurements.js +96 -0
  368. package/lib/components/pisellFloorMapLayout/utils/mergeCanvasesForTabs.d.ts +7 -0
  369. package/lib/components/pisellFloorMapLayout/utils/mergeCanvasesForTabs.js +41 -0
  370. package/lib/components/pisellFloorMapLayout/utils/snap.d.ts +10 -0
  371. package/lib/components/pisellFloorMapLayout/utils/snap.js +43 -0
  372. package/lib/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.d.ts +6 -0
  373. package/lib/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.js +179 -0
  374. package/lib/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.less +129 -0
  375. package/lib/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.stories.js +185 -0
  376. package/lib/components/pisellHierarchicalSummaryList/components/Row.d.ts +35 -0
  377. package/lib/components/pisellHierarchicalSummaryList/components/Row.js +343 -0
  378. package/lib/components/pisellHierarchicalSummaryList/components/index.js +29 -0
  379. package/lib/components/pisellHierarchicalSummaryList/hooks/index.js +29 -0
  380. package/lib/components/pisellHierarchicalSummaryList/hooks/useExpandedKeys.js +49 -0
  381. package/lib/components/pisellHierarchicalSummaryList/index.js +31 -0
  382. package/lib/components/pisellHierarchicalSummaryList/types.js +17 -0
  383. package/lib/components/pisellModal/components/index.d.ts +1 -0
  384. package/lib/components/pisellRecordBoard/PisellRecordBoard.d.ts +2 -1
  385. package/lib/components/pisellRecordBoard/PisellRecordBoard.js +86 -8
  386. package/lib/components/pisellRecordBoard/PisellRecordBoard.stories.d.ts +4 -0
  387. package/lib/components/pisellRecordBoard/PisellRecordBoard.stories.js +915 -25
  388. package/lib/components/pisellRecordBoard/index.d.ts +8 -2
  389. package/lib/components/pisellRecordBoard/index.js +6 -2
  390. package/lib/components/pisellRecordBoard/shellFrame/ColumnSetting/index.js +8 -2
  391. package/lib/components/pisellRecordBoard/shellFrame/FloorMap.d.ts +14 -0
  392. package/lib/components/pisellRecordBoard/shellFrame/FloorMap.js +27 -0
  393. package/lib/components/pisellRecordBoard/shellFrame/ShellBodyMetaContext.d.ts +16 -0
  394. package/lib/components/pisellRecordBoard/shellFrame/ShellBodyMetaContext.js +45 -0
  395. package/lib/components/pisellRecordBoard/shellFrame/ToolBar/ToolBarFilter.less +61 -0
  396. package/lib/components/pisellRecordBoard/shellFrame/ToolBar/index.d.ts +1 -0
  397. package/lib/components/pisellRecordBoard/shellFrame/ToolBar/index.js +60 -8
  398. package/lib/components/pisellRecordBoard/shellFrame/ToolBar/recordBoardToolbar.less +23 -0
  399. package/lib/components/pisellRecordBoard/shellFrame/index.d.ts +6 -10
  400. package/lib/components/pisellRecordBoard/shellFrame/index.js +101 -9
  401. package/lib/components/pisellRecordBoard/shellFrame/shellFrameFloorMap.less +25 -0
  402. package/lib/components/pisellRecordBoard/types.d.ts +68 -2
  403. package/lib/components/pisellRecordBoard/utils/partitionShellFrameChildren.d.ts +15 -0
  404. package/lib/components/pisellRecordBoard/utils/partitionShellFrameChildren.js +88 -0
  405. package/lib/components/pisellRecordBoard/utils/recordBoardColumns.js +11 -1
  406. package/lib/components/pisellReservationSchedule/PisellReservationSchedule.d.ts +10 -0
  407. package/lib/components/pisellReservationSchedule/PisellReservationSchedule.js +200 -0
  408. package/lib/components/pisellReservationSchedule/PisellReservationSchedule.less +88 -0
  409. package/lib/components/pisellReservationSchedule/PisellReservationSchedule.stories.d.ts +12 -0
  410. package/lib/components/pisellReservationSchedule/PisellReservationSchedule.stories.js +116 -0
  411. package/lib/components/pisellReservationSchedule/index.d.ts +2 -0
  412. package/lib/components/pisellReservationSchedule/index.js +29 -0
  413. package/lib/components/pisellReservationSchedule/locales.d.ts +25 -0
  414. package/lib/components/pisellReservationSchedule/locales.js +47 -0
  415. package/lib/components/pisellReservationSchedule/types.d.ts +42 -0
  416. package/lib/components/pisellReservationSchedule/types.js +17 -0
  417. package/lib/components/pisellReservationScheduleBand/PisellReservationScheduleBand.d.ts +10 -0
  418. package/lib/components/pisellReservationScheduleBand/PisellReservationScheduleBand.js +128 -0
  419. package/lib/components/pisellReservationScheduleBand/PisellReservationScheduleBand.less +66 -0
  420. package/lib/components/pisellReservationScheduleBand/PisellReservationScheduleBand.stories.d.ts +16 -0
  421. package/lib/components/pisellReservationScheduleBand/PisellReservationScheduleBand.stories.js +181 -0
  422. package/lib/components/pisellReservationScheduleBand/index.d.ts +2 -0
  423. package/lib/components/pisellReservationScheduleBand/index.js +29 -0
  424. package/lib/components/pisellReservationScheduleBand/types.d.ts +49 -0
  425. package/lib/components/pisellReservationScheduleBand/types.js +17 -0
  426. package/lib/components/pisellShellFrame/PisellShellFrame.less +11 -0
  427. package/lib/components/pisellTimeNavigator/PisellTimeNavigator.d.ts +10 -0
  428. package/lib/components/pisellTimeNavigator/PisellTimeNavigator.js +901 -0
  429. package/lib/components/pisellTimeNavigator/PisellTimeNavigator.less +461 -0
  430. package/lib/components/pisellTimeNavigator/PisellTimeNavigator.stories.d.ts +79 -0
  431. package/lib/components/pisellTimeNavigator/PisellTimeNavigator.stories.js +273 -0
  432. package/lib/components/pisellTimeNavigator/components/BackgroundLayer.js +78 -0
  433. package/lib/components/pisellTimeNavigator/components/CursorLayer.d.ts +25 -0
  434. package/lib/components/pisellTimeNavigator/components/CursorLayer.js +111 -0
  435. package/lib/components/pisellTimeNavigator/components/GestureLayer.d.ts +33 -0
  436. package/lib/components/pisellTimeNavigator/components/GestureLayer.js +170 -0
  437. package/lib/components/pisellTimeNavigator/components/NowButton.d.ts +14 -0
  438. package/lib/components/pisellTimeNavigator/components/NowButton.js +81 -0
  439. package/lib/components/pisellTimeNavigator/components/ScaleLayer.d.ts +22 -0
  440. package/lib/components/pisellTimeNavigator/components/ScaleLayer.js +116 -0
  441. package/lib/components/pisellTimeNavigator/components/index.d.ts +5 -0
  442. package/lib/components/pisellTimeNavigator/components/index.js +41 -0
  443. package/lib/components/pisellTimeNavigator/hooks/index.d.ts +5 -0
  444. package/lib/components/pisellTimeNavigator/hooks/index.js +35 -0
  445. package/lib/components/pisellTimeNavigator/hooks/useDragInertia.js +136 -0
  446. package/lib/components/pisellTimeNavigator/hooks/useRealtime.js +49 -0
  447. package/lib/components/pisellTimeNavigator/hooks/useTimeAxis.js +87 -0
  448. package/lib/components/pisellTimeNavigator/index.d.ts +5 -0
  449. package/lib/components/pisellTimeNavigator/index.js +47 -0
  450. package/lib/components/pisellTimeNavigator/locales.d.ts +22 -0
  451. package/lib/components/pisellTimeNavigator/locales.js +41 -0
  452. package/lib/components/pisellTimeNavigator/types.js +17 -0
  453. package/lib/components/pisellTimeNavigator/utils/index.js +107 -0
  454. package/lib/components/pisellWalletPassCard/index.js +1 -1
  455. package/lib/components/productCard/cartSkuCard/components/packages/utils.d.ts +1 -1
  456. package/lib/components/productCard/components/Packages/utils.d.ts +1 -1
  457. package/lib/components/table/Table/fields/date/index.d.ts +1 -0
  458. package/lib/components/table/Table/fields/index.d.ts +3 -2
  459. package/lib/components/table/Table/fields/link/index.d.ts +1 -0
  460. package/lib/components/table/Table/fields/number/index.d.ts +1 -0
  461. package/lib/components/table/Table/fields/numberRange/index.d.ts +1 -0
  462. package/lib/components/table/Table/fields/oldRangePicker/index.d.ts +1 -0
  463. package/lib/components/table/Table/fields/rangePicker/index.d.ts +1 -0
  464. package/lib/components/table/Table/fields/search/index.d.ts +1 -0
  465. package/lib/components/table/Table/fields/select/index.d.ts +1 -0
  466. package/lib/components/table/Table/fields/text/index.d.ts +1 -0
  467. package/lib/components/table/Table/fields/treeSelect/index.d.ts +1 -0
  468. package/lib/components/table/Table/utils.d.ts +1 -1
  469. package/lib/components/table/index.js +2 -2
  470. package/lib/hooks/useResponsive.d.ts +1 -1
  471. package/lib/index.d.ts +49 -33
  472. package/lib/index.js +93 -27
  473. package/lib/locales/en-US.d.ts +3 -0
  474. package/lib/locales/en-US.js +3 -0
  475. package/lib/locales/ja.d.ts +8 -0
  476. package/lib/locales/ja.js +22 -1
  477. package/lib/locales/pt.d.ts +8 -0
  478. package/lib/locales/pt.js +22 -1
  479. package/lib/locales/zh-CN.d.ts +3 -0
  480. package/lib/locales/zh-CN.js +3 -0
  481. package/lib/locales/zh-TW.d.ts +3 -0
  482. package/lib/locales/zh-TW.js +3 -0
  483. package/lowcode/data-source-form/constants.ts +3 -0
  484. package/lowcode/data-source-form/utils.ts +31 -5
  485. package/lowcode/data-source-sub-form/meta.ts +259 -0
  486. package/lowcode/data-source-sub-form/snippets.ts +21 -0
  487. package/lowcode/floor-map-image-element/meta.ts +113 -0
  488. package/lowcode/floor-map-layout-provider/meta.ts +65 -0
  489. package/lowcode/form-item-record-list-wrapper/meta.ts +180 -0
  490. package/lowcode/form-item-record-list-wrapper/snippets.ts +18 -0
  491. package/lowcode/form-item-tabs/meta.ts +172 -0
  492. package/lowcode/pisell-floor-map-layout/meta.ts +5599 -0
  493. package/lowcode/pisell-hierarchical-summary-list/meta.ts +240 -0
  494. package/lowcode/pisell-reservation-schedule/index.ts +3 -0
  495. package/lowcode/pisell-reservation-schedule/meta.ts +69 -0
  496. package/lowcode/pisell-reservation-schedule/snippets.ts +1 -0
  497. package/lowcode/pisell-reservation-schedule-band/index.ts +3 -0
  498. package/lowcode/pisell-reservation-schedule-band/meta.ts +96 -0
  499. package/lowcode/pisell-reservation-schedule-band/snippets.ts +1 -0
  500. package/lowcode/pisell-time-navigator/index.ts +3 -0
  501. package/lowcode/pisell-time-navigator/meta.ts +298 -0
  502. package/lowcode/pisell-time-navigator/snippets.ts +1 -0
  503. package/lowcode/render-figma-style-round-table-card/meta.ts +589 -0
  504. package/lowcode/render-figma-style-table-card/meta.ts +589 -0
  505. package/package.json +4 -3
  506. package/es/components/PisellCards/components/GraphicTextCard/types.d.ts +0 -290
  507. package/es/components/PisellCards/components/TextCard/TextCard.d.ts +0 -8
  508. package/es/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +0 -26
  509. package/es/components/PisellCards/components/TextCard/components/TextContent.d.ts +0 -21
  510. package/es/components/PisellCards/components/TextCard/types.d.ts +0 -270
  511. package/es/components/PisellSteps/PisellSteps.d.ts +0 -14
  512. package/es/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +0 -4
  513. package/es/components/dataSourceComponents/dataSourceTable/type.d.ts +0 -84
  514. package/es/components/drag-sort-tree/index.d.ts +0 -5
  515. package/es/components/iconfont/index.d.ts +0 -8
  516. package/es/components/login-and-register/index.d.ts +0 -82
  517. package/es/components/pisell-config-provider/index.d.ts +0 -13
  518. package/es/components/pisellEmpty/index.d.ts +0 -19
  519. package/es/components/pisellGridPro/index.d.ts +0 -4
  520. package/es/components/pisellLookup/components/LookupTrigger.d.ts +0 -3
  521. package/es/components/productCard/cartSkuCard/components/Gift/types.d.ts +0 -29
  522. package/es/components/productCard/cartSkuCard/components/Promotion/index.d.ts +0 -7
  523. package/es/components/productCard/cartSkuCard/locales.d.ts +0 -178
  524. package/es/components/productCard/components/Header/DeleteButton/index.d.ts +0 -4
  525. package/es/components/productCard/status.d.ts +0 -32
  526. package/es/components/productCard/types.d.ts +0 -95
  527. package/es/components/table/Actions/component/ViewMode/index.d.ts +0 -9
  528. package/es/components/table/types.d.ts +0 -268
  529. package/es/components/versionModal/index.d.ts +0 -23
  530. package/lib/components/PisellCards/components/GraphicTextCard/types.d.ts +0 -290
  531. package/lib/components/PisellCards/components/TextCard/TextCard.d.ts +0 -8
  532. package/lib/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +0 -26
  533. package/lib/components/PisellCards/components/TextCard/components/TextContent.d.ts +0 -21
  534. package/lib/components/PisellCards/components/TextCard/types.d.ts +0 -270
  535. package/lib/components/PisellSteps/PisellSteps.d.ts +0 -14
  536. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +0 -4
  537. package/lib/components/dataSourceComponents/dataSourceTable/type.d.ts +0 -84
  538. package/lib/components/drag-sort-tree/index.d.ts +0 -5
  539. package/lib/components/iconfont/index.d.ts +0 -8
  540. package/lib/components/login-and-register/index.d.ts +0 -82
  541. package/lib/components/pisell-config-provider/index.d.ts +0 -13
  542. package/lib/components/pisellEmpty/index.d.ts +0 -19
  543. package/lib/components/pisellGridPro/index.d.ts +0 -4
  544. package/lib/components/pisellLookup/components/LookupTrigger.d.ts +0 -3
  545. package/lib/components/productCard/cartSkuCard/components/Gift/types.d.ts +0 -29
  546. package/lib/components/productCard/cartSkuCard/components/Promotion/index.d.ts +0 -7
  547. package/lib/components/productCard/cartSkuCard/locales.d.ts +0 -178
  548. package/lib/components/productCard/components/Header/DeleteButton/index.d.ts +0 -4
  549. package/lib/components/productCard/status.d.ts +0 -32
  550. package/lib/components/productCard/types.d.ts +0 -95
  551. package/lib/components/table/Actions/component/ViewMode/index.d.ts +0 -9
  552. package/lib/components/table/types.d.ts +0 -268
  553. package/lib/components/versionModal/index.d.ts +0 -23
@@ -0,0 +1,310 @@
1
+ import floorMapJa from "./locales-ja";
2
+ import floorMapPt from "./locales-pt";
3
+
4
+ /**
5
+ * PisellFloorMapLayout 内置文案(画布 Tab、编辑面板等)
6
+ */
7
+ export default {
8
+ en: {
9
+ 'pisell-floor-map-layout.loading': 'Loading...',
10
+ 'pisell-floor-map-layout.read-canvas-tabs.aria': 'Switch floor plan canvas',
11
+ 'pisell-floor-map-layout.edit-top-bar.aria': 'Floor plan editor toolbar',
12
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-enter-aria': 'Fullscreen',
13
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-enter-title': 'Fullscreen (top bar with save and fit bounds, etc.)',
14
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-exit-aria': 'Exit fullscreen',
15
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-exit-title': 'Exit fullscreen',
16
+ 'pisell-floor-map-layout.edit-top-bar.unsaved': 'Unsaved',
17
+ 'pisell-floor-map-layout.edit-top-bar.save': 'Save',
18
+ 'pisell-floor-map-layout.edit-top-bar.saving': 'Saving…',
19
+ 'pisell-floor-map-layout.canvas-tabs.empty': 'No canvas',
20
+ 'pisell-floor-map-layout.canvas-tabs.add': '+ Add floor',
21
+ 'pisell-floor-map-layout.canvas-tabs.add-title': 'Add floor',
22
+ 'pisell-floor-map-layout.canvas-tabs.hint': 'Click 「Add floor」 to create a canvas',
23
+ 'pisell-floor-map-layout.canvas-tabs.rename-aria': 'Rename',
24
+ 'pisell-floor-map-layout.canvas-tabs.remove-aria': 'Remove',
25
+ 'pisell-floor-map-layout.canvas-tabs.rename-title': 'Double-click to rename, or tap the pencil on touch screens',
26
+ 'pisell-floor-map-layout.canvas-tabs.rename-button-aria': 'Rename canvas',
27
+ 'pisell-floor-map-layout.canvas-tabs.rename-button-title': 'Rename',
28
+ 'pisell-floor-map-layout.canvas-tabs.default-new-canvas-name': 'New floor',
29
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-title': 'Rename canvas',
30
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-ok': 'OK',
31
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-cancel': 'Cancel',
32
+ 'pisell-floor-map-layout.edit-panel.element-props': 'Element',
33
+ 'pisell-floor-map-layout.edit-panel.close-aria': 'Close',
34
+ 'pisell-floor-map-layout.edit-panel.hint-apply': 'Position or size changed — click Apply to update the canvas.',
35
+ 'pisell-floor-map-layout.edit-panel.hint-save': 'Layout draft is not saved — click Done editing to save.',
36
+ 'pisell-floor-map-layout.edit-panel.section-layout': 'Position · Layer · Size',
37
+ 'pisell-floor-map-layout.edit-panel.lock-on': 'Locked: drag/resize disabled on canvas; click to unlock',
38
+ 'pisell-floor-map-layout.edit-panel.lock-off': 'Lock to disable drag and resize on canvas',
39
+ 'pisell-floor-map-layout.edit-panel.label-x': 'X',
40
+ 'pisell-floor-map-layout.edit-panel.label-y': 'Y',
41
+ 'pisell-floor-map-layout.edit-panel.label-z': 'Layer',
42
+ 'pisell-floor-map-layout.edit-panel.label-width': 'Width',
43
+ 'pisell-floor-map-layout.edit-panel.label-height': 'Height',
44
+ 'pisell-floor-map-layout.edit-panel.label-name': 'Name',
45
+ 'pisell-floor-map-layout.edit-panel.label-name-stage': 'Display name (on canvas)',
46
+ 'pisell-floor-map-layout.edit-panel.ph-name-stage': 'e.g. stage, DJ booth, dance floor',
47
+ 'pisell-floor-map-layout.edit-panel.ph-name': 'Element name',
48
+ 'pisell-floor-map-layout.edit-panel.label-image-url': 'Image URL',
49
+ 'pisell-floor-map-layout.edit-panel.extra-image-url': 'Use a network image URL; lower layer to place under tables.',
50
+ 'pisell-floor-map-layout.edit-panel.ph-https': 'https://...',
51
+ 'pisell-floor-map-layout.edit-panel.label-canvas': 'Canvas',
52
+ 'pisell-floor-map-layout.edit-panel.label-element-kind': 'Element type',
53
+ 'pisell-floor-map-layout.edit-panel.hint-kind-binding-cleared': 'Data binding was cleared because it does not apply to the new type.',
54
+ 'pisell-floor-map-layout.edit-panel.apply': 'Apply',
55
+ 'pisell-floor-map-layout.edit-panel.data-binding': 'Data binding',
56
+ 'pisell-floor-map-layout.edit-panel.data-binding-note': 'Changing data source or row writes to the layout draft; click Save at the top to persist.',
57
+ 'pisell-floor-map-layout.edit-panel.label-data-source': 'Data source',
58
+ 'pisell-floor-map-layout.edit-panel.ph-data-source': 'Select data source',
59
+ 'pisell-floor-map-layout.edit-panel.label-pick-row': 'Pick row',
60
+ 'pisell-floor-map-layout.edit-panel.ph-pick-row': 'Pick a row from the data table',
61
+ 'pisell-floor-map-layout.edit-panel.ph-no-rows': 'No available rows in this data source',
62
+ 'pisell-floor-map-layout.edit-panel.hint-unbound': 'Leave empty or clear when unbound; after binding you can edit record fields.',
63
+ 'pisell-floor-map-layout.edit-panel.record-title': 'Data record',
64
+ 'pisell-floor-map-layout.edit-panel.pop-title': 'Delete this element?',
65
+ 'pisell-floor-map-layout.edit-panel.pop-desc': 'It will be removed from the floor plan draft; click Save at the top to persist.',
66
+ 'pisell-floor-map-layout.edit-panel.btn-delete': 'Delete',
67
+ 'pisell-floor-map-layout.edit-panel.btn-cancel': 'Cancel',
68
+ 'pisell-floor-map-layout.edit-panel.btn-ok-delete': 'Delete',
69
+ 'pisell-floor-map-layout.toolbar.category-fallback': 'Elements',
70
+ 'pisell-floor-map-layout.toolbar.palette-card-title': 'Click to place on canvas, or drag onto canvas to add 「{name}」',
71
+ 'pisell-floor-map-layout.toolbar.data-binding-optional': 'Data binding (optional)',
72
+ 'pisell-floor-map-layout.toolbar.hint-after-select-ds': 'After choosing a data source, you may bind rows or place placeholders directly.',
73
+ 'pisell-floor-map-layout.toolbar.hint-no-unplaced-rows': 'No unbound rows in this data source, or the list is empty; you can still place placeholders on the canvas.',
74
+ 'pisell-floor-map-layout.toolbar.ph-select-records': 'Select records to show (optional, multiple)',
75
+ 'pisell-floor-map-layout.toolbar.hint-multi-drop': 'Select multiple to place several items in one click (staggered). Leave empty to place a placeholder and bind later in the sidebar.',
76
+ 'pisell-floor-map-layout.toolbar.no-data-sources': 'No data sources available',
77
+ 'pisell-floor-map-layout.toolbar.cancel-place': 'Cancel',
78
+ 'pisell-floor-map-layout.toolbar.layout-dirty-hint': 'Layout changed — click Save to persist.',
79
+ 'pisell-floor-map-layout.toolbar.save': 'Save',
80
+ 'pisell-floor-map-layout.toolbar.saving': 'Saving…',
81
+ 'pisell-floor-map-layout.view-controls.zoom-out-aria': 'Zoom out',
82
+ 'pisell-floor-map-layout.view-controls.zoom-in-aria': 'Zoom in',
83
+ 'pisell-floor-map-layout.view-controls.reset-aria': 'Reset view',
84
+ 'pisell-floor-map-layout.view-controls.fit-bounds-aria': 'Fit to content',
85
+ 'pisell-floor-map-layout.view-controls.grid-hide-aria': 'Hide grid',
86
+ 'pisell-floor-map-layout.view-controls.grid-show-aria': 'Show grid',
87
+ 'pisell-floor-map-layout.view-controls.fullscreen-aria': 'Fullscreen',
88
+ 'pisell-floor-map-layout.view-controls.fullscreen-exit-aria': 'Exit fullscreen',
89
+ 'pisell-floor-map-layout.image-element.default-name': 'Image',
90
+ 'pisell-floor-map-layout.placement.fallback-image-name': 'Background',
91
+ 'pisell-floor-map-layout.image-element.hint-no-url': 'Enter the image URL in the sidebar; lower the layer to place under tables.',
92
+ 'pisell-floor-map-layout.image-element.hint-load-fail': 'Failed to load image; check the URL.',
93
+ 'pisell-floor-map-layout.data-form.empty': 'No extra fields to edit',
94
+ 'pisell-floor-map-layout.data-form.save-record': 'Save record',
95
+ 'pisell-floor-map-layout.binding-error.required-row': 'This element must be bound to a data row.',
96
+ 'pisell-floor-map-layout.binding-error.ds-not-allowed': 'Data source "{key}" is not allowed for this element type.',
97
+ 'pisell-floor-map-layout.binding-error.missing-field': 'Row is missing required field: {field}',
98
+ 'pisell-floor-map-layout.card-placeholder.hint-select-row': 'Data source selected. Choose a row in the sidebar.',
99
+ 'pisell-floor-map-layout.card-placeholder.hint-bind-datasource': 'No row bound: select a data source and record in the sidebar.',
100
+ 'pisell-floor-map-layout.card-placeholder.hint-new-slot': 'New {kind} placeholder. Bind a record in the sidebar.',
101
+ 'pisell-floor-map-layout.card-placeholder.hint-row-not-found': 'Record not found: check binding or data list.',
102
+ 'pisell-floor-map-layout.figma-card.kind-round-table': 'Round table',
103
+ 'pisell-floor-map-layout.figma-card.kind-square-table': 'Table',
104
+ 'pisell-floor-map-layout.figma-card.default-table': 'Table',
105
+ 'pisell-floor-map-layout.figma-card.capacity-seats': 'Seats {n}',
106
+ 'pisell-floor-map-layout.figma-card.guests-count': '{n} guests'
107
+ },
108
+ 'zh-CN': {
109
+ 'pisell-floor-map-layout.loading': '加载中…',
110
+ 'pisell-floor-map-layout.read-canvas-tabs.aria': '切换平面图画布',
111
+ 'pisell-floor-map-layout.edit-top-bar.aria': '平面图编辑顶栏',
112
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-enter-aria': '全屏',
113
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-enter-title': '全屏(顶栏含保存与区域定位等)',
114
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-exit-aria': '退出全屏',
115
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-exit-title': '退出全屏',
116
+ 'pisell-floor-map-layout.edit-top-bar.unsaved': '未保存',
117
+ 'pisell-floor-map-layout.edit-top-bar.save': '保存',
118
+ 'pisell-floor-map-layout.edit-top-bar.saving': '保存中…',
119
+ 'pisell-floor-map-layout.canvas-tabs.empty': '暂无画布',
120
+ 'pisell-floor-map-layout.canvas-tabs.add': '+ 添加楼层',
121
+ 'pisell-floor-map-layout.canvas-tabs.add-title': '添加楼层',
122
+ 'pisell-floor-map-layout.canvas-tabs.hint': '请点击右侧「添加楼层」创建画布',
123
+ 'pisell-floor-map-layout.canvas-tabs.rename-aria': '重命名',
124
+ 'pisell-floor-map-layout.canvas-tabs.remove-aria': '删除',
125
+ 'pisell-floor-map-layout.canvas-tabs.rename-title': '双击重命名;触屏请点击标签右侧铅笔图标',
126
+ 'pisell-floor-map-layout.canvas-tabs.rename-button-aria': '重命名画布',
127
+ 'pisell-floor-map-layout.canvas-tabs.rename-button-title': '重命名',
128
+ 'pisell-floor-map-layout.canvas-tabs.default-new-canvas-name': '新楼层',
129
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-title': '重命名画布',
130
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-ok': '确定',
131
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-cancel': '取消',
132
+ 'pisell-floor-map-layout.edit-panel.element-props': '图元属性',
133
+ 'pisell-floor-map-layout.edit-panel.close-aria': '关闭',
134
+ 'pisell-floor-map-layout.edit-panel.hint-apply': '位置、尺寸等已修改,请点击「应用」同步到画布。',
135
+ 'pisell-floor-map-layout.edit-panel.hint-save': '布局草稿未持久化,请点击「完成编辑」保存。',
136
+ 'pisell-floor-map-layout.edit-panel.section-layout': '位置 · 层级 · 尺寸',
137
+ 'pisell-floor-map-layout.edit-panel.lock-on': '已锁定:画布不可拖拽/缩放;点击解锁',
138
+ 'pisell-floor-map-layout.edit-panel.lock-off': '锁定后画布不可拖拽与改尺寸',
139
+ 'pisell-floor-map-layout.edit-panel.label-x': 'X',
140
+ 'pisell-floor-map-layout.edit-panel.label-y': 'Y',
141
+ 'pisell-floor-map-layout.edit-panel.label-z': '层级',
142
+ 'pisell-floor-map-layout.edit-panel.label-width': '宽度',
143
+ 'pisell-floor-map-layout.edit-panel.label-height': '高度',
144
+ 'pisell-floor-map-layout.edit-panel.label-name': '名称',
145
+ 'pisell-floor-map-layout.edit-panel.label-name-stage': '显示名称(画布上)',
146
+ 'pisell-floor-map-layout.edit-panel.ph-name-stage': '如:舞台、DJ 台、舞池',
147
+ 'pisell-floor-map-layout.edit-panel.ph-name': '图元名称',
148
+ 'pisell-floor-map-layout.edit-panel.label-image-url': '图片地址(URL)',
149
+ 'pisell-floor-map-layout.edit-panel.extra-image-url': '可填网络图片地址;将层级调低可铺在桌位下方作底图。',
150
+ 'pisell-floor-map-layout.edit-panel.ph-https': 'https://...',
151
+ 'pisell-floor-map-layout.edit-panel.label-canvas': '所属画布',
152
+ 'pisell-floor-map-layout.edit-panel.label-element-kind': '图元类型',
153
+ 'pisell-floor-map-layout.edit-panel.hint-kind-binding-cleared': '新类型与原先绑定不兼容,已清除数据绑定。',
154
+ 'pisell-floor-map-layout.edit-panel.apply': '应用',
155
+ 'pisell-floor-map-layout.edit-panel.data-binding': '数据绑定',
156
+ 'pisell-floor-map-layout.edit-panel.data-binding-note': '修改数据源或绑定行会立即写入布局草稿;持久化请点击顶部「保存」。',
157
+ 'pisell-floor-map-layout.edit-panel.label-data-source': '数据源',
158
+ 'pisell-floor-map-layout.edit-panel.ph-data-source': '选择数据源',
159
+ 'pisell-floor-map-layout.edit-panel.label-pick-row': '选择数据行',
160
+ 'pisell-floor-map-layout.edit-panel.ph-pick-row': '绑定数据表中的一行',
161
+ 'pisell-floor-map-layout.edit-panel.ph-no-rows': '当前数据源暂无可用行',
162
+ 'pisell-floor-map-layout.edit-panel.hint-unbound': '未绑定行时可先留空或清除;绑定后可编辑「数据源记录」字段。',
163
+ 'pisell-floor-map-layout.edit-panel.record-title': '数据源记录',
164
+ 'pisell-floor-map-layout.edit-panel.pop-title': '确定删除该图元?',
165
+ 'pisell-floor-map-layout.edit-panel.pop-desc': '将从当前平面图草稿中移除;删除后请点击顶部「保存」以持久化布局。',
166
+ 'pisell-floor-map-layout.edit-panel.btn-delete': '删除',
167
+ 'pisell-floor-map-layout.edit-panel.btn-cancel': '取消',
168
+ 'pisell-floor-map-layout.edit-panel.btn-ok-delete': '删除',
169
+ 'pisell-floor-map-layout.toolbar.category-fallback': '图元',
170
+ 'pisell-floor-map-layout.toolbar.palette-card-title': '点击后画布落点,或拖拽到画布生成「{name}」',
171
+ 'pisell-floor-map-layout.toolbar.data-binding-optional': '数据绑定(可选)',
172
+ 'pisell-floor-map-layout.toolbar.hint-after-select-ds': '选择数据源后可选绑定数据行,或直接落点占位。',
173
+ 'pisell-floor-map-layout.toolbar.hint-no-unplaced-rows': '当前数据源无未绑定记录,或列表为空;可直接在画布落点占位。',
174
+ 'pisell-floor-map-layout.toolbar.ph-select-records': '选择要展示的记录(可选,可多选)',
175
+ 'pisell-floor-map-layout.toolbar.hint-multi-drop': '可选多条,在画布点击一次将按阶梯偏移落多条;留空则先占位,稍后在侧栏绑定。',
176
+ 'pisell-floor-map-layout.toolbar.no-data-sources': '无可用数据源',
177
+ 'pisell-floor-map-layout.toolbar.cancel-place': '取消新建',
178
+ 'pisell-floor-map-layout.toolbar.layout-dirty-hint': '布局已修改,请点击「保存」持久化。',
179
+ 'pisell-floor-map-layout.toolbar.save': '保存',
180
+ 'pisell-floor-map-layout.toolbar.saving': '保存中…',
181
+ 'pisell-floor-map-layout.view-controls.zoom-out-aria': '缩小',
182
+ 'pisell-floor-map-layout.view-controls.zoom-in-aria': '放大',
183
+ 'pisell-floor-map-layout.view-controls.reset-aria': '复位',
184
+ 'pisell-floor-map-layout.view-controls.fit-bounds-aria': '区域定位',
185
+ 'pisell-floor-map-layout.view-controls.grid-hide-aria': '隐藏网格',
186
+ 'pisell-floor-map-layout.view-controls.grid-show-aria': '显示网格',
187
+ 'pisell-floor-map-layout.view-controls.fullscreen-aria': '全屏',
188
+ 'pisell-floor-map-layout.view-controls.fullscreen-exit-aria': '退出全屏',
189
+ 'pisell-floor-map-layout.image-element.default-name': '图片图元',
190
+ 'pisell-floor-map-layout.placement.fallback-image-name': '底图',
191
+ 'pisell-floor-map-layout.image-element.hint-no-url': '在侧栏填写图片地址;可调层级置于桌位下方作底图',
192
+ 'pisell-floor-map-layout.image-element.hint-load-fail': '图片加载失败,请检查地址',
193
+ 'pisell-floor-map-layout.data-form.empty': '无额外字段可编辑',
194
+ 'pisell-floor-map-layout.data-form.save-record': '保存记录',
195
+ 'pisell-floor-map-layout.binding-error.required-row': '该图元须绑定数据源行',
196
+ 'pisell-floor-map-layout.binding-error.ds-not-allowed': '数据源「{key}」不在该图元允许列表内',
197
+ 'pisell-floor-map-layout.binding-error.missing-field': '数据行缺少必填字段:{field}',
198
+ 'pisell-floor-map-layout.card-placeholder.hint-select-row': '已选择数据源,请在侧栏选择数据行',
199
+ 'pisell-floor-map-layout.card-placeholder.hint-bind-datasource': '未绑定数据行:请在侧栏选择数据源与记录',
200
+ 'pisell-floor-map-layout.card-placeholder.hint-new-slot': '新{kind}占位,可在侧栏绑定具体记录',
201
+ 'pisell-floor-map-layout.card-placeholder.hint-row-not-found': '未找到对应记录:请检查绑定或数据列表',
202
+ 'pisell-floor-map-layout.figma-card.kind-round-table': '圆桌',
203
+ 'pisell-floor-map-layout.figma-card.kind-square-table': '餐桌',
204
+ 'pisell-floor-map-layout.figma-card.default-table': '餐桌',
205
+ 'pisell-floor-map-layout.figma-card.capacity-seats': '可坐 {n} 人',
206
+ 'pisell-floor-map-layout.figma-card.guests-count': '{n} 人'
207
+ },
208
+ 'zh-HK': {
209
+ 'pisell-floor-map-layout.loading': '載入中…',
210
+ 'pisell-floor-map-layout.read-canvas-tabs.aria': '切換平面圖畫布',
211
+ 'pisell-floor-map-layout.edit-top-bar.aria': '平面圖編輯頂欄',
212
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-enter-aria': '全螢幕',
213
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-enter-title': '全螢幕(頂欄含儲存與區域定位等)',
214
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-exit-aria': '退出全螢幕',
215
+ 'pisell-floor-map-layout.edit-top-bar.fullscreen-exit-title': '退出全螢幕',
216
+ 'pisell-floor-map-layout.edit-top-bar.unsaved': '未儲存',
217
+ 'pisell-floor-map-layout.edit-top-bar.save': '儲存',
218
+ 'pisell-floor-map-layout.edit-top-bar.saving': '儲存中…',
219
+ 'pisell-floor-map-layout.canvas-tabs.empty': '暫無畫布',
220
+ 'pisell-floor-map-layout.canvas-tabs.add': '+ 添加樓層',
221
+ 'pisell-floor-map-layout.canvas-tabs.add-title': '添加樓層',
222
+ 'pisell-floor-map-layout.canvas-tabs.hint': '請點擊右側「添加樓層」建立畫布',
223
+ 'pisell-floor-map-layout.canvas-tabs.rename-aria': '重新命名',
224
+ 'pisell-floor-map-layout.canvas-tabs.remove-aria': '刪除',
225
+ 'pisell-floor-map-layout.canvas-tabs.rename-title': '雙擊重新命名;觸控請點標籤右側鉛筆圖標',
226
+ 'pisell-floor-map-layout.canvas-tabs.rename-button-aria': '重新命名畫布',
227
+ 'pisell-floor-map-layout.canvas-tabs.rename-button-title': '重新命名',
228
+ 'pisell-floor-map-layout.canvas-tabs.default-new-canvas-name': '新樓層',
229
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-title': '重新命名畫布',
230
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-ok': '確定',
231
+ 'pisell-floor-map-layout.canvas-tabs.rename-modal-cancel': '取消',
232
+ 'pisell-floor-map-layout.edit-panel.element-props': '圖元屬性',
233
+ 'pisell-floor-map-layout.edit-panel.close-aria': '關閉',
234
+ 'pisell-floor-map-layout.edit-panel.hint-apply': '位置、尺寸等已修改,請點擊「套用」同步到畫布。',
235
+ 'pisell-floor-map-layout.edit-panel.hint-save': '佈局草稿未持久化,請點擊「完成編輯」儲存。',
236
+ 'pisell-floor-map-layout.edit-panel.section-layout': '位置 · 層級 · 尺寸',
237
+ 'pisell-floor-map-layout.edit-panel.lock-on': '已鎖定:畫布不可拖曳/縮放;點擊解鎖',
238
+ 'pisell-floor-map-layout.edit-panel.lock-off': '鎖定後畫布不可拖曳與改尺寸',
239
+ 'pisell-floor-map-layout.edit-panel.label-x': 'X',
240
+ 'pisell-floor-map-layout.edit-panel.label-y': 'Y',
241
+ 'pisell-floor-map-layout.edit-panel.label-z': '層級',
242
+ 'pisell-floor-map-layout.edit-panel.label-width': '寬度',
243
+ 'pisell-floor-map-layout.edit-panel.label-height': '高度',
244
+ 'pisell-floor-map-layout.edit-panel.label-name': '名稱',
245
+ 'pisell-floor-map-layout.edit-panel.label-name-stage': '顯示名稱(畫布上)',
246
+ 'pisell-floor-map-layout.edit-panel.ph-name-stage': '如:舞台、DJ 台、舞池',
247
+ 'pisell-floor-map-layout.edit-panel.ph-name': '圖元名稱',
248
+ 'pisell-floor-map-layout.edit-panel.label-image-url': '圖片地址(URL)',
249
+ 'pisell-floor-map-layout.edit-panel.extra-image-url': '可填網絡圖片地址;將層級調低可鋪在桌位下方作底圖。',
250
+ 'pisell-floor-map-layout.edit-panel.ph-https': 'https://...',
251
+ 'pisell-floor-map-layout.edit-panel.label-canvas': '所屬畫布',
252
+ 'pisell-floor-map-layout.edit-panel.label-element-kind': '圖元類型',
253
+ 'pisell-floor-map-layout.edit-panel.hint-kind-binding-cleared': '新類型與原先綁定不相容,已清除數據綁定。',
254
+ 'pisell-floor-map-layout.edit-panel.apply': '套用',
255
+ 'pisell-floor-map-layout.edit-panel.data-binding': '數據綁定',
256
+ 'pisell-floor-map-layout.edit-panel.data-binding-note': '修改數據源或綁定行會立即寫入佈局草稿;持久化請點擊頂部「儲存」。',
257
+ 'pisell-floor-map-layout.edit-panel.label-data-source': '數據源',
258
+ 'pisell-floor-map-layout.edit-panel.ph-data-source': '選擇數據源',
259
+ 'pisell-floor-map-layout.edit-panel.label-pick-row': '選擇數據行',
260
+ 'pisell-floor-map-layout.edit-panel.ph-pick-row': '綁定數據表中的一行',
261
+ 'pisell-floor-map-layout.edit-panel.ph-no-rows': '當前數據源暫無可用行',
262
+ 'pisell-floor-map-layout.edit-panel.hint-unbound': '未綁定行時可先留空或清除;綁定後可編輯「數據源記錄」欄位。',
263
+ 'pisell-floor-map-layout.edit-panel.record-title': '數據源記錄',
264
+ 'pisell-floor-map-layout.edit-panel.pop-title': '確定刪除該圖元?',
265
+ 'pisell-floor-map-layout.edit-panel.pop-desc': '將從當前平面圖草稿中移除;刪除後請點擊頂部「儲存」以持久化佈局。',
266
+ 'pisell-floor-map-layout.edit-panel.btn-delete': '刪除',
267
+ 'pisell-floor-map-layout.edit-panel.btn-cancel': '取消',
268
+ 'pisell-floor-map-layout.edit-panel.btn-ok-delete': '刪除',
269
+ 'pisell-floor-map-layout.toolbar.category-fallback': '圖元',
270
+ 'pisell-floor-map-layout.toolbar.palette-card-title': '點擊後畫布落點,或拖曳到畫布生成「{name}」',
271
+ 'pisell-floor-map-layout.toolbar.data-binding-optional': '數據綁定(可選)',
272
+ 'pisell-floor-map-layout.toolbar.hint-after-select-ds': '選擇數據源後可選綁定數據列,或直接落點占位。',
273
+ 'pisell-floor-map-layout.toolbar.hint-no-unplaced-rows': '當前數據源無未綁定記錄,或清單為空;可直接在畫布落點占位。',
274
+ 'pisell-floor-map-layout.toolbar.ph-select-records': '選擇要展示的記錄(可選,可多選)',
275
+ 'pisell-floor-map-layout.toolbar.hint-multi-drop': '可選多條,在畫布點擊一次將按階梯偏移落多條;留空則先占位,稍後在側欄綁定。',
276
+ 'pisell-floor-map-layout.toolbar.no-data-sources': '無可用數據源',
277
+ 'pisell-floor-map-layout.toolbar.cancel-place': '取消新建',
278
+ 'pisell-floor-map-layout.toolbar.layout-dirty-hint': '佈局已修改,請點擊「儲存」持久化。',
279
+ 'pisell-floor-map-layout.toolbar.save': '儲存',
280
+ 'pisell-floor-map-layout.toolbar.saving': '儲存中…',
281
+ 'pisell-floor-map-layout.view-controls.zoom-out-aria': '縮小',
282
+ 'pisell-floor-map-layout.view-controls.zoom-in-aria': '放大',
283
+ 'pisell-floor-map-layout.view-controls.reset-aria': '復位',
284
+ 'pisell-floor-map-layout.view-controls.fit-bounds-aria': '區域定位',
285
+ 'pisell-floor-map-layout.view-controls.grid-hide-aria': '隱藏網格',
286
+ 'pisell-floor-map-layout.view-controls.grid-show-aria': '顯示網格',
287
+ 'pisell-floor-map-layout.view-controls.fullscreen-aria': '全螢幕',
288
+ 'pisell-floor-map-layout.view-controls.fullscreen-exit-aria': '退出全螢幕',
289
+ 'pisell-floor-map-layout.image-element.default-name': '圖片圖元',
290
+ 'pisell-floor-map-layout.placement.fallback-image-name': '底圖',
291
+ 'pisell-floor-map-layout.image-element.hint-no-url': '在側欄填寫圖片地址;可調層級置於桌位下方作底圖',
292
+ 'pisell-floor-map-layout.image-element.hint-load-fail': '圖片載入失敗,請檢查地址',
293
+ 'pisell-floor-map-layout.data-form.empty': '無額外欄位可編輯',
294
+ 'pisell-floor-map-layout.data-form.save-record': '儲存記錄',
295
+ 'pisell-floor-map-layout.binding-error.required-row': '該圖元須綁定數據源列',
296
+ 'pisell-floor-map-layout.binding-error.ds-not-allowed': '數據源「{key}」不在該圖元允許列表內',
297
+ 'pisell-floor-map-layout.binding-error.missing-field': '數據列缺少必填欄位:{field}',
298
+ 'pisell-floor-map-layout.card-placeholder.hint-select-row': '已選擇數據源,請在側欄選擇數據列',
299
+ 'pisell-floor-map-layout.card-placeholder.hint-bind-datasource': '未綁定數據列:請在側欄選擇數據源與記錄',
300
+ 'pisell-floor-map-layout.card-placeholder.hint-new-slot': '新{kind}占位,可在側欄綁定具體記錄',
301
+ 'pisell-floor-map-layout.card-placeholder.hint-row-not-found': '找不到對應記錄:請檢查綁定或數據清單',
302
+ 'pisell-floor-map-layout.figma-card.kind-round-table': '圓桌',
303
+ 'pisell-floor-map-layout.figma-card.kind-square-table': '餐桌',
304
+ 'pisell-floor-map-layout.figma-card.default-table': '餐桌',
305
+ 'pisell-floor-map-layout.figma-card.capacity-seats': '可坐 {n} 人',
306
+ 'pisell-floor-map-layout.figma-card.guests-count': '{n} 人'
307
+ },
308
+ ja: floorMapJa,
309
+ pt: floorMapPt
310
+ };