@sorocraft/ui 1.0.46 → 1.0.47

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.
@@ -0,0 +1,3 @@
1
+ export interface FormErrors {
2
+ [key: string]: string;
3
+ }
@@ -1,7 +1,11 @@
1
1
  export interface ModalParams {
2
2
  [key: string]: any;
3
3
  }
4
- export interface Modal {
4
+ export interface ModalType {
5
5
  id: string;
6
- params: ModalParams;
6
+ params?: ModalParams;
7
+ }
8
+ export interface DrawerType {
9
+ id: string;
10
+ params?: ModalParams;
7
11
  }
@@ -30,7 +30,7 @@ $color-light-inverse: $color-gray-600;
30
30
  $color-primary: var(--sorocraft-color-primary, #2d3436);
31
31
  $color-primary-light: rgba($color-primary, 0.1);
32
32
  $color-primary-active: var(--sorocraft-color-primary-active, #212526);
33
- $color-primary-inverse: $color-white;
33
+ $color-primary-inverse: var(--sorocraft-color-primary-inverse, $color-white);
34
34
  $color-secondary: var(--sorocraft-color-secondary, #16a085);
35
35
  $color-secondary-inverse: $color-white;
36
36
  $color-secondary-active: var(--sorocraft-color-secondary-active, #0bb7af);
@@ -172,10 +172,6 @@ $xxl: 1440px;
172
172
  background-color: nth($styles, 3);
173
173
  color: nth($styles, 4);
174
174
 
175
- i {
176
- color: nth($styles, 4);
177
- }
178
-
179
175
  svg {
180
176
  stroke: nth($styles, 4);
181
177