@pisell/materials 1.8.34 → 1.8.36

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 (86) 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 +2 -2
  6. package/build/lowcode/preview.js +1 -1
  7. package/build/lowcode/render/default/view.css +1 -1
  8. package/build/lowcode/render/default/view.js +35 -35
  9. package/build/lowcode/view.css +1 -1
  10. package/build/lowcode/view.js +35 -35
  11. package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.js +25 -10
  12. package/es/components/pisellFloorMapLayout/appearance/floorMapAppearance.d.ts +4 -0
  13. package/es/components/pisellFloorMapLayout/appearance/floorMapAppearance.js +22 -0
  14. package/es/components/pisellFloorMapLayout/components/EditableItemLayer.js +3 -2
  15. package/es/components/pisellFloorMapLayout/components/ItemLayer.js +7 -4
  16. package/es/components/pisellFloorMapLayout/components/ItemLayer.less +10 -0
  17. package/es/components/pisellFloorMapLayout/components/ViewControls.js +6 -5
  18. package/es/components/pisellFloorMapLayout/components/ViewControls.less +29 -2
  19. package/es/components/pisellFloorMapLayout/components/ViewControlsWithZoom.js +1 -0
  20. package/es/components/pisellFloorMapLayout/context/mergeFloorMapLayoutContext.js +3 -1
  21. package/es/components/pisellFloorMapLayout/types.d.ts +21 -2
  22. package/es/components/pisellRecordBoard/index.d.ts +1 -1
  23. package/es/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendar.js +280 -230
  24. package/es/components/pisellRecordBoard/shellFrame/Calendar/const/bookingCalendarConstants.js +18 -1
  25. package/es/components/pisellRecordBoard/shellFrame/Calendar/hooks/useBookingCalendarDayOverlayLayout.js +74 -0
  26. package/es/components/pisellRecordBoard/shellFrame/Calendar/modal/BookingCalendarBlockPanel.js +61 -0
  27. package/es/components/pisellRecordBoard/shellFrame/Calendar/modal/BookingCalendarOverflowListLayer.js +26 -0
  28. package/es/components/pisellRecordBoard/shellFrame/Calendar/utils/bookingCalendarDateUtils.js +11 -1
  29. package/es/components/pisellRecordBoard/shellFrame/Calendar/utils/bookingCalendarSelectionUtils.js +17 -0
  30. package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarDaySelectionBar.js +12 -8
  31. package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarDayView.js +3 -12
  32. package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarResourceView.js +612 -0
  33. package/es/components/pisellRecordBoard/shellFrame/Calendar/view/day/useBookingCalendarDayHourRemaining.js +33 -0
  34. package/es/components/pisellRecordBoard/shellFrame/Calendar/view/day/useBookingCalendarDaySelection.js +37 -0
  35. package/es/components/pisellRecordBoard/shellFrame/Calendar/view/resource/useBookingCalendarResourceCellToggle.js +18 -0
  36. package/es/components/pisellRecordBoard/shellFrame/Calendar/view/resource/useBookingCalendarResourceDayHeaderRemaining.js +33 -0
  37. package/es/components/pisellRecordBoard/shellFrame/Calendar/view/useBookingCalendarGoToDayFromCell.js +29 -0
  38. package/es/components/pisellRecordBoard/types.d.ts +38 -6
  39. package/es/components/pisellReservationSchedule/PisellReservationSchedule.js +19 -3
  40. package/es/components/pisellReservationSchedule/PisellReservationSchedule.less +23 -0
  41. package/es/index.d.ts +2 -2
  42. package/es/locales/en-US.js +6 -5
  43. package/es/locales/ja.js +1 -0
  44. package/es/locales/pt.js +1 -0
  45. package/es/locales/zh-CN.js +1 -0
  46. package/es/locales/zh-TW.js +1 -0
  47. package/es/pisell-materials.tw.css +2413 -2
  48. package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.js +25 -10
  49. package/lib/components/pisellFloorMapLayout/appearance/floorMapAppearance.d.ts +4 -0
  50. package/lib/components/pisellFloorMapLayout/appearance/floorMapAppearance.js +22 -0
  51. package/lib/components/pisellFloorMapLayout/components/EditableItemLayer.js +3 -2
  52. package/lib/components/pisellFloorMapLayout/components/ItemLayer.js +7 -4
  53. package/lib/components/pisellFloorMapLayout/components/ItemLayer.less +10 -0
  54. package/lib/components/pisellFloorMapLayout/components/ViewControls.js +6 -5
  55. package/lib/components/pisellFloorMapLayout/components/ViewControls.less +29 -2
  56. package/lib/components/pisellFloorMapLayout/components/ViewControlsWithZoom.js +1 -0
  57. package/lib/components/pisellFloorMapLayout/context/mergeFloorMapLayoutContext.js +3 -1
  58. package/lib/components/pisellFloorMapLayout/types.d.ts +21 -2
  59. package/lib/components/pisellRecordBoard/index.d.ts +1 -1
  60. package/lib/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendar.js +277 -227
  61. package/lib/components/pisellRecordBoard/shellFrame/Calendar/const/bookingCalendarConstants.js +18 -0
  62. package/lib/components/pisellRecordBoard/shellFrame/Calendar/hooks/useBookingCalendarDayOverlayLayout.js +75 -0
  63. package/lib/components/pisellRecordBoard/shellFrame/Calendar/modal/BookingCalendarBlockPanel.js +63 -0
  64. package/lib/components/pisellRecordBoard/shellFrame/Calendar/modal/BookingCalendarOverflowListLayer.js +28 -0
  65. package/lib/components/pisellRecordBoard/shellFrame/Calendar/utils/bookingCalendarDateUtils.js +11 -1
  66. package/lib/components/pisellRecordBoard/shellFrame/Calendar/utils/bookingCalendarSelectionUtils.js +17 -0
  67. package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarDaySelectionBar.js +12 -8
  68. package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarDayView.js +3 -12
  69. package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarResourceView.js +614 -0
  70. package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/day/useBookingCalendarDayHourRemaining.js +34 -0
  71. package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/day/useBookingCalendarDaySelection.js +38 -0
  72. package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/resource/useBookingCalendarResourceCellToggle.js +19 -0
  73. package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/resource/useBookingCalendarResourceDayHeaderRemaining.js +34 -0
  74. package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/useBookingCalendarGoToDayFromCell.js +30 -0
  75. package/lib/components/pisellRecordBoard/types.d.ts +38 -6
  76. package/lib/components/pisellReservationSchedule/PisellReservationSchedule.js +19 -3
  77. package/lib/components/pisellReservationSchedule/PisellReservationSchedule.less +23 -0
  78. package/lib/index.d.ts +2 -2
  79. package/lib/locales/en-US.js +6 -5
  80. package/lib/locales/ja.js +1 -0
  81. package/lib/locales/pt.js +1 -0
  82. package/lib/locales/zh-CN.js +1 -0
  83. package/lib/locales/zh-TW.js +1 -0
  84. package/lib/pisell-materials.tw.css +2413 -2
  85. package/lowcode/pisell-record-board-calendar-view/meta.ts +8 -0
  86. package/package.json +1 -1
@@ -0,0 +1,19 @@
1
+ require("../../../../../../_virtual/_rolldown/runtime.js");
2
+ let react = require("react");
3
+ //#region src/components/pisellRecordBoard/shellFrame/Calendar/view/resource/useBookingCalendarResourceCellToggle.ts
4
+ /**
5
+ * 资源视图:cell (court, date) 整天选中切换(状态仍在 Shell,与 SelectionBar 共用)。
6
+ */
7
+ function useBookingCalendarResourceCellToggle(setSelectedResourceCells) {
8
+ return (0, react.useCallback)((courtId, dateKey) => {
9
+ setSelectedResourceCells((prev) => {
10
+ if (prev.some((s) => s.courtId === courtId && s.dateKey === dateKey)) return prev.filter((s) => !(s.courtId === courtId && s.dateKey === dateKey));
11
+ return [...prev, {
12
+ courtId,
13
+ dateKey
14
+ }];
15
+ });
16
+ }, [setSelectedResourceCells]);
17
+ }
18
+ //#endregion
19
+ exports.useBookingCalendarResourceCellToggle = useBookingCalendarResourceCellToggle;
@@ -0,0 +1,34 @@
1
+ require("../../../../../../_virtual/_rolldown/runtime.js");
2
+ const require_bookingCalendarDateUtils = require("../../utils/bookingCalendarDateUtils.js");
3
+ let react = require("react");
4
+ //#region src/components/pisellRecordBoard/shellFrame/Calendar/view/resource/useBookingCalendarResourceDayHeaderRemaining.ts
5
+ /**
6
+ * 资源视图表头:每个自然日列上「营业时段内至少仍有一个空槽」的资源占比。
7
+ */
8
+ function useBookingCalendarResourceDayHeaderRemaining(resourceMonthDays, visibleCourts, bookings, hourSlots, slotStepHours) {
9
+ return (0, react.useMemo)(() => {
10
+ const total = visibleCourts.length;
11
+ const map = {};
12
+ for (const d of resourceMonthDays) {
13
+ const dateKey = require_bookingCalendarDateUtils.fmtDate(d);
14
+ const remaining = visibleCourts.filter((court) => hourSlots.some((hour) => {
15
+ if (!require_bookingCalendarDateUtils.isHourInTimelineSlots(hour, hourSlots)) return false;
16
+ return !require_bookingCalendarDateUtils.dayOccupancy(court.id, dateKey, bookings, hourSlots, slotStepHours)[hour];
17
+ })).length;
18
+ map[dateKey] = {
19
+ remaining,
20
+ total,
21
+ ratio: total > 0 ? remaining / total : 0
22
+ };
23
+ }
24
+ return map;
25
+ }, [
26
+ resourceMonthDays,
27
+ visibleCourts,
28
+ bookings,
29
+ hourSlots,
30
+ slotStepHours
31
+ ]);
32
+ }
33
+ //#endregion
34
+ exports.useBookingCalendarResourceDayHeaderRemaining = useBookingCalendarResourceDayHeaderRemaining;
@@ -0,0 +1,30 @@
1
+ require("../../../../../_virtual/_rolldown/runtime.js");
2
+ let react = require("react");
3
+ //#region src/components/pisellRecordBoard/shellFrame/Calendar/view/useBookingCalendarGoToDayFromCell.ts
4
+ /**
5
+ * 月/周单元格「进入日视图」:锚定日、清多选、过渡动画方向(由 Shell 持有路由状态)。
6
+ */
7
+ function useBookingCalendarGoToDayFromCell(anchorDate, commitAnchor, commitView, setNavDirection, setTransitioningToDay, setSelectedFreeSlots, setSelectedBlockSlots, setSelectedResourceCells, setFocusedCourtId) {
8
+ return (0, react.useCallback)((day, courtId, source) => {
9
+ setNavDirection(day > anchorDate ? 1 : -1);
10
+ setTransitioningToDay({ source });
11
+ setSelectedFreeSlots([]);
12
+ setSelectedBlockSlots([]);
13
+ setSelectedResourceCells([]);
14
+ commitAnchor(day);
15
+ setFocusedCourtId(courtId || null);
16
+ commitView("day");
17
+ }, [
18
+ anchorDate,
19
+ commitAnchor,
20
+ commitView,
21
+ setFocusedCourtId,
22
+ setNavDirection,
23
+ setSelectedBlockSlots,
24
+ setSelectedFreeSlots,
25
+ setSelectedResourceCells,
26
+ setTransitioningToDay
27
+ ]);
28
+ }
29
+ //#endregion
30
+ exports.useBookingCalendarGoToDayFromCell = useBookingCalendarGoToDayFromCell;
@@ -192,7 +192,7 @@ interface RecordBoardCalendarTimelineHeaderRenderContext {
192
192
  }
193
193
  /** 自定义左侧资源格 */
194
194
  interface RecordBoardCalendarResourceRenderArgs {
195
- view: 'day' | 'week' | 'month';
195
+ view: 'resource' | 'day' | 'week' | 'month';
196
196
  row: {
197
197
  kind: 'court' | 'group';
198
198
  id: string;
@@ -210,7 +210,7 @@ interface RecordBoardCalendarResourceRenderArgs {
210
210
  interface RecordBoardCalendarBookingRenderArgs {
211
211
  booking: RecordBoardCalendarDayOverlayBooking;
212
212
  dayKey: string;
213
- calendarView: 'day' | 'week' | 'month';
213
+ calendarView: 'resource' | 'day' | 'week' | 'month';
214
214
  isLight: boolean;
215
215
  /** 日视图时间轴上该预约条当前绘制宽度(像素),便于窄条用 Tooltip / minWidth 等策略展示信息 */
216
216
  overlayWidthPx: number;
@@ -225,7 +225,7 @@ interface RecordBoardCalendarBookingRenderArgs {
225
225
  interface RecordBoardCalendarGridBookingRenderArgs {
226
226
  item: RecordBoardCalendarBookingLike;
227
227
  dateKey: string;
228
- view: 'month' | 'week';
228
+ view: 'month' | 'week' | 'resource';
229
229
  isLight: boolean;
230
230
  /**
231
231
  * 日历建议的外层样式(圆角、内边距、默认 booking/block 底色),可与自定义 `className` 拼接。
@@ -274,6 +274,32 @@ interface RecordBoardCalendarSelectedFreeSlot {
274
274
  hour: number;
275
275
  court?: string;
276
276
  }
277
+ /**
278
+ * 日视图「从选区新建」:与 {@link groupSelectedSlots} 合并后的一段一致(单 court、单日、连续小时)。
279
+ */
280
+ interface RecordBoardCreateBookingDayGroup {
281
+ courtId: string;
282
+ /** `YYYY-MM-DD` */
283
+ date: string;
284
+ startHour: number;
285
+ endHour: number;
286
+ }
287
+ /**
288
+ * 底部栏「新建预约」传给宿主的上下文。
289
+ * 传入 {@link RecordBoardCalendarProps.onCreateBookingFromSelection} 后,
290
+ * 日历**不再**调用 {@link CalendarPersistContextValue.beforePersist} / **不再**写入本地 `bookings`
291
+ *(适用于 Pisell Reservation 等受控数据源场景)。
292
+ */
293
+ type RecordBoardCreateBookingFromSelectionPayload = {
294
+ mode: 'day';
295
+ groups: RecordBoardCreateBookingDayGroup[];
296
+ } | {
297
+ mode: 'resource';
298
+ courtId: string; /** 升序 `YYYY-MM-DD` */
299
+ dates: string[];
300
+ startHour: number;
301
+ endHour: number;
302
+ };
277
303
  /** 宿主弹出锁台/屏蔽表单时由日历传入的上下文(替代内置锁台面版) */
278
304
  interface RecordBoardBlockedTimePanelPayload {
279
305
  /** 槽位步长(小时),与日历内部 `slotStepHours` 一致 */
@@ -323,8 +349,8 @@ interface RecordBoardCalendarProps {
323
349
  rangeEnd: Date;
324
350
  }) => void;
325
351
  /** 当前日历粒度(与顶栏 Segmented 一致);不传则组件内默认 `month` */
326
- calendarView?: 'day' | 'week' | 'month';
327
- onCalendarViewChange?: (view: 'day' | 'week' | 'month') => void;
352
+ calendarView?: 'resource' | 'day' | 'week' | 'month';
353
+ onCalendarViewChange?: (view: 'resource' | 'day' | 'week' | 'month') => void;
328
354
  /** 锚点日(通常与营业日 `schedule.date` 对齐);不传则组件内默认日期 */
329
355
  anchorDate?: Date;
330
356
  /** 日历内交互(如跨日跳转)更新锚点时回调,由父级写回日程 */
@@ -350,6 +376,12 @@ interface RecordBoardCalendarProps {
350
376
  * **传入后**不再渲染内置屏蔽弹层;未传时仍使用内置表单 + {@link onBlockedTimeSave}。
351
377
  */
352
378
  onBlockedTimePanelRequest?: (payload: RecordBoardBlockedTimePanelPayload) => Promise<boolean | void>;
379
+ /**
380
+ * 日视图 / 资源视图:选中合法连续区间并点「新建预约」时由宿主接管(打开新建弹窗、跳转路由等)。
381
+ * **传入后**日历跳过内置本地写入与 {@link persistGuard} 拦截。
382
+ * 返回 `false` 表示未消费,选中态保留;其余视为成功并清空选区。
383
+ */
384
+ onCreateBookingFromSelection?: (payload: RecordBoardCreateBookingFromSelectionPayload) => boolean | void | Promise<boolean | void>;
353
385
  /** 与接口 `blocked_sales_channels` 一致;默认 `['online_store']` */
354
386
  blockedTimeSalesChannels?: string[];
355
387
  /**
@@ -786,4 +818,4 @@ interface RecordBoardProps {
786
818
  [key: string]: any;
787
819
  }
788
820
  //#endregion
789
- export { DEFAULT_RESOURCE_WALL_LAYOUT_PERSIST, RecordBoardBlockedTimeMergedRange, RecordBoardBlockedTimePanelPayload, RecordBoardBodyView, RecordBoardBookingMoveDraft, RecordBoardCalendarBlockedTimePayload, RecordBoardCalendarBookingLike, RecordBoardCalendarBookingRenderArgs, RecordBoardCalendarDayOverlayBooking, RecordBoardCalendarProps, RecordBoardCalendarResource, RecordBoardCalendarResourceRenderArgs, RecordBoardCalendarSelectedFreeSlot, RecordBoardCalendarTimelineHeaderGroup, RecordBoardCalendarTimelineHeaderRenderContext, RecordBoardChildComponentProps, RecordBoardColumnFilterConfig, RecordBoardColumnType, RecordBoardContextValue, RecordBoardFieldType, RecordBoardFloorMapProps, RecordBoardGetOptions, RecordBoardGridProps, RecordBoardLayoutType, RecordBoardOptionItem, RecordBoardProps, RecordBoardResourceWallCardModel, RecordBoardResourceWallLayoutPersist, RecordBoardResourceWallProps, RecordBoardToolBarProps };
821
+ export { DEFAULT_RESOURCE_WALL_LAYOUT_PERSIST, RecordBoardBlockedTimeMergedRange, RecordBoardBlockedTimePanelPayload, RecordBoardBodyView, RecordBoardBookingMoveDraft, RecordBoardCalendarBlockedTimePayload, RecordBoardCalendarBookingLike, RecordBoardCalendarBookingRenderArgs, RecordBoardCalendarDayOverlayBooking, RecordBoardCalendarProps, RecordBoardCalendarResource, RecordBoardCalendarResourceRenderArgs, RecordBoardCalendarSelectedFreeSlot, RecordBoardCalendarTimelineHeaderGroup, RecordBoardCalendarTimelineHeaderRenderContext, RecordBoardChildComponentProps, RecordBoardColumnFilterConfig, RecordBoardColumnType, RecordBoardContextValue, RecordBoardCreateBookingDayGroup, RecordBoardCreateBookingFromSelectionPayload, RecordBoardFieldType, RecordBoardFloorMapProps, RecordBoardGetOptions, RecordBoardGridProps, RecordBoardLayoutType, RecordBoardOptionItem, RecordBoardProps, RecordBoardResourceWallCardModel, RecordBoardResourceWallLayoutPersist, RecordBoardResourceWallProps, RecordBoardToolBarProps };
@@ -160,15 +160,31 @@ function PisellReservationSchedule(props) {
160
160
  centered: true,
161
161
  destroyOnClose: true,
162
162
  wrapClassName: "pisell-reservation-schedule-date-modal"
163
- }, /* @__PURE__ */ react.default.createElement(_pisell_date_picker.DateCalendar, {
163
+ }, navigationUnit === "month" ? /* @__PURE__ */ react.default.createElement("div", { className: "pisell-reservation-schedule-month-picker-wrap" }, /* @__PURE__ */ react.default.createElement(_pisell_date_picker.DateCalendar, {
164
+ value,
165
+ views: ["year", "month"],
166
+ openTo: "month",
167
+ minDate,
168
+ maxDate,
169
+ shouldDisableMonth: (month) => {
170
+ const start = (0, dayjs.default)(month).startOf("month");
171
+ if (minDate && start.isBefore(minDate.startOf("month"))) return true;
172
+ if (maxDate && start.isAfter(maxDate.startOf("month"))) return true;
173
+ return false;
174
+ },
175
+ onChange: (d) => {
176
+ if (!d) return;
177
+ emit((0, dayjs.default)(d).startOf("month"));
178
+ setCalendarOpen(false);
179
+ }
180
+ })) : /* @__PURE__ */ react.default.createElement(_pisell_date_picker.DateCalendar, {
164
181
  value,
165
182
  minDate,
166
183
  maxDate,
167
184
  onChange: (d) => {
168
185
  if (!d) return;
169
186
  const picked = (0, dayjs.default)(d);
170
- if (navigationUnit === "month") emit(picked.startOf("month"));
171
- else if (navigationUnit === "week") emit(startOfWeekMonday(picked));
187
+ if (navigationUnit === "week") emit(startOfWeekMonday(picked));
172
188
  else emit(picked);
173
189
  setCalendarOpen(false);
174
190
  }
@@ -82,6 +82,15 @@
82
82
  cursor: default;
83
83
  }
84
84
 
85
+ /** 弹窗内按月选择:宽度铺满,面板挂载在 Modal 内容区避免层级异常 */
86
+ .pisell-reservation-schedule-month-picker-wrap {
87
+ display: flex;
88
+ justify-content: center;
89
+ width: 100%;
90
+ min-width: 280px;
91
+ padding: 4px 0 8px;
92
+ }
93
+
85
94
  .pisell-reservation-schedule-label-trigger {
86
95
  margin: 0;
87
96
  border: none;
@@ -103,3 +112,17 @@
103
112
  border-radius: 4px;
104
113
  }
105
114
  }
115
+
116
+ .pisell-reservation-schedule-date-modal {
117
+ .pisell-lowcode-modal-content {
118
+ padding: 0;
119
+ }
120
+
121
+ .pisell-lowcode-modal-header {
122
+ padding: 12px 16px;
123
+ }
124
+
125
+ .pisell-lowcode-modal-body {
126
+ padding: 4px 8px 8px;
127
+ }
128
+ }
package/lib/index.d.ts CHANGED
@@ -156,7 +156,7 @@ import { DataSourceContainerProps } from "./components/pisellDataSourceContainer
156
156
  import { PisellDataSourceContainer } from "./components/pisellDataSourceContainer/index.js";
157
157
  import { CalendarPersistContextValue, CalendarPersistKind, CalendarPersistProvider } from "./components/pisellRecordBoard/shellFrame/Calendar/calendarPersistGuard.js";
158
158
  import { VenueWallAppearanceSlot, VenueWallAppearanceTheme, VenueWallStatusKey, VenueWallStatusTone, VenueWallStatusToneOverrides, diffVenueWallStatusToneOverrides, getVenueWallStatusToneMap } from "./components/pisellRecordBoard/shellFrame/ResourceWall/venueWallUtils.js";
159
- import { DEFAULT_RESOURCE_WALL_LAYOUT_PERSIST, RecordBoardBlockedTimeMergedRange, RecordBoardBlockedTimePanelPayload, RecordBoardBodyView, RecordBoardBookingMoveDraft, RecordBoardCalendarBlockedTimePayload, RecordBoardCalendarBookingLike, RecordBoardCalendarBookingRenderArgs, RecordBoardCalendarDayOverlayBooking, RecordBoardCalendarProps, RecordBoardCalendarResource, RecordBoardCalendarResourceRenderArgs, RecordBoardCalendarSelectedFreeSlot, RecordBoardCalendarTimelineHeaderGroup, RecordBoardCalendarTimelineHeaderRenderContext, RecordBoardChildComponentProps, RecordBoardColumnType, RecordBoardContextValue, RecordBoardProps, RecordBoardResourceWallCardModel, RecordBoardResourceWallLayoutPersist, RecordBoardResourceWallProps, RecordBoardToolBarProps } from "./components/pisellRecordBoard/types.js";
159
+ import { DEFAULT_RESOURCE_WALL_LAYOUT_PERSIST, RecordBoardBlockedTimeMergedRange, RecordBoardBlockedTimePanelPayload, RecordBoardBodyView, RecordBoardBookingMoveDraft, RecordBoardCalendarBlockedTimePayload, RecordBoardCalendarBookingLike, RecordBoardCalendarBookingRenderArgs, RecordBoardCalendarDayOverlayBooking, RecordBoardCalendarProps, RecordBoardCalendarResource, RecordBoardCalendarResourceRenderArgs, RecordBoardCalendarSelectedFreeSlot, RecordBoardCalendarTimelineHeaderGroup, RecordBoardCalendarTimelineHeaderRenderContext, RecordBoardChildComponentProps, RecordBoardColumnType, RecordBoardContextValue, RecordBoardCreateBookingDayGroup, RecordBoardCreateBookingFromSelectionPayload, RecordBoardProps, RecordBoardResourceWallCardModel, RecordBoardResourceWallLayoutPersist, RecordBoardResourceWallProps, RecordBoardToolBarProps } from "./components/pisellRecordBoard/types.js";
160
160
  import { BatchActionBarPosition, BatchActionConfirmConfig, BatchActionItem, DefaultActionsConfig, PisellBatchActionBarProps } from "./components/pisellBatchActionBar/types.js";
161
161
  import { PisellBatchActionBar } from "./components/pisellBatchActionBar/PisellBatchActionBar.js";
162
162
  import { useRecordBoardShellBodyMeta } from "./components/pisellRecordBoard/shellFrame/ShellBodyMetaContext.js";
@@ -258,4 +258,4 @@ import { Number } from "./components/virtual-keyboard/Number/index.js";
258
258
  import { VirtualInput } from "./components/virtualInput/index.js";
259
259
  import { WalletCard } from "./components/walletCard/index.js";
260
260
  import { Affix, Alert, Anchor, Avatar, Breadcrumb, Card, Carousel, Col, ColorPicker, Descriptions, Divider, Empty, Grid, InputNumber as InputNumber$1, Mentions, Menu, Pagination, Popconfirm, Popover, Progress, Rate, Result, Row, Space, Spin, Statistic, Steps, Switch as Switch$1, Tag, Timeline, Tooltip, Transfer, Tree, message, notification, version } from "antd";
261
- export { Affix, Alert, Anchor, AppVersionControl, AutoComplete, AutoCompleteNumber, AutoResizeText, Avatar, Badge, type BadgeConfig, Translation as BaseTranslation, type BatchActionBarPosition, type BatchActionConfirmConfig, type BatchActionItem, BatchEditor, Breadcrumb, Button, _default as ButtonGroupEdit, _default$1 as ButtonGroupPreview, Calendar, type CalendarPersistContextValue, type CalendarPersistKind, CalendarPersistProvider, Card, CardMetricItem, type PisellStatisticProps as CardMetricItemProps, _default$2 as CardPro, Carousel, Cascader, Checkbox, ClassicLayout, Col, Collapse, ColorPicker, Component, type CompoundedComponent, ConfigProvider, type CountryCode, type CreateShopFloorPlanClientOptions, CropPhoto, type CursorMode, CustomSelect, DEFAULT_CALENDAR_SLOT_STEP_MINUTES, DEFAULT_RESOURCE_WALL_FILTER_FIELD_KEY, DEFAULT_RESOURCE_WALL_LAYOUT_PERSIST, type DataSourceContainerProps, _default$3 as DataSourceForm, DataSourceImage, DataSourceMenu, DataSourceQRCode, DataSourceSubForm, type DataSourceSubFormProps, _default$4 as DataSourceTable, DataSourceTypography, DataSourceWrapper, DatePicker, type DefaultActionsConfig, Descriptions, _default$5 as Div, Divider, DragSortTree, Drawer, Dropdown, EMPTY_FLOOR_MAP_LAYOUT_CONTEXT, Empty, type EnsureShopFloorPlanByCodeOptions, FLOOR_MAP_IMAGE_ELEMENT_KIND, FLOOR_MAP_STAGE_ELEMENT_KIND, Filter, type FloorMapBindingPlaceholderReason, type FloorMapDataSourceRow, type FloorMapDataSources, type FloorMapElementKindCategory, type FloorMapElementKindConfig, type FloorMapFullscreenMode, FloorMapImageElement, type FloorMapItemBase, type FloorMapLayoutContextValue, FloorMapLayoutProvider, type FloorMapLayoutProviderProps, type FloorMapMergedItem, type FloorMapRenderOptions, type FloorMapSceneElement, type FloorMapViewConfig, type FloorMapViewportOverlayRenderArgs, _default$6 as Form, FormGroup, Checkbox$1 as FormItemCheckbox, ColorPicker$1 as FormItemColorPicker, DatePicker$1 as FormItemDatePicker, IconSelect as FormItemIconSelect, Input as FormItemInput, InputNumber as FormItemInputNumber, Radio as FormItemRadio, RecordListWrapperWithDataSource as FormItemRecordListWrapper, SelectWithDataSource as FormItemSelect, Switch as FormItemSwitch, FormItemTabs, TimePicker as FormItemTimePicker, Translation$1 as FormItemTranslation, Upload as FormItemUpload, Provider as GraphicTextCard, type GraphicTextCardProps, type GraphicTextCardSize, type GraphicTextCardVariant, Grid, type GridProProps, type GridViewProps, PREFIX_CLS as HIERARCHICAL_SUMMARY_LIST_PREFIX_CLS, _default$7 as Icon, IconSelect$1 as IconSelect, IconFont as Iconfont, Image, type ImageDataSource, type ImageFillMode, Input$1 as Input, InputNumber$1 as InputNumber, InputNumberRange, JsonWrapperProvider as JsonWrapper, _default$8 as Keyboard, type LevelType, List, LowCodePage, type MailtoOptions, Mentions, Menu, Modal, Provider$1 as MultilevelCard, type MultilevelCardProps, type MultipleSelectRef, NAME_AS_TITLE_EXT_KEY, OrganizationTenantSwitcher, Page, PageHeader, Pagination, PisellAdjustPrice, PisellAdjustPriceInputNumber, PisellAlert, PisellAnchor, PisellAppCard, type PisellAppCardProps, PisellAvatar, type PisellBasicCardProps, MemoizedPisellBasicGrid as PisellBasicGrid, type PisellBasicGridProps, PisellBatchActionBar, type PisellBatchActionBarProps, PisellCard, _default$9 as PisellCardList, PisellCards, PisellCheckboxGroup, PisellConfigProvider, PisellContainer, PisellContent, PisellContext, PisellCountdown, MemoizedPisellCurrency as PisellCurrency, type PisellCurrencyProps, PisellCustomCheckboxGroup, PisellDataSourceContainer, PisellDatePicker, _default$10 as PisellDateTimeDisplay, type PisellDateTimeDisplayProps, Demo as PisellDraggable, PisellDropSort, PisellDropdown, _default$11 as PisellEmail, type PisellEmailProps, PisellEmpty, PisellFields, PisellFilter, type PisellFilterProps, PisellFind, type PisellFindProps, type PisellFindRef, PisellFloatingPanel, PisellFloorMapLayout, type PisellFloorMapLayoutProps, type PisellFloorMapLayoutRef, PisellFooter, index as PisellGoodPassCard, PisellGridPro, GridView as PisellGridView, PisellHeader, PisellHeaderProgressBar, PisellHierarchicalSummaryList, type PisellHierarchicalSummaryListAggregateConfig, type PisellHierarchicalSummaryListAggregateMode, type PisellHierarchicalSummaryListItem, type PisellHierarchicalSummaryListKey, type PisellHierarchicalSummaryListLevelConfig, type PisellHierarchicalSummaryListProps, Provider$2 as PisellImageCard, type PisellImageCardProps, PisellImageCarousels, PisellInformationEntry, PisellInput, PisellLayout, type PisellLayoutProps, PisellLayouts, PisellList01, PisellLoading, _default$12 as PisellLongText, type PisellLongTextProps, PisellLookup, type PisellLookupProps, type PisellLookupRef, PisellMenu, type PisellMenuProps, PisellMetricCard, type PisellMetricCardProps, PisellMetrics, PisellModal, PisellMultipleSelect, type PisellMultipleSelectProps, PisellNavigationMenu, MemoizedPisellNumber as PisellNumber, Number as PisellNumberKeyboard, type PisellNumberProps, MemoizedPisellPercent as PisellPercent, type PisellPercentProps, _default$13 as PisellPhone, type PisellPhoneProps, Amount as PisellPriceKeyboard, PisellProcedure, type PisellProcedureProps, type PisellProcedureRef, PisellQRScanner, type PisellQRScannerProps, PisellQrcode, pisellQuickFilter as PisellQuickFilter, type PisellQuickFilterProps, _default$14 as PisellRating, type PisellRatingProps, PisellRecordBoard, PisellRecordBoardCalendarView, type PisellRecordBoardCalendarViewProps, PisellRecordBoardResourceWallView, PisellReservationSchedule, PisellReservationScheduleBand, type PisellReservationScheduleBandProps, type PisellReservationScheduleProps, PisellRow, type PisellRowProps, PisellScan, PisellScrollView, type PisellScrollViewProps, PisellSectionHeaders, PisellShellFrame, type PisellShellFrameConfig, type PisellShellFrameProps, type PisellShellFrameScrollConfig, PisellSider, _default$15 as PisellSingleLineText, type PisellSingleLineTextProps, PisellSingleSelect, type PisellSingleSelectProps, PisellSort, type PisellSortProps, PisellStatisticList, type PisellStatisticProps, type PisellStepItem, PisellSteps, type PisellStepsProps, _default$16 as PisellSuperTabs, type PisellSuperTabsProps, PisellTabbar, PisellTabbar$1 as PisellTabbar2, type PisellTabbarProps, _default$17 as PisellTabbarTemplate1, PisellTags, PisellText, PisellTimeNavigator, type PisellTimeNavigatorProps, PisellTimeRangeDisplay, type PisellTimeRangeDisplayProps, PisellToast, Toolbar as PisellToolBar, PisellTooltip, PisellUpload, _default$18 as PisellUrl, type PisellUrlProps, PisellViewGrid, PisellWalletPassCard, type PisellWalletPassCardProps, Popconfirm, Popover, type PostShopFloorPlanBody, type ProcedureBodyProps, type ProcedureFooterProps, type ProcedureHeaderProps, ProductCard, ProfileMenu, Progress, PublishVersionModal, type PutShopFloorPlanBody, QRCode, Radio$1 as Radio, Rate, type RecordBoardBlockedTimeMergedRange, type RecordBoardBlockedTimePanelPayload, type RecordBoardBodyView, type RecordBoardBookingMoveDraft, type RecordBoardCalendarBlockedTimePayload, type RecordBoardCalendarBookingLike, type RecordBoardCalendarBookingRenderArgs, type RecordBoardCalendarDayOverlayBooking, type RecordBoardCalendarProps, type RecordBoardCalendarResource, type RecordBoardCalendarResourceRenderArgs, type RecordBoardCalendarSelectedFreeSlot, type RecordBoardCalendarTimelineHeaderGroup, type RecordBoardCalendarTimelineHeaderRenderContext, type RecordBoardChildComponentProps, type RecordBoardColumnType, type RecordBoardContextValue, type RecordBoardProps, type RecordBoardResourceWallCardModel, type RecordBoardResourceWallLayoutPersist, type RecordBoardResourceWallProps, type RecordBoardToolBarProps, _default$19 as RecordView, type ReservationScheduleBandValue, type ReservationScheduleValue, Result, Row, SHOP_FLOOR_PLAN_DUPLICATE_CODE, SectionFooters, Segmented, Select, SelectTime, type ShopFloorPlanByCodeRequestOptions, type ShopFloorPlanDetail, type ShopFloorPlanHttpAdapter, type ShopFloorPlanLayoutItem, type SingleSelectRef, Skeleton, SliderOuter as Slider, Sort, SortableList, Space, Spin, Statistic, Steps, SubmitButton, Switch$1 as Switch, Provider$3 as TabCard, type TabCardProps, type TabDataItem, type TabbarDataSource, _default$20 as Table, Tabs, Tag, Provider$4 as TextCard, type TimeNavigatorOrientation, type TimeNavigatorPassthroughProps, type TimeNavigatorValue, TimePicker$1 as TimePicker, type TimeRangeOption, Timeline, type ToolBarProps, Tooltip, Transfer, Translation$2 as Translation, Tree, TreeSelect, Typography, Upload$1 as Upload, type VenueWallAppearanceSlot, type VenueWallAppearanceTheme, type VenueWallStatusKey, type VenueWallStatusTone, type VenueWallStatusToneOverrides, VirtualInput, VirtualKeyboard, VirtualKeyboardTime, WalletCard, type WrapFloorMapOnSaveWithRemotePersistParams, buildCalendarHourSlotsFromRange, buildCalendarTimelineSlotStartsFromRange, buildFloorPlanPutBody, buildNameAsTitleExtensionsPatch, createShopFloorPlanClient, diffVenueWallStatusToneOverrides, findFloorMapRowByDataBinding, floorMapSavedConfigToRemotePatch, getBankCardTypeImg, getFigmaTableCardFromMerged, getFloorMapBindingPlaceholderReason, getHorizontalAxisSlotCount, getRangeBounds, getRenderItemByKindRoundTable, getRenderItemByKindTable, getVenueWallStatusToneMap, globalConfig, inferCanvasSizeFromScene, isElementNameAsTitleEnabled, isFloorMapImageElementKind, isFloorPlanDuplicateCodeError, isHttpNotFoundError, isShopFloorPlanNotFoundResponse, loginAndRegister, mergeFloorMapLayoutPropsFromContext, mergeFloorPlanViewRemote, message, notification, parseLayoutFieldToViewConfigPatch, pickFloorPlanDetail, _default$21 as pisellTimeNavigatorLocales, renderFigmaStyleRoundTableCard, renderFigmaStyleTableCard, renderFloorMapFallbackPlaceholder, resolveSceneElementDisplayTitle, sceneElementsToShopLayout, shopLayoutToSceneElements, useFloorMapLayoutContext, usePisellConfig, useRecordBoardContext, useRecordBoardShellBodyMeta, useShopFloorPlanSubscription, useToast, version, viewConfigToLayoutPayload, wrapFloorMapOnSaveWithRemotePersist };
261
+ export { Affix, Alert, Anchor, AppVersionControl, AutoComplete, AutoCompleteNumber, AutoResizeText, Avatar, Badge, type BadgeConfig, Translation as BaseTranslation, type BatchActionBarPosition, type BatchActionConfirmConfig, type BatchActionItem, BatchEditor, Breadcrumb, Button, _default as ButtonGroupEdit, _default$1 as ButtonGroupPreview, Calendar, type CalendarPersistContextValue, type CalendarPersistKind, CalendarPersistProvider, Card, CardMetricItem, type PisellStatisticProps as CardMetricItemProps, _default$2 as CardPro, Carousel, Cascader, Checkbox, ClassicLayout, Col, Collapse, ColorPicker, Component, type CompoundedComponent, ConfigProvider, type CountryCode, type CreateShopFloorPlanClientOptions, CropPhoto, type CursorMode, CustomSelect, DEFAULT_CALENDAR_SLOT_STEP_MINUTES, DEFAULT_RESOURCE_WALL_FILTER_FIELD_KEY, DEFAULT_RESOURCE_WALL_LAYOUT_PERSIST, type DataSourceContainerProps, _default$3 as DataSourceForm, DataSourceImage, DataSourceMenu, DataSourceQRCode, DataSourceSubForm, type DataSourceSubFormProps, _default$4 as DataSourceTable, DataSourceTypography, DataSourceWrapper, DatePicker, type DefaultActionsConfig, Descriptions, _default$5 as Div, Divider, DragSortTree, Drawer, Dropdown, EMPTY_FLOOR_MAP_LAYOUT_CONTEXT, Empty, type EnsureShopFloorPlanByCodeOptions, FLOOR_MAP_IMAGE_ELEMENT_KIND, FLOOR_MAP_STAGE_ELEMENT_KIND, Filter, type FloorMapBindingPlaceholderReason, type FloorMapDataSourceRow, type FloorMapDataSources, type FloorMapElementKindCategory, type FloorMapElementKindConfig, type FloorMapFullscreenMode, FloorMapImageElement, type FloorMapItemBase, type FloorMapLayoutContextValue, FloorMapLayoutProvider, type FloorMapLayoutProviderProps, type FloorMapMergedItem, type FloorMapRenderOptions, type FloorMapSceneElement, type FloorMapViewConfig, type FloorMapViewportOverlayRenderArgs, _default$6 as Form, FormGroup, Checkbox$1 as FormItemCheckbox, ColorPicker$1 as FormItemColorPicker, DatePicker$1 as FormItemDatePicker, IconSelect as FormItemIconSelect, Input as FormItemInput, InputNumber as FormItemInputNumber, Radio as FormItemRadio, RecordListWrapperWithDataSource as FormItemRecordListWrapper, SelectWithDataSource as FormItemSelect, Switch as FormItemSwitch, FormItemTabs, TimePicker as FormItemTimePicker, Translation$1 as FormItemTranslation, Upload as FormItemUpload, Provider as GraphicTextCard, type GraphicTextCardProps, type GraphicTextCardSize, type GraphicTextCardVariant, Grid, type GridProProps, type GridViewProps, PREFIX_CLS as HIERARCHICAL_SUMMARY_LIST_PREFIX_CLS, _default$7 as Icon, IconSelect$1 as IconSelect, IconFont as Iconfont, Image, type ImageDataSource, type ImageFillMode, Input$1 as Input, InputNumber$1 as InputNumber, InputNumberRange, JsonWrapperProvider as JsonWrapper, _default$8 as Keyboard, type LevelType, List, LowCodePage, type MailtoOptions, Mentions, Menu, Modal, Provider$1 as MultilevelCard, type MultilevelCardProps, type MultipleSelectRef, NAME_AS_TITLE_EXT_KEY, OrganizationTenantSwitcher, Page, PageHeader, Pagination, PisellAdjustPrice, PisellAdjustPriceInputNumber, PisellAlert, PisellAnchor, PisellAppCard, type PisellAppCardProps, PisellAvatar, type PisellBasicCardProps, MemoizedPisellBasicGrid as PisellBasicGrid, type PisellBasicGridProps, PisellBatchActionBar, type PisellBatchActionBarProps, PisellCard, _default$9 as PisellCardList, PisellCards, PisellCheckboxGroup, PisellConfigProvider, PisellContainer, PisellContent, PisellContext, PisellCountdown, MemoizedPisellCurrency as PisellCurrency, type PisellCurrencyProps, PisellCustomCheckboxGroup, PisellDataSourceContainer, PisellDatePicker, _default$10 as PisellDateTimeDisplay, type PisellDateTimeDisplayProps, Demo as PisellDraggable, PisellDropSort, PisellDropdown, _default$11 as PisellEmail, type PisellEmailProps, PisellEmpty, PisellFields, PisellFilter, type PisellFilterProps, PisellFind, type PisellFindProps, type PisellFindRef, PisellFloatingPanel, PisellFloorMapLayout, type PisellFloorMapLayoutProps, type PisellFloorMapLayoutRef, PisellFooter, index as PisellGoodPassCard, PisellGridPro, GridView as PisellGridView, PisellHeader, PisellHeaderProgressBar, PisellHierarchicalSummaryList, type PisellHierarchicalSummaryListAggregateConfig, type PisellHierarchicalSummaryListAggregateMode, type PisellHierarchicalSummaryListItem, type PisellHierarchicalSummaryListKey, type PisellHierarchicalSummaryListLevelConfig, type PisellHierarchicalSummaryListProps, Provider$2 as PisellImageCard, type PisellImageCardProps, PisellImageCarousels, PisellInformationEntry, PisellInput, PisellLayout, type PisellLayoutProps, PisellLayouts, PisellList01, PisellLoading, _default$12 as PisellLongText, type PisellLongTextProps, PisellLookup, type PisellLookupProps, type PisellLookupRef, PisellMenu, type PisellMenuProps, PisellMetricCard, type PisellMetricCardProps, PisellMetrics, PisellModal, PisellMultipleSelect, type PisellMultipleSelectProps, PisellNavigationMenu, MemoizedPisellNumber as PisellNumber, Number as PisellNumberKeyboard, type PisellNumberProps, MemoizedPisellPercent as PisellPercent, type PisellPercentProps, _default$13 as PisellPhone, type PisellPhoneProps, Amount as PisellPriceKeyboard, PisellProcedure, type PisellProcedureProps, type PisellProcedureRef, PisellQRScanner, type PisellQRScannerProps, PisellQrcode, pisellQuickFilter as PisellQuickFilter, type PisellQuickFilterProps, _default$14 as PisellRating, type PisellRatingProps, PisellRecordBoard, PisellRecordBoardCalendarView, type PisellRecordBoardCalendarViewProps, PisellRecordBoardResourceWallView, PisellReservationSchedule, PisellReservationScheduleBand, type PisellReservationScheduleBandProps, type PisellReservationScheduleProps, PisellRow, type PisellRowProps, PisellScan, PisellScrollView, type PisellScrollViewProps, PisellSectionHeaders, PisellShellFrame, type PisellShellFrameConfig, type PisellShellFrameProps, type PisellShellFrameScrollConfig, PisellSider, _default$15 as PisellSingleLineText, type PisellSingleLineTextProps, PisellSingleSelect, type PisellSingleSelectProps, PisellSort, type PisellSortProps, PisellStatisticList, type PisellStatisticProps, type PisellStepItem, PisellSteps, type PisellStepsProps, _default$16 as PisellSuperTabs, type PisellSuperTabsProps, PisellTabbar, PisellTabbar$1 as PisellTabbar2, type PisellTabbarProps, _default$17 as PisellTabbarTemplate1, PisellTags, PisellText, PisellTimeNavigator, type PisellTimeNavigatorProps, PisellTimeRangeDisplay, type PisellTimeRangeDisplayProps, PisellToast, Toolbar as PisellToolBar, PisellTooltip, PisellUpload, _default$18 as PisellUrl, type PisellUrlProps, PisellViewGrid, PisellWalletPassCard, type PisellWalletPassCardProps, Popconfirm, Popover, type PostShopFloorPlanBody, type ProcedureBodyProps, type ProcedureFooterProps, type ProcedureHeaderProps, ProductCard, ProfileMenu, Progress, PublishVersionModal, type PutShopFloorPlanBody, QRCode, Radio$1 as Radio, Rate, type RecordBoardBlockedTimeMergedRange, type RecordBoardBlockedTimePanelPayload, type RecordBoardBodyView, type RecordBoardBookingMoveDraft, type RecordBoardCalendarBlockedTimePayload, type RecordBoardCalendarBookingLike, type RecordBoardCalendarBookingRenderArgs, type RecordBoardCalendarDayOverlayBooking, type RecordBoardCalendarProps, type RecordBoardCalendarResource, type RecordBoardCalendarResourceRenderArgs, type RecordBoardCalendarSelectedFreeSlot, type RecordBoardCalendarTimelineHeaderGroup, type RecordBoardCalendarTimelineHeaderRenderContext, type RecordBoardChildComponentProps, type RecordBoardColumnType, type RecordBoardContextValue, type RecordBoardCreateBookingDayGroup, type RecordBoardCreateBookingFromSelectionPayload, type RecordBoardProps, type RecordBoardResourceWallCardModel, type RecordBoardResourceWallLayoutPersist, type RecordBoardResourceWallProps, type RecordBoardToolBarProps, _default$19 as RecordView, type ReservationScheduleBandValue, type ReservationScheduleValue, Result, Row, SHOP_FLOOR_PLAN_DUPLICATE_CODE, SectionFooters, Segmented, Select, SelectTime, type ShopFloorPlanByCodeRequestOptions, type ShopFloorPlanDetail, type ShopFloorPlanHttpAdapter, type ShopFloorPlanLayoutItem, type SingleSelectRef, Skeleton, SliderOuter as Slider, Sort, SortableList, Space, Spin, Statistic, Steps, SubmitButton, Switch$1 as Switch, Provider$3 as TabCard, type TabCardProps, type TabDataItem, type TabbarDataSource, _default$20 as Table, Tabs, Tag, Provider$4 as TextCard, type TimeNavigatorOrientation, type TimeNavigatorPassthroughProps, type TimeNavigatorValue, TimePicker$1 as TimePicker, type TimeRangeOption, Timeline, type ToolBarProps, Tooltip, Transfer, Translation$2 as Translation, Tree, TreeSelect, Typography, Upload$1 as Upload, type VenueWallAppearanceSlot, type VenueWallAppearanceTheme, type VenueWallStatusKey, type VenueWallStatusTone, type VenueWallStatusToneOverrides, VirtualInput, VirtualKeyboard, VirtualKeyboardTime, WalletCard, type WrapFloorMapOnSaveWithRemotePersistParams, buildCalendarHourSlotsFromRange, buildCalendarTimelineSlotStartsFromRange, buildFloorPlanPutBody, buildNameAsTitleExtensionsPatch, createShopFloorPlanClient, diffVenueWallStatusToneOverrides, findFloorMapRowByDataBinding, floorMapSavedConfigToRemotePatch, getBankCardTypeImg, getFigmaTableCardFromMerged, getFloorMapBindingPlaceholderReason, getHorizontalAxisSlotCount, getRangeBounds, getRenderItemByKindRoundTable, getRenderItemByKindTable, getVenueWallStatusToneMap, globalConfig, inferCanvasSizeFromScene, isElementNameAsTitleEnabled, isFloorMapImageElementKind, isFloorPlanDuplicateCodeError, isHttpNotFoundError, isShopFloorPlanNotFoundResponse, loginAndRegister, mergeFloorMapLayoutPropsFromContext, mergeFloorPlanViewRemote, message, notification, parseLayoutFieldToViewConfigPatch, pickFloorPlanDetail, _default$21 as pisellTimeNavigatorLocales, renderFigmaStyleRoundTableCard, renderFigmaStyleTableCard, renderFloorMapFallbackPlaceholder, resolveSceneElementDisplayTitle, sceneElementsToShopLayout, shopLayoutToSceneElements, useFloorMapLayoutContext, usePisellConfig, useRecordBoardContext, useRecordBoardShellBodyMeta, useShopFloorPlanSubscription, useToast, version, viewConfigToLayoutPayload, wrapFloorMapOnSaveWithRemotePersist };
@@ -111,7 +111,7 @@ var en_US_default = {
111
111
  "pisell-resource-wall-display-mode": "Display mode",
112
112
  "pisell-resource-wall-carousel-paging-mode": "Carousel paging",
113
113
  "pisell-resource-wall-summary-pagination": "Pager / countdown",
114
- "pisell-resource-wall-summary-page-sec": "??? · {sec}s/page",
114
+ "pisell-resource-wall-summary-page-sec": "??? {sec}s/page",
115
115
  "pisell-resource-wall-modal-select-all": "Select all",
116
116
  "pisell-resource-wall-modal-clear-all": "Clear all",
117
117
  "pisell-resource-wall-modal-resource-hint": "Resources (showing up to {n}); current layout capacity {cap}; max {max} selected.",
@@ -149,7 +149,7 @@ var en_US_default = {
149
149
  "pisell-resource-wall-occupied-card-color-label": "Occupied tone (dark cards)",
150
150
  "pisell-resource-wall-available-card-color-label": "Available tone (light cards)",
151
151
  "pisell-resource-wall-status-col-explain": "Explanatory copy",
152
- "pisell-resource-wall-carousel-countdown-line": "Page {cur} / {tot} · {sec}s/page",
152
+ "pisell-resource-wall-carousel-countdown-line": "Page {cur} / {tot} {sec}s/page",
153
153
  "pisell-resource-wall-countdown-overtime": "{n} overtime",
154
154
  "pisell-resource-wall-countdown-ending-now": "Ending now",
155
155
  "pisell-resource-wall-countdown-left": "{n} left",
@@ -159,7 +159,7 @@ var en_US_default = {
159
159
  "pisell-resource-wall-card-hero-available": "Empty",
160
160
  "pisell-resource-wall-card-label-current": "Current",
161
161
  "pisell-resource-wall-card-label-next": "Next",
162
- "pisell-resource-wall-card-next-line": "Next · {time}",
162
+ "pisell-resource-wall-card-next-line": "Next {time}",
163
163
  "pisell-resource-wall-card-starts-in": "Starts in {n}",
164
164
  "pisell-resource-wall-card-late": "Late +{n}",
165
165
  "pisell-resource-wall-card-current-not-in-use": "Not in use",
@@ -217,6 +217,7 @@ var en_US_default = {
217
217
  "pisell2.recordBoard.calendar.weekday.fri": "Fri",
218
218
  "pisell2.recordBoard.calendar.weekday.sat": "Sat",
219
219
  "pisell2.recordBoard.calendar.weekday.sun": "Sun",
220
+ "pisell2.recordBoard.calendar.resource.monthUnit": "",
220
221
  "pisell2.recordBoard.calendar.block.panelTitle": "New blocked time",
221
222
  "pisell2.recordBoard.calendar.block.defaultTitle": "Blocked time",
222
223
  "pisell2.recordBoard.calendar.block.fieldTitle": "Title",
@@ -231,8 +232,8 @@ var en_US_default = {
231
232
  "pisell2.recordBoard.calendar.block.warnEndAfterStart": "End time must be after start time.",
232
233
  "pisell2.recordBoard.calendar.block.warnSelectResource": "Please select a resource.",
233
234
  "pisell2.recordBoard.calendar.overflow.bookingsForDay": "Bookings for this day",
234
- "pisell2.recordBoard.calendar.overflow.listTitleBookings": "{date} · Bookings",
235
- "pisell2.recordBoard.calendar.overflow.listTitleAllBookings": "{date} · All bookings",
235
+ "pisell2.recordBoard.calendar.overflow.listTitleBookings": "{date} Bookings",
236
+ "pisell2.recordBoard.calendar.overflow.listTitleAllBookings": "{date} All bookings",
236
237
  "pisell2.recordBoard.calendar.overflow.moreCount": "{count} more",
237
238
  "pisell2.recordBoard.calendar.move.title": "Booking information",
238
239
  "pisell2.recordBoard.calendar.move.subtitle": "Update customer, court, date and time for this booking.",
package/lib/locales/ja.js CHANGED
@@ -409,6 +409,7 @@ var ja_default = {
409
409
  "pisell2.recordBoard.calendar.move.courtFallback": "コート",
410
410
  "pisell2.recordBoard.calendar.move.slotDisabled": "⛔ {time}",
411
411
  "pisell2.recordBoard.calendar.week.headerCourtDate": "コート / 日付",
412
+ "pisell2.recordBoard.calendar.resource.monthUnit": "月",
412
413
  "pisell2.recordBoard.calendar.week.fullyBooked": "満席",
413
414
  "pisell2.recordBoard.calendar.week.available": "空きあり",
414
415
  "pisell2.recordBoard.calendar.day.outsideHours": "営業時間外",
package/lib/locales/pt.js CHANGED
@@ -409,6 +409,7 @@ var pt_default = {
409
409
  "pisell2.recordBoard.calendar.move.courtFallback": "Court",
410
410
  "pisell2.recordBoard.calendar.move.slotDisabled": "⛔ {time}",
411
411
  "pisell2.recordBoard.calendar.week.headerCourtDate": "Court / data",
412
+ "pisell2.recordBoard.calendar.resource.monthUnit": "",
412
413
  "pisell2.recordBoard.calendar.week.fullyBooked": "Lotado",
413
414
  "pisell2.recordBoard.calendar.week.available": "Disponível",
414
415
  "pisell2.recordBoard.calendar.day.outsideHours": "Fora do horário",
@@ -251,6 +251,7 @@ var zh_CN_default = {
251
251
  "pisell2.recordBoard.calendar.move.courtFallback": "场地",
252
252
  "pisell2.recordBoard.calendar.move.slotDisabled": "⛔ {time}",
253
253
  "pisell2.recordBoard.calendar.week.headerCourtDate": "场地 / 日期",
254
+ "pisell2.recordBoard.calendar.resource.monthUnit": "月",
254
255
  "pisell2.recordBoard.calendar.week.fullyBooked": "已满",
255
256
  "pisell2.recordBoard.calendar.week.available": "可订",
256
257
  "pisell2.recordBoard.calendar.day.outsideHours": "非营业时间",
@@ -251,6 +251,7 @@ var zh_TW_default = {
251
251
  "pisell2.recordBoard.calendar.move.courtFallback": "場地",
252
252
  "pisell2.recordBoard.calendar.move.slotDisabled": "⛔ {time}",
253
253
  "pisell2.recordBoard.calendar.week.headerCourtDate": "場地 / 日期",
254
+ "pisell2.recordBoard.calendar.resource.monthUnit": "月",
254
255
  "pisell2.recordBoard.calendar.week.fullyBooked": "已滿",
255
256
  "pisell2.recordBoard.calendar.week.available": "可訂",
256
257
  "pisell2.recordBoard.calendar.day.outsideHours": "非營業時間",