@dayflow/core 3.3.3 → 3.3.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/dist/index.d.ts +114 -19
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/styles.components.css +43 -2
- package/dist/styles.css +8 -36
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer theme, base, df-theme, components, utilities;
|
|
2
3
|
@layer theme {
|
|
3
4
|
:root, :host {
|
|
4
5
|
--color-gray-100: oklch(96.7% 0.003 264.542);
|
|
@@ -507,10 +508,14 @@
|
|
|
507
508
|
.df-nav-button:hover {
|
|
508
509
|
color: var(--df-color-primary);
|
|
509
510
|
}
|
|
510
|
-
.df-calendar-container .text-primary
|
|
511
|
+
.df-calendar-container .text-primary,
|
|
512
|
+
.df-event-detail-panel .text-primary,
|
|
513
|
+
.df-dialog-container .text-primary {
|
|
511
514
|
color: var(--df-color-primary);
|
|
512
515
|
}
|
|
513
|
-
.df-calendar-container .
|
|
516
|
+
.df-calendar-container .bg-primary\/10,
|
|
517
|
+
.df-event-detail-panel .bg-primary\/10,
|
|
518
|
+
.df-dialog-container .bg-primary\/10 {
|
|
514
519
|
background-color: var(--df-color-primary);
|
|
515
520
|
@supports (color: color-mix(in lab, red, red)) {
|
|
516
521
|
background-color: color-mix(
|
|
@@ -520,6 +525,42 @@
|
|
|
520
525
|
);
|
|
521
526
|
}
|
|
522
527
|
}
|
|
528
|
+
.df-calendar-container .hover\:bg-primary\/10:hover,
|
|
529
|
+
.df-event-detail-panel .hover\:bg-primary\/10:hover,
|
|
530
|
+
.df-dialog-container .hover\:bg-primary\/10:hover {
|
|
531
|
+
background-color: var(--df-color-primary);
|
|
532
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
533
|
+
background-color: color-mix(
|
|
534
|
+
in srgb,
|
|
535
|
+
var(--df-color-primary) 10%,
|
|
536
|
+
transparent
|
|
537
|
+
);
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
.df-calendar-container .bg-primary\/20,
|
|
541
|
+
.df-event-detail-panel .bg-primary\/20,
|
|
542
|
+
.df-dialog-container .bg-primary\/20 {
|
|
543
|
+
background-color: var(--df-color-primary);
|
|
544
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
545
|
+
background-color: color-mix(
|
|
546
|
+
in srgb,
|
|
547
|
+
var(--df-color-primary) 20%,
|
|
548
|
+
transparent
|
|
549
|
+
);
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
.df-calendar-container .hover\:bg-primary\/20:hover,
|
|
553
|
+
.df-event-detail-panel .hover\:bg-primary\/20:hover,
|
|
554
|
+
.df-dialog-container .hover\:bg-primary\/20:hover {
|
|
555
|
+
background-color: var(--df-color-primary);
|
|
556
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
557
|
+
background-color: color-mix(
|
|
558
|
+
in srgb,
|
|
559
|
+
var(--df-color-primary) 20%,
|
|
560
|
+
transparent
|
|
561
|
+
);
|
|
562
|
+
}
|
|
563
|
+
}
|
|
523
564
|
.df-calendar-container .hover\:text-primary:hover {
|
|
524
565
|
color: var(--df-color-primary);
|
|
525
566
|
}
|
package/dist/styles.css
CHANGED
|
@@ -396,8 +396,8 @@
|
|
|
396
396
|
.z-10001 {
|
|
397
397
|
z-index: 10001;
|
|
398
398
|
}
|
|
399
|
-
.z-\[
|
|
400
|
-
z-index:
|
|
399
|
+
.z-\[100\] {
|
|
400
|
+
z-index: 100;
|
|
401
401
|
}
|
|
402
402
|
.z-\[9999\] {
|
|
403
403
|
z-index: 9999;
|
|
@@ -513,9 +513,6 @@
|
|
|
513
513
|
.block {
|
|
514
514
|
display: block;
|
|
515
515
|
}
|
|
516
|
-
.block\! {
|
|
517
|
-
display: block !important;
|
|
518
|
-
}
|
|
519
516
|
.flex {
|
|
520
517
|
display: flex;
|
|
521
518
|
}
|
|
@@ -1129,7 +1126,7 @@
|
|
|
1129
1126
|
.border-transparent {
|
|
1130
1127
|
border-color: transparent;
|
|
1131
1128
|
}
|
|
1132
|
-
.border-l-primary {
|
|
1129
|
+
.border-l-\[var\(--df-color-primary\)\] {
|
|
1133
1130
|
border-left-color: var(--df-color-primary);
|
|
1134
1131
|
}
|
|
1135
1132
|
.bg-\[var\(--df-color-primary\)\] {
|
|
@@ -1222,12 +1219,6 @@
|
|
|
1222
1219
|
.bg-secondary {
|
|
1223
1220
|
background-color: var(--df-color-secondary);
|
|
1224
1221
|
}
|
|
1225
|
-
.bg-secondary\/10 {
|
|
1226
|
-
background-color: var(--df-color-secondary);
|
|
1227
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1228
|
-
background-color: color-mix(in oklab, var(--df-color-secondary) 10%, transparent);
|
|
1229
|
-
}
|
|
1230
|
-
}
|
|
1231
1222
|
.bg-slate-50 {
|
|
1232
1223
|
background-color: var(--color-slate-50);
|
|
1233
1224
|
}
|
|
@@ -1508,9 +1499,6 @@
|
|
|
1508
1499
|
.text-red-500 {
|
|
1509
1500
|
color: var(--color-red-500);
|
|
1510
1501
|
}
|
|
1511
|
-
.text-secondary {
|
|
1512
|
-
color: var(--df-color-secondary);
|
|
1513
|
-
}
|
|
1514
1502
|
.text-secondary-foreground {
|
|
1515
1503
|
color: var(--df-color-secondary-foreground);
|
|
1516
1504
|
}
|
|
@@ -1696,10 +1684,6 @@
|
|
|
1696
1684
|
--tw-duration: 200ms;
|
|
1697
1685
|
transition-duration: 200ms;
|
|
1698
1686
|
}
|
|
1699
|
-
.duration-250 {
|
|
1700
|
-
--tw-duration: 250ms;
|
|
1701
|
-
transition-duration: 250ms;
|
|
1702
|
-
}
|
|
1703
1687
|
.duration-300 {
|
|
1704
1688
|
--tw-duration: 300ms;
|
|
1705
1689
|
transition-duration: 300ms;
|
|
@@ -1863,13 +1847,6 @@
|
|
|
1863
1847
|
}
|
|
1864
1848
|
}
|
|
1865
1849
|
}
|
|
1866
|
-
.hover\:bg-primary {
|
|
1867
|
-
&:hover {
|
|
1868
|
-
@media (hover: hover) {
|
|
1869
|
-
background-color: var(--df-color-primary);
|
|
1870
|
-
}
|
|
1871
|
-
}
|
|
1872
|
-
}
|
|
1873
1850
|
.hover\:bg-primary\/10 {
|
|
1874
1851
|
&:hover {
|
|
1875
1852
|
@media (hover: hover) {
|
|
@@ -1880,22 +1857,22 @@
|
|
|
1880
1857
|
}
|
|
1881
1858
|
}
|
|
1882
1859
|
}
|
|
1883
|
-
.hover\:bg-primary\/
|
|
1860
|
+
.hover\:bg-primary\/20 {
|
|
1884
1861
|
&:hover {
|
|
1885
1862
|
@media (hover: hover) {
|
|
1886
1863
|
background-color: var(--df-color-primary);
|
|
1887
1864
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1888
|
-
background-color: color-mix(in oklab, var(--df-color-primary)
|
|
1865
|
+
background-color: color-mix(in oklab, var(--df-color-primary) 20%, transparent);
|
|
1889
1866
|
}
|
|
1890
1867
|
}
|
|
1891
1868
|
}
|
|
1892
1869
|
}
|
|
1893
|
-
.hover\:bg-
|
|
1870
|
+
.hover\:bg-primary\/90 {
|
|
1894
1871
|
&:hover {
|
|
1895
1872
|
@media (hover: hover) {
|
|
1896
|
-
background-color: var(--df-color-
|
|
1873
|
+
background-color: var(--df-color-primary);
|
|
1897
1874
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1898
|
-
background-color: color-mix(in oklab, var(--df-color-
|
|
1875
|
+
background-color: color-mix(in oklab, var(--df-color-primary) 90%, transparent);
|
|
1899
1876
|
}
|
|
1900
1877
|
}
|
|
1901
1878
|
}
|
|
@@ -2164,11 +2141,6 @@
|
|
|
2164
2141
|
border-color: var(--color-slate-800);
|
|
2165
2142
|
}
|
|
2166
2143
|
}
|
|
2167
|
-
.dark\:border-l-primary {
|
|
2168
|
-
.dark & {
|
|
2169
|
-
border-left-color: var(--df-color-primary);
|
|
2170
|
-
}
|
|
2171
|
-
}
|
|
2172
2144
|
.dark\:bg-black\/80 {
|
|
2173
2145
|
.dark & {
|
|
2174
2146
|
background-color: color-mix(in srgb, #000 80%, transparent);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dayflow/core",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.4",
|
|
4
4
|
"description": "A flexible and feature-rich calendar engine powered by Preact with drag-and-drop support, multiple views (Day, Week, Month, Year), and plugin architecture",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"calendar",
|