@blockscout/ui-toolkit 2.4.0-alpha.2 → 2.4.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/index.js +1792 -1769
- package/dist/theme/recipes/button.recipe.d.ts +22 -0
- package/dist/theme/recipes/index.d.ts +22 -0
- package/package.json +1 -1
|
@@ -242,6 +242,28 @@ export declare const recipe: import('@chakra-ui/react').RecipeDefinition<{
|
|
|
242
242
|
color: "hover";
|
|
243
243
|
};
|
|
244
244
|
};
|
|
245
|
+
icon_background: {
|
|
246
|
+
bg: "button.icon_background.bg";
|
|
247
|
+
color: "icon.secondary";
|
|
248
|
+
border: "none";
|
|
249
|
+
_hover: {
|
|
250
|
+
color: "hover";
|
|
251
|
+
};
|
|
252
|
+
_selected: {
|
|
253
|
+
bg: "selected.control.bg";
|
|
254
|
+
color: "selected.control.text";
|
|
255
|
+
_hover: {
|
|
256
|
+
bg: "selected.control.bg";
|
|
257
|
+
color: "hover";
|
|
258
|
+
};
|
|
259
|
+
_expanded: {
|
|
260
|
+
color: "hover";
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
_expanded: {
|
|
264
|
+
color: "hover";
|
|
265
|
+
};
|
|
266
|
+
};
|
|
245
267
|
pagination: {
|
|
246
268
|
borderWidth: "2px";
|
|
247
269
|
borderStyle: "solid";
|
|
@@ -308,6 +308,28 @@ export declare const recipes: {
|
|
|
308
308
|
color: "hover";
|
|
309
309
|
};
|
|
310
310
|
};
|
|
311
|
+
icon_background: {
|
|
312
|
+
bg: "button.icon_background.bg";
|
|
313
|
+
color: "icon.secondary";
|
|
314
|
+
border: "none";
|
|
315
|
+
_hover: {
|
|
316
|
+
color: "hover";
|
|
317
|
+
};
|
|
318
|
+
_selected: {
|
|
319
|
+
bg: "selected.control.bg";
|
|
320
|
+
color: "selected.control.text";
|
|
321
|
+
_hover: {
|
|
322
|
+
bg: "selected.control.bg";
|
|
323
|
+
color: "hover";
|
|
324
|
+
};
|
|
325
|
+
_expanded: {
|
|
326
|
+
color: "hover";
|
|
327
|
+
};
|
|
328
|
+
};
|
|
329
|
+
_expanded: {
|
|
330
|
+
color: "hover";
|
|
331
|
+
};
|
|
332
|
+
};
|
|
311
333
|
pagination: {
|
|
312
334
|
borderWidth: "2px";
|
|
313
335
|
borderStyle: "solid";
|
package/package.json
CHANGED