gantri-components 2.219.2 → 2.221.0
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/components/tabs/components/tabs-list/tabs-list.styles.d.ts +3 -0
- package/dist/helpers/get-folder-structure/get-folder-structure.types.d.ts +2 -1
- package/dist/helpers/get-folder-structure/globals.types.d.ts +1 -1
- package/dist/helpers/get-folder-structure/helpers/get-avatars-path/get-avatars-path.d.ts +2 -0
- package/dist/helpers/get-folder-structure/helpers/get-avatars-path/get-avatars-path.types.d.ts +8 -0
- package/dist/helpers/get-folder-structure/helpers/get-avatars-path/index.d.ts +2 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/styles/theme.d.ts +7 -0
- package/package.json +1 -1
package/dist/styles/theme.d.ts
CHANGED
|
@@ -97,35 +97,42 @@ declare module 'styled-components' {
|
|
|
97
97
|
};
|
|
98
98
|
};
|
|
99
99
|
defaults: {
|
|
100
|
+
[key: string]: any;
|
|
100
101
|
button: {
|
|
102
|
+
[key: string]: any;
|
|
101
103
|
size: ResolutionAwareProp<ButtonSize>;
|
|
102
104
|
variant: ButtonVariant;
|
|
103
105
|
};
|
|
104
106
|
dropdown: {
|
|
107
|
+
[key: string]: any;
|
|
105
108
|
labelPosition: LabelPosition;
|
|
106
109
|
labelVariant: ResolutionAwareProp<TextVariant>;
|
|
107
110
|
size: ResolutionAwareProp<TextFieldSize>;
|
|
108
111
|
variant: TextFieldVariant;
|
|
109
112
|
};
|
|
110
113
|
searchField: {
|
|
114
|
+
[key: string]: any;
|
|
111
115
|
labelPosition: LabelPosition;
|
|
112
116
|
labelVariant: ResolutionAwareProp<TextVariant>;
|
|
113
117
|
size: ResolutionAwareProp<TextFieldSize>;
|
|
114
118
|
variant: TextFieldVariant;
|
|
115
119
|
};
|
|
116
120
|
textArea: {
|
|
121
|
+
[key: string]: any;
|
|
117
122
|
labelPosition: LabelPosition;
|
|
118
123
|
labelVariant: ResolutionAwareProp<TextVariant>;
|
|
119
124
|
size: ResolutionAwareProp<TextFieldSize>;
|
|
120
125
|
variant: TextFieldVariant;
|
|
121
126
|
};
|
|
122
127
|
textField: {
|
|
128
|
+
[key: string]: any;
|
|
123
129
|
labelPosition: LabelPosition;
|
|
124
130
|
labelVariant: ResolutionAwareProp<TextVariant>;
|
|
125
131
|
size: ResolutionAwareProp<TextFieldSize>;
|
|
126
132
|
variant: TextFieldVariant;
|
|
127
133
|
};
|
|
128
134
|
typography: {
|
|
135
|
+
[key: string]: any;
|
|
129
136
|
variant: ResolutionAwareProp<TextVariant>;
|
|
130
137
|
};
|
|
131
138
|
};
|