@codecademy/gamut 68.0.1-alpha.8aa868.0 → 68.0.1-alpha.a46571.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 +60 -12
- package/dist/Button/shared/styles.d.ts +60 -12
- package/dist/Card/elements.d.ts +180 -36
- package/dist/Form/elements/Form.d.ts +60 -12
- package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +60 -12
- package/dist/List/elements.d.ts +60 -12
- package/dist/Menu/elements.d.ts +60 -12
- package/dist/Pagination/AnimatedPaginationButtons.d.ts +60 -12
- package/dist/Pagination/utils.d.ts +60 -12
- package/package.json +7 -7
|
@@ -381,11 +381,19 @@ export declare const createAnimatedFadeButton: (WrappedComponent: typeof Paginat
|
|
|
381
381
|
readonly property: "zIndex";
|
|
382
382
|
}>;
|
|
383
383
|
borderBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
384
|
-
readonly property:
|
|
384
|
+
readonly property: {
|
|
385
|
+
readonly physical: "borderBottom";
|
|
386
|
+
readonly logical: "borderBlockEnd";
|
|
387
|
+
};
|
|
388
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
385
389
|
readonly scale: "borders";
|
|
386
390
|
}>;
|
|
387
391
|
borderLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
388
|
-
readonly property:
|
|
392
|
+
readonly property: {
|
|
393
|
+
readonly physical: "borderLeft";
|
|
394
|
+
readonly logical: "borderInlineStart";
|
|
395
|
+
};
|
|
396
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
389
397
|
readonly scale: "borders";
|
|
390
398
|
}>;
|
|
391
399
|
borderRadius?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -393,14 +401,22 @@ export declare const createAnimatedFadeButton: (WrappedComponent: typeof Paginat
|
|
|
393
401
|
readonly scale: "borderRadii";
|
|
394
402
|
}>;
|
|
395
403
|
borderRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
396
|
-
readonly property:
|
|
404
|
+
readonly property: {
|
|
405
|
+
readonly physical: "borderRight";
|
|
406
|
+
readonly logical: "borderInlineEnd";
|
|
407
|
+
};
|
|
408
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
397
409
|
readonly scale: "borders";
|
|
398
410
|
}>;
|
|
399
411
|
borderStyle?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
400
412
|
readonly property: "borderStyle";
|
|
401
413
|
}>;
|
|
402
414
|
borderTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
403
|
-
readonly property:
|
|
415
|
+
readonly property: {
|
|
416
|
+
readonly physical: "borderTop";
|
|
417
|
+
readonly logical: "borderBlockStart";
|
|
418
|
+
};
|
|
419
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
404
420
|
readonly scale: "borders";
|
|
405
421
|
}>;
|
|
406
422
|
borderWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -534,33 +550,65 @@ export declare const createAnimatedFadeButton: (WrappedComponent: typeof Paginat
|
|
|
534
550
|
}>;
|
|
535
551
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
536
552
|
readonly property: "border";
|
|
537
|
-
readonly properties:
|
|
553
|
+
readonly properties: {
|
|
554
|
+
readonly physical: readonly ["borderLeft", "borderRight"];
|
|
555
|
+
readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
|
|
556
|
+
};
|
|
557
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
538
558
|
readonly scale: "borders";
|
|
539
559
|
}>;
|
|
540
560
|
borderY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
541
561
|
readonly property: "border";
|
|
542
|
-
readonly properties:
|
|
562
|
+
readonly properties: {
|
|
563
|
+
readonly physical: readonly ["borderTop", "borderBottom"];
|
|
564
|
+
readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
|
|
565
|
+
};
|
|
566
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
543
567
|
readonly scale: "borders";
|
|
544
568
|
}>;
|
|
545
569
|
borderWidthX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
546
570
|
readonly property: "borderWidth";
|
|
547
|
-
readonly properties:
|
|
571
|
+
readonly properties: {
|
|
572
|
+
readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
573
|
+
readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
|
|
574
|
+
};
|
|
575
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
548
576
|
}>;
|
|
549
577
|
borderWidthY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
550
578
|
readonly property: "borderWidth";
|
|
551
|
-
readonly properties:
|
|
579
|
+
readonly properties: {
|
|
580
|
+
readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
581
|
+
readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
|
|
582
|
+
};
|
|
583
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
552
584
|
}>;
|
|
553
585
|
borderWidthLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
554
|
-
readonly property:
|
|
586
|
+
readonly property: {
|
|
587
|
+
readonly physical: "borderLeftWidth";
|
|
588
|
+
readonly logical: "borderInlineStartWidth";
|
|
589
|
+
};
|
|
590
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
555
591
|
}>;
|
|
556
592
|
borderWidthRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
557
|
-
readonly property:
|
|
593
|
+
readonly property: {
|
|
594
|
+
readonly physical: "borderRightWidth";
|
|
595
|
+
readonly logical: "borderInlineEndWidth";
|
|
596
|
+
};
|
|
597
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
558
598
|
}>;
|
|
559
599
|
borderWidthTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
560
|
-
readonly property:
|
|
600
|
+
readonly property: {
|
|
601
|
+
readonly physical: "borderTopWidth";
|
|
602
|
+
readonly logical: "borderBlockStartWidth";
|
|
603
|
+
};
|
|
604
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
561
605
|
}>;
|
|
562
606
|
borderWidthBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
563
|
-
readonly property:
|
|
607
|
+
readonly property: {
|
|
608
|
+
readonly physical: "borderBottomWidth";
|
|
609
|
+
readonly logical: "borderBlockEndWidth";
|
|
610
|
+
};
|
|
611
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
564
612
|
}>;
|
|
565
613
|
borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
566
614
|
readonly property: "borderRadius";
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut",
|
|
3
3
|
"description": "Styleguide & Component library for Codecademy",
|
|
4
|
-
"version": "68.0.1-alpha.
|
|
4
|
+
"version": "68.0.1-alpha.a46571.0",
|
|
5
5
|
"author": "Codecademy Engineering <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-icons": "9.54.3-alpha.
|
|
8
|
-
"@codecademy/gamut-illustrations": "0.58.3-alpha.
|
|
9
|
-
"@codecademy/gamut-patterns": "0.10.22-alpha.
|
|
10
|
-
"@codecademy/gamut-styles": "17.11.3-alpha.
|
|
11
|
-
"@codecademy/variance": "0.25.3-alpha.
|
|
7
|
+
"@codecademy/gamut-icons": "9.54.3-alpha.a46571.0",
|
|
8
|
+
"@codecademy/gamut-illustrations": "0.58.3-alpha.a46571.0",
|
|
9
|
+
"@codecademy/gamut-patterns": "0.10.22-alpha.a46571.0",
|
|
10
|
+
"@codecademy/gamut-styles": "17.11.3-alpha.a46571.0",
|
|
11
|
+
"@codecademy/variance": "0.25.3-alpha.a46571.0",
|
|
12
12
|
"@types/marked": "^4.0.8",
|
|
13
13
|
"@vidstack/react": "^1.12.12",
|
|
14
14
|
"classnames": "^2.2.5",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"dist/**/[A-Z]**/[A-Z]*.js",
|
|
57
57
|
"dist/**/[A-Z]**/index.js"
|
|
58
58
|
],
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "36b76407bced285b28fd18e1101bf876dc9d3d81"
|
|
60
60
|
}
|