@codecademy/gamut 68.0.1-alpha.4aeb6d.0 → 68.0.1-alpha.588625.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/Anchor/index.d.ts +33 -6
- package/dist/Badge/index.d.ts +35 -20
- package/dist/Box/props.d.ts +61 -150
- package/dist/Button/shared/styles.d.ts +59 -136
- package/dist/Card/elements.d.ts +183 -450
- package/dist/Form/elements/Form.d.ts +59 -136
- package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +61 -150
- package/dist/InternalFloatingCard/InternalFloatingCard.d.ts +33 -6
- package/dist/Layout/Column.d.ts +33 -6
- package/dist/List/elements.d.ts +94 -156
- package/dist/Menu/elements.d.ts +61 -150
- package/dist/Pagination/AnimatedPaginationButtons.d.ts +61 -138
- package/dist/Pagination/EllipsisButton.d.ts +5 -5
- package/dist/Pagination/EllipsisButton.js +2 -2
- package/dist/Pagination/index.js +4 -4
- package/dist/Pagination/utils.d.ts +59 -136
- package/dist/Pagination/utils.js +1 -1
- package/dist/Tabs/props.d.ts +33 -6
- package/dist/Tag/types.d.ts +33 -6
- package/dist/Toggle/elements.d.ts +2 -14
- package/dist/Typography/Text.d.ts +35 -20
- package/package.json +7 -7
package/dist/Menu/elements.d.ts
CHANGED
|
@@ -65,32 +65,59 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
|
|
|
65
65
|
readonly transform: (value: string | number) => string | 0;
|
|
66
66
|
};
|
|
67
67
|
readonly width: {
|
|
68
|
-
readonly property:
|
|
68
|
+
readonly property: {
|
|
69
|
+
readonly physical: "width";
|
|
70
|
+
readonly logical: "inlineSize";
|
|
71
|
+
};
|
|
72
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
69
73
|
readonly transform: (value: string | number) => string | 0;
|
|
70
74
|
};
|
|
71
75
|
readonly minWidth: {
|
|
72
|
-
readonly property:
|
|
76
|
+
readonly property: {
|
|
77
|
+
readonly physical: "minWidth";
|
|
78
|
+
readonly logical: "minInlineSize";
|
|
79
|
+
};
|
|
80
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
73
81
|
readonly transform: (value: string | number) => string | 0;
|
|
74
82
|
};
|
|
75
83
|
readonly maxWidth: {
|
|
76
|
-
readonly property:
|
|
84
|
+
readonly property: {
|
|
85
|
+
readonly physical: "maxWidth";
|
|
86
|
+
readonly logical: "maxInlineSize";
|
|
87
|
+
};
|
|
88
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
77
89
|
readonly transform: (value: string | number) => string | 0;
|
|
78
90
|
};
|
|
79
91
|
readonly height: {
|
|
80
|
-
readonly property:
|
|
92
|
+
readonly property: {
|
|
93
|
+
readonly physical: "height";
|
|
94
|
+
readonly logical: "blockSize";
|
|
95
|
+
};
|
|
96
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
81
97
|
readonly transform: (value: string | number) => string | 0;
|
|
82
98
|
};
|
|
83
99
|
readonly minHeight: {
|
|
84
|
-
readonly property:
|
|
100
|
+
readonly property: {
|
|
101
|
+
readonly physical: "minHeight";
|
|
102
|
+
readonly logical: "minBlockSize";
|
|
103
|
+
};
|
|
104
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
85
105
|
readonly transform: (value: string | number) => string | 0;
|
|
86
106
|
};
|
|
87
107
|
readonly maxHeight: {
|
|
88
|
-
readonly property:
|
|
108
|
+
readonly property: {
|
|
109
|
+
readonly physical: "maxHeight";
|
|
110
|
+
readonly logical: "maxBlockSize";
|
|
111
|
+
};
|
|
112
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
89
113
|
readonly transform: (value: string | number) => string | 0;
|
|
90
114
|
};
|
|
91
115
|
readonly verticalAlign: {
|
|
92
116
|
readonly property: "verticalAlign";
|
|
93
117
|
};
|
|
118
|
+
readonly direction: {
|
|
119
|
+
readonly property: "direction";
|
|
120
|
+
};
|
|
94
121
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
95
122
|
readonly fontFamily: {
|
|
96
123
|
readonly property: "fontFamily";
|
|
@@ -273,52 +300,28 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
|
|
|
273
300
|
};
|
|
274
301
|
readonly borderX: {
|
|
275
302
|
readonly property: "border";
|
|
276
|
-
readonly properties:
|
|
277
|
-
readonly physical: readonly ["borderLeft", "borderRight"];
|
|
278
|
-
readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
|
|
279
|
-
};
|
|
280
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
303
|
+
readonly properties: readonly ["borderLeft", "borderRight"];
|
|
281
304
|
readonly scale: "borders";
|
|
282
305
|
};
|
|
283
306
|
readonly borderY: {
|
|
284
307
|
readonly property: "border";
|
|
285
|
-
readonly properties:
|
|
286
|
-
readonly physical: readonly ["borderTop", "borderBottom"];
|
|
287
|
-
readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
|
|
288
|
-
};
|
|
289
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
308
|
+
readonly properties: readonly ["borderTop", "borderBottom"];
|
|
290
309
|
readonly scale: "borders";
|
|
291
310
|
};
|
|
292
311
|
readonly borderTop: {
|
|
293
|
-
readonly property:
|
|
294
|
-
readonly physical: "borderTop";
|
|
295
|
-
readonly logical: "borderBlockStart";
|
|
296
|
-
};
|
|
297
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
312
|
+
readonly property: "borderTop";
|
|
298
313
|
readonly scale: "borders";
|
|
299
314
|
};
|
|
300
315
|
readonly borderRight: {
|
|
301
|
-
readonly property:
|
|
302
|
-
readonly physical: "borderRight";
|
|
303
|
-
readonly logical: "borderInlineEnd";
|
|
304
|
-
};
|
|
305
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
316
|
+
readonly property: "borderRight";
|
|
306
317
|
readonly scale: "borders";
|
|
307
318
|
};
|
|
308
319
|
readonly borderBottom: {
|
|
309
|
-
readonly property:
|
|
310
|
-
readonly physical: "borderBottom";
|
|
311
|
-
readonly logical: "borderBlockEnd";
|
|
312
|
-
};
|
|
313
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
320
|
+
readonly property: "borderBottom";
|
|
314
321
|
readonly scale: "borders";
|
|
315
322
|
};
|
|
316
323
|
readonly borderLeft: {
|
|
317
|
-
readonly property:
|
|
318
|
-
readonly physical: "borderLeft";
|
|
319
|
-
readonly logical: "borderInlineStart";
|
|
320
|
-
};
|
|
321
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
324
|
+
readonly property: "borderLeft";
|
|
322
325
|
readonly scale: "borders";
|
|
323
326
|
};
|
|
324
327
|
readonly borderWidth: {
|
|
@@ -326,47 +329,23 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
|
|
|
326
329
|
};
|
|
327
330
|
readonly borderWidthX: {
|
|
328
331
|
readonly property: "borderWidth";
|
|
329
|
-
readonly properties:
|
|
330
|
-
readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
331
|
-
readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
|
|
332
|
-
};
|
|
333
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
332
|
+
readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
334
333
|
};
|
|
335
334
|
readonly borderWidthY: {
|
|
336
335
|
readonly property: "borderWidth";
|
|
337
|
-
readonly properties:
|
|
338
|
-
readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
339
|
-
readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
|
|
340
|
-
};
|
|
341
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
336
|
+
readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
342
337
|
};
|
|
343
338
|
readonly borderWidthLeft: {
|
|
344
|
-
readonly property:
|
|
345
|
-
readonly physical: "borderLeftWidth";
|
|
346
|
-
readonly logical: "borderInlineStartWidth";
|
|
347
|
-
};
|
|
348
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
339
|
+
readonly property: "borderLeftWidth";
|
|
349
340
|
};
|
|
350
341
|
readonly borderWidthRight: {
|
|
351
|
-
readonly property:
|
|
352
|
-
readonly physical: "borderRightWidth";
|
|
353
|
-
readonly logical: "borderInlineEndWidth";
|
|
354
|
-
};
|
|
355
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
342
|
+
readonly property: "borderRightWidth";
|
|
356
343
|
};
|
|
357
344
|
readonly borderWidthTop: {
|
|
358
|
-
readonly property:
|
|
359
|
-
readonly physical: "borderTopWidth";
|
|
360
|
-
readonly logical: "borderBlockStartWidth";
|
|
361
|
-
};
|
|
362
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
345
|
+
readonly property: "borderTopWidth";
|
|
363
346
|
};
|
|
364
347
|
readonly borderWidthBottom: {
|
|
365
|
-
readonly property:
|
|
366
|
-
readonly physical: "borderBottomWidth";
|
|
367
|
-
readonly logical: "borderBlockEndWidth";
|
|
368
|
-
};
|
|
369
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
348
|
+
readonly property: "borderBottomWidth";
|
|
370
349
|
};
|
|
371
350
|
readonly borderRadius: {
|
|
372
351
|
readonly property: "borderRadius";
|
|
@@ -374,70 +353,38 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
|
|
|
374
353
|
};
|
|
375
354
|
readonly borderRadiusLeft: {
|
|
376
355
|
readonly property: "borderRadius";
|
|
377
|
-
readonly properties:
|
|
378
|
-
readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
379
|
-
readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
|
|
380
|
-
};
|
|
381
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
356
|
+
readonly properties: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
382
357
|
readonly scale: "borderRadii";
|
|
383
358
|
};
|
|
384
359
|
readonly borderRadiusTop: {
|
|
385
360
|
readonly property: "borderRadius";
|
|
386
|
-
readonly properties:
|
|
387
|
-
readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
388
|
-
readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
|
|
389
|
-
};
|
|
390
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
361
|
+
readonly properties: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
391
362
|
readonly scale: "borderRadii";
|
|
392
363
|
};
|
|
393
364
|
readonly borderRadiusBottom: {
|
|
394
365
|
readonly property: "borderRadius";
|
|
395
|
-
readonly properties:
|
|
396
|
-
readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
397
|
-
readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
|
|
398
|
-
};
|
|
399
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
366
|
+
readonly properties: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
400
367
|
readonly scale: "borderRadii";
|
|
401
368
|
};
|
|
402
369
|
readonly borderRadiusRight: {
|
|
403
370
|
readonly property: "borderRadius";
|
|
404
|
-
readonly properties:
|
|
405
|
-
readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
406
|
-
readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
|
|
407
|
-
};
|
|
408
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
371
|
+
readonly properties: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
409
372
|
readonly scale: "borderRadii";
|
|
410
373
|
};
|
|
411
374
|
readonly borderRadiusTopLeft: {
|
|
412
|
-
readonly property:
|
|
413
|
-
readonly physical: "borderTopLeftRadius";
|
|
414
|
-
readonly logical: "borderStartStartRadius";
|
|
415
|
-
};
|
|
416
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
375
|
+
readonly property: "borderTopLeftRadius";
|
|
417
376
|
readonly scale: "borderRadii";
|
|
418
377
|
};
|
|
419
378
|
readonly borderRadiusTopRight: {
|
|
420
|
-
readonly property:
|
|
421
|
-
readonly physical: "borderTopRightRadius";
|
|
422
|
-
readonly logical: "borderStartEndRadius";
|
|
423
|
-
};
|
|
424
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
379
|
+
readonly property: "borderTopRightRadius";
|
|
425
380
|
readonly scale: "borderRadii";
|
|
426
381
|
};
|
|
427
382
|
readonly borderRadiusBottomRight: {
|
|
428
|
-
readonly property:
|
|
429
|
-
readonly physical: "borderBottomRightRadius";
|
|
430
|
-
readonly logical: "borderEndEndRadius";
|
|
431
|
-
};
|
|
432
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
383
|
+
readonly property: "borderBottomRightRadius";
|
|
433
384
|
readonly scale: "borderRadii";
|
|
434
385
|
};
|
|
435
386
|
readonly borderRadiusBottomLeft: {
|
|
436
|
-
readonly property:
|
|
437
|
-
readonly physical: "borderBottomLeftRadius";
|
|
438
|
-
readonly logical: "borderEndStartRadius";
|
|
439
|
-
};
|
|
440
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
387
|
+
readonly property: "borderBottomLeftRadius";
|
|
441
388
|
readonly scale: "borderRadii";
|
|
442
389
|
};
|
|
443
390
|
readonly borderStyle: {
|
|
@@ -445,47 +392,23 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
|
|
|
445
392
|
};
|
|
446
393
|
readonly borderStyleX: {
|
|
447
394
|
readonly property: "borderStyle";
|
|
448
|
-
readonly properties:
|
|
449
|
-
readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
450
|
-
readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
|
|
451
|
-
};
|
|
452
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
395
|
+
readonly properties: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
453
396
|
};
|
|
454
397
|
readonly borderStyleY: {
|
|
455
398
|
readonly property: "borderStyle";
|
|
456
|
-
readonly properties:
|
|
457
|
-
readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
458
|
-
readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
|
|
459
|
-
};
|
|
460
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
399
|
+
readonly properties: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
461
400
|
};
|
|
462
401
|
readonly borderStyleLeft: {
|
|
463
|
-
readonly property:
|
|
464
|
-
readonly physical: "borderLeftStyle";
|
|
465
|
-
readonly logical: "borderInlineStartStyle";
|
|
466
|
-
};
|
|
467
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
402
|
+
readonly property: "borderLeftStyle";
|
|
468
403
|
};
|
|
469
404
|
readonly borderStyleRight: {
|
|
470
|
-
readonly property:
|
|
471
|
-
readonly physical: "borderRightStyle";
|
|
472
|
-
readonly logical: "borderInlineEndStyle";
|
|
473
|
-
};
|
|
474
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
405
|
+
readonly property: "borderRightStyle";
|
|
475
406
|
};
|
|
476
407
|
readonly borderStyleTop: {
|
|
477
|
-
readonly property:
|
|
478
|
-
readonly physical: "borderTopStyle";
|
|
479
|
-
readonly logical: "borderBlockStartStyle";
|
|
480
|
-
};
|
|
481
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
408
|
+
readonly property: "borderTopStyle";
|
|
482
409
|
};
|
|
483
410
|
readonly borderStyleBottom: {
|
|
484
|
-
readonly property:
|
|
485
|
-
readonly physical: "borderBottomStyle";
|
|
486
|
-
readonly logical: "borderBlockEndStyle";
|
|
487
|
-
};
|
|
488
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
411
|
+
readonly property: "borderBottomStyle";
|
|
489
412
|
};
|
|
490
413
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
491
414
|
readonly color: {
|
|
@@ -506,40 +429,28 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
|
|
|
506
429
|
};
|
|
507
430
|
readonly borderColorX: {
|
|
508
431
|
readonly property: "borderColor";
|
|
509
|
-
readonly properties:
|
|
510
|
-
readonly physical: readonly ["borderLeftColor", "borderRightColor"];
|
|
511
|
-
readonly logical: readonly ["borderInlineStartColor", "borderInlineEndColor"];
|
|
512
|
-
};
|
|
513
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
432
|
+
readonly properties: readonly ["borderLeftColor", "borderRightColor"];
|
|
514
433
|
readonly scale: "colors";
|
|
515
434
|
};
|
|
516
435
|
readonly borderColorY: {
|
|
517
436
|
readonly property: "borderColor";
|
|
518
|
-
readonly properties:
|
|
519
|
-
readonly physical: readonly ["borderTopColor", "borderBottomColor"];
|
|
520
|
-
readonly logical: readonly ["borderBlockStartColor", "borderBlockEndColor"];
|
|
521
|
-
};
|
|
522
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
437
|
+
readonly properties: readonly ["borderTopColor", "borderBottomColor"];
|
|
523
438
|
readonly scale: "colors";
|
|
524
439
|
};
|
|
525
440
|
readonly borderColorLeft: {
|
|
526
441
|
readonly property: "borderLeftColor";
|
|
527
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
528
442
|
readonly scale: "colors";
|
|
529
443
|
};
|
|
530
444
|
readonly borderColorRight: {
|
|
531
445
|
readonly property: "borderRightColor";
|
|
532
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
533
446
|
readonly scale: "colors";
|
|
534
447
|
};
|
|
535
448
|
readonly borderColorTop: {
|
|
536
449
|
readonly property: "borderTopColor";
|
|
537
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
538
450
|
readonly scale: "colors";
|
|
539
451
|
};
|
|
540
452
|
readonly borderColorBottom: {
|
|
541
453
|
readonly property: "borderBottomColor";
|
|
542
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
543
454
|
readonly scale: "colors";
|
|
544
455
|
};
|
|
545
456
|
}>>]>>;
|