@animus-ui/system 0.1.0-next.62 → 0.1.0-next.65
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/Animus.d.ts.map +1 -1
- package/dist/AnimusExtended.d.ts.map +1 -1
- package/dist/SystemBuilder.d.ts +15 -3
- package/dist/SystemBuilder.d.ts.map +1 -1
- package/dist/groups/index.d.ts +343 -343
- package/dist/groups/index.d.ts.map +1 -1
- package/dist/groups/index.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +10 -9
- package/dist/{size-DzHm9Iw0.js → size-CusLCguT.js} +4 -0
- package/dist/theme/createTheme.d.ts +1 -1
- package/dist/theme/createTheme.d.ts.map +1 -1
- package/dist/theme/serializeTokens.d.ts +0 -14
- package/dist/theme/serializeTokens.d.ts.map +1 -1
- package/dist/theme/utils.d.ts +0 -4
- package/dist/theme/utils.d.ts.map +1 -1
- package/dist/transforms/grid.d.ts +0 -3
- package/dist/transforms/grid.d.ts.map +1 -1
- package/dist/transforms/index.d.ts +0 -1
- package/dist/transforms/index.d.ts.map +1 -1
- package/dist/transforms/size.d.ts.map +1 -1
- package/dist/types/component.d.ts +2 -2
- package/dist/types/component.d.ts.map +1 -1
- package/package.json +6 -5
- package/dist/transforms/utils.d.ts +0 -3
- package/dist/transforms/utils.d.ts.map +0 -1
package/dist/groups/index.d.ts
CHANGED
|
@@ -1,726 +1,726 @@
|
|
|
1
1
|
export declare const color: {
|
|
2
2
|
readonly color: {
|
|
3
|
-
readonly property:
|
|
4
|
-
readonly scale:
|
|
3
|
+
readonly property: 'color';
|
|
4
|
+
readonly scale: 'colors';
|
|
5
5
|
};
|
|
6
6
|
readonly bg: {
|
|
7
|
-
readonly property:
|
|
8
|
-
readonly scale:
|
|
9
|
-
readonly currentVar:
|
|
7
|
+
readonly property: 'backgroundColor';
|
|
8
|
+
readonly scale: 'colors';
|
|
9
|
+
readonly currentVar: '--current-bg';
|
|
10
10
|
};
|
|
11
11
|
readonly gradient: {
|
|
12
|
-
readonly property:
|
|
13
|
-
readonly scale:
|
|
12
|
+
readonly property: 'backgroundImage';
|
|
13
|
+
readonly scale: 'gradients';
|
|
14
14
|
};
|
|
15
15
|
readonly borderColor: {
|
|
16
|
-
readonly property:
|
|
17
|
-
readonly scale:
|
|
16
|
+
readonly property: 'borderColor';
|
|
17
|
+
readonly scale: 'colors';
|
|
18
18
|
};
|
|
19
19
|
readonly borderXColor: {
|
|
20
|
-
readonly property:
|
|
21
|
-
readonly properties: readonly [
|
|
22
|
-
readonly scale:
|
|
20
|
+
readonly property: 'borderColor';
|
|
21
|
+
readonly properties: readonly ['borderLeftColor', 'borderRightColor'];
|
|
22
|
+
readonly scale: 'colors';
|
|
23
23
|
};
|
|
24
24
|
readonly borderYColor: {
|
|
25
|
-
readonly property:
|
|
26
|
-
readonly properties: readonly [
|
|
27
|
-
readonly scale:
|
|
25
|
+
readonly property: 'borderColor';
|
|
26
|
+
readonly properties: readonly ['borderTopColor', 'borderBottomColor'];
|
|
27
|
+
readonly scale: 'colors';
|
|
28
28
|
};
|
|
29
29
|
readonly borderLeftColor: {
|
|
30
|
-
readonly property:
|
|
31
|
-
readonly scale:
|
|
30
|
+
readonly property: 'borderLeftColor';
|
|
31
|
+
readonly scale: 'colors';
|
|
32
32
|
};
|
|
33
33
|
readonly borderRightColor: {
|
|
34
|
-
readonly property:
|
|
35
|
-
readonly scale:
|
|
34
|
+
readonly property: 'borderRightColor';
|
|
35
|
+
readonly scale: 'colors';
|
|
36
36
|
};
|
|
37
37
|
readonly borderTopColor: {
|
|
38
|
-
readonly property:
|
|
39
|
-
readonly scale:
|
|
38
|
+
readonly property: 'borderTopColor';
|
|
39
|
+
readonly scale: 'colors';
|
|
40
40
|
};
|
|
41
41
|
readonly borderBottomColor: {
|
|
42
|
-
readonly property:
|
|
43
|
-
readonly scale:
|
|
42
|
+
readonly property: 'borderBottomColor';
|
|
43
|
+
readonly scale: 'colors';
|
|
44
44
|
};
|
|
45
45
|
readonly fill: {
|
|
46
|
-
readonly property:
|
|
47
|
-
readonly scale:
|
|
46
|
+
readonly property: 'fill';
|
|
47
|
+
readonly scale: 'colors';
|
|
48
48
|
};
|
|
49
49
|
readonly stroke: {
|
|
50
|
-
readonly property:
|
|
51
|
-
readonly scale:
|
|
50
|
+
readonly property: 'stroke';
|
|
51
|
+
readonly scale: 'colors';
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
54
|
export declare const border: {
|
|
55
55
|
readonly border: {
|
|
56
|
-
readonly property:
|
|
57
|
-
readonly scale:
|
|
56
|
+
readonly property: 'border';
|
|
57
|
+
readonly scale: 'borders';
|
|
58
58
|
readonly strict: false;
|
|
59
|
-
readonly transform: import("
|
|
59
|
+
readonly transform: import("..").NamedTransform;
|
|
60
60
|
};
|
|
61
61
|
readonly borderX: {
|
|
62
|
-
readonly property:
|
|
63
|
-
readonly properties: readonly [
|
|
64
|
-
readonly scale:
|
|
62
|
+
readonly property: 'border';
|
|
63
|
+
readonly properties: readonly ['borderLeft', 'borderRight'];
|
|
64
|
+
readonly scale: 'borders';
|
|
65
65
|
readonly strict: false;
|
|
66
|
-
readonly transform: import("
|
|
66
|
+
readonly transform: import("..").NamedTransform;
|
|
67
67
|
};
|
|
68
68
|
readonly borderY: {
|
|
69
|
-
readonly property:
|
|
70
|
-
readonly properties: readonly [
|
|
71
|
-
readonly scale:
|
|
69
|
+
readonly property: 'border';
|
|
70
|
+
readonly properties: readonly ['borderTop', 'borderBottom'];
|
|
71
|
+
readonly scale: 'borders';
|
|
72
72
|
readonly strict: false;
|
|
73
|
-
readonly transform: import("
|
|
73
|
+
readonly transform: import("..").NamedTransform;
|
|
74
74
|
};
|
|
75
75
|
readonly borderTop: {
|
|
76
|
-
readonly property:
|
|
77
|
-
readonly scale:
|
|
76
|
+
readonly property: 'borderTop';
|
|
77
|
+
readonly scale: 'borders';
|
|
78
78
|
readonly strict: false;
|
|
79
|
-
readonly transform: import("
|
|
79
|
+
readonly transform: import("..").NamedTransform;
|
|
80
80
|
};
|
|
81
81
|
readonly borderRight: {
|
|
82
|
-
readonly property:
|
|
83
|
-
readonly scale:
|
|
82
|
+
readonly property: 'borderRight';
|
|
83
|
+
readonly scale: 'borders';
|
|
84
84
|
readonly strict: false;
|
|
85
|
-
readonly transform: import("
|
|
85
|
+
readonly transform: import("..").NamedTransform;
|
|
86
86
|
};
|
|
87
87
|
readonly borderBottom: {
|
|
88
|
-
readonly property:
|
|
89
|
-
readonly scale:
|
|
88
|
+
readonly property: 'borderBottom';
|
|
89
|
+
readonly scale: 'borders';
|
|
90
90
|
readonly strict: false;
|
|
91
|
-
readonly transform: import("
|
|
91
|
+
readonly transform: import("..").NamedTransform;
|
|
92
92
|
};
|
|
93
93
|
readonly borderLeft: {
|
|
94
|
-
readonly property:
|
|
95
|
-
readonly scale:
|
|
94
|
+
readonly property: 'borderLeft';
|
|
95
|
+
readonly scale: 'borders';
|
|
96
96
|
readonly strict: false;
|
|
97
|
-
readonly transform: import("
|
|
97
|
+
readonly transform: import("..").NamedTransform;
|
|
98
98
|
};
|
|
99
99
|
readonly borderWidth: {
|
|
100
|
-
readonly property:
|
|
101
|
-
readonly scale:
|
|
100
|
+
readonly property: 'borderWidth';
|
|
101
|
+
readonly scale: 'borderWidths';
|
|
102
102
|
readonly strict: false;
|
|
103
103
|
};
|
|
104
104
|
readonly borderXWidth: {
|
|
105
|
-
readonly property:
|
|
106
|
-
readonly properties: readonly [
|
|
107
|
-
readonly scale:
|
|
105
|
+
readonly property: 'borderWidth';
|
|
106
|
+
readonly properties: readonly ['borderLeftWidth', 'borderRightWidth'];
|
|
107
|
+
readonly scale: 'borderWidths';
|
|
108
108
|
readonly strict: false;
|
|
109
109
|
};
|
|
110
110
|
readonly borderYWidth: {
|
|
111
|
-
readonly property:
|
|
112
|
-
readonly properties: readonly [
|
|
113
|
-
readonly scale:
|
|
111
|
+
readonly property: 'borderWidth';
|
|
112
|
+
readonly properties: readonly ['borderTopWidth', 'borderBottomWidth'];
|
|
113
|
+
readonly scale: 'borderWidths';
|
|
114
114
|
readonly strict: false;
|
|
115
115
|
};
|
|
116
116
|
readonly borderLeftWidth: {
|
|
117
|
-
readonly property:
|
|
118
|
-
readonly scale:
|
|
117
|
+
readonly property: 'borderLeftWidth';
|
|
118
|
+
readonly scale: 'borderWidths';
|
|
119
119
|
readonly strict: false;
|
|
120
120
|
};
|
|
121
121
|
readonly borderRightWidth: {
|
|
122
|
-
readonly property:
|
|
123
|
-
readonly scale:
|
|
122
|
+
readonly property: 'borderRightWidth';
|
|
123
|
+
readonly scale: 'borderWidths';
|
|
124
124
|
readonly strict: false;
|
|
125
125
|
};
|
|
126
126
|
readonly borderTopWidth: {
|
|
127
|
-
readonly property:
|
|
128
|
-
readonly scale:
|
|
127
|
+
readonly property: 'borderTopWidth';
|
|
128
|
+
readonly scale: 'borderWidths';
|
|
129
129
|
readonly strict: false;
|
|
130
130
|
};
|
|
131
131
|
readonly borderBottomWidth: {
|
|
132
|
-
readonly property:
|
|
133
|
-
readonly scale:
|
|
132
|
+
readonly property: 'borderBottomWidth';
|
|
133
|
+
readonly scale: 'borderWidths';
|
|
134
134
|
readonly strict: false;
|
|
135
135
|
};
|
|
136
136
|
readonly borderRadius: {
|
|
137
|
-
readonly property:
|
|
138
|
-
readonly scale:
|
|
137
|
+
readonly property: 'borderRadius';
|
|
138
|
+
readonly scale: 'radii';
|
|
139
139
|
readonly strict: false;
|
|
140
|
-
readonly transform: import("
|
|
140
|
+
readonly transform: import("..").NamedTransform;
|
|
141
141
|
};
|
|
142
142
|
readonly rounded: {
|
|
143
|
-
readonly property:
|
|
144
|
-
readonly scale:
|
|
143
|
+
readonly property: 'borderRadius';
|
|
144
|
+
readonly scale: 'radii';
|
|
145
145
|
readonly strict: false;
|
|
146
|
-
readonly transform: import("
|
|
146
|
+
readonly transform: import("..").NamedTransform;
|
|
147
147
|
};
|
|
148
148
|
readonly borderLeftRadius: {
|
|
149
|
-
readonly property:
|
|
150
|
-
readonly properties: readonly [
|
|
151
|
-
readonly scale:
|
|
149
|
+
readonly property: 'borderRadius';
|
|
150
|
+
readonly properties: readonly ['borderTopLeftRadius', 'borderBottomLeftRadius'];
|
|
151
|
+
readonly scale: 'radii';
|
|
152
152
|
readonly strict: false;
|
|
153
|
-
readonly transform: import("
|
|
153
|
+
readonly transform: import("..").NamedTransform;
|
|
154
154
|
};
|
|
155
155
|
readonly borderTopRadius: {
|
|
156
|
-
readonly property:
|
|
157
|
-
readonly properties: readonly [
|
|
158
|
-
readonly scale:
|
|
156
|
+
readonly property: 'borderRadius';
|
|
157
|
+
readonly properties: readonly ['borderTopLeftRadius', 'borderTopRightRadius'];
|
|
158
|
+
readonly scale: 'radii';
|
|
159
159
|
readonly strict: false;
|
|
160
|
-
readonly transform: import("
|
|
160
|
+
readonly transform: import("..").NamedTransform;
|
|
161
161
|
};
|
|
162
162
|
readonly borderBottomRadius: {
|
|
163
|
-
readonly property:
|
|
164
|
-
readonly properties: readonly [
|
|
165
|
-
readonly scale:
|
|
163
|
+
readonly property: 'borderRadius';
|
|
164
|
+
readonly properties: readonly ['borderBottomLeftRadius', 'borderBottomRightRadius'];
|
|
165
|
+
readonly scale: 'radii';
|
|
166
166
|
readonly strict: false;
|
|
167
|
-
readonly transform: import("
|
|
167
|
+
readonly transform: import("..").NamedTransform;
|
|
168
168
|
};
|
|
169
169
|
readonly borderRightRadius: {
|
|
170
|
-
readonly property:
|
|
171
|
-
readonly properties: readonly [
|
|
172
|
-
readonly scale:
|
|
170
|
+
readonly property: 'borderRadius';
|
|
171
|
+
readonly properties: readonly ['borderTopRightRadius', 'borderBottomRightRadius'];
|
|
172
|
+
readonly scale: 'radii';
|
|
173
173
|
readonly strict: false;
|
|
174
|
-
readonly transform: import("
|
|
174
|
+
readonly transform: import("..").NamedTransform;
|
|
175
175
|
};
|
|
176
176
|
readonly borderTopLeftRadius: {
|
|
177
|
-
readonly property:
|
|
178
|
-
readonly scale:
|
|
177
|
+
readonly property: 'borderTopLeftRadius';
|
|
178
|
+
readonly scale: 'radii';
|
|
179
179
|
readonly strict: false;
|
|
180
|
-
readonly transform: import("
|
|
180
|
+
readonly transform: import("..").NamedTransform;
|
|
181
181
|
};
|
|
182
182
|
readonly borderTopRightRadius: {
|
|
183
|
-
readonly property:
|
|
184
|
-
readonly scale:
|
|
183
|
+
readonly property: 'borderTopRightRadius';
|
|
184
|
+
readonly scale: 'radii';
|
|
185
185
|
readonly strict: false;
|
|
186
|
-
readonly transform: import("
|
|
186
|
+
readonly transform: import("..").NamedTransform;
|
|
187
187
|
};
|
|
188
188
|
readonly borderBottomRightRadius: {
|
|
189
|
-
readonly property:
|
|
190
|
-
readonly scale:
|
|
189
|
+
readonly property: 'borderBottomRightRadius';
|
|
190
|
+
readonly scale: 'radii';
|
|
191
191
|
readonly strict: false;
|
|
192
|
-
readonly transform: import("
|
|
192
|
+
readonly transform: import("..").NamedTransform;
|
|
193
193
|
};
|
|
194
194
|
readonly borderBottomLeftRadius: {
|
|
195
|
-
readonly property:
|
|
196
|
-
readonly scale:
|
|
195
|
+
readonly property: 'borderBottomLeftRadius';
|
|
196
|
+
readonly scale: 'radii';
|
|
197
197
|
readonly strict: false;
|
|
198
|
-
readonly transform: import("
|
|
198
|
+
readonly transform: import("..").NamedTransform;
|
|
199
199
|
};
|
|
200
200
|
readonly borderStyle: {
|
|
201
|
-
readonly property:
|
|
201
|
+
readonly property: 'borderStyle';
|
|
202
202
|
};
|
|
203
203
|
readonly borderXStyle: {
|
|
204
|
-
readonly property:
|
|
205
|
-
readonly properties: readonly [
|
|
204
|
+
readonly property: 'borderStyle';
|
|
205
|
+
readonly properties: readonly ['borderLeftStyle', 'borderRightStyle'];
|
|
206
206
|
};
|
|
207
207
|
readonly borderYStyle: {
|
|
208
|
-
readonly property:
|
|
209
|
-
readonly properties: readonly [
|
|
208
|
+
readonly property: 'borderStyle';
|
|
209
|
+
readonly properties: readonly ['borderTopStyle', 'borderBottomStyle'];
|
|
210
210
|
};
|
|
211
211
|
readonly borderLeftStyle: {
|
|
212
|
-
readonly property:
|
|
212
|
+
readonly property: 'borderLeftStyle';
|
|
213
213
|
};
|
|
214
214
|
readonly borderRightStyle: {
|
|
215
|
-
readonly property:
|
|
215
|
+
readonly property: 'borderRightStyle';
|
|
216
216
|
};
|
|
217
217
|
readonly borderTopStyle: {
|
|
218
|
-
readonly property:
|
|
218
|
+
readonly property: 'borderTopStyle';
|
|
219
219
|
};
|
|
220
220
|
readonly borderBottomStyle: {
|
|
221
|
-
readonly property:
|
|
221
|
+
readonly property: 'borderBottomStyle';
|
|
222
222
|
};
|
|
223
223
|
};
|
|
224
224
|
export declare const flex: {
|
|
225
225
|
readonly gap: {
|
|
226
|
-
readonly property:
|
|
227
|
-
readonly scale:
|
|
226
|
+
readonly property: 'gap';
|
|
227
|
+
readonly scale: 'space';
|
|
228
228
|
};
|
|
229
229
|
readonly rowGap: {
|
|
230
|
-
readonly property:
|
|
231
|
-
readonly scale:
|
|
230
|
+
readonly property: 'rowGap';
|
|
231
|
+
readonly scale: 'space';
|
|
232
232
|
};
|
|
233
233
|
readonly columnGap: {
|
|
234
|
-
readonly property:
|
|
235
|
-
readonly scale:
|
|
236
|
-
};
|
|
237
|
-
readonly flexBasis: {
|
|
238
|
-
readonly property: "flexBasis";
|
|
239
|
-
};
|
|
240
|
-
readonly flexShrink: {
|
|
241
|
-
readonly property: "flexShrink";
|
|
242
|
-
};
|
|
243
|
-
readonly flexGrow: {
|
|
244
|
-
readonly property: "flexGrow";
|
|
245
|
-
};
|
|
246
|
-
readonly order: {
|
|
247
|
-
readonly property: "order";
|
|
234
|
+
readonly property: 'columnGap';
|
|
235
|
+
readonly scale: 'space';
|
|
248
236
|
};
|
|
249
237
|
readonly justifySelf: {
|
|
250
|
-
readonly property:
|
|
238
|
+
readonly property: 'justifySelf';
|
|
251
239
|
};
|
|
252
240
|
readonly alignSelf: {
|
|
253
|
-
readonly property:
|
|
241
|
+
readonly property: 'alignSelf';
|
|
254
242
|
};
|
|
255
243
|
readonly gridArea: {
|
|
256
|
-
readonly property:
|
|
244
|
+
readonly property: 'gridArea';
|
|
257
245
|
};
|
|
258
246
|
readonly area: {
|
|
259
|
-
readonly property:
|
|
247
|
+
readonly property: 'gridArea';
|
|
260
248
|
};
|
|
261
249
|
readonly justifyContent: {
|
|
262
|
-
readonly property:
|
|
250
|
+
readonly property: 'justifyContent';
|
|
263
251
|
};
|
|
264
252
|
readonly justifyItems: {
|
|
265
|
-
readonly property:
|
|
253
|
+
readonly property: 'justifyItems';
|
|
266
254
|
};
|
|
267
255
|
readonly alignItems: {
|
|
268
|
-
readonly property:
|
|
256
|
+
readonly property: 'alignItems';
|
|
269
257
|
};
|
|
270
258
|
readonly alignContent: {
|
|
271
|
-
readonly property:
|
|
259
|
+
readonly property: 'alignContent';
|
|
260
|
+
};
|
|
261
|
+
readonly flexBasis: {
|
|
262
|
+
readonly property: 'flexBasis';
|
|
263
|
+
};
|
|
264
|
+
readonly flexShrink: {
|
|
265
|
+
readonly property: 'flexShrink';
|
|
266
|
+
};
|
|
267
|
+
readonly flexGrow: {
|
|
268
|
+
readonly property: 'flexGrow';
|
|
269
|
+
};
|
|
270
|
+
readonly order: {
|
|
271
|
+
readonly property: 'order';
|
|
272
272
|
};
|
|
273
273
|
readonly flexDirection: {
|
|
274
|
-
readonly property:
|
|
274
|
+
readonly property: 'flexDirection';
|
|
275
275
|
};
|
|
276
276
|
readonly flexDir: {
|
|
277
|
-
readonly property:
|
|
277
|
+
readonly property: 'flexDirection';
|
|
278
278
|
};
|
|
279
279
|
readonly flexWrap: {
|
|
280
|
-
readonly property:
|
|
280
|
+
readonly property: 'flexWrap';
|
|
281
281
|
};
|
|
282
282
|
readonly flex: {
|
|
283
|
-
readonly property:
|
|
283
|
+
readonly property: 'flex';
|
|
284
284
|
};
|
|
285
285
|
};
|
|
286
286
|
export declare const grid: {
|
|
287
287
|
readonly gap: {
|
|
288
|
-
readonly property:
|
|
289
|
-
readonly scale:
|
|
288
|
+
readonly property: 'gap';
|
|
289
|
+
readonly scale: 'space';
|
|
290
290
|
};
|
|
291
291
|
readonly rowGap: {
|
|
292
|
-
readonly property:
|
|
293
|
-
readonly scale:
|
|
292
|
+
readonly property: 'rowGap';
|
|
293
|
+
readonly scale: 'space';
|
|
294
294
|
};
|
|
295
295
|
readonly columnGap: {
|
|
296
|
-
readonly property:
|
|
297
|
-
readonly scale:
|
|
298
|
-
};
|
|
299
|
-
readonly gridColumn: {
|
|
300
|
-
readonly property: "gridColumn";
|
|
301
|
-
};
|
|
302
|
-
readonly gridRow: {
|
|
303
|
-
readonly property: "gridRow";
|
|
304
|
-
};
|
|
305
|
-
readonly gridColumnStart: {
|
|
306
|
-
readonly property: "gridColumnStart";
|
|
307
|
-
};
|
|
308
|
-
readonly gridRowStart: {
|
|
309
|
-
readonly property: "gridRowStart";
|
|
310
|
-
};
|
|
311
|
-
readonly gridColumnEnd: {
|
|
312
|
-
readonly property: "gridColumnEnd";
|
|
313
|
-
};
|
|
314
|
-
readonly gridRowEnd: {
|
|
315
|
-
readonly property: "gridRowEnd";
|
|
296
|
+
readonly property: 'columnGap';
|
|
297
|
+
readonly scale: 'space';
|
|
316
298
|
};
|
|
317
299
|
readonly justifySelf: {
|
|
318
|
-
readonly property:
|
|
300
|
+
readonly property: 'justifySelf';
|
|
319
301
|
};
|
|
320
302
|
readonly alignSelf: {
|
|
321
|
-
readonly property:
|
|
303
|
+
readonly property: 'alignSelf';
|
|
322
304
|
};
|
|
323
305
|
readonly gridArea: {
|
|
324
|
-
readonly property:
|
|
306
|
+
readonly property: 'gridArea';
|
|
325
307
|
};
|
|
326
308
|
readonly area: {
|
|
327
|
-
readonly property:
|
|
309
|
+
readonly property: 'gridArea';
|
|
328
310
|
};
|
|
329
311
|
readonly justifyContent: {
|
|
330
|
-
readonly property:
|
|
312
|
+
readonly property: 'justifyContent';
|
|
331
313
|
};
|
|
332
314
|
readonly justifyItems: {
|
|
333
|
-
readonly property:
|
|
315
|
+
readonly property: 'justifyItems';
|
|
334
316
|
};
|
|
335
317
|
readonly alignItems: {
|
|
336
|
-
readonly property:
|
|
318
|
+
readonly property: 'alignItems';
|
|
337
319
|
};
|
|
338
320
|
readonly alignContent: {
|
|
339
|
-
readonly property:
|
|
321
|
+
readonly property: 'alignContent';
|
|
322
|
+
};
|
|
323
|
+
readonly gridColumn: {
|
|
324
|
+
readonly property: 'gridColumn';
|
|
325
|
+
};
|
|
326
|
+
readonly gridRow: {
|
|
327
|
+
readonly property: 'gridRow';
|
|
328
|
+
};
|
|
329
|
+
readonly gridColumnStart: {
|
|
330
|
+
readonly property: 'gridColumnStart';
|
|
331
|
+
};
|
|
332
|
+
readonly gridRowStart: {
|
|
333
|
+
readonly property: 'gridRowStart';
|
|
334
|
+
};
|
|
335
|
+
readonly gridColumnEnd: {
|
|
336
|
+
readonly property: 'gridColumnEnd';
|
|
337
|
+
};
|
|
338
|
+
readonly gridRowEnd: {
|
|
339
|
+
readonly property: 'gridRowEnd';
|
|
340
340
|
};
|
|
341
341
|
readonly gridAutoColumns: {
|
|
342
|
-
readonly property:
|
|
342
|
+
readonly property: 'gridAutoColumns';
|
|
343
343
|
};
|
|
344
344
|
readonly gridAutoRows: {
|
|
345
|
-
readonly property:
|
|
345
|
+
readonly property: 'gridAutoRows';
|
|
346
346
|
};
|
|
347
347
|
readonly gridTemplateColumns: {
|
|
348
|
-
readonly property:
|
|
348
|
+
readonly property: 'gridTemplateColumns';
|
|
349
349
|
};
|
|
350
350
|
readonly gridTemplateRows: {
|
|
351
|
-
readonly property:
|
|
351
|
+
readonly property: 'gridTemplateRows';
|
|
352
352
|
};
|
|
353
353
|
readonly gridTemplateAreas: {
|
|
354
|
-
readonly property:
|
|
354
|
+
readonly property: 'gridTemplateAreas';
|
|
355
355
|
};
|
|
356
356
|
readonly gridAutoFlow: {
|
|
357
|
-
readonly property:
|
|
357
|
+
readonly property: 'gridAutoFlow';
|
|
358
358
|
};
|
|
359
359
|
readonly flow: {
|
|
360
|
-
readonly property:
|
|
361
|
-
readonly scale: readonly ("column" | "
|
|
360
|
+
readonly property: 'gridAutoFlow';
|
|
361
|
+
readonly scale: readonly ("column" | "column dense" | "dense" | "row" | "row dense")[] & {
|
|
362
362
|
length: 0;
|
|
363
363
|
};
|
|
364
364
|
};
|
|
365
365
|
readonly cols: {
|
|
366
|
-
readonly property:
|
|
367
|
-
readonly transform: import("
|
|
366
|
+
readonly property: 'gridTemplateColumns';
|
|
367
|
+
readonly transform: import("..").NamedTransform;
|
|
368
368
|
readonly scale: readonly (string | number)[] & {
|
|
369
369
|
length: 0;
|
|
370
370
|
};
|
|
371
371
|
};
|
|
372
372
|
readonly rows: {
|
|
373
|
-
readonly property:
|
|
374
|
-
readonly transform: import("
|
|
373
|
+
readonly property: 'gridTemplateRows';
|
|
374
|
+
readonly transform: import("..").NamedTransform;
|
|
375
375
|
readonly scale: readonly (string | number)[] & {
|
|
376
376
|
length: 0;
|
|
377
377
|
};
|
|
378
378
|
};
|
|
379
379
|
readonly autoRows: {
|
|
380
|
-
readonly property:
|
|
381
|
-
readonly transform: import("
|
|
380
|
+
readonly property: 'gridAutoRows';
|
|
381
|
+
readonly transform: import("..").NamedTransform;
|
|
382
382
|
};
|
|
383
383
|
readonly autoCols: {
|
|
384
|
-
readonly property:
|
|
385
|
-
readonly transform: import("
|
|
384
|
+
readonly property: 'gridAutoColumns';
|
|
385
|
+
readonly transform: import("..").NamedTransform;
|
|
386
386
|
};
|
|
387
387
|
readonly alignAll: {
|
|
388
|
-
readonly property:
|
|
389
|
-
readonly properties: readonly [
|
|
388
|
+
readonly property: 'justifyContent';
|
|
389
|
+
readonly properties: readonly ['justifyContent', 'alignItems'];
|
|
390
390
|
};
|
|
391
391
|
};
|
|
392
392
|
export declare const background: {
|
|
393
393
|
readonly background: {
|
|
394
|
-
readonly property:
|
|
394
|
+
readonly property: 'background';
|
|
395
395
|
};
|
|
396
396
|
readonly backgroundImage: {
|
|
397
|
-
readonly property:
|
|
397
|
+
readonly property: 'backgroundImage';
|
|
398
398
|
};
|
|
399
399
|
readonly bgImage: {
|
|
400
|
-
readonly property:
|
|
400
|
+
readonly property: 'backgroundImage';
|
|
401
401
|
};
|
|
402
402
|
readonly backgroundSize: {
|
|
403
|
-
readonly property:
|
|
403
|
+
readonly property: 'backgroundSize';
|
|
404
404
|
};
|
|
405
405
|
readonly bgSize: {
|
|
406
|
-
readonly property:
|
|
406
|
+
readonly property: 'backgroundSize';
|
|
407
407
|
};
|
|
408
408
|
readonly backgroundRepeat: {
|
|
409
|
-
readonly property:
|
|
409
|
+
readonly property: 'backgroundRepeat';
|
|
410
410
|
};
|
|
411
411
|
readonly bgRepeat: {
|
|
412
|
-
readonly property:
|
|
412
|
+
readonly property: 'backgroundRepeat';
|
|
413
413
|
};
|
|
414
414
|
readonly backgroundPosition: {
|
|
415
|
-
readonly property:
|
|
415
|
+
readonly property: 'backgroundPosition';
|
|
416
416
|
};
|
|
417
417
|
readonly bgPos: {
|
|
418
|
-
readonly property:
|
|
418
|
+
readonly property: 'backgroundPosition';
|
|
419
419
|
};
|
|
420
420
|
};
|
|
421
421
|
export declare const positioning: {
|
|
422
422
|
readonly position: {
|
|
423
|
-
readonly property:
|
|
423
|
+
readonly property: 'position';
|
|
424
424
|
};
|
|
425
425
|
readonly pos: {
|
|
426
|
-
readonly property:
|
|
426
|
+
readonly property: 'position';
|
|
427
427
|
};
|
|
428
428
|
readonly inset: {
|
|
429
|
-
readonly property:
|
|
430
|
-
readonly properties: readonly [
|
|
431
|
-
readonly transform: import("
|
|
429
|
+
readonly property: 'inset';
|
|
430
|
+
readonly properties: readonly ['top', 'right', 'bottom', 'left'];
|
|
431
|
+
readonly transform: import("..").NamedTransform;
|
|
432
432
|
readonly negative: true;
|
|
433
433
|
};
|
|
434
434
|
readonly top: {
|
|
435
|
-
readonly property:
|
|
436
|
-
readonly transform: import("
|
|
435
|
+
readonly property: 'top';
|
|
436
|
+
readonly transform: import("..").NamedTransform;
|
|
437
437
|
readonly negative: true;
|
|
438
438
|
};
|
|
439
439
|
readonly right: {
|
|
440
|
-
readonly property:
|
|
441
|
-
readonly transform: import("
|
|
440
|
+
readonly property: 'right';
|
|
441
|
+
readonly transform: import("..").NamedTransform;
|
|
442
442
|
readonly negative: true;
|
|
443
443
|
};
|
|
444
444
|
readonly bottom: {
|
|
445
|
-
readonly property:
|
|
446
|
-
readonly transform: import("
|
|
445
|
+
readonly property: 'bottom';
|
|
446
|
+
readonly transform: import("..").NamedTransform;
|
|
447
447
|
readonly negative: true;
|
|
448
448
|
};
|
|
449
449
|
readonly left: {
|
|
450
|
-
readonly property:
|
|
451
|
-
readonly transform: import("
|
|
450
|
+
readonly property: 'left';
|
|
451
|
+
readonly transform: import("..").NamedTransform;
|
|
452
452
|
readonly negative: true;
|
|
453
453
|
};
|
|
454
454
|
readonly zIndex: {
|
|
455
|
-
readonly property:
|
|
456
|
-
readonly scale:
|
|
455
|
+
readonly property: 'zIndex';
|
|
456
|
+
readonly scale: 'zIndices';
|
|
457
457
|
readonly strict: false;
|
|
458
458
|
};
|
|
459
459
|
readonly opacity: {
|
|
460
|
-
readonly property:
|
|
461
|
-
readonly scale:
|
|
460
|
+
readonly property: 'opacity';
|
|
461
|
+
readonly scale: 'opacities';
|
|
462
462
|
readonly strict: false;
|
|
463
463
|
};
|
|
464
464
|
};
|
|
465
465
|
export declare const shadows: {
|
|
466
466
|
readonly boxShadow: {
|
|
467
|
-
readonly property:
|
|
468
|
-
readonly scale:
|
|
467
|
+
readonly property: 'boxShadow';
|
|
468
|
+
readonly scale: 'shadows';
|
|
469
469
|
readonly strict: false;
|
|
470
470
|
};
|
|
471
471
|
readonly shadow: {
|
|
472
|
-
readonly property:
|
|
473
|
-
readonly scale:
|
|
472
|
+
readonly property: 'boxShadow';
|
|
473
|
+
readonly scale: 'shadows';
|
|
474
474
|
readonly strict: false;
|
|
475
475
|
};
|
|
476
476
|
readonly textShadow: {
|
|
477
|
-
readonly property:
|
|
478
|
-
readonly scale:
|
|
477
|
+
readonly property: 'textShadow';
|
|
478
|
+
readonly scale: 'shadows';
|
|
479
479
|
readonly strict: false;
|
|
480
480
|
};
|
|
481
481
|
};
|
|
482
482
|
export declare const layout: {
|
|
483
|
+
readonly justifySelf: {
|
|
484
|
+
readonly property: 'justifySelf';
|
|
485
|
+
};
|
|
486
|
+
readonly alignSelf: {
|
|
487
|
+
readonly property: 'alignSelf';
|
|
488
|
+
};
|
|
489
|
+
readonly gridArea: {
|
|
490
|
+
readonly property: 'gridArea';
|
|
491
|
+
};
|
|
492
|
+
readonly area: {
|
|
493
|
+
readonly property: 'gridArea';
|
|
494
|
+
};
|
|
483
495
|
readonly flexBasis: {
|
|
484
|
-
readonly property:
|
|
496
|
+
readonly property: 'flexBasis';
|
|
485
497
|
};
|
|
486
498
|
readonly flexShrink: {
|
|
487
|
-
readonly property:
|
|
499
|
+
readonly property: 'flexShrink';
|
|
488
500
|
};
|
|
489
501
|
readonly flexGrow: {
|
|
490
|
-
readonly property:
|
|
502
|
+
readonly property: 'flexGrow';
|
|
491
503
|
};
|
|
492
504
|
readonly order: {
|
|
493
|
-
readonly property:
|
|
505
|
+
readonly property: 'order';
|
|
494
506
|
};
|
|
495
507
|
readonly gridColumn: {
|
|
496
|
-
readonly property:
|
|
508
|
+
readonly property: 'gridColumn';
|
|
497
509
|
};
|
|
498
510
|
readonly gridRow: {
|
|
499
|
-
readonly property:
|
|
511
|
+
readonly property: 'gridRow';
|
|
500
512
|
};
|
|
501
513
|
readonly gridColumnStart: {
|
|
502
|
-
readonly property:
|
|
514
|
+
readonly property: 'gridColumnStart';
|
|
503
515
|
};
|
|
504
516
|
readonly gridRowStart: {
|
|
505
|
-
readonly property:
|
|
517
|
+
readonly property: 'gridRowStart';
|
|
506
518
|
};
|
|
507
519
|
readonly gridColumnEnd: {
|
|
508
|
-
readonly property:
|
|
520
|
+
readonly property: 'gridColumnEnd';
|
|
509
521
|
};
|
|
510
522
|
readonly gridRowEnd: {
|
|
511
|
-
readonly property:
|
|
512
|
-
};
|
|
513
|
-
readonly justifySelf: {
|
|
514
|
-
readonly property: "justifySelf";
|
|
515
|
-
};
|
|
516
|
-
readonly alignSelf: {
|
|
517
|
-
readonly property: "alignSelf";
|
|
518
|
-
};
|
|
519
|
-
readonly gridArea: {
|
|
520
|
-
readonly property: "gridArea";
|
|
521
|
-
};
|
|
522
|
-
readonly area: {
|
|
523
|
-
readonly property: "gridArea";
|
|
523
|
+
readonly property: 'gridRowEnd';
|
|
524
524
|
};
|
|
525
525
|
readonly display: {
|
|
526
|
-
readonly property:
|
|
526
|
+
readonly property: 'display';
|
|
527
527
|
};
|
|
528
528
|
readonly overflow: {
|
|
529
|
-
readonly property:
|
|
529
|
+
readonly property: 'overflow';
|
|
530
530
|
};
|
|
531
531
|
readonly overflowX: {
|
|
532
|
-
readonly property:
|
|
532
|
+
readonly property: 'overflowX';
|
|
533
533
|
};
|
|
534
534
|
readonly overflowY: {
|
|
535
|
-
readonly property:
|
|
535
|
+
readonly property: 'overflowY';
|
|
536
536
|
};
|
|
537
537
|
readonly size: {
|
|
538
|
-
readonly property:
|
|
539
|
-
readonly properties: readonly [
|
|
540
|
-
readonly transform: import("
|
|
538
|
+
readonly property: 'width';
|
|
539
|
+
readonly properties: readonly ['width', 'height'];
|
|
540
|
+
readonly transform: import("..").NamedTransform;
|
|
541
541
|
};
|
|
542
542
|
readonly width: {
|
|
543
|
-
readonly property:
|
|
544
|
-
readonly transform: import("
|
|
543
|
+
readonly property: 'width';
|
|
544
|
+
readonly transform: import("..").NamedTransform;
|
|
545
545
|
};
|
|
546
546
|
readonly w: {
|
|
547
|
-
readonly property:
|
|
548
|
-
readonly transform: import("
|
|
547
|
+
readonly property: 'width';
|
|
548
|
+
readonly transform: import("..").NamedTransform;
|
|
549
549
|
};
|
|
550
550
|
readonly minWidth: {
|
|
551
|
-
readonly property:
|
|
552
|
-
readonly transform: import("
|
|
551
|
+
readonly property: 'minWidth';
|
|
552
|
+
readonly transform: import("..").NamedTransform;
|
|
553
553
|
};
|
|
554
554
|
readonly minW: {
|
|
555
|
-
readonly property:
|
|
556
|
-
readonly transform: import("
|
|
555
|
+
readonly property: 'minWidth';
|
|
556
|
+
readonly transform: import("..").NamedTransform;
|
|
557
557
|
};
|
|
558
558
|
readonly maxWidth: {
|
|
559
|
-
readonly property:
|
|
560
|
-
readonly transform: import("
|
|
559
|
+
readonly property: 'maxWidth';
|
|
560
|
+
readonly transform: import("..").NamedTransform;
|
|
561
561
|
};
|
|
562
562
|
readonly maxW: {
|
|
563
|
-
readonly property:
|
|
564
|
-
readonly transform: import("
|
|
563
|
+
readonly property: 'maxWidth';
|
|
564
|
+
readonly transform: import("..").NamedTransform;
|
|
565
565
|
};
|
|
566
566
|
readonly height: {
|
|
567
|
-
readonly property:
|
|
568
|
-
readonly transform: import("
|
|
567
|
+
readonly property: 'height';
|
|
568
|
+
readonly transform: import("..").NamedTransform;
|
|
569
569
|
};
|
|
570
570
|
readonly h: {
|
|
571
|
-
readonly property:
|
|
572
|
-
readonly transform: import("
|
|
571
|
+
readonly property: 'height';
|
|
572
|
+
readonly transform: import("..").NamedTransform;
|
|
573
573
|
};
|
|
574
574
|
readonly minHeight: {
|
|
575
|
-
readonly property:
|
|
576
|
-
readonly transform: import("
|
|
575
|
+
readonly property: 'minHeight';
|
|
576
|
+
readonly transform: import("..").NamedTransform;
|
|
577
577
|
};
|
|
578
578
|
readonly minH: {
|
|
579
|
-
readonly property:
|
|
580
|
-
readonly transform: import("
|
|
579
|
+
readonly property: 'minHeight';
|
|
580
|
+
readonly transform: import("..").NamedTransform;
|
|
581
581
|
};
|
|
582
582
|
readonly maxHeight: {
|
|
583
|
-
readonly property:
|
|
584
|
-
readonly transform: import("
|
|
583
|
+
readonly property: 'maxHeight';
|
|
584
|
+
readonly transform: import("..").NamedTransform;
|
|
585
585
|
};
|
|
586
586
|
readonly maxH: {
|
|
587
|
-
readonly property:
|
|
588
|
-
readonly transform: import("
|
|
587
|
+
readonly property: 'maxHeight';
|
|
588
|
+
readonly transform: import("..").NamedTransform;
|
|
589
589
|
};
|
|
590
590
|
readonly verticalAlign: {
|
|
591
|
-
readonly property:
|
|
591
|
+
readonly property: 'verticalAlign';
|
|
592
592
|
};
|
|
593
593
|
};
|
|
594
594
|
export declare const typography: {
|
|
595
595
|
readonly fontFamily: {
|
|
596
|
-
readonly property:
|
|
597
|
-
readonly scale:
|
|
596
|
+
readonly property: 'fontFamily';
|
|
597
|
+
readonly scale: 'fonts';
|
|
598
598
|
};
|
|
599
599
|
readonly fontWeight: {
|
|
600
|
-
readonly property:
|
|
601
|
-
readonly scale:
|
|
600
|
+
readonly property: 'fontWeight';
|
|
601
|
+
readonly scale: 'fontWeights';
|
|
602
602
|
readonly strict: false;
|
|
603
603
|
};
|
|
604
604
|
readonly lineHeight: {
|
|
605
|
-
readonly property:
|
|
606
|
-
readonly scale:
|
|
605
|
+
readonly property: 'lineHeight';
|
|
606
|
+
readonly scale: 'lineHeights';
|
|
607
607
|
readonly strict: false;
|
|
608
608
|
};
|
|
609
609
|
readonly fontSize: {
|
|
610
|
-
readonly property:
|
|
611
|
-
readonly scale:
|
|
610
|
+
readonly property: 'fontSize';
|
|
611
|
+
readonly scale: 'fontSizes';
|
|
612
612
|
};
|
|
613
613
|
readonly letterSpacing: {
|
|
614
|
-
readonly property:
|
|
615
|
-
readonly scale:
|
|
614
|
+
readonly property: 'letterSpacing';
|
|
615
|
+
readonly scale: 'letterSpacings';
|
|
616
616
|
readonly strict: false;
|
|
617
617
|
};
|
|
618
618
|
readonly textAlign: {
|
|
619
|
-
readonly property:
|
|
619
|
+
readonly property: 'textAlign';
|
|
620
620
|
};
|
|
621
621
|
readonly fontStyle: {
|
|
622
|
-
readonly property:
|
|
622
|
+
readonly property: 'fontStyle';
|
|
623
623
|
};
|
|
624
624
|
readonly textDecoration: {
|
|
625
|
-
readonly property:
|
|
625
|
+
readonly property: 'textDecoration';
|
|
626
626
|
};
|
|
627
627
|
readonly textTransform: {
|
|
628
|
-
readonly property:
|
|
628
|
+
readonly property: 'textTransform';
|
|
629
629
|
};
|
|
630
630
|
readonly whiteSpace: {
|
|
631
|
-
readonly property:
|
|
631
|
+
readonly property: 'whiteSpace';
|
|
632
632
|
};
|
|
633
633
|
};
|
|
634
634
|
export declare const space: {
|
|
635
|
-
readonly p: {
|
|
636
|
-
readonly property: "padding";
|
|
637
|
-
readonly scale: "space";
|
|
638
|
-
};
|
|
639
|
-
readonly px: {
|
|
640
|
-
readonly property: "padding";
|
|
641
|
-
readonly properties: readonly ["paddingLeft", "paddingRight"];
|
|
642
|
-
readonly scale: "space";
|
|
643
|
-
};
|
|
644
|
-
readonly py: {
|
|
645
|
-
readonly property: "padding";
|
|
646
|
-
readonly properties: readonly ["paddingTop", "paddingBottom"];
|
|
647
|
-
readonly scale: "space";
|
|
648
|
-
};
|
|
649
|
-
readonly pt: {
|
|
650
|
-
readonly property: "paddingTop";
|
|
651
|
-
readonly scale: "space";
|
|
652
|
-
};
|
|
653
|
-
readonly pb: {
|
|
654
|
-
readonly property: "paddingBottom";
|
|
655
|
-
readonly scale: "space";
|
|
656
|
-
};
|
|
657
|
-
readonly pr: {
|
|
658
|
-
readonly property: "paddingRight";
|
|
659
|
-
readonly scale: "space";
|
|
660
|
-
};
|
|
661
|
-
readonly pl: {
|
|
662
|
-
readonly property: "paddingLeft";
|
|
663
|
-
readonly scale: "space";
|
|
664
|
-
};
|
|
665
635
|
readonly m: {
|
|
666
|
-
readonly property:
|
|
667
|
-
readonly scale:
|
|
636
|
+
readonly property: 'margin';
|
|
637
|
+
readonly scale: 'space';
|
|
668
638
|
readonly negative: true;
|
|
669
639
|
};
|
|
670
640
|
readonly mx: {
|
|
671
|
-
readonly property:
|
|
672
|
-
readonly properties: readonly [
|
|
673
|
-
readonly scale:
|
|
641
|
+
readonly property: 'margin';
|
|
642
|
+
readonly properties: readonly ['marginLeft', 'marginRight'];
|
|
643
|
+
readonly scale: 'space';
|
|
674
644
|
readonly negative: true;
|
|
675
645
|
};
|
|
676
646
|
readonly my: {
|
|
677
|
-
readonly property:
|
|
678
|
-
readonly properties: readonly [
|
|
679
|
-
readonly scale:
|
|
647
|
+
readonly property: 'margin';
|
|
648
|
+
readonly properties: readonly ['marginTop', 'marginBottom'];
|
|
649
|
+
readonly scale: 'space';
|
|
680
650
|
readonly negative: true;
|
|
681
651
|
};
|
|
682
652
|
readonly mt: {
|
|
683
|
-
readonly property:
|
|
684
|
-
readonly scale:
|
|
653
|
+
readonly property: 'marginTop';
|
|
654
|
+
readonly scale: 'space';
|
|
685
655
|
readonly negative: true;
|
|
686
656
|
};
|
|
687
657
|
readonly mb: {
|
|
688
|
-
readonly property:
|
|
689
|
-
readonly scale:
|
|
658
|
+
readonly property: 'marginBottom';
|
|
659
|
+
readonly scale: 'space';
|
|
690
660
|
readonly negative: true;
|
|
691
661
|
};
|
|
692
662
|
readonly mr: {
|
|
693
|
-
readonly property:
|
|
694
|
-
readonly scale:
|
|
663
|
+
readonly property: 'marginRight';
|
|
664
|
+
readonly scale: 'space';
|
|
695
665
|
readonly negative: true;
|
|
696
666
|
};
|
|
697
667
|
readonly ml: {
|
|
698
|
-
readonly property:
|
|
699
|
-
readonly scale:
|
|
668
|
+
readonly property: 'marginLeft';
|
|
669
|
+
readonly scale: 'space';
|
|
700
670
|
readonly negative: true;
|
|
701
671
|
};
|
|
672
|
+
readonly p: {
|
|
673
|
+
readonly property: 'padding';
|
|
674
|
+
readonly scale: 'space';
|
|
675
|
+
};
|
|
676
|
+
readonly px: {
|
|
677
|
+
readonly property: 'padding';
|
|
678
|
+
readonly properties: readonly ['paddingLeft', 'paddingRight'];
|
|
679
|
+
readonly scale: 'space';
|
|
680
|
+
};
|
|
681
|
+
readonly py: {
|
|
682
|
+
readonly property: 'padding';
|
|
683
|
+
readonly properties: readonly ['paddingTop', 'paddingBottom'];
|
|
684
|
+
readonly scale: 'space';
|
|
685
|
+
};
|
|
686
|
+
readonly pt: {
|
|
687
|
+
readonly property: 'paddingTop';
|
|
688
|
+
readonly scale: 'space';
|
|
689
|
+
};
|
|
690
|
+
readonly pb: {
|
|
691
|
+
readonly property: 'paddingBottom';
|
|
692
|
+
readonly scale: 'space';
|
|
693
|
+
};
|
|
694
|
+
readonly pr: {
|
|
695
|
+
readonly property: 'paddingRight';
|
|
696
|
+
readonly scale: 'space';
|
|
697
|
+
};
|
|
698
|
+
readonly pl: {
|
|
699
|
+
readonly property: 'paddingLeft';
|
|
700
|
+
readonly scale: 'space';
|
|
701
|
+
};
|
|
702
702
|
};
|
|
703
703
|
export declare const transitions: {
|
|
704
704
|
readonly transition: {
|
|
705
|
-
readonly property:
|
|
706
|
-
readonly scale:
|
|
705
|
+
readonly property: 'transition';
|
|
706
|
+
readonly scale: 'transitions';
|
|
707
707
|
};
|
|
708
708
|
readonly animation: {
|
|
709
|
-
readonly property:
|
|
709
|
+
readonly property: 'animation';
|
|
710
710
|
};
|
|
711
711
|
readonly animationPlayState: {
|
|
712
|
-
readonly property:
|
|
712
|
+
readonly property: 'animationPlayState';
|
|
713
713
|
};
|
|
714
714
|
};
|
|
715
715
|
export declare const mode: {
|
|
716
716
|
readonly mode: {
|
|
717
|
-
readonly property:
|
|
718
|
-
readonly scale:
|
|
717
|
+
readonly property: 'none';
|
|
718
|
+
readonly scale: 'mode';
|
|
719
719
|
};
|
|
720
720
|
};
|
|
721
721
|
export declare const vars: {
|
|
722
722
|
readonly vars: {
|
|
723
|
-
readonly property:
|
|
723
|
+
readonly property: 'variables';
|
|
724
724
|
};
|
|
725
725
|
};
|
|
726
726
|
//# sourceMappingURL=index.d.ts.map
|