flowcore-fn 8.2.9 → 9.1.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.
@@ -5,8 +5,13 @@
5
5
  :root,
6
6
  :host {
7
7
  --fc-font-sans:
8
- ui-sans-serif,
9
- system-ui,
8
+ -apple-system,
9
+ BlinkMacSystemFont,
10
+ "Segoe UI",
11
+ Roboto,
12
+ "Helvetica Neue",
13
+ "Noto Sans",
14
+ Arial,
10
15
  sans-serif,
11
16
  "Apple Color Emoji",
12
17
  "Segoe UI Emoji",
@@ -26,8 +31,11 @@
26
31
  --fc-color-red-400: oklch(70.4% 0.191 22.216);
27
32
  --fc-color-red-500: oklch(63.7% 0.237 25.331);
28
33
  --fc-color-red-600: oklch(57.7% 0.245 27.325);
34
+ --fc-color-amber-500: oklch(76.9% 0.188 70.08);
29
35
  --fc-color-green-600: oklch(62.7% 0.194 149.214);
36
+ --fc-color-emerald-100: oklch(95% 0.052 163.051);
30
37
  --fc-color-emerald-600: oklch(59.6% 0.145 163.225);
38
+ --fc-color-emerald-700: oklch(50.8% 0.118 165.612);
31
39
  --fc-color-cyan-200: oklch(91.7% 0.08 205.041);
32
40
  --fc-color-cyan-400: oklch(78.9% 0.154 211.53);
33
41
  --fc-color-blue-50: oklch(97% 0.014 254.604);
@@ -99,6 +107,7 @@
99
107
  --fc-radius-2xl: 1rem;
100
108
  --fc-radius-3xl: 1.5rem;
101
109
  --fc-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
110
+ --fc-animate-spin: spin 1s linear infinite;
102
111
  --fc-blur-sm: 8px;
103
112
  --fc-blur-xl: 24px;
104
113
  --fc-blur-3xl: 64px;
@@ -124,7 +133,7 @@
124
133
  line-height: 1.5;
125
134
  -webkit-text-size-adjust: 100%;
126
135
  tab-size: 4;
127
- font-family: var(--fc-default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
136
+ font-family: var(--fc-default-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
128
137
  font-feature-settings: var(--fc-default-font-feature-settings, normal);
129
138
  font-variation-settings: var(--fc-default-font-variation-settings, normal);
130
139
  -webkit-tap-highlight-color: transparent;
@@ -186,7 +195,7 @@
186
195
  border-color: inherit;
187
196
  border-collapse: collapse;
188
197
  }
189
- :-moz-focusring {
198
+ :-moz-focusring:where(:not(iframe)) {
190
199
  outline: auto;
191
200
  }
192
201
  progress {
@@ -381,6 +390,9 @@
381
390
  .fc\:z-\[100\] {
382
391
  z-index: 100;
383
392
  }
393
+ .fc\:col-span-2 {
394
+ grid-column: span 2 / span 2;
395
+ }
384
396
  .fc\:m-0 {
385
397
  margin: 0;
386
398
  }
@@ -450,6 +462,9 @@
450
462
  .fc\:ml-\[15px\] {
451
463
  margin-left: 15px;
452
464
  }
465
+ .fc\:ml-auto {
466
+ margin-left: auto;
467
+ }
453
468
  .fc\:block {
454
469
  display: block;
455
470
  }
@@ -468,6 +483,9 @@
468
483
  .fc\:h-1 {
469
484
  height: var(--fc-spacing);
470
485
  }
486
+ .fc\:h-2 {
487
+ height: calc(var(--fc-spacing) * 2);
488
+ }
471
489
  .fc\:h-4 {
472
490
  height: calc(var(--fc-spacing) * 4);
473
491
  }
@@ -531,6 +549,12 @@
531
549
  .fc\:h-screen {
532
550
  height: 100vh;
533
551
  }
552
+ .fc\:max-h-\[70vh\] {
553
+ max-height: 70vh;
554
+ }
555
+ .fc\:max-h-\[80vh\] {
556
+ max-height: 80vh;
557
+ }
534
558
  .fc\:max-h-\[90vh\] {
535
559
  max-height: 90vh;
536
560
  }
@@ -561,6 +585,9 @@
561
585
  .fc\:w-1\/2 {
562
586
  width: calc(1 / 2 * 100%);
563
587
  }
588
+ .fc\:w-2 {
589
+ width: calc(var(--fc-spacing) * 2);
590
+ }
564
591
  .fc\:w-4 {
565
592
  width: calc(var(--fc-spacing) * 4);
566
593
  }
@@ -600,6 +627,9 @@
600
627
  .fc\:w-20 {
601
628
  width: calc(var(--fc-spacing) * 20);
602
629
  }
630
+ .fc\:w-28 {
631
+ width: calc(var(--fc-spacing) * 28);
632
+ }
603
633
  .fc\:w-32 {
604
634
  width: calc(var(--fc-spacing) * 32);
605
635
  }
@@ -654,6 +684,9 @@
654
684
  .fc\:max-w-5xl {
655
685
  max-width: var(--fc-container-5xl);
656
686
  }
687
+ .fc\:max-w-\[360px\] {
688
+ max-width: 360px;
689
+ }
657
690
  .fc\:max-w-md {
658
691
  max-width: var(--fc-container-md);
659
692
  }
@@ -703,6 +736,14 @@
703
736
  --tw-translate-x: -100%;
704
737
  translate: var(--tw-translate-x) var(--tw-translate-y);
705
738
  }
739
+ .fc\:translate-x-0 {
740
+ --tw-translate-x: 0;
741
+ translate: var(--tw-translate-x) var(--tw-translate-y);
742
+ }
743
+ .fc\:translate-x-5 {
744
+ --tw-translate-x: calc(var(--fc-spacing) * 5);
745
+ translate: var(--tw-translate-x) var(--tw-translate-y);
746
+ }
706
747
  .fc\:scale-100 {
707
748
  --tw-scale-x: 100%;
708
749
  --tw-scale-y: 100%;
@@ -716,6 +757,9 @@
716
757
  .fc\:transform {
717
758
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
718
759
  }
760
+ .fc\:animate-spin {
761
+ animation: var(--fc-animate-spin);
762
+ }
719
763
  .fc\:cursor-not-allowed {
720
764
  cursor: not-allowed;
721
765
  }
@@ -971,12 +1015,21 @@
971
1015
  .fc\:bg-\[\#f5f7fb\] {
972
1016
  background-color: #f5f7fb;
973
1017
  }
1018
+ .fc\:bg-amber-500 {
1019
+ background-color: var(--fc-color-amber-500);
1020
+ }
974
1021
  .fc\:bg-black\/10 {
975
1022
  background-color: var(--fc-color-black);
976
1023
  @supports (color: color-mix(in lab, red, red)) {
977
1024
  background-color: color-mix(in oklab, var(--fc-color-black) 10%, transparent);
978
1025
  }
979
1026
  }
1027
+ .fc\:bg-black\/20 {
1028
+ background-color: var(--fc-color-black);
1029
+ @supports (color: color-mix(in lab, red, red)) {
1030
+ background-color: color-mix(in oklab, var(--fc-color-black) 20%, transparent);
1031
+ }
1032
+ }
980
1033
  .fc\:bg-black\/40 {
981
1034
  background-color: var(--fc-color-black);
982
1035
  @supports (color: color-mix(in lab, red, red)) {
@@ -1007,6 +1060,9 @@
1007
1060
  background-color: color-mix(in oklab, var(--fc-color-cyan-200) 20%, transparent);
1008
1061
  }
1009
1062
  }
1063
+ .fc\:bg-emerald-100 {
1064
+ background-color: var(--fc-color-emerald-100);
1065
+ }
1010
1066
  .fc\:bg-gray-50 {
1011
1067
  background-color: var(--fc-color-gray-50);
1012
1068
  }
@@ -1025,6 +1081,9 @@
1025
1081
  background-color: color-mix(in oklab, var(--fc-color-gray-100) 80%, transparent);
1026
1082
  }
1027
1083
  }
1084
+ .fc\:bg-gray-200 {
1085
+ background-color: var(--fc-color-gray-200);
1086
+ }
1028
1087
  .fc\:bg-indigo-50 {
1029
1088
  background-color: var(--fc-color-indigo-50);
1030
1089
  }
@@ -1034,6 +1093,9 @@
1034
1093
  .fc\:bg-red-50 {
1035
1094
  background-color: var(--fc-color-red-50);
1036
1095
  }
1096
+ .fc\:bg-red-500 {
1097
+ background-color: var(--fc-color-red-500);
1098
+ }
1037
1099
  .fc\:bg-red-600 {
1038
1100
  background-color: var(--fc-color-red-600);
1039
1101
  }
@@ -1264,6 +1326,9 @@
1264
1326
  .fc\:pr-4 {
1265
1327
  padding-right: calc(var(--fc-spacing) * 4);
1266
1328
  }
1329
+ .fc\:pr-10 {
1330
+ padding-right: calc(var(--fc-spacing) * 10);
1331
+ }
1267
1332
  .fc\:pb-3 {
1268
1333
  padding-bottom: calc(var(--fc-spacing) * 3);
1269
1334
  }
@@ -1437,6 +1502,9 @@
1437
1502
  .fc\:text-blue-700 {
1438
1503
  color: var(--fc-color-blue-700);
1439
1504
  }
1505
+ .fc\:text-emerald-700 {
1506
+ color: var(--fc-color-emerald-700);
1507
+ }
1440
1508
  .fc\:text-gray-400 {
1441
1509
  color: var(--fc-color-gray-400);
1442
1510
  }
@@ -1699,6 +1767,10 @@
1699
1767
  --tw-duration: 300ms;
1700
1768
  transition-duration: 300ms;
1701
1769
  }
1770
+ .fc\:duration-500 {
1771
+ --tw-duration: 500ms;
1772
+ transition-duration: 500ms;
1773
+ }
1702
1774
  .fc\:duration-1000 {
1703
1775
  --tw-duration: 1000ms;
1704
1776
  transition-duration: 1000ms;
@@ -1715,6 +1787,34 @@
1715
1787
  -webkit-user-select: none;
1716
1788
  user-select: none;
1717
1789
  }
1790
+ .fc\:hover\:bg-blue-50 {
1791
+ &:hover {
1792
+ @media (hover: hover) {
1793
+ background-color: var(--fc-color-blue-50);
1794
+ }
1795
+ }
1796
+ }
1797
+ .fc\:hover\:bg-gray-50 {
1798
+ &:hover {
1799
+ @media (hover: hover) {
1800
+ background-color: var(--fc-color-gray-50);
1801
+ }
1802
+ }
1803
+ }
1804
+ .fc\:hover\:text-\[\#2563eb\] {
1805
+ &:hover {
1806
+ @media (hover: hover) {
1807
+ color: #2563eb;
1808
+ }
1809
+ }
1810
+ }
1811
+ .fc\:hover\:text-gray-900 {
1812
+ &:hover {
1813
+ @media (hover: hover) {
1814
+ color: var(--fc-color-gray-900);
1815
+ }
1816
+ }
1817
+ }
1718
1818
  }
1719
1819
  @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1720
1820
  @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
@@ -1780,6 +1880,11 @@
1780
1880
  @property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
1781
1881
  @property --tw-duration { syntax: "*"; inherits: false; }
1782
1882
  @property --tw-ease { syntax: "*"; inherits: false; }
1883
+ @keyframes spin {
1884
+ to {
1885
+ transform: rotate(360deg);
1886
+ }
1887
+ }
1783
1888
  @layer properties {
1784
1889
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1785
1890
  *,