baaz-custom-components 3.1.1 → 3.1.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/index.css +14 -30
- package/dist/index.js +244 -246
- package/dist/index.mjs +245 -247
- package/dist/styles.css +1 -1
- package/package.json +1 -2
package/dist/index.css
CHANGED
|
@@ -241,12 +241,6 @@
|
|
|
241
241
|
.pointer-events-none {
|
|
242
242
|
pointer-events: none;
|
|
243
243
|
}
|
|
244
|
-
.invisible {
|
|
245
|
-
visibility: hidden;
|
|
246
|
-
}
|
|
247
|
-
.visible {
|
|
248
|
-
visibility: visible;
|
|
249
|
-
}
|
|
250
244
|
.sr-only {
|
|
251
245
|
position: absolute;
|
|
252
246
|
width: 1px;
|
|
@@ -330,9 +324,6 @@
|
|
|
330
324
|
.left-\[50\%\] {
|
|
331
325
|
left: 50%;
|
|
332
326
|
}
|
|
333
|
-
.left-full {
|
|
334
|
-
left: 100%;
|
|
335
|
-
}
|
|
336
327
|
.isolate {
|
|
337
328
|
isolation: isolate;
|
|
338
329
|
}
|
|
@@ -378,15 +369,9 @@
|
|
|
378
369
|
.ml-1 {
|
|
379
370
|
margin-left: calc(var(--spacing) * 1);
|
|
380
371
|
}
|
|
381
|
-
.ml-2 {
|
|
382
|
-
margin-left: calc(var(--spacing) * 2);
|
|
383
|
-
}
|
|
384
372
|
.ml-auto {
|
|
385
373
|
margin-left: auto;
|
|
386
374
|
}
|
|
387
|
-
.block {
|
|
388
|
-
display: block;
|
|
389
|
-
}
|
|
390
375
|
.flex {
|
|
391
376
|
display: flex;
|
|
392
377
|
}
|
|
@@ -520,9 +505,6 @@
|
|
|
520
505
|
.w-5 {
|
|
521
506
|
width: calc(var(--spacing) * 5);
|
|
522
507
|
}
|
|
523
|
-
.w-48 {
|
|
524
|
-
width: calc(var(--spacing) * 48);
|
|
525
|
-
}
|
|
526
508
|
.w-56 {
|
|
527
509
|
width: calc(var(--spacing) * 56);
|
|
528
510
|
}
|
|
@@ -553,9 +535,6 @@
|
|
|
553
535
|
.min-w-5 {
|
|
554
536
|
min-width: calc(var(--spacing) * 5);
|
|
555
537
|
}
|
|
556
|
-
.min-w-48 {
|
|
557
|
-
min-width: calc(var(--spacing) * 48);
|
|
558
|
-
}
|
|
559
538
|
.min-w-\[8rem\] {
|
|
560
539
|
min-width: 8rem;
|
|
561
540
|
}
|
|
@@ -673,9 +652,6 @@
|
|
|
673
652
|
.overflow-hidden {
|
|
674
653
|
overflow: hidden;
|
|
675
654
|
}
|
|
676
|
-
.overflow-visible {
|
|
677
|
-
overflow: visible;
|
|
678
|
-
}
|
|
679
655
|
.overflow-x-hidden {
|
|
680
656
|
overflow-x: hidden;
|
|
681
657
|
}
|
|
@@ -730,6 +706,10 @@
|
|
|
730
706
|
border-left-style: var(--tw-border-style);
|
|
731
707
|
border-left-width: 1px;
|
|
732
708
|
}
|
|
709
|
+
.border-none {
|
|
710
|
+
--tw-border-style: none;
|
|
711
|
+
border-style: none;
|
|
712
|
+
}
|
|
733
713
|
.border-input {
|
|
734
714
|
border-color: var(--input);
|
|
735
715
|
}
|
|
@@ -955,18 +935,12 @@
|
|
|
955
935
|
-webkit-font-smoothing: antialiased;
|
|
956
936
|
-moz-osx-font-smoothing: grayscale;
|
|
957
937
|
}
|
|
958
|
-
.opacity-0 {
|
|
959
|
-
opacity: 0%;
|
|
960
|
-
}
|
|
961
938
|
.opacity-50 {
|
|
962
939
|
opacity: 50%;
|
|
963
940
|
}
|
|
964
941
|
.opacity-70 {
|
|
965
942
|
opacity: 70%;
|
|
966
943
|
}
|
|
967
|
-
.opacity-100 {
|
|
968
|
-
opacity: 100%;
|
|
969
|
-
}
|
|
970
944
|
.shadow {
|
|
971
945
|
--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));
|
|
972
946
|
box-shadow:
|
|
@@ -1290,6 +1264,16 @@
|
|
|
1290
1264
|
border-left-width: 1px;
|
|
1291
1265
|
}
|
|
1292
1266
|
}
|
|
1267
|
+
.group-data-\[state\=open\]\:hidden {
|
|
1268
|
+
&:is(:where(.group)[data-state=open] *) {
|
|
1269
|
+
display: none;
|
|
1270
|
+
}
|
|
1271
|
+
}
|
|
1272
|
+
.group-data-\[state\=open\]\:inline {
|
|
1273
|
+
&:is(:where(.group)[data-state=open] *) {
|
|
1274
|
+
display: inline;
|
|
1275
|
+
}
|
|
1276
|
+
}
|
|
1293
1277
|
.group-data-\[state\=open\]\:rotate-180 {
|
|
1294
1278
|
&:is(:where(.group)[data-state=open] *) {
|
|
1295
1279
|
rotate: 180deg;
|