@pisell/materials 6.11.36 → 6.11.38
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 +1 -1
- package/build/lowcode/preview.js +8 -8
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +26 -56
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +26 -56
- package/es/components/PisellLayouts/index.d.ts +1 -1
- package/es/components/colorPicker/index.d.ts +0 -1
- package/es/components/dataSourceComponents/dataSourceForm/utils.d.ts +1 -1
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +2 -2
- package/es/components/dataSourceComponents/fields/RecordListWrapper/index.d.ts +1 -1
- package/es/components/dataSourceComponents/fields/Select/index.d.ts +1 -1
- package/es/components/dataSourceComponents/fields/Tabs/index.d.ts +1 -1
- package/es/components/dataSourceComponents/fields/Upload/utils.d.ts +1 -1
- package/es/components/dataSourceComponents/fields/index.d.ts +6 -6
- package/es/components/filter/components/items/index.d.ts +0 -1
- package/es/components/filter/components/items/text/Editor/index.d.ts +0 -1
- package/es/components/filter/components/items/text/Preview/index.d.ts +0 -1
- package/es/components/filter/components/items/text/index.d.ts +0 -1
- package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.d.ts +2 -1
- package/es/components/pisellFloorMapLayout/PisellFloorMapLayout.js +47 -3
- package/es/components/pisellFloorMapLayout/types.d.ts +7 -7
- package/es/components/pisellFloorMapLayout/types.js +2 -2
- package/es/components/pisellRecordBoard/index.d.ts +1 -1
- package/es/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendar.d.ts +5 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendar.js +1039 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendar.less +323 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/PisellRecordBoardCalendarView.d.ts +5 -1
- package/es/components/pisellRecordBoard/shellFrame/Calendar/PisellRecordBoardCalendarView.js +10 -10
- package/es/components/pisellRecordBoard/shellFrame/Calendar/bookingCalendarViewShared.d.ts +23 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/bookingCalendarViewShared.js +287 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/calendarI18n.d.ts +4 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/calendarI18n.js +28 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/calendarPersistGuard.d.ts +1 -1
- package/es/components/pisellRecordBoard/shellFrame/Calendar/const/bookingCalendarConstants.d.ts +36 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/const/bookingCalendarConstants.js +38 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/index.d.ts +3 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/index.js +3 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/modal/MoveConfirmModal.d.ts +17 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/modal/MoveConfirmModal.js +197 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/modal/OverflowListModal.d.ts +17 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/modal/OverflowListModal.js +65 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/modal/OverflowPopover.d.ts +9 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/modal/OverflowPopover.js +52 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/utils/BookingCalendarStyle.d.ts +10 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/utils/BookingCalendarStyle.js +58 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/utils/bookingCalendarDateUtils.d.ts +232 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/utils/bookingCalendarDateUtils.js +735 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarDaySelectionBar.d.ts +13 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarDaySelectionBar.js +37 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarDayView.d.ts +56 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarDayView.js +682 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarMonthView.d.ts +18 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarMonthView.js +155 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarWeekView.d.ts +27 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarWeekView.js +259 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/view/bookingCalendarDayViewContext.d.ts +12 -0
- package/es/components/pisellRecordBoard/shellFrame/Calendar/view/bookingCalendarDayViewContext.js +19 -0
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/NoteTicker.d.ts +2 -1
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/NoteTicker.js +44 -14
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/PisellRecordBoardResourceWallView.d.ts +4 -2
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/PisellRecordBoardResourceWallView.js +117 -125
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanel.d.ts +3 -5
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanel.js +71 -352
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanelColorTab.d.ts +17 -0
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanelColorTab.js +143 -0
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanelLayoutTab.d.ts +28 -0
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanelLayoutTab.js +128 -0
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallViewport.less +8 -0
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallViewportToolbar.d.ts +18 -0
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallViewportToolbar.js +115 -0
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/VenueWallCard.d.ts +6 -4
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/VenueWallCard.js +63 -120
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/resourceWallConstants.d.ts +2 -0
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/resourceWallConstants.js +2 -0
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/venueWallCardPresentation.d.ts +42 -0
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/venueWallCardPresentation.js +114 -0
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/venueWallUtils.d.ts +26 -0
- package/es/components/pisellRecordBoard/shellFrame/ResourceWall/venueWallUtils.js +54 -1
- package/es/components/pisellRecordBoard/shellFrame/ToolBar/index.js +67 -12
- package/es/components/pisellRecordBoard/shellFrame/index.js +34 -7
- package/es/components/pisellRecordBoard/types.d.ts +97 -4
- package/es/components/pisellRecordBoard/types.js +18 -2
- package/es/components/pisellReservationScheduleBand/PisellReservationScheduleBand.less +34 -2
- package/es/components/pisellShellFrame/PisellShellFrame.less +5 -2
- package/es/components/table/Table/SelectField/index.d.ts +0 -1
- package/es/components/table/Table/tableConfig/summary/index.d.ts +0 -1
- package/es/hooks/useResponsive.d.ts +1 -1
- package/es/index.d.ts +1 -1
- package/es/locales/en-US.d.ts +74 -0
- package/es/locales/en-US.js +76 -1
- package/es/locales/ja.d.ts +74 -0
- package/es/locales/ja.js +75 -0
- package/es/locales/pt.d.ts +74 -0
- package/es/locales/pt.js +75 -0
- package/es/locales/zh-CN.d.ts +74 -0
- package/es/locales/zh-CN.js +76 -1
- package/es/locales/zh-TW.d.ts +74 -0
- package/es/locales/zh-TW.js +76 -1
- package/es/pisell-materials.tw.css +1 -1
- package/lib/components/PisellLayouts/index.d.ts +1 -1
- package/lib/components/colorPicker/index.d.ts +0 -1
- package/lib/components/dataSourceComponents/dataSourceForm/utils.d.ts +1 -1
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +2 -2
- package/lib/components/dataSourceComponents/fields/RecordListWrapper/index.d.ts +1 -1
- package/lib/components/dataSourceComponents/fields/Select/index.d.ts +1 -1
- package/lib/components/dataSourceComponents/fields/Tabs/index.d.ts +1 -1
- package/lib/components/dataSourceComponents/fields/Upload/utils.d.ts +1 -1
- package/lib/components/dataSourceComponents/fields/index.d.ts +6 -6
- package/lib/components/filter/components/items/index.d.ts +0 -1
- package/lib/components/filter/components/items/text/Editor/index.d.ts +0 -1
- package/lib/components/filter/components/items/text/Preview/index.d.ts +0 -1
- package/lib/components/filter/components/items/text/index.d.ts +0 -1
- package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.d.ts +2 -1
- package/lib/components/pisellFloorMapLayout/PisellFloorMapLayout.js +1 -1
- package/lib/components/pisellFloorMapLayout/types.d.ts +7 -7
- package/lib/components/pisellRecordBoard/index.d.ts +1 -1
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendar.d.ts +5 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendar.js +892 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendar.less +323 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/PisellRecordBoardCalendarView.d.ts +5 -1
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/PisellRecordBoardCalendarView.js +7 -6
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/bookingCalendarViewShared.d.ts +23 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/bookingCalendarViewShared.js +268 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/calendarI18n.d.ts +4 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/calendarI18n.js +53 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/calendarPersistGuard.d.ts +1 -1
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/const/bookingCalendarConstants.d.ts +36 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/const/bookingCalendarConstants.js +98 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/index.d.ts +3 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/modal/MoveConfirmModal.d.ts +17 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/modal/MoveConfirmModal.js +306 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/modal/OverflowListModal.d.ts +17 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/modal/OverflowListModal.js +111 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/modal/OverflowPopover.d.ts +9 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/modal/OverflowPopover.js +96 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/utils/BookingCalendarStyle.d.ts +10 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/utils/BookingCalendarStyle.js +92 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/utils/bookingCalendarDateUtils.d.ts +232 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/utils/bookingCalendarDateUtils.js +666 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarDaySelectionBar.d.ts +13 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarDaySelectionBar.js +90 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarDayView.d.ts +56 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarDayView.js +812 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarMonthView.d.ts +18 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarMonthView.js +219 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarWeekView.d.ts +27 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/BookingCalendarWeekView.js +352 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/bookingCalendarDayViewContext.d.ts +12 -0
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/view/bookingCalendarDayViewContext.js +57 -0
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/NoteTicker.d.ts +2 -1
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/NoteTicker.js +44 -9
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/PisellRecordBoardResourceWallView.d.ts +4 -2
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/PisellRecordBoardResourceWallView.js +60 -142
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanel.d.ts +3 -5
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanel.js +40 -269
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanelColorTab.d.ts +17 -0
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanelColorTab.js +163 -0
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanelLayoutTab.d.ts +28 -0
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallControlPanelLayoutTab.js +136 -0
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallViewport.less +8 -0
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallViewportToolbar.d.ts +18 -0
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/ResourceWallViewportToolbar.js +175 -0
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/VenueWallCard.d.ts +6 -4
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/VenueWallCard.js +61 -88
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/resourceWallConstants.d.ts +2 -0
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/resourceWallConstants.js +29 -0
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/venueWallCardPresentation.d.ts +42 -0
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/venueWallCardPresentation.js +139 -0
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/venueWallUtils.d.ts +26 -0
- package/lib/components/pisellRecordBoard/shellFrame/ResourceWall/venueWallUtils.js +31 -3
- package/lib/components/pisellRecordBoard/shellFrame/ToolBar/index.js +50 -5
- package/lib/components/pisellRecordBoard/shellFrame/index.js +29 -13
- package/lib/components/pisellRecordBoard/types.d.ts +97 -4
- package/lib/components/pisellReservationScheduleBand/PisellReservationScheduleBand.less +34 -2
- package/lib/components/pisellShellFrame/PisellShellFrame.less +5 -2
- package/lib/components/table/Table/SelectField/index.d.ts +0 -1
- package/lib/components/table/Table/tableConfig/summary/index.d.ts +0 -1
- package/lib/hooks/useResponsive.d.ts +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/locales/en-US.d.ts +74 -0
- package/lib/locales/en-US.js +76 -1
- package/lib/locales/ja.d.ts +74 -0
- package/lib/locales/ja.js +75 -0
- package/lib/locales/pt.d.ts +74 -0
- package/lib/locales/pt.js +75 -0
- package/lib/locales/zh-CN.d.ts +74 -0
- package/lib/locales/zh-CN.js +76 -1
- package/lib/locales/zh-TW.d.ts +74 -0
- package/lib/locales/zh-TW.js +76 -1
- package/lib/pisell-materials.tw.css +1 -1
- package/package.json +3 -4
- package/es/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendarDemo.d.ts +0 -3
- package/es/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendarDemo.js +0 -6233
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendarDemo.d.ts +0 -3
- package/lib/components/pisellRecordBoard/shellFrame/Calendar/BookingCalendarDemo.js +0 -7079
|
@@ -1,10 +1,19 @@
|
|
|
1
|
+
var _excluded = ["resourceWallSortFieldKeys", "list"];
|
|
2
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
3
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
4
|
+
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
5
|
+
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
6
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
7
|
+
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
8
|
+
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
9
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
1
10
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
-
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
11
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
4
12
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
5
13
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
6
14
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
7
15
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
16
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
8
17
|
import React, { useCallback, useMemo } from 'react';
|
|
9
18
|
import classNames from 'classnames';
|
|
10
19
|
import { Button, Space, Segmented } from 'antd';
|
|
@@ -21,6 +30,7 @@ import { useRecordBoardContext } from "../../hooks/useRecordBoardContext";
|
|
|
21
30
|
import { locales as utilsLocales } from '@pisell/utils';
|
|
22
31
|
import { getText } from "../../../../locales";
|
|
23
32
|
import { deriveFilterFromColumns, deriveSortFromColumns } from "../../utils/recordBoardColumns";
|
|
33
|
+
import { DEFAULT_RESOURCE_WALL_STATUS_SORT_FIELD_KEYS, matchesResourceWallStatusSortField } from "../ResourceWall/venueWallUtils";
|
|
24
34
|
import "./ToolBarFilter.less";
|
|
25
35
|
import "./recordBoardToolbar.less";
|
|
26
36
|
|
|
@@ -30,6 +40,27 @@ function getSortButtonText() {
|
|
|
30
40
|
var u = utilsLocales.getText(key);
|
|
31
41
|
return u && u !== key ? u : getText(key) || getText('sort-button-text');
|
|
32
42
|
}
|
|
43
|
+
/** 资源墙无状态列派生项时注入:下拉仅「状态 → 空闲优先 / 占用优先」,仍渲染排序按钮 */
|
|
44
|
+
function buildResourceWallStatusSortFallbackItem(sortConfig) {
|
|
45
|
+
var extras = _typeof(sortConfig) === 'object' && sortConfig !== null && Array.isArray(sortConfig.resourceWallSortFieldKeys) ? sortConfig.resourceWallSortFieldKeys.map(function (x) {
|
|
46
|
+
return String(x).trim();
|
|
47
|
+
}).filter(Boolean) : [];
|
|
48
|
+
var primaryKey = extras.length > 0 ? extras[0] : DEFAULT_RESOURCE_WALL_STATUS_SORT_FIELD_KEYS[0];
|
|
49
|
+
return {
|
|
50
|
+
name: primaryKey,
|
|
51
|
+
label: getText('pisell2.recordBoard.toolbar.sortStatus'),
|
|
52
|
+
isCustom: true,
|
|
53
|
+
getSortItems: function getSortItems() {
|
|
54
|
+
return [{
|
|
55
|
+
key: "".concat(primaryKey, ":asc:option"),
|
|
56
|
+
label: getText('pisell2.recordBoard.toolbar.sortStatusFreeFirst')
|
|
57
|
+
}, {
|
|
58
|
+
key: "".concat(primaryKey, ":desc:option"),
|
|
59
|
+
label: getText('pisell2.recordBoard.toolbar.sortStatusOccupiedFirst')
|
|
60
|
+
}];
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
}
|
|
33
64
|
function getFilterButtonText() {
|
|
34
65
|
var key = 'pisell2.recordBoard.toolbar.filter';
|
|
35
66
|
var u = utilsLocales.getText(key);
|
|
@@ -235,10 +266,28 @@ var RecordBoardToolBar = function RecordBoardToolBar(props) {
|
|
|
235
266
|
onSearch(_objectSpread(_objectSpread({}, searchParams), {}, _defineProperty({}, SORT_PARAMS_FIELD, val || undefined)));
|
|
236
267
|
}, [onSearch, searchParams]);
|
|
237
268
|
var sortList = useMemo(function () {
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
269
|
+
/** `list: []` 若为 `??` 左值会得到空数组,无法回落到列派生;此处显式在非空时使用配置项 */
|
|
270
|
+
var configuredList = _typeof(sortConfig) === 'object' && sortConfig !== null && Array.isArray(sortConfig.list) ? sortConfig.list : null;
|
|
271
|
+
var base = configuredList != null && configuredList.length > 0 ? configuredList : derivedSortFromColumnsList;
|
|
272
|
+
if (bodyView !== 'resourceWall') {
|
|
273
|
+
return base;
|
|
274
|
+
}
|
|
275
|
+
var extraWallKeys = _typeof(sortConfig) === 'object' && sortConfig !== null && Array.isArray(sortConfig.resourceWallSortFieldKeys) ? sortConfig.resourceWallSortFieldKeys.map(String) : [];
|
|
276
|
+
var allowedKeys = [].concat(_toConsumableArray(DEFAULT_RESOURCE_WALL_STATUS_SORT_FIELD_KEYS.map(String)), _toConsumableArray(extraWallKeys));
|
|
277
|
+
var filtered = base.filter(function (item) {
|
|
278
|
+
return item.name != null && matchesResourceWallStatusSortField(String(item.name), allowedKeys);
|
|
279
|
+
});
|
|
280
|
+
if (filtered.length > 0) return filtered;
|
|
281
|
+
return [buildResourceWallStatusSortFallbackItem(sortConfig)];
|
|
282
|
+
}, [sortConfig, derivedSortFromColumnsList, bodyView]);
|
|
283
|
+
var sortSpreadRest = _typeof(sortConfig) === 'object' && sortConfig !== null ? function () {
|
|
284
|
+
var _ref3 = sortConfig,
|
|
285
|
+
_w = _ref3.resourceWallSortFieldKeys,
|
|
286
|
+
_omitList = _ref3.list,
|
|
287
|
+
rest = _objectWithoutProperties(_ref3, _excluded);
|
|
288
|
+
return rest;
|
|
289
|
+
}() : {};
|
|
290
|
+
var sortNode = hideSort ? null : /*#__PURE__*/React.createElement(Sort, _extends({}, sortSpreadRest, {
|
|
242
291
|
list: sortList,
|
|
243
292
|
value: sortValue,
|
|
244
293
|
onChange: handleSortChange,
|
|
@@ -264,12 +313,12 @@ var RecordBoardToolBar = function RecordBoardToolBar(props) {
|
|
|
264
313
|
// 若 otherFilter 来自 base(如 sessionStorage 恢复),JSON 会丢失函数(如 other.component),导致 custom 项空白;用 config 同 key 项补回 component/label 等
|
|
265
314
|
if (otherFilter === base.otherFilter && Array.isArray(defaultFilterFromConfig === null || defaultFilterFromConfig === void 0 ? void 0 : defaultFilterFromConfig.otherFilter) && defaultFilterFromConfig.otherFilter.length > 0) {
|
|
266
315
|
var configMap = new Map(defaultFilterFromConfig.otherFilter.map(function (c) {
|
|
267
|
-
var
|
|
268
|
-
return [(
|
|
316
|
+
var _ref4, _c$key;
|
|
317
|
+
return [(_ref4 = (_c$key = c.key) !== null && _c$key !== void 0 ? _c$key : c.name) !== null && _ref4 !== void 0 ? _ref4 : '', c];
|
|
269
318
|
}));
|
|
270
319
|
otherFilter = otherFilter.map(function (item) {
|
|
271
|
-
var
|
|
272
|
-
var key = (
|
|
320
|
+
var _ref5, _item$key2, _configItem$label, _configItem$other$pla, _configItem$other, _item$other;
|
|
321
|
+
var key = (_ref5 = (_item$key2 = item.key) !== null && _item$key2 !== void 0 ? _item$key2 : item.name) !== null && _ref5 !== void 0 ? _ref5 : '';
|
|
273
322
|
var configItem = configMap.get(key);
|
|
274
323
|
if (!configItem) return item;
|
|
275
324
|
// 优先用 config 的 label/placeholder(当前语言),避免 session 恢复的旧语言覆盖
|
|
@@ -283,12 +332,18 @@ var RecordBoardToolBar = function RecordBoardToolBar(props) {
|
|
|
283
332
|
}
|
|
284
333
|
var outQuick = quickFilter;
|
|
285
334
|
var outOther = otherFilter;
|
|
286
|
-
/**
|
|
335
|
+
/**
|
|
336
|
+
* 资源墙:Filter 弹层只保留「大屏资源多选」一项(与顶栏 quickFilter.filterList 中
|
|
337
|
+
* `resource_wall_resource_ids` 对应),不混入日期快筛 / 业务 otherFilter。
|
|
338
|
+
*/
|
|
287
339
|
if (bodyView === 'resourceWall') {
|
|
288
340
|
outQuick = [];
|
|
289
|
-
outOther = quickFilterList.
|
|
341
|
+
outOther = quickFilterList.filter(function (item) {
|
|
342
|
+
var _ref6, _item$key3;
|
|
343
|
+
return ((_ref6 = (_item$key3 = item.key) !== null && _item$key3 !== void 0 ? _item$key3 : item.name) !== null && _ref6 !== void 0 ? _ref6 : '') === resourceWallFilterFieldKey;
|
|
344
|
+
}).map(function (item) {
|
|
290
345
|
return _objectSpread({}, item);
|
|
291
|
-
})
|
|
346
|
+
});
|
|
292
347
|
}
|
|
293
348
|
return _objectSpread(_objectSpread({}, base), {}, {
|
|
294
349
|
quickFilter: outQuick,
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
4
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
5
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
6
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
7
|
+
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
8
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
3
9
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
4
10
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
5
11
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
@@ -25,6 +31,26 @@ import RecordBoardResourceWall from "./ResourceWall/RecordBoardResourceWall";
|
|
|
25
31
|
import { PisellRecordBoardResourceWallView } from "./ResourceWall/PisellRecordBoardResourceWallView";
|
|
26
32
|
import { RecordBoardShellBodyMetaContext } from "./ShellBodyMetaContext";
|
|
27
33
|
|
|
34
|
+
/**
|
|
35
|
+
* 槽位 props 与根级合并:**子组件显式传入**的键覆盖根级;子级为 `undefined` 的键不覆盖(避免吞掉根级回调)。
|
|
36
|
+
* 子槽无 props(`{}`)时直接沿用根级对象引用。
|
|
37
|
+
*/
|
|
38
|
+
function mergeRecordBoardSlotProps(root, child) {
|
|
39
|
+
if (!child || Object.keys(child).length === 0) {
|
|
40
|
+
return root;
|
|
41
|
+
}
|
|
42
|
+
var base = _objectSpread({}, root !== null && root !== void 0 ? root : {});
|
|
43
|
+
for (var _i = 0, _Object$entries = Object.entries(child); _i < _Object$entries.length; _i++) {
|
|
44
|
+
var _Object$entries$_i = _slicedToArray(_Object$entries[_i], 2),
|
|
45
|
+
key = _Object$entries$_i[0],
|
|
46
|
+
val = _Object$entries$_i[1];
|
|
47
|
+
if (val !== undefined) {
|
|
48
|
+
base[key] = val;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
return base;
|
|
52
|
+
}
|
|
53
|
+
|
|
28
54
|
/** fillHeight 时内容区可滚动、分页器贴底;默认表头 sticky;grid.scroll.autoCalc 时需测量高度供 scroll.y */
|
|
29
55
|
var FILL_HEIGHT_SCROLL_STYLE = {
|
|
30
56
|
flex: 1,
|
|
@@ -94,8 +120,7 @@ var RecordBoardShellFrame = function RecordBoardShellFrame(_ref2) {
|
|
|
94
120
|
/** 子组件 FloorMap 与根级 context.floorMapProps 合并,子 props 覆盖根级 */
|
|
95
121
|
var effectiveFloorMapProps = useMemo(function () {
|
|
96
122
|
if (hasFloorMapChild) {
|
|
97
|
-
|
|
98
|
-
return _objectSpread(_objectSpread({}, (_ctx$floorMapProps = ctx.floorMapProps) !== null && _ctx$floorMapProps !== void 0 ? _ctx$floorMapProps : {}), floorMapPropsFromChild !== null && floorMapPropsFromChild !== void 0 ? floorMapPropsFromChild : {});
|
|
123
|
+
return mergeRecordBoardSlotProps(ctx.floorMapProps, floorMapPropsFromChild);
|
|
99
124
|
}
|
|
100
125
|
return ctx.floorMapProps;
|
|
101
126
|
}, [hasFloorMapChild, floorMapPropsFromChild, ctx.floorMapProps]);
|
|
@@ -103,15 +128,13 @@ var RecordBoardShellFrame = function RecordBoardShellFrame(_ref2) {
|
|
|
103
128
|
/** 子组件 Calendar 与根级 context.calendarProps 合并,子 props 覆盖根级 */
|
|
104
129
|
var effectiveCalendarProps = useMemo(function () {
|
|
105
130
|
if (hasCalendarChild) {
|
|
106
|
-
|
|
107
|
-
return _objectSpread(_objectSpread({}, (_ctx$calendarProps = ctx.calendarProps) !== null && _ctx$calendarProps !== void 0 ? _ctx$calendarProps : {}), calendarPropsFromChild !== null && calendarPropsFromChild !== void 0 ? calendarPropsFromChild : {});
|
|
131
|
+
return mergeRecordBoardSlotProps(ctx.calendarProps, calendarPropsFromChild);
|
|
108
132
|
}
|
|
109
133
|
return ctx.calendarProps;
|
|
110
134
|
}, [hasCalendarChild, calendarPropsFromChild, ctx.calendarProps]);
|
|
111
135
|
var effectiveResourceWallProps = useMemo(function () {
|
|
112
136
|
if (hasResourceWallChild) {
|
|
113
|
-
|
|
114
|
-
return _objectSpread(_objectSpread({}, (_ctx$resourceWallProp = ctx.resourceWallProps) !== null && _ctx$resourceWallProp !== void 0 ? _ctx$resourceWallProp : {}), resourceWallPropsFromChild !== null && resourceWallPropsFromChild !== void 0 ? resourceWallPropsFromChild : {});
|
|
137
|
+
return mergeRecordBoardSlotProps(ctx.resourceWallProps, resourceWallPropsFromChild);
|
|
115
138
|
}
|
|
116
139
|
return ctx.resourceWallProps;
|
|
117
140
|
}, [hasResourceWallChild, resourceWallPropsFromChild, ctx.resourceWallProps]);
|
|
@@ -241,7 +264,11 @@ var RecordBoardShellFrame = function RecordBoardShellFrame(_ref2) {
|
|
|
241
264
|
value: shellBodyMeta
|
|
242
265
|
}, /*#__PURE__*/React.createElement(PisellShellFrame, {
|
|
243
266
|
className: classNames(className, {
|
|
244
|
-
|
|
267
|
+
/** 非表格主区:工具栏与内容区无缝(与 PisellShellFrame.less body-subview 配对) */
|
|
268
|
+
'pisell-shell-frame--body-subview': !showGrid,
|
|
269
|
+
'pisell-shell-frame--floor-map-view': showFloorMap,
|
|
270
|
+
'pisell-shell-frame--calendar-view': showCalendar,
|
|
271
|
+
'pisell-shell-frame--resource-wall-view': showResourceWall
|
|
245
272
|
}),
|
|
246
273
|
style: shellStyle,
|
|
247
274
|
config: {
|
|
@@ -226,6 +226,33 @@ export interface RecordBoardCalendarBookingRenderArgs {
|
|
|
226
226
|
onDragStart: (item: RecordBoardCalendarBookingLike) => void;
|
|
227
227
|
onJumpNext: () => void;
|
|
228
228
|
}
|
|
229
|
+
/**
|
|
230
|
+
* 月 / 周格内单条预约插槽参数。
|
|
231
|
+
* 未使用 {@link RecordBoardCalendarProps.renderMonthWeekBooking} 时,月 / 周格仅默认 booking(紫)/ block(红),不展示状态徽标与按状态的底色。
|
|
232
|
+
*/
|
|
233
|
+
export interface RecordBoardCalendarGridBookingRenderArgs {
|
|
234
|
+
item: RecordBoardCalendarBookingLike;
|
|
235
|
+
dateKey: string;
|
|
236
|
+
view: 'month' | 'week';
|
|
237
|
+
isLight: boolean;
|
|
238
|
+
/**
|
|
239
|
+
* 日历建议的外层样式(圆角、内边距、默认 booking/block 底色),可与自定义 `className` 拼接。
|
|
240
|
+
* 宿主若完全自定义外观,可忽略本字段。
|
|
241
|
+
*/
|
|
242
|
+
layoutClassName: string;
|
|
243
|
+
onOpenDetail: (item: RecordBoardCalendarBookingLike) => void;
|
|
244
|
+
/** 开始拖拽(月视图内置会处理 `draggable`;周格当前未挂 draggable,可自行在插槽内处理) */
|
|
245
|
+
onDragStart?: (item: RecordBoardCalendarBookingLike) => void;
|
|
246
|
+
draggable: boolean;
|
|
247
|
+
}
|
|
248
|
+
/** 拖拽改期的投放目标(与日历内部确认态 moveDraft 字段一致)。 */
|
|
249
|
+
export interface RecordBoardBookingMoveDraft {
|
|
250
|
+
targetCourtId: string;
|
|
251
|
+
/** `YYYY-MM-DD` */
|
|
252
|
+
targetDate: string;
|
|
253
|
+
/** 与日历 `hourSlots` 一致的浮点起点小时(可含半格如 9.5) */
|
|
254
|
+
targetHour: number;
|
|
255
|
+
}
|
|
229
256
|
/**
|
|
230
257
|
* 对接 `POST /shop/schedule/blocked-time` 的请求体(与后台字段一致)。
|
|
231
258
|
*/
|
|
@@ -239,9 +266,40 @@ export interface RecordBoardCalendarBlockedTimePayload {
|
|
|
239
266
|
/** `YYYY-MM-DD HH:mm` */
|
|
240
267
|
end_time: string;
|
|
241
268
|
}
|
|
269
|
+
/** 日视图连续空闲槽合并后的一段(与内置锁台面版预填一致) */
|
|
270
|
+
export interface RecordBoardBlockedTimeMergedRange {
|
|
271
|
+
courtId: string;
|
|
272
|
+
/** `YYYY-MM-DD` */
|
|
273
|
+
date: string;
|
|
274
|
+
/** 与时间轴一致的浮点小时 */
|
|
275
|
+
startHour: number;
|
|
276
|
+
endHour: number;
|
|
277
|
+
}
|
|
278
|
+
/** 日视图多选的空闲格 */
|
|
279
|
+
export interface RecordBoardCalendarSelectedFreeSlot {
|
|
280
|
+
courtId: string;
|
|
281
|
+
date: string;
|
|
282
|
+
hour: number;
|
|
283
|
+
court?: string;
|
|
284
|
+
}
|
|
285
|
+
/** 宿主弹出锁台/屏蔽表单时由日历传入的上下文(替代内置锁台面版) */
|
|
286
|
+
export interface RecordBoardBlockedTimePanelPayload {
|
|
287
|
+
/** 槽位步长(小时),与日历内部 `slotStepHours` 一致 */
|
|
288
|
+
slotStepHours: number;
|
|
289
|
+
/** 与 {@link RecordBoardCalendarProps.slotStepMinutes} 一致 */
|
|
290
|
+
slotStepMinutes: number;
|
|
291
|
+
/** 日视图锚定日 `YYYY-MM-DD` */
|
|
292
|
+
dayKey: string;
|
|
293
|
+
selectedFreeSlots: RecordBoardCalendarSelectedFreeSlot[];
|
|
294
|
+
mergedRange: RecordBoardBlockedTimeMergedRange;
|
|
295
|
+
}
|
|
242
296
|
/** 日历视图槽位 props:由 Shell 合并根级与子槽后传入 PisellRecordBoardCalendarView */
|
|
243
297
|
export interface RecordBoardCalendarProps {
|
|
244
298
|
persistGuard?: CalendarPersistContextValue;
|
|
299
|
+
/**
|
|
300
|
+
* 日历画布外观:亮色切换 `theme-root.theme-light`;未传或 `dark` 为深色(默认)。
|
|
301
|
+
*/
|
|
302
|
+
appearance?: 'light' | 'dark';
|
|
245
303
|
className?: string;
|
|
246
304
|
style?: CSSProperties;
|
|
247
305
|
/** 受控:画布等资源行;不传则使用内置演示数据 */
|
|
@@ -253,8 +311,18 @@ export interface RecordBoardCalendarProps {
|
|
|
253
311
|
* 点击预约条。返回 true 表示已消费(不再打开内置详情抽屉)。
|
|
254
312
|
*/
|
|
255
313
|
onBookingClick?: (item: RecordBoardCalendarBookingLike) => boolean | void;
|
|
314
|
+
/**
|
|
315
|
+
* 拖拽预约条松手且投放合法后,由宿主接管确认与持久化(例如业务侧 booking 改约弹窗)。
|
|
316
|
+
* **传入后**日历不再弹出内置 MoveConfirmModal,也不会写入本地 bookings。
|
|
317
|
+
* 返回 `true` 表示宿主已视为完成(一般由弹窗 resolve);`false`/`undefined`/reject 表示未生效。
|
|
318
|
+
*/
|
|
319
|
+
onBookingMoveRequest?: (payload: {
|
|
320
|
+
item: RecordBoardCalendarBookingLike;
|
|
321
|
+
draft: RecordBoardBookingMoveDraft;
|
|
322
|
+
}) => Promise<boolean | void>;
|
|
256
323
|
/**
|
|
257
324
|
* 锚点日 / 视图变化(月、周、日),用于父级扩展 booking 请求时间窗。
|
|
325
|
+
* 宿主导出时建议对拉数做 **debounce**(如 200–300ms),与切 `bodyView`、切日等快速操作对齐,避免重复请求。
|
|
258
326
|
*/
|
|
259
327
|
onViewportChange?: (payload: {
|
|
260
328
|
view: string;
|
|
@@ -282,8 +350,14 @@ export interface RecordBoardCalendarProps {
|
|
|
282
350
|
/**
|
|
283
351
|
* 保存「屏蔽时间」时提交(如 `/shop/schedule/blocked-time`)。
|
|
284
352
|
* 返回 `false` 表示未成功(弹窗保持);`true` 或 `undefined` 视为成功并关闭弹窗、清空选中。
|
|
353
|
+
* 若同时传 {@link onBlockedTimePanelRequest},内置锁台面版不再展示,本回调仅在内置路径生效。
|
|
285
354
|
*/
|
|
286
355
|
onBlockedTimeSave?: (payload: RecordBoardCalendarBlockedTimePayload) => Promise<boolean | void>;
|
|
356
|
+
/**
|
|
357
|
+
* 日视图选中连续空闲槽并点「屏蔽」时,由宿主弹出锁台表单(替代内置锁台面版)。
|
|
358
|
+
* **传入后**不再渲染内置屏蔽弹层;未传时仍使用内置表单 + {@link onBlockedTimeSave}。
|
|
359
|
+
*/
|
|
360
|
+
onBlockedTimePanelRequest?: (payload: RecordBoardBlockedTimePanelPayload) => Promise<boolean | void>;
|
|
287
361
|
/** 与接口 `blocked_sales_channels` 一致;默认 `['online_store']` */
|
|
288
362
|
blockedTimeSalesChannels?: string[];
|
|
289
363
|
/**
|
|
@@ -296,8 +370,14 @@ export interface RecordBoardCalendarProps {
|
|
|
296
370
|
* 若同时传 {@link renderTimelineHeader},则仅渲染插槽,**忽略**本字段。
|
|
297
371
|
*/
|
|
298
372
|
timelineHeaderGroups?: RecordBoardCalendarTimelineHeaderGroup[];
|
|
299
|
-
/**
|
|
373
|
+
/**
|
|
374
|
+
* 自定义日视图时间轴上的预约条内容(仅日视图 overlay 生效;月 / 周见 {@link renderMonthWeekBooking})。
|
|
375
|
+
*/
|
|
300
376
|
renderBooking?: (args: RecordBoardCalendarBookingRenderArgs) => ReactNode;
|
|
377
|
+
/**
|
|
378
|
+
* 自定义月 / 周格内单条预约。未传时仅默认 booking / block 样式与名称、时间,不展示迟到/取消等状态徽标与状态变色。
|
|
379
|
+
*/
|
|
380
|
+
renderMonthWeekBooking?: (args: RecordBoardCalendarGridBookingRenderArgs) => ReactNode;
|
|
301
381
|
/** 自定义周/日视图左侧资源列单元 */
|
|
302
382
|
renderResourceCell?: (args: RecordBoardCalendarResourceRenderArgs) => ReactNode;
|
|
303
383
|
}
|
|
@@ -353,8 +433,11 @@ export interface RecordBoardResourceWallLayoutPersist {
|
|
|
353
433
|
export declare const DEFAULT_RESOURCE_WALL_LAYOUT_PERSIST: RecordBoardResourceWallLayoutPersist;
|
|
354
434
|
/**
|
|
355
435
|
* 大屏资源墙视图 props;与 Shell 内 `PisellRecordBoard.ResourceWall` 合并(子优先)。
|
|
356
|
-
*
|
|
357
|
-
* **未写该键、值非数组、或 `[]
|
|
436
|
+
* 展示顺序默认由 `searchParams.filter.values[filterFieldKey]`(默认 `resource_wall_resource_ids`)非空 `string[]` 决定;
|
|
437
|
+
* **未写该键、值非数组、或 `[]`**:不展示卡片。**仅渲染 `cards` 中能按 `resourceId` 命中的项**;
|
|
438
|
+
* 命中不到的 id(例如磁盘残留的旧店铺 / 已删资源)直接剔除、不再回退成「数字占位卡」,磁盘清洗由宿主负责。
|
|
439
|
+
* 当 `searchParams.sort` 的字段名与 {@link RecordBoardResourceWallProps.statusSortFieldKeys} 匹配(默认 `status`)时,
|
|
440
|
+
* 在筛选顺序基础上按卡占用态重排:升序空闲在前,降序占用(inUse/将结/已结束)在前。
|
|
358
441
|
*/
|
|
359
442
|
export interface RecordBoardResourceWallProps {
|
|
360
443
|
className?: string;
|
|
@@ -367,6 +450,12 @@ export interface RecordBoardResourceWallProps {
|
|
|
367
450
|
* @default 'resource_wall_resource_ids'
|
|
368
451
|
*/
|
|
369
452
|
filterFieldKey?: string;
|
|
453
|
+
/**
|
|
454
|
+
* 与 ToolBar `searchParams.sort` 首段字段名比对(忽略大小写);命中时资源墙按卡状态重排。
|
|
455
|
+
* 列 key 不是 `status` 时传入实际字段名,例如 `['courtStatus']`。
|
|
456
|
+
* @default ['status']
|
|
457
|
+
*/
|
|
458
|
+
statusSortFieldKeys?: string[];
|
|
370
459
|
/** 六态文案/配色覆盖(与默认 map 浅合并);通常由宿主从 localStorage 水合 */
|
|
371
460
|
statusToneOverrides?: VenueWallStatusToneOverrides;
|
|
372
461
|
/** 覆盖变更时回调,宿主可写入 localStorage */
|
|
@@ -507,7 +596,11 @@ export interface RecordBoardToolBarProps {
|
|
|
507
596
|
search?: boolean | RecordBoardSearchProps;
|
|
508
597
|
/** 在 ToolBar 右侧渲染筛选:默认 PisellFilter;对象透传 PisellFilter props;false 不渲染。值存于 searchParams.filter */
|
|
509
598
|
filter?: boolean | RecordBoardFilterProps;
|
|
510
|
-
/**
|
|
599
|
+
/**
|
|
600
|
+
* 在 ToolBar 内、筛选左侧渲染排序:默认 Sort;对象可传 list、placement 等;false 不渲染。值存于 searchParams.sort。
|
|
601
|
+
* 资源墙视图:排序**菜单内**仅保留「状态」相关项(其余排序仅在表格等视图出现);若无状态列派生项,会注入「空闲优先 / 占用优先」子项。
|
|
602
|
+
* 可传 `resourceWallSortFieldKeys: string[]` 与非 `status` 列 key 对齐。表格/平面图/日历仍使用完整排序列表。
|
|
603
|
+
*/
|
|
511
604
|
sort?: boolean | Record<string, any>;
|
|
512
605
|
/**
|
|
513
606
|
* 在 ToolBar 左侧展示内联快速筛选(替代 Filter 弹层内的 quickFilter)。
|
|
@@ -58,10 +58,23 @@
|
|
|
58
58
|
|
|
59
59
|
/** 自定义日视图中间预约条外层容器内层(定位仍由日历负责) */
|
|
60
60
|
|
|
61
|
+
/**
|
|
62
|
+
* 月 / 周格内单条预约插槽参数。
|
|
63
|
+
* 未使用 {@link RecordBoardCalendarProps.renderMonthWeekBooking} 时,月 / 周格仅默认 booking(紫)/ block(红),不展示状态徽标与按状态的底色。
|
|
64
|
+
*/
|
|
65
|
+
|
|
66
|
+
/** 拖拽改期的投放目标(与日历内部确认态 moveDraft 字段一致)。 */
|
|
67
|
+
|
|
61
68
|
/**
|
|
62
69
|
* 对接 `POST /shop/schedule/blocked-time` 的请求体(与后台字段一致)。
|
|
63
70
|
*/
|
|
64
71
|
|
|
72
|
+
/** 日视图连续空闲槽合并后的一段(与内置锁台面版预填一致) */
|
|
73
|
+
|
|
74
|
+
/** 日视图多选的空闲格 */
|
|
75
|
+
|
|
76
|
+
/** 宿主弹出锁台/屏蔽表单时由日历传入的上下文(替代内置锁台面版) */
|
|
77
|
+
|
|
65
78
|
/** 日历视图槽位 props:由 Shell 合并根级与子槽后传入 PisellRecordBoardCalendarView */
|
|
66
79
|
|
|
67
80
|
/**
|
|
@@ -86,8 +99,11 @@ export var DEFAULT_RESOURCE_WALL_LAYOUT_PERSIST = {
|
|
|
86
99
|
|
|
87
100
|
/**
|
|
88
101
|
* 大屏资源墙视图 props;与 Shell 内 `PisellRecordBoard.ResourceWall` 合并(子优先)。
|
|
89
|
-
*
|
|
90
|
-
* **未写该键、值非数组、或 `[]
|
|
102
|
+
* 展示顺序默认由 `searchParams.filter.values[filterFieldKey]`(默认 `resource_wall_resource_ids`)非空 `string[]` 决定;
|
|
103
|
+
* **未写该键、值非数组、或 `[]`**:不展示卡片。**仅渲染 `cards` 中能按 `resourceId` 命中的项**;
|
|
104
|
+
* 命中不到的 id(例如磁盘残留的旧店铺 / 已删资源)直接剔除、不再回退成「数字占位卡」,磁盘清洗由宿主负责。
|
|
105
|
+
* 当 `searchParams.sort` 的字段名与 {@link RecordBoardResourceWallProps.statusSortFieldKeys} 匹配(默认 `status`)时,
|
|
106
|
+
* 在筛选顺序基础上按卡占用态重排:升序空闲在前,降序占用(inUse/将结/已结束)在前。
|
|
91
107
|
*/
|
|
92
108
|
|
|
93
109
|
/**
|
|
@@ -45,18 +45,39 @@
|
|
|
45
45
|
border-radius: 0;
|
|
46
46
|
background: #141824;
|
|
47
47
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
48
|
+
/**
|
|
49
|
+
* 布局:auto | minmax(0,1fr) | auto
|
|
50
|
+
* - 左:标题 + 视图切换等内容宽占位
|
|
51
|
+
* - 右:「+ New」等固定贴行末
|
|
52
|
+
* - 中间:仅占左、右之间的剩余宽度;选日期 / 跟随时间文案在该「中间区域」内居中(见 .pisell-reservation-schedule-band-schedule)
|
|
53
|
+
*/
|
|
54
|
+
/** 左/右栏 min-width:max-content 后整行可能超出视口,允许横向滚动而非压扁左侧 */
|
|
55
|
+
overflow-x: auto;
|
|
56
|
+
overflow-y: visible;
|
|
48
57
|
}
|
|
49
58
|
|
|
50
59
|
.pisell-reservation-schedule-band-slot-start {
|
|
51
60
|
justify-self: start;
|
|
52
|
-
min-width:
|
|
61
|
+
/** 勿用 min-width:0:会把「标题 + Segmented」挤折行;max-content 保证左侧优先单行横排 */
|
|
62
|
+
min-width: max-content;
|
|
53
63
|
display: flex;
|
|
54
64
|
align-items: center;
|
|
65
|
+
flex-direction: row;
|
|
66
|
+
flex-wrap: nowrap;
|
|
67
|
+
/** 中间栏内容偶发溢出绘制时压在左侧 Tab 上,保证左侧在上层 */
|
|
68
|
+
position: relative;
|
|
69
|
+
z-index: 1;
|
|
70
|
+
/** 业务侧(如预约)在插槽里再包一层 merge 时,保证子级也按内容宽参与列宽计算,避免整条 min-width:0 收缩链 */
|
|
71
|
+
> * {
|
|
72
|
+
min-width: max-content;
|
|
73
|
+
flex-shrink: 0;
|
|
74
|
+
}
|
|
55
75
|
}
|
|
56
76
|
|
|
57
77
|
.pisell-reservation-schedule-band-slot-end {
|
|
58
78
|
justify-self: end;
|
|
59
|
-
|
|
79
|
+
/** 右侧按钮区同样保留完整占位,避免被 1fr 中间列挤压 */
|
|
80
|
+
min-width: max-content;
|
|
60
81
|
display: flex;
|
|
61
82
|
align-items: center;
|
|
62
83
|
}
|
|
@@ -68,7 +89,18 @@
|
|
|
68
89
|
flex-direction: row;
|
|
69
90
|
flex-wrap: nowrap;
|
|
70
91
|
align-items: center;
|
|
92
|
+
/**
|
|
93
|
+
* 仅在 Grid 的中间列(左、右扣掉之后的剩余宽度)内居中选日区;
|
|
94
|
+
* 不与「整行居中」混淆,也不会贴死到 + New。
|
|
95
|
+
*/
|
|
71
96
|
justify-content: center;
|
|
97
|
+
@supports (justify-content: safe center) {
|
|
98
|
+
justify-content: safe center;
|
|
99
|
+
}
|
|
100
|
+
/** 中间块总宽超过中间列时在本格内滚动,避免向左绘制盖住左侧 Segmented */
|
|
101
|
+
overflow-x: auto;
|
|
102
|
+
overflow-y: visible;
|
|
103
|
+
box-sizing: border-box;
|
|
72
104
|
/** 日期与右侧「当前时间」等插槽留出间距,避免贴太紧 */
|
|
73
105
|
gap: 14px;
|
|
74
106
|
}
|
|
@@ -36,8 +36,11 @@
|
|
|
36
36
|
margin-bottom: 8px;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
/**
|
|
40
|
-
|
|
39
|
+
/**
|
|
40
|
+
* RecordBoard 非表格主区(平面图 / 日历 / 资源墙):与顶栏日程带衔接,去掉工具栏与内容区间距。
|
|
41
|
+
* `--floor-map-view` 仍可在仅平面图场景单独挂类;规则与 body-subview 一致。
|
|
42
|
+
*/
|
|
43
|
+
&--body-subview &-toolbar,
|
|
41
44
|
&--floor-map-view &-toolbar {
|
|
42
45
|
margin-bottom: 0;
|
|
43
46
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
declare type ResponsiveConfig = Record<string, number>;
|
|
2
2
|
export declare function configResponsive(config: ResponsiveConfig): void;
|
|
3
|
-
export default function useResponsive(): "pc" | "
|
|
3
|
+
export default function useResponsive(): "pc" | "phone" | "ipad";
|
|
4
4
|
export {};
|
package/es/index.d.ts
CHANGED
|
@@ -131,7 +131,7 @@ export { PisellRecordBoardCalendarView, CalendarPersistProvider, } from './compo
|
|
|
131
131
|
export { PisellRecordBoardResourceWallView, DEFAULT_RESOURCE_WALL_FILTER_FIELD_KEY, } from './components/pisellRecordBoard/shellFrame/ResourceWall/PisellRecordBoardResourceWallView';
|
|
132
132
|
export { getVenueWallStatusToneMap, diffVenueWallStatusToneOverrides, } from './components/pisellRecordBoard/shellFrame/ResourceWall/venueWallUtils';
|
|
133
133
|
export type { VenueWallStatusKey, VenueWallStatusTone, VenueWallStatusToneOverrides, VenueWallAppearanceSlot, VenueWallAppearanceTheme, } from './components/pisellRecordBoard/shellFrame/ResourceWall/venueWallUtils';
|
|
134
|
-
export type { RecordBoardContextValue, RecordBoardChildComponentProps, RecordBoardColumnType, RecordBoardProps, RecordBoardToolBarProps, RecordBoardBodyView, RecordBoardCalendarProps, RecordBoardCalendarBlockedTimePayload, RecordBoardCalendarResource, RecordBoardCalendarBookingLike, RecordBoardCalendarDayOverlayBooking, RecordBoardCalendarTimelineHeaderGroup, RecordBoardCalendarTimelineHeaderRenderContext, RecordBoardCalendarResourceRenderArgs, RecordBoardCalendarBookingRenderArgs, RecordBoardResourceWallProps, RecordBoardResourceWallCardModel, RecordBoardResourceWallLayoutPersist, } from './components/pisellRecordBoard';
|
|
134
|
+
export type { RecordBoardContextValue, RecordBoardChildComponentProps, RecordBoardColumnType, RecordBoardProps, RecordBoardToolBarProps, RecordBoardBodyView, RecordBoardCalendarProps, RecordBoardCalendarBlockedTimePayload, RecordBoardCalendarResource, RecordBoardCalendarBookingLike, RecordBoardCalendarDayOverlayBooking, RecordBoardCalendarTimelineHeaderGroup, RecordBoardCalendarTimelineHeaderRenderContext, RecordBoardCalendarResourceRenderArgs, RecordBoardCalendarBookingRenderArgs, RecordBoardBookingMoveDraft, RecordBoardBlockedTimeMergedRange, RecordBoardBlockedTimePanelPayload, RecordBoardCalendarSelectedFreeSlot, RecordBoardResourceWallProps, RecordBoardResourceWallCardModel, RecordBoardResourceWallLayoutPersist, } from './components/pisellRecordBoard';
|
|
135
135
|
export { DEFAULT_RESOURCE_WALL_LAYOUT_PERSIST } from './components/pisellRecordBoard';
|
|
136
136
|
export type { CalendarPersistKind, CalendarPersistContextValue, PisellRecordBoardCalendarViewProps, } from './components/pisellRecordBoard/shellFrame/Calendar';
|
|
137
137
|
export { PisellShellFrame } from './components/pisellShellFrame';
|
package/es/locales/en-US.d.ts
CHANGED
|
@@ -179,6 +179,9 @@ declare const _default: {
|
|
|
179
179
|
'pisell2.recordBoard.toolbar.find': string;
|
|
180
180
|
'pisell2.recordBoard.toolbar.findPlaceholder': string;
|
|
181
181
|
'pisell2.recordBoard.toolbar.sort': string;
|
|
182
|
+
'pisell2.recordBoard.toolbar.sortStatus': string;
|
|
183
|
+
'pisell2.recordBoard.toolbar.sortStatusFreeFirst': string;
|
|
184
|
+
'pisell2.recordBoard.toolbar.sortStatusOccupiedFirst': string;
|
|
182
185
|
'pisell2.recordBoard.toolbar.filter': string;
|
|
183
186
|
'pisell2.recordBoard.toolbar.reset': string;
|
|
184
187
|
'pisell2.recordBoard.toolbar.viewGrid': string;
|
|
@@ -186,6 +189,77 @@ declare const _default: {
|
|
|
186
189
|
'pisell2.recordBoard.toolbar.viewCalendar': string;
|
|
187
190
|
'pisell2.recordBoard.toolbar.viewResourceWall': string;
|
|
188
191
|
'pisell2.recordBoard.filter.placeholderEnter': string;
|
|
192
|
+
'pisell2.recordBoard.calendar.common.close': string;
|
|
193
|
+
'pisell2.recordBoard.calendar.common.cancel': string;
|
|
194
|
+
'pisell2.recordBoard.calendar.common.save': string;
|
|
195
|
+
'pisell2.recordBoard.calendar.common.saving': string;
|
|
196
|
+
'pisell2.recordBoard.calendar.common.resourceFallback': string;
|
|
197
|
+
'pisell2.recordBoard.calendar.common.newBookingName': string;
|
|
198
|
+
'pisell2.recordBoard.calendar.weekday.mon': string;
|
|
199
|
+
'pisell2.recordBoard.calendar.weekday.tue': string;
|
|
200
|
+
'pisell2.recordBoard.calendar.weekday.wed': string;
|
|
201
|
+
'pisell2.recordBoard.calendar.weekday.thu': string;
|
|
202
|
+
'pisell2.recordBoard.calendar.weekday.fri': string;
|
|
203
|
+
'pisell2.recordBoard.calendar.weekday.sat': string;
|
|
204
|
+
'pisell2.recordBoard.calendar.weekday.sun': string;
|
|
205
|
+
'pisell2.recordBoard.calendar.block.panelTitle': string;
|
|
206
|
+
'pisell2.recordBoard.calendar.block.defaultTitle': string;
|
|
207
|
+
'pisell2.recordBoard.calendar.block.fieldTitle': string;
|
|
208
|
+
'pisell2.recordBoard.calendar.block.fieldNote': string;
|
|
209
|
+
'pisell2.recordBoard.calendar.block.fieldResource': string;
|
|
210
|
+
'pisell2.recordBoard.calendar.block.fieldTimeRange': string;
|
|
211
|
+
'pisell2.recordBoard.calendar.block.placeholderTitle': string;
|
|
212
|
+
'pisell2.recordBoard.calendar.block.placeholderNote': string;
|
|
213
|
+
'pisell2.recordBoard.calendar.block.noResource': string;
|
|
214
|
+
'pisell2.recordBoard.calendar.block.closeAria': string;
|
|
215
|
+
'pisell2.recordBoard.calendar.block.warnSelectTime': string;
|
|
216
|
+
'pisell2.recordBoard.calendar.block.warnEndAfterStart': string;
|
|
217
|
+
'pisell2.recordBoard.calendar.block.warnSelectResource': string;
|
|
218
|
+
'pisell2.recordBoard.calendar.overflow.bookingsForDay': string;
|
|
219
|
+
'pisell2.recordBoard.calendar.overflow.listTitleBookings': string;
|
|
220
|
+
'pisell2.recordBoard.calendar.overflow.listTitleAllBookings': string;
|
|
221
|
+
'pisell2.recordBoard.calendar.overflow.moreCount': string;
|
|
222
|
+
'pisell2.recordBoard.calendar.move.title': string;
|
|
223
|
+
'pisell2.recordBoard.calendar.move.subtitle': string;
|
|
224
|
+
'pisell2.recordBoard.calendar.move.customer': string;
|
|
225
|
+
'pisell2.recordBoard.calendar.move.court': string;
|
|
226
|
+
'pisell2.recordBoard.calendar.move.newDate': string;
|
|
227
|
+
'pisell2.recordBoard.calendar.move.newStartTime': string;
|
|
228
|
+
'pisell2.recordBoard.calendar.move.newEndTime': string;
|
|
229
|
+
'pisell2.recordBoard.calendar.move.previousInfo': string;
|
|
230
|
+
'pisell2.recordBoard.calendar.move.original': string;
|
|
231
|
+
'pisell2.recordBoard.calendar.move.dropTarget': string;
|
|
232
|
+
'pisell2.recordBoard.calendar.move.updated': string;
|
|
233
|
+
'pisell2.recordBoard.calendar.move.confirm': string;
|
|
234
|
+
'pisell2.recordBoard.calendar.move.noPhone': string;
|
|
235
|
+
'pisell2.recordBoard.calendar.move.noEmail': string;
|
|
236
|
+
'pisell2.recordBoard.calendar.move.courtFallback': string;
|
|
237
|
+
'pisell2.recordBoard.calendar.move.slotDisabled': string;
|
|
238
|
+
'pisell2.recordBoard.calendar.week.headerCourtDate': string;
|
|
239
|
+
'pisell2.recordBoard.calendar.week.fullyBooked': string;
|
|
240
|
+
'pisell2.recordBoard.calendar.week.available': string;
|
|
241
|
+
'pisell2.recordBoard.calendar.day.outsideHours': string;
|
|
242
|
+
'pisell2.recordBoard.calendar.day.selectedBlock': string;
|
|
243
|
+
'pisell2.recordBoard.calendar.day.selected': string;
|
|
244
|
+
'pisell2.recordBoard.calendar.day.tapToSelect': string;
|
|
245
|
+
'pisell2.recordBoard.calendar.day.deselectAll': string;
|
|
246
|
+
'pisell2.recordBoard.calendar.day.openSlot': string;
|
|
247
|
+
'pisell2.recordBoard.calendar.day.block': string;
|
|
248
|
+
'pisell2.recordBoard.calendar.day.createBooking': string;
|
|
249
|
+
'pisell2.recordBoard.calendar.day.freeRatio': string;
|
|
250
|
+
'pisell2.recordBoard.calendar.card.continuesNext': string;
|
|
251
|
+
'pisell2.recordBoard.calendar.card.blockBy': string;
|
|
252
|
+
'pisell2.recordBoard.calendar.card.lateMinutesBadge': string;
|
|
253
|
+
'pisell2.recordBoard.calendar.card.lateMinutesDetail': string;
|
|
254
|
+
'pisell2.recordBoard.calendar.status.cancel': string;
|
|
255
|
+
'pisell2.recordBoard.calendar.status.change': string;
|
|
256
|
+
'pisell2.recordBoard.calendar.status.checkedIn': string;
|
|
257
|
+
'pisell2.recordBoard.calendar.status.pending': string;
|
|
258
|
+
'pisell2.recordBoard.calendar.status.new': string;
|
|
259
|
+
'pisell2.recordBoard.calendar.status.late': string;
|
|
260
|
+
'pisell2.recordBoard.calendar.status.noShow': string;
|
|
261
|
+
'pisell2.recordBoard.calendar.detail.staff': string;
|
|
262
|
+
'pisell2.recordBoard.calendar.detail.orderNote': string;
|
|
189
263
|
'pisell2.salesManagement.pagination.previous': string;
|
|
190
264
|
'pisell2.salesManagement.pagination.next': string;
|
|
191
265
|
'pisell2.salesManagement.pagination.showTotal': (start: number, end: number) => string;
|