baaz-custom-components 3.0.8 → 3.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.
package/dist/index.css CHANGED
@@ -241,6 +241,12 @@
241
241
  .pointer-events-none {
242
242
  pointer-events: none;
243
243
  }
244
+ .invisible {
245
+ visibility: hidden;
246
+ }
247
+ .visible {
248
+ visibility: visible;
249
+ }
244
250
  .sr-only {
245
251
  position: absolute;
246
252
  width: 1px;
@@ -324,6 +330,9 @@
324
330
  .left-\[50\%\] {
325
331
  left: 50%;
326
332
  }
333
+ .left-full {
334
+ left: 100%;
335
+ }
327
336
  .isolate {
328
337
  isolation: isolate;
329
338
  }
@@ -369,9 +378,15 @@
369
378
  .ml-1 {
370
379
  margin-left: calc(var(--spacing) * 1);
371
380
  }
381
+ .ml-2 {
382
+ margin-left: calc(var(--spacing) * 2);
383
+ }
372
384
  .ml-auto {
373
385
  margin-left: auto;
374
386
  }
387
+ .block {
388
+ display: block;
389
+ }
375
390
  .flex {
376
391
  display: flex;
377
392
  }
@@ -505,12 +520,12 @@
505
520
  .w-5 {
506
521
  width: calc(var(--spacing) * 5);
507
522
  }
523
+ .w-48 {
524
+ width: calc(var(--spacing) * 48);
525
+ }
508
526
  .w-56 {
509
527
  width: calc(var(--spacing) * 56);
510
528
  }
511
- .w-\[200px\] {
512
- width: 200px;
513
- }
514
529
  .w-auto {
515
530
  width: auto;
516
531
  }
@@ -538,6 +553,9 @@
538
553
  .min-w-5 {
539
554
  min-width: calc(var(--spacing) * 5);
540
555
  }
556
+ .min-w-48 {
557
+ min-width: calc(var(--spacing) * 48);
558
+ }
541
559
  .min-w-\[8rem\] {
542
560
  min-width: 8rem;
543
561
  }
@@ -604,6 +622,9 @@
604
622
  .cursor-default {
605
623
  cursor: default;
606
624
  }
625
+ .cursor-pointer {
626
+ cursor: pointer;
627
+ }
607
628
  .touch-none {
608
629
  touch-action: none;
609
630
  }
@@ -652,6 +673,9 @@
652
673
  .overflow-hidden {
653
674
  overflow: hidden;
654
675
  }
676
+ .overflow-visible {
677
+ overflow: visible;
678
+ }
655
679
  .overflow-x-hidden {
656
680
  overflow-x: hidden;
657
681
  }
@@ -931,12 +955,18 @@
931
955
  -webkit-font-smoothing: antialiased;
932
956
  -moz-osx-font-smoothing: grayscale;
933
957
  }
958
+ .opacity-0 {
959
+ opacity: 0%;
960
+ }
934
961
  .opacity-50 {
935
962
  opacity: 50%;
936
963
  }
937
964
  .opacity-70 {
938
965
  opacity: 70%;
939
966
  }
967
+ .opacity-100 {
968
+ opacity: 100%;
969
+ }
940
970
  .shadow {
941
971
  --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));
942
972
  box-shadow:
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;
@@ -21,7 +22,7 @@ interface NavbarProps {
21
22
  onLogout: () => void;
22
23
  }
23
24
 
24
- declare function Navbar({ navbarData, userData, onLogout, }: NavbarProps): React$1.JSX.Element;
25
+ declare function Navbar({ navbarData, userData, onLogout, }: NavbarProps): React$1.JSX.Element | null;
25
26
 
26
27
  declare function DesktopNavbar({ navbarData, userData, onLogout, }: NavbarProps): React$1.JSX.Element;
27
28
 
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;
@@ -21,7 +22,7 @@ interface NavbarProps {
21
22
  onLogout: () => void;
22
23
  }
23
24
 
24
- declare function Navbar({ navbarData, userData, onLogout, }: NavbarProps): React$1.JSX.Element;
25
+ declare function Navbar({ navbarData, userData, onLogout, }: NavbarProps): React$1.JSX.Element | null;
25
26
 
26
27
  declare function DesktopNavbar({ navbarData, userData, onLogout, }: NavbarProps): React$1.JSX.Element;
27
28