@luxonis/depthai-pipeline-lib 3.7.0 → 3.7.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/dist/index.css +137 -205
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
/*! tailwindcss v4.3.
|
|
1
|
+
/*! tailwindcss v4.3.3 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@import url("@xyflow/react/dist/style.css");
|
|
3
3
|
@import url("@luxonis/ui-components/styles.css");
|
|
4
4
|
@layer properties;
|
|
5
5
|
@layer theme, base, components, utilities;
|
|
6
6
|
@layer theme {
|
|
7
7
|
:root, :host {
|
|
8
|
-
--font-sans:
|
|
9
|
-
"
|
|
8
|
+
--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
|
|
9
|
+
"Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
|
|
10
|
+
"Segoe UI Symbol", "Noto Color Emoji";
|
|
10
11
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
11
12
|
"Courier New", monospace;
|
|
12
13
|
--color-black: #000;
|
|
@@ -58,7 +59,7 @@
|
|
|
58
59
|
line-height: 1.5;
|
|
59
60
|
-webkit-text-size-adjust: 100%;
|
|
60
61
|
tab-size: 4;
|
|
61
|
-
font-family: var(--default-font-family,
|
|
62
|
+
font-family: var(--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");
|
|
62
63
|
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
63
64
|
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
64
65
|
-webkit-tap-highlight-color: transparent;
|
|
@@ -110,7 +111,7 @@
|
|
|
110
111
|
border-color: inherit;
|
|
111
112
|
border-collapse: collapse;
|
|
112
113
|
}
|
|
113
|
-
:-moz-focusring {
|
|
114
|
+
:-moz-focusring:where(:not(iframe)) {
|
|
114
115
|
outline: auto;
|
|
115
116
|
}
|
|
116
117
|
progress {
|
|
@@ -221,10 +222,10 @@
|
|
|
221
222
|
position: sticky;
|
|
222
223
|
}
|
|
223
224
|
.inset-0 {
|
|
224
|
-
inset:
|
|
225
|
+
inset: 0px;
|
|
225
226
|
}
|
|
226
227
|
.top-0 {
|
|
227
|
-
top:
|
|
228
|
+
top: 0px;
|
|
228
229
|
}
|
|
229
230
|
.top-1\/2 {
|
|
230
231
|
top: calc(1 / 2 * 100%);
|
|
@@ -239,13 +240,13 @@
|
|
|
239
240
|
top: 100%;
|
|
240
241
|
}
|
|
241
242
|
.right-0 {
|
|
242
|
-
right:
|
|
243
|
+
right: 0px;
|
|
243
244
|
}
|
|
244
245
|
.right-2 {
|
|
245
246
|
right: calc(var(--spacing) * 2);
|
|
246
247
|
}
|
|
247
248
|
.bottom-0 {
|
|
248
|
-
bottom:
|
|
249
|
+
bottom: 0px;
|
|
249
250
|
}
|
|
250
251
|
.bottom-auto {
|
|
251
252
|
bottom: auto;
|
|
@@ -320,10 +321,10 @@
|
|
|
320
321
|
margin-inline: calc(var(--spacing) * -1);
|
|
321
322
|
}
|
|
322
323
|
.my-1 {
|
|
323
|
-
margin-block:
|
|
324
|
+
margin-block: var(--spacing);
|
|
324
325
|
}
|
|
325
326
|
.mt-1 {
|
|
326
|
-
margin-top:
|
|
327
|
+
margin-top: var(--spacing);
|
|
327
328
|
}
|
|
328
329
|
.mt-2 {
|
|
329
330
|
margin-top: calc(var(--spacing) * 2);
|
|
@@ -337,6 +338,9 @@
|
|
|
337
338
|
.mb-6 {
|
|
338
339
|
margin-bottom: calc(var(--spacing) * 6);
|
|
339
340
|
}
|
|
341
|
+
.ml-1 {
|
|
342
|
+
margin-left: var(--spacing);
|
|
343
|
+
}
|
|
340
344
|
.ml-2 {
|
|
341
345
|
margin-left: calc(var(--spacing) * 2);
|
|
342
346
|
}
|
|
@@ -355,6 +359,9 @@
|
|
|
355
359
|
.hidden {
|
|
356
360
|
display: none;
|
|
357
361
|
}
|
|
362
|
+
.inline {
|
|
363
|
+
display: inline;
|
|
364
|
+
}
|
|
358
365
|
.inline-block {
|
|
359
366
|
display: inline-block;
|
|
360
367
|
}
|
|
@@ -491,7 +498,7 @@
|
|
|
491
498
|
max-width: var(--container-sm);
|
|
492
499
|
}
|
|
493
500
|
.min-w-0 {
|
|
494
|
-
min-width:
|
|
501
|
+
min-width: 0px;
|
|
495
502
|
}
|
|
496
503
|
.min-w-9 {
|
|
497
504
|
min-width: calc(var(--spacing) * 9);
|
|
@@ -564,6 +571,12 @@
|
|
|
564
571
|
.cursor-pointer {
|
|
565
572
|
cursor: pointer;
|
|
566
573
|
}
|
|
574
|
+
.cursor-zoom-in {
|
|
575
|
+
cursor: zoom-in;
|
|
576
|
+
}
|
|
577
|
+
.cursor-zoom-out {
|
|
578
|
+
cursor: zoom-out;
|
|
579
|
+
}
|
|
567
580
|
.touch-none {
|
|
568
581
|
touch-action: none;
|
|
569
582
|
}
|
|
@@ -745,10 +758,10 @@
|
|
|
745
758
|
justify-items: stretch;
|
|
746
759
|
}
|
|
747
760
|
.gap-0 {
|
|
748
|
-
gap:
|
|
761
|
+
gap: 0px;
|
|
749
762
|
}
|
|
750
763
|
.gap-1 {
|
|
751
|
-
gap:
|
|
764
|
+
gap: var(--spacing);
|
|
752
765
|
}
|
|
753
766
|
.gap-2 {
|
|
754
767
|
gap: calc(var(--spacing) * 2);
|
|
@@ -768,26 +781,20 @@
|
|
|
768
781
|
.gap-16 {
|
|
769
782
|
gap: calc(var(--spacing) * 16);
|
|
770
783
|
}
|
|
771
|
-
.space-y-1\.5 {
|
|
772
|
-
:
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
margin-block-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)));
|
|
776
|
-
}
|
|
784
|
+
:where(.space-y-1\.5 > :not(:last-child)) {
|
|
785
|
+
--tw-space-y-reverse: 0;
|
|
786
|
+
margin-block-start: calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse));
|
|
787
|
+
margin-block-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)));
|
|
777
788
|
}
|
|
778
|
-
.space-y-2 {
|
|
779
|
-
:
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
783
|
-
}
|
|
789
|
+
:where(.space-y-2 > :not(:last-child)) {
|
|
790
|
+
--tw-space-y-reverse: 0;
|
|
791
|
+
margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
|
|
792
|
+
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
784
793
|
}
|
|
785
|
-
.space-y-4 {
|
|
786
|
-
:
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
790
|
-
}
|
|
794
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
795
|
+
--tw-space-y-reverse: 0;
|
|
796
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
797
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
791
798
|
}
|
|
792
799
|
.self-auto {
|
|
793
800
|
align-self: auto;
|
|
@@ -825,6 +832,9 @@
|
|
|
825
832
|
.overflow-hidden {
|
|
826
833
|
overflow: hidden;
|
|
827
834
|
}
|
|
835
|
+
.overflow-x-auto {
|
|
836
|
+
overflow-x: auto;
|
|
837
|
+
}
|
|
828
838
|
.overflow-y-auto {
|
|
829
839
|
overflow-y: auto;
|
|
830
840
|
}
|
|
@@ -975,14 +985,17 @@
|
|
|
975
985
|
background-color: var(--color-white);
|
|
976
986
|
}
|
|
977
987
|
.p-0 {
|
|
978
|
-
padding:
|
|
988
|
+
padding: 0px;
|
|
979
989
|
}
|
|
980
990
|
.p-1 {
|
|
981
|
-
padding:
|
|
991
|
+
padding: var(--spacing);
|
|
982
992
|
}
|
|
983
993
|
.p-1\.5 {
|
|
984
994
|
padding: calc(var(--spacing) * 1.5);
|
|
985
995
|
}
|
|
996
|
+
.p-3 {
|
|
997
|
+
padding: calc(var(--spacing) * 3);
|
|
998
|
+
}
|
|
986
999
|
.p-4 {
|
|
987
1000
|
padding: calc(var(--spacing) * 4);
|
|
988
1001
|
}
|
|
@@ -990,7 +1003,7 @@
|
|
|
990
1003
|
padding: calc(var(--spacing) * 6);
|
|
991
1004
|
}
|
|
992
1005
|
.px-0 {
|
|
993
|
-
padding-inline:
|
|
1006
|
+
padding-inline: 0px;
|
|
994
1007
|
}
|
|
995
1008
|
.px-2 {
|
|
996
1009
|
padding-inline: calc(var(--spacing) * 2);
|
|
@@ -1011,16 +1024,16 @@
|
|
|
1011
1024
|
padding-inline: 5px;
|
|
1012
1025
|
}
|
|
1013
1026
|
.\!py-0 {
|
|
1014
|
-
padding-block:
|
|
1027
|
+
padding-block: 0px !important;
|
|
1015
1028
|
}
|
|
1016
1029
|
.py-0 {
|
|
1017
|
-
padding-block:
|
|
1030
|
+
padding-block: 0px;
|
|
1018
1031
|
}
|
|
1019
1032
|
.py-0\.5 {
|
|
1020
1033
|
padding-block: calc(var(--spacing) * 0.5);
|
|
1021
1034
|
}
|
|
1022
1035
|
.py-1 {
|
|
1023
|
-
padding-block:
|
|
1036
|
+
padding-block: var(--spacing);
|
|
1024
1037
|
}
|
|
1025
1038
|
.py-1\.5 {
|
|
1026
1039
|
padding-block: calc(var(--spacing) * 1.5);
|
|
@@ -1035,13 +1048,13 @@
|
|
|
1035
1048
|
padding-block: calc(var(--spacing) * 6);
|
|
1036
1049
|
}
|
|
1037
1050
|
.pt-0 {
|
|
1038
|
-
padding-top:
|
|
1051
|
+
padding-top: 0px;
|
|
1039
1052
|
}
|
|
1040
1053
|
.pt-2 {
|
|
1041
1054
|
padding-top: calc(var(--spacing) * 2);
|
|
1042
1055
|
}
|
|
1043
1056
|
.\!pr-0 {
|
|
1044
|
-
padding-right:
|
|
1057
|
+
padding-right: 0px !important;
|
|
1045
1058
|
}
|
|
1046
1059
|
.pr-2 {
|
|
1047
1060
|
padding-right: calc(var(--spacing) * 2);
|
|
@@ -1064,6 +1077,9 @@
|
|
|
1064
1077
|
.text-right {
|
|
1065
1078
|
text-align: right;
|
|
1066
1079
|
}
|
|
1080
|
+
.align-middle {
|
|
1081
|
+
vertical-align: middle;
|
|
1082
|
+
}
|
|
1067
1083
|
.font-mono {
|
|
1068
1084
|
font-family: var(--font-mono);
|
|
1069
1085
|
}
|
|
@@ -1288,210 +1304,126 @@
|
|
|
1288
1304
|
-webkit-user-select: none;
|
|
1289
1305
|
user-select: none;
|
|
1290
1306
|
}
|
|
1291
|
-
.group-focus-within\:opacity-100 {
|
|
1292
|
-
|
|
1293
|
-
opacity: 100%;
|
|
1294
|
-
}
|
|
1307
|
+
.group-focus-within\:opacity-100:is(:where(.group):focus-within *) {
|
|
1308
|
+
opacity: 100%;
|
|
1295
1309
|
}
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
opacity: 100%;
|
|
1300
|
-
}
|
|
1301
|
-
}
|
|
1302
|
-
}
|
|
1303
|
-
.hover\:border-\[var\(--ui-color-border-hover\)\] {
|
|
1304
|
-
&:hover {
|
|
1305
|
-
@media (hover: hover) {
|
|
1306
|
-
border-color: var(--ui-color-border-hover);
|
|
1307
|
-
}
|
|
1310
|
+
@media (hover: hover) {
|
|
1311
|
+
.group-hover\:opacity-100:is(:where(.group):hover *) {
|
|
1312
|
+
opacity: 100%;
|
|
1308
1313
|
}
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
&:hover {
|
|
1312
|
-
@media (hover: hover) {
|
|
1313
|
-
background-color: var(--ui-color-bg-hover);
|
|
1314
|
-
}
|
|
1314
|
+
.hover\:border-\[var\(--ui-color-border-hover\)\]:hover {
|
|
1315
|
+
border-color: var(--ui-color-border-hover);
|
|
1315
1316
|
}
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
&:hover {
|
|
1319
|
-
@media (hover: hover) {
|
|
1320
|
-
color: var(--ui-color-text-hover);
|
|
1321
|
-
}
|
|
1317
|
+
.hover\:bg-\[var\(--ui-color-bg-hover\)\]:hover {
|
|
1318
|
+
background-color: var(--ui-color-bg-hover);
|
|
1322
1319
|
}
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
&:hover {
|
|
1326
|
-
@media (hover: hover) {
|
|
1327
|
-
text-decoration-line: underline;
|
|
1328
|
-
}
|
|
1320
|
+
.hover\:text-\[var\(--ui-color-text-hover\)\]:hover {
|
|
1321
|
+
color: var(--ui-color-text-hover);
|
|
1329
1322
|
}
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
&:hover {
|
|
1333
|
-
@media (hover: hover) {
|
|
1334
|
-
opacity: 100%;
|
|
1335
|
-
}
|
|
1323
|
+
.hover\:underline:hover {
|
|
1324
|
+
text-decoration-line: underline;
|
|
1336
1325
|
}
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
&:hover {
|
|
1340
|
-
@media (hover: hover) {
|
|
1341
|
-
--tw-shadow: 0 10px 24px var(--tw-shadow-color, rgba(0,0,0,0.22));
|
|
1342
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1343
|
-
}
|
|
1326
|
+
.hover\:opacity-100:hover {
|
|
1327
|
+
opacity: 100%;
|
|
1344
1328
|
}
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
@media (hover: hover) {
|
|
1349
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1350
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1351
|
-
}
|
|
1329
|
+
.hover\:shadow-\[0_10px_24px_rgba\(0\,0\,0\,0\.22\)\]:hover {
|
|
1330
|
+
--tw-shadow: 0 10px 24px var(--tw-shadow-color, rgba(0,0,0,0.22));
|
|
1331
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1352
1332
|
}
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
@media (hover: hover) {
|
|
1357
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1358
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1359
|
-
}
|
|
1333
|
+
.hover\:ring-0:hover {
|
|
1334
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1335
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1360
1336
|
}
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
&:focus {
|
|
1364
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1337
|
+
.hover\:ring-4:hover {
|
|
1338
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1365
1339
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1366
1340
|
}
|
|
1367
1341
|
}
|
|
1368
|
-
.focus\:ring-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1372
|
-
}
|
|
1342
|
+
.focus\:ring-2:focus {
|
|
1343
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1344
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1373
1345
|
}
|
|
1374
|
-
.focus\:
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
outline-style: none;
|
|
1378
|
-
}
|
|
1346
|
+
.focus\:ring-offset-2:focus {
|
|
1347
|
+
--tw-ring-offset-width: 2px;
|
|
1348
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1379
1349
|
}
|
|
1380
|
-
.focus
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1384
|
-
}
|
|
1350
|
+
.focus\:outline-none:focus {
|
|
1351
|
+
--tw-outline-style: none;
|
|
1352
|
+
outline-style: none;
|
|
1385
1353
|
}
|
|
1386
|
-
.focus-visible\:ring-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1390
|
-
}
|
|
1354
|
+
.focus-visible\:ring-2:focus-visible {
|
|
1355
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1356
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1391
1357
|
}
|
|
1392
|
-
.focus-visible\:
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
outline-style: none;
|
|
1396
|
-
}
|
|
1358
|
+
.focus-visible\:ring-offset-2:focus-visible {
|
|
1359
|
+
--tw-ring-offset-width: 2px;
|
|
1360
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1397
1361
|
}
|
|
1398
|
-
.
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
}
|
|
1362
|
+
.focus-visible\:outline-none:focus-visible {
|
|
1363
|
+
--tw-outline-style: none;
|
|
1364
|
+
outline-style: none;
|
|
1402
1365
|
}
|
|
1403
|
-
.disabled\:
|
|
1404
|
-
|
|
1405
|
-
cursor: default;
|
|
1406
|
-
}
|
|
1366
|
+
.disabled\:pointer-events-none:disabled {
|
|
1367
|
+
pointer-events: none;
|
|
1407
1368
|
}
|
|
1408
|
-
.disabled\:cursor-
|
|
1409
|
-
|
|
1410
|
-
cursor: not-allowed;
|
|
1411
|
-
}
|
|
1369
|
+
.disabled\:cursor-default:disabled {
|
|
1370
|
+
cursor: default;
|
|
1412
1371
|
}
|
|
1413
|
-
.disabled\:
|
|
1414
|
-
|
|
1415
|
-
opacity: 50%;
|
|
1416
|
-
}
|
|
1372
|
+
.disabled\:cursor-not-allowed:disabled {
|
|
1373
|
+
cursor: not-allowed;
|
|
1417
1374
|
}
|
|
1418
|
-
.
|
|
1419
|
-
|
|
1420
|
-
pointer-events: none;
|
|
1421
|
-
}
|
|
1375
|
+
.disabled\:opacity-50:disabled {
|
|
1376
|
+
opacity: 50%;
|
|
1422
1377
|
}
|
|
1423
|
-
.data-\[disabled\]\:
|
|
1424
|
-
|
|
1425
|
-
opacity: 50%;
|
|
1426
|
-
}
|
|
1378
|
+
.data-\[disabled\]\:pointer-events-none[data-disabled] {
|
|
1379
|
+
pointer-events: none;
|
|
1427
1380
|
}
|
|
1428
|
-
.data-\[
|
|
1429
|
-
|
|
1430
|
-
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1431
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1432
|
-
}
|
|
1381
|
+
.data-\[disabled\]\:opacity-50[data-disabled] {
|
|
1382
|
+
opacity: 50%;
|
|
1433
1383
|
}
|
|
1434
|
-
.data-\[state\=
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1438
|
-
}
|
|
1384
|
+
.data-\[state\=active\]\:shadow-sm[data-state="active"] {
|
|
1385
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1386
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1439
1387
|
}
|
|
1440
|
-
.data-\[state\=
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
}
|
|
1388
|
+
.data-\[state\=checked\]\:translate-x-5[data-state="checked"] {
|
|
1389
|
+
--tw-translate-x: calc(var(--spacing) * 5);
|
|
1390
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1444
1391
|
}
|
|
1445
|
-
.data-\[state\=
|
|
1446
|
-
|
|
1447
|
-
--tw-translate-x: calc(var(--spacing) * 0);
|
|
1448
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1449
|
-
}
|
|
1392
|
+
.data-\[state\=inactive\]\:hidden[data-state="inactive"] {
|
|
1393
|
+
display: none;
|
|
1450
1394
|
}
|
|
1451
|
-
.
|
|
1452
|
-
|
|
1395
|
+
.data-\[state\=unchecked\]\:translate-x-0[data-state="unchecked"] {
|
|
1396
|
+
--tw-translate-x: 0px;
|
|
1397
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1398
|
+
}
|
|
1399
|
+
@media (width >= 40rem) {
|
|
1400
|
+
.sm\:max-w-\[420px\] {
|
|
1453
1401
|
max-width: 420px;
|
|
1454
1402
|
}
|
|
1455
|
-
|
|
1456
|
-
.sm\:flex-row {
|
|
1457
|
-
@media (width >= 40rem) {
|
|
1403
|
+
.sm\:flex-row {
|
|
1458
1404
|
flex-direction: row;
|
|
1459
1405
|
}
|
|
1460
|
-
|
|
1461
|
-
.sm\:justify-end {
|
|
1462
|
-
@media (width >= 40rem) {
|
|
1406
|
+
.sm\:justify-end {
|
|
1463
1407
|
justify-content: flex-end;
|
|
1464
1408
|
}
|
|
1465
1409
|
}
|
|
1466
|
-
.\[\&\>svg\]\:absolute {
|
|
1467
|
-
|
|
1468
|
-
position: absolute;
|
|
1469
|
-
}
|
|
1410
|
+
.\[\&\>svg\]\:absolute > svg {
|
|
1411
|
+
position: absolute;
|
|
1470
1412
|
}
|
|
1471
|
-
.\[\&\>svg\]\:top-4 {
|
|
1472
|
-
|
|
1473
|
-
top: calc(var(--spacing) * 4);
|
|
1474
|
-
}
|
|
1413
|
+
.\[\&\>svg\]\:top-4 > svg {
|
|
1414
|
+
top: calc(var(--spacing) * 4);
|
|
1475
1415
|
}
|
|
1476
|
-
.\[\&\>svg\]\:left-4 {
|
|
1477
|
-
|
|
1478
|
-
left: calc(var(--spacing) * 4);
|
|
1479
|
-
}
|
|
1416
|
+
.\[\&\>svg\]\:left-4 > svg {
|
|
1417
|
+
left: calc(var(--spacing) * 4);
|
|
1480
1418
|
}
|
|
1481
|
-
.\[\&\>svg\]\:text-current {
|
|
1482
|
-
|
|
1483
|
-
color: currentcolor;
|
|
1484
|
-
}
|
|
1419
|
+
.\[\&\>svg\]\:text-current > svg {
|
|
1420
|
+
color: currentcolor;
|
|
1485
1421
|
}
|
|
1486
|
-
.\[\&\>svg\~\*\]\:pl-7 {
|
|
1487
|
-
|
|
1488
|
-
padding-left: calc(var(--spacing) * 7);
|
|
1489
|
-
}
|
|
1422
|
+
.\[\&\>svg\~\*\]\:pl-7 > svg ~ * {
|
|
1423
|
+
padding-left: calc(var(--spacing) * 7);
|
|
1490
1424
|
}
|
|
1491
|
-
.\[\&\[data-state\=open\]\>svg\]\:rotate-180 {
|
|
1492
|
-
|
|
1493
|
-
rotate: 180deg;
|
|
1494
|
-
}
|
|
1425
|
+
.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open] > svg {
|
|
1426
|
+
rotate: 180deg;
|
|
1495
1427
|
}
|
|
1496
1428
|
}
|
|
1497
1429
|
@property --tw-translate-x {
|
package/dist/src/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PACKAGE_VERSION = "3.7.
|
|
1
|
+
export declare const PACKAGE_VERSION = "3.7.1";
|
package/dist/src/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Do not edit it manually.
|
|
2
|
-
export const PACKAGE_VERSION = '3.7.
|
|
2
|
+
export const PACKAGE_VERSION = '3.7.1';
|