@bryntum/calendar-vue-3 7.2.3 → 7.2.4
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/lib/chunks/{DBQayOqn.js → BDTNWR5N.js} +7 -5
- package/lib/chunks/{DBQayOqn.js.map → BDTNWR5N.js.map} +1 -1
- package/lib/chunks/BIZkK5rf.js.map +1 -1
- package/lib/chunks/BWnGGswQ.js.map +1 -1
- package/lib/chunks/{LuH47Bqk.js → B_G0FwYy.js} +3 -1
- package/lib/chunks/{LuH47Bqk.js.map → B_G0FwYy.js.map} +1 -1
- package/lib/chunks/BclPIY1S.js.map +1 -1
- package/lib/chunks/BwSsnMqD.js.map +1 -1
- package/lib/chunks/C2mWiGAY.js.map +1 -1
- package/lib/chunks/C5iF2l6i.js.map +1 -1
- package/lib/chunks/Ckl-wIwj.js.map +1 -1
- package/lib/chunks/{BAW_NqgP.js → CmjLe7_l.js} +5 -3
- package/lib/chunks/{BAW_NqgP.js.map → CmjLe7_l.js.map} +1 -1
- package/lib/chunks/DAw8jYZJ.js.map +1 -1
- package/lib/chunks/Dqdy0S36.js.map +1 -1
- package/lib/chunks/{DtKmEeJb.js → QeGOhsbk.js} +3 -1
- package/lib/chunks/{DtKmEeJb.js.map → QeGOhsbk.js.map} +1 -1
- package/lib/chunks/iDCR6UCK.js.map +1 -1
- package/lib/components/BryntumDayAgendaView.js +1 -1
- package/lib/components/BryntumDayResourceView.js +1 -1
- package/lib/components/BryntumDayView.js +1 -1
- package/lib/components/BryntumWeekView.js +1 -1
- package/lib/index.js +4 -4
- package/package.json +1 -1
- package/src/components/BryntumAgendaView.vue +4 -3
- package/src/components/BryntumAgendaViewProps.ts +4 -3
- package/src/components/BryntumCalendar.vue +2 -2
- package/src/components/BryntumDayAgendaView.vue +8 -0
- package/src/components/BryntumDayAgendaViewProps.ts +7 -0
- package/src/components/BryntumDayResourceView.vue +12 -3
- package/src/components/BryntumDayResourceViewProps.ts +11 -3
- package/src/components/BryntumDayView.vue +12 -3
- package/src/components/BryntumDayViewProps.ts +11 -3
- package/src/components/BryntumEventList.vue +4 -3
- package/src/components/BryntumEventListProps.ts +4 -3
- package/src/components/BryntumMonthGrid.vue +5 -4
- package/src/components/BryntumMonthGridProps.ts +5 -4
- package/src/components/BryntumMonthView.vue +7 -4
- package/src/components/BryntumMonthViewProps.ts +7 -4
- package/src/components/BryntumResourceView.vue +4 -3
- package/src/components/BryntumResourceViewProps.ts +4 -3
- package/src/components/BryntumScheduler.vue +3 -3
- package/src/components/BryntumSchedulerBase.vue +3 -3
- package/src/components/BryntumTimelineHistogram.vue +3 -3
- package/src/components/BryntumWeekView.vue +12 -3
- package/src/components/BryntumWeekViewProps.ts +11 -3
- package/src/components/BryntumYearView.vue +5 -4
- package/src/components/BryntumYearViewProps.ts +5 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as h, ref as i, provide as u, onMounted as y, getCurrentInstance as g, toRaw as f, onBeforeUnmount as S, openBlock as v, createElementBlock as D, watch as C } from "vue";
|
|
2
2
|
import { DayAgendaView as b } from "@bryntum/calendar";
|
|
3
3
|
import { WrapperHelper as s } from "../helper/WrapperHelper.js";
|
|
4
|
-
const H = /* @__PURE__ */
|
|
4
|
+
const H = /* @__PURE__ */ h({
|
|
5
5
|
__name: "BryntumDayAgendaView",
|
|
6
6
|
props: {
|
|
7
7
|
actionButtons: {},
|
|
@@ -156,6 +156,7 @@ const H = /* @__PURE__ */ u({
|
|
|
156
156
|
shiftIncrement: {},
|
|
157
157
|
shortDateFormat: { type: [String, Function] },
|
|
158
158
|
shortDateTimeFormat: { type: [String, Function] },
|
|
159
|
+
shortEventHeight: {},
|
|
159
160
|
showAllDayHeader: {},
|
|
160
161
|
showAnimation: {},
|
|
161
162
|
showBullet: {},
|
|
@@ -417,6 +418,7 @@ const H = /* @__PURE__ */ u({
|
|
|
417
418
|
"shiftIncrement",
|
|
418
419
|
"shortDateFormat",
|
|
419
420
|
"shortDateTimeFormat",
|
|
421
|
+
"shortEventHeight",
|
|
420
422
|
"showTime",
|
|
421
423
|
"snapRelativeToEventStartDate",
|
|
422
424
|
"span",
|
|
@@ -493,7 +495,7 @@ const H = /* @__PURE__ */ u({
|
|
|
493
495
|
"toolClick"
|
|
494
496
|
]
|
|
495
497
|
}, e = {}, t = i(), o = i(/* @__PURE__ */ new Map());
|
|
496
|
-
return
|
|
498
|
+
return u("teleports", o), y(() => {
|
|
497
499
|
const a = g();
|
|
498
500
|
e.value = s.createWidget({
|
|
499
501
|
me: a,
|
|
@@ -510,7 +512,7 @@ const H = /* @__PURE__ */ u({
|
|
|
510
512
|
instance: e,
|
|
511
513
|
refElement: t,
|
|
512
514
|
teleports: o
|
|
513
|
-
}), (a, r) => (
|
|
515
|
+
}), (a, r) => (v(), D("div", {
|
|
514
516
|
ref_key: "refElement",
|
|
515
517
|
ref: t
|
|
516
518
|
}, null, 512));
|
|
@@ -519,4 +521,4 @@ const H = /* @__PURE__ */ u({
|
|
|
519
521
|
export {
|
|
520
522
|
H as _
|
|
521
523
|
};
|
|
522
|
-
//# sourceMappingURL=
|
|
524
|
+
//# sourceMappingURL=BDTNWR5N.js.map
|