@open-tender/types 0.3.17 → 0.3.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/.DS_Store
ADDED
|
Binary file
|
|
@@ -581,6 +581,7 @@ export interface ThemeModifiersColors extends Record<string, string> {
|
|
|
581
581
|
bgColor: string;
|
|
582
582
|
borderColor: string;
|
|
583
583
|
}
|
|
584
|
+
export declare type ThemeModifiersBoxType = 'DEFAULT' | 'CARDS' | 'SQUARES';
|
|
584
585
|
export interface ThemeModifiersBox extends Record<string, string | number> {
|
|
585
586
|
border: string;
|
|
586
587
|
borderMobile: string;
|
|
@@ -588,7 +589,7 @@ export interface ThemeModifiersBox extends Record<string, string | number> {
|
|
|
588
589
|
boxShadow: string;
|
|
589
590
|
gap: string;
|
|
590
591
|
gapHalf: string;
|
|
591
|
-
layout:
|
|
592
|
+
layout: ThemeModifiersBoxType;
|
|
592
593
|
margin: string;
|
|
593
594
|
marginMobile: string;
|
|
594
595
|
minHeight: string;
|
|
@@ -581,6 +581,7 @@ export interface ThemeModifiersColors extends Record<string, string> {
|
|
|
581
581
|
bgColor: string;
|
|
582
582
|
borderColor: string;
|
|
583
583
|
}
|
|
584
|
+
export declare type ThemeModifiersBoxType = 'DEFAULT' | 'CARDS' | 'SQUARES';
|
|
584
585
|
export interface ThemeModifiersBox extends Record<string, string | number> {
|
|
585
586
|
border: string;
|
|
586
587
|
borderMobile: string;
|
|
@@ -588,7 +589,7 @@ export interface ThemeModifiersBox extends Record<string, string | number> {
|
|
|
588
589
|
boxShadow: string;
|
|
589
590
|
gap: string;
|
|
590
591
|
gapHalf: string;
|
|
591
|
-
layout:
|
|
592
|
+
layout: ThemeModifiersBoxType;
|
|
592
593
|
margin: string;
|
|
593
594
|
marginMobile: string;
|
|
594
595
|
minHeight: string;
|
package/package.json
CHANGED