@dayflow/core 3.3.1 → 3.3.2
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 +51 -2
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/styles.components.css +1 -0
- package/dist/styles.css +21 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -382,6 +382,9 @@
|
|
|
382
382
|
.z-10001 {
|
|
383
383
|
z-index: 10001;
|
|
384
384
|
}
|
|
385
|
+
.z-\[15\] {
|
|
386
|
+
z-index: 15;
|
|
387
|
+
}
|
|
385
388
|
.z-\[9999\] {
|
|
386
389
|
z-index: 9999;
|
|
387
390
|
}
|
|
@@ -412,6 +415,9 @@
|
|
|
412
415
|
.-mx-1 {
|
|
413
416
|
margin-inline: calc(var(--spacing) * -1);
|
|
414
417
|
}
|
|
418
|
+
.mx-0\.5 {
|
|
419
|
+
margin-inline: calc(var(--spacing) * 0.5);
|
|
420
|
+
}
|
|
415
421
|
.mx-2 {
|
|
416
422
|
margin-inline: calc(var(--spacing) * 2);
|
|
417
423
|
}
|
|
@@ -770,6 +776,9 @@
|
|
|
770
776
|
--tw-scale-z: 110%;
|
|
771
777
|
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
772
778
|
}
|
|
779
|
+
.-rotate-90 {
|
|
780
|
+
rotate: calc(90deg * -1);
|
|
781
|
+
}
|
|
773
782
|
.rotate-45 {
|
|
774
783
|
rotate: 45deg;
|
|
775
784
|
}
|
|
@@ -833,6 +842,9 @@
|
|
|
833
842
|
.flex-row {
|
|
834
843
|
flex-direction: row;
|
|
835
844
|
}
|
|
845
|
+
.flex-wrap {
|
|
846
|
+
flex-wrap: wrap;
|
|
847
|
+
}
|
|
836
848
|
.items-center {
|
|
837
849
|
align-items: center;
|
|
838
850
|
}
|
|
@@ -932,6 +944,9 @@
|
|
|
932
944
|
margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
|
|
933
945
|
}
|
|
934
946
|
}
|
|
947
|
+
.gap-y-0\.5 {
|
|
948
|
+
row-gap: calc(var(--spacing) * 0.5);
|
|
949
|
+
}
|
|
935
950
|
.self-stretch {
|
|
936
951
|
align-self: stretch;
|
|
937
952
|
}
|
|
@@ -1724,6 +1739,11 @@
|
|
|
1724
1739
|
}
|
|
1725
1740
|
}
|
|
1726
1741
|
}
|
|
1742
|
+
.last\:mb-0 {
|
|
1743
|
+
&:last-child {
|
|
1744
|
+
margin-bottom: calc(var(--spacing) * 0);
|
|
1745
|
+
}
|
|
1746
|
+
}
|
|
1727
1747
|
.last\:border-0 {
|
|
1728
1748
|
&:last-child {
|
|
1729
1749
|
border-style: var(--tw-border-style);
|
|
@@ -2800,6 +2820,7 @@
|
|
|
2800
2820
|
}
|
|
2801
2821
|
}
|
|
2802
2822
|
.df-time-grid-row,
|
|
2823
|
+
.df-time-grid-boundary,
|
|
2803
2824
|
.df-all-day-row,
|
|
2804
2825
|
.df-mini-calendar {
|
|
2805
2826
|
border-color: var(--color-gray-200);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dayflow/core",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.2",
|
|
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",
|