@open-tender/types 0.2.67 → 0.2.68
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.
|
@@ -502,7 +502,11 @@ export interface ThemeTagsBox extends Record<string, string | number> {
|
|
|
502
502
|
minWidthMobile: string;
|
|
503
503
|
padding: string;
|
|
504
504
|
paddingMobile: string;
|
|
505
|
+
transition: string;
|
|
506
|
+
width: string;
|
|
507
|
+
widthMobile: string;
|
|
505
508
|
}
|
|
509
|
+
export declare type ThemeTagsImagePosition = 'TOP' | 'BOTTOM' | 'LEFT' | 'RIGHT' | 'HIDDEN';
|
|
506
510
|
export interface ThemeTagsImage extends Record<string, string | number | boolean> {
|
|
507
511
|
asImg: boolean;
|
|
508
512
|
aspectRatio: number;
|
|
@@ -520,7 +524,7 @@ export interface ThemeTagsImage extends Record<string, string | number | boolean
|
|
|
520
524
|
minWidthMobile: string;
|
|
521
525
|
padding: string;
|
|
522
526
|
paddingMobile: string;
|
|
523
|
-
position:
|
|
527
|
+
position: ThemeTagsImagePosition;
|
|
524
528
|
}
|
|
525
529
|
export interface ThemeTagsText extends Record<string, string> {
|
|
526
530
|
color: string;
|
|
@@ -502,7 +502,11 @@ export interface ThemeTagsBox extends Record<string, string | number> {
|
|
|
502
502
|
minWidthMobile: string;
|
|
503
503
|
padding: string;
|
|
504
504
|
paddingMobile: string;
|
|
505
|
+
transition: string;
|
|
506
|
+
width: string;
|
|
507
|
+
widthMobile: string;
|
|
505
508
|
}
|
|
509
|
+
export declare type ThemeTagsImagePosition = 'TOP' | 'BOTTOM' | 'LEFT' | 'RIGHT' | 'HIDDEN';
|
|
506
510
|
export interface ThemeTagsImage extends Record<string, string | number | boolean> {
|
|
507
511
|
asImg: boolean;
|
|
508
512
|
aspectRatio: number;
|
|
@@ -520,7 +524,7 @@ export interface ThemeTagsImage extends Record<string, string | number | boolean
|
|
|
520
524
|
minWidthMobile: string;
|
|
521
525
|
padding: string;
|
|
522
526
|
paddingMobile: string;
|
|
523
|
-
position:
|
|
527
|
+
position: ThemeTagsImagePosition;
|
|
524
528
|
}
|
|
525
529
|
export interface ThemeTagsText extends Record<string, string> {
|
|
526
530
|
color: string;
|
package/package.json
CHANGED