@metamask-previews/design-system-shared 0.7.0-preview.4ce710b → 0.8.0-preview.a73a010
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/CHANGELOG.md +9 -1
- package/dist/index.cjs +9 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/types/Box/Box.types.cjs +176 -0
- package/dist/types/Box/Box.types.cjs.map +1 -0
- package/dist/types/Box/Box.types.d.cts +297 -0
- package/dist/types/Box/Box.types.d.cts.map +1 -0
- package/dist/types/Box/Box.types.d.mts +297 -0
- package/dist/types/Box/Box.types.d.mts.map +1 -0
- package/dist/types/Box/Box.types.mjs +173 -0
- package/dist/types/Box/Box.types.mjs.map +1 -0
- package/dist/types/Box/index.cjs +11 -0
- package/dist/types/Box/index.cjs.map +1 -0
- package/dist/types/Box/index.d.cts +2 -0
- package/dist/types/Box/index.d.cts.map +1 -0
- package/dist/types/Box/index.d.mts +2 -0
- package/dist/types/Box/index.d.mts.map +1 -0
- package/dist/types/Box/index.mjs +2 -0
- package/dist/types/Box/index.mjs.map +1 -0
- package/dist/types/KeyValueColumn/KeyValueColumn.types.cjs +3 -0
- package/dist/types/KeyValueColumn/KeyValueColumn.types.cjs.map +1 -0
- package/dist/types/KeyValueColumn/KeyValueColumn.types.d.cts +20 -0
- package/dist/types/KeyValueColumn/KeyValueColumn.types.d.cts.map +1 -0
- package/dist/types/KeyValueColumn/KeyValueColumn.types.d.mts +20 -0
- package/dist/types/KeyValueColumn/KeyValueColumn.types.d.mts.map +1 -0
- package/dist/types/KeyValueColumn/KeyValueColumn.types.mjs +2 -0
- package/dist/types/KeyValueColumn/KeyValueColumn.types.mjs.map +1 -0
- package/dist/types/KeyValueColumn/index.cjs +3 -0
- package/dist/types/KeyValueColumn/index.cjs.map +1 -0
- package/dist/types/KeyValueColumn/index.d.cts +2 -0
- package/dist/types/KeyValueColumn/index.d.cts.map +1 -0
- package/dist/types/KeyValueColumn/index.d.mts +2 -0
- package/dist/types/KeyValueColumn/index.d.mts.map +1 -0
- package/dist/types/KeyValueColumn/index.mjs +2 -0
- package/dist/types/KeyValueColumn/index.mjs.map +1 -0
- package/package.json +1 -1
- package/dist/types/Text/Text.types.cjs +0 -138
- package/dist/types/Text/Text.types.cjs.map +0 -1
- package/dist/types/Text/Text.types.d.cts +0 -179
- package/dist/types/Text/Text.types.d.cts.map +0 -1
- package/dist/types/Text/Text.types.d.mts +0 -179
- package/dist/types/Text/Text.types.d.mts.map +0 -1
- package/dist/types/Text/Text.types.mjs +0 -135
- package/dist/types/Text/Text.types.mjs.map +0 -1
- package/dist/types/Text/index.cjs +0 -10
- package/dist/types/Text/index.cjs.map +0 -1
- package/dist/types/Text/index.d.cts +0 -2
- package/dist/types/Text/index.d.cts.map +0 -1
- package/dist/types/Text/index.d.mts +0 -2
- package/dist/types/Text/index.d.mts.map +0 -1
- package/dist/types/Text/index.mjs +0 -2
- package/dist/types/Text/index.mjs.map +0 -1
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Box - all spacing-related props
|
|
3
|
+
*/
|
|
4
|
+
export type BoxSpacing = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
5
|
+
/**
|
|
6
|
+
* Box - border width values (only valid Tailwind CSS border width utilities)
|
|
7
|
+
*/
|
|
8
|
+
export type BoxBorderWidth = 0 | 1 | 2 | 4 | 8;
|
|
9
|
+
/**
|
|
10
|
+
* Box - flexDirection
|
|
11
|
+
* Convert from enum to const object (ADR-0003)
|
|
12
|
+
*/
|
|
13
|
+
export declare const BoxFlexDirection: {
|
|
14
|
+
readonly Row: "flex-row";
|
|
15
|
+
readonly RowReverse: "flex-row-reverse";
|
|
16
|
+
readonly Column: "flex-col";
|
|
17
|
+
readonly ColumnReverse: "flex-col-reverse";
|
|
18
|
+
};
|
|
19
|
+
export type BoxFlexDirection = (typeof BoxFlexDirection)[keyof typeof BoxFlexDirection];
|
|
20
|
+
/**
|
|
21
|
+
* Box - flexWrap
|
|
22
|
+
* Convert from enum to const object (ADR-0003)
|
|
23
|
+
*/
|
|
24
|
+
export declare const BoxFlexWrap: {
|
|
25
|
+
readonly NoWrap: "flex-nowrap";
|
|
26
|
+
readonly Wrap: "flex-wrap";
|
|
27
|
+
readonly WrapReverse: "flex-wrap-reverse";
|
|
28
|
+
};
|
|
29
|
+
export type BoxFlexWrap = (typeof BoxFlexWrap)[keyof typeof BoxFlexWrap];
|
|
30
|
+
/**
|
|
31
|
+
* Box - alignItems
|
|
32
|
+
* Convert from enum to const object (ADR-0003)
|
|
33
|
+
*/
|
|
34
|
+
export declare const BoxAlignItems: {
|
|
35
|
+
readonly Start: "items-start";
|
|
36
|
+
readonly Center: "items-center";
|
|
37
|
+
readonly End: "items-end";
|
|
38
|
+
readonly Stretch: "items-stretch";
|
|
39
|
+
readonly Baseline: "items-baseline";
|
|
40
|
+
};
|
|
41
|
+
export type BoxAlignItems = (typeof BoxAlignItems)[keyof typeof BoxAlignItems];
|
|
42
|
+
/**
|
|
43
|
+
* Box - justifyContent
|
|
44
|
+
* Convert from enum to const object (ADR-0003)
|
|
45
|
+
*/
|
|
46
|
+
export declare const BoxJustifyContent: {
|
|
47
|
+
readonly Start: "justify-start";
|
|
48
|
+
readonly Center: "justify-center";
|
|
49
|
+
readonly End: "justify-end";
|
|
50
|
+
readonly Between: "justify-between";
|
|
51
|
+
readonly Around: "justify-around";
|
|
52
|
+
readonly Evenly: "justify-evenly";
|
|
53
|
+
};
|
|
54
|
+
export type BoxJustifyContent = (typeof BoxJustifyContent)[keyof typeof BoxJustifyContent];
|
|
55
|
+
/**
|
|
56
|
+
* Box - backgroundColor
|
|
57
|
+
* Convert from enum to const object (ADR-0003)
|
|
58
|
+
*/
|
|
59
|
+
export declare const BoxBackgroundColor: {
|
|
60
|
+
/** Default background color */
|
|
61
|
+
readonly BackgroundDefault: "bg-default";
|
|
62
|
+
/** Alternative background color */
|
|
63
|
+
readonly BackgroundAlternative: "bg-alternative";
|
|
64
|
+
/** Section background color */
|
|
65
|
+
readonly BackgroundSection: "bg-section";
|
|
66
|
+
/** Subsection background color */
|
|
67
|
+
readonly BackgroundSubsection: "bg-subsection";
|
|
68
|
+
/** Muted background color */
|
|
69
|
+
readonly BackgroundMuted: "bg-muted";
|
|
70
|
+
/** Primary default background color */
|
|
71
|
+
readonly PrimaryDefault: "bg-primary-default";
|
|
72
|
+
/** Primary alternative background color */
|
|
73
|
+
readonly PrimaryAlternative: "bg-primary-alternative";
|
|
74
|
+
/** Primary muted background color */
|
|
75
|
+
readonly PrimaryMuted: "bg-primary-muted";
|
|
76
|
+
/** Primary inverse background color */
|
|
77
|
+
readonly PrimaryInverse: "bg-primary-inverse";
|
|
78
|
+
/** Error default background color */
|
|
79
|
+
readonly ErrorDefault: "bg-error-default";
|
|
80
|
+
/** Error alternative background color */
|
|
81
|
+
readonly ErrorAlternative: "bg-error-alternative";
|
|
82
|
+
/** Error muted background color */
|
|
83
|
+
readonly ErrorMuted: "bg-error-muted";
|
|
84
|
+
/** Error inverse background color */
|
|
85
|
+
readonly ErrorInverse: "bg-error-inverse";
|
|
86
|
+
/** Warning default background color */
|
|
87
|
+
readonly WarningDefault: "bg-warning-default";
|
|
88
|
+
/** Warning alternative background color */
|
|
89
|
+
readonly WarningAlternative: "bg-warning-alternative";
|
|
90
|
+
/** Warning muted background color */
|
|
91
|
+
readonly WarningMuted: "bg-warning-muted";
|
|
92
|
+
/** Warning inverse background color */
|
|
93
|
+
readonly WarningInverse: "bg-warning-inverse";
|
|
94
|
+
/** Success default background color */
|
|
95
|
+
readonly SuccessDefault: "bg-success-default";
|
|
96
|
+
/** Success alternative background color */
|
|
97
|
+
readonly SuccessAlternative: "bg-success-alternative";
|
|
98
|
+
/** Success muted background color */
|
|
99
|
+
readonly SuccessMuted: "bg-success-muted";
|
|
100
|
+
/** Success inverse background color */
|
|
101
|
+
readonly SuccessInverse: "bg-success-inverse";
|
|
102
|
+
/** Info default background color */
|
|
103
|
+
readonly InfoDefault: "bg-info-default";
|
|
104
|
+
/** Info muted background color */
|
|
105
|
+
readonly InfoMuted: "bg-info-muted";
|
|
106
|
+
/** Info inverse background color */
|
|
107
|
+
readonly InfoInverse: "bg-info-inverse";
|
|
108
|
+
/** Flask default background color */
|
|
109
|
+
readonly FlaskDefault: "bg-flask-default";
|
|
110
|
+
/** Flask inverse background color */
|
|
111
|
+
readonly FlaskInverse: "bg-flask-inverse";
|
|
112
|
+
/** Overlay alternative background color */
|
|
113
|
+
readonly OverlayAlternative: "bg-overlay-alternative";
|
|
114
|
+
/** Overlay default background color */
|
|
115
|
+
readonly OverlayDefault: "bg-overlay-default";
|
|
116
|
+
/** Overlay inverse background color */
|
|
117
|
+
readonly OverlayInverse: "bg-overlay-inverse";
|
|
118
|
+
/** Transparent background color */
|
|
119
|
+
readonly Transparent: "bg-transparent";
|
|
120
|
+
};
|
|
121
|
+
export type BoxBackgroundColor = (typeof BoxBackgroundColor)[keyof typeof BoxBackgroundColor];
|
|
122
|
+
/**
|
|
123
|
+
* Box - borderColor
|
|
124
|
+
* Convert from enum to const object (ADR-0003)
|
|
125
|
+
*/
|
|
126
|
+
export declare const BoxBorderColor: {
|
|
127
|
+
/** Background default for cut out effect */
|
|
128
|
+
readonly BackgroundDefault: "border-background-default";
|
|
129
|
+
/** Default border color */
|
|
130
|
+
readonly BorderDefault: "border-default";
|
|
131
|
+
/** Muted border color */
|
|
132
|
+
readonly BorderMuted: "border-muted";
|
|
133
|
+
/** Primary default border color */
|
|
134
|
+
readonly PrimaryDefault: "border-primary-default";
|
|
135
|
+
/** Primary alternative border color */
|
|
136
|
+
readonly PrimaryAlternative: "border-primary-alternative";
|
|
137
|
+
/** Primary muted border color */
|
|
138
|
+
readonly PrimaryMuted: "border-primary-muted";
|
|
139
|
+
/** Primary inverse border color */
|
|
140
|
+
readonly PrimaryInverse: "border-primary-inverse";
|
|
141
|
+
/** Error default border color */
|
|
142
|
+
readonly ErrorDefault: "border-error-default";
|
|
143
|
+
/** Error alternative border color */
|
|
144
|
+
readonly ErrorAlternative: "border-error-alternative";
|
|
145
|
+
/** Error muted border color */
|
|
146
|
+
readonly ErrorMuted: "border-error-muted";
|
|
147
|
+
/** Error inverse border color */
|
|
148
|
+
readonly ErrorInverse: "border-error-inverse";
|
|
149
|
+
/** Warning default border color */
|
|
150
|
+
readonly WarningDefault: "border-warning-default";
|
|
151
|
+
/** Warning alternative border color */
|
|
152
|
+
readonly WarningAlternative: "border-warning-alternative";
|
|
153
|
+
/** Warning muted border color */
|
|
154
|
+
readonly WarningMuted: "border-warning-muted";
|
|
155
|
+
/** Warning inverse border color */
|
|
156
|
+
readonly WarningInverse: "border-warning-inverse";
|
|
157
|
+
/** Success default border color */
|
|
158
|
+
readonly SuccessDefault: "border-success-default";
|
|
159
|
+
/** Success alternative border color */
|
|
160
|
+
readonly SuccessAlternative: "border-success-alternative";
|
|
161
|
+
/** Success muted border color */
|
|
162
|
+
readonly SuccessMuted: "border-success-muted";
|
|
163
|
+
/** Success inverse border color */
|
|
164
|
+
readonly SuccessInverse: "border-success-inverse";
|
|
165
|
+
/** Info default border color */
|
|
166
|
+
readonly InfoDefault: "border-info-default";
|
|
167
|
+
/** Info alternative border color */
|
|
168
|
+
readonly InfoAlternative: "border-info-alternative";
|
|
169
|
+
/** Info muted border color */
|
|
170
|
+
readonly InfoMuted: "border-info-muted";
|
|
171
|
+
/** Info inverse border color */
|
|
172
|
+
readonly InfoInverse: "border-info-inverse";
|
|
173
|
+
/** Flask default border color */
|
|
174
|
+
readonly FlaskDefault: "border-flask-default";
|
|
175
|
+
/** Flask inverse border color */
|
|
176
|
+
readonly FlaskInverse: "border-flask-inverse";
|
|
177
|
+
/** Overlay alternative border color */
|
|
178
|
+
readonly OverlayAlternative: "border-overlay-alternative";
|
|
179
|
+
/** Overlay default border color */
|
|
180
|
+
readonly OverlayDefault: "border-overlay-default";
|
|
181
|
+
/** Overlay inverse border color */
|
|
182
|
+
readonly OverlayInverse: "border-overlay-inverse";
|
|
183
|
+
/** Transparent border color */
|
|
184
|
+
readonly Transparent: "border-transparent";
|
|
185
|
+
};
|
|
186
|
+
export type BoxBorderColor = (typeof BoxBorderColor)[keyof typeof BoxBorderColor];
|
|
187
|
+
/**
|
|
188
|
+
* Box component shared props (ADR-0004)
|
|
189
|
+
* Platform-independent properties shared across React and React Native.
|
|
190
|
+
*/
|
|
191
|
+
export type BoxPropsShared = {
|
|
192
|
+
/**
|
|
193
|
+
* The flex-direction style of the component.
|
|
194
|
+
*/
|
|
195
|
+
flexDirection?: BoxFlexDirection;
|
|
196
|
+
/**
|
|
197
|
+
* The flex-wrap style of the component.
|
|
198
|
+
*/
|
|
199
|
+
flexWrap?: BoxFlexWrap;
|
|
200
|
+
/**
|
|
201
|
+
* The gap between the component's children.
|
|
202
|
+
* Use 0-12 for a gap of 0px-48px.
|
|
203
|
+
*/
|
|
204
|
+
gap?: BoxSpacing;
|
|
205
|
+
/**
|
|
206
|
+
* The align-items style of the component.
|
|
207
|
+
*/
|
|
208
|
+
alignItems?: BoxAlignItems;
|
|
209
|
+
/**
|
|
210
|
+
* The justify-content style of the component.
|
|
211
|
+
*/
|
|
212
|
+
justifyContent?: BoxJustifyContent;
|
|
213
|
+
/**
|
|
214
|
+
* The margin of the component.
|
|
215
|
+
* Use 0-12 for margin of 0px-48px.
|
|
216
|
+
*/
|
|
217
|
+
margin?: BoxSpacing;
|
|
218
|
+
/**
|
|
219
|
+
* The top margin of the component.
|
|
220
|
+
* Use 0-12 for margin of 0px-48px.
|
|
221
|
+
*/
|
|
222
|
+
marginTop?: BoxSpacing;
|
|
223
|
+
/**
|
|
224
|
+
* The right margin of the component.
|
|
225
|
+
* Use 0-12 for margin of 0px-48px.
|
|
226
|
+
*/
|
|
227
|
+
marginRight?: BoxSpacing;
|
|
228
|
+
/**
|
|
229
|
+
* The bottom margin of the component.
|
|
230
|
+
* Use 0-12 for margin of 0px-48px.
|
|
231
|
+
*/
|
|
232
|
+
marginBottom?: BoxSpacing;
|
|
233
|
+
/**
|
|
234
|
+
* The left margin of the component.
|
|
235
|
+
* Use 0-12 for margin of 0px-48px.
|
|
236
|
+
*/
|
|
237
|
+
marginLeft?: BoxSpacing;
|
|
238
|
+
/**
|
|
239
|
+
* The horizontal margin of the component.
|
|
240
|
+
* Use 0-12 for margin of 0px-48px.
|
|
241
|
+
*/
|
|
242
|
+
marginHorizontal?: BoxSpacing;
|
|
243
|
+
/**
|
|
244
|
+
* The vertical margin of the component.
|
|
245
|
+
* Use 0-12 for margin of 0px-48px.
|
|
246
|
+
*/
|
|
247
|
+
marginVertical?: BoxSpacing;
|
|
248
|
+
/**
|
|
249
|
+
* The padding of the component.
|
|
250
|
+
* Use 0-12 for padding of 0px-48px.
|
|
251
|
+
*/
|
|
252
|
+
padding?: BoxSpacing;
|
|
253
|
+
/**
|
|
254
|
+
* The top padding of the component.
|
|
255
|
+
* Use 0-12 for padding of 0px-48px.
|
|
256
|
+
*/
|
|
257
|
+
paddingTop?: BoxSpacing;
|
|
258
|
+
/**
|
|
259
|
+
* The right padding of the component.
|
|
260
|
+
* Use 0-12 for padding of 0px-48px.
|
|
261
|
+
*/
|
|
262
|
+
paddingRight?: BoxSpacing;
|
|
263
|
+
/**
|
|
264
|
+
* The bottom padding of the component.
|
|
265
|
+
* Use 0-12 for padding of 0px-48px.
|
|
266
|
+
*/
|
|
267
|
+
paddingBottom?: BoxSpacing;
|
|
268
|
+
/**
|
|
269
|
+
* The left padding of the component.
|
|
270
|
+
* Use 0-12 for padding of 0px-48px.
|
|
271
|
+
*/
|
|
272
|
+
paddingLeft?: BoxSpacing;
|
|
273
|
+
/**
|
|
274
|
+
* The horizontal padding of the component.
|
|
275
|
+
* Use 0-12 for padding of 0px-48px.
|
|
276
|
+
*/
|
|
277
|
+
paddingHorizontal?: BoxSpacing;
|
|
278
|
+
/**
|
|
279
|
+
* The vertical padding of the component.
|
|
280
|
+
* Use 0-12 for padding of 0px-48px.
|
|
281
|
+
*/
|
|
282
|
+
paddingVertical?: BoxSpacing;
|
|
283
|
+
/**
|
|
284
|
+
* The border width of the component.
|
|
285
|
+
* Use 0, 1, 2, 4, or 8 for border width of 0px, 1px, 2px, 4px, or 8px.
|
|
286
|
+
*/
|
|
287
|
+
borderWidth?: BoxBorderWidth;
|
|
288
|
+
/**
|
|
289
|
+
* The border color of the component.
|
|
290
|
+
*/
|
|
291
|
+
borderColor?: BoxBorderColor;
|
|
292
|
+
/**
|
|
293
|
+
* The background color of the component.
|
|
294
|
+
*/
|
|
295
|
+
backgroundColor?: BoxBackgroundColor;
|
|
296
|
+
};
|
|
297
|
+
//# sourceMappingURL=Box.types.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Box.types.d.cts","sourceRoot":"","sources":["../../../src/types/Box/Box.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Box - all spacing-related props
|
|
3
|
+
*/
|
|
4
|
+
export type BoxSpacing = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
5
|
+
/**
|
|
6
|
+
* Box - border width values (only valid Tailwind CSS border width utilities)
|
|
7
|
+
*/
|
|
8
|
+
export type BoxBorderWidth = 0 | 1 | 2 | 4 | 8;
|
|
9
|
+
/**
|
|
10
|
+
* Box - flexDirection
|
|
11
|
+
* Convert from enum to const object (ADR-0003)
|
|
12
|
+
*/
|
|
13
|
+
export declare const BoxFlexDirection: {
|
|
14
|
+
readonly Row: "flex-row";
|
|
15
|
+
readonly RowReverse: "flex-row-reverse";
|
|
16
|
+
readonly Column: "flex-col";
|
|
17
|
+
readonly ColumnReverse: "flex-col-reverse";
|
|
18
|
+
};
|
|
19
|
+
export type BoxFlexDirection = (typeof BoxFlexDirection)[keyof typeof BoxFlexDirection];
|
|
20
|
+
/**
|
|
21
|
+
* Box - flexWrap
|
|
22
|
+
* Convert from enum to const object (ADR-0003)
|
|
23
|
+
*/
|
|
24
|
+
export declare const BoxFlexWrap: {
|
|
25
|
+
readonly NoWrap: "flex-nowrap";
|
|
26
|
+
readonly Wrap: "flex-wrap";
|
|
27
|
+
readonly WrapReverse: "flex-wrap-reverse";
|
|
28
|
+
};
|
|
29
|
+
export type BoxFlexWrap = (typeof BoxFlexWrap)[keyof typeof BoxFlexWrap];
|
|
30
|
+
/**
|
|
31
|
+
* Box - alignItems
|
|
32
|
+
* Convert from enum to const object (ADR-0003)
|
|
33
|
+
*/
|
|
34
|
+
export declare const BoxAlignItems: {
|
|
35
|
+
readonly Start: "items-start";
|
|
36
|
+
readonly Center: "items-center";
|
|
37
|
+
readonly End: "items-end";
|
|
38
|
+
readonly Stretch: "items-stretch";
|
|
39
|
+
readonly Baseline: "items-baseline";
|
|
40
|
+
};
|
|
41
|
+
export type BoxAlignItems = (typeof BoxAlignItems)[keyof typeof BoxAlignItems];
|
|
42
|
+
/**
|
|
43
|
+
* Box - justifyContent
|
|
44
|
+
* Convert from enum to const object (ADR-0003)
|
|
45
|
+
*/
|
|
46
|
+
export declare const BoxJustifyContent: {
|
|
47
|
+
readonly Start: "justify-start";
|
|
48
|
+
readonly Center: "justify-center";
|
|
49
|
+
readonly End: "justify-end";
|
|
50
|
+
readonly Between: "justify-between";
|
|
51
|
+
readonly Around: "justify-around";
|
|
52
|
+
readonly Evenly: "justify-evenly";
|
|
53
|
+
};
|
|
54
|
+
export type BoxJustifyContent = (typeof BoxJustifyContent)[keyof typeof BoxJustifyContent];
|
|
55
|
+
/**
|
|
56
|
+
* Box - backgroundColor
|
|
57
|
+
* Convert from enum to const object (ADR-0003)
|
|
58
|
+
*/
|
|
59
|
+
export declare const BoxBackgroundColor: {
|
|
60
|
+
/** Default background color */
|
|
61
|
+
readonly BackgroundDefault: "bg-default";
|
|
62
|
+
/** Alternative background color */
|
|
63
|
+
readonly BackgroundAlternative: "bg-alternative";
|
|
64
|
+
/** Section background color */
|
|
65
|
+
readonly BackgroundSection: "bg-section";
|
|
66
|
+
/** Subsection background color */
|
|
67
|
+
readonly BackgroundSubsection: "bg-subsection";
|
|
68
|
+
/** Muted background color */
|
|
69
|
+
readonly BackgroundMuted: "bg-muted";
|
|
70
|
+
/** Primary default background color */
|
|
71
|
+
readonly PrimaryDefault: "bg-primary-default";
|
|
72
|
+
/** Primary alternative background color */
|
|
73
|
+
readonly PrimaryAlternative: "bg-primary-alternative";
|
|
74
|
+
/** Primary muted background color */
|
|
75
|
+
readonly PrimaryMuted: "bg-primary-muted";
|
|
76
|
+
/** Primary inverse background color */
|
|
77
|
+
readonly PrimaryInverse: "bg-primary-inverse";
|
|
78
|
+
/** Error default background color */
|
|
79
|
+
readonly ErrorDefault: "bg-error-default";
|
|
80
|
+
/** Error alternative background color */
|
|
81
|
+
readonly ErrorAlternative: "bg-error-alternative";
|
|
82
|
+
/** Error muted background color */
|
|
83
|
+
readonly ErrorMuted: "bg-error-muted";
|
|
84
|
+
/** Error inverse background color */
|
|
85
|
+
readonly ErrorInverse: "bg-error-inverse";
|
|
86
|
+
/** Warning default background color */
|
|
87
|
+
readonly WarningDefault: "bg-warning-default";
|
|
88
|
+
/** Warning alternative background color */
|
|
89
|
+
readonly WarningAlternative: "bg-warning-alternative";
|
|
90
|
+
/** Warning muted background color */
|
|
91
|
+
readonly WarningMuted: "bg-warning-muted";
|
|
92
|
+
/** Warning inverse background color */
|
|
93
|
+
readonly WarningInverse: "bg-warning-inverse";
|
|
94
|
+
/** Success default background color */
|
|
95
|
+
readonly SuccessDefault: "bg-success-default";
|
|
96
|
+
/** Success alternative background color */
|
|
97
|
+
readonly SuccessAlternative: "bg-success-alternative";
|
|
98
|
+
/** Success muted background color */
|
|
99
|
+
readonly SuccessMuted: "bg-success-muted";
|
|
100
|
+
/** Success inverse background color */
|
|
101
|
+
readonly SuccessInverse: "bg-success-inverse";
|
|
102
|
+
/** Info default background color */
|
|
103
|
+
readonly InfoDefault: "bg-info-default";
|
|
104
|
+
/** Info muted background color */
|
|
105
|
+
readonly InfoMuted: "bg-info-muted";
|
|
106
|
+
/** Info inverse background color */
|
|
107
|
+
readonly InfoInverse: "bg-info-inverse";
|
|
108
|
+
/** Flask default background color */
|
|
109
|
+
readonly FlaskDefault: "bg-flask-default";
|
|
110
|
+
/** Flask inverse background color */
|
|
111
|
+
readonly FlaskInverse: "bg-flask-inverse";
|
|
112
|
+
/** Overlay alternative background color */
|
|
113
|
+
readonly OverlayAlternative: "bg-overlay-alternative";
|
|
114
|
+
/** Overlay default background color */
|
|
115
|
+
readonly OverlayDefault: "bg-overlay-default";
|
|
116
|
+
/** Overlay inverse background color */
|
|
117
|
+
readonly OverlayInverse: "bg-overlay-inverse";
|
|
118
|
+
/** Transparent background color */
|
|
119
|
+
readonly Transparent: "bg-transparent";
|
|
120
|
+
};
|
|
121
|
+
export type BoxBackgroundColor = (typeof BoxBackgroundColor)[keyof typeof BoxBackgroundColor];
|
|
122
|
+
/**
|
|
123
|
+
* Box - borderColor
|
|
124
|
+
* Convert from enum to const object (ADR-0003)
|
|
125
|
+
*/
|
|
126
|
+
export declare const BoxBorderColor: {
|
|
127
|
+
/** Background default for cut out effect */
|
|
128
|
+
readonly BackgroundDefault: "border-background-default";
|
|
129
|
+
/** Default border color */
|
|
130
|
+
readonly BorderDefault: "border-default";
|
|
131
|
+
/** Muted border color */
|
|
132
|
+
readonly BorderMuted: "border-muted";
|
|
133
|
+
/** Primary default border color */
|
|
134
|
+
readonly PrimaryDefault: "border-primary-default";
|
|
135
|
+
/** Primary alternative border color */
|
|
136
|
+
readonly PrimaryAlternative: "border-primary-alternative";
|
|
137
|
+
/** Primary muted border color */
|
|
138
|
+
readonly PrimaryMuted: "border-primary-muted";
|
|
139
|
+
/** Primary inverse border color */
|
|
140
|
+
readonly PrimaryInverse: "border-primary-inverse";
|
|
141
|
+
/** Error default border color */
|
|
142
|
+
readonly ErrorDefault: "border-error-default";
|
|
143
|
+
/** Error alternative border color */
|
|
144
|
+
readonly ErrorAlternative: "border-error-alternative";
|
|
145
|
+
/** Error muted border color */
|
|
146
|
+
readonly ErrorMuted: "border-error-muted";
|
|
147
|
+
/** Error inverse border color */
|
|
148
|
+
readonly ErrorInverse: "border-error-inverse";
|
|
149
|
+
/** Warning default border color */
|
|
150
|
+
readonly WarningDefault: "border-warning-default";
|
|
151
|
+
/** Warning alternative border color */
|
|
152
|
+
readonly WarningAlternative: "border-warning-alternative";
|
|
153
|
+
/** Warning muted border color */
|
|
154
|
+
readonly WarningMuted: "border-warning-muted";
|
|
155
|
+
/** Warning inverse border color */
|
|
156
|
+
readonly WarningInverse: "border-warning-inverse";
|
|
157
|
+
/** Success default border color */
|
|
158
|
+
readonly SuccessDefault: "border-success-default";
|
|
159
|
+
/** Success alternative border color */
|
|
160
|
+
readonly SuccessAlternative: "border-success-alternative";
|
|
161
|
+
/** Success muted border color */
|
|
162
|
+
readonly SuccessMuted: "border-success-muted";
|
|
163
|
+
/** Success inverse border color */
|
|
164
|
+
readonly SuccessInverse: "border-success-inverse";
|
|
165
|
+
/** Info default border color */
|
|
166
|
+
readonly InfoDefault: "border-info-default";
|
|
167
|
+
/** Info alternative border color */
|
|
168
|
+
readonly InfoAlternative: "border-info-alternative";
|
|
169
|
+
/** Info muted border color */
|
|
170
|
+
readonly InfoMuted: "border-info-muted";
|
|
171
|
+
/** Info inverse border color */
|
|
172
|
+
readonly InfoInverse: "border-info-inverse";
|
|
173
|
+
/** Flask default border color */
|
|
174
|
+
readonly FlaskDefault: "border-flask-default";
|
|
175
|
+
/** Flask inverse border color */
|
|
176
|
+
readonly FlaskInverse: "border-flask-inverse";
|
|
177
|
+
/** Overlay alternative border color */
|
|
178
|
+
readonly OverlayAlternative: "border-overlay-alternative";
|
|
179
|
+
/** Overlay default border color */
|
|
180
|
+
readonly OverlayDefault: "border-overlay-default";
|
|
181
|
+
/** Overlay inverse border color */
|
|
182
|
+
readonly OverlayInverse: "border-overlay-inverse";
|
|
183
|
+
/** Transparent border color */
|
|
184
|
+
readonly Transparent: "border-transparent";
|
|
185
|
+
};
|
|
186
|
+
export type BoxBorderColor = (typeof BoxBorderColor)[keyof typeof BoxBorderColor];
|
|
187
|
+
/**
|
|
188
|
+
* Box component shared props (ADR-0004)
|
|
189
|
+
* Platform-independent properties shared across React and React Native.
|
|
190
|
+
*/
|
|
191
|
+
export type BoxPropsShared = {
|
|
192
|
+
/**
|
|
193
|
+
* The flex-direction style of the component.
|
|
194
|
+
*/
|
|
195
|
+
flexDirection?: BoxFlexDirection;
|
|
196
|
+
/**
|
|
197
|
+
* The flex-wrap style of the component.
|
|
198
|
+
*/
|
|
199
|
+
flexWrap?: BoxFlexWrap;
|
|
200
|
+
/**
|
|
201
|
+
* The gap between the component's children.
|
|
202
|
+
* Use 0-12 for a gap of 0px-48px.
|
|
203
|
+
*/
|
|
204
|
+
gap?: BoxSpacing;
|
|
205
|
+
/**
|
|
206
|
+
* The align-items style of the component.
|
|
207
|
+
*/
|
|
208
|
+
alignItems?: BoxAlignItems;
|
|
209
|
+
/**
|
|
210
|
+
* The justify-content style of the component.
|
|
211
|
+
*/
|
|
212
|
+
justifyContent?: BoxJustifyContent;
|
|
213
|
+
/**
|
|
214
|
+
* The margin of the component.
|
|
215
|
+
* Use 0-12 for margin of 0px-48px.
|
|
216
|
+
*/
|
|
217
|
+
margin?: BoxSpacing;
|
|
218
|
+
/**
|
|
219
|
+
* The top margin of the component.
|
|
220
|
+
* Use 0-12 for margin of 0px-48px.
|
|
221
|
+
*/
|
|
222
|
+
marginTop?: BoxSpacing;
|
|
223
|
+
/**
|
|
224
|
+
* The right margin of the component.
|
|
225
|
+
* Use 0-12 for margin of 0px-48px.
|
|
226
|
+
*/
|
|
227
|
+
marginRight?: BoxSpacing;
|
|
228
|
+
/**
|
|
229
|
+
* The bottom margin of the component.
|
|
230
|
+
* Use 0-12 for margin of 0px-48px.
|
|
231
|
+
*/
|
|
232
|
+
marginBottom?: BoxSpacing;
|
|
233
|
+
/**
|
|
234
|
+
* The left margin of the component.
|
|
235
|
+
* Use 0-12 for margin of 0px-48px.
|
|
236
|
+
*/
|
|
237
|
+
marginLeft?: BoxSpacing;
|
|
238
|
+
/**
|
|
239
|
+
* The horizontal margin of the component.
|
|
240
|
+
* Use 0-12 for margin of 0px-48px.
|
|
241
|
+
*/
|
|
242
|
+
marginHorizontal?: BoxSpacing;
|
|
243
|
+
/**
|
|
244
|
+
* The vertical margin of the component.
|
|
245
|
+
* Use 0-12 for margin of 0px-48px.
|
|
246
|
+
*/
|
|
247
|
+
marginVertical?: BoxSpacing;
|
|
248
|
+
/**
|
|
249
|
+
* The padding of the component.
|
|
250
|
+
* Use 0-12 for padding of 0px-48px.
|
|
251
|
+
*/
|
|
252
|
+
padding?: BoxSpacing;
|
|
253
|
+
/**
|
|
254
|
+
* The top padding of the component.
|
|
255
|
+
* Use 0-12 for padding of 0px-48px.
|
|
256
|
+
*/
|
|
257
|
+
paddingTop?: BoxSpacing;
|
|
258
|
+
/**
|
|
259
|
+
* The right padding of the component.
|
|
260
|
+
* Use 0-12 for padding of 0px-48px.
|
|
261
|
+
*/
|
|
262
|
+
paddingRight?: BoxSpacing;
|
|
263
|
+
/**
|
|
264
|
+
* The bottom padding of the component.
|
|
265
|
+
* Use 0-12 for padding of 0px-48px.
|
|
266
|
+
*/
|
|
267
|
+
paddingBottom?: BoxSpacing;
|
|
268
|
+
/**
|
|
269
|
+
* The left padding of the component.
|
|
270
|
+
* Use 0-12 for padding of 0px-48px.
|
|
271
|
+
*/
|
|
272
|
+
paddingLeft?: BoxSpacing;
|
|
273
|
+
/**
|
|
274
|
+
* The horizontal padding of the component.
|
|
275
|
+
* Use 0-12 for padding of 0px-48px.
|
|
276
|
+
*/
|
|
277
|
+
paddingHorizontal?: BoxSpacing;
|
|
278
|
+
/**
|
|
279
|
+
* The vertical padding of the component.
|
|
280
|
+
* Use 0-12 for padding of 0px-48px.
|
|
281
|
+
*/
|
|
282
|
+
paddingVertical?: BoxSpacing;
|
|
283
|
+
/**
|
|
284
|
+
* The border width of the component.
|
|
285
|
+
* Use 0, 1, 2, 4, or 8 for border width of 0px, 1px, 2px, 4px, or 8px.
|
|
286
|
+
*/
|
|
287
|
+
borderWidth?: BoxBorderWidth;
|
|
288
|
+
/**
|
|
289
|
+
* The border color of the component.
|
|
290
|
+
*/
|
|
291
|
+
borderColor?: BoxBorderColor;
|
|
292
|
+
/**
|
|
293
|
+
* The background color of the component.
|
|
294
|
+
*/
|
|
295
|
+
backgroundColor?: BoxBackgroundColor;
|
|
296
|
+
};
|
|
297
|
+
//# sourceMappingURL=Box.types.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Box.types.d.mts","sourceRoot":"","sources":["../../../src/types/Box/Box.types.ts"],"names":[],"mappings":"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"}
|