@timum/booking 1.10.1 → 1.10.3
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/README.md +1 -1
- package/build/booking.js +17 -4
- package/build/booking.umd.cjs +73 -73
- package/build/component/booking.js +17 -4
- package/build/component/booking.umd.cjs +67 -67
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -753,7 +753,7 @@ fields: {
|
|
|
753
753
|
.test(
|
|
754
754
|
'no-emojis',
|
|
755
755
|
'validation.no_emojis',
|
|
756
|
-
(value) => !RE_EMOJI.test(value),
|
|
756
|
+
(value) => !RE_EMOJI.test(value), // import with 'import { RE_EMOJI } from @timum/booking'
|
|
757
757
|
),
|
|
758
758
|
limit: 1024,
|
|
759
759
|
onChange: (value) => value.replace(RE_EMOJI, ''),
|
package/build/booking.js
CHANGED
|
@@ -67157,11 +67157,12 @@ function jKe(e) {
|
|
|
67157
67157
|
children: /* @__PURE__ */ $.jsx(p4, { CalendarView: EN })
|
|
67158
67158
|
}
|
|
67159
67159
|
),
|
|
67160
|
-
r === "pureListView" && /* @__PURE__ */ $.jsx(
|
|
67160
|
+
(r === "pureListView" || r === "listView") && /* @__PURE__ */ $.jsx(
|
|
67161
67161
|
cd,
|
|
67162
67162
|
{
|
|
67163
67163
|
...e,
|
|
67164
67164
|
...i.pureListView,
|
|
67165
|
+
...i.listView,
|
|
67165
67166
|
bookables: (t == null ? void 0 : t.bookables) ?? void 0,
|
|
67166
67167
|
products: (t == null ? void 0 : t.products) ?? void 0,
|
|
67167
67168
|
children: /* @__PURE__ */ $.jsx(b9, {})
|
|
@@ -67197,13 +67198,22 @@ function jKe(e) {
|
|
|
67197
67198
|
children: /* @__PURE__ */ $.jsx(p4, { CalendarView: AN })
|
|
67198
67199
|
}
|
|
67199
67200
|
),
|
|
67200
|
-
r !== "fullCalendar" && r !== "detailsFullCalendar" && r !== "condensedView" && r !== "detailsCondensedView" && r !== "detailsListView" && r !== "pureListView" && /* @__PURE__ */ $.jsxs($.Fragment, { children: [
|
|
67201
|
+
r !== "fullCalendar" && r !== "detailsFullCalendar" && r !== "condensedView" && r !== "detailsCondensedView" && r !== "detailsListView" && r !== "listView" && r !== "pureListView" && /* @__PURE__ */ $.jsxs($.Fragment, { children: [
|
|
67201
67202
|
"You must set calendarFrontend either to ",
|
|
67202
67203
|
/* @__PURE__ */ $.jsx("code", { children: "fullCalendar" }),
|
|
67203
67204
|
",",
|
|
67205
|
+
" ",
|
|
67206
|
+
/* @__PURE__ */ $.jsx("code", { children: "detailsFullCalendar" }),
|
|
67207
|
+
",",
|
|
67208
|
+
/* @__PURE__ */ $.jsx("code", { children: "listView" }),
|
|
67209
|
+
",",
|
|
67210
|
+
" ",
|
|
67204
67211
|
/* @__PURE__ */ $.jsx("code", { children: "detailsListView" }),
|
|
67205
|
-
"
|
|
67206
|
-
/* @__PURE__ */ $.jsx("code", { children: "
|
|
67212
|
+
", ",
|
|
67213
|
+
/* @__PURE__ */ $.jsx("code", { children: "condensedView" }),
|
|
67214
|
+
" or",
|
|
67215
|
+
" ",
|
|
67216
|
+
/* @__PURE__ */ $.jsx("code", { children: "detailsCondensedView" }),
|
|
67207
67217
|
" in your config."
|
|
67208
67218
|
] })
|
|
67209
67219
|
] });
|
|
@@ -67690,6 +67700,8 @@ const ql = 14, cu = '"Ek Mukta","Helvetica Neue", Helvetica, Arial, sans-serif',
|
|
|
67690
67700
|
initialView: "timeGridWeek",
|
|
67691
67701
|
useCustomTimumCss: !0,
|
|
67692
67702
|
displayEventEnd: !1,
|
|
67703
|
+
scrollTimeReset: !1,
|
|
67704
|
+
scrollTime: "09:00:00",
|
|
67693
67705
|
views: {
|
|
67694
67706
|
timeGridWeek: {
|
|
67695
67707
|
slotMinTime: "08:00:00",
|
|
@@ -70800,6 +70812,7 @@ function wXe({ appConfig: e, muiTheme: t, fcConfig: n }) {
|
|
|
70800
70812
|
);
|
|
70801
70813
|
}
|
|
70802
70814
|
export {
|
|
70815
|
+
RN as RE_EMOJI,
|
|
70803
70816
|
re as React,
|
|
70804
70817
|
wXe as TimumBooking,
|
|
70805
70818
|
yXe as i18next,
|