fullcalendar 6.1.10 → 6.1.11

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 CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- FullCalendar Standard Bundle v6.1.10
2
+ FullCalendar Standard Bundle v6.1.11
3
3
  Docs & License: https://fullcalendar.io/docs/initialize-globals
4
4
  (c) 2023 Adam Shaw
5
5
  */
@@ -21,7 +21,9 @@ var FullCalendar = (function (exports) {
21
21
  });
22
22
  }
23
23
  function ensureElHasStyles(el) {
24
- if (el.isConnected) {
24
+ if (el.isConnected && // sometimes true if SSR system simulates DOM
25
+ el.getRootNode // sometimes undefined if SSR system simulates DOM
26
+ ) {
25
27
  registerStylesRoot(el.getRootNode());
26
28
  }
27
29
  }
@@ -4434,7 +4436,7 @@ var FullCalendar = (function (exports) {
4434
4436
  function getSegMeta(seg, todayRange, nowDate) {
4435
4437
  let segRange = seg.eventRange.range;
4436
4438
  return {
4437
- isPast: segRange.end < (nowDate || todayRange.start),
4439
+ isPast: segRange.end <= (nowDate || todayRange.start),
4438
4440
  isFuture: segRange.start >= (nowDate || todayRange.end),
4439
4441
  isToday: todayRange && rangeContainsMarker(todayRange, segRange.start),
4440
4442
  };
@@ -4697,10 +4699,14 @@ var FullCalendar = (function (exports) {
4697
4699
  forPrint: false,
4698
4700
  };
4699
4701
  this.handleBeforePrint = () => {
4700
- this.setState({ forPrint: true });
4702
+ flushSync(() => {
4703
+ this.setState({ forPrint: true });
4704
+ });
4701
4705
  };
4702
4706
  this.handleAfterPrint = () => {
4703
- this.setState({ forPrint: false });
4707
+ flushSync(() => {
4708
+ this.setState({ forPrint: false });
4709
+ });
4704
4710
  };
4705
4711
  }
4706
4712
  render() {
@@ -5759,8 +5765,8 @@ var FullCalendar = (function (exports) {
5759
5765
 
5760
5766
  class SegHierarchy {
5761
5767
  constructor(getEntryThickness = (entry) => {
5762
- // should return an integer
5763
- return entry.thickness;
5768
+ // if no thickness known, assume 1 (if 0, so small it always fits)
5769
+ return entry.thickness || 1;
5764
5770
  }) {
5765
5771
  this.getEntryThickness = getEntryThickness;
5766
5772
  // settings
@@ -5783,51 +5789,45 @@ var FullCalendar = (function (exports) {
5783
5789
  let insertion = this.findInsertion(entry);
5784
5790
  if (this.isInsertionValid(insertion, entry)) {
5785
5791
  this.insertEntryAt(entry, insertion);
5786
- return 1;
5787
5792
  }
5788
- return this.handleInvalidInsertion(insertion, entry, hiddenEntries);
5793
+ else {
5794
+ this.handleInvalidInsertion(insertion, entry, hiddenEntries);
5795
+ }
5789
5796
  }
5790
5797
  isInsertionValid(insertion, entry) {
5791
5798
  return (this.maxCoord === -1 || insertion.levelCoord + this.getEntryThickness(entry) <= this.maxCoord) &&
5792
5799
  (this.maxStackCnt === -1 || insertion.stackCnt < this.maxStackCnt);
5793
5800
  }
5794
- // returns number of new entries inserted
5795
5801
  handleInvalidInsertion(insertion, entry, hiddenEntries) {
5796
5802
  if (this.allowReslicing && insertion.touchingEntry) {
5797
- return this.splitEntry(entry, insertion.touchingEntry, hiddenEntries);
5803
+ const hiddenEntry = Object.assign(Object.assign({}, entry), { span: intersectSpans(entry.span, insertion.touchingEntry.span) });
5804
+ hiddenEntries.push(hiddenEntry);
5805
+ this.splitEntry(entry, insertion.touchingEntry, hiddenEntries);
5806
+ }
5807
+ else {
5808
+ hiddenEntries.push(entry);
5798
5809
  }
5799
- hiddenEntries.push(entry);
5800
- return 0;
5801
5810
  }
5811
+ /*
5812
+ Does NOT add what hit the `barrier` into hiddenEntries. Should already be done.
5813
+ */
5802
5814
  splitEntry(entry, barrier, hiddenEntries) {
5803
- let partCnt = 0;
5804
- let splitHiddenEntries = [];
5805
5815
  let entrySpan = entry.span;
5806
5816
  let barrierSpan = barrier.span;
5807
5817
  if (entrySpan.start < barrierSpan.start) {
5808
- partCnt += this.insertEntry({
5818
+ this.insertEntry({
5809
5819
  index: entry.index,
5810
5820
  thickness: entry.thickness,
5811
5821
  span: { start: entrySpan.start, end: barrierSpan.start },
5812
- }, splitHiddenEntries);
5822
+ }, hiddenEntries);
5813
5823
  }
5814
5824
  if (entrySpan.end > barrierSpan.end) {
5815
- partCnt += this.insertEntry({
5825
+ this.insertEntry({
5816
5826
  index: entry.index,
5817
5827
  thickness: entry.thickness,
5818
5828
  span: { start: barrierSpan.end, end: entrySpan.end },
5819
- }, splitHiddenEntries);
5820
- }
5821
- if (partCnt) {
5822
- hiddenEntries.push({
5823
- index: entry.index,
5824
- thickness: entry.thickness,
5825
- span: intersectSpans(barrierSpan, entrySpan), // guaranteed to intersect
5826
- }, ...splitHiddenEntries);
5827
- return partCnt;
5829
+ }, hiddenEntries);
5828
5830
  }
5829
- hiddenEntries.push(entry);
5830
- return 0;
5831
5831
  }
5832
5832
  insertEntryAt(entry, insertion) {
5833
5833
  let { entriesByLevel, levelCoords } = this;
@@ -5842,6 +5842,9 @@ var FullCalendar = (function (exports) {
5842
5842
  }
5843
5843
  this.stackCnts[buildEntryKey(entry)] = insertion.stackCnt;
5844
5844
  }
5845
+ /*
5846
+ does not care about limits
5847
+ */
5845
5848
  findInsertion(newEntry) {
5846
5849
  let { levelCoords, entriesByLevel, strictOrder, stackCnts } = this;
5847
5850
  let levelCnt = levelCoords.length;
@@ -5851,7 +5854,7 @@ var FullCalendar = (function (exports) {
5851
5854
  let touchingEntry = null;
5852
5855
  let stackCnt = 0;
5853
5856
  for (let trackingLevel = 0; trackingLevel < levelCnt; trackingLevel += 1) {
5854
- let trackingCoord = levelCoords[trackingLevel];
5857
+ const trackingCoord = levelCoords[trackingLevel];
5855
5858
  // if the current level is past the placed entry, we have found a good empty space and can stop.
5856
5859
  // if strictOrder, keep finding more lateral intersections.
5857
5860
  if (!strictOrder && trackingCoord >= candidateCoord + this.getEntryThickness(newEntry)) {
@@ -9604,7 +9607,7 @@ var FullCalendar = (function (exports) {
9604
9607
  let viewContext = this.buildViewContext(props.viewSpec, props.viewApi, props.options, props.dateProfileGenerator, props.dateEnv, props.theme, props.pluginHooks, props.dispatch, props.getCurrentData, props.emitter, props.calendarApi, this.registerInteractiveComponent, this.unregisterInteractiveComponent);
9605
9608
  let viewLabelId = (toolbarConfig.header && toolbarConfig.header.hasTitle)
9606
9609
  ? this.state.viewLabelId
9607
- : '';
9610
+ : undefined;
9608
9611
  return (y(ViewContextType.Provider, { value: viewContext },
9609
9612
  toolbarConfig.header && (y(Toolbar, Object.assign({ ref: this.headerRef, extraClassName: "fc-header-toolbar", model: toolbarConfig.header, titleId: viewLabelId }, toolbarProps))),
9610
9613
  y(ViewHarness, { liquid: viewVGrow, height: viewHeight, aspectRatio: viewAspectRatio, labeledById: viewLabelId },
@@ -9832,7 +9835,7 @@ var FullCalendar = (function (exports) {
9832
9835
  return sliceEventStore(props.eventStore, props.eventUiBases, props.dateProfile.activeRange, allDay ? props.nextDayThreshold : null).fg;
9833
9836
  }
9834
9837
 
9835
- const version = '6.1.10';
9838
+ const version = '6.1.11';
9836
9839
 
9837
9840
  config.touchMouseIgnoreWait = 500;
9838
9841
  let ignoreMouseDepth = 0;
@@ -12199,7 +12202,8 @@ var FullCalendar = (function (exports) {
12199
12202
  let segUid = segs[segEntry.index].eventRange.instance.instanceId +
12200
12203
  ':' + segEntry.span.start +
12201
12204
  ':' + (segEntry.span.end - 1);
12202
- return segHeights[segUid];
12205
+ // if no thickness known, assume 1 (if 0, so small it always fits)
12206
+ return segHeights[segUid] || 1;
12203
12207
  });
12204
12208
  hierarchy.allowReslicing = true;
12205
12209
  hierarchy.strictOrder = strictOrder;
@@ -12401,16 +12405,20 @@ var FullCalendar = (function (exports) {
12401
12405
  handleInvalidInsertion(insertion, entry, hiddenEntries) {
12402
12406
  const { entriesByLevel, forceHidden } = this;
12403
12407
  const { touchingEntry, touchingLevel, touchingLateral } = insertion;
12408
+ // the entry that the new insertion is touching must be hidden
12404
12409
  if (this.hiddenConsumes && touchingEntry) {
12405
12410
  const touchingEntryId = buildEntryKey(touchingEntry);
12406
- // if not already hidden
12407
12411
  if (!forceHidden[touchingEntryId]) {
12408
12412
  if (this.allowReslicing) {
12409
- const placeholderEntry = Object.assign(Object.assign({}, touchingEntry), { span: intersectSpans(touchingEntry.span, entry.span) });
12410
- const placeholderEntryId = buildEntryKey(placeholderEntry);
12411
- forceHidden[placeholderEntryId] = true;
12412
- entriesByLevel[touchingLevel][touchingLateral] = placeholderEntry; // replace touchingEntry with our placeholder
12413
- this.splitEntry(touchingEntry, entry, hiddenEntries); // split up the touchingEntry, reinsert it
12413
+ // split up the touchingEntry, reinsert it
12414
+ const hiddenEntry = Object.assign(Object.assign({}, touchingEntry), { span: intersectSpans(touchingEntry.span, entry.span) });
12415
+ // reinsert the area that turned into a "more" link (so no other entries try to
12416
+ // occupy the space) but mark it forced-hidden
12417
+ const hiddenEntryId = buildEntryKey(hiddenEntry);
12418
+ forceHidden[hiddenEntryId] = true;
12419
+ entriesByLevel[touchingLevel][touchingLateral] = hiddenEntry;
12420
+ hiddenEntries.push(hiddenEntry);
12421
+ this.splitEntry(touchingEntry, entry, hiddenEntries);
12414
12422
  }
12415
12423
  else {
12416
12424
  forceHidden[touchingEntryId] = true;
@@ -12418,7 +12426,8 @@ var FullCalendar = (function (exports) {
12418
12426
  }
12419
12427
  }
12420
12428
  }
12421
- return super.handleInvalidInsertion(insertion, entry, hiddenEntries);
12429
+ // will try to reslice...
12430
+ super.handleInvalidInsertion(insertion, entry, hiddenEntries);
12422
12431
  }
12423
12432
  }
12424
12433
 
@@ -12933,9 +12942,6 @@ var FullCalendar = (function (exports) {
12933
12942
  },
12934
12943
  });
12935
12944
 
12936
- var css_248z$2 = ".fc-v-event{background-color:var(--fc-event-bg-color);border:1px solid var(--fc-event-border-color);display:block}.fc-v-event .fc-event-main{color:var(--fc-event-text-color);height:100%}.fc-v-event .fc-event-main-frame{display:flex;flex-direction:column;height:100%}.fc-v-event .fc-event-time{flex-grow:0;flex-shrink:0;max-height:100%;overflow:hidden}.fc-v-event .fc-event-title-container{flex-grow:1;flex-shrink:1;min-height:0}.fc-v-event .fc-event-title{bottom:0;max-height:100%;overflow:hidden;top:0}.fc-v-event:not(.fc-event-start){border-top-left-radius:0;border-top-right-radius:0;border-top-width:0}.fc-v-event:not(.fc-event-end){border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-width:0}.fc-v-event.fc-event-selected:before{left:-10px;right:-10px}.fc-v-event .fc-event-resizer-start{cursor:n-resize}.fc-v-event .fc-event-resizer-end{cursor:s-resize}.fc-v-event:not(.fc-event-selected) .fc-event-resizer{height:var(--fc-event-resizer-thickness);left:0;right:0}.fc-v-event:not(.fc-event-selected) .fc-event-resizer-start{top:calc(var(--fc-event-resizer-thickness)/-2)}.fc-v-event:not(.fc-event-selected) .fc-event-resizer-end{bottom:calc(var(--fc-event-resizer-thickness)/-2)}.fc-v-event.fc-event-selected .fc-event-resizer{left:50%;margin-left:calc(var(--fc-event-resizer-dot-total-width)/-2)}.fc-v-event.fc-event-selected .fc-event-resizer-start{top:calc(var(--fc-event-resizer-dot-total-width)/-2)}.fc-v-event.fc-event-selected .fc-event-resizer-end{bottom:calc(var(--fc-event-resizer-dot-total-width)/-2)}.fc .fc-timegrid .fc-daygrid-body{z-index:2}.fc .fc-timegrid-divider{padding:0 0 2px}.fc .fc-timegrid-body{min-height:100%;position:relative;z-index:1}.fc .fc-timegrid-axis-chunk{position:relative}.fc .fc-timegrid-axis-chunk>table,.fc .fc-timegrid-slots{position:relative;z-index:1}.fc .fc-timegrid-slot{border-bottom:0;height:1.5em}.fc .fc-timegrid-slot:empty:before{content:\"\\00a0\"}.fc .fc-timegrid-slot-minor{border-top-style:dotted}.fc .fc-timegrid-slot-label-cushion{display:inline-block;white-space:nowrap}.fc .fc-timegrid-slot-label{vertical-align:middle}.fc .fc-timegrid-axis-cushion,.fc .fc-timegrid-slot-label-cushion{padding:0 4px}.fc .fc-timegrid-axis-frame-liquid{height:100%}.fc .fc-timegrid-axis-frame{align-items:center;display:flex;justify-content:flex-end;overflow:hidden}.fc .fc-timegrid-axis-cushion{flex-shrink:0;max-width:60px}.fc-direction-ltr .fc-timegrid-slot-label-frame{text-align:right}.fc-direction-rtl .fc-timegrid-slot-label-frame{text-align:left}.fc-liquid-hack .fc-timegrid-axis-frame-liquid{bottom:0;height:auto;left:0;position:absolute;right:0;top:0}.fc .fc-timegrid-col.fc-day-today{background-color:var(--fc-today-bg-color)}.fc .fc-timegrid-col-frame{min-height:100%;position:relative}.fc-media-screen.fc-liquid-hack .fc-timegrid-col-frame{bottom:0;height:auto;left:0;position:absolute;right:0;top:0}.fc-media-screen .fc-timegrid-cols{bottom:0;left:0;position:absolute;right:0;top:0}.fc-media-screen .fc-timegrid-cols>table{height:100%}.fc-media-screen .fc-timegrid-col-bg,.fc-media-screen .fc-timegrid-col-events,.fc-media-screen .fc-timegrid-now-indicator-container{left:0;position:absolute;right:0;top:0}.fc .fc-timegrid-col-bg{z-index:2}.fc .fc-timegrid-col-bg .fc-non-business{z-index:1}.fc .fc-timegrid-col-bg .fc-bg-event{z-index:2}.fc .fc-timegrid-col-bg .fc-highlight{z-index:3}.fc .fc-timegrid-bg-harness{left:0;position:absolute;right:0}.fc .fc-timegrid-col-events{z-index:3}.fc .fc-timegrid-now-indicator-container{bottom:0;overflow:hidden}.fc-direction-ltr .fc-timegrid-col-events{margin:0 2.5% 0 2px}.fc-direction-rtl .fc-timegrid-col-events{margin:0 2px 0 2.5%}.fc-timegrid-event-harness{position:absolute}.fc-timegrid-event-harness>.fc-timegrid-event{bottom:0;left:0;position:absolute;right:0;top:0}.fc-timegrid-event-harness-inset .fc-timegrid-event,.fc-timegrid-event.fc-event-mirror,.fc-timegrid-more-link{box-shadow:0 0 0 1px var(--fc-page-bg-color)}.fc-timegrid-event,.fc-timegrid-more-link{border-radius:3px;font-size:var(--fc-small-font-size)}.fc-timegrid-event{margin-bottom:1px}.fc-timegrid-event .fc-event-main{padding:1px 1px 0}.fc-timegrid-event .fc-event-time{font-size:var(--fc-small-font-size);margin-bottom:1px;white-space:nowrap}.fc-timegrid-event-short .fc-event-main-frame{flex-direction:row;overflow:hidden}.fc-timegrid-event-short .fc-event-time:after{content:\"\\00a0-\\00a0\"}.fc-timegrid-event-short .fc-event-title{font-size:var(--fc-small-font-size)}.fc-timegrid-more-link{background:var(--fc-more-link-bg-color);color:var(--fc-more-link-text-color);cursor:pointer;margin-bottom:1px;position:absolute;z-index:9999}.fc-timegrid-more-link-inner{padding:3px 2px;top:0}.fc-direction-ltr .fc-timegrid-more-link{right:0}.fc-direction-rtl .fc-timegrid-more-link{left:0}.fc .fc-timegrid-now-indicator-line{border-color:var(--fc-now-indicator-color);border-style:solid;border-width:1px 0 0;left:0;position:absolute;right:0;z-index:4}.fc .fc-timegrid-now-indicator-arrow{border-color:var(--fc-now-indicator-color);border-style:solid;margin-top:-5px;position:absolute;z-index:4}.fc-direction-ltr .fc-timegrid-now-indicator-arrow{border-bottom-color:transparent;border-top-color:transparent;border-width:5px 0 5px 6px;left:0}.fc-direction-rtl .fc-timegrid-now-indicator-arrow{border-bottom-color:transparent;border-top-color:transparent;border-width:5px 6px 5px 0;right:0}";
12937
- injectStyles(css_248z$2);
12938
-
12939
12945
  class AllDaySplitter extends Splitter {
12940
12946
  getKeyInfo() {
12941
12947
  return {
@@ -14073,6 +14079,9 @@ var FullCalendar = (function (exports) {
14073
14079
  return new DayTableModel(daySeries, false);
14074
14080
  }
14075
14081
 
14082
+ var css_248z$2 = ".fc-v-event{background-color:var(--fc-event-bg-color);border:1px solid var(--fc-event-border-color);display:block}.fc-v-event .fc-event-main{color:var(--fc-event-text-color);height:100%}.fc-v-event .fc-event-main-frame{display:flex;flex-direction:column;height:100%}.fc-v-event .fc-event-time{flex-grow:0;flex-shrink:0;max-height:100%;overflow:hidden}.fc-v-event .fc-event-title-container{flex-grow:1;flex-shrink:1;min-height:0}.fc-v-event .fc-event-title{bottom:0;max-height:100%;overflow:hidden;top:0}.fc-v-event:not(.fc-event-start){border-top-left-radius:0;border-top-right-radius:0;border-top-width:0}.fc-v-event:not(.fc-event-end){border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-width:0}.fc-v-event.fc-event-selected:before{left:-10px;right:-10px}.fc-v-event .fc-event-resizer-start{cursor:n-resize}.fc-v-event .fc-event-resizer-end{cursor:s-resize}.fc-v-event:not(.fc-event-selected) .fc-event-resizer{height:var(--fc-event-resizer-thickness);left:0;right:0}.fc-v-event:not(.fc-event-selected) .fc-event-resizer-start{top:calc(var(--fc-event-resizer-thickness)/-2)}.fc-v-event:not(.fc-event-selected) .fc-event-resizer-end{bottom:calc(var(--fc-event-resizer-thickness)/-2)}.fc-v-event.fc-event-selected .fc-event-resizer{left:50%;margin-left:calc(var(--fc-event-resizer-dot-total-width)/-2)}.fc-v-event.fc-event-selected .fc-event-resizer-start{top:calc(var(--fc-event-resizer-dot-total-width)/-2)}.fc-v-event.fc-event-selected .fc-event-resizer-end{bottom:calc(var(--fc-event-resizer-dot-total-width)/-2)}.fc .fc-timegrid .fc-daygrid-body{z-index:2}.fc .fc-timegrid-divider{padding:0 0 2px}.fc .fc-timegrid-body{min-height:100%;position:relative;z-index:1}.fc .fc-timegrid-axis-chunk{position:relative}.fc .fc-timegrid-axis-chunk>table,.fc .fc-timegrid-slots{position:relative;z-index:1}.fc .fc-timegrid-slot{border-bottom:0;height:1.5em}.fc .fc-timegrid-slot:empty:before{content:\"\\00a0\"}.fc .fc-timegrid-slot-minor{border-top-style:dotted}.fc .fc-timegrid-slot-label-cushion{display:inline-block;white-space:nowrap}.fc .fc-timegrid-slot-label{vertical-align:middle}.fc .fc-timegrid-axis-cushion,.fc .fc-timegrid-slot-label-cushion{padding:0 4px}.fc .fc-timegrid-axis-frame-liquid{height:100%}.fc .fc-timegrid-axis-frame{align-items:center;display:flex;justify-content:flex-end;overflow:hidden}.fc .fc-timegrid-axis-cushion{flex-shrink:0;max-width:60px}.fc-direction-ltr .fc-timegrid-slot-label-frame{text-align:right}.fc-direction-rtl .fc-timegrid-slot-label-frame{text-align:left}.fc-liquid-hack .fc-timegrid-axis-frame-liquid{bottom:0;height:auto;left:0;position:absolute;right:0;top:0}.fc .fc-timegrid-col.fc-day-today{background-color:var(--fc-today-bg-color)}.fc .fc-timegrid-col-frame{min-height:100%;position:relative}.fc-media-screen.fc-liquid-hack .fc-timegrid-col-frame{bottom:0;height:auto;left:0;position:absolute;right:0;top:0}.fc-media-screen .fc-timegrid-cols{bottom:0;left:0;position:absolute;right:0;top:0}.fc-media-screen .fc-timegrid-cols>table{height:100%}.fc-media-screen .fc-timegrid-col-bg,.fc-media-screen .fc-timegrid-col-events,.fc-media-screen .fc-timegrid-now-indicator-container{left:0;position:absolute;right:0;top:0}.fc .fc-timegrid-col-bg{z-index:2}.fc .fc-timegrid-col-bg .fc-non-business{z-index:1}.fc .fc-timegrid-col-bg .fc-bg-event{z-index:2}.fc .fc-timegrid-col-bg .fc-highlight{z-index:3}.fc .fc-timegrid-bg-harness{left:0;position:absolute;right:0}.fc .fc-timegrid-col-events{z-index:3}.fc .fc-timegrid-now-indicator-container{bottom:0;overflow:hidden}.fc-direction-ltr .fc-timegrid-col-events{margin:0 2.5% 0 2px}.fc-direction-rtl .fc-timegrid-col-events{margin:0 2px 0 2.5%}.fc-timegrid-event-harness{position:absolute}.fc-timegrid-event-harness>.fc-timegrid-event{bottom:0;left:0;position:absolute;right:0;top:0}.fc-timegrid-event-harness-inset .fc-timegrid-event,.fc-timegrid-event.fc-event-mirror,.fc-timegrid-more-link{box-shadow:0 0 0 1px var(--fc-page-bg-color)}.fc-timegrid-event,.fc-timegrid-more-link{border-radius:3px;font-size:var(--fc-small-font-size)}.fc-timegrid-event{margin-bottom:1px}.fc-timegrid-event .fc-event-main{padding:1px 1px 0}.fc-timegrid-event .fc-event-time{font-size:var(--fc-small-font-size);margin-bottom:1px;white-space:nowrap}.fc-timegrid-event-short .fc-event-main-frame{flex-direction:row;overflow:hidden}.fc-timegrid-event-short .fc-event-time:after{content:\"\\00a0-\\00a0\"}.fc-timegrid-event-short .fc-event-title{font-size:var(--fc-small-font-size)}.fc-timegrid-more-link{background:var(--fc-more-link-bg-color);color:var(--fc-more-link-text-color);cursor:pointer;margin-bottom:1px;position:absolute;z-index:9999}.fc-timegrid-more-link-inner{padding:3px 2px;top:0}.fc-direction-ltr .fc-timegrid-more-link{right:0}.fc-direction-rtl .fc-timegrid-more-link{left:0}.fc .fc-timegrid-now-indicator-line{border-color:var(--fc-now-indicator-color);border-style:solid;border-width:1px 0 0;left:0;position:absolute;right:0;z-index:4}.fc .fc-timegrid-now-indicator-arrow{border-color:var(--fc-now-indicator-color);border-style:solid;margin-top:-5px;position:absolute;z-index:4}.fc-direction-ltr .fc-timegrid-now-indicator-arrow{border-bottom-color:transparent;border-top-color:transparent;border-width:5px 0 5px 6px;left:0}.fc-direction-rtl .fc-timegrid-now-indicator-arrow{border-bottom-color:transparent;border-top-color:transparent;border-width:5px 6px 5px 0;right:0}";
14083
+ injectStyles(css_248z$2);
14084
+
14076
14085
  const OPTION_REFINERS$2 = {
14077
14086
  allDaySlot: Boolean,
14078
14087
  };