@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.
- package/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/index.js +1 -1
- package/build/lowcode/meta.js +7 -7
- package/build/lowcode/preview.js +9 -9
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +32 -32
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +25 -25
- package/es/components/PisellCards/index.d.ts +1 -0
- package/es/components/PisellFields/index.d.ts +1 -0
- package/es/components/PisellLayouts/index.d.ts +11 -5
- package/es/components/PisellLayouts/index.js +8 -4
- package/es/components/PisellMetrics/index.d.ts +1 -0
- package/es/components/dataSourceComponents/dataSourceForm/utils.d.ts +1 -1
- package/es/components/dataSourceComponents/dataSourceShow/dataSourceQRCode/index.d.ts +1 -0
- package/es/components/dataSourceComponents/dataSourceSubForm/index.d.ts +13 -0
- package/es/components/dataSourceComponents/dataSourceSubForm/index.js +274 -0
- package/es/components/dataSourceComponents/dataSourceSubForm/index.less +19 -0
- package/es/components/dataSourceComponents/dataSourceSubForm/schema-full-example.json +544 -0
- package/es/components/dataSourceComponents/dataSourceSubForm/schema-simple-example.json +174 -0
- package/es/components/dataSourceComponents/dataSourceSubForm/types.d.ts +117 -0
- package/es/components/dataSourceComponents/dataSourceSubForm/types.js +1 -0
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useDataSourceKey.d.ts +1 -0
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +2 -2
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +1 -0
- package/es/components/dataSourceComponents/fields/RecordListWrapper/ReadPretty.d.ts +9 -0
- package/es/components/dataSourceComponents/fields/RecordListWrapper/ReadPretty.js +61 -0
- package/es/components/dataSourceComponents/fields/RecordListWrapper/WithMode.d.ts +4 -0
- package/es/components/dataSourceComponents/fields/RecordListWrapper/WithMode.js +176 -0
- package/es/components/dataSourceComponents/fields/RecordListWrapper/index.d.ts +12 -0
- package/es/components/dataSourceComponents/fields/RecordListWrapper/index.js +11 -0
- package/es/components/dataSourceComponents/fields/RecordListWrapper/type.d.ts +87 -0
- package/es/components/dataSourceComponents/fields/RecordListWrapper/type.js +1 -0
- package/es/components/dataSourceComponents/fields/Select/index.d.ts +1 -1
- package/es/components/dataSourceComponents/fields/Tabs/ReadPretty.d.ts +9 -0
- package/es/components/dataSourceComponents/fields/Tabs/ReadPretty.js +16 -0
- package/es/components/dataSourceComponents/fields/Tabs/Tabs.d.ts +23 -0
- package/es/components/dataSourceComponents/fields/Tabs/Tabs.js +93 -0
- package/es/components/dataSourceComponents/fields/Tabs/Tabs.less +64 -0
- package/es/components/dataSourceComponents/fields/Tabs/WithMode.d.ts +6 -0
- package/es/components/dataSourceComponents/fields/Tabs/WithMode.js +9 -0
- package/es/components/dataSourceComponents/fields/Tabs/index.d.ts +13 -0
- package/es/components/dataSourceComponents/fields/Tabs/index.js +18 -0
- package/es/components/dataSourceComponents/fields/Tabs/type.d.ts +38 -0
- package/es/components/dataSourceComponents/fields/Tabs/type.js +1 -0
- package/es/components/dataSourceComponents/fields/Upload/utils.d.ts +1 -1
- package/es/components/dataSourceComponents/fields/index.d.ts +50 -11
- package/es/components/dataSourceComponents/fields/index.js +5 -1
- package/es/components/dataSourceComponents/fields/utils.js +3 -0
- package/es/components/date-picker/index.d.ts +1 -0
- package/es/components/pisellDataSourceContainer/hooks/useDataSourceKey.d.ts +1 -0
- package/es/components/pisellFilter/type.d.ts +4 -2
- package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.d.ts +12 -0
- package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.js +611 -0
- package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.less +92 -0
- package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.stories.d.ts +55 -0
- package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.stories.js +1667 -0
- package/es/components/pisellFloorMapLayout/components/CanvasTabs.d.ts +27 -0
- package/es/components/pisellFloorMapLayout/components/CanvasTabs.js +203 -0
- package/es/components/pisellFloorMapLayout/components/CanvasTabs.less +189 -0
- package/es/components/pisellFloorMapLayout/components/EditableItemLayer.d.ts +37 -0
- package/es/components/pisellFloorMapLayout/components/EditableItemLayer.js +341 -0
- package/es/components/pisellFloorMapLayout/components/EditableItemLayer.less +89 -0
- package/es/components/pisellFloorMapLayout/components/FigmaTableCard.d.ts +43 -0
- package/es/components/pisellFloorMapLayout/components/FigmaTableCard.js +436 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapDataForm.d.ts +21 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapDataForm.js +133 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapDataForm.less +7 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapEditPanel.d.ts +14 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapEditPanel.js +543 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapEditPanel.less +162 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapEditTopBar.d.ts +36 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapEditTopBar.js +135 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapEditTopBar.less +150 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapImageElement.d.ts +9 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapImageElement.js +71 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapToolbar.d.ts +35 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapToolbar.js +369 -0
- package/es/components/pisellFloorMapLayout/components/FloorMapToolbar.less +239 -0
- package/es/components/pisellFloorMapLayout/components/ItemLayer.js +195 -0
- package/es/components/pisellFloorMapLayout/components/ItemLayer.less +19 -0
- package/es/components/pisellFloorMapLayout/components/MapLayer.d.ts +27 -0
- package/es/components/pisellFloorMapLayout/components/MapLayer.js +85 -0
- package/es/components/pisellFloorMapLayout/components/MapLayer.less +7 -0
- package/es/components/pisellFloorMapLayout/components/ViewControls.d.ts +33 -0
- package/es/components/pisellFloorMapLayout/components/ViewControls.js +90 -0
- package/es/components/pisellFloorMapLayout/components/ViewControls.less +101 -0
- package/es/components/pisellFloorMapLayout/components/ViewControlsWithZoom.d.ts +16 -0
- package/es/components/pisellFloorMapLayout/components/ViewControlsWithZoom.js +29 -0
- package/es/components/pisellFloorMapLayout/components/index.d.ts +21 -0
- package/es/components/pisellFloorMapLayout/components/index.js +13 -0
- package/es/components/pisellFloorMapLayout/context/FloorMapLayoutContext.d.ts +16 -0
- package/es/components/pisellFloorMapLayout/context/FloorMapLayoutContext.js +21 -0
- package/es/components/pisellFloorMapLayout/context/mergeFloorMapLayoutContext.d.ts +5 -0
- package/es/components/pisellFloorMapLayout/context/mergeFloorMapLayoutContext.js +28 -0
- package/es/components/pisellFloorMapLayout/hooks/useFloorMapEditState.d.ts +63 -0
- package/es/components/pisellFloorMapLayout/hooks/useFloorMapEditState.js +562 -0
- package/es/components/pisellFloorMapLayout/hooks/useFloorMapPaletteTouchDrag.d.ts +21 -0
- package/es/components/pisellFloorMapLayout/hooks/useFloorMapPaletteTouchDrag.js +122 -0
- package/es/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.d.ts +67 -0
- package/es/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.js +399 -0
- package/es/components/pisellFloorMapLayout/index.d.ts +15 -0
- package/es/components/pisellFloorMapLayout/index.js +12 -0
- package/es/components/pisellFloorMapLayout/locales-ja.d.ts +104 -0
- package/es/components/pisellFloorMapLayout/locales-ja.js +103 -0
- package/es/components/pisellFloorMapLayout/locales-pt.d.ts +104 -0
- package/es/components/pisellFloorMapLayout/locales-pt.js +103 -0
- package/es/components/pisellFloorMapLayout/locales.d.ts +506 -0
- package/es/components/pisellFloorMapLayout/locales.js +310 -0
- package/es/components/pisellFloorMapLayout/types.d.ts +586 -0
- package/es/components/pisellFloorMapLayout/types.js +152 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapCanvasDisplay.d.ts +20 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapCanvasDisplay.js +129 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapConfigMerge.d.ts +8 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapConfigMerge.js +87 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapDataRecordLabel.d.ts +8 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapDataRecordLabel.js +15 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapDropUtils.d.ts +27 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapDropUtils.js +56 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapElementKindUtils.d.ts +22 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapElementKindUtils.js +156 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapFallbackRender.d.ts +11 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapFallbackRender.js +89 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapStageDefaults.d.ts +8 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapStageDefaults.js +8 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapViewConfigDiff.d.ts +8 -0
- package/es/components/pisellFloorMapLayout/utils/floorMapViewConfigDiff.js +108 -0
- package/es/components/pisellFloorMapLayout/utils/layoutMeasurements.d.ts +30 -0
- package/es/components/pisellFloorMapLayout/utils/layoutMeasurements.js +125 -0
- package/es/components/pisellFloorMapLayout/utils/mergeCanvasesForTabs.d.ts +7 -0
- package/es/components/pisellFloorMapLayout/utils/mergeCanvasesForTabs.js +29 -0
- package/es/components/pisellFloorMapLayout/utils/snap.d.ts +10 -0
- package/es/components/pisellFloorMapLayout/utils/snap.js +21 -0
- package/es/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.d.ts +6 -0
- package/es/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.js +175 -0
- package/es/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.less +129 -0
- package/es/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.stories.js +237 -0
- package/es/components/pisellHierarchicalSummaryList/components/Row.d.ts +35 -0
- package/es/components/pisellHierarchicalSummaryList/components/Row.js +313 -0
- package/es/components/pisellHierarchicalSummaryList/components/index.js +1 -0
- package/es/components/pisellHierarchicalSummaryList/hooks/index.js +1 -0
- package/es/components/pisellHierarchicalSummaryList/hooks/useExpandedKeys.js +34 -0
- package/es/components/pisellHierarchicalSummaryList/index.js +5 -0
- package/es/components/pisellHierarchicalSummaryList/types.js +1 -0
- package/es/components/pisellModal/components/index.d.ts +1 -0
- package/es/components/pisellRecordBoard/PisellRecordBoard.d.ts +2 -1
- package/es/components/pisellRecordBoard/PisellRecordBoard.js +98 -18
- package/es/components/pisellRecordBoard/PisellRecordBoard.stories.d.ts +4 -0
- package/es/components/pisellRecordBoard/PisellRecordBoard.stories.js +1276 -344
- package/es/components/pisellRecordBoard/index.d.ts +8 -2
- package/es/components/pisellRecordBoard/index.js +4 -2
- package/es/components/pisellRecordBoard/shellFrame/ColumnSetting/index.js +1 -3
- package/es/components/pisellRecordBoard/shellFrame/FloorMap.d.ts +14 -0
- package/es/components/pisellRecordBoard/shellFrame/FloorMap.js +15 -0
- package/es/components/pisellRecordBoard/shellFrame/ShellBodyMetaContext.d.ts +16 -0
- package/es/components/pisellRecordBoard/shellFrame/ShellBodyMetaContext.js +11 -0
- package/es/components/pisellRecordBoard/shellFrame/ToolBar/ToolBarFilter.less +61 -0
- package/es/components/pisellRecordBoard/shellFrame/ToolBar/index.d.ts +1 -0
- package/es/components/pisellRecordBoard/shellFrame/ToolBar/index.js +69 -11
- package/es/components/pisellRecordBoard/shellFrame/ToolBar/recordBoardToolbar.less +23 -0
- package/es/components/pisellRecordBoard/shellFrame/index.d.ts +6 -10
- package/es/components/pisellRecordBoard/shellFrame/index.js +111 -20
- package/es/components/pisellRecordBoard/shellFrame/shellFrameFloorMap.less +25 -0
- package/es/components/pisellRecordBoard/types.d.ts +68 -2
- package/es/components/pisellRecordBoard/utils/partitionShellFrameChildren.d.ts +15 -0
- package/es/components/pisellRecordBoard/utils/partitionShellFrameChildren.js +57 -0
- package/es/components/pisellRecordBoard/utils/recordBoardColumns.js +3 -2
- package/es/components/pisellReservationSchedule/PisellReservationSchedule.d.ts +10 -0
- package/es/components/pisellReservationSchedule/PisellReservationSchedule.js +156 -0
- package/es/components/pisellReservationSchedule/PisellReservationSchedule.less +88 -0
- package/es/components/pisellReservationSchedule/PisellReservationSchedule.stories.d.ts +12 -0
- package/es/components/pisellReservationSchedule/PisellReservationSchedule.stories.js +105 -0
- package/es/components/pisellReservationSchedule/index.d.ts +2 -0
- package/es/components/pisellReservationSchedule/index.js +1 -0
- package/es/components/pisellReservationSchedule/locales.d.ts +25 -0
- package/es/components/pisellReservationSchedule/locales.js +24 -0
- package/es/components/pisellReservationSchedule/types.d.ts +42 -0
- package/es/components/pisellReservationSchedule/types.js +1 -0
- package/es/components/pisellReservationScheduleBand/PisellReservationScheduleBand.d.ts +10 -0
- package/es/components/pisellReservationScheduleBand/PisellReservationScheduleBand.js +94 -0
- package/es/components/pisellReservationScheduleBand/PisellReservationScheduleBand.less +66 -0
- package/es/components/pisellReservationScheduleBand/PisellReservationScheduleBand.stories.d.ts +16 -0
- package/es/components/pisellReservationScheduleBand/PisellReservationScheduleBand.stories.js +197 -0
- package/es/components/pisellReservationScheduleBand/index.d.ts +2 -0
- package/es/components/pisellReservationScheduleBand/index.js +1 -0
- package/es/components/pisellReservationScheduleBand/types.d.ts +49 -0
- package/es/components/pisellReservationScheduleBand/types.js +1 -0
- package/es/components/pisellShellFrame/PisellShellFrame.less +11 -0
- package/es/components/pisellTimeNavigator/PisellTimeNavigator.d.ts +10 -0
- package/es/components/pisellTimeNavigator/PisellTimeNavigator.js +787 -0
- package/es/components/pisellTimeNavigator/PisellTimeNavigator.less +461 -0
- package/es/components/pisellTimeNavigator/PisellTimeNavigator.stories.d.ts +79 -0
- package/es/components/pisellTimeNavigator/PisellTimeNavigator.stories.js +290 -0
- package/es/components/pisellTimeNavigator/components/BackgroundLayer.js +30 -0
- package/es/components/pisellTimeNavigator/components/CursorLayer.d.ts +25 -0
- package/es/components/pisellTimeNavigator/components/CursorLayer.js +77 -0
- package/es/components/pisellTimeNavigator/components/GestureLayer.d.ts +33 -0
- package/es/components/pisellTimeNavigator/components/GestureLayer.js +91 -0
- package/es/components/pisellTimeNavigator/components/NowButton.d.ts +14 -0
- package/es/components/pisellTimeNavigator/components/NowButton.js +38 -0
- package/es/components/pisellTimeNavigator/components/ScaleLayer.d.ts +22 -0
- package/es/components/pisellTimeNavigator/components/ScaleLayer.js +73 -0
- package/es/components/pisellTimeNavigator/components/index.d.ts +5 -0
- package/es/components/pisellTimeNavigator/components/index.js +5 -0
- package/es/components/pisellTimeNavigator/hooks/index.d.ts +5 -0
- package/es/components/pisellTimeNavigator/hooks/index.js +3 -0
- package/es/components/pisellTimeNavigator/hooks/useDragInertia.js +109 -0
- package/es/components/pisellTimeNavigator/hooks/useRealtime.js +16 -0
- package/es/components/pisellTimeNavigator/hooks/useTimeAxis.js +76 -0
- package/es/components/pisellTimeNavigator/index.d.ts +5 -0
- package/es/components/pisellTimeNavigator/index.js +4 -0
- package/es/components/pisellTimeNavigator/locales.d.ts +22 -0
- package/es/components/pisellTimeNavigator/locales.js +21 -0
- package/es/components/pisellTimeNavigator/types.js +1 -0
- package/es/components/pisellTimeNavigator/utils/index.js +116 -0
- package/es/components/pisellWalletPassCard/index.js +1 -1
- package/es/components/productCard/cartSkuCard/components/packages/utils.d.ts +1 -1
- package/es/components/productCard/components/Packages/utils.d.ts +1 -1
- package/es/components/table/Table/fields/date/index.d.ts +1 -0
- package/es/components/table/Table/fields/index.d.ts +3 -2
- package/es/components/table/Table/fields/link/index.d.ts +1 -0
- package/es/components/table/Table/fields/number/index.d.ts +1 -0
- package/es/components/table/Table/fields/numberRange/index.d.ts +1 -0
- package/es/components/table/Table/fields/oldRangePicker/index.d.ts +1 -0
- package/es/components/table/Table/fields/rangePicker/index.d.ts +1 -0
- package/es/components/table/Table/fields/search/index.d.ts +1 -0
- package/es/components/table/Table/fields/select/index.d.ts +1 -0
- package/es/components/table/Table/fields/text/index.d.ts +1 -0
- package/es/components/table/Table/fields/treeSelect/index.d.ts +1 -0
- package/es/components/table/Table/utils.d.ts +1 -1
- package/es/components/table/index.js +1 -1
- package/es/hooks/useResponsive.d.ts +1 -1
- package/es/index.d.ts +49 -33
- package/es/index.js +47 -27
- package/es/locales/en-US.d.ts +3 -0
- package/es/locales/en-US.js +3 -0
- package/es/locales/ja.d.ts +8 -0
- package/es/locales/ja.js +25 -7
- package/es/locales/pt.d.ts +8 -0
- package/es/locales/pt.js +21 -3
- package/es/locales/zh-CN.d.ts +3 -0
- package/es/locales/zh-CN.js +3 -0
- package/es/locales/zh-TW.d.ts +3 -0
- package/es/locales/zh-TW.js +3 -0
- package/lib/components/PisellCards/index.d.ts +1 -0
- package/lib/components/PisellFields/index.d.ts +1 -0
- package/lib/components/PisellLayouts/index.d.ts +11 -5
- package/lib/components/PisellLayouts/index.js +15 -1
- package/lib/components/PisellMetrics/index.d.ts +1 -0
- package/lib/components/dataSourceComponents/dataSourceForm/utils.d.ts +1 -1
- package/lib/components/dataSourceComponents/dataSourceShow/dataSourceQRCode/index.d.ts +1 -0
- package/lib/components/dataSourceComponents/dataSourceSubForm/index.d.ts +13 -0
- package/lib/components/dataSourceComponents/dataSourceSubForm/index.js +229 -0
- package/lib/components/dataSourceComponents/dataSourceSubForm/index.less +19 -0
- package/lib/components/dataSourceComponents/dataSourceSubForm/schema-full-example.json +544 -0
- package/lib/components/dataSourceComponents/dataSourceSubForm/schema-simple-example.json +174 -0
- package/lib/components/dataSourceComponents/dataSourceSubForm/types.d.ts +117 -0
- package/lib/components/dataSourceComponents/dataSourceSubForm/types.js +17 -0
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDataSourceKey.d.ts +1 -0
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +2 -2
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +1 -0
- package/lib/components/dataSourceComponents/fields/RecordListWrapper/ReadPretty.d.ts +9 -0
- package/lib/components/dataSourceComponents/fields/RecordListWrapper/ReadPretty.js +64 -0
- package/lib/components/dataSourceComponents/fields/RecordListWrapper/WithMode.d.ts +4 -0
- package/lib/components/dataSourceComponents/fields/RecordListWrapper/WithMode.js +157 -0
- package/lib/components/dataSourceComponents/fields/RecordListWrapper/index.d.ts +12 -0
- package/lib/components/dataSourceComponents/fields/RecordListWrapper/index.js +40 -0
- package/lib/components/dataSourceComponents/fields/RecordListWrapper/type.d.ts +87 -0
- package/lib/components/dataSourceComponents/fields/RecordListWrapper/type.js +17 -0
- package/lib/components/dataSourceComponents/fields/Select/index.d.ts +1 -1
- package/lib/components/dataSourceComponents/fields/Tabs/ReadPretty.d.ts +9 -0
- package/lib/components/dataSourceComponents/fields/Tabs/ReadPretty.js +45 -0
- package/lib/components/dataSourceComponents/fields/Tabs/Tabs.d.ts +23 -0
- package/lib/components/dataSourceComponents/fields/Tabs/Tabs.js +95 -0
- package/lib/components/dataSourceComponents/fields/Tabs/Tabs.less +64 -0
- package/lib/components/dataSourceComponents/fields/Tabs/WithMode.d.ts +6 -0
- package/lib/components/dataSourceComponents/fields/Tabs/WithMode.js +39 -0
- package/lib/components/dataSourceComponents/fields/Tabs/index.d.ts +13 -0
- package/lib/components/dataSourceComponents/fields/Tabs/index.js +40 -0
- package/lib/components/dataSourceComponents/fields/Tabs/type.d.ts +38 -0
- package/lib/components/dataSourceComponents/fields/Tabs/type.js +17 -0
- package/lib/components/dataSourceComponents/fields/Upload/utils.d.ts +1 -1
- package/lib/components/dataSourceComponents/fields/index.d.ts +50 -11
- package/lib/components/dataSourceComponents/fields/index.js +5 -1
- package/lib/components/dataSourceComponents/fields/utils.js +3 -0
- package/lib/components/date-picker/index.d.ts +1 -0
- package/lib/components/pisellDataSourceContainer/hooks/useDataSourceKey.d.ts +1 -0
- package/lib/components/pisellFilter/type.d.ts +4 -2
- package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.d.ts +12 -0
- package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.js +709 -0
- package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.less +92 -0
- package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.stories.d.ts +55 -0
- package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.stories.js +1353 -0
- package/lib/components/pisellFloorMapLayout/components/CanvasTabs.d.ts +27 -0
- package/lib/components/pisellFloorMapLayout/components/CanvasTabs.js +237 -0
- package/lib/components/pisellFloorMapLayout/components/CanvasTabs.less +189 -0
- package/lib/components/pisellFloorMapLayout/components/EditableItemLayer.d.ts +37 -0
- package/lib/components/pisellFloorMapLayout/components/EditableItemLayer.js +358 -0
- package/lib/components/pisellFloorMapLayout/components/EditableItemLayer.less +89 -0
- package/lib/components/pisellFloorMapLayout/components/FigmaTableCard.d.ts +43 -0
- package/lib/components/pisellFloorMapLayout/components/FigmaTableCard.js +486 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapDataForm.d.ts +21 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapDataForm.js +119 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapDataForm.less +7 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapEditPanel.d.ts +14 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapEditPanel.js +556 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapEditPanel.less +162 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapEditTopBar.d.ts +36 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapEditTopBar.js +199 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapEditTopBar.less +150 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapImageElement.d.ts +9 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapImageElement.js +96 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapToolbar.d.ts +35 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapToolbar.js +348 -0
- package/lib/components/pisellFloorMapLayout/components/FloorMapToolbar.less +239 -0
- package/lib/components/pisellFloorMapLayout/components/ItemLayer.js +219 -0
- package/lib/components/pisellFloorMapLayout/components/ItemLayer.less +19 -0
- package/lib/components/pisellFloorMapLayout/components/MapLayer.d.ts +27 -0
- package/lib/components/pisellFloorMapLayout/components/MapLayer.js +110 -0
- package/lib/components/pisellFloorMapLayout/components/MapLayer.less +7 -0
- package/lib/components/pisellFloorMapLayout/components/ViewControls.d.ts +33 -0
- package/lib/components/pisellFloorMapLayout/components/ViewControls.js +127 -0
- package/lib/components/pisellFloorMapLayout/components/ViewControls.less +101 -0
- package/lib/components/pisellFloorMapLayout/components/ViewControlsWithZoom.d.ts +16 -0
- package/lib/components/pisellFloorMapLayout/components/ViewControlsWithZoom.js +65 -0
- package/lib/components/pisellFloorMapLayout/components/index.d.ts +21 -0
- package/lib/components/pisellFloorMapLayout/components/index.js +56 -0
- package/lib/components/pisellFloorMapLayout/context/FloorMapLayoutContext.d.ts +16 -0
- package/lib/components/pisellFloorMapLayout/context/FloorMapLayoutContext.js +54 -0
- package/lib/components/pisellFloorMapLayout/context/mergeFloorMapLayoutContext.d.ts +5 -0
- package/lib/components/pisellFloorMapLayout/context/mergeFloorMapLayoutContext.js +47 -0
- package/lib/components/pisellFloorMapLayout/hooks/useFloorMapEditState.d.ts +63 -0
- package/lib/components/pisellFloorMapLayout/hooks/useFloorMapEditState.js +546 -0
- package/lib/components/pisellFloorMapLayout/hooks/useFloorMapPaletteTouchDrag.d.ts +21 -0
- package/lib/components/pisellFloorMapLayout/hooks/useFloorMapPaletteTouchDrag.js +146 -0
- package/lib/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.d.ts +67 -0
- package/lib/components/pisellFloorMapLayout/hooks/useFloorMapTransformMetrics.js +382 -0
- package/lib/components/pisellFloorMapLayout/index.d.ts +15 -0
- package/lib/components/pisellFloorMapLayout/index.js +64 -0
- package/lib/components/pisellFloorMapLayout/locales-ja.d.ts +104 -0
- package/lib/components/pisellFloorMapLayout/locales-ja.js +124 -0
- package/lib/components/pisellFloorMapLayout/locales-pt.d.ts +104 -0
- package/lib/components/pisellFloorMapLayout/locales-pt.js +124 -0
- package/lib/components/pisellFloorMapLayout/locales.d.ts +506 -0
- package/lib/components/pisellFloorMapLayout/locales.js +340 -0
- package/lib/components/pisellFloorMapLayout/types.d.ts +586 -0
- package/lib/components/pisellFloorMapLayout/types.js +32 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapCanvasDisplay.d.ts +20 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapCanvasDisplay.js +126 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapConfigMerge.d.ts +8 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapConfigMerge.js +66 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapDataRecordLabel.d.ts +8 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapDataRecordLabel.js +38 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapDropUtils.d.ts +27 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapDropUtils.js +67 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapElementKindUtils.d.ts +22 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapElementKindUtils.js +142 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapFallbackRender.d.ts +11 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapFallbackRender.js +136 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapStageDefaults.d.ts +8 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapStageDefaults.js +33 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapViewConfigDiff.d.ts +8 -0
- package/lib/components/pisellFloorMapLayout/utils/floorMapViewConfigDiff.js +128 -0
- package/lib/components/pisellFloorMapLayout/utils/layoutMeasurements.d.ts +30 -0
- package/lib/components/pisellFloorMapLayout/utils/layoutMeasurements.js +96 -0
- package/lib/components/pisellFloorMapLayout/utils/mergeCanvasesForTabs.d.ts +7 -0
- package/lib/components/pisellFloorMapLayout/utils/mergeCanvasesForTabs.js +41 -0
- package/lib/components/pisellFloorMapLayout/utils/snap.d.ts +10 -0
- package/lib/components/pisellFloorMapLayout/utils/snap.js +43 -0
- package/lib/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.d.ts +6 -0
- package/lib/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.js +179 -0
- package/lib/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.less +129 -0
- package/lib/components/pisellHierarchicalSummaryList/PisellHierarchicalSummaryList.stories.js +185 -0
- package/lib/components/pisellHierarchicalSummaryList/components/Row.d.ts +35 -0
- package/lib/components/pisellHierarchicalSummaryList/components/Row.js +343 -0
- package/lib/components/pisellHierarchicalSummaryList/components/index.js +29 -0
- package/lib/components/pisellHierarchicalSummaryList/hooks/index.js +29 -0
- package/lib/components/pisellHierarchicalSummaryList/hooks/useExpandedKeys.js +49 -0
- package/lib/components/pisellHierarchicalSummaryList/index.js +31 -0
- package/lib/components/pisellHierarchicalSummaryList/types.js +17 -0
- package/lib/components/pisellModal/components/index.d.ts +1 -0
- package/lib/components/pisellRecordBoard/PisellRecordBoard.d.ts +2 -1
- package/lib/components/pisellRecordBoard/PisellRecordBoard.js +86 -8
- package/lib/components/pisellRecordBoard/PisellRecordBoard.stories.d.ts +4 -0
- package/lib/components/pisellRecordBoard/PisellRecordBoard.stories.js +915 -25
- package/lib/components/pisellRecordBoard/index.d.ts +8 -2
- package/lib/components/pisellRecordBoard/index.js +6 -2
- package/lib/components/pisellRecordBoard/shellFrame/ColumnSetting/index.js +8 -2
- package/lib/components/pisellRecordBoard/shellFrame/FloorMap.d.ts +14 -0
- package/lib/components/pisellRecordBoard/shellFrame/FloorMap.js +27 -0
- package/lib/components/pisellRecordBoard/shellFrame/ShellBodyMetaContext.d.ts +16 -0
- package/lib/components/pisellRecordBoard/shellFrame/ShellBodyMetaContext.js +45 -0
- package/lib/components/pisellRecordBoard/shellFrame/ToolBar/ToolBarFilter.less +61 -0
- package/lib/components/pisellRecordBoard/shellFrame/ToolBar/index.d.ts +1 -0
- package/lib/components/pisellRecordBoard/shellFrame/ToolBar/index.js +60 -8
- package/lib/components/pisellRecordBoard/shellFrame/ToolBar/recordBoardToolbar.less +23 -0
- package/lib/components/pisellRecordBoard/shellFrame/index.d.ts +6 -10
- package/lib/components/pisellRecordBoard/shellFrame/index.js +101 -9
- package/lib/components/pisellRecordBoard/shellFrame/shellFrameFloorMap.less +25 -0
- package/lib/components/pisellRecordBoard/types.d.ts +68 -2
- package/lib/components/pisellRecordBoard/utils/partitionShellFrameChildren.d.ts +15 -0
- package/lib/components/pisellRecordBoard/utils/partitionShellFrameChildren.js +88 -0
- package/lib/components/pisellRecordBoard/utils/recordBoardColumns.js +11 -1
- package/lib/components/pisellReservationSchedule/PisellReservationSchedule.d.ts +10 -0
- package/lib/components/pisellReservationSchedule/PisellReservationSchedule.js +200 -0
- package/lib/components/pisellReservationSchedule/PisellReservationSchedule.less +88 -0
- package/lib/components/pisellReservationSchedule/PisellReservationSchedule.stories.d.ts +12 -0
- package/lib/components/pisellReservationSchedule/PisellReservationSchedule.stories.js +116 -0
- package/lib/components/pisellReservationSchedule/index.d.ts +2 -0
- package/lib/components/pisellReservationSchedule/index.js +29 -0
- package/lib/components/pisellReservationSchedule/locales.d.ts +25 -0
- package/lib/components/pisellReservationSchedule/locales.js +47 -0
- package/lib/components/pisellReservationSchedule/types.d.ts +42 -0
- package/lib/components/pisellReservationSchedule/types.js +17 -0
- package/lib/components/pisellReservationScheduleBand/PisellReservationScheduleBand.d.ts +10 -0
- package/lib/components/pisellReservationScheduleBand/PisellReservationScheduleBand.js +128 -0
- package/lib/components/pisellReservationScheduleBand/PisellReservationScheduleBand.less +66 -0
- package/lib/components/pisellReservationScheduleBand/PisellReservationScheduleBand.stories.d.ts +16 -0
- package/lib/components/pisellReservationScheduleBand/PisellReservationScheduleBand.stories.js +181 -0
- package/lib/components/pisellReservationScheduleBand/index.d.ts +2 -0
- package/lib/components/pisellReservationScheduleBand/index.js +29 -0
- package/lib/components/pisellReservationScheduleBand/types.d.ts +49 -0
- package/lib/components/pisellReservationScheduleBand/types.js +17 -0
- package/lib/components/pisellShellFrame/PisellShellFrame.less +11 -0
- package/lib/components/pisellTimeNavigator/PisellTimeNavigator.d.ts +10 -0
- package/lib/components/pisellTimeNavigator/PisellTimeNavigator.js +901 -0
- package/lib/components/pisellTimeNavigator/PisellTimeNavigator.less +461 -0
- package/lib/components/pisellTimeNavigator/PisellTimeNavigator.stories.d.ts +79 -0
- package/lib/components/pisellTimeNavigator/PisellTimeNavigator.stories.js +273 -0
- package/lib/components/pisellTimeNavigator/components/BackgroundLayer.js +78 -0
- package/lib/components/pisellTimeNavigator/components/CursorLayer.d.ts +25 -0
- package/lib/components/pisellTimeNavigator/components/CursorLayer.js +111 -0
- package/lib/components/pisellTimeNavigator/components/GestureLayer.d.ts +33 -0
- package/lib/components/pisellTimeNavigator/components/GestureLayer.js +170 -0
- package/lib/components/pisellTimeNavigator/components/NowButton.d.ts +14 -0
- package/lib/components/pisellTimeNavigator/components/NowButton.js +81 -0
- package/lib/components/pisellTimeNavigator/components/ScaleLayer.d.ts +22 -0
- package/lib/components/pisellTimeNavigator/components/ScaleLayer.js +116 -0
- package/lib/components/pisellTimeNavigator/components/index.d.ts +5 -0
- package/lib/components/pisellTimeNavigator/components/index.js +41 -0
- package/lib/components/pisellTimeNavigator/hooks/index.d.ts +5 -0
- package/lib/components/pisellTimeNavigator/hooks/index.js +35 -0
- package/lib/components/pisellTimeNavigator/hooks/useDragInertia.js +136 -0
- package/lib/components/pisellTimeNavigator/hooks/useRealtime.js +49 -0
- package/lib/components/pisellTimeNavigator/hooks/useTimeAxis.js +87 -0
- package/lib/components/pisellTimeNavigator/index.d.ts +5 -0
- package/lib/components/pisellTimeNavigator/index.js +47 -0
- package/lib/components/pisellTimeNavigator/locales.d.ts +22 -0
- package/lib/components/pisellTimeNavigator/locales.js +41 -0
- package/lib/components/pisellTimeNavigator/types.js +17 -0
- package/lib/components/pisellTimeNavigator/utils/index.js +107 -0
- package/lib/components/pisellWalletPassCard/index.js +1 -1
- package/lib/components/productCard/cartSkuCard/components/packages/utils.d.ts +1 -1
- package/lib/components/productCard/components/Packages/utils.d.ts +1 -1
- package/lib/components/table/Table/fields/date/index.d.ts +1 -0
- package/lib/components/table/Table/fields/index.d.ts +3 -2
- package/lib/components/table/Table/fields/link/index.d.ts +1 -0
- package/lib/components/table/Table/fields/number/index.d.ts +1 -0
- package/lib/components/table/Table/fields/numberRange/index.d.ts +1 -0
- package/lib/components/table/Table/fields/oldRangePicker/index.d.ts +1 -0
- package/lib/components/table/Table/fields/rangePicker/index.d.ts +1 -0
- package/lib/components/table/Table/fields/search/index.d.ts +1 -0
- package/lib/components/table/Table/fields/select/index.d.ts +1 -0
- package/lib/components/table/Table/fields/text/index.d.ts +1 -0
- package/lib/components/table/Table/fields/treeSelect/index.d.ts +1 -0
- package/lib/components/table/Table/utils.d.ts +1 -1
- package/lib/components/table/index.js +2 -2
- package/lib/hooks/useResponsive.d.ts +1 -1
- package/lib/index.d.ts +49 -33
- package/lib/index.js +93 -27
- package/lib/locales/en-US.d.ts +3 -0
- package/lib/locales/en-US.js +3 -0
- package/lib/locales/ja.d.ts +8 -0
- package/lib/locales/ja.js +22 -1
- package/lib/locales/pt.d.ts +8 -0
- package/lib/locales/pt.js +22 -1
- package/lib/locales/zh-CN.d.ts +3 -0
- package/lib/locales/zh-CN.js +3 -0
- package/lib/locales/zh-TW.d.ts +3 -0
- package/lib/locales/zh-TW.js +3 -0
- package/lowcode/data-source-form/constants.ts +3 -0
- package/lowcode/data-source-form/utils.ts +31 -5
- package/lowcode/data-source-sub-form/meta.ts +259 -0
- package/lowcode/data-source-sub-form/snippets.ts +21 -0
- package/lowcode/floor-map-image-element/meta.ts +113 -0
- package/lowcode/floor-map-layout-provider/meta.ts +65 -0
- package/lowcode/form-item-record-list-wrapper/meta.ts +180 -0
- package/lowcode/form-item-record-list-wrapper/snippets.ts +18 -0
- package/lowcode/form-item-tabs/meta.ts +172 -0
- package/lowcode/pisell-floor-map-layout/meta.ts +5599 -0
- package/lowcode/pisell-hierarchical-summary-list/meta.ts +240 -0
- package/lowcode/pisell-reservation-schedule/index.ts +3 -0
- package/lowcode/pisell-reservation-schedule/meta.ts +69 -0
- package/lowcode/pisell-reservation-schedule/snippets.ts +1 -0
- package/lowcode/pisell-reservation-schedule-band/index.ts +3 -0
- package/lowcode/pisell-reservation-schedule-band/meta.ts +96 -0
- package/lowcode/pisell-reservation-schedule-band/snippets.ts +1 -0
- package/lowcode/pisell-time-navigator/index.ts +3 -0
- package/lowcode/pisell-time-navigator/meta.ts +298 -0
- package/lowcode/pisell-time-navigator/snippets.ts +1 -0
- package/lowcode/render-figma-style-round-table-card/meta.ts +589 -0
- package/lowcode/render-figma-style-table-card/meta.ts +589 -0
- package/package.json +4 -3
- package/es/components/PisellCards/components/GraphicTextCard/types.d.ts +0 -290
- package/es/components/PisellCards/components/TextCard/TextCard.d.ts +0 -8
- package/es/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +0 -26
- package/es/components/PisellCards/components/TextCard/components/TextContent.d.ts +0 -21
- package/es/components/PisellCards/components/TextCard/types.d.ts +0 -270
- package/es/components/PisellSteps/PisellSteps.d.ts +0 -14
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +0 -4
- package/es/components/dataSourceComponents/dataSourceTable/type.d.ts +0 -84
- package/es/components/drag-sort-tree/index.d.ts +0 -5
- package/es/components/iconfont/index.d.ts +0 -8
- package/es/components/login-and-register/index.d.ts +0 -82
- package/es/components/pisell-config-provider/index.d.ts +0 -13
- package/es/components/pisellEmpty/index.d.ts +0 -19
- package/es/components/pisellGridPro/index.d.ts +0 -4
- package/es/components/pisellLookup/components/LookupTrigger.d.ts +0 -3
- package/es/components/productCard/cartSkuCard/components/Gift/types.d.ts +0 -29
- package/es/components/productCard/cartSkuCard/components/Promotion/index.d.ts +0 -7
- package/es/components/productCard/cartSkuCard/locales.d.ts +0 -178
- package/es/components/productCard/components/Header/DeleteButton/index.d.ts +0 -4
- package/es/components/productCard/status.d.ts +0 -32
- package/es/components/productCard/types.d.ts +0 -95
- package/es/components/table/Actions/component/ViewMode/index.d.ts +0 -9
- package/es/components/table/types.d.ts +0 -268
- package/es/components/versionModal/index.d.ts +0 -23
- package/lib/components/PisellCards/components/GraphicTextCard/types.d.ts +0 -290
- package/lib/components/PisellCards/components/TextCard/TextCard.d.ts +0 -8
- package/lib/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +0 -26
- package/lib/components/PisellCards/components/TextCard/components/TextContent.d.ts +0 -21
- package/lib/components/PisellCards/components/TextCard/types.d.ts +0 -270
- package/lib/components/PisellSteps/PisellSteps.d.ts +0 -14
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +0 -4
- package/lib/components/dataSourceComponents/dataSourceTable/type.d.ts +0 -84
- package/lib/components/drag-sort-tree/index.d.ts +0 -5
- package/lib/components/iconfont/index.d.ts +0 -8
- package/lib/components/login-and-register/index.d.ts +0 -82
- package/lib/components/pisell-config-provider/index.d.ts +0 -13
- package/lib/components/pisellEmpty/index.d.ts +0 -19
- package/lib/components/pisellGridPro/index.d.ts +0 -4
- package/lib/components/pisellLookup/components/LookupTrigger.d.ts +0 -3
- package/lib/components/productCard/cartSkuCard/components/Gift/types.d.ts +0 -29
- package/lib/components/productCard/cartSkuCard/components/Promotion/index.d.ts +0 -7
- package/lib/components/productCard/cartSkuCard/locales.d.ts +0 -178
- package/lib/components/productCard/components/Header/DeleteButton/index.d.ts +0 -4
- package/lib/components/productCard/status.d.ts +0 -32
- package/lib/components/productCard/types.d.ts +0 -95
- package/lib/components/table/Actions/component/ViewMode/index.d.ts +0 -9
- package/lib/components/table/types.d.ts +0 -268
- 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
|
+
};
|