fullcalendar 6.1.9 → 6.1.10
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/index.global.js +125 -112
- package/index.global.min.js +2 -2
- package/package.json +7 -7
package/index.global.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
FullCalendar Standard Bundle v6.1.
|
|
2
|
+
FullCalendar Standard Bundle v6.1.10
|
|
3
3
|
Docs & License: https://fullcalendar.io/docs/initialize-globals
|
|
4
4
|
(c) 2023 Adam Shaw
|
|
5
5
|
*/
|
|
@@ -1484,6 +1484,7 @@ var FullCalendar = (function (exports) {
|
|
|
1484
1484
|
// (can't be part of plugin system b/c must be provided at runtime)
|
|
1485
1485
|
handleCustomRendering: identity,
|
|
1486
1486
|
customRenderingMetaMap: identity,
|
|
1487
|
+
customRenderingReplaces: Boolean,
|
|
1487
1488
|
};
|
|
1488
1489
|
// do NOT give a type here. need `typeof BASE_OPTION_DEFAULTS` to give real results.
|
|
1489
1490
|
// raw values.
|
|
@@ -2399,7 +2400,9 @@ var FullCalendar = (function (exports) {
|
|
|
2399
2400
|
this.queuedDomNodes = [];
|
|
2400
2401
|
this.currentDomNodes = [];
|
|
2401
2402
|
this.handleEl = (el) => {
|
|
2402
|
-
|
|
2403
|
+
const { options } = this.context;
|
|
2404
|
+
const { generatorName } = this.props;
|
|
2405
|
+
if (!options.customRenderingReplaces || !hasCustomRenderingHandler(generatorName, options)) {
|
|
2403
2406
|
this.updateElRef(el);
|
|
2404
2407
|
}
|
|
2405
2408
|
};
|
|
@@ -2499,7 +2502,9 @@ var FullCalendar = (function (exports) {
|
|
|
2499
2502
|
});
|
|
2500
2503
|
// Util
|
|
2501
2504
|
/*
|
|
2502
|
-
Does UI-framework provide custom way of rendering
|
|
2505
|
+
Does UI-framework provide custom way of rendering that does not use Preact VDOM
|
|
2506
|
+
AND does the calendar's options define custom rendering?
|
|
2507
|
+
AKA. Should we NOT render the default content?
|
|
2503
2508
|
*/
|
|
2504
2509
|
function hasCustomRenderingHandler(generatorName, options) {
|
|
2505
2510
|
var _a;
|
|
@@ -2535,6 +2540,9 @@ var FullCalendar = (function (exports) {
|
|
|
2535
2540
|
this.el = el;
|
|
2536
2541
|
if (this.props.elRef) {
|
|
2537
2542
|
setRef(this.props.elRef, el);
|
|
2543
|
+
if (el && this.didMountMisfire) {
|
|
2544
|
+
this.componentDidMount();
|
|
2545
|
+
}
|
|
2538
2546
|
}
|
|
2539
2547
|
};
|
|
2540
2548
|
}
|
|
@@ -2557,7 +2565,12 @@ var FullCalendar = (function (exports) {
|
|
|
2557
2565
|
}
|
|
2558
2566
|
componentDidMount() {
|
|
2559
2567
|
var _a, _b;
|
|
2560
|
-
|
|
2568
|
+
if (this.el) {
|
|
2569
|
+
(_b = (_a = this.props).didMount) === null || _b === void 0 ? void 0 : _b.call(_a, Object.assign(Object.assign({}, this.props.renderProps), { el: this.el }));
|
|
2570
|
+
}
|
|
2571
|
+
else {
|
|
2572
|
+
this.didMountMisfire = true;
|
|
2573
|
+
}
|
|
2561
2574
|
}
|
|
2562
2575
|
componentWillUnmount() {
|
|
2563
2576
|
var _a, _b;
|
|
@@ -9329,7 +9342,7 @@ var FullCalendar = (function (exports) {
|
|
|
9329
9342
|
if (isPressed) {
|
|
9330
9343
|
buttonClasses.push(theme.getClass('buttonActive'));
|
|
9331
9344
|
}
|
|
9332
|
-
children.push(y("button", { type: "button", title: typeof buttonHint === 'function' ? buttonHint(props.navUnit) : buttonHint, disabled: isDisabled, "aria-pressed": isPressed, className: buttonClasses.join(' '), onClick: buttonClick }, buttonText || (buttonIcon ? y("span", { className: buttonIcon }) : '')));
|
|
9345
|
+
children.push(y("button", { type: "button", title: typeof buttonHint === 'function' ? buttonHint(props.navUnit) : buttonHint, disabled: isDisabled, "aria-pressed": isPressed, className: buttonClasses.join(' '), onClick: buttonClick }, buttonText || (buttonIcon ? y("span", { className: buttonIcon, role: "img" }) : '')));
|
|
9333
9346
|
}
|
|
9334
9347
|
}
|
|
9335
9348
|
if (children.length > 1) {
|
|
@@ -9819,7 +9832,7 @@ var FullCalendar = (function (exports) {
|
|
|
9819
9832
|
return sliceEventStore(props.eventStore, props.eventUiBases, props.dateProfile.activeRange, allDay ? props.nextDayThreshold : null).fg;
|
|
9820
9833
|
}
|
|
9821
9834
|
|
|
9822
|
-
const version = '6.1.
|
|
9835
|
+
const version = '6.1.10';
|
|
9823
9836
|
|
|
9824
9837
|
config.touchMouseIgnoreWait = 500;
|
|
9825
9838
|
let ignoreMouseDepth = 0;
|
|
@@ -11917,8 +11930,86 @@ var FullCalendar = (function (exports) {
|
|
|
11917
11930
|
listenerRefiners: LISTENER_REFINERS,
|
|
11918
11931
|
});
|
|
11919
11932
|
|
|
11920
|
-
|
|
11921
|
-
|
|
11933
|
+
/* An abstract class for the daygrid views, as well as month view. Renders one or more rows of day cells.
|
|
11934
|
+
----------------------------------------------------------------------------------------------------------------------*/
|
|
11935
|
+
// It is a manager for a Table subcomponent, which does most of the heavy lifting.
|
|
11936
|
+
// It is responsible for managing width/height.
|
|
11937
|
+
class TableView extends DateComponent {
|
|
11938
|
+
constructor() {
|
|
11939
|
+
super(...arguments);
|
|
11940
|
+
this.headerElRef = d();
|
|
11941
|
+
}
|
|
11942
|
+
renderSimpleLayout(headerRowContent, bodyContent) {
|
|
11943
|
+
let { props, context } = this;
|
|
11944
|
+
let sections = [];
|
|
11945
|
+
let stickyHeaderDates = getStickyHeaderDates(context.options);
|
|
11946
|
+
if (headerRowContent) {
|
|
11947
|
+
sections.push({
|
|
11948
|
+
type: 'header',
|
|
11949
|
+
key: 'header',
|
|
11950
|
+
isSticky: stickyHeaderDates,
|
|
11951
|
+
chunk: {
|
|
11952
|
+
elRef: this.headerElRef,
|
|
11953
|
+
tableClassName: 'fc-col-header',
|
|
11954
|
+
rowContent: headerRowContent,
|
|
11955
|
+
},
|
|
11956
|
+
});
|
|
11957
|
+
}
|
|
11958
|
+
sections.push({
|
|
11959
|
+
type: 'body',
|
|
11960
|
+
key: 'body',
|
|
11961
|
+
liquid: true,
|
|
11962
|
+
chunk: { content: bodyContent },
|
|
11963
|
+
});
|
|
11964
|
+
return (y(ViewContainer, { elClasses: ['fc-daygrid'], viewSpec: context.viewSpec },
|
|
11965
|
+
y(SimpleScrollGrid, { liquid: !props.isHeightAuto && !props.forPrint, collapsibleWidth: props.forPrint, cols: [] /* TODO: make optional? */, sections: sections })));
|
|
11966
|
+
}
|
|
11967
|
+
renderHScrollLayout(headerRowContent, bodyContent, colCnt, dayMinWidth) {
|
|
11968
|
+
let ScrollGrid = this.context.pluginHooks.scrollGridImpl;
|
|
11969
|
+
if (!ScrollGrid) {
|
|
11970
|
+
throw new Error('No ScrollGrid implementation');
|
|
11971
|
+
}
|
|
11972
|
+
let { props, context } = this;
|
|
11973
|
+
let stickyHeaderDates = !props.forPrint && getStickyHeaderDates(context.options);
|
|
11974
|
+
let stickyFooterScrollbar = !props.forPrint && getStickyFooterScrollbar(context.options);
|
|
11975
|
+
let sections = [];
|
|
11976
|
+
if (headerRowContent) {
|
|
11977
|
+
sections.push({
|
|
11978
|
+
type: 'header',
|
|
11979
|
+
key: 'header',
|
|
11980
|
+
isSticky: stickyHeaderDates,
|
|
11981
|
+
chunks: [{
|
|
11982
|
+
key: 'main',
|
|
11983
|
+
elRef: this.headerElRef,
|
|
11984
|
+
tableClassName: 'fc-col-header',
|
|
11985
|
+
rowContent: headerRowContent,
|
|
11986
|
+
}],
|
|
11987
|
+
});
|
|
11988
|
+
}
|
|
11989
|
+
sections.push({
|
|
11990
|
+
type: 'body',
|
|
11991
|
+
key: 'body',
|
|
11992
|
+
liquid: true,
|
|
11993
|
+
chunks: [{
|
|
11994
|
+
key: 'main',
|
|
11995
|
+
content: bodyContent,
|
|
11996
|
+
}],
|
|
11997
|
+
});
|
|
11998
|
+
if (stickyFooterScrollbar) {
|
|
11999
|
+
sections.push({
|
|
12000
|
+
type: 'footer',
|
|
12001
|
+
key: 'footer',
|
|
12002
|
+
isSticky: true,
|
|
12003
|
+
chunks: [{
|
|
12004
|
+
key: 'main',
|
|
12005
|
+
content: renderScrollShim,
|
|
12006
|
+
}],
|
|
12007
|
+
});
|
|
12008
|
+
}
|
|
12009
|
+
return (y(ViewContainer, { elClasses: ['fc-daygrid'], viewSpec: context.viewSpec },
|
|
12010
|
+
y(ScrollGrid, { liquid: !props.isHeightAuto && !props.forPrint, forPrint: props.forPrint, collapsibleWidth: props.forPrint, colGroups: [{ cols: [{ span: colCnt, minWidth: dayMinWidth }] }], sections: sections })));
|
|
12011
|
+
}
|
|
12012
|
+
}
|
|
11922
12013
|
|
|
11923
12014
|
function splitSegsByRow(segs, rowCnt) {
|
|
11924
12015
|
let byRow = [];
|
|
@@ -12749,6 +12840,30 @@ var FullCalendar = (function (exports) {
|
|
|
12749
12840
|
}
|
|
12750
12841
|
}
|
|
12751
12842
|
|
|
12843
|
+
class DayTableView extends TableView {
|
|
12844
|
+
constructor() {
|
|
12845
|
+
super(...arguments);
|
|
12846
|
+
this.buildDayTableModel = memoize(buildDayTableModel);
|
|
12847
|
+
this.headerRef = d();
|
|
12848
|
+
this.tableRef = d();
|
|
12849
|
+
// can't override any lifecycle methods from parent
|
|
12850
|
+
}
|
|
12851
|
+
render() {
|
|
12852
|
+
let { options, dateProfileGenerator } = this.context;
|
|
12853
|
+
let { props } = this;
|
|
12854
|
+
let dayTableModel = this.buildDayTableModel(props.dateProfile, dateProfileGenerator);
|
|
12855
|
+
let headerContent = options.dayHeaders && (y(DayHeader, { ref: this.headerRef, dateProfile: props.dateProfile, dates: dayTableModel.headerDates, datesRepDistinctDays: dayTableModel.rowCnt === 1 }));
|
|
12856
|
+
let bodyContent = (contentArg) => (y(DayTable, { ref: this.tableRef, dateProfile: props.dateProfile, dayTableModel: dayTableModel, businessHours: props.businessHours, dateSelection: props.dateSelection, eventStore: props.eventStore, eventUiBases: props.eventUiBases, eventSelection: props.eventSelection, eventDrag: props.eventDrag, eventResize: props.eventResize, nextDayThreshold: options.nextDayThreshold, colGroupNode: contentArg.tableColGroupNode, tableMinWidth: contentArg.tableMinWidth, dayMaxEvents: options.dayMaxEvents, dayMaxEventRows: options.dayMaxEventRows, showWeekNumbers: options.weekNumbers, expandRows: !props.isHeightAuto, headerAlignElRef: this.headerElRef, clientWidth: contentArg.clientWidth, clientHeight: contentArg.clientHeight, forPrint: props.forPrint }));
|
|
12857
|
+
return options.dayMinWidth
|
|
12858
|
+
? this.renderHScrollLayout(headerContent, bodyContent, dayTableModel.colCnt, options.dayMinWidth)
|
|
12859
|
+
: this.renderSimpleLayout(headerContent, bodyContent);
|
|
12860
|
+
}
|
|
12861
|
+
}
|
|
12862
|
+
function buildDayTableModel(dateProfile, dateProfileGenerator) {
|
|
12863
|
+
let daySeries = new DaySeriesModel(dateProfile.renderRange, dateProfileGenerator);
|
|
12864
|
+
return new DayTableModel(daySeries, /year|month|week/.test(dateProfile.currentRangeUnit));
|
|
12865
|
+
}
|
|
12866
|
+
|
|
12752
12867
|
class TableDateProfileGenerator extends DateProfileGenerator {
|
|
12753
12868
|
// Computes the date range that will be rendered
|
|
12754
12869
|
buildRenderRange(currentRange, currentRangeUnit, isRangeAllDay) {
|
|
@@ -12787,110 +12902,8 @@ var FullCalendar = (function (exports) {
|
|
|
12787
12902
|
return { start, end };
|
|
12788
12903
|
}
|
|
12789
12904
|
|
|
12790
|
-
|
|
12791
|
-
|
|
12792
|
-
// It is a manager for a Table subcomponent, which does most of the heavy lifting.
|
|
12793
|
-
// It is responsible for managing width/height.
|
|
12794
|
-
class TableView extends DateComponent {
|
|
12795
|
-
constructor() {
|
|
12796
|
-
super(...arguments);
|
|
12797
|
-
this.headerElRef = d();
|
|
12798
|
-
}
|
|
12799
|
-
renderSimpleLayout(headerRowContent, bodyContent) {
|
|
12800
|
-
let { props, context } = this;
|
|
12801
|
-
let sections = [];
|
|
12802
|
-
let stickyHeaderDates = getStickyHeaderDates(context.options);
|
|
12803
|
-
if (headerRowContent) {
|
|
12804
|
-
sections.push({
|
|
12805
|
-
type: 'header',
|
|
12806
|
-
key: 'header',
|
|
12807
|
-
isSticky: stickyHeaderDates,
|
|
12808
|
-
chunk: {
|
|
12809
|
-
elRef: this.headerElRef,
|
|
12810
|
-
tableClassName: 'fc-col-header',
|
|
12811
|
-
rowContent: headerRowContent,
|
|
12812
|
-
},
|
|
12813
|
-
});
|
|
12814
|
-
}
|
|
12815
|
-
sections.push({
|
|
12816
|
-
type: 'body',
|
|
12817
|
-
key: 'body',
|
|
12818
|
-
liquid: true,
|
|
12819
|
-
chunk: { content: bodyContent },
|
|
12820
|
-
});
|
|
12821
|
-
return (y(ViewContainer, { elClasses: ['fc-daygrid'], viewSpec: context.viewSpec },
|
|
12822
|
-
y(SimpleScrollGrid, { liquid: !props.isHeightAuto && !props.forPrint, collapsibleWidth: props.forPrint, cols: [] /* TODO: make optional? */, sections: sections })));
|
|
12823
|
-
}
|
|
12824
|
-
renderHScrollLayout(headerRowContent, bodyContent, colCnt, dayMinWidth) {
|
|
12825
|
-
let ScrollGrid = this.context.pluginHooks.scrollGridImpl;
|
|
12826
|
-
if (!ScrollGrid) {
|
|
12827
|
-
throw new Error('No ScrollGrid implementation');
|
|
12828
|
-
}
|
|
12829
|
-
let { props, context } = this;
|
|
12830
|
-
let stickyHeaderDates = !props.forPrint && getStickyHeaderDates(context.options);
|
|
12831
|
-
let stickyFooterScrollbar = !props.forPrint && getStickyFooterScrollbar(context.options);
|
|
12832
|
-
let sections = [];
|
|
12833
|
-
if (headerRowContent) {
|
|
12834
|
-
sections.push({
|
|
12835
|
-
type: 'header',
|
|
12836
|
-
key: 'header',
|
|
12837
|
-
isSticky: stickyHeaderDates,
|
|
12838
|
-
chunks: [{
|
|
12839
|
-
key: 'main',
|
|
12840
|
-
elRef: this.headerElRef,
|
|
12841
|
-
tableClassName: 'fc-col-header',
|
|
12842
|
-
rowContent: headerRowContent,
|
|
12843
|
-
}],
|
|
12844
|
-
});
|
|
12845
|
-
}
|
|
12846
|
-
sections.push({
|
|
12847
|
-
type: 'body',
|
|
12848
|
-
key: 'body',
|
|
12849
|
-
liquid: true,
|
|
12850
|
-
chunks: [{
|
|
12851
|
-
key: 'main',
|
|
12852
|
-
content: bodyContent,
|
|
12853
|
-
}],
|
|
12854
|
-
});
|
|
12855
|
-
if (stickyFooterScrollbar) {
|
|
12856
|
-
sections.push({
|
|
12857
|
-
type: 'footer',
|
|
12858
|
-
key: 'footer',
|
|
12859
|
-
isSticky: true,
|
|
12860
|
-
chunks: [{
|
|
12861
|
-
key: 'main',
|
|
12862
|
-
content: renderScrollShim,
|
|
12863
|
-
}],
|
|
12864
|
-
});
|
|
12865
|
-
}
|
|
12866
|
-
return (y(ViewContainer, { elClasses: ['fc-daygrid'], viewSpec: context.viewSpec },
|
|
12867
|
-
y(ScrollGrid, { liquid: !props.isHeightAuto && !props.forPrint, forPrint: props.forPrint, collapsibleWidth: props.forPrint, colGroups: [{ cols: [{ span: colCnt, minWidth: dayMinWidth }] }], sections: sections })));
|
|
12868
|
-
}
|
|
12869
|
-
}
|
|
12870
|
-
|
|
12871
|
-
class DayTableView extends TableView {
|
|
12872
|
-
constructor() {
|
|
12873
|
-
super(...arguments);
|
|
12874
|
-
this.buildDayTableModel = memoize(buildDayTableModel);
|
|
12875
|
-
this.headerRef = d();
|
|
12876
|
-
this.tableRef = d();
|
|
12877
|
-
// can't override any lifecycle methods from parent
|
|
12878
|
-
}
|
|
12879
|
-
render() {
|
|
12880
|
-
let { options, dateProfileGenerator } = this.context;
|
|
12881
|
-
let { props } = this;
|
|
12882
|
-
let dayTableModel = this.buildDayTableModel(props.dateProfile, dateProfileGenerator);
|
|
12883
|
-
let headerContent = options.dayHeaders && (y(DayHeader, { ref: this.headerRef, dateProfile: props.dateProfile, dates: dayTableModel.headerDates, datesRepDistinctDays: dayTableModel.rowCnt === 1 }));
|
|
12884
|
-
let bodyContent = (contentArg) => (y(DayTable, { ref: this.tableRef, dateProfile: props.dateProfile, dayTableModel: dayTableModel, businessHours: props.businessHours, dateSelection: props.dateSelection, eventStore: props.eventStore, eventUiBases: props.eventUiBases, eventSelection: props.eventSelection, eventDrag: props.eventDrag, eventResize: props.eventResize, nextDayThreshold: options.nextDayThreshold, colGroupNode: contentArg.tableColGroupNode, tableMinWidth: contentArg.tableMinWidth, dayMaxEvents: options.dayMaxEvents, dayMaxEventRows: options.dayMaxEventRows, showWeekNumbers: options.weekNumbers, expandRows: !props.isHeightAuto, headerAlignElRef: this.headerElRef, clientWidth: contentArg.clientWidth, clientHeight: contentArg.clientHeight, forPrint: props.forPrint }));
|
|
12885
|
-
return options.dayMinWidth
|
|
12886
|
-
? this.renderHScrollLayout(headerContent, bodyContent, dayTableModel.colCnt, options.dayMinWidth)
|
|
12887
|
-
: this.renderSimpleLayout(headerContent, bodyContent);
|
|
12888
|
-
}
|
|
12889
|
-
}
|
|
12890
|
-
function buildDayTableModel(dateProfile, dateProfileGenerator) {
|
|
12891
|
-
let daySeries = new DaySeriesModel(dateProfile.renderRange, dateProfileGenerator);
|
|
12892
|
-
return new DayTableModel(daySeries, /year|month|week/.test(dateProfile.currentRangeUnit));
|
|
12893
|
-
}
|
|
12905
|
+
var css_248z$3 = ":root{--fc-daygrid-event-dot-width:8px}.fc-daygrid-day-events:after,.fc-daygrid-day-events:before,.fc-daygrid-day-frame:after,.fc-daygrid-day-frame:before,.fc-daygrid-event-harness:after,.fc-daygrid-event-harness:before{clear:both;content:\"\";display:table}.fc .fc-daygrid-body{position:relative;z-index:1}.fc .fc-daygrid-day.fc-day-today{background-color:var(--fc-today-bg-color)}.fc .fc-daygrid-day-frame{min-height:100%;position:relative}.fc .fc-daygrid-day-top{display:flex;flex-direction:row-reverse}.fc .fc-day-other .fc-daygrid-day-top{opacity:.3}.fc .fc-daygrid-day-number{padding:4px;position:relative;z-index:4}.fc .fc-daygrid-month-start{font-size:1.1em;font-weight:700}.fc .fc-daygrid-day-events{margin-top:1px}.fc .fc-daygrid-body-balanced .fc-daygrid-day-events{left:0;position:absolute;right:0}.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events{min-height:2em;position:relative}.fc .fc-daygrid-body-natural .fc-daygrid-day-events{margin-bottom:1em}.fc .fc-daygrid-event-harness{position:relative}.fc .fc-daygrid-event-harness-abs{left:0;position:absolute;right:0;top:0}.fc .fc-daygrid-bg-harness{bottom:0;position:absolute;top:0}.fc .fc-daygrid-day-bg .fc-non-business{z-index:1}.fc .fc-daygrid-day-bg .fc-bg-event{z-index:2}.fc .fc-daygrid-day-bg .fc-highlight{z-index:3}.fc .fc-daygrid-event{margin-top:1px;z-index:6}.fc .fc-daygrid-event.fc-event-mirror{z-index:7}.fc .fc-daygrid-day-bottom{font-size:.85em;margin:0 2px}.fc .fc-daygrid-day-bottom:after,.fc .fc-daygrid-day-bottom:before{clear:both;content:\"\";display:table}.fc .fc-daygrid-more-link{border-radius:3px;cursor:pointer;line-height:1;margin-top:1px;max-width:100%;overflow:hidden;padding:2px;position:relative;white-space:nowrap;z-index:4}.fc .fc-daygrid-more-link:hover{background-color:rgba(0,0,0,.1)}.fc .fc-daygrid-week-number{background-color:var(--fc-neutral-bg-color);color:var(--fc-neutral-text-color);min-width:1.5em;padding:2px;position:absolute;text-align:center;top:0;z-index:5}.fc .fc-more-popover .fc-popover-body{min-width:220px;padding:10px}.fc-direction-ltr .fc-daygrid-event.fc-event-start,.fc-direction-rtl .fc-daygrid-event.fc-event-end{margin-left:2px}.fc-direction-ltr .fc-daygrid-event.fc-event-end,.fc-direction-rtl .fc-daygrid-event.fc-event-start{margin-right:2px}.fc-direction-ltr .fc-daygrid-more-link{float:left}.fc-direction-ltr .fc-daygrid-week-number{border-radius:0 0 3px 0;left:0}.fc-direction-rtl .fc-daygrid-more-link{float:right}.fc-direction-rtl .fc-daygrid-week-number{border-radius:0 0 0 3px;right:0}.fc-liquid-hack .fc-daygrid-day-frame{position:static}.fc-daygrid-event{border-radius:3px;font-size:var(--fc-small-font-size);position:relative;white-space:nowrap}.fc-daygrid-block-event .fc-event-time{font-weight:700}.fc-daygrid-block-event .fc-event-time,.fc-daygrid-block-event .fc-event-title{padding:1px}.fc-daygrid-dot-event{align-items:center;display:flex;padding:2px 0}.fc-daygrid-dot-event .fc-event-title{flex-grow:1;flex-shrink:1;font-weight:700;min-width:0;overflow:hidden}.fc-daygrid-dot-event.fc-event-mirror,.fc-daygrid-dot-event:hover{background:rgba(0,0,0,.1)}.fc-daygrid-dot-event.fc-event-selected:before{bottom:-10px;top:-10px}.fc-daygrid-event-dot{border:calc(var(--fc-daygrid-event-dot-width)/2) solid var(--fc-event-border-color);border-radius:calc(var(--fc-daygrid-event-dot-width)/2);box-sizing:content-box;height:0;margin:0 4px;width:0}.fc-direction-ltr .fc-daygrid-event .fc-event-time{margin-right:3px}.fc-direction-rtl .fc-daygrid-event .fc-event-time{margin-left:3px}";
|
|
12906
|
+
injectStyles(css_248z$3);
|
|
12894
12907
|
|
|
12895
12908
|
var index$3 = createPlugin({
|
|
12896
12909
|
name: '@fullcalendar/daygrid',
|