@dayflow/core 3.2.0 → 3.2.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/styles.css CHANGED
@@ -227,6 +227,7 @@
227
227
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
228
228
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
229
229
  --animate-spin: spin 1s linear infinite;
230
+ --blur-sm: 8px;
230
231
  --default-transition-duration: 150ms;
231
232
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
232
233
  --default-font-family: var(--font-geist-sans);
@@ -431,6 +432,9 @@
431
432
  .mt-3 {
432
433
  margin-top: calc(var(--spacing) * 3);
433
434
  }
435
+ .mt-4 {
436
+ margin-top: calc(var(--spacing) * 4);
437
+ }
434
438
  .mt-6 {
435
439
  margin-top: calc(var(--spacing) * 6);
436
440
  }
@@ -750,6 +754,12 @@
750
754
  --tw-scale-z: 100%;
751
755
  scale: var(--tw-scale-x) var(--tw-scale-y);
752
756
  }
757
+ .scale-110 {
758
+ --tw-scale-x: 110%;
759
+ --tw-scale-y: 110%;
760
+ --tw-scale-z: 110%;
761
+ scale: var(--tw-scale-x) var(--tw-scale-y);
762
+ }
753
763
  .rotate-45 {
754
764
  rotate: 45deg;
755
765
  }
@@ -864,9 +874,6 @@
864
874
  .gap-4 {
865
875
  gap: calc(var(--spacing) * 4);
866
876
  }
867
- .gap-6 {
868
- gap: calc(var(--spacing) * 6);
869
- }
870
877
  .space-y-1 {
871
878
  :where(& > :not(:last-child)) {
872
879
  --tw-space-y-reverse: 0;
@@ -1083,6 +1090,12 @@
1083
1090
  background-color: color-mix(in oklab, var(--color-black) 30%, transparent);
1084
1091
  }
1085
1092
  }
1093
+ .bg-black\/40 {
1094
+ background-color: color-mix(in srgb, #000 40%, transparent);
1095
+ @supports (color: color-mix(in lab, red, red)) {
1096
+ background-color: color-mix(in oklab, var(--color-black) 40%, transparent);
1097
+ }
1098
+ }
1086
1099
  .bg-black\/50 {
1087
1100
  background-color: color-mix(in srgb, #000 50%, transparent);
1088
1101
  @supports (color: color-mix(in lab, red, red)) {
@@ -1251,6 +1264,9 @@
1251
1264
  .pt-2 {
1252
1265
  padding-top: calc(var(--spacing) * 2);
1253
1266
  }
1267
+ .pt-3 {
1268
+ padding-top: calc(var(--spacing) * 3);
1269
+ }
1254
1270
  .pr-1 {
1255
1271
  padding-right: calc(var(--spacing) * 1);
1256
1272
  }
@@ -1344,6 +1360,10 @@
1344
1360
  .text-\[12px\] {
1345
1361
  font-size: 12px;
1346
1362
  }
1363
+ .leading-\[16px\] {
1364
+ --tw-leading: 16px;
1365
+ line-height: 16px;
1366
+ }
1347
1367
  .leading-none {
1348
1368
  --tw-leading: 1;
1349
1369
  line-height: 1;
@@ -1569,6 +1589,10 @@
1569
1589
  .filter {
1570
1590
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
1571
1591
  }
1592
+ .backdrop-blur-sm {
1593
+ --tw-backdrop-blur: blur(var(--blur-sm));
1594
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
1595
+ }
1572
1596
  .transition {
1573
1597
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
1574
1598
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
@@ -1803,10 +1827,10 @@
1803
1827
  }
1804
1828
  }
1805
1829
  }
1806
- .hover\:bg-slate-100 {
1830
+ .hover\:bg-slate-50 {
1807
1831
  &:hover {
1808
1832
  @media (hover: hover) {
1809
- background-color: var(--color-slate-100);
1833
+ background-color: var(--color-slate-50);
1810
1834
  }
1811
1835
  }
1812
1836
  }
@@ -1904,11 +1928,6 @@
1904
1928
  background-color: var(--df-color-primary);
1905
1929
  }
1906
1930
  }
1907
- .focus\:bg-slate-100 {
1908
- &:focus {
1909
- background-color: var(--color-slate-100);
1910
- }
1911
- }
1912
1931
  .focus\:text-destructive-foreground {
1913
1932
  &:focus {
1914
1933
  color: var(--df-color-destructive-foreground);
@@ -2229,6 +2248,11 @@
2229
2248
  color: var(--color-slate-200);
2230
2249
  }
2231
2250
  }
2251
+ .dark\:text-slate-300 {
2252
+ .dark & {
2253
+ color: var(--color-slate-300);
2254
+ }
2255
+ }
2232
2256
  .dark\:text-white {
2233
2257
  .dark & {
2234
2258
  color: var(--color-white);
@@ -2435,13 +2459,6 @@
2435
2459
  }
2436
2460
  }
2437
2461
  }
2438
- .dark\:focus\:bg-slate-800 {
2439
- .dark & {
2440
- &:focus {
2441
- background-color: var(--color-slate-800);
2442
- }
2443
- }
2444
- }
2445
2462
  .dark\:focus\:text-white {
2446
2463
  .dark & {
2447
2464
  &:focus {
@@ -3063,6 +3080,42 @@
3063
3080
  syntax: "*";
3064
3081
  inherits: false;
3065
3082
  }
3083
+ @property --tw-backdrop-blur {
3084
+ syntax: "*";
3085
+ inherits: false;
3086
+ }
3087
+ @property --tw-backdrop-brightness {
3088
+ syntax: "*";
3089
+ inherits: false;
3090
+ }
3091
+ @property --tw-backdrop-contrast {
3092
+ syntax: "*";
3093
+ inherits: false;
3094
+ }
3095
+ @property --tw-backdrop-grayscale {
3096
+ syntax: "*";
3097
+ inherits: false;
3098
+ }
3099
+ @property --tw-backdrop-hue-rotate {
3100
+ syntax: "*";
3101
+ inherits: false;
3102
+ }
3103
+ @property --tw-backdrop-invert {
3104
+ syntax: "*";
3105
+ inherits: false;
3106
+ }
3107
+ @property --tw-backdrop-opacity {
3108
+ syntax: "*";
3109
+ inherits: false;
3110
+ }
3111
+ @property --tw-backdrop-saturate {
3112
+ syntax: "*";
3113
+ inherits: false;
3114
+ }
3115
+ @property --tw-backdrop-sepia {
3116
+ syntax: "*";
3117
+ inherits: false;
3118
+ }
3066
3119
  @property --tw-duration {
3067
3120
  syntax: "*";
3068
3121
  inherits: false;
@@ -3124,6 +3177,15 @@
3124
3177
  --tw-drop-shadow-color: initial;
3125
3178
  --tw-drop-shadow-alpha: 100%;
3126
3179
  --tw-drop-shadow-size: initial;
3180
+ --tw-backdrop-blur: initial;
3181
+ --tw-backdrop-brightness: initial;
3182
+ --tw-backdrop-contrast: initial;
3183
+ --tw-backdrop-grayscale: initial;
3184
+ --tw-backdrop-hue-rotate: initial;
3185
+ --tw-backdrop-invert: initial;
3186
+ --tw-backdrop-opacity: initial;
3187
+ --tw-backdrop-saturate: initial;
3188
+ --tw-backdrop-sepia: initial;
3127
3189
  --tw-duration: initial;
3128
3190
  --tw-ease: initial;
3129
3191
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dayflow/core",
3
- "version": "3.2.0",
3
+ "version": "3.2.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",