@codecademy/gamut 68.1.0-alpha.f9ca97.0 → 68.1.1-alpha.2babc6.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.
Files changed (60) hide show
  1. package/dist/Alert/elements.d.ts +3 -3
  2. package/dist/Anchor/index.d.ts +44 -13
  3. package/dist/Badge/index.d.ts +38 -7
  4. package/dist/Box/Box.d.ts +1 -1
  5. package/dist/Box/FlexBox.d.ts +1 -1
  6. package/dist/Box/GridBox.d.ts +1 -1
  7. package/dist/Box/props.d.ts +38 -7
  8. package/dist/Button/CTAButton.d.ts +2 -2
  9. package/dist/Button/FillButton.d.ts +4 -4
  10. package/dist/Button/IconButton.d.ts +4 -4
  11. package/dist/Button/StrokeButton.d.ts +4 -4
  12. package/dist/Button/TextButton.d.ts +4 -4
  13. package/dist/Button/shared/InlineIconButton.d.ts +2 -2
  14. package/dist/Button/shared/styles.d.ts +41 -10
  15. package/dist/ButtonBase/ButtonBase.d.ts +2 -2
  16. package/dist/Card/elements.d.ts +139 -43
  17. package/dist/ConnectedForm/ConnectedFormGroup.js +10 -4
  18. package/dist/ConnectedForm/utils.d.ts +2 -2
  19. package/dist/ContentContainer/index.d.ts +1 -1
  20. package/dist/Disclosure/elements.d.ts +13 -13
  21. package/dist/Form/elements/Form.d.ts +44 -13
  22. package/dist/Form/elements/FormGroup.d.ts +1 -1
  23. package/dist/GridForm/GridFormButtons/index.d.ts +4 -4
  24. package/dist/GridForm/GridFormInputGroup/index.js +10 -4
  25. package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +38 -7
  26. package/dist/InternalFloatingCard/InternalFloatingCard.d.ts +39 -8
  27. package/dist/Layout/Column.d.ts +39 -8
  28. package/dist/Layout/LayoutGrid.d.ts +1 -1
  29. package/dist/List/elements.d.ts +91 -28
  30. package/dist/Markdown/index.js +7 -3
  31. package/dist/Markdown/libs/overrides/index.d.ts +8 -4
  32. package/dist/Markdown/libs/overrides/index.js +43 -24
  33. package/dist/Menu/Menu.d.ts +1 -1
  34. package/dist/Menu/elements.d.ts +42 -11
  35. package/dist/Pagination/AnimatedPaginationButtons.d.ts +47 -15
  36. package/dist/Pagination/EllipsisButton.d.ts +9 -9
  37. package/dist/Pagination/EllipsisButton.js +2 -2
  38. package/dist/Pagination/PaginationButton.d.ts +6 -6
  39. package/dist/Pagination/index.js +4 -4
  40. package/dist/Pagination/utils.d.ts +43 -11
  41. package/dist/Pagination/utils.js +1 -1
  42. package/dist/Popover/elements.d.ts +2 -2
  43. package/dist/PopoverContainer/PopoverContainer.js +31 -4
  44. package/dist/PopoverContainer/utils.d.ts +25 -1
  45. package/dist/PopoverContainer/utils.js +36 -5
  46. package/dist/Tabs/TabButton.d.ts +2 -2
  47. package/dist/Tabs/TabNav.d.ts +1 -1
  48. package/dist/Tabs/TabNavLink.d.ts +2 -2
  49. package/dist/Tabs/props.d.ts +38 -7
  50. package/dist/Tag/elements.d.ts +11 -11
  51. package/dist/Tag/types.d.ts +38 -7
  52. package/dist/Tip/InfoTip/InfoTipButton.d.ts +4 -4
  53. package/dist/Tip/InfoTip/styles.d.ts +1 -1
  54. package/dist/Tip/PreviewTip/elements.d.ts +6 -6
  55. package/dist/Tip/ToolTip/elements.d.ts +1 -1
  56. package/dist/Tip/shared/elements.d.ts +3 -3
  57. package/dist/Toggle/elements.d.ts +1 -1
  58. package/dist/Typography/Text.d.ts +40 -9
  59. package/package.json +15 -12
  60. package/dist/typings/react-aria-tabpanel.d.ts +0 -7
@@ -75,36 +75,67 @@ export declare const tabElementBaseProps: import("@codecademy/variance/dist/type
75
75
  };
76
76
  readonly dimensions: {
77
77
  readonly property: "width";
78
- readonly properties: readonly ["width", "height"];
78
+ readonly properties: {
79
+ readonly physical: readonly ["width", "height"];
80
+ readonly logical: readonly ["inlineSize", "blockSize"];
81
+ };
82
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
79
83
  readonly transform: (value: string | number) => string | 0;
80
84
  };
81
85
  readonly width: {
82
- readonly property: "width";
86
+ readonly property: {
87
+ readonly physical: "width";
88
+ readonly logical: "inlineSize";
89
+ };
90
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
83
91
  readonly transform: (value: string | number) => string | 0;
84
92
  };
85
93
  readonly minWidth: {
86
- readonly property: "minWidth";
94
+ readonly property: {
95
+ readonly physical: "minWidth";
96
+ readonly logical: "minInlineSize";
97
+ };
98
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
87
99
  readonly transform: (value: string | number) => string | 0;
88
100
  };
89
101
  readonly maxWidth: {
90
- readonly property: "maxWidth";
102
+ readonly property: {
103
+ readonly physical: "maxWidth";
104
+ readonly logical: "maxInlineSize";
105
+ };
106
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
91
107
  readonly transform: (value: string | number) => string | 0;
92
108
  };
93
109
  readonly height: {
94
- readonly property: "height";
110
+ readonly property: {
111
+ readonly physical: "height";
112
+ readonly logical: "blockSize";
113
+ };
114
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
95
115
  readonly transform: (value: string | number) => string | 0;
96
116
  };
97
117
  readonly minHeight: {
98
- readonly property: "minHeight";
118
+ readonly property: {
119
+ readonly physical: "minHeight";
120
+ readonly logical: "minBlockSize";
121
+ };
122
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
99
123
  readonly transform: (value: string | number) => string | 0;
100
124
  };
101
125
  readonly maxHeight: {
102
- readonly property: "maxHeight";
126
+ readonly property: {
127
+ readonly physical: "maxHeight";
128
+ readonly logical: "maxBlockSize";
129
+ };
130
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
103
131
  readonly transform: (value: string | number) => string | 0;
104
132
  };
105
133
  readonly verticalAlign: {
106
134
  readonly property: "verticalAlign";
107
135
  };
136
+ readonly direction: {
137
+ readonly property: "direction";
138
+ };
108
139
  }>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
109
140
  readonly position: {
110
141
  readonly property: "position";