baaz-custom-components 3.1.18 → 3.1.19

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
@@ -468,6 +468,9 @@
468
468
  .h-12 {
469
469
  height: calc(var(--spacing) * 12);
470
470
  }
471
+ .h-40 {
472
+ height: calc(var(--spacing) * 40);
473
+ }
471
474
  .h-80 {
472
475
  height: calc(var(--spacing) * 80);
473
476
  }
@@ -534,6 +537,9 @@
534
537
  .w-96 {
535
538
  width: calc(var(--spacing) * 96);
536
539
  }
540
+ .w-\[100px\] {
541
+ width: 100px;
542
+ }
537
543
  .w-auto {
538
544
  width: auto;
539
545
  }
package/dist/index.d.mts CHANGED
@@ -15,6 +15,7 @@ interface UserData {
15
15
  email: string;
16
16
  phone: string;
17
17
  location: string;
18
+ hubIds: number[];
18
19
  }
19
20
  interface NotificationDataTypes {
20
21
  time: number;
package/dist/index.d.ts CHANGED
@@ -15,6 +15,7 @@ interface UserData {
15
15
  email: string;
16
16
  phone: string;
17
17
  location: string;
18
+ hubIds: number[];
18
19
  }
19
20
  interface NotificationDataTypes {
20
21
  time: number;