flowcore-fn 8.1.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,6 +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);
35
+ --fc-color-green-600: oklch(62.7% 0.194 149.214);
36
+ --fc-color-emerald-100: oklch(95% 0.052 163.051);
37
+ --fc-color-emerald-600: oklch(59.6% 0.145 163.225);
38
+ --fc-color-emerald-700: oklch(50.8% 0.118 165.612);
29
39
  --fc-color-cyan-200: oklch(91.7% 0.08 205.041);
30
40
  --fc-color-cyan-400: oklch(78.9% 0.154 211.53);
31
41
  --fc-color-blue-50: oklch(97% 0.014 254.604);
@@ -97,6 +107,7 @@
97
107
  --fc-radius-2xl: 1rem;
98
108
  --fc-radius-3xl: 1.5rem;
99
109
  --fc-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
110
+ --fc-animate-spin: spin 1s linear infinite;
100
111
  --fc-blur-sm: 8px;
101
112
  --fc-blur-xl: 24px;
102
113
  --fc-blur-3xl: 64px;
@@ -122,7 +133,7 @@
122
133
  line-height: 1.5;
123
134
  -webkit-text-size-adjust: 100%;
124
135
  tab-size: 4;
125
- 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");
126
137
  font-feature-settings: var(--fc-default-font-feature-settings, normal);
127
138
  font-variation-settings: var(--fc-default-font-variation-settings, normal);
128
139
  -webkit-tap-highlight-color: transparent;
@@ -184,7 +195,7 @@
184
195
  border-color: inherit;
185
196
  border-collapse: collapse;
186
197
  }
187
- :-moz-focusring {
198
+ :-moz-focusring:where(:not(iframe)) {
188
199
  outline: auto;
189
200
  }
190
201
  progress {
@@ -379,6 +390,9 @@
379
390
  .fc\:z-\[100\] {
380
391
  z-index: 100;
381
392
  }
393
+ .fc\:col-span-2 {
394
+ grid-column: span 2 / span 2;
395
+ }
382
396
  .fc\:m-0 {
383
397
  margin: 0;
384
398
  }
@@ -448,6 +462,9 @@
448
462
  .fc\:ml-\[15px\] {
449
463
  margin-left: 15px;
450
464
  }
465
+ .fc\:ml-auto {
466
+ margin-left: auto;
467
+ }
451
468
  .fc\:block {
452
469
  display: block;
453
470
  }
@@ -466,6 +483,9 @@
466
483
  .fc\:h-1 {
467
484
  height: var(--fc-spacing);
468
485
  }
486
+ .fc\:h-2 {
487
+ height: calc(var(--fc-spacing) * 2);
488
+ }
469
489
  .fc\:h-4 {
470
490
  height: calc(var(--fc-spacing) * 4);
471
491
  }
@@ -529,6 +549,12 @@
529
549
  .fc\:h-screen {
530
550
  height: 100vh;
531
551
  }
552
+ .fc\:max-h-\[70vh\] {
553
+ max-height: 70vh;
554
+ }
555
+ .fc\:max-h-\[80vh\] {
556
+ max-height: 80vh;
557
+ }
532
558
  .fc\:max-h-\[90vh\] {
533
559
  max-height: 90vh;
534
560
  }
@@ -559,6 +585,9 @@
559
585
  .fc\:w-1\/2 {
560
586
  width: calc(1 / 2 * 100%);
561
587
  }
588
+ .fc\:w-2 {
589
+ width: calc(var(--fc-spacing) * 2);
590
+ }
562
591
  .fc\:w-4 {
563
592
  width: calc(var(--fc-spacing) * 4);
564
593
  }
@@ -598,6 +627,9 @@
598
627
  .fc\:w-20 {
599
628
  width: calc(var(--fc-spacing) * 20);
600
629
  }
630
+ .fc\:w-28 {
631
+ width: calc(var(--fc-spacing) * 28);
632
+ }
601
633
  .fc\:w-32 {
602
634
  width: calc(var(--fc-spacing) * 32);
603
635
  }
@@ -652,6 +684,9 @@
652
684
  .fc\:max-w-5xl {
653
685
  max-width: var(--fc-container-5xl);
654
686
  }
687
+ .fc\:max-w-\[360px\] {
688
+ max-width: 360px;
689
+ }
655
690
  .fc\:max-w-md {
656
691
  max-width: var(--fc-container-md);
657
692
  }
@@ -701,6 +736,14 @@
701
736
  --tw-translate-x: -100%;
702
737
  translate: var(--tw-translate-x) var(--tw-translate-y);
703
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
+ }
704
747
  .fc\:scale-100 {
705
748
  --tw-scale-x: 100%;
706
749
  --tw-scale-y: 100%;
@@ -714,6 +757,9 @@
714
757
  .fc\:transform {
715
758
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
716
759
  }
760
+ .fc\:animate-spin {
761
+ animation: var(--fc-animate-spin);
762
+ }
717
763
  .fc\:cursor-not-allowed {
718
764
  cursor: not-allowed;
719
765
  }
@@ -732,6 +778,9 @@
732
778
  .fc\:flex-col {
733
779
  flex-direction: column;
734
780
  }
781
+ .fc\:flex-row {
782
+ flex-direction: row;
783
+ }
735
784
  .fc\:flex-wrap {
736
785
  flex-wrap: wrap;
737
786
  }
@@ -966,12 +1015,21 @@
966
1015
  .fc\:bg-\[\#f5f7fb\] {
967
1016
  background-color: #f5f7fb;
968
1017
  }
1018
+ .fc\:bg-amber-500 {
1019
+ background-color: var(--fc-color-amber-500);
1020
+ }
969
1021
  .fc\:bg-black\/10 {
970
1022
  background-color: var(--fc-color-black);
971
1023
  @supports (color: color-mix(in lab, red, red)) {
972
1024
  background-color: color-mix(in oklab, var(--fc-color-black) 10%, transparent);
973
1025
  }
974
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
+ }
975
1033
  .fc\:bg-black\/40 {
976
1034
  background-color: var(--fc-color-black);
977
1035
  @supports (color: color-mix(in lab, red, red)) {
@@ -1002,6 +1060,9 @@
1002
1060
  background-color: color-mix(in oklab, var(--fc-color-cyan-200) 20%, transparent);
1003
1061
  }
1004
1062
  }
1063
+ .fc\:bg-emerald-100 {
1064
+ background-color: var(--fc-color-emerald-100);
1065
+ }
1005
1066
  .fc\:bg-gray-50 {
1006
1067
  background-color: var(--fc-color-gray-50);
1007
1068
  }
@@ -1020,6 +1081,9 @@
1020
1081
  background-color: color-mix(in oklab, var(--fc-color-gray-100) 80%, transparent);
1021
1082
  }
1022
1083
  }
1084
+ .fc\:bg-gray-200 {
1085
+ background-color: var(--fc-color-gray-200);
1086
+ }
1023
1087
  .fc\:bg-indigo-50 {
1024
1088
  background-color: var(--fc-color-indigo-50);
1025
1089
  }
@@ -1029,6 +1093,9 @@
1029
1093
  .fc\:bg-red-50 {
1030
1094
  background-color: var(--fc-color-red-50);
1031
1095
  }
1096
+ .fc\:bg-red-500 {
1097
+ background-color: var(--fc-color-red-500);
1098
+ }
1032
1099
  .fc\:bg-red-600 {
1033
1100
  background-color: var(--fc-color-red-600);
1034
1101
  }
@@ -1111,6 +1178,10 @@
1111
1178
  --tw-gradient-from: var(--fc-color-blue-600);
1112
1179
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1113
1180
  }
1181
+ .fc\:from-emerald-600 {
1182
+ --tw-gradient-from: var(--fc-color-emerald-600);
1183
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1184
+ }
1114
1185
  .fc\:via-cyan-400 {
1115
1186
  --tw-gradient-via: var(--fc-color-cyan-400);
1116
1187
  --tw-gradient-via-stops:
@@ -1120,6 +1191,10 @@
1120
1191
  var(--tw-gradient-to) var(--tw-gradient-to-position);
1121
1192
  --tw-gradient-stops: var(--tw-gradient-via-stops);
1122
1193
  }
1194
+ .fc\:to-green-600 {
1195
+ --tw-gradient-to: var(--fc-color-green-600);
1196
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1197
+ }
1123
1198
  .fc\:to-indigo-500 {
1124
1199
  --tw-gradient-to: var(--fc-color-indigo-500);
1125
1200
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
@@ -1251,6 +1326,9 @@
1251
1326
  .fc\:pr-4 {
1252
1327
  padding-right: calc(var(--fc-spacing) * 4);
1253
1328
  }
1329
+ .fc\:pr-10 {
1330
+ padding-right: calc(var(--fc-spacing) * 10);
1331
+ }
1254
1332
  .fc\:pb-3 {
1255
1333
  padding-bottom: calc(var(--fc-spacing) * 3);
1256
1334
  }
@@ -1424,6 +1502,9 @@
1424
1502
  .fc\:text-blue-700 {
1425
1503
  color: var(--fc-color-blue-700);
1426
1504
  }
1505
+ .fc\:text-emerald-700 {
1506
+ color: var(--fc-color-emerald-700);
1507
+ }
1427
1508
  .fc\:text-gray-400 {
1428
1509
  color: var(--fc-color-gray-400);
1429
1510
  }
@@ -1686,6 +1767,10 @@
1686
1767
  --tw-duration: 300ms;
1687
1768
  transition-duration: 300ms;
1688
1769
  }
1770
+ .fc\:duration-500 {
1771
+ --tw-duration: 500ms;
1772
+ transition-duration: 500ms;
1773
+ }
1689
1774
  .fc\:duration-1000 {
1690
1775
  --tw-duration: 1000ms;
1691
1776
  transition-duration: 1000ms;
@@ -1702,6 +1787,34 @@
1702
1787
  -webkit-user-select: none;
1703
1788
  user-select: none;
1704
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
+ }
1705
1818
  }
1706
1819
  @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1707
1820
  @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
@@ -1767,6 +1880,11 @@
1767
1880
  @property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
1768
1881
  @property --tw-duration { syntax: "*"; inherits: false; }
1769
1882
  @property --tw-ease { syntax: "*"; inherits: false; }
1883
+ @keyframes spin {
1884
+ to {
1885
+ transform: rotate(360deg);
1886
+ }
1887
+ }
1770
1888
  @layer properties {
1771
1889
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1772
1890
  *,