@blockscout/ui-toolkit 2.1.1 → 2.2.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/chakra/icon-button.d.ts +1 -1
- package/dist/components/AdaptiveTabs/AdaptiveTabsMenu.d.ts +1 -1
- package/dist/components/AdaptiveTabs/useAdaptiveTabs.d.ts +3 -3
- package/dist/components/AdaptiveTabs/useScrollToActiveTab.d.ts +1 -1
- package/dist/components/buttons/AddButton.d.ts +6 -0
- package/dist/components/buttons/RemoveButton.d.ts +6 -0
- package/dist/hooks/useIsSticky.d.ts +1 -1
- package/dist/index.js +2410 -2304
- package/dist/theme/recipes/button.recipe.d.ts +22 -0
- package/dist/theme/recipes/index.d.ts +22 -0
- package/package.json +1 -1
|
@@ -236,6 +236,28 @@ export declare const recipe: import('@chakra-ui/react').RecipeDefinition<{
|
|
|
236
236
|
color: "link.primary.hover";
|
|
237
237
|
};
|
|
238
238
|
};
|
|
239
|
+
pagination: {
|
|
240
|
+
borderWidth: "2px";
|
|
241
|
+
borderStyle: "solid";
|
|
242
|
+
bg: "transparent";
|
|
243
|
+
color: "button.pagination.fg";
|
|
244
|
+
borderColor: "button.pagination.border";
|
|
245
|
+
_hover: {
|
|
246
|
+
bg: "transparent";
|
|
247
|
+
color: "link.primary.hover";
|
|
248
|
+
borderColor: "link.primary.hover";
|
|
249
|
+
};
|
|
250
|
+
_selected: {
|
|
251
|
+
bg: "button.pagination.bg.selected";
|
|
252
|
+
color: "button.pagination.fg.selected";
|
|
253
|
+
borderColor: "transparent";
|
|
254
|
+
_hover: {
|
|
255
|
+
bg: "button.pagination.bg.selected";
|
|
256
|
+
color: "button.pagination.fg.selected";
|
|
257
|
+
borderColor: "transparent";
|
|
258
|
+
};
|
|
259
|
+
};
|
|
260
|
+
};
|
|
239
261
|
};
|
|
240
262
|
size: {
|
|
241
263
|
'2xs': {
|
|
@@ -296,6 +296,28 @@ export declare const recipes: {
|
|
|
296
296
|
color: "link.primary.hover";
|
|
297
297
|
};
|
|
298
298
|
};
|
|
299
|
+
pagination: {
|
|
300
|
+
borderWidth: "2px";
|
|
301
|
+
borderStyle: "solid";
|
|
302
|
+
bg: "transparent";
|
|
303
|
+
color: "button.pagination.fg";
|
|
304
|
+
borderColor: "button.pagination.border";
|
|
305
|
+
_hover: {
|
|
306
|
+
bg: "transparent";
|
|
307
|
+
color: "link.primary.hover";
|
|
308
|
+
borderColor: "link.primary.hover";
|
|
309
|
+
};
|
|
310
|
+
_selected: {
|
|
311
|
+
bg: "button.pagination.bg.selected";
|
|
312
|
+
color: "button.pagination.fg.selected";
|
|
313
|
+
borderColor: "transparent";
|
|
314
|
+
_hover: {
|
|
315
|
+
bg: "button.pagination.bg.selected";
|
|
316
|
+
color: "button.pagination.fg.selected";
|
|
317
|
+
borderColor: "transparent";
|
|
318
|
+
};
|
|
319
|
+
};
|
|
320
|
+
};
|
|
299
321
|
};
|
|
300
322
|
size: {
|
|
301
323
|
'2xs': {
|
package/package.json
CHANGED