@open-ui-kit/core 1.1.1 → 1.1.3
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/README.md +3 -3
- package/index.cjs.js +1 -1
- package/index.cjs.js.map +1 -1
- package/index.d.ts +21 -0
- package/index.esm.js +1 -1
- package/index.esm.js.map +1 -1
- package/index.umd.js +1 -1
- package/index.umd.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -145,6 +145,7 @@ interface VarsType {
|
|
|
145
145
|
successBorderActive: string;
|
|
146
146
|
successBorderHover: string;
|
|
147
147
|
successBorderDefault: string;
|
|
148
|
+
successBorderWeak: string;
|
|
148
149
|
successIconInDisabled: string;
|
|
149
150
|
successIconInActive: string;
|
|
150
151
|
successIconInHover: string;
|
|
@@ -161,6 +162,7 @@ interface VarsType {
|
|
|
161
162
|
negativeBorderHover: string;
|
|
162
163
|
negativeBorderDisabled: string;
|
|
163
164
|
negativeBorderDefault: string;
|
|
165
|
+
negativeBorderWeak: string;
|
|
164
166
|
negativeIconDisabled: string;
|
|
165
167
|
negativeIconActive: string;
|
|
166
168
|
negativeIconHover: string;
|
|
@@ -185,6 +187,7 @@ interface VarsType {
|
|
|
185
187
|
excellentBorderHover: string;
|
|
186
188
|
excellentBorderActive: string;
|
|
187
189
|
excellentBorderDisabled: string;
|
|
190
|
+
excellentBorderWeak: string;
|
|
188
191
|
excellentIconDefault: string;
|
|
189
192
|
excellentIconHover: string;
|
|
190
193
|
excellentIconActive: string;
|
|
@@ -207,6 +210,7 @@ interface VarsType {
|
|
|
207
210
|
neutralBorderHover: string;
|
|
208
211
|
neutralBorderActive: string;
|
|
209
212
|
neutralBorderDisabled: string;
|
|
213
|
+
neutralBorderWeak: string;
|
|
210
214
|
neutralIconDefault: string;
|
|
211
215
|
neutralIconHover: string;
|
|
212
216
|
neutralIconActive: string;
|
|
@@ -229,6 +233,7 @@ interface VarsType {
|
|
|
229
233
|
infoBorderHover: string;
|
|
230
234
|
infoBorderActive: string;
|
|
231
235
|
infoBorderDisabled: string;
|
|
236
|
+
infoBorderWeak: string;
|
|
232
237
|
infoIconDefault: string;
|
|
233
238
|
infoIconHover: string;
|
|
234
239
|
infoIconActive: string;
|
|
@@ -251,6 +256,7 @@ interface VarsType {
|
|
|
251
256
|
inactiveBorderHover: string;
|
|
252
257
|
inactiveBorderActive: string;
|
|
253
258
|
inactiveBorderDisabled: string;
|
|
259
|
+
inactiveBorderWeak: string;
|
|
254
260
|
inactiveIconDefault: string;
|
|
255
261
|
inactiveIconHover: string;
|
|
256
262
|
inactiveIconActive: string;
|
|
@@ -273,6 +279,7 @@ interface VarsType {
|
|
|
273
279
|
warningBorderHover: string;
|
|
274
280
|
warningBorderActive: string;
|
|
275
281
|
warningBorderDisabled: string;
|
|
282
|
+
warningBorderWeak: string;
|
|
276
283
|
warningIconDefault: string;
|
|
277
284
|
warningIconHover: string;
|
|
278
285
|
warningIconActive: string;
|
|
@@ -295,6 +302,7 @@ interface VarsType {
|
|
|
295
302
|
severeWarningBorderHover: string;
|
|
296
303
|
severeWarningBorderActive: string;
|
|
297
304
|
severeWarningBorderDisabled: string;
|
|
305
|
+
severeWarningBorderWeak: string;
|
|
298
306
|
severeWarningIconDefault: string;
|
|
299
307
|
severeWarningIconHover: string;
|
|
300
308
|
severeWarningIconActive: string;
|
|
@@ -317,6 +325,7 @@ interface VarsType {
|
|
|
317
325
|
moderateBorderHover: string;
|
|
318
326
|
moderateBorderActive: string;
|
|
319
327
|
moderateBorderDisabled: string;
|
|
328
|
+
moderateBorderWeak: string;
|
|
320
329
|
moderateIconDefault: string;
|
|
321
330
|
moderateIconHover: string;
|
|
322
331
|
moderateIconActive: string;
|
|
@@ -1060,6 +1069,7 @@ declare const Tab: ({ loading, ...props }: TabProps) => react_jsx_runtime.JSX.El
|
|
|
1060
1069
|
|
|
1061
1070
|
interface TagStatusStyle {
|
|
1062
1071
|
backgroundColor: string;
|
|
1072
|
+
border: string;
|
|
1063
1073
|
iconColor: string;
|
|
1064
1074
|
icon: React.ElementType;
|
|
1065
1075
|
}
|
|
@@ -1113,6 +1123,7 @@ declare const Tag: ({ avatar, children, color, status, icon, onClick, size, ...p
|
|
|
1113
1123
|
declare const selectTagStyle: (theme: Theme) => {
|
|
1114
1124
|
Excellent: {
|
|
1115
1125
|
backgroundColor: string;
|
|
1126
|
+
border: string;
|
|
1116
1127
|
icon: _mui_material_OverridableComponent.OverridableComponent<_mui_material.SvgIconTypeMap<{}, "svg">> & {
|
|
1117
1128
|
muiName: string;
|
|
1118
1129
|
};
|
|
@@ -1120,6 +1131,7 @@ declare const selectTagStyle: (theme: Theme) => {
|
|
|
1120
1131
|
};
|
|
1121
1132
|
Positive: {
|
|
1122
1133
|
backgroundColor: string;
|
|
1134
|
+
border: string;
|
|
1123
1135
|
icon: _mui_material_OverridableComponent.OverridableComponent<_mui_material.SvgIconTypeMap<{}, "svg">> & {
|
|
1124
1136
|
muiName: string;
|
|
1125
1137
|
};
|
|
@@ -1127,6 +1139,7 @@ declare const selectTagStyle: (theme: Theme) => {
|
|
|
1127
1139
|
};
|
|
1128
1140
|
Warning: {
|
|
1129
1141
|
backgroundColor: string;
|
|
1142
|
+
border: string;
|
|
1130
1143
|
icon: _mui_material_OverridableComponent.OverridableComponent<_mui_material.SvgIconTypeMap<{}, "svg">> & {
|
|
1131
1144
|
muiName: string;
|
|
1132
1145
|
};
|
|
@@ -1134,6 +1147,7 @@ declare const selectTagStyle: (theme: Theme) => {
|
|
|
1134
1147
|
};
|
|
1135
1148
|
"Severe warning": {
|
|
1136
1149
|
backgroundColor: string;
|
|
1150
|
+
border: string;
|
|
1137
1151
|
icon: _mui_material_OverridableComponent.OverridableComponent<_mui_material.SvgIconTypeMap<{}, "svg">> & {
|
|
1138
1152
|
muiName: string;
|
|
1139
1153
|
};
|
|
@@ -1141,6 +1155,7 @@ declare const selectTagStyle: (theme: Theme) => {
|
|
|
1141
1155
|
};
|
|
1142
1156
|
Negative: {
|
|
1143
1157
|
backgroundColor: string;
|
|
1158
|
+
border: string;
|
|
1144
1159
|
iconColor: string;
|
|
1145
1160
|
icon: _mui_material_OverridableComponent.OverridableComponent<_mui_material.SvgIconTypeMap<{}, "svg">> & {
|
|
1146
1161
|
muiName: string;
|
|
@@ -1148,6 +1163,7 @@ declare const selectTagStyle: (theme: Theme) => {
|
|
|
1148
1163
|
};
|
|
1149
1164
|
Inactive: {
|
|
1150
1165
|
backgroundColor: string;
|
|
1166
|
+
border: string;
|
|
1151
1167
|
iconColor: string;
|
|
1152
1168
|
icon: _mui_material_OverridableComponent.OverridableComponent<_mui_material.SvgIconTypeMap<{}, "svg">> & {
|
|
1153
1169
|
muiName: string;
|
|
@@ -1155,6 +1171,7 @@ declare const selectTagStyle: (theme: Theme) => {
|
|
|
1155
1171
|
};
|
|
1156
1172
|
Disabled: {
|
|
1157
1173
|
backgroundColor: string;
|
|
1174
|
+
border: string;
|
|
1158
1175
|
iconColor: string;
|
|
1159
1176
|
icon: _mui_material_OverridableComponent.OverridableComponent<_mui_material.SvgIconTypeMap<{}, "svg">> & {
|
|
1160
1177
|
muiName: string;
|
|
@@ -1162,6 +1179,7 @@ declare const selectTagStyle: (theme: Theme) => {
|
|
|
1162
1179
|
};
|
|
1163
1180
|
"In progress": {
|
|
1164
1181
|
backgroundColor: string;
|
|
1182
|
+
border: string;
|
|
1165
1183
|
icon: _mui_material_OverridableComponent.OverridableComponent<_mui_material.SvgIconTypeMap<{}, "svg">> & {
|
|
1166
1184
|
muiName: string;
|
|
1167
1185
|
};
|
|
@@ -1169,6 +1187,7 @@ declare const selectTagStyle: (theme: Theme) => {
|
|
|
1169
1187
|
};
|
|
1170
1188
|
Info: {
|
|
1171
1189
|
backgroundColor: string;
|
|
1190
|
+
border: string;
|
|
1172
1191
|
icon: _mui_material_OverridableComponent.OverridableComponent<_mui_material.SvgIconTypeMap<{}, "svg">> & {
|
|
1173
1192
|
muiName: string;
|
|
1174
1193
|
};
|
|
@@ -1176,6 +1195,7 @@ declare const selectTagStyle: (theme: Theme) => {
|
|
|
1176
1195
|
};
|
|
1177
1196
|
Allow: {
|
|
1178
1197
|
backgroundColor: string;
|
|
1198
|
+
border: string;
|
|
1179
1199
|
icon: _mui_material_OverridableComponent.OverridableComponent<_mui_material.SvgIconTypeMap<{}, "svg">> & {
|
|
1180
1200
|
muiName: string;
|
|
1181
1201
|
};
|
|
@@ -1183,6 +1203,7 @@ declare const selectTagStyle: (theme: Theme) => {
|
|
|
1183
1203
|
};
|
|
1184
1204
|
Deny: {
|
|
1185
1205
|
backgroundColor: string;
|
|
1206
|
+
border: string;
|
|
1186
1207
|
iconColor: string;
|
|
1187
1208
|
icon: _mui_material_OverridableComponent.OverridableComponent<_mui_material.SvgIconTypeMap<{}, "svg">> & {
|
|
1188
1209
|
muiName: string;
|