@codecademy/gamut 68.2.0-alpha.a8fc55.0 → 68.2.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 (43) hide show
  1. package/dist/BarChart/BarChartProvider.d.ts +19 -0
  2. package/dist/BarChart/BarChartProvider.js +27 -0
  3. package/dist/BarChart/BarRow/ValueLabelsContent.d.ts +7 -0
  4. package/dist/BarChart/BarRow/ValueLabelsContent.js +34 -0
  5. package/dist/BarChart/BarRow/elements.d.ts +959 -0
  6. package/dist/BarChart/BarRow/elements.js +110 -0
  7. package/dist/BarChart/BarRow/index.d.ts +6 -0
  8. package/dist/BarChart/BarRow/index.js +231 -0
  9. package/dist/BarChart/SortSelect/index.d.ts +15 -0
  10. package/dist/BarChart/SortSelect/index.js +18 -0
  11. package/dist/BarChart/index.d.ts +4 -0
  12. package/dist/BarChart/index.js +136 -0
  13. package/dist/BarChart/layout/GridLines.d.ts +3 -0
  14. package/dist/BarChart/layout/GridLines.js +69 -0
  15. package/dist/BarChart/layout/LabelSpacer.d.ts +6 -0
  16. package/dist/BarChart/layout/LabelSpacer.js +56 -0
  17. package/dist/BarChart/layout/ScaleChartHeader.d.ts +3 -0
  18. package/dist/BarChart/layout/ScaleChartHeader.js +87 -0
  19. package/dist/BarChart/shared/elements.d.ts +7 -0
  20. package/dist/BarChart/shared/elements.js +12 -0
  21. package/dist/BarChart/shared/styles.d.ts +4 -0
  22. package/dist/BarChart/shared/styles.js +4 -0
  23. package/dist/BarChart/shared/translations.d.ts +69 -0
  24. package/dist/BarChart/shared/translations.js +57 -0
  25. package/dist/BarChart/shared/types.d.ts +100 -0
  26. package/dist/BarChart/shared/types.js +1 -0
  27. package/dist/BarChart/utils/hooks.d.ts +89 -0
  28. package/dist/BarChart/utils/hooks.js +281 -0
  29. package/dist/BarChart/utils/index.d.ts +56 -0
  30. package/dist/BarChart/utils/index.js +122 -0
  31. package/dist/ConnectedForm/utils.d.ts +1 -1
  32. package/dist/DataList/Tables/Rows/TableHeaderRow.js +49 -53
  33. package/dist/DataList/Tables/Rows/TableRow.js +0 -7
  34. package/dist/Form/SelectDropdown/styles.d.ts +1 -1
  35. package/dist/Form/elements/Form.d.ts +1 -1
  36. package/dist/Form/elements/FormGroupLabel.js +2 -2
  37. package/dist/Form/inputs/Select.js +6 -5
  38. package/dist/List/ListCol.js +0 -1
  39. package/dist/List/elements.d.ts +10 -2
  40. package/dist/List/elements.js +16 -27
  41. package/dist/index.d.ts +1 -0
  42. package/dist/index.js +1 -0
  43. package/package.json +6 -6
package/dist/index.d.ts CHANGED
@@ -6,6 +6,7 @@ export * from './Anchor';
6
6
  export * from './Animation';
7
7
  export * from './AppWrapper';
8
8
  export * from './Badge';
9
+ export * from './BarChart';
9
10
  export * from './BodyPortal';
10
11
  export * from './Box';
11
12
  export * from './Breadcrumbs';
package/dist/index.js CHANGED
@@ -6,6 +6,7 @@ export * from './Anchor';
6
6
  export * from './Animation';
7
7
  export * from './AppWrapper';
8
8
  export * from './Badge';
9
+ export * from './BarChart';
9
10
  export * from './BodyPortal';
10
11
  export * from './Box';
11
12
  export * from './Breadcrumbs';
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@codecademy/gamut",
3
3
  "description": "Styleguide & Component library for Codecademy",
4
- "version": "68.2.0-alpha.a8fc55.0",
4
+ "version": "68.2.0",
5
5
  "author": "Codecademy Engineering <dev@codecademy.com>",
6
6
  "dependencies": {
7
- "@codecademy/gamut-icons": "9.57.0",
8
- "@codecademy/gamut-illustrations": "0.58.7",
9
- "@codecademy/gamut-patterns": "0.10.26",
10
- "@codecademy/gamut-styles": "17.12.1",
7
+ "@codecademy/gamut-icons": "9.57.1",
8
+ "@codecademy/gamut-illustrations": "0.58.8",
9
+ "@codecademy/gamut-patterns": "0.10.27",
10
+ "@codecademy/gamut-styles": "17.13.0",
11
11
  "@codecademy/variance": "0.26.0",
12
12
  "@react-aria/interactions": "3.25.0",
13
13
  "@types/marked": "^4.0.8",
@@ -59,5 +59,5 @@
59
59
  "dist/**/[A-Z]**/[A-Z]*.js",
60
60
  "dist/**/[A-Z]**/index.js"
61
61
  ],
62
- "gitHead": "17a6c1319f4e014a1d3c9162a61cb50e01f190fa"
62
+ "gitHead": "502f9c61b71cb0479cbe5ff3bcd7301041a3c3bd"
63
63
  }