@blockscout/ui-toolkit 2.3.5 → 2.4.0-alpha
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/forms/validators/address.d.ts +0 -1
- package/dist/components/loaders/ContentLoader.d.ts +7 -0
- package/dist/index.js +3161 -3034
- package/dist/package/src/index.d.ts +1 -0
- package/dist/theme/foundations/colors.d.ts +3 -0
- package/dist/theme/recipes/alert.recipe.d.ts +15 -0
- package/dist/theme/recipes/drawer.recipe.d.ts +15 -0
- package/dist/theme/recipes/index.d.ts +37 -0
- package/dist/theme/recipes/input.recipe.d.ts +3 -0
- package/dist/theme/recipes/link.recipe.d.ts +1 -0
- package/dist/theme/recipes/pin-input.recipe.d.ts +3 -0
- package/dist/utils/regexp.d.ts +1 -0
- package/package.json +1 -1
|
@@ -46,6 +46,7 @@ export * from '../../components/forms/fields';
|
|
|
46
46
|
export * from '../../components/forms/inputs';
|
|
47
47
|
export * from '../../components/forms/utils';
|
|
48
48
|
export * from '../../components/forms/validators';
|
|
49
|
+
export * from '../../components/loaders/ContentLoader';
|
|
49
50
|
export * from '../../components/truncation/TruncatedTextTooltip';
|
|
50
51
|
export { default as getComponentDisplayName } from '../../utils/getComponentDisplayName';
|
|
51
52
|
export * as html from '../../utils/htmlEntities';
|
|
@@ -32,6 +32,21 @@ export declare const recipe: import('@chakra-ui/react').SlotRecipeDefinition<"co
|
|
|
32
32
|
};
|
|
33
33
|
};
|
|
34
34
|
size: {
|
|
35
|
+
sm: {
|
|
36
|
+
root: {
|
|
37
|
+
gap: "2";
|
|
38
|
+
px: "2";
|
|
39
|
+
py: "2";
|
|
40
|
+
textStyle: "xs";
|
|
41
|
+
};
|
|
42
|
+
indicator: {
|
|
43
|
+
boxSize: "5";
|
|
44
|
+
my: number;
|
|
45
|
+
};
|
|
46
|
+
content: {
|
|
47
|
+
minH: "5";
|
|
48
|
+
};
|
|
49
|
+
};
|
|
35
50
|
md: {
|
|
36
51
|
root: {
|
|
37
52
|
gap: "2";
|
|
@@ -63,6 +63,20 @@ export declare const recipe: import('@chakra-ui/react').SlotRecipeDefinition<"co
|
|
|
63
63
|
positioner: {
|
|
64
64
|
alignItems: "flex-end";
|
|
65
65
|
};
|
|
66
|
+
header: {
|
|
67
|
+
px: "5";
|
|
68
|
+
pt: "5";
|
|
69
|
+
pb: "3";
|
|
70
|
+
mb: "-5";
|
|
71
|
+
};
|
|
72
|
+
body: {
|
|
73
|
+
p: "5";
|
|
74
|
+
};
|
|
75
|
+
footer: {
|
|
76
|
+
px: "5";
|
|
77
|
+
pt: "3";
|
|
78
|
+
mt: "-5";
|
|
79
|
+
};
|
|
66
80
|
content: {
|
|
67
81
|
maxW: "100%";
|
|
68
82
|
_open: {
|
|
@@ -71,6 +85,7 @@ export declare const recipe: import('@chakra-ui/react').SlotRecipeDefinition<"co
|
|
|
71
85
|
_closed: {
|
|
72
86
|
animationName: "slide-to-bottom-full, fade-out";
|
|
73
87
|
};
|
|
88
|
+
borderTopRadius: "base";
|
|
74
89
|
};
|
|
75
90
|
};
|
|
76
91
|
};
|
|
@@ -474,6 +474,9 @@ export declare const recipes: {
|
|
|
474
474
|
};
|
|
475
475
|
_placeholderShown: {
|
|
476
476
|
borderColor: "input.border";
|
|
477
|
+
overflow: "hidden";
|
|
478
|
+
textOverflow: "ellipsis";
|
|
479
|
+
whiteSpace: "nowrap";
|
|
477
480
|
_invalid: {
|
|
478
481
|
borderColor: "input.border.error";
|
|
479
482
|
};
|
|
@@ -577,6 +580,7 @@ export declare const recipes: {
|
|
|
577
580
|
};
|
|
578
581
|
};
|
|
579
582
|
plain: {
|
|
583
|
+
color: "inherit";
|
|
580
584
|
_hover: {
|
|
581
585
|
textDecoration: "none";
|
|
582
586
|
};
|
|
@@ -858,6 +862,21 @@ export declare const slotRecipes: {
|
|
|
858
862
|
};
|
|
859
863
|
};
|
|
860
864
|
size: {
|
|
865
|
+
sm: {
|
|
866
|
+
root: {
|
|
867
|
+
gap: "2";
|
|
868
|
+
px: "2";
|
|
869
|
+
py: "2";
|
|
870
|
+
textStyle: "xs";
|
|
871
|
+
};
|
|
872
|
+
indicator: {
|
|
873
|
+
boxSize: "5";
|
|
874
|
+
my: number;
|
|
875
|
+
};
|
|
876
|
+
content: {
|
|
877
|
+
minH: "5";
|
|
878
|
+
};
|
|
879
|
+
};
|
|
861
880
|
md: {
|
|
862
881
|
root: {
|
|
863
882
|
gap: "2";
|
|
@@ -1118,6 +1137,20 @@ export declare const slotRecipes: {
|
|
|
1118
1137
|
positioner: {
|
|
1119
1138
|
alignItems: "flex-end";
|
|
1120
1139
|
};
|
|
1140
|
+
header: {
|
|
1141
|
+
px: "5";
|
|
1142
|
+
pt: "5";
|
|
1143
|
+
pb: "3";
|
|
1144
|
+
mb: "-5";
|
|
1145
|
+
};
|
|
1146
|
+
body: {
|
|
1147
|
+
p: "5";
|
|
1148
|
+
};
|
|
1149
|
+
footer: {
|
|
1150
|
+
px: "5";
|
|
1151
|
+
pt: "3";
|
|
1152
|
+
mt: "-5";
|
|
1153
|
+
};
|
|
1121
1154
|
content: {
|
|
1122
1155
|
maxW: "100%";
|
|
1123
1156
|
_open: {
|
|
@@ -1126,6 +1159,7 @@ export declare const slotRecipes: {
|
|
|
1126
1159
|
_closed: {
|
|
1127
1160
|
animationName: "slide-to-bottom-full, fade-out";
|
|
1128
1161
|
};
|
|
1162
|
+
borderTopRadius: "base";
|
|
1129
1163
|
};
|
|
1130
1164
|
};
|
|
1131
1165
|
};
|
|
@@ -1284,6 +1318,9 @@ export declare const slotRecipes: {
|
|
|
1284
1318
|
};
|
|
1285
1319
|
_placeholderShown: {
|
|
1286
1320
|
borderColor: "input.border";
|
|
1321
|
+
overflow: "hidden";
|
|
1322
|
+
textOverflow: "ellipsis";
|
|
1323
|
+
whiteSpace: "nowrap";
|
|
1287
1324
|
_invalid: {
|
|
1288
1325
|
borderColor: "input.border.error";
|
|
1289
1326
|
};
|
|
@@ -27,6 +27,9 @@ export declare const recipe: import('@chakra-ui/react').RecipeDefinition<{
|
|
|
27
27
|
};
|
|
28
28
|
_placeholderShown: {
|
|
29
29
|
borderColor: "input.border";
|
|
30
|
+
overflow: "hidden";
|
|
31
|
+
textOverflow: "ellipsis";
|
|
32
|
+
whiteSpace: "nowrap";
|
|
30
33
|
_invalid: {
|
|
31
34
|
borderColor: "input.border.error";
|
|
32
35
|
};
|
|
@@ -19,6 +19,9 @@ export declare const recipe: import('@chakra-ui/react').SlotRecipeDefinition<"in
|
|
|
19
19
|
};
|
|
20
20
|
_placeholderShown: {
|
|
21
21
|
borderColor: "input.border";
|
|
22
|
+
overflow: "hidden";
|
|
23
|
+
textOverflow: "ellipsis";
|
|
24
|
+
whiteSpace: "nowrap";
|
|
22
25
|
_invalid: {
|
|
23
26
|
borderColor: "input.border.error";
|
|
24
27
|
};
|
package/dist/utils/regexp.d.ts
CHANGED
package/package.json
CHANGED