@dayflow/core 3.3.6 → 3.4.1
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 +1 -1
- package/dist/index.d.ts +203 -198
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/styles.components.css +9 -0
- package/dist/styles.css +10 -4
- package/package.json +1 -1
|
@@ -500,12 +500,21 @@
|
|
|
500
500
|
.df-calendar-container .df-cursor-ns-resize, .df-calendar-container .df-cursor-ns-resize * {
|
|
501
501
|
cursor: ns-resize;
|
|
502
502
|
}
|
|
503
|
+
body.df-cursor-ns-resize, body.df-cursor-ns-resize * {
|
|
504
|
+
cursor: ns-resize !important;
|
|
505
|
+
}
|
|
503
506
|
.df-calendar-container .df-cursor-ew-resize, .df-calendar-container .df-cursor-ew-resize * {
|
|
504
507
|
cursor: ew-resize;
|
|
505
508
|
}
|
|
509
|
+
body.df-cursor-ew-resize, body.df-cursor-ew-resize * {
|
|
510
|
+
cursor: ew-resize !important;
|
|
511
|
+
}
|
|
506
512
|
.df-calendar-container .df-cursor-grabbing, .df-calendar-container .df-cursor-grabbing * {
|
|
507
513
|
cursor: grabbing;
|
|
508
514
|
}
|
|
515
|
+
body.df-cursor-grabbing, body.df-cursor-grabbing * {
|
|
516
|
+
cursor: grabbing !important;
|
|
517
|
+
}
|
|
509
518
|
.df-scrollbar-hide::-webkit-scrollbar {
|
|
510
519
|
display: none;
|
|
511
520
|
}
|
package/dist/styles.css
CHANGED
|
@@ -1114,7 +1114,7 @@
|
|
|
1114
1114
|
.border-transparent {
|
|
1115
1115
|
border-color: transparent;
|
|
1116
1116
|
}
|
|
1117
|
-
.border-l-\
|
|
1117
|
+
.border-l-\(--df-color-primary\) {
|
|
1118
1118
|
border-left-color: var(--df-color-primary);
|
|
1119
1119
|
}
|
|
1120
1120
|
.bg-\[var\(--df-color-primary\)\] {
|
|
@@ -1192,9 +1192,6 @@
|
|
|
1192
1192
|
.bg-secondary {
|
|
1193
1193
|
background-color: var(--df-color-secondary);
|
|
1194
1194
|
}
|
|
1195
|
-
.bg-slate-50 {
|
|
1196
|
-
background-color: var(--color-slate-50);
|
|
1197
|
-
}
|
|
1198
1195
|
.bg-slate-200 {
|
|
1199
1196
|
background-color: var(--color-slate-200);
|
|
1200
1197
|
}
|
|
@@ -2871,12 +2868,21 @@
|
|
|
2871
2868
|
.df-calendar-container .df-cursor-ns-resize, .df-calendar-container .df-cursor-ns-resize * {
|
|
2872
2869
|
cursor: ns-resize;
|
|
2873
2870
|
}
|
|
2871
|
+
body.df-cursor-ns-resize, body.df-cursor-ns-resize * {
|
|
2872
|
+
cursor: ns-resize !important;
|
|
2873
|
+
}
|
|
2874
2874
|
.df-calendar-container .df-cursor-ew-resize, .df-calendar-container .df-cursor-ew-resize * {
|
|
2875
2875
|
cursor: ew-resize;
|
|
2876
2876
|
}
|
|
2877
|
+
body.df-cursor-ew-resize, body.df-cursor-ew-resize * {
|
|
2878
|
+
cursor: ew-resize !important;
|
|
2879
|
+
}
|
|
2877
2880
|
.df-calendar-container .df-cursor-grabbing, .df-calendar-container .df-cursor-grabbing * {
|
|
2878
2881
|
cursor: grabbing;
|
|
2879
2882
|
}
|
|
2883
|
+
body.df-cursor-grabbing, body.df-cursor-grabbing * {
|
|
2884
|
+
cursor: grabbing !important;
|
|
2885
|
+
}
|
|
2880
2886
|
.df-scrollbar-hide::-webkit-scrollbar {
|
|
2881
2887
|
display: none;
|
|
2882
2888
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dayflow/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.1",
|
|
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",
|