baaz-custom-components 3.1.0 → 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 -3
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +318 -296
- package/dist/index.mjs +314 -292
- package/dist/styles.css +1 -1
- package/package.json +1 -2
package/dist/index.css
CHANGED
|
@@ -508,9 +508,6 @@
|
|
|
508
508
|
.w-56 {
|
|
509
509
|
width: calc(var(--spacing) * 56);
|
|
510
510
|
}
|
|
511
|
-
.w-\[200px\] {
|
|
512
|
-
width: 200px;
|
|
513
|
-
}
|
|
514
511
|
.w-auto {
|
|
515
512
|
width: auto;
|
|
516
513
|
}
|
|
@@ -709,6 +706,10 @@
|
|
|
709
706
|
border-left-style: var(--tw-border-style);
|
|
710
707
|
border-left-width: 1px;
|
|
711
708
|
}
|
|
709
|
+
.border-none {
|
|
710
|
+
--tw-border-style: none;
|
|
711
|
+
border-style: none;
|
|
712
|
+
}
|
|
712
713
|
.border-input {
|
|
713
714
|
border-color: var(--input);
|
|
714
715
|
}
|
|
@@ -1263,6 +1264,16 @@
|
|
|
1263
1264
|
border-left-width: 1px;
|
|
1264
1265
|
}
|
|
1265
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
|
+
}
|
|
1266
1277
|
.group-data-\[state\=open\]\:rotate-180 {
|
|
1267
1278
|
&:is(:where(.group)[data-state=open] *) {
|
|
1268
1279
|
rotate: 180deg;
|
package/dist/index.d.mts
CHANGED