@sorocraft/ui 1.2.108 → 1.2.111

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.
@@ -8,10 +8,6 @@ export interface ModalType {
8
8
  id: string;
9
9
  params?: ModalParams;
10
10
  }
11
- export interface DrawerType {
12
- id: string;
13
- params?: ModalParams;
14
- }
15
11
  export interface ModalComponentProps {
16
12
  params: ModalParams;
17
13
  }
@@ -139,3 +139,9 @@ $color-unseen-notification: $color-gray-200;
139
139
 
140
140
  /* BRANDS */
141
141
  $color-whatsapp: #25d366;
142
+
143
+ /* Overlay */
144
+ $color-overlay-bg: rgba(
145
+ $color: $color-black,
146
+ $alpha: 0.5,
147
+ );
@@ -330,3 +330,6 @@ $text-weights: (
330
330
  "medium": 500,
331
331
  "bold": 600,
332
332
  );
333
+
334
+ // Drawer
335
+ $drawer-footer-large-height: 10rem;