@steedos-widgets/fullcalendar 6.10.1-beta.58 → 6.10.1-beta.59
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/dist/assets.json +5 -5
- package/dist/fullcalendar.umd.css +236 -0
- package/dist/fullcalendar.umd.js +12 -6
- package/package.json +3 -3
- package/dist/fullcalendar.cjs.css +0 -1525
- package/dist/fullcalendar.cjs.js +0 -82
- package/dist/fullcalendar.cjs.js.map +0 -1
- package/dist/fullcalendar.esm.css +0 -1525
- package/dist/fullcalendar.esm.js +0 -82
- package/dist/fullcalendar.esm.js.map +0 -1
package/dist/assets.json
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
{
|
|
4
4
|
"package": "@steedos-widgets/fullcalendar",
|
|
5
5
|
"urls": [
|
|
6
|
-
"https://unpkg.com/@steedos-widgets/fullcalendar@6.10.1-beta.
|
|
7
|
-
"https://unpkg.com/@steedos-widgets/fullcalendar@6.10.1-beta.
|
|
6
|
+
"https://unpkg.com/@steedos-widgets/fullcalendar@6.10.1-beta.59/dist/fullcalendar.umd.js",
|
|
7
|
+
"https://unpkg.com/@steedos-widgets/fullcalendar@6.10.1-beta.59/dist/fullcalendar.umd.css"
|
|
8
8
|
],
|
|
9
9
|
"library": "BuilderFullCalendar"
|
|
10
10
|
}
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"npm": {
|
|
16
16
|
"package": "@steedos-widgets/fullcalendar"
|
|
17
17
|
},
|
|
18
|
-
"url": "https://unpkg.com/@steedos-widgets/fullcalendar@6.10.1-beta.
|
|
18
|
+
"url": "https://unpkg.com/@steedos-widgets/fullcalendar@6.10.1-beta.59/dist/meta.js",
|
|
19
19
|
"urls": {
|
|
20
|
-
"default": "https://unpkg.com/@steedos-widgets/fullcalendar@6.10.1-beta.
|
|
21
|
-
"design": "https://unpkg.com/@steedos-widgets/fullcalendar@6.10.1-beta.
|
|
20
|
+
"default": "https://unpkg.com/@steedos-widgets/fullcalendar@6.10.1-beta.59/dist/meta.js",
|
|
21
|
+
"design": "https://unpkg.com/@steedos-widgets/fullcalendar@6.10.1-beta.59/dist/meta.js"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
]
|
|
@@ -1319,6 +1319,242 @@ A VERTICAL event
|
|
|
1319
1319
|
}
|
|
1320
1320
|
|
|
1321
1321
|
|
|
1322
|
+
:root {
|
|
1323
|
+
--fc-daygrid-event-dot-width: 8px;
|
|
1324
|
+
}
|
|
1325
|
+
/* help things clear margins of inner content */
|
|
1326
|
+
.fc-daygrid-day-frame,
|
|
1327
|
+
.fc-daygrid-day-events,
|
|
1328
|
+
.fc-daygrid-event-harness { /* for event top/bottom margins */
|
|
1329
|
+
}
|
|
1330
|
+
.fc-daygrid-day-frame:before, .fc-daygrid-day-events:before, .fc-daygrid-event-harness:before {
|
|
1331
|
+
content: "";
|
|
1332
|
+
clear: both;
|
|
1333
|
+
display: table; }
|
|
1334
|
+
.fc-daygrid-day-frame:after, .fc-daygrid-day-events:after, .fc-daygrid-event-harness:after {
|
|
1335
|
+
content: "";
|
|
1336
|
+
clear: both;
|
|
1337
|
+
display: table; }
|
|
1338
|
+
.fc .fc-daygrid-body { /* a <div> that wraps the table */
|
|
1339
|
+
position: relative;
|
|
1340
|
+
z-index: 1; /* container inner z-index's because <tr>s can't do it */
|
|
1341
|
+
}
|
|
1342
|
+
.fc .fc-daygrid-day.fc-day-today {
|
|
1343
|
+
background-color: rgba(255, 220, 40, 0.15);
|
|
1344
|
+
background-color: var(--fc-today-bg-color, rgba(255, 220, 40, 0.15));
|
|
1345
|
+
}
|
|
1346
|
+
.fc .fc-daygrid-day-frame {
|
|
1347
|
+
position: relative;
|
|
1348
|
+
min-height: 100%; /* seems to work better than `height` because sets height after rows/cells naturally do it */
|
|
1349
|
+
}
|
|
1350
|
+
.fc {
|
|
1351
|
+
|
|
1352
|
+
/* cell top */
|
|
1353
|
+
|
|
1354
|
+
}
|
|
1355
|
+
.fc .fc-daygrid-day-top {
|
|
1356
|
+
display: flex;
|
|
1357
|
+
flex-direction: row-reverse;
|
|
1358
|
+
}
|
|
1359
|
+
.fc .fc-day-other .fc-daygrid-day-top {
|
|
1360
|
+
opacity: 0.3;
|
|
1361
|
+
}
|
|
1362
|
+
.fc {
|
|
1363
|
+
|
|
1364
|
+
/* day number (within cell top) */
|
|
1365
|
+
|
|
1366
|
+
}
|
|
1367
|
+
.fc .fc-daygrid-day-number {
|
|
1368
|
+
position: relative;
|
|
1369
|
+
z-index: 4;
|
|
1370
|
+
padding: 4px;
|
|
1371
|
+
}
|
|
1372
|
+
.fc {
|
|
1373
|
+
|
|
1374
|
+
/* event container */
|
|
1375
|
+
|
|
1376
|
+
}
|
|
1377
|
+
.fc .fc-daygrid-day-events {
|
|
1378
|
+
margin-top: 1px; /* needs to be margin, not padding, so that available cell height can be computed */
|
|
1379
|
+
}
|
|
1380
|
+
.fc {
|
|
1381
|
+
|
|
1382
|
+
/* positioning for balanced vs natural */
|
|
1383
|
+
|
|
1384
|
+
}
|
|
1385
|
+
.fc .fc-daygrid-body-balanced .fc-daygrid-day-events {
|
|
1386
|
+
position: absolute;
|
|
1387
|
+
left: 0;
|
|
1388
|
+
right: 0;
|
|
1389
|
+
}
|
|
1390
|
+
.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
|
|
1391
|
+
position: relative; /* for containing abs positioned event harnesses */
|
|
1392
|
+
min-height: 2em; /* in addition to being a min-height during natural height, equalizes the heights a little bit */
|
|
1393
|
+
}
|
|
1394
|
+
.fc .fc-daygrid-body-natural { /* can coexist with -unbalanced */
|
|
1395
|
+
}
|
|
1396
|
+
.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
|
|
1397
|
+
margin-bottom: 1em;
|
|
1398
|
+
}
|
|
1399
|
+
.fc {
|
|
1400
|
+
|
|
1401
|
+
/* event harness */
|
|
1402
|
+
|
|
1403
|
+
}
|
|
1404
|
+
.fc .fc-daygrid-event-harness {
|
|
1405
|
+
position: relative;
|
|
1406
|
+
}
|
|
1407
|
+
.fc .fc-daygrid-event-harness-abs {
|
|
1408
|
+
position: absolute;
|
|
1409
|
+
top: 0; /* fallback coords for when cannot yet be computed */
|
|
1410
|
+
left: 0; /* */
|
|
1411
|
+
right: 0; /* */
|
|
1412
|
+
}
|
|
1413
|
+
.fc .fc-daygrid-bg-harness {
|
|
1414
|
+
position: absolute;
|
|
1415
|
+
top: 0;
|
|
1416
|
+
bottom: 0;
|
|
1417
|
+
}
|
|
1418
|
+
.fc {
|
|
1419
|
+
|
|
1420
|
+
/* bg content */
|
|
1421
|
+
|
|
1422
|
+
}
|
|
1423
|
+
.fc .fc-daygrid-day-bg .fc-non-business { z-index: 1 }
|
|
1424
|
+
.fc .fc-daygrid-day-bg .fc-bg-event { z-index: 2 }
|
|
1425
|
+
.fc .fc-daygrid-day-bg .fc-highlight { z-index: 3 }
|
|
1426
|
+
.fc {
|
|
1427
|
+
|
|
1428
|
+
/* events */
|
|
1429
|
+
|
|
1430
|
+
}
|
|
1431
|
+
.fc .fc-daygrid-event {
|
|
1432
|
+
z-index: 6;
|
|
1433
|
+
margin-top: 1px;
|
|
1434
|
+
}
|
|
1435
|
+
.fc .fc-daygrid-event.fc-event-mirror {
|
|
1436
|
+
z-index: 7;
|
|
1437
|
+
}
|
|
1438
|
+
.fc {
|
|
1439
|
+
|
|
1440
|
+
/* cell bottom (within day-events) */
|
|
1441
|
+
|
|
1442
|
+
}
|
|
1443
|
+
.fc .fc-daygrid-day-bottom {
|
|
1444
|
+
font-size: .85em;
|
|
1445
|
+
padding: 2px 3px 0
|
|
1446
|
+
}
|
|
1447
|
+
.fc .fc-daygrid-day-bottom:before {
|
|
1448
|
+
content: "";
|
|
1449
|
+
clear: both;
|
|
1450
|
+
display: table; }
|
|
1451
|
+
.fc .fc-daygrid-more-link {
|
|
1452
|
+
position: relative;
|
|
1453
|
+
z-index: 4;
|
|
1454
|
+
cursor: pointer;
|
|
1455
|
+
}
|
|
1456
|
+
.fc {
|
|
1457
|
+
|
|
1458
|
+
/* week number (within frame) */
|
|
1459
|
+
|
|
1460
|
+
}
|
|
1461
|
+
.fc .fc-daygrid-week-number {
|
|
1462
|
+
position: absolute;
|
|
1463
|
+
z-index: 5;
|
|
1464
|
+
top: 0;
|
|
1465
|
+
padding: 2px;
|
|
1466
|
+
min-width: 1.5em;
|
|
1467
|
+
text-align: center;
|
|
1468
|
+
background-color: rgba(208, 208, 208, 0.3);
|
|
1469
|
+
background-color: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
|
|
1470
|
+
color: #808080;
|
|
1471
|
+
color: var(--fc-neutral-text-color, #808080);
|
|
1472
|
+
}
|
|
1473
|
+
.fc {
|
|
1474
|
+
|
|
1475
|
+
/* popover */
|
|
1476
|
+
|
|
1477
|
+
}
|
|
1478
|
+
.fc .fc-more-popover .fc-popover-body {
|
|
1479
|
+
min-width: 220px;
|
|
1480
|
+
padding: 10px;
|
|
1481
|
+
}
|
|
1482
|
+
.fc-direction-ltr .fc-daygrid-event.fc-event-start,
|
|
1483
|
+
.fc-direction-rtl .fc-daygrid-event.fc-event-end {
|
|
1484
|
+
margin-left: 2px;
|
|
1485
|
+
}
|
|
1486
|
+
.fc-direction-ltr .fc-daygrid-event.fc-event-end,
|
|
1487
|
+
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
|
|
1488
|
+
margin-right: 2px;
|
|
1489
|
+
}
|
|
1490
|
+
.fc-direction-ltr .fc-daygrid-week-number {
|
|
1491
|
+
left: 0;
|
|
1492
|
+
border-radius: 0 0 3px 0;
|
|
1493
|
+
}
|
|
1494
|
+
.fc-direction-rtl .fc-daygrid-week-number {
|
|
1495
|
+
right: 0;
|
|
1496
|
+
border-radius: 0 0 0 3px;
|
|
1497
|
+
}
|
|
1498
|
+
.fc-liquid-hack .fc-daygrid-day-frame {
|
|
1499
|
+
position: static; /* will cause inner absolute stuff to expand to <td> */
|
|
1500
|
+
}
|
|
1501
|
+
.fc-daygrid-event { /* make root-level, because will be dragged-and-dropped outside of a component root */
|
|
1502
|
+
position: relative; /* for z-indexes assigned later */
|
|
1503
|
+
white-space: nowrap;
|
|
1504
|
+
border-radius: 3px; /* dot event needs this to when selected */
|
|
1505
|
+
font-size: .85em;
|
|
1506
|
+
font-size: var(--fc-small-font-size, .85em);
|
|
1507
|
+
}
|
|
1508
|
+
/* --- the rectangle ("block") style of event --- */
|
|
1509
|
+
.fc-daygrid-block-event .fc-event-time {
|
|
1510
|
+
font-weight: bold;
|
|
1511
|
+
}
|
|
1512
|
+
.fc-daygrid-block-event .fc-event-time,
|
|
1513
|
+
.fc-daygrid-block-event .fc-event-title {
|
|
1514
|
+
padding: 1px;
|
|
1515
|
+
}
|
|
1516
|
+
/* --- the dot style of event --- */
|
|
1517
|
+
.fc-daygrid-dot-event {
|
|
1518
|
+
display: flex;
|
|
1519
|
+
align-items: center;
|
|
1520
|
+
padding: 2px 0
|
|
1521
|
+
|
|
1522
|
+
}
|
|
1523
|
+
.fc-daygrid-dot-event .fc-event-title {
|
|
1524
|
+
flex-grow: 1;
|
|
1525
|
+
flex-shrink: 1;
|
|
1526
|
+
min-width: 0; /* important for allowing to shrink all the way */
|
|
1527
|
+
overflow: hidden;
|
|
1528
|
+
font-weight: bold;
|
|
1529
|
+
}
|
|
1530
|
+
.fc-daygrid-dot-event:hover,
|
|
1531
|
+
.fc-daygrid-dot-event.fc-event-mirror {
|
|
1532
|
+
background: rgba(0, 0, 0, 0.1);
|
|
1533
|
+
}
|
|
1534
|
+
.fc-daygrid-dot-event.fc-event-selected:before {
|
|
1535
|
+
/* expand hit area */
|
|
1536
|
+
top: -10px;
|
|
1537
|
+
bottom: -10px;
|
|
1538
|
+
}
|
|
1539
|
+
.fc-daygrid-event-dot { /* the actual dot */
|
|
1540
|
+
margin: 0 4px;
|
|
1541
|
+
box-sizing: content-box;
|
|
1542
|
+
width: 0;
|
|
1543
|
+
height: 0;
|
|
1544
|
+
border: 4px solid #3788d8;
|
|
1545
|
+
border: calc(var(--fc-daygrid-event-dot-width, 8px) / 2) solid var(--fc-event-border-color, #3788d8);
|
|
1546
|
+
border-radius: 4px;
|
|
1547
|
+
border-radius: calc(var(--fc-daygrid-event-dot-width, 8px) / 2);
|
|
1548
|
+
}
|
|
1549
|
+
/* --- spacing between time and title --- */
|
|
1550
|
+
.fc-direction-ltr .fc-daygrid-event .fc-event-time {
|
|
1551
|
+
margin-right: 3px;
|
|
1552
|
+
}
|
|
1553
|
+
.fc-direction-rtl .fc-daygrid-event .fc-event-time {
|
|
1554
|
+
margin-left: 3px;
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
|
|
1322
1558
|
:root {
|
|
1323
1559
|
--fc-list-event-dot-width: 10px;
|
|
1324
1560
|
--fc-list-event-hover-bg-color: #f5f5f5;
|