fullcalendar 7.0.0-beta.3 → 7.0.0-beta.5
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/LICENSE.md +1 -1
- package/{index.cjs → cjs/index.cjs} +14 -9
- package/{index.d.ts → esm/index.d.ts} +1 -0
- package/esm/index.js +12 -0
- package/{index.global.js → global.js} +6732 -5987
- package/global.min.js +6 -0
- package/package.json +27 -20
- package/skeleton.css +477 -0
- package/skeleton.min.css +1 -0
- package/skeleton.styles.js +30 -0
- package/index.global.min.js +0 -6
- package/index.js +0 -10
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fullcalendar",
|
|
3
|
-
"version": "7.0.0-beta.
|
|
3
|
+
"version": "7.0.0-beta.5",
|
|
4
4
|
"title": "FullCalendar Standard Bundle",
|
|
5
5
|
"description": "Easily render a full-sized drag & drop calendar with a combination of standard plugins",
|
|
6
6
|
"homepage": "https://fullcalendar.io/docs/initialize-globals",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@fullcalendar/core": "7.0.0-beta.
|
|
9
|
-
"@fullcalendar/daygrid": "7.0.0-beta.
|
|
10
|
-
"@fullcalendar/interaction": "7.0.0-beta.
|
|
11
|
-
"@fullcalendar/list": "7.0.0-beta.
|
|
12
|
-
"@fullcalendar/multimonth": "7.0.0-beta.
|
|
13
|
-
"@fullcalendar/timegrid": "7.0.0-beta.
|
|
8
|
+
"@fullcalendar/core": "7.0.0-beta.5",
|
|
9
|
+
"@fullcalendar/daygrid": "7.0.0-beta.5",
|
|
10
|
+
"@fullcalendar/interaction": "7.0.0-beta.5",
|
|
11
|
+
"@fullcalendar/list": "7.0.0-beta.5",
|
|
12
|
+
"@fullcalendar/multimonth": "7.0.0-beta.5",
|
|
13
|
+
"@fullcalendar/timegrid": "7.0.0-beta.5"
|
|
14
14
|
},
|
|
15
15
|
"type": "module",
|
|
16
16
|
"keywords": [
|
|
@@ -31,20 +31,27 @@
|
|
|
31
31
|
"email": "arshaw@arshaw.com",
|
|
32
32
|
"url": "http://arshaw.com/"
|
|
33
33
|
},
|
|
34
|
-
"copyright": "
|
|
35
|
-
"types": "./index.d.ts",
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"unpkg": "./
|
|
39
|
-
"jsdelivr": "./
|
|
34
|
+
"copyright": "2025 Adam Shaw",
|
|
35
|
+
"types": "./esm/index.d.ts",
|
|
36
|
+
"module": "./esm/index.js",
|
|
37
|
+
"main": "./cjs/index.cjs",
|
|
38
|
+
"unpkg": "./global.min.js",
|
|
39
|
+
"jsdelivr": "./global.min.js",
|
|
40
40
|
"exports": {
|
|
41
41
|
"./package.json": "./package.json",
|
|
42
|
-
"./index.cjs": "./index.cjs",
|
|
43
|
-
"./index.js": "./index.js",
|
|
44
42
|
".": {
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
43
|
+
"import": {
|
|
44
|
+
"types": "./esm/index.d.ts",
|
|
45
|
+
"default": "./esm/index.js"
|
|
46
|
+
},
|
|
47
|
+
"require": "./cjs/index.cjs"
|
|
48
|
+
},
|
|
49
|
+
"./skeleton.css": "./skeleton.css",
|
|
50
|
+
"./skeleton.styles": "./skeleton.styles.js"
|
|
51
|
+
},
|
|
52
|
+
"sideEffects": [
|
|
53
|
+
"./global.js",
|
|
54
|
+
"./global.min.js",
|
|
55
|
+
"./skeleton.styles.js"
|
|
56
|
+
]
|
|
50
57
|
}
|
package/skeleton.css
ADDED
|
@@ -0,0 +1,477 @@
|
|
|
1
|
+
|
|
2
|
+
:root {
|
|
3
|
+
--fc-sticky-header-footer-z: 3;
|
|
4
|
+
--fc-popover-z: 4;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.fc-nG {
|
|
8
|
+
z-index: var(--fc-popover-z) !important;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.fc-Yb {
|
|
12
|
+
isolation: isolate;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/*
|
|
16
|
+
This will prevent all ancestors from customizing their box size unless they use .contentBox
|
|
17
|
+
*/
|
|
18
|
+
.fc-5K,
|
|
19
|
+
.fc-5K *,
|
|
20
|
+
.fc-5K *:before,
|
|
21
|
+
.fc-5K *:after {
|
|
22
|
+
box-sizing: border-box !important;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/* classes attached to <body> */
|
|
26
|
+
.fc-ja,
|
|
27
|
+
.fc-ja * {
|
|
28
|
+
cursor: not-allowed !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.fc-K0 {
|
|
32
|
+
-ms-overflow-style: none !important; /* IE and Edge */
|
|
33
|
+
scrollbar-width: none !important; /* Firefox */
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
37
|
+
.fc-K0::-webkit-scrollbar {
|
|
38
|
+
display: none !important;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.fc-Sj {
|
|
42
|
+
flex-shrink: 0 !important;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.fc-Ed .fc-gS {
|
|
46
|
+
display: flex !important;
|
|
47
|
+
flex-direction: row !important;
|
|
48
|
+
flex-wrap: wrap !important;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/* HACK for Safari. Can't do break-inside:avoid with flexbox items, likely b/c it's not standard:
|
|
52
|
+
https://stackoverflow.com/a/60256345 */
|
|
53
|
+
.fc-XH .fc-gS > * {
|
|
54
|
+
float: left !important;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
[dir=rtl] .fc-XH .fc-gS > *,
|
|
58
|
+
.fc-XH[dir=rtl] .fc-gS > * {
|
|
59
|
+
float: right !important;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.fc-XH .fc-gS::after {
|
|
63
|
+
content: "" !important;
|
|
64
|
+
display: block !important;
|
|
65
|
+
clear: both !important;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.fc-GT {
|
|
69
|
+
cursor: pointer !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.fc-mY {
|
|
73
|
+
cursor: n-resize !important;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.fc-Uq {
|
|
77
|
+
cursor: s-resize !important;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.fc-GP {
|
|
81
|
+
cursor: w-resize !important;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
[dir=rtl] .fc-GP {
|
|
85
|
+
cursor: e-resize !important;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.fc-Ux {
|
|
89
|
+
cursor: e-resize !important;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
[dir=rtl] .fc-Ux {
|
|
93
|
+
cursor: w-resize !important;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.fc-Me {
|
|
97
|
+
cursor: col-resize !important;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.fc-xb,
|
|
101
|
+
.fc-gb,
|
|
102
|
+
.fc-t3 {
|
|
103
|
+
position: absolute !important;
|
|
104
|
+
box-sizing: content-box !important;
|
|
105
|
+
width: 100% !important;
|
|
106
|
+
height: 100% !important;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.fc-xb {
|
|
110
|
+
padding: 10px !important;
|
|
111
|
+
margin: -10px !important;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.fc-gb {
|
|
115
|
+
padding-left: 10px !important;
|
|
116
|
+
padding-right: 10px !important;
|
|
117
|
+
margin-left: -10px !important;
|
|
118
|
+
margin-right: -10px !important;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.fc-t3 {
|
|
122
|
+
padding-top: 10px !important;
|
|
123
|
+
padding-bottom: 10px !important;
|
|
124
|
+
margin-top: -10px !important;
|
|
125
|
+
margin-bottom: -10px !important;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/* QUESTION: why not use -left -right instead of negative margins/padding for ALL? */
|
|
129
|
+
.fc-Yz {
|
|
130
|
+
position: absolute;
|
|
131
|
+
top: 0;
|
|
132
|
+
bottom: 0;
|
|
133
|
+
left: -5px;
|
|
134
|
+
right: -5px;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.fc-TF {
|
|
138
|
+
-webkit-user-select: none;
|
|
139
|
+
-moz-user-select: none;
|
|
140
|
+
user-select: none;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/* Border Utils */
|
|
144
|
+
/* ------------------------------------------------------------------------------------------------- */
|
|
145
|
+
|
|
146
|
+
/* TODO: break-out to x and y. don't have "only" all */
|
|
147
|
+
/* TODO: instead of "border" utils, call them "borderless" to subtract? */
|
|
148
|
+
|
|
149
|
+
.fc-3T {
|
|
150
|
+
border: 0 !important;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.fc-e5 {
|
|
154
|
+
border-left: 0 !important;
|
|
155
|
+
border-right: 0 !important;
|
|
156
|
+
border-bottom: 0 !important;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.fc-Zl {
|
|
160
|
+
border-top: 0 !important;
|
|
161
|
+
border-left: 0 !important;
|
|
162
|
+
border-right: 0 !important;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.fc-7t,
|
|
166
|
+
.fc-2T {
|
|
167
|
+
border-top: 0 !important;
|
|
168
|
+
border-bottom: 0 !important;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.fc-7t {
|
|
172
|
+
border-inline-end: 0 !important;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.fc-2T {
|
|
176
|
+
border-inline-start: 0 !important;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.fc-7F {
|
|
180
|
+
border-left: 0 !important;
|
|
181
|
+
border-right: 0 !important;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.fc-D9 {
|
|
185
|
+
border-top: 0 !important;
|
|
186
|
+
border-bottom: 0 !important;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.fc-dA {
|
|
190
|
+
border-top: 0 !important;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.fc-aP {
|
|
194
|
+
border-bottom: 0 !important;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
/* for matching cell start-border, assumed to be 1px, which can't be guaranteed */
|
|
198
|
+
.fc-Tq {
|
|
199
|
+
border-inline-start: 1px solid transparent !important;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
/* Flexbox Utils */
|
|
203
|
+
/* ------------------------------------------------------------------------------------------------- */
|
|
204
|
+
|
|
205
|
+
.fc-b7 {
|
|
206
|
+
display: flex !important;
|
|
207
|
+
flex-direction: row !important;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.fc-ST {
|
|
211
|
+
display: flex !important;
|
|
212
|
+
flex-direction: column !important;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.fc-Cm {
|
|
216
|
+
flex-grow: 1 !important;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.fc-K7 {
|
|
220
|
+
flex-grow: 1 !important;
|
|
221
|
+
flex-basis: 0 !important;
|
|
222
|
+
min-width: 0 !important;
|
|
223
|
+
min-height: 0 !important;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/*
|
|
227
|
+
TODO: use liquidX/Y elsewhere because frees up min other dimension; less collisions
|
|
228
|
+
*/
|
|
229
|
+
.fc-s5 {
|
|
230
|
+
flex-grow: 1 !important;
|
|
231
|
+
flex-basis: 0 !important;
|
|
232
|
+
min-width: 0 !important;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
/* Print-Safe Utils (media:screen ONLY) */
|
|
236
|
+
/* ------------------------------------------------------------------------------------------------- */
|
|
237
|
+
|
|
238
|
+
.fc-Ed .fc-Rb,
|
|
239
|
+
.fc-Ed .fc-wC {
|
|
240
|
+
display: flex !important;
|
|
241
|
+
flex-direction: column !important;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
/* Table Utils */
|
|
245
|
+
/* ------------------------------------------------------------------------------------------------- */
|
|
246
|
+
|
|
247
|
+
.fc-Vz {
|
|
248
|
+
margin: 0 !important;
|
|
249
|
+
padding: 0 !important;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.fc-HP {
|
|
253
|
+
padding: 0 !important;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.fc-WG {
|
|
257
|
+
margin: 0 !important;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.fc-Rq {
|
|
261
|
+
margin-top: 0 !important;
|
|
262
|
+
margin-bottom: 0 !important;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.fc-XC {
|
|
266
|
+
margin-left: 0 !important;
|
|
267
|
+
margin-right: 0 !important;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.fc-BY {
|
|
271
|
+
flex-shrink: 0 !important;
|
|
272
|
+
white-space: nowrap !important;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
/* Misc Utils */
|
|
276
|
+
/* ------------------------------------------------------------------------------------------------- */
|
|
277
|
+
|
|
278
|
+
.fc-cd {
|
|
279
|
+
overflow: hidden !important;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
/*
|
|
283
|
+
TODO: eventually use this on daygrid/timegrid events' inner, time, and title, FOR PRINT
|
|
284
|
+
Needed to prevent wrapping to multiple lines, increasing height, throwing off print-positioning,
|
|
285
|
+
which can't rely on dynamic height detection after print-flag activated.
|
|
286
|
+
*/
|
|
287
|
+
.fc-CR {
|
|
288
|
+
white-space: nowrap !important;
|
|
289
|
+
overflow: hidden !important;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.fc-uj {
|
|
293
|
+
box-shadow: none !important;
|
|
294
|
+
border-radius: 0 !important
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.fc-hA {
|
|
298
|
+
position: relative !important;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.fc-Er {
|
|
302
|
+
position: absolute !important;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.fc-73 {
|
|
306
|
+
inset-inline-start: 0 !important;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.fc-QO {
|
|
310
|
+
position: absolute !important;
|
|
311
|
+
top: 0 !important;
|
|
312
|
+
left: 0 !important;
|
|
313
|
+
right: 0 !important;
|
|
314
|
+
bottom: 0 !important;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.fc-me,
|
|
318
|
+
.fc-MX {
|
|
319
|
+
position: absolute !important;
|
|
320
|
+
left: 0 !important;
|
|
321
|
+
right: 0 !important;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.fc-oh,
|
|
325
|
+
.fc-Ge {
|
|
326
|
+
position: absolute !important;
|
|
327
|
+
top: 0 !important;
|
|
328
|
+
bottom: 0 !important;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.fc-me {
|
|
332
|
+
top: 0 !important;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.fc-Ge {
|
|
336
|
+
left: 0 !important;
|
|
337
|
+
right: 0 !important;
|
|
338
|
+
width: 0 !important;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
@media not print {
|
|
342
|
+
.fc-fu {
|
|
343
|
+
position: sticky !important;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.fc-HO {
|
|
347
|
+
position: sticky !important;
|
|
348
|
+
top: 0 !important;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
/* Sticks to either left or right (the flex "start") depending on ltr/rtl */
|
|
352
|
+
.fc-oq {
|
|
353
|
+
position: sticky !important;
|
|
354
|
+
left: 0 !important;
|
|
355
|
+
right: 0 !important;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.fc-yx {
|
|
359
|
+
position: sticky !important;
|
|
360
|
+
top: 0 !important;
|
|
361
|
+
z-index: var(--fc-sticky-header-footer-z) !important;
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
/* Only needed when padding/border must be separate from width/height */
|
|
366
|
+
.fc-OK {
|
|
367
|
+
box-sizing: content-box !important;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.fc-xD {
|
|
371
|
+
position: absolute !important;
|
|
372
|
+
left: -10000px !important;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.fc-yj {
|
|
376
|
+
align-items: center !important;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.fc-Kj {
|
|
380
|
+
align-items: flex-start !important;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.fc-fS {
|
|
384
|
+
align-items: flex-end !important;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.fc-v8 {
|
|
388
|
+
text-decoration: inherit;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
/* Footer Scrollbar */
|
|
392
|
+
/* ------------------------------------------------------------------------------------------------- */
|
|
393
|
+
|
|
394
|
+
.fc-4G {
|
|
395
|
+
position: sticky !important;
|
|
396
|
+
bottom: 0 !important;
|
|
397
|
+
z-index: var(--fc-sticky-header-footer-z) !important;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.fc-Bz > * {
|
|
401
|
+
margin-top: -1px !important;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.fc-Bz > * > * {
|
|
405
|
+
height: 1px !important;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
/* Print-Safe Utils */
|
|
409
|
+
/* ------------------------------------------------------------------------------------------------- */
|
|
410
|
+
|
|
411
|
+
.fc-XH .fc-zI {
|
|
412
|
+
-moz-column-break-inside: avoid !important;
|
|
413
|
+
break-inside: avoid !important;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.fc-XH .fc-Rb {
|
|
417
|
+
display: table !important;
|
|
418
|
+
table-layout: fixed !important;
|
|
419
|
+
width: 100% !important;
|
|
420
|
+
border-spacing: 0 !important;
|
|
421
|
+
border-collapse: collapse !important;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.fc-XH .fc-wC {
|
|
425
|
+
display: table-header-group !important;
|
|
426
|
+
-moz-column-break-inside: avoid !important;
|
|
427
|
+
break-inside: avoid !important;
|
|
428
|
+
background: #fff !important;
|
|
429
|
+
z-index: 9999 !important;
|
|
430
|
+
position: relative !important;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.fc-5H {
|
|
434
|
+
/* min-height when multiple rows coexist, provides sane aspect-ratio for cells */
|
|
435
|
+
min-height: 6em !important;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
/* Z-index */
|
|
439
|
+
/* ------------------------------------------------------------------------------------------------- */
|
|
440
|
+
|
|
441
|
+
.fc-Tf {
|
|
442
|
+
z-index: 0;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.fc-jM {
|
|
446
|
+
z-index: 1;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.fc-YU:focus-visible {
|
|
450
|
+
z-index: 2;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
/* INTERNAL MARKER -- used to mark an element for internal significance */
|
|
454
|
+
/* ------------------------------------------------------------------------------------------------- */
|
|
455
|
+
|
|
456
|
+
.fc-dZ {}
|
|
457
|
+
|
|
458
|
+
.fc-pv {}
|
|
459
|
+
.fc-0o {}
|
|
460
|
+
.fc-4f {}
|
|
461
|
+
.fc-5y {}
|
|
462
|
+
.fc-0D {}
|
|
463
|
+
.fc-E4 {}
|
|
464
|
+
.fc-bZ {}
|
|
465
|
+
.fc-al {}
|
|
466
|
+
|
|
467
|
+
.fc-90 {}
|
|
468
|
+
|
|
469
|
+
.fc-zk {}
|
|
470
|
+
|
|
471
|
+
.fc-p2 {}
|
|
472
|
+
|
|
473
|
+
.fc-Ji {}
|
|
474
|
+
|
|
475
|
+
.fc-3m {}
|
|
476
|
+
|
|
477
|
+
.fc-VB {}
|
package/skeleton.min.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--fc-sticky-header-footer-z:3;--fc-popover-z:4}.fc-nG{z-index:var(--fc-popover-z)!important}.fc-Yb{isolation:isolate}.fc-5K,.fc-5K *,.fc-5K :after,.fc-5K :before{box-sizing:border-box!important}.fc-ja,.fc-ja *{cursor:not-allowed!important}.fc-K0{-ms-overflow-style:none!important;scrollbar-width:none!important}.fc-K0::-webkit-scrollbar{display:none!important}.fc-Sj{flex-shrink:0!important}.fc-Ed .fc-gS{display:flex!important;flex-direction:row!important;flex-wrap:wrap!important}.fc-XH .fc-gS>*{float:left!important}.fc-XH[dir=rtl] .fc-gS>*,[dir=rtl] .fc-XH .fc-gS>*{float:right!important}.fc-XH .fc-gS:after{clear:both!important;content:""!important;display:block!important}.fc-GT{cursor:pointer!important}.fc-mY{cursor:n-resize!important}.fc-Uq{cursor:s-resize!important}.fc-GP{cursor:w-resize!important}.fc-Ux,[dir=rtl] .fc-GP{cursor:e-resize!important}[dir=rtl] .fc-Ux{cursor:w-resize!important}.fc-Me{cursor:col-resize!important}.fc-gb,.fc-t3,.fc-xb{box-sizing:content-box!important;height:100%!important;position:absolute!important;width:100%!important}.fc-xb{margin:-10px!important;padding:10px!important}.fc-gb{margin-left:-10px!important;margin-right:-10px!important;padding-left:10px!important;padding-right:10px!important}.fc-t3{margin-bottom:-10px!important;margin-top:-10px!important;padding-bottom:10px!important;padding-top:10px!important}.fc-Yz{bottom:0;left:-5px;position:absolute;right:-5px;top:0}.fc-TF{-webkit-user-select:none;-moz-user-select:none;user-select:none}.fc-3T{border:0!important}.fc-e5{border-bottom:0!important}.fc-Zl,.fc-e5{border-left:0!important;border-right:0!important}.fc-2T,.fc-7t,.fc-Zl{border-top:0!important}.fc-2T,.fc-7t{border-bottom:0!important}.fc-7t{border-inline-end:0!important}.fc-2T{border-inline-start:0!important}.fc-7F{border-left:0!important;border-right:0!important}.fc-D9{border-bottom:0!important}.fc-D9,.fc-dA{border-top:0!important}.fc-aP{border-bottom:0!important}.fc-Tq{border-inline-start:1px solid transparent!important}.fc-b7{flex-direction:row!important}.fc-ST,.fc-b7{display:flex!important}.fc-ST{flex-direction:column!important}.fc-Cm{flex-grow:1!important}.fc-K7{min-height:0!important}.fc-K7,.fc-s5{flex-basis:0!important;flex-grow:1!important;min-width:0!important}.fc-Ed .fc-Rb,.fc-Ed .fc-wC{display:flex!important;flex-direction:column!important}.fc-Vz{margin:0!important}.fc-HP,.fc-Vz{padding:0!important}.fc-WG{margin:0!important}.fc-Rq{margin-bottom:0!important;margin-top:0!important}.fc-XC{margin-left:0!important;margin-right:0!important}.fc-BY{flex-shrink:0!important;white-space:nowrap!important}.fc-CR,.fc-cd{overflow:hidden!important}.fc-CR{white-space:nowrap!important}.fc-uj{border-radius:0!important;box-shadow:none!important}.fc-hA{position:relative!important}.fc-Er{position:absolute!important}.fc-73{inset-inline-start:0!important}.fc-QO{bottom:0!important;top:0!important}.fc-MX,.fc-QO,.fc-me{left:0!important;position:absolute!important;right:0!important}.fc-Ge,.fc-oh{bottom:0!important;position:absolute!important}.fc-Ge,.fc-me,.fc-oh{top:0!important}.fc-Ge{left:0!important;right:0!important;width:0!important}@media not print{.fc-HO,.fc-fu{position:sticky!important}.fc-HO{top:0!important}.fc-oq{left:0!important;right:0!important}.fc-oq,.fc-yx{position:sticky!important}.fc-yx{top:0!important;z-index:var(--fc-sticky-header-footer-z)!important}}.fc-OK{box-sizing:content-box!important}.fc-xD{left:-10000px!important;position:absolute!important}.fc-yj{align-items:center!important}.fc-Kj{align-items:flex-start!important}.fc-fS{align-items:flex-end!important}.fc-v8{text-decoration:inherit}.fc-4G{bottom:0!important;position:sticky!important;z-index:var(--fc-sticky-header-footer-z)!important}.fc-Bz>*{margin-top:-1px!important}.fc-Bz>*>*{height:1px!important}.fc-XH .fc-zI{-moz-column-break-inside:avoid!important;break-inside:avoid!important}.fc-XH .fc-Rb{border-collapse:collapse!important;border-spacing:0!important;display:table!important;table-layout:fixed!important;width:100%!important}.fc-XH .fc-wC{display:table-header-group!important;-moz-column-break-inside:avoid!important;background:#fff!important;break-inside:avoid!important;position:relative!important;z-index:9999!important}.fc-5H{min-height:6em!important}.fc-Tf{z-index:0}.fc-jM{z-index:1}.fc-YU:focus-visible{z-index:2}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
((cssText) => {
|
|
2
|
+
let applyStyles
|
|
3
|
+
|
|
4
|
+
if (typeof document === 'undefined') {
|
|
5
|
+
applyStyles = () => {}
|
|
6
|
+
} else if (
|
|
7
|
+
'adoptedStyleSheets' in Document.prototype &&
|
|
8
|
+
'replaceSync' in CSSStyleSheet.prototype
|
|
9
|
+
) {
|
|
10
|
+
const styleSheet = new CSSStyleSheet()
|
|
11
|
+
styleSheet.replaceSync(cssText)
|
|
12
|
+
applyStyles = (target = document) => {
|
|
13
|
+
target.adoptedStyleSheets = [...target.adoptedStyleSheets, styleSheet]
|
|
14
|
+
}
|
|
15
|
+
} else {
|
|
16
|
+
const styleEl = document.createElement('style')
|
|
17
|
+
styleEl.textContent = cssText
|
|
18
|
+
applyStyles = (target = document.head) => {
|
|
19
|
+
target.appendChild(styleEl.parentNode ? styleEl.cloneNode(true) : styleEl)
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
const oldApplyStyles = globalThis.__applyFullCalendarStyles
|
|
24
|
+
globalThis.__applyFullCalendarStyles = (target) => {
|
|
25
|
+
oldApplyStyles && oldApplyStyles(target)
|
|
26
|
+
applyStyles(target)
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
applyStyles()
|
|
30
|
+
})(":root{--fc-sticky-header-footer-z:3;--fc-popover-z:4}.fc-nG{z-index:var(--fc-popover-z)!important}.fc-Yb{isolation:isolate}.fc-5K,.fc-5K *,.fc-5K :after,.fc-5K :before{box-sizing:border-box!important}.fc-ja,.fc-ja *{cursor:not-allowed!important}.fc-K0{-ms-overflow-style:none!important;scrollbar-width:none!important}.fc-K0::-webkit-scrollbar{display:none!important}.fc-Sj{flex-shrink:0!important}.fc-Ed .fc-gS{display:flex!important;flex-direction:row!important;flex-wrap:wrap!important}.fc-XH .fc-gS>*{float:left!important}.fc-XH[dir=rtl] .fc-gS>*,[dir=rtl] .fc-XH .fc-gS>*{float:right!important}.fc-XH .fc-gS:after{clear:both!important;content:\"\"!important;display:block!important}.fc-GT{cursor:pointer!important}.fc-mY{cursor:n-resize!important}.fc-Uq{cursor:s-resize!important}.fc-GP{cursor:w-resize!important}.fc-Ux,[dir=rtl] .fc-GP{cursor:e-resize!important}[dir=rtl] .fc-Ux{cursor:w-resize!important}.fc-Me{cursor:col-resize!important}.fc-gb,.fc-t3,.fc-xb{box-sizing:content-box!important;height:100%!important;position:absolute!important;width:100%!important}.fc-xb{margin:-10px!important;padding:10px!important}.fc-gb{margin-left:-10px!important;margin-right:-10px!important;padding-left:10px!important;padding-right:10px!important}.fc-t3{margin-bottom:-10px!important;margin-top:-10px!important;padding-bottom:10px!important;padding-top:10px!important}.fc-Yz{bottom:0;left:-5px;position:absolute;right:-5px;top:0}.fc-TF{-webkit-user-select:none;-moz-user-select:none;user-select:none}.fc-3T{border:0!important}.fc-e5{border-bottom:0!important}.fc-Zl,.fc-e5{border-left:0!important;border-right:0!important}.fc-2T,.fc-7t,.fc-Zl{border-top:0!important}.fc-2T,.fc-7t{border-bottom:0!important}.fc-7t{border-inline-end:0!important}.fc-2T{border-inline-start:0!important}.fc-7F{border-left:0!important;border-right:0!important}.fc-D9{border-bottom:0!important}.fc-D9,.fc-dA{border-top:0!important}.fc-aP{border-bottom:0!important}.fc-Tq{border-inline-start:1px solid transparent!important}.fc-b7{flex-direction:row!important}.fc-ST,.fc-b7{display:flex!important}.fc-ST{flex-direction:column!important}.fc-Cm{flex-grow:1!important}.fc-K7{min-height:0!important}.fc-K7,.fc-s5{flex-basis:0!important;flex-grow:1!important;min-width:0!important}.fc-Ed .fc-Rb,.fc-Ed .fc-wC{display:flex!important;flex-direction:column!important}.fc-Vz{margin:0!important}.fc-HP,.fc-Vz{padding:0!important}.fc-WG{margin:0!important}.fc-Rq{margin-bottom:0!important;margin-top:0!important}.fc-XC{margin-left:0!important;margin-right:0!important}.fc-BY{flex-shrink:0!important;white-space:nowrap!important}.fc-CR,.fc-cd{overflow:hidden!important}.fc-CR{white-space:nowrap!important}.fc-uj{border-radius:0!important;box-shadow:none!important}.fc-hA{position:relative!important}.fc-Er{position:absolute!important}.fc-73{inset-inline-start:0!important}.fc-QO{bottom:0!important;top:0!important}.fc-MX,.fc-QO,.fc-me{left:0!important;position:absolute!important;right:0!important}.fc-Ge,.fc-oh{bottom:0!important;position:absolute!important}.fc-Ge,.fc-me,.fc-oh{top:0!important}.fc-Ge{left:0!important;right:0!important;width:0!important}@media not print{.fc-HO,.fc-fu{position:sticky!important}.fc-HO{top:0!important}.fc-oq{left:0!important;right:0!important}.fc-oq,.fc-yx{position:sticky!important}.fc-yx{top:0!important;z-index:var(--fc-sticky-header-footer-z)!important}}.fc-OK{box-sizing:content-box!important}.fc-xD{left:-10000px!important;position:absolute!important}.fc-yj{align-items:center!important}.fc-Kj{align-items:flex-start!important}.fc-fS{align-items:flex-end!important}.fc-v8{text-decoration:inherit}.fc-4G{bottom:0!important;position:sticky!important;z-index:var(--fc-sticky-header-footer-z)!important}.fc-Bz>*{margin-top:-1px!important}.fc-Bz>*>*{height:1px!important}.fc-XH .fc-zI{-moz-column-break-inside:avoid!important;break-inside:avoid!important}.fc-XH .fc-Rb{border-collapse:collapse!important;border-spacing:0!important;display:table!important;table-layout:fixed!important;width:100%!important}.fc-XH .fc-wC{display:table-header-group!important;-moz-column-break-inside:avoid!important;background:#fff!important;break-inside:avoid!important;position:relative!important;z-index:9999!important}.fc-5H{min-height:6em!important}.fc-Tf{z-index:0}.fc-jM{z-index:1}.fc-YU:focus-visible{z-index:2}")
|