@atlaskit/primitives 0.1.0 → 0.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/CHANGELOG.md +13 -0
- package/dist/cjs/components/box.js +80 -6
- package/dist/cjs/components/inline.partial.js +22 -46
- package/dist/cjs/components/internal/base-box.partial.js +822 -0
- package/dist/cjs/components/stack.partial.js +22 -46
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/box.js +75 -1
- package/dist/es2019/components/inline.partial.js +20 -20
- package/dist/es2019/components/internal/base-box.partial.js +839 -0
- package/dist/es2019/components/stack.partial.js +20 -20
- package/dist/es2019/index.js +2 -2
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/box.js +77 -1
- package/dist/esm/components/inline.partial.js +21 -46
- package/dist/esm/components/internal/base-box.partial.js +817 -0
- package/dist/esm/components/stack.partial.js +21 -46
- package/dist/esm/index.js +2 -2
- package/dist/esm/version.json +1 -1
- package/dist/types/components/box.d.ts +10 -1
- package/dist/types/components/inline.partial.d.ts +18 -16
- package/dist/types/components/internal/base-box.partial.d.ts +483 -0
- package/dist/types/components/stack.partial.d.ts +18 -16
- package/dist/types/components/types.d.ts +8 -1
- package/dist/types/index.d.ts +3 -3
- package/package.json +2 -3
- package/report.api.md +505 -46
- package/scripts/__tests__/__snapshots__/codegen.test.tsx.snap +204 -0
- package/scripts/codegen-styles.tsx +31 -16
- package/scripts/color-codegen-template.tsx +10 -7
- package/scripts/dimension-codegen-template.tsx +14 -2
- package/scripts/misc-codegen-template.tsx +1 -1
- package/scripts/spacing-codegen-template.tsx +37 -33
- package/tmp/api-report-tmp.d.ts +466 -46
- package/dist/cjs/components/internal/box.partial.js +0 -605
- package/dist/es2019/components/internal/box.partial.js +0 -597
- package/dist/esm/components/internal/box.partial.js +0 -600
- package/dist/types/components/internal/box.partial.d.ts +0 -348
|
@@ -1,348 +0,0 @@
|
|
|
1
|
-
/** @jsx jsx */
|
|
2
|
-
import { ComponentPropsWithoutRef, ComponentPropsWithRef, ElementType, FC, ReactElement, ReactNode } from 'react';
|
|
3
|
-
import { Layer } from '../../constants';
|
|
4
|
-
import type { BasePrimitiveProps } from '../types';
|
|
5
|
-
export declare type BoxProps<T extends ElementType = 'div'> = Omit<ComponentPropsWithoutRef<T>, 'as' | 'className' | 'style'> & BasePrimitiveProps & BoxPropsBase<T>;
|
|
6
|
-
declare type BoxPropsBase<T extends ElementType> = {
|
|
7
|
-
/**
|
|
8
|
-
* The DOM element to render as the Box. Defaults to `div`.
|
|
9
|
-
*/
|
|
10
|
-
as?: T;
|
|
11
|
-
/**
|
|
12
|
-
* Elements to be rendered inside the Box.
|
|
13
|
-
*/
|
|
14
|
-
children?: ReactNode;
|
|
15
|
-
/**
|
|
16
|
-
* The HTML className attribute.
|
|
17
|
-
*
|
|
18
|
-
* Before using this prop please ensure:
|
|
19
|
-
* - The styles cannot otherwise be achieved through `Box` directly.
|
|
20
|
-
* - The use case needs custom styles that cannot be designed or implemented differently
|
|
21
|
-
*
|
|
22
|
-
* Ensure you're using the `@atlaskit/eslint-plugin-design-system` with this prop to prevent unbounded usage.
|
|
23
|
-
*
|
|
24
|
-
* @see `@atlaskit/eslint-plugin-design-system`
|
|
25
|
-
*/
|
|
26
|
-
className?: string;
|
|
27
|
-
/**
|
|
28
|
-
* Token representing background color with a fallback.
|
|
29
|
-
*/
|
|
30
|
-
backgroundColor?: BackgroundColor;
|
|
31
|
-
/**
|
|
32
|
-
* Token representing shadow with a fallback
|
|
33
|
-
*/
|
|
34
|
-
shadow?: Shadow;
|
|
35
|
-
/**
|
|
36
|
-
* Defines border style.
|
|
37
|
-
*/
|
|
38
|
-
borderStyle?: BorderStyle;
|
|
39
|
-
/**
|
|
40
|
-
* Defines border width.
|
|
41
|
-
*/
|
|
42
|
-
borderWidth?: BorderWidth;
|
|
43
|
-
/**
|
|
44
|
-
* Token representing border color with a fallback.
|
|
45
|
-
*/
|
|
46
|
-
borderColor?: BorderColor;
|
|
47
|
-
/**
|
|
48
|
-
* Defines border radius.
|
|
49
|
-
*/
|
|
50
|
-
borderRadius?: BorderRadius;
|
|
51
|
-
/**
|
|
52
|
-
* Used for providing a z-index.
|
|
53
|
-
*/
|
|
54
|
-
layer?: Layer;
|
|
55
|
-
/**
|
|
56
|
-
* Defines the main axis direction.
|
|
57
|
-
* @deprecated
|
|
58
|
-
*/
|
|
59
|
-
flexDirection?: FlexDirection;
|
|
60
|
-
/**
|
|
61
|
-
* Used to align children along the cross axis.
|
|
62
|
-
* @deprecated
|
|
63
|
-
*/
|
|
64
|
-
alignItems?: FlexAlignItems;
|
|
65
|
-
/**
|
|
66
|
-
* Used to align children along the main axis.
|
|
67
|
-
* @deprecated
|
|
68
|
-
*/
|
|
69
|
-
justifyContent?: FlexJustifyContent;
|
|
70
|
-
/**
|
|
71
|
-
* Defines what happens if content overflows the box.
|
|
72
|
-
*/
|
|
73
|
-
overflow?: Overflow;
|
|
74
|
-
/**
|
|
75
|
-
* Shorthand for `paddingBlock` and `paddingInline` together.
|
|
76
|
-
*
|
|
77
|
-
* @see paddingBlock
|
|
78
|
-
* @see paddingInline
|
|
79
|
-
*/
|
|
80
|
-
padding?: Padding;
|
|
81
|
-
/**
|
|
82
|
-
* Token representing CSS `paddingBlock`.
|
|
83
|
-
*/
|
|
84
|
-
paddingBlock?: PaddingBlock;
|
|
85
|
-
/**
|
|
86
|
-
* Token representing CSS `paddingInline`.
|
|
87
|
-
*/
|
|
88
|
-
paddingInline?: PaddingInline;
|
|
89
|
-
/**
|
|
90
|
-
* Token representing width.
|
|
91
|
-
* @experimental The existing tokens will be replaced to better reflect dimensions.
|
|
92
|
-
*/
|
|
93
|
-
width?: Width;
|
|
94
|
-
/**
|
|
95
|
-
* Token representing height.
|
|
96
|
-
* @experimental The existing tokens will be replaced to better reflect dimensions.
|
|
97
|
-
*/
|
|
98
|
-
height?: Height;
|
|
99
|
-
/**
|
|
100
|
-
* Defines display type and layout. Defaults to `flex`.
|
|
101
|
-
*/
|
|
102
|
-
display?: Display;
|
|
103
|
-
/**
|
|
104
|
-
* CSS position property.
|
|
105
|
-
*/
|
|
106
|
-
position?: Position;
|
|
107
|
-
ref?: ComponentPropsWithRef<T>['ref'];
|
|
108
|
-
};
|
|
109
|
-
declare type BoxComponent<T extends ElementType = 'div'> = (<T extends ElementType = 'div'>(props: BoxProps<T>) => ReactElement | null) & FC<BoxProps<T>>;
|
|
110
|
-
/**
|
|
111
|
-
* __Box__
|
|
112
|
-
*
|
|
113
|
-
* Box is a primitive component that has the design decisions of the Atlassian Design System baked in.
|
|
114
|
-
* Renders a `div` by default.
|
|
115
|
-
*
|
|
116
|
-
* @internal
|
|
117
|
-
*/
|
|
118
|
-
export declare const Box: BoxComponent;
|
|
119
|
-
export default Box;
|
|
120
|
-
declare type BorderStyle = keyof typeof borderStyleMap;
|
|
121
|
-
declare const borderStyleMap: {
|
|
122
|
-
none: import("@emotion/react").SerializedStyles;
|
|
123
|
-
solid: import("@emotion/react").SerializedStyles;
|
|
124
|
-
dashed: import("@emotion/react").SerializedStyles;
|
|
125
|
-
dotted: import("@emotion/react").SerializedStyles;
|
|
126
|
-
};
|
|
127
|
-
declare type BorderWidth = keyof typeof borderWidthMap;
|
|
128
|
-
declare const borderWidthMap: {
|
|
129
|
-
'0px': import("@emotion/react").SerializedStyles;
|
|
130
|
-
'1px': import("@emotion/react").SerializedStyles;
|
|
131
|
-
'2px': import("@emotion/react").SerializedStyles;
|
|
132
|
-
'3px': import("@emotion/react").SerializedStyles;
|
|
133
|
-
};
|
|
134
|
-
declare type BorderRadius = keyof typeof borderRadiusMap;
|
|
135
|
-
declare const borderRadiusMap: {
|
|
136
|
-
normal: import("@emotion/react").SerializedStyles;
|
|
137
|
-
rounded: import("@emotion/react").SerializedStyles;
|
|
138
|
-
badge: import("@emotion/react").SerializedStyles;
|
|
139
|
-
};
|
|
140
|
-
/**
|
|
141
|
-
* @experimental - this is likely to be removed
|
|
142
|
-
*/
|
|
143
|
-
declare type FlexDirection = keyof typeof flexDirectionMap;
|
|
144
|
-
declare const flexDirectionMap: {
|
|
145
|
-
column: import("@emotion/react").SerializedStyles;
|
|
146
|
-
row: import("@emotion/react").SerializedStyles;
|
|
147
|
-
};
|
|
148
|
-
/**
|
|
149
|
-
* @experimental - this is likely to be removed
|
|
150
|
-
*/
|
|
151
|
-
declare type FlexAlignItems = keyof typeof flexAlignItemsMap;
|
|
152
|
-
declare const flexAlignItemsMap: {
|
|
153
|
-
center: import("@emotion/react").SerializedStyles;
|
|
154
|
-
baseline: import("@emotion/react").SerializedStyles;
|
|
155
|
-
flexStart: import("@emotion/react").SerializedStyles;
|
|
156
|
-
flexEnd: import("@emotion/react").SerializedStyles;
|
|
157
|
-
start: import("@emotion/react").SerializedStyles;
|
|
158
|
-
end: import("@emotion/react").SerializedStyles;
|
|
159
|
-
};
|
|
160
|
-
/**
|
|
161
|
-
* @experimental - this is likely to be removed
|
|
162
|
-
*/
|
|
163
|
-
declare type FlexJustifyContent = keyof typeof flexJustifyContentMap;
|
|
164
|
-
declare const flexJustifyContentMap: {
|
|
165
|
-
center: import("@emotion/react").SerializedStyles;
|
|
166
|
-
flexStart: import("@emotion/react").SerializedStyles;
|
|
167
|
-
flexEnd: import("@emotion/react").SerializedStyles;
|
|
168
|
-
start: import("@emotion/react").SerializedStyles;
|
|
169
|
-
end: import("@emotion/react").SerializedStyles;
|
|
170
|
-
};
|
|
171
|
-
declare type Display = keyof typeof displayMap;
|
|
172
|
-
declare const displayMap: {
|
|
173
|
-
block: import("@emotion/react").SerializedStyles;
|
|
174
|
-
inline: import("@emotion/react").SerializedStyles;
|
|
175
|
-
flex: import("@emotion/react").SerializedStyles;
|
|
176
|
-
inlineFlex: import("@emotion/react").SerializedStyles;
|
|
177
|
-
inlineBlock: import("@emotion/react").SerializedStyles;
|
|
178
|
-
};
|
|
179
|
-
declare type Position = keyof typeof positionMap;
|
|
180
|
-
declare const positionMap: {
|
|
181
|
-
absolute: import("@emotion/react").SerializedStyles;
|
|
182
|
-
fixed: import("@emotion/react").SerializedStyles;
|
|
183
|
-
relative: import("@emotion/react").SerializedStyles;
|
|
184
|
-
static: import("@emotion/react").SerializedStyles;
|
|
185
|
-
};
|
|
186
|
-
declare type Overflow = keyof typeof overflowMap;
|
|
187
|
-
declare const overflowMap: {
|
|
188
|
-
auto: import("@emotion/react").SerializedStyles;
|
|
189
|
-
hidden: import("@emotion/react").SerializedStyles;
|
|
190
|
-
};
|
|
191
|
-
/**
|
|
192
|
-
* THIS SECTION WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
193
|
-
* @codegen <<SignedSource::327e769aaa3da9422a919a0ca9490070>>
|
|
194
|
-
* @codegenId dimensions
|
|
195
|
-
* @codegenCommand yarn codegen-styles
|
|
196
|
-
* @codegenParams ["width", "height"]
|
|
197
|
-
*/
|
|
198
|
-
declare const widthMap: {
|
|
199
|
-
'100%': import("@emotion/react").SerializedStyles;
|
|
200
|
-
'size.100': import("@emotion/react").SerializedStyles;
|
|
201
|
-
'size.1000': import("@emotion/react").SerializedStyles;
|
|
202
|
-
'size.200': import("@emotion/react").SerializedStyles;
|
|
203
|
-
'size.300': import("@emotion/react").SerializedStyles;
|
|
204
|
-
'size.400': import("@emotion/react").SerializedStyles;
|
|
205
|
-
'size.500': import("@emotion/react").SerializedStyles;
|
|
206
|
-
'size.600': import("@emotion/react").SerializedStyles;
|
|
207
|
-
};
|
|
208
|
-
export declare type Width = keyof typeof widthMap;
|
|
209
|
-
declare const heightMap: {
|
|
210
|
-
'100%': import("@emotion/react").SerializedStyles;
|
|
211
|
-
'size.100': import("@emotion/react").SerializedStyles;
|
|
212
|
-
'size.1000': import("@emotion/react").SerializedStyles;
|
|
213
|
-
'size.200': import("@emotion/react").SerializedStyles;
|
|
214
|
-
'size.300': import("@emotion/react").SerializedStyles;
|
|
215
|
-
'size.400': import("@emotion/react").SerializedStyles;
|
|
216
|
-
'size.500': import("@emotion/react").SerializedStyles;
|
|
217
|
-
'size.600': import("@emotion/react").SerializedStyles;
|
|
218
|
-
};
|
|
219
|
-
export declare type Height = keyof typeof heightMap;
|
|
220
|
-
/**
|
|
221
|
-
* @codegenEnd
|
|
222
|
-
*/
|
|
223
|
-
/**
|
|
224
|
-
* THIS SECTION WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
225
|
-
* @codegen <<SignedSource::bb003484c6ad12a718912942b07dbf6e>>
|
|
226
|
-
* @codegenId spacing
|
|
227
|
-
* @codegenCommand yarn codegen-styles
|
|
228
|
-
* @codegenParams ["padding", "paddingBlock", "paddingInline"]
|
|
229
|
-
* @codegenDependency ../../../../tokens/src/artifacts/tokens-raw/atlassian-spacing.tsx <<SignedSource::167d3b69b159ae33e74d4ea5ab7eade6>>
|
|
230
|
-
*/
|
|
231
|
-
declare const paddingMap: {
|
|
232
|
-
'space.0': import("@emotion/react").SerializedStyles;
|
|
233
|
-
'space.025': import("@emotion/react").SerializedStyles;
|
|
234
|
-
'space.050': import("@emotion/react").SerializedStyles;
|
|
235
|
-
'space.075': import("@emotion/react").SerializedStyles;
|
|
236
|
-
'space.100': import("@emotion/react").SerializedStyles;
|
|
237
|
-
'space.1000': import("@emotion/react").SerializedStyles;
|
|
238
|
-
'space.150': import("@emotion/react").SerializedStyles;
|
|
239
|
-
'space.200': import("@emotion/react").SerializedStyles;
|
|
240
|
-
'space.250': import("@emotion/react").SerializedStyles;
|
|
241
|
-
'space.300': import("@emotion/react").SerializedStyles;
|
|
242
|
-
'space.400': import("@emotion/react").SerializedStyles;
|
|
243
|
-
'space.500': import("@emotion/react").SerializedStyles;
|
|
244
|
-
'space.600': import("@emotion/react").SerializedStyles;
|
|
245
|
-
'space.800': import("@emotion/react").SerializedStyles;
|
|
246
|
-
};
|
|
247
|
-
export declare type Padding = keyof typeof paddingMap;
|
|
248
|
-
declare const paddingBlockMap: {
|
|
249
|
-
'space.0': import("@emotion/react").SerializedStyles;
|
|
250
|
-
'space.025': import("@emotion/react").SerializedStyles;
|
|
251
|
-
'space.050': import("@emotion/react").SerializedStyles;
|
|
252
|
-
'space.075': import("@emotion/react").SerializedStyles;
|
|
253
|
-
'space.100': import("@emotion/react").SerializedStyles;
|
|
254
|
-
'space.1000': import("@emotion/react").SerializedStyles;
|
|
255
|
-
'space.150': import("@emotion/react").SerializedStyles;
|
|
256
|
-
'space.200': import("@emotion/react").SerializedStyles;
|
|
257
|
-
'space.250': import("@emotion/react").SerializedStyles;
|
|
258
|
-
'space.300': import("@emotion/react").SerializedStyles;
|
|
259
|
-
'space.400': import("@emotion/react").SerializedStyles;
|
|
260
|
-
'space.500': import("@emotion/react").SerializedStyles;
|
|
261
|
-
'space.600': import("@emotion/react").SerializedStyles;
|
|
262
|
-
'space.800': import("@emotion/react").SerializedStyles;
|
|
263
|
-
};
|
|
264
|
-
export declare type PaddingBlock = keyof typeof paddingBlockMap;
|
|
265
|
-
declare const paddingInlineMap: {
|
|
266
|
-
'space.0': import("@emotion/react").SerializedStyles;
|
|
267
|
-
'space.025': import("@emotion/react").SerializedStyles;
|
|
268
|
-
'space.050': import("@emotion/react").SerializedStyles;
|
|
269
|
-
'space.075': import("@emotion/react").SerializedStyles;
|
|
270
|
-
'space.100': import("@emotion/react").SerializedStyles;
|
|
271
|
-
'space.1000': import("@emotion/react").SerializedStyles;
|
|
272
|
-
'space.150': import("@emotion/react").SerializedStyles;
|
|
273
|
-
'space.200': import("@emotion/react").SerializedStyles;
|
|
274
|
-
'space.250': import("@emotion/react").SerializedStyles;
|
|
275
|
-
'space.300': import("@emotion/react").SerializedStyles;
|
|
276
|
-
'space.400': import("@emotion/react").SerializedStyles;
|
|
277
|
-
'space.500': import("@emotion/react").SerializedStyles;
|
|
278
|
-
'space.600': import("@emotion/react").SerializedStyles;
|
|
279
|
-
'space.800': import("@emotion/react").SerializedStyles;
|
|
280
|
-
};
|
|
281
|
-
export declare type PaddingInline = keyof typeof paddingInlineMap;
|
|
282
|
-
/**
|
|
283
|
-
* @codegenEnd
|
|
284
|
-
*/
|
|
285
|
-
/**
|
|
286
|
-
* THIS SECTION WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
287
|
-
* @codegen <<SignedSource::997d215fff7bb2f824f7a0f600fe892e>>
|
|
288
|
-
* @codegenId colors
|
|
289
|
-
* @codegenCommand yarn codegen-styles
|
|
290
|
-
* @codegenParams ["border", "background", "shadow"]
|
|
291
|
-
* @codegenDependency ../../../../tokens/src/artifacts/tokens-raw/atlassian-light.tsx <<SignedSource::10aa7e87eca39e4d6594a764e78e0698>>
|
|
292
|
-
*/
|
|
293
|
-
declare const borderColorMap: {
|
|
294
|
-
readonly 'color.border': import("@emotion/react").SerializedStyles;
|
|
295
|
-
readonly disabled: import("@emotion/react").SerializedStyles;
|
|
296
|
-
readonly focused: import("@emotion/react").SerializedStyles;
|
|
297
|
-
readonly input: import("@emotion/react").SerializedStyles;
|
|
298
|
-
readonly inverse: import("@emotion/react").SerializedStyles;
|
|
299
|
-
readonly selected: import("@emotion/react").SerializedStyles;
|
|
300
|
-
readonly brand: import("@emotion/react").SerializedStyles;
|
|
301
|
-
readonly danger: import("@emotion/react").SerializedStyles;
|
|
302
|
-
readonly warning: import("@emotion/react").SerializedStyles;
|
|
303
|
-
readonly success: import("@emotion/react").SerializedStyles;
|
|
304
|
-
readonly discovery: import("@emotion/react").SerializedStyles;
|
|
305
|
-
readonly information: import("@emotion/react").SerializedStyles;
|
|
306
|
-
readonly bold: import("@emotion/react").SerializedStyles;
|
|
307
|
-
};
|
|
308
|
-
export declare type BorderColor = keyof typeof borderColorMap;
|
|
309
|
-
declare const backgroundColorMap: {
|
|
310
|
-
readonly disabled: import("@emotion/react").SerializedStyles;
|
|
311
|
-
readonly input: import("@emotion/react").SerializedStyles;
|
|
312
|
-
readonly 'inverse.subtle': import("@emotion/react").SerializedStyles;
|
|
313
|
-
readonly neutral: import("@emotion/react").SerializedStyles;
|
|
314
|
-
readonly 'neutral.subtle': import("@emotion/react").SerializedStyles;
|
|
315
|
-
readonly 'neutral.bold': import("@emotion/react").SerializedStyles;
|
|
316
|
-
readonly selected: import("@emotion/react").SerializedStyles;
|
|
317
|
-
readonly 'selected.bold': import("@emotion/react").SerializedStyles;
|
|
318
|
-
readonly 'brand.bold': import("@emotion/react").SerializedStyles;
|
|
319
|
-
readonly danger: import("@emotion/react").SerializedStyles;
|
|
320
|
-
readonly 'danger.bold': import("@emotion/react").SerializedStyles;
|
|
321
|
-
readonly warning: import("@emotion/react").SerializedStyles;
|
|
322
|
-
readonly 'warning.bold': import("@emotion/react").SerializedStyles;
|
|
323
|
-
readonly success: import("@emotion/react").SerializedStyles;
|
|
324
|
-
readonly 'success.bold': import("@emotion/react").SerializedStyles;
|
|
325
|
-
readonly discovery: import("@emotion/react").SerializedStyles;
|
|
326
|
-
readonly 'discovery.bold': import("@emotion/react").SerializedStyles;
|
|
327
|
-
readonly information: import("@emotion/react").SerializedStyles;
|
|
328
|
-
readonly 'information.bold': import("@emotion/react").SerializedStyles;
|
|
329
|
-
readonly 'color.blanket': import("@emotion/react").SerializedStyles;
|
|
330
|
-
readonly 'color.blanket.selected': import("@emotion/react").SerializedStyles;
|
|
331
|
-
readonly 'color.blanket.danger': import("@emotion/react").SerializedStyles;
|
|
332
|
-
readonly 'elevation.surface': import("@emotion/react").SerializedStyles;
|
|
333
|
-
readonly 'elevation.surface.overlay': import("@emotion/react").SerializedStyles;
|
|
334
|
-
readonly 'elevation.surface.raised': import("@emotion/react").SerializedStyles;
|
|
335
|
-
readonly 'elevation.surface.sunken': import("@emotion/react").SerializedStyles;
|
|
336
|
-
};
|
|
337
|
-
export declare type BackgroundColor = keyof typeof backgroundColorMap;
|
|
338
|
-
declare const shadowMap: {
|
|
339
|
-
readonly overflow: import("@emotion/react").SerializedStyles;
|
|
340
|
-
readonly 'overflow.perimeter': import("@emotion/react").SerializedStyles;
|
|
341
|
-
readonly 'overflow.spread': import("@emotion/react").SerializedStyles;
|
|
342
|
-
readonly overlay: import("@emotion/react").SerializedStyles;
|
|
343
|
-
readonly raised: import("@emotion/react").SerializedStyles;
|
|
344
|
-
};
|
|
345
|
-
export declare type Shadow = keyof typeof shadowMap;
|
|
346
|
-
/**
|
|
347
|
-
* @codegenEnd
|
|
348
|
-
*/
|