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