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 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
@@ -7,6 +7,7 @@ interface NavbarItem {
7
7
  }
8
8
  interface NavbarData$1 {
9
9
  items: NavbarItem[];
10
+ [key: string]: any;
10
11
  }
11
12
  interface UserData {
12
13
  name: string;
package/dist/index.d.ts CHANGED
@@ -7,6 +7,7 @@ interface NavbarItem {
7
7
  }
8
8
  interface NavbarData$1 {
9
9
  items: NavbarItem[];
10
+ [key: string]: any;
10
11
  }
11
12
  interface UserData {
12
13
  name: string;