@codecademy/gamut 68.0.1-alpha.a46571.0 → 68.0.1-alpha.f12c24.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/Box/props.d.ts +70 -14
- package/dist/Button/shared/styles.d.ts +70 -14
- package/dist/Card/elements.d.ts +210 -42
- package/dist/Form/elements/Form.d.ts +70 -14
- package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +70 -14
- package/dist/List/elements.d.ts +70 -14
- package/dist/Menu/elements.d.ts +70 -14
- package/dist/Pagination/AnimatedPaginationButtons.d.ts +70 -14
- package/dist/Pagination/utils.d.ts +70 -14
- package/package.json +7 -7
package/dist/Card/elements.d.ts
CHANGED
|
@@ -683,59 +683,115 @@ export declare const MotionBox: import("react").ComponentType<{
|
|
|
683
683
|
}>;
|
|
684
684
|
borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
685
685
|
readonly property: "borderRadius";
|
|
686
|
-
readonly properties:
|
|
686
|
+
readonly properties: {
|
|
687
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
688
|
+
readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
|
|
689
|
+
};
|
|
690
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
687
691
|
readonly scale: "borderRadii";
|
|
688
692
|
}>;
|
|
689
693
|
borderRadiusTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
690
694
|
readonly property: "borderRadius";
|
|
691
|
-
readonly properties:
|
|
695
|
+
readonly properties: {
|
|
696
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
697
|
+
readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
|
|
698
|
+
};
|
|
699
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
692
700
|
readonly scale: "borderRadii";
|
|
693
701
|
}>;
|
|
694
702
|
borderRadiusBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
695
703
|
readonly property: "borderRadius";
|
|
696
|
-
readonly properties:
|
|
704
|
+
readonly properties: {
|
|
705
|
+
readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
706
|
+
readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
|
|
707
|
+
};
|
|
708
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
697
709
|
readonly scale: "borderRadii";
|
|
698
710
|
}>;
|
|
699
711
|
borderRadiusRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
700
712
|
readonly property: "borderRadius";
|
|
701
|
-
readonly properties:
|
|
713
|
+
readonly properties: {
|
|
714
|
+
readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
715
|
+
readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
|
|
716
|
+
};
|
|
717
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
702
718
|
readonly scale: "borderRadii";
|
|
703
719
|
}>;
|
|
704
720
|
borderRadiusTopLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
705
|
-
readonly property:
|
|
721
|
+
readonly property: {
|
|
722
|
+
readonly physical: "borderTopLeftRadius";
|
|
723
|
+
readonly logical: "borderStartStartRadius";
|
|
724
|
+
};
|
|
725
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
706
726
|
readonly scale: "borderRadii";
|
|
707
727
|
}>;
|
|
708
728
|
borderRadiusTopRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
709
|
-
readonly property:
|
|
729
|
+
readonly property: {
|
|
730
|
+
readonly physical: "borderTopRightRadius";
|
|
731
|
+
readonly logical: "borderStartEndRadius";
|
|
732
|
+
};
|
|
733
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
710
734
|
readonly scale: "borderRadii";
|
|
711
735
|
}>;
|
|
712
736
|
borderRadiusBottomRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
713
|
-
readonly property:
|
|
737
|
+
readonly property: {
|
|
738
|
+
readonly physical: "borderBottomRightRadius";
|
|
739
|
+
readonly logical: "borderEndEndRadius";
|
|
740
|
+
};
|
|
741
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
714
742
|
readonly scale: "borderRadii";
|
|
715
743
|
}>;
|
|
716
744
|
borderRadiusBottomLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
717
|
-
readonly property:
|
|
745
|
+
readonly property: {
|
|
746
|
+
readonly physical: "borderBottomLeftRadius";
|
|
747
|
+
readonly logical: "borderEndStartRadius";
|
|
748
|
+
};
|
|
749
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
718
750
|
readonly scale: "borderRadii";
|
|
719
751
|
}>;
|
|
720
752
|
borderStyleX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
721
753
|
readonly property: "borderStyle";
|
|
722
|
-
readonly properties:
|
|
754
|
+
readonly properties: {
|
|
755
|
+
readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
756
|
+
readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
|
|
757
|
+
};
|
|
758
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
723
759
|
}>;
|
|
724
760
|
borderStyleY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
725
761
|
readonly property: "borderStyle";
|
|
726
|
-
readonly properties:
|
|
762
|
+
readonly properties: {
|
|
763
|
+
readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
764
|
+
readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
|
|
765
|
+
};
|
|
766
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
727
767
|
}>;
|
|
728
768
|
borderStyleLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
729
|
-
readonly property:
|
|
769
|
+
readonly property: {
|
|
770
|
+
readonly physical: "borderLeftStyle";
|
|
771
|
+
readonly logical: "borderInlineStartStyle";
|
|
772
|
+
};
|
|
773
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
730
774
|
}>;
|
|
731
775
|
borderStyleRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
732
|
-
readonly property:
|
|
776
|
+
readonly property: {
|
|
777
|
+
readonly physical: "borderRightStyle";
|
|
778
|
+
readonly logical: "borderInlineEndStyle";
|
|
779
|
+
};
|
|
780
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
733
781
|
}>;
|
|
734
782
|
borderStyleTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
735
|
-
readonly property:
|
|
783
|
+
readonly property: {
|
|
784
|
+
readonly physical: "borderTopStyle";
|
|
785
|
+
readonly logical: "borderBlockStartStyle";
|
|
786
|
+
};
|
|
787
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
736
788
|
}>;
|
|
737
789
|
borderStyleBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
738
|
-
readonly property:
|
|
790
|
+
readonly property: {
|
|
791
|
+
readonly physical: "borderBottomStyle";
|
|
792
|
+
readonly logical: "borderBlockEndStyle";
|
|
793
|
+
};
|
|
794
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
739
795
|
}>;
|
|
740
796
|
dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
741
797
|
readonly property: "width";
|
|
@@ -1464,59 +1520,115 @@ export declare const DynamicCardWrapper: import("@emotion/styled").StyledCompone
|
|
|
1464
1520
|
}>;
|
|
1465
1521
|
borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1466
1522
|
readonly property: "borderRadius";
|
|
1467
|
-
readonly properties:
|
|
1523
|
+
readonly properties: {
|
|
1524
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
1525
|
+
readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
|
|
1526
|
+
};
|
|
1527
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1468
1528
|
readonly scale: "borderRadii";
|
|
1469
1529
|
}>;
|
|
1470
1530
|
borderRadiusTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1471
1531
|
readonly property: "borderRadius";
|
|
1472
|
-
readonly properties:
|
|
1532
|
+
readonly properties: {
|
|
1533
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
1534
|
+
readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
|
|
1535
|
+
};
|
|
1536
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1473
1537
|
readonly scale: "borderRadii";
|
|
1474
1538
|
}>;
|
|
1475
1539
|
borderRadiusBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1476
1540
|
readonly property: "borderRadius";
|
|
1477
|
-
readonly properties:
|
|
1541
|
+
readonly properties: {
|
|
1542
|
+
readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
1543
|
+
readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
|
|
1544
|
+
};
|
|
1545
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1478
1546
|
readonly scale: "borderRadii";
|
|
1479
1547
|
}>;
|
|
1480
1548
|
borderRadiusRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1481
1549
|
readonly property: "borderRadius";
|
|
1482
|
-
readonly properties:
|
|
1550
|
+
readonly properties: {
|
|
1551
|
+
readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
1552
|
+
readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
|
|
1553
|
+
};
|
|
1554
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1483
1555
|
readonly scale: "borderRadii";
|
|
1484
1556
|
}>;
|
|
1485
1557
|
borderRadiusTopLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1486
|
-
readonly property:
|
|
1558
|
+
readonly property: {
|
|
1559
|
+
readonly physical: "borderTopLeftRadius";
|
|
1560
|
+
readonly logical: "borderStartStartRadius";
|
|
1561
|
+
};
|
|
1562
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1487
1563
|
readonly scale: "borderRadii";
|
|
1488
1564
|
}>;
|
|
1489
1565
|
borderRadiusTopRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1490
|
-
readonly property:
|
|
1566
|
+
readonly property: {
|
|
1567
|
+
readonly physical: "borderTopRightRadius";
|
|
1568
|
+
readonly logical: "borderStartEndRadius";
|
|
1569
|
+
};
|
|
1570
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1491
1571
|
readonly scale: "borderRadii";
|
|
1492
1572
|
}>;
|
|
1493
1573
|
borderRadiusBottomRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1494
|
-
readonly property:
|
|
1574
|
+
readonly property: {
|
|
1575
|
+
readonly physical: "borderBottomRightRadius";
|
|
1576
|
+
readonly logical: "borderEndEndRadius";
|
|
1577
|
+
};
|
|
1578
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1495
1579
|
readonly scale: "borderRadii";
|
|
1496
1580
|
}>;
|
|
1497
1581
|
borderRadiusBottomLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1498
|
-
readonly property:
|
|
1582
|
+
readonly property: {
|
|
1583
|
+
readonly physical: "borderBottomLeftRadius";
|
|
1584
|
+
readonly logical: "borderEndStartRadius";
|
|
1585
|
+
};
|
|
1586
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1499
1587
|
readonly scale: "borderRadii";
|
|
1500
1588
|
}>;
|
|
1501
1589
|
borderStyleX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1502
1590
|
readonly property: "borderStyle";
|
|
1503
|
-
readonly properties:
|
|
1591
|
+
readonly properties: {
|
|
1592
|
+
readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
1593
|
+
readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
|
|
1594
|
+
};
|
|
1595
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1504
1596
|
}>;
|
|
1505
1597
|
borderStyleY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1506
1598
|
readonly property: "borderStyle";
|
|
1507
|
-
readonly properties:
|
|
1599
|
+
readonly properties: {
|
|
1600
|
+
readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
1601
|
+
readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
|
|
1602
|
+
};
|
|
1603
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1508
1604
|
}>;
|
|
1509
1605
|
borderStyleLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1510
|
-
readonly property:
|
|
1606
|
+
readonly property: {
|
|
1607
|
+
readonly physical: "borderLeftStyle";
|
|
1608
|
+
readonly logical: "borderInlineStartStyle";
|
|
1609
|
+
};
|
|
1610
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1511
1611
|
}>;
|
|
1512
1612
|
borderStyleRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1513
|
-
readonly property:
|
|
1613
|
+
readonly property: {
|
|
1614
|
+
readonly physical: "borderRightStyle";
|
|
1615
|
+
readonly logical: "borderInlineEndStyle";
|
|
1616
|
+
};
|
|
1617
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1514
1618
|
}>;
|
|
1515
1619
|
borderStyleTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1516
|
-
readonly property:
|
|
1620
|
+
readonly property: {
|
|
1621
|
+
readonly physical: "borderTopStyle";
|
|
1622
|
+
readonly logical: "borderBlockStartStyle";
|
|
1623
|
+
};
|
|
1624
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1517
1625
|
}>;
|
|
1518
1626
|
borderStyleBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1519
|
-
readonly property:
|
|
1627
|
+
readonly property: {
|
|
1628
|
+
readonly physical: "borderBottomStyle";
|
|
1629
|
+
readonly logical: "borderBlockEndStyle";
|
|
1630
|
+
};
|
|
1631
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1520
1632
|
}>;
|
|
1521
1633
|
dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1522
1634
|
readonly property: "width";
|
|
@@ -2229,59 +2341,115 @@ export declare const StaticCardWrapper: import("@emotion/styled").StyledComponen
|
|
|
2229
2341
|
}>;
|
|
2230
2342
|
borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2231
2343
|
readonly property: "borderRadius";
|
|
2232
|
-
readonly properties:
|
|
2344
|
+
readonly properties: {
|
|
2345
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
2346
|
+
readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
|
|
2347
|
+
};
|
|
2348
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2233
2349
|
readonly scale: "borderRadii";
|
|
2234
2350
|
}>;
|
|
2235
2351
|
borderRadiusTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2236
2352
|
readonly property: "borderRadius";
|
|
2237
|
-
readonly properties:
|
|
2353
|
+
readonly properties: {
|
|
2354
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
2355
|
+
readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
|
|
2356
|
+
};
|
|
2357
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2238
2358
|
readonly scale: "borderRadii";
|
|
2239
2359
|
}>;
|
|
2240
2360
|
borderRadiusBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2241
2361
|
readonly property: "borderRadius";
|
|
2242
|
-
readonly properties:
|
|
2362
|
+
readonly properties: {
|
|
2363
|
+
readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
2364
|
+
readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
|
|
2365
|
+
};
|
|
2366
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2243
2367
|
readonly scale: "borderRadii";
|
|
2244
2368
|
}>;
|
|
2245
2369
|
borderRadiusRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2246
2370
|
readonly property: "borderRadius";
|
|
2247
|
-
readonly properties:
|
|
2371
|
+
readonly properties: {
|
|
2372
|
+
readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
2373
|
+
readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
|
|
2374
|
+
};
|
|
2375
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2248
2376
|
readonly scale: "borderRadii";
|
|
2249
2377
|
}>;
|
|
2250
2378
|
borderRadiusTopLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2251
|
-
readonly property:
|
|
2379
|
+
readonly property: {
|
|
2380
|
+
readonly physical: "borderTopLeftRadius";
|
|
2381
|
+
readonly logical: "borderStartStartRadius";
|
|
2382
|
+
};
|
|
2383
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2252
2384
|
readonly scale: "borderRadii";
|
|
2253
2385
|
}>;
|
|
2254
2386
|
borderRadiusTopRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2255
|
-
readonly property:
|
|
2387
|
+
readonly property: {
|
|
2388
|
+
readonly physical: "borderTopRightRadius";
|
|
2389
|
+
readonly logical: "borderStartEndRadius";
|
|
2390
|
+
};
|
|
2391
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2256
2392
|
readonly scale: "borderRadii";
|
|
2257
2393
|
}>;
|
|
2258
2394
|
borderRadiusBottomRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2259
|
-
readonly property:
|
|
2395
|
+
readonly property: {
|
|
2396
|
+
readonly physical: "borderBottomRightRadius";
|
|
2397
|
+
readonly logical: "borderEndEndRadius";
|
|
2398
|
+
};
|
|
2399
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2260
2400
|
readonly scale: "borderRadii";
|
|
2261
2401
|
}>;
|
|
2262
2402
|
borderRadiusBottomLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2263
|
-
readonly property:
|
|
2403
|
+
readonly property: {
|
|
2404
|
+
readonly physical: "borderBottomLeftRadius";
|
|
2405
|
+
readonly logical: "borderEndStartRadius";
|
|
2406
|
+
};
|
|
2407
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2264
2408
|
readonly scale: "borderRadii";
|
|
2265
2409
|
}>;
|
|
2266
2410
|
borderStyleX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2267
2411
|
readonly property: "borderStyle";
|
|
2268
|
-
readonly properties:
|
|
2412
|
+
readonly properties: {
|
|
2413
|
+
readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
2414
|
+
readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
|
|
2415
|
+
};
|
|
2416
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2269
2417
|
}>;
|
|
2270
2418
|
borderStyleY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2271
2419
|
readonly property: "borderStyle";
|
|
2272
|
-
readonly properties:
|
|
2420
|
+
readonly properties: {
|
|
2421
|
+
readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
2422
|
+
readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
|
|
2423
|
+
};
|
|
2424
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2273
2425
|
}>;
|
|
2274
2426
|
borderStyleLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2275
|
-
readonly property:
|
|
2427
|
+
readonly property: {
|
|
2428
|
+
readonly physical: "borderLeftStyle";
|
|
2429
|
+
readonly logical: "borderInlineStartStyle";
|
|
2430
|
+
};
|
|
2431
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2276
2432
|
}>;
|
|
2277
2433
|
borderStyleRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2278
|
-
readonly property:
|
|
2434
|
+
readonly property: {
|
|
2435
|
+
readonly physical: "borderRightStyle";
|
|
2436
|
+
readonly logical: "borderInlineEndStyle";
|
|
2437
|
+
};
|
|
2438
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2279
2439
|
}>;
|
|
2280
2440
|
borderStyleTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2281
|
-
readonly property:
|
|
2441
|
+
readonly property: {
|
|
2442
|
+
readonly physical: "borderTopStyle";
|
|
2443
|
+
readonly logical: "borderBlockStartStyle";
|
|
2444
|
+
};
|
|
2445
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2282
2446
|
}>;
|
|
2283
2447
|
borderStyleBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2284
|
-
readonly property:
|
|
2448
|
+
readonly property: {
|
|
2449
|
+
readonly physical: "borderBottomStyle";
|
|
2450
|
+
readonly logical: "borderBlockEndStyle";
|
|
2451
|
+
};
|
|
2452
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
2285
2453
|
}>;
|
|
2286
2454
|
dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
2287
2455
|
readonly property: "width";
|
|
@@ -350,59 +350,115 @@ declare const StyledForm: import("@emotion/styled").StyledComponent<{
|
|
|
350
350
|
}>;
|
|
351
351
|
borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
352
352
|
readonly property: "borderRadius";
|
|
353
|
-
readonly properties:
|
|
353
|
+
readonly properties: {
|
|
354
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
355
|
+
readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
|
|
356
|
+
};
|
|
357
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
354
358
|
readonly scale: "borderRadii";
|
|
355
359
|
}>;
|
|
356
360
|
borderRadiusTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
357
361
|
readonly property: "borderRadius";
|
|
358
|
-
readonly properties:
|
|
362
|
+
readonly properties: {
|
|
363
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
364
|
+
readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
|
|
365
|
+
};
|
|
366
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
359
367
|
readonly scale: "borderRadii";
|
|
360
368
|
}>;
|
|
361
369
|
borderRadiusBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
362
370
|
readonly property: "borderRadius";
|
|
363
|
-
readonly properties:
|
|
371
|
+
readonly properties: {
|
|
372
|
+
readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
373
|
+
readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
|
|
374
|
+
};
|
|
375
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
364
376
|
readonly scale: "borderRadii";
|
|
365
377
|
}>;
|
|
366
378
|
borderRadiusRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
367
379
|
readonly property: "borderRadius";
|
|
368
|
-
readonly properties:
|
|
380
|
+
readonly properties: {
|
|
381
|
+
readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
382
|
+
readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
|
|
383
|
+
};
|
|
384
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
369
385
|
readonly scale: "borderRadii";
|
|
370
386
|
}>;
|
|
371
387
|
borderRadiusTopLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
372
|
-
readonly property:
|
|
388
|
+
readonly property: {
|
|
389
|
+
readonly physical: "borderTopLeftRadius";
|
|
390
|
+
readonly logical: "borderStartStartRadius";
|
|
391
|
+
};
|
|
392
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
373
393
|
readonly scale: "borderRadii";
|
|
374
394
|
}>;
|
|
375
395
|
borderRadiusTopRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
376
|
-
readonly property:
|
|
396
|
+
readonly property: {
|
|
397
|
+
readonly physical: "borderTopRightRadius";
|
|
398
|
+
readonly logical: "borderStartEndRadius";
|
|
399
|
+
};
|
|
400
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
377
401
|
readonly scale: "borderRadii";
|
|
378
402
|
}>;
|
|
379
403
|
borderRadiusBottomRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
380
|
-
readonly property:
|
|
404
|
+
readonly property: {
|
|
405
|
+
readonly physical: "borderBottomRightRadius";
|
|
406
|
+
readonly logical: "borderEndEndRadius";
|
|
407
|
+
};
|
|
408
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
381
409
|
readonly scale: "borderRadii";
|
|
382
410
|
}>;
|
|
383
411
|
borderRadiusBottomLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
384
|
-
readonly property:
|
|
412
|
+
readonly property: {
|
|
413
|
+
readonly physical: "borderBottomLeftRadius";
|
|
414
|
+
readonly logical: "borderEndStartRadius";
|
|
415
|
+
};
|
|
416
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
385
417
|
readonly scale: "borderRadii";
|
|
386
418
|
}>;
|
|
387
419
|
borderStyleX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
388
420
|
readonly property: "borderStyle";
|
|
389
|
-
readonly properties:
|
|
421
|
+
readonly properties: {
|
|
422
|
+
readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
423
|
+
readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
|
|
424
|
+
};
|
|
425
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
390
426
|
}>;
|
|
391
427
|
borderStyleY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
392
428
|
readonly property: "borderStyle";
|
|
393
|
-
readonly properties:
|
|
429
|
+
readonly properties: {
|
|
430
|
+
readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
431
|
+
readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
|
|
432
|
+
};
|
|
433
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
394
434
|
}>;
|
|
395
435
|
borderStyleLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
396
|
-
readonly property:
|
|
436
|
+
readonly property: {
|
|
437
|
+
readonly physical: "borderLeftStyle";
|
|
438
|
+
readonly logical: "borderInlineStartStyle";
|
|
439
|
+
};
|
|
440
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
397
441
|
}>;
|
|
398
442
|
borderStyleRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
399
|
-
readonly property:
|
|
443
|
+
readonly property: {
|
|
444
|
+
readonly physical: "borderRightStyle";
|
|
445
|
+
readonly logical: "borderInlineEndStyle";
|
|
446
|
+
};
|
|
447
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
400
448
|
}>;
|
|
401
449
|
borderStyleTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
402
|
-
readonly property:
|
|
450
|
+
readonly property: {
|
|
451
|
+
readonly physical: "borderTopStyle";
|
|
452
|
+
readonly logical: "borderBlockStartStyle";
|
|
453
|
+
};
|
|
454
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
403
455
|
}>;
|
|
404
456
|
borderStyleBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
405
|
-
readonly property:
|
|
457
|
+
readonly property: {
|
|
458
|
+
readonly physical: "borderBottomStyle";
|
|
459
|
+
readonly logical: "borderBlockEndStyle";
|
|
460
|
+
};
|
|
461
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
406
462
|
}>;
|
|
407
463
|
dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
408
464
|
readonly property: "width";
|