@codecademy/gamut-styles 17.12.0-alpha.f66feb.0 → 17.12.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/dist/ColorMode.d.ts +221 -44
- package/dist/GamutProvider.d.ts +5 -0
- package/dist/GamutProvider.js +30 -14
- package/dist/variance/config.d.ts +146 -28
- package/dist/variance/config.js +73 -14
- package/dist/variance/props.d.ts +292 -56
- package/dist/variance/utils.d.ts +3 -3
- package/package.json +6 -4
package/dist/variance/props.d.ts
CHANGED
|
@@ -200,43 +200,82 @@ export declare const layout: import("@codecademy/variance/dist/types/config").Pa
|
|
|
200
200
|
readonly property: "overflow";
|
|
201
201
|
};
|
|
202
202
|
readonly overflowX: {
|
|
203
|
-
readonly property:
|
|
203
|
+
readonly property: {
|
|
204
|
+
readonly physical: "overflowX";
|
|
205
|
+
readonly logical: "overflowInline";
|
|
206
|
+
};
|
|
207
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
204
208
|
};
|
|
205
209
|
readonly overflowY: {
|
|
206
|
-
readonly property:
|
|
210
|
+
readonly property: {
|
|
211
|
+
readonly physical: "overflowY";
|
|
212
|
+
readonly logical: "overflowBlock";
|
|
213
|
+
};
|
|
214
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
207
215
|
};
|
|
208
216
|
readonly dimensions: {
|
|
209
217
|
readonly property: "width";
|
|
210
|
-
readonly properties:
|
|
218
|
+
readonly properties: {
|
|
219
|
+
readonly physical: readonly ["width", "height"];
|
|
220
|
+
readonly logical: readonly ["inlineSize", "blockSize"];
|
|
221
|
+
};
|
|
222
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
211
223
|
readonly transform: (value: string | number) => string | 0;
|
|
212
224
|
};
|
|
213
225
|
readonly width: {
|
|
214
|
-
readonly property:
|
|
226
|
+
readonly property: {
|
|
227
|
+
readonly physical: "width";
|
|
228
|
+
readonly logical: "inlineSize";
|
|
229
|
+
};
|
|
230
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
215
231
|
readonly transform: (value: string | number) => string | 0;
|
|
216
232
|
};
|
|
217
233
|
readonly minWidth: {
|
|
218
|
-
readonly property:
|
|
234
|
+
readonly property: {
|
|
235
|
+
readonly physical: "minWidth";
|
|
236
|
+
readonly logical: "minInlineSize";
|
|
237
|
+
};
|
|
238
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
219
239
|
readonly transform: (value: string | number) => string | 0;
|
|
220
240
|
};
|
|
221
241
|
readonly maxWidth: {
|
|
222
|
-
readonly property:
|
|
242
|
+
readonly property: {
|
|
243
|
+
readonly physical: "maxWidth";
|
|
244
|
+
readonly logical: "maxInlineSize";
|
|
245
|
+
};
|
|
246
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
223
247
|
readonly transform: (value: string | number) => string | 0;
|
|
224
248
|
};
|
|
225
249
|
readonly height: {
|
|
226
|
-
readonly property:
|
|
250
|
+
readonly property: {
|
|
251
|
+
readonly physical: "height";
|
|
252
|
+
readonly logical: "blockSize";
|
|
253
|
+
};
|
|
254
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
227
255
|
readonly transform: (value: string | number) => string | 0;
|
|
228
256
|
};
|
|
229
257
|
readonly minHeight: {
|
|
230
|
-
readonly property:
|
|
258
|
+
readonly property: {
|
|
259
|
+
readonly physical: "minHeight";
|
|
260
|
+
readonly logical: "minBlockSize";
|
|
261
|
+
};
|
|
262
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
231
263
|
readonly transform: (value: string | number) => string | 0;
|
|
232
264
|
};
|
|
233
265
|
readonly maxHeight: {
|
|
234
|
-
readonly property:
|
|
266
|
+
readonly property: {
|
|
267
|
+
readonly physical: "maxHeight";
|
|
268
|
+
readonly logical: "maxBlockSize";
|
|
269
|
+
};
|
|
270
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
235
271
|
readonly transform: (value: string | number) => string | 0;
|
|
236
272
|
};
|
|
237
273
|
readonly verticalAlign: {
|
|
238
274
|
readonly property: "verticalAlign";
|
|
239
275
|
};
|
|
276
|
+
readonly direction: {
|
|
277
|
+
readonly property: "direction";
|
|
278
|
+
};
|
|
240
279
|
}>>;
|
|
241
280
|
export declare const positioning: import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
242
281
|
readonly position: {
|
|
@@ -244,23 +283,43 @@ export declare const positioning: import("@codecademy/variance/dist/types/config
|
|
|
244
283
|
};
|
|
245
284
|
readonly inset: {
|
|
246
285
|
readonly property: "inset";
|
|
247
|
-
readonly properties:
|
|
286
|
+
readonly properties: {
|
|
287
|
+
readonly physical: readonly ["top", "right", "bottom", "left"];
|
|
288
|
+
readonly logical: readonly ["insetBlockStart", "insetInlineEnd", "insetBlockEnd", "insetInlineStart"];
|
|
289
|
+
};
|
|
290
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
248
291
|
readonly transform: (value: string | number) => string | 0;
|
|
249
292
|
};
|
|
250
293
|
readonly top: {
|
|
251
|
-
readonly property:
|
|
294
|
+
readonly property: {
|
|
295
|
+
readonly physical: "top";
|
|
296
|
+
readonly logical: "insetBlockStart";
|
|
297
|
+
};
|
|
298
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
252
299
|
readonly transform: (value: string | number) => string | 0;
|
|
253
300
|
};
|
|
254
301
|
readonly right: {
|
|
255
|
-
readonly property:
|
|
302
|
+
readonly property: {
|
|
303
|
+
readonly physical: "right";
|
|
304
|
+
readonly logical: "insetInlineEnd";
|
|
305
|
+
};
|
|
306
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
256
307
|
readonly transform: (value: string | number) => string | 0;
|
|
257
308
|
};
|
|
258
309
|
readonly bottom: {
|
|
259
|
-
readonly property:
|
|
310
|
+
readonly property: {
|
|
311
|
+
readonly physical: "bottom";
|
|
312
|
+
readonly logical: "insetBlockEnd";
|
|
313
|
+
};
|
|
314
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
260
315
|
readonly transform: (value: string | number) => string | 0;
|
|
261
316
|
};
|
|
262
317
|
readonly left: {
|
|
263
|
-
readonly property:
|
|
318
|
+
readonly property: {
|
|
319
|
+
readonly physical: "left";
|
|
320
|
+
readonly logical: "insetInlineStart";
|
|
321
|
+
};
|
|
322
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
264
323
|
readonly transform: (value: string | number) => string | 0;
|
|
265
324
|
};
|
|
266
325
|
readonly zIndex: {
|
|
@@ -1118,23 +1177,43 @@ export declare const css: import("@codecademy/variance/dist/types/config").CSS<i
|
|
|
1118
1177
|
};
|
|
1119
1178
|
inset: {
|
|
1120
1179
|
readonly property: "inset";
|
|
1121
|
-
readonly properties:
|
|
1180
|
+
readonly properties: {
|
|
1181
|
+
readonly physical: readonly ["top", "right", "bottom", "left"];
|
|
1182
|
+
readonly logical: readonly ["insetBlockStart", "insetInlineEnd", "insetBlockEnd", "insetInlineStart"];
|
|
1183
|
+
};
|
|
1184
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1122
1185
|
readonly transform: (value: string | number) => string | 0;
|
|
1123
1186
|
};
|
|
1124
1187
|
top: {
|
|
1125
|
-
readonly property:
|
|
1188
|
+
readonly property: {
|
|
1189
|
+
readonly physical: "top";
|
|
1190
|
+
readonly logical: "insetBlockStart";
|
|
1191
|
+
};
|
|
1192
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1126
1193
|
readonly transform: (value: string | number) => string | 0;
|
|
1127
1194
|
};
|
|
1128
1195
|
right: {
|
|
1129
|
-
readonly property:
|
|
1196
|
+
readonly property: {
|
|
1197
|
+
readonly physical: "right";
|
|
1198
|
+
readonly logical: "insetInlineEnd";
|
|
1199
|
+
};
|
|
1200
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1130
1201
|
readonly transform: (value: string | number) => string | 0;
|
|
1131
1202
|
};
|
|
1132
1203
|
bottom: {
|
|
1133
|
-
readonly property:
|
|
1204
|
+
readonly property: {
|
|
1205
|
+
readonly physical: "bottom";
|
|
1206
|
+
readonly logical: "insetBlockEnd";
|
|
1207
|
+
};
|
|
1208
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1134
1209
|
readonly transform: (value: string | number) => string | 0;
|
|
1135
1210
|
};
|
|
1136
1211
|
left: {
|
|
1137
|
-
readonly property:
|
|
1212
|
+
readonly property: {
|
|
1213
|
+
readonly physical: "left";
|
|
1214
|
+
readonly logical: "insetInlineStart";
|
|
1215
|
+
};
|
|
1216
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1138
1217
|
readonly transform: (value: string | number) => string | 0;
|
|
1139
1218
|
};
|
|
1140
1219
|
zIndex: {
|
|
@@ -1192,43 +1271,82 @@ export declare const css: import("@codecademy/variance/dist/types/config").CSS<i
|
|
|
1192
1271
|
readonly property: "overflow";
|
|
1193
1272
|
};
|
|
1194
1273
|
overflowX: {
|
|
1195
|
-
readonly property:
|
|
1274
|
+
readonly property: {
|
|
1275
|
+
readonly physical: "overflowX";
|
|
1276
|
+
readonly logical: "overflowInline";
|
|
1277
|
+
};
|
|
1278
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1196
1279
|
};
|
|
1197
1280
|
overflowY: {
|
|
1198
|
-
readonly property:
|
|
1281
|
+
readonly property: {
|
|
1282
|
+
readonly physical: "overflowY";
|
|
1283
|
+
readonly logical: "overflowBlock";
|
|
1284
|
+
};
|
|
1285
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1199
1286
|
};
|
|
1200
1287
|
dimensions: {
|
|
1201
1288
|
readonly property: "width";
|
|
1202
|
-
readonly properties:
|
|
1289
|
+
readonly properties: {
|
|
1290
|
+
readonly physical: readonly ["width", "height"];
|
|
1291
|
+
readonly logical: readonly ["inlineSize", "blockSize"];
|
|
1292
|
+
};
|
|
1293
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1203
1294
|
readonly transform: (value: string | number) => string | 0;
|
|
1204
1295
|
};
|
|
1205
1296
|
width: {
|
|
1206
|
-
readonly property:
|
|
1297
|
+
readonly property: {
|
|
1298
|
+
readonly physical: "width";
|
|
1299
|
+
readonly logical: "inlineSize";
|
|
1300
|
+
};
|
|
1301
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1207
1302
|
readonly transform: (value: string | number) => string | 0;
|
|
1208
1303
|
};
|
|
1209
1304
|
minWidth: {
|
|
1210
|
-
readonly property:
|
|
1305
|
+
readonly property: {
|
|
1306
|
+
readonly physical: "minWidth";
|
|
1307
|
+
readonly logical: "minInlineSize";
|
|
1308
|
+
};
|
|
1309
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1211
1310
|
readonly transform: (value: string | number) => string | 0;
|
|
1212
1311
|
};
|
|
1213
1312
|
maxWidth: {
|
|
1214
|
-
readonly property:
|
|
1313
|
+
readonly property: {
|
|
1314
|
+
readonly physical: "maxWidth";
|
|
1315
|
+
readonly logical: "maxInlineSize";
|
|
1316
|
+
};
|
|
1317
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1215
1318
|
readonly transform: (value: string | number) => string | 0;
|
|
1216
1319
|
};
|
|
1217
1320
|
height: {
|
|
1218
|
-
readonly property:
|
|
1321
|
+
readonly property: {
|
|
1322
|
+
readonly physical: "height";
|
|
1323
|
+
readonly logical: "blockSize";
|
|
1324
|
+
};
|
|
1325
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1219
1326
|
readonly transform: (value: string | number) => string | 0;
|
|
1220
1327
|
};
|
|
1221
1328
|
minHeight: {
|
|
1222
|
-
readonly property:
|
|
1329
|
+
readonly property: {
|
|
1330
|
+
readonly physical: "minHeight";
|
|
1331
|
+
readonly logical: "minBlockSize";
|
|
1332
|
+
};
|
|
1333
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1223
1334
|
readonly transform: (value: string | number) => string | 0;
|
|
1224
1335
|
};
|
|
1225
1336
|
maxHeight: {
|
|
1226
|
-
readonly property:
|
|
1337
|
+
readonly property: {
|
|
1338
|
+
readonly physical: "maxHeight";
|
|
1339
|
+
readonly logical: "maxBlockSize";
|
|
1340
|
+
};
|
|
1341
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1227
1342
|
readonly transform: (value: string | number) => string | 0;
|
|
1228
1343
|
};
|
|
1229
1344
|
verticalAlign: {
|
|
1230
1345
|
readonly property: "verticalAlign";
|
|
1231
1346
|
};
|
|
1347
|
+
direction: {
|
|
1348
|
+
readonly property: "direction";
|
|
1349
|
+
};
|
|
1232
1350
|
justifyContent: {
|
|
1233
1351
|
readonly property: "justifyContent";
|
|
1234
1352
|
};
|
|
@@ -1736,23 +1854,43 @@ export declare const variant: import("@codecademy/variance/dist/types/config").V
|
|
|
1736
1854
|
};
|
|
1737
1855
|
inset: {
|
|
1738
1856
|
readonly property: "inset";
|
|
1739
|
-
readonly properties:
|
|
1857
|
+
readonly properties: {
|
|
1858
|
+
readonly physical: readonly ["top", "right", "bottom", "left"];
|
|
1859
|
+
readonly logical: readonly ["insetBlockStart", "insetInlineEnd", "insetBlockEnd", "insetInlineStart"];
|
|
1860
|
+
};
|
|
1861
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1740
1862
|
readonly transform: (value: string | number) => string | 0;
|
|
1741
1863
|
};
|
|
1742
1864
|
top: {
|
|
1743
|
-
readonly property:
|
|
1865
|
+
readonly property: {
|
|
1866
|
+
readonly physical: "top";
|
|
1867
|
+
readonly logical: "insetBlockStart";
|
|
1868
|
+
};
|
|
1869
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1744
1870
|
readonly transform: (value: string | number) => string | 0;
|
|
1745
1871
|
};
|
|
1746
1872
|
right: {
|
|
1747
|
-
readonly property:
|
|
1873
|
+
readonly property: {
|
|
1874
|
+
readonly physical: "right";
|
|
1875
|
+
readonly logical: "insetInlineEnd";
|
|
1876
|
+
};
|
|
1877
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1748
1878
|
readonly transform: (value: string | number) => string | 0;
|
|
1749
1879
|
};
|
|
1750
1880
|
bottom: {
|
|
1751
|
-
readonly property:
|
|
1881
|
+
readonly property: {
|
|
1882
|
+
readonly physical: "bottom";
|
|
1883
|
+
readonly logical: "insetBlockEnd";
|
|
1884
|
+
};
|
|
1885
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1752
1886
|
readonly transform: (value: string | number) => string | 0;
|
|
1753
1887
|
};
|
|
1754
1888
|
left: {
|
|
1755
|
-
readonly property:
|
|
1889
|
+
readonly property: {
|
|
1890
|
+
readonly physical: "left";
|
|
1891
|
+
readonly logical: "insetInlineStart";
|
|
1892
|
+
};
|
|
1893
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1756
1894
|
readonly transform: (value: string | number) => string | 0;
|
|
1757
1895
|
};
|
|
1758
1896
|
zIndex: {
|
|
@@ -1810,43 +1948,82 @@ export declare const variant: import("@codecademy/variance/dist/types/config").V
|
|
|
1810
1948
|
readonly property: "overflow";
|
|
1811
1949
|
};
|
|
1812
1950
|
overflowX: {
|
|
1813
|
-
readonly property:
|
|
1951
|
+
readonly property: {
|
|
1952
|
+
readonly physical: "overflowX";
|
|
1953
|
+
readonly logical: "overflowInline";
|
|
1954
|
+
};
|
|
1955
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1814
1956
|
};
|
|
1815
1957
|
overflowY: {
|
|
1816
|
-
readonly property:
|
|
1958
|
+
readonly property: {
|
|
1959
|
+
readonly physical: "overflowY";
|
|
1960
|
+
readonly logical: "overflowBlock";
|
|
1961
|
+
};
|
|
1962
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1817
1963
|
};
|
|
1818
1964
|
dimensions: {
|
|
1819
1965
|
readonly property: "width";
|
|
1820
|
-
readonly properties:
|
|
1966
|
+
readonly properties: {
|
|
1967
|
+
readonly physical: readonly ["width", "height"];
|
|
1968
|
+
readonly logical: readonly ["inlineSize", "blockSize"];
|
|
1969
|
+
};
|
|
1970
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1821
1971
|
readonly transform: (value: string | number) => string | 0;
|
|
1822
1972
|
};
|
|
1823
1973
|
width: {
|
|
1824
|
-
readonly property:
|
|
1974
|
+
readonly property: {
|
|
1975
|
+
readonly physical: "width";
|
|
1976
|
+
readonly logical: "inlineSize";
|
|
1977
|
+
};
|
|
1978
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1825
1979
|
readonly transform: (value: string | number) => string | 0;
|
|
1826
1980
|
};
|
|
1827
1981
|
minWidth: {
|
|
1828
|
-
readonly property:
|
|
1982
|
+
readonly property: {
|
|
1983
|
+
readonly physical: "minWidth";
|
|
1984
|
+
readonly logical: "minInlineSize";
|
|
1985
|
+
};
|
|
1986
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1829
1987
|
readonly transform: (value: string | number) => string | 0;
|
|
1830
1988
|
};
|
|
1831
1989
|
maxWidth: {
|
|
1832
|
-
readonly property:
|
|
1990
|
+
readonly property: {
|
|
1991
|
+
readonly physical: "maxWidth";
|
|
1992
|
+
readonly logical: "maxInlineSize";
|
|
1993
|
+
};
|
|
1994
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1833
1995
|
readonly transform: (value: string | number) => string | 0;
|
|
1834
1996
|
};
|
|
1835
1997
|
height: {
|
|
1836
|
-
readonly property:
|
|
1998
|
+
readonly property: {
|
|
1999
|
+
readonly physical: "height";
|
|
2000
|
+
readonly logical: "blockSize";
|
|
2001
|
+
};
|
|
2002
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1837
2003
|
readonly transform: (value: string | number) => string | 0;
|
|
1838
2004
|
};
|
|
1839
2005
|
minHeight: {
|
|
1840
|
-
readonly property:
|
|
2006
|
+
readonly property: {
|
|
2007
|
+
readonly physical: "minHeight";
|
|
2008
|
+
readonly logical: "minBlockSize";
|
|
2009
|
+
};
|
|
2010
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1841
2011
|
readonly transform: (value: string | number) => string | 0;
|
|
1842
2012
|
};
|
|
1843
2013
|
maxHeight: {
|
|
1844
|
-
readonly property:
|
|
2014
|
+
readonly property: {
|
|
2015
|
+
readonly physical: "maxHeight";
|
|
2016
|
+
readonly logical: "maxBlockSize";
|
|
2017
|
+
};
|
|
2018
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1845
2019
|
readonly transform: (value: string | number) => string | 0;
|
|
1846
2020
|
};
|
|
1847
2021
|
verticalAlign: {
|
|
1848
2022
|
readonly property: "verticalAlign";
|
|
1849
2023
|
};
|
|
2024
|
+
direction: {
|
|
2025
|
+
readonly property: "direction";
|
|
2026
|
+
};
|
|
1850
2027
|
justifyContent: {
|
|
1851
2028
|
readonly property: "justifyContent";
|
|
1852
2029
|
};
|
|
@@ -2354,23 +2531,43 @@ export declare const states: import("@codecademy/variance/dist/types/config").St
|
|
|
2354
2531
|
};
|
|
2355
2532
|
inset: {
|
|
2356
2533
|
readonly property: "inset";
|
|
2357
|
-
readonly properties:
|
|
2534
|
+
readonly properties: {
|
|
2535
|
+
readonly physical: readonly ["top", "right", "bottom", "left"];
|
|
2536
|
+
readonly logical: readonly ["insetBlockStart", "insetInlineEnd", "insetBlockEnd", "insetInlineStart"];
|
|
2537
|
+
};
|
|
2538
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2358
2539
|
readonly transform: (value: string | number) => string | 0;
|
|
2359
2540
|
};
|
|
2360
2541
|
top: {
|
|
2361
|
-
readonly property:
|
|
2542
|
+
readonly property: {
|
|
2543
|
+
readonly physical: "top";
|
|
2544
|
+
readonly logical: "insetBlockStart";
|
|
2545
|
+
};
|
|
2546
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2362
2547
|
readonly transform: (value: string | number) => string | 0;
|
|
2363
2548
|
};
|
|
2364
2549
|
right: {
|
|
2365
|
-
readonly property:
|
|
2550
|
+
readonly property: {
|
|
2551
|
+
readonly physical: "right";
|
|
2552
|
+
readonly logical: "insetInlineEnd";
|
|
2553
|
+
};
|
|
2554
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2366
2555
|
readonly transform: (value: string | number) => string | 0;
|
|
2367
2556
|
};
|
|
2368
2557
|
bottom: {
|
|
2369
|
-
readonly property:
|
|
2558
|
+
readonly property: {
|
|
2559
|
+
readonly physical: "bottom";
|
|
2560
|
+
readonly logical: "insetBlockEnd";
|
|
2561
|
+
};
|
|
2562
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2370
2563
|
readonly transform: (value: string | number) => string | 0;
|
|
2371
2564
|
};
|
|
2372
2565
|
left: {
|
|
2373
|
-
readonly property:
|
|
2566
|
+
readonly property: {
|
|
2567
|
+
readonly physical: "left";
|
|
2568
|
+
readonly logical: "insetInlineStart";
|
|
2569
|
+
};
|
|
2570
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2374
2571
|
readonly transform: (value: string | number) => string | 0;
|
|
2375
2572
|
};
|
|
2376
2573
|
zIndex: {
|
|
@@ -2428,43 +2625,82 @@ export declare const states: import("@codecademy/variance/dist/types/config").St
|
|
|
2428
2625
|
readonly property: "overflow";
|
|
2429
2626
|
};
|
|
2430
2627
|
overflowX: {
|
|
2431
|
-
readonly property:
|
|
2628
|
+
readonly property: {
|
|
2629
|
+
readonly physical: "overflowX";
|
|
2630
|
+
readonly logical: "overflowInline";
|
|
2631
|
+
};
|
|
2632
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2432
2633
|
};
|
|
2433
2634
|
overflowY: {
|
|
2434
|
-
readonly property:
|
|
2635
|
+
readonly property: {
|
|
2636
|
+
readonly physical: "overflowY";
|
|
2637
|
+
readonly logical: "overflowBlock";
|
|
2638
|
+
};
|
|
2639
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2435
2640
|
};
|
|
2436
2641
|
dimensions: {
|
|
2437
2642
|
readonly property: "width";
|
|
2438
|
-
readonly properties:
|
|
2643
|
+
readonly properties: {
|
|
2644
|
+
readonly physical: readonly ["width", "height"];
|
|
2645
|
+
readonly logical: readonly ["inlineSize", "blockSize"];
|
|
2646
|
+
};
|
|
2647
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2439
2648
|
readonly transform: (value: string | number) => string | 0;
|
|
2440
2649
|
};
|
|
2441
2650
|
width: {
|
|
2442
|
-
readonly property:
|
|
2651
|
+
readonly property: {
|
|
2652
|
+
readonly physical: "width";
|
|
2653
|
+
readonly logical: "inlineSize";
|
|
2654
|
+
};
|
|
2655
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2443
2656
|
readonly transform: (value: string | number) => string | 0;
|
|
2444
2657
|
};
|
|
2445
2658
|
minWidth: {
|
|
2446
|
-
readonly property:
|
|
2659
|
+
readonly property: {
|
|
2660
|
+
readonly physical: "minWidth";
|
|
2661
|
+
readonly logical: "minInlineSize";
|
|
2662
|
+
};
|
|
2663
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2447
2664
|
readonly transform: (value: string | number) => string | 0;
|
|
2448
2665
|
};
|
|
2449
2666
|
maxWidth: {
|
|
2450
|
-
readonly property:
|
|
2667
|
+
readonly property: {
|
|
2668
|
+
readonly physical: "maxWidth";
|
|
2669
|
+
readonly logical: "maxInlineSize";
|
|
2670
|
+
};
|
|
2671
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2451
2672
|
readonly transform: (value: string | number) => string | 0;
|
|
2452
2673
|
};
|
|
2453
2674
|
height: {
|
|
2454
|
-
readonly property:
|
|
2675
|
+
readonly property: {
|
|
2676
|
+
readonly physical: "height";
|
|
2677
|
+
readonly logical: "blockSize";
|
|
2678
|
+
};
|
|
2679
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2455
2680
|
readonly transform: (value: string | number) => string | 0;
|
|
2456
2681
|
};
|
|
2457
2682
|
minHeight: {
|
|
2458
|
-
readonly property:
|
|
2683
|
+
readonly property: {
|
|
2684
|
+
readonly physical: "minHeight";
|
|
2685
|
+
readonly logical: "minBlockSize";
|
|
2686
|
+
};
|
|
2687
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2459
2688
|
readonly transform: (value: string | number) => string | 0;
|
|
2460
2689
|
};
|
|
2461
2690
|
maxHeight: {
|
|
2462
|
-
readonly property:
|
|
2691
|
+
readonly property: {
|
|
2692
|
+
readonly physical: "maxHeight";
|
|
2693
|
+
readonly logical: "maxBlockSize";
|
|
2694
|
+
};
|
|
2695
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2463
2696
|
readonly transform: (value: string | number) => string | 0;
|
|
2464
2697
|
};
|
|
2465
2698
|
verticalAlign: {
|
|
2466
2699
|
readonly property: "verticalAlign";
|
|
2467
2700
|
};
|
|
2701
|
+
direction: {
|
|
2702
|
+
readonly property: "direction";
|
|
2703
|
+
};
|
|
2468
2704
|
justifyContent: {
|
|
2469
2705
|
readonly property: "justifyContent";
|
|
2470
2706
|
};
|
package/dist/variance/utils.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ThemeProps } from '@codecademy/variance';
|
|
3
|
-
declare const allPropnames: ["mode", "variant", "fontStyle" | "fontWeight" | "fontSize" | "fontFamily" | "lineHeight" | "color" | "background" | "border" | "p" | "alignContent" | "alignItems" | "alignSelf" | "backgroundImage" | "backgroundRepeat" | "backgroundSize" | "bottom" | "boxShadow" | "columnGap" | "containerType" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "listStyleImage" | "listStylePosition" | "listStyleType" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "order" | "overflowX" | "overflowY" | "position" | "right" | "rowGap" | "textAlign" | "textShadow" | "textTransform" | "top" | "verticalAlign" | "whiteSpace" | "width" | "zIndex" | "backgroundPosition" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderStyle" | "borderTop" | "borderWidth" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "inset" | "listStyle" | "overflow" | "textDecoration" | "dimensions" | "textColor" | "bg" | "borderColorX" | "borderColorY" | "borderColorLeft" | "borderColorRight" | "borderColorTop" | "borderColorBottom" | "px" | "py" | "pt" | "pb" | "pr" | "pl" | "m" | "mx" | "my" | "mt" | "mb" | "mr" | "ml" | "borderX" | "borderY" | "borderWidthX" | "borderWidthY" | "borderWidthLeft" | "borderWidthRight" | "borderWidthTop" | "borderWidthBottom" | "borderRadiusLeft" | "borderRadiusTop" | "borderRadiusBottom" | "borderRadiusRight" | "borderRadiusTopLeft" | "borderRadiusTopRight" | "borderRadiusBottomRight" | "borderRadiusBottomLeft" | "borderStyleX" | "borderStyleY" | "borderStyleLeft" | "borderStyleRight" | "borderStyleTop" | "borderStyleBottom"];
|
|
3
|
+
declare const allPropnames: ["mode", "variant", "fontStyle" | "fontWeight" | "fontSize" | "fontFamily" | "lineHeight" | "color" | "background" | "border" | "p" | "alignContent" | "alignItems" | "alignSelf" | "backgroundImage" | "backgroundRepeat" | "backgroundSize" | "bottom" | "boxShadow" | "columnGap" | "containerType" | "direction" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "listStyleImage" | "listStylePosition" | "listStyleType" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "order" | "overflowX" | "overflowY" | "position" | "right" | "rowGap" | "textAlign" | "textShadow" | "textTransform" | "top" | "verticalAlign" | "whiteSpace" | "width" | "zIndex" | "backgroundPosition" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderStyle" | "borderTop" | "borderWidth" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "inset" | "listStyle" | "overflow" | "textDecoration" | "dimensions" | "textColor" | "bg" | "borderColorX" | "borderColorY" | "borderColorLeft" | "borderColorRight" | "borderColorTop" | "borderColorBottom" | "px" | "py" | "pt" | "pb" | "pr" | "pl" | "m" | "mx" | "my" | "mt" | "mb" | "mr" | "ml" | "borderX" | "borderY" | "borderWidthX" | "borderWidthY" | "borderWidthLeft" | "borderWidthRight" | "borderWidthTop" | "borderWidthBottom" | "borderRadiusLeft" | "borderRadiusTop" | "borderRadiusBottom" | "borderRadiusRight" | "borderRadiusTopLeft" | "borderRadiusTopRight" | "borderRadiusBottomRight" | "borderRadiusBottomLeft" | "borderStyleX" | "borderStyleY" | "borderStyleLeft" | "borderStyleRight" | "borderStyleTop" | "borderStyleBottom"];
|
|
4
4
|
export type SystemPropNames = (typeof allPropnames)[number];
|
|
5
5
|
export type ElementOrProps = keyof JSX.IntrinsicElements | ThemeProps;
|
|
6
6
|
export type ForwardableProps<El extends ElementOrProps, Additional> = Exclude<El extends keyof JSX.IntrinsicElements ? keyof JSX.IntrinsicElements[El] : keyof Element, Additional | SystemPropNames>;
|
|
7
7
|
export declare function createStyledOptions<El extends ElementOrProps = 'div', Additional extends string = never>(additional?: readonly Additional[]): {
|
|
8
|
-
shouldForwardProp: (prop: PropertyKey) => prop is Exclude<El extends keyof JSX.IntrinsicElements ? keyof JSX.IntrinsicElements[El] : keyof Element, "fontStyle" | "fontWeight" | "fontSize" | "fontFamily" | "lineHeight" | "color" | "background" | "border" | "mode" | "p" | "alignContent" | "alignItems" | "alignSelf" | "backgroundImage" | "backgroundRepeat" | "backgroundSize" | "bottom" | "boxShadow" | "columnGap" | "containerType" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "listStyleImage" | "listStylePosition" | "listStyleType" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "order" | "overflowX" | "overflowY" | "position" | "right" | "rowGap" | "textAlign" | "textShadow" | "textTransform" | "top" | "verticalAlign" | "whiteSpace" | "width" | "zIndex" | "backgroundPosition" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderStyle" | "borderTop" | "borderWidth" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "inset" | "listStyle" | "overflow" | "textDecoration" | "dimensions" | "textColor" | "bg" | "borderColorX" | "borderColorY" | "borderColorLeft" | "borderColorRight" | "borderColorTop" | "borderColorBottom" | "px" | "py" | "pt" | "pb" | "pr" | "pl" | "m" | "mx" | "my" | "mt" | "mb" | "mr" | "ml" | "borderX" | "borderY" | "borderWidthX" | "borderWidthY" | "borderWidthLeft" | "borderWidthRight" | "borderWidthTop" | "borderWidthBottom" | "borderRadiusLeft" | "borderRadiusTop" | "borderRadiusBottom" | "borderRadiusRight" | "borderRadiusTopLeft" | "borderRadiusTopRight" | "borderRadiusBottomRight" | "borderRadiusBottomLeft" | "borderStyleX" | "borderStyleY" | "borderStyleLeft" | "borderStyleRight" | "borderStyleTop" | "borderStyleBottom" | "variant" | Additional>;
|
|
8
|
+
shouldForwardProp: (prop: PropertyKey) => prop is Exclude<El extends keyof JSX.IntrinsicElements ? keyof JSX.IntrinsicElements[El] : keyof Element, "fontStyle" | "fontWeight" | "fontSize" | "fontFamily" | "lineHeight" | "color" | "background" | "border" | "mode" | "p" | "alignContent" | "alignItems" | "alignSelf" | "backgroundImage" | "backgroundRepeat" | "backgroundSize" | "bottom" | "boxShadow" | "columnGap" | "containerType" | "direction" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "listStyleImage" | "listStylePosition" | "listStyleType" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "order" | "overflowX" | "overflowY" | "position" | "right" | "rowGap" | "textAlign" | "textShadow" | "textTransform" | "top" | "verticalAlign" | "whiteSpace" | "width" | "zIndex" | "backgroundPosition" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderStyle" | "borderTop" | "borderWidth" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "inset" | "listStyle" | "overflow" | "textDecoration" | "dimensions" | "textColor" | "bg" | "borderColorX" | "borderColorY" | "borderColorLeft" | "borderColorRight" | "borderColorTop" | "borderColorBottom" | "px" | "py" | "pt" | "pb" | "pr" | "pl" | "m" | "mx" | "my" | "mt" | "mb" | "mr" | "ml" | "borderX" | "borderY" | "borderWidthX" | "borderWidthY" | "borderWidthLeft" | "borderWidthRight" | "borderWidthTop" | "borderWidthBottom" | "borderRadiusLeft" | "borderRadiusTop" | "borderRadiusBottom" | "borderRadiusRight" | "borderRadiusTopLeft" | "borderRadiusTopRight" | "borderRadiusBottomRight" | "borderRadiusBottomLeft" | "borderStyleX" | "borderStyleY" | "borderStyleLeft" | "borderStyleRight" | "borderStyleTop" | "borderStyleBottom" | "variant" | Additional>;
|
|
9
9
|
};
|
|
10
10
|
/**
|
|
11
11
|
* @description
|
|
@@ -24,6 +24,6 @@ export declare function createStyledOptions<El extends ElementOrProps = 'div', A
|
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare const styledOptions: typeof createStyledOptions & {
|
|
27
|
-
shouldForwardProp: (prop: PropertyKey) => prop is "style" | "property" | "rel" | "slot" | "title" | "rev" | "id" | "nonce" | "content" | "translate" | "children" | "className" | "prefix" | "role" | "suppressHydrationWarning" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "
|
|
27
|
+
shouldForwardProp: (prop: PropertyKey) => prop is "style" | "property" | "rel" | "slot" | "title" | "rev" | "id" | "nonce" | "content" | "translate" | "children" | "className" | "part" | "prefix" | "role" | "suppressHydrationWarning" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "resource" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | keyof import("react").ClassAttributes<HTMLDivElement>;
|
|
28
28
|
};
|
|
29
29
|
export {};
|