@atom-learning/components 2.29.0-beta.5 → 2.29.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 (88) hide show
  1. package/CHANGELOG.md +207 -0
  2. package/dist/components/badge/Badge.js +1 -1
  3. package/dist/components/navigation/NavigationMenuDropdownContent.js +1 -1
  4. package/dist/components/navigation/NavigationMenuDropdownTrigger.js +1 -1
  5. package/dist/components/navigation/preventHover.d.ts +1 -0
  6. package/dist/components/navigation/preventHover.js +1 -0
  7. package/dist/components/toggle-group/ToggleGroupButton.js +1 -1
  8. package/dist/docgen.json +1 -0
  9. package/dist/docs/Accordion.mdx +45 -0
  10. package/dist/docs/ActionIcon.mdx +87 -0
  11. package/dist/docs/AlertDialog.mdx +40 -0
  12. package/dist/docs/Avatar.mdx +129 -0
  13. package/dist/docs/Badge.mdx +55 -0
  14. package/dist/docs/Box.mdx +52 -0
  15. package/dist/docs/Button.mdx +68 -0
  16. package/dist/docs/CONTRIBUTING.md +224 -0
  17. package/dist/docs/CSSWrapper.mdx +10 -0
  18. package/dist/docs/Carousel.mdx +88 -0
  19. package/dist/docs/Checkbox.mdx +19 -0
  20. package/dist/docs/CheckboxField.mdx +14 -0
  21. package/dist/docs/Chip.mdx +118 -0
  22. package/dist/docs/ChipDismissibleGroup.mdx +33 -0
  23. package/dist/docs/ChipToggleGroup.mdx +27 -0
  24. package/dist/docs/Combobox.mdx +44 -0
  25. package/dist/docs/DataTable.mdx +279 -0
  26. package/dist/docs/DateField.mdx +20 -0
  27. package/dist/docs/DateInput.mdx +87 -0
  28. package/dist/docs/Dialog.mdx +68 -0
  29. package/dist/docs/Dismissible.mdx +48 -0
  30. package/dist/docs/DismissibleGroup.mdx +29 -0
  31. package/dist/docs/Divider.mdx +16 -0
  32. package/dist/docs/DropdownMenu.mdx +30 -0
  33. package/dist/docs/EmptyState.mdx +23 -0
  34. package/dist/docs/FieldWrapper.mdx +30 -0
  35. package/dist/docs/FileInput.mdx +45 -0
  36. package/dist/docs/Flex.mdx +16 -0
  37. package/dist/docs/Form.mdx +411 -0
  38. package/dist/docs/Grid.mdx +28 -0
  39. package/dist/docs/Heading.mdx +30 -0
  40. package/dist/docs/Icon.mdx +30 -0
  41. package/dist/docs/Image.mdx +14 -0
  42. package/dist/docs/InlineMessage.mdx +52 -0
  43. package/dist/docs/Input.mdx +24 -0
  44. package/dist/docs/InputField.mdx +26 -0
  45. package/dist/docs/Label.mdx +32 -0
  46. package/dist/docs/Link.mdx +53 -0
  47. package/dist/docs/List.mdx +38 -0
  48. package/dist/docs/Loader.mdx +16 -0
  49. package/dist/docs/MarkdownContent.mdx +77 -0
  50. package/dist/docs/NavigationMenu.mdx +144 -0
  51. package/dist/docs/NotificationBadge.mdx +35 -0
  52. package/dist/docs/NumberInput.mdx +37 -0
  53. package/dist/docs/NumberInputField.mdx +26 -0
  54. package/dist/docs/PasswordField.mdx +23 -0
  55. package/dist/docs/PasswordInput.mdx +15 -0
  56. package/dist/docs/Popover.mdx +29 -0
  57. package/dist/docs/ProgressBar.mdx +56 -0
  58. package/dist/docs/RadioButton.mdx +10 -0
  59. package/dist/docs/RadioButtonField.mdx +25 -0
  60. package/dist/docs/RadioCard.mdx +62 -0
  61. package/dist/docs/SearchField.mdx +26 -0
  62. package/dist/docs/SearchInput.mdx +13 -0
  63. package/dist/docs/Select.mdx +56 -0
  64. package/dist/docs/SelectField.mdx +17 -0
  65. package/dist/docs/Sidedrawer.mdx +155 -0
  66. package/dist/docs/Slider.mdx +117 -0
  67. package/dist/docs/SliderField.mdx +35 -0
  68. package/dist/docs/Stack.mdx +24 -0
  69. package/dist/docs/StackContent.mdx +32 -0
  70. package/dist/docs/Stepper.mdx +154 -0
  71. package/dist/docs/Styling.mdx +85 -0
  72. package/dist/docs/Switch.mdx +28 -0
  73. package/dist/docs/Table.mdx +146 -0
  74. package/dist/docs/Tabs.mdx +102 -0
  75. package/dist/docs/Text.mdx +24 -0
  76. package/dist/docs/Textarea.mdx +12 -0
  77. package/dist/docs/TextareaField.mdx +21 -0
  78. package/dist/docs/Toast.mdx +20 -0
  79. package/dist/docs/ToggleGroup.mdx +88 -0
  80. package/dist/docs/Tooltip.mdx +25 -0
  81. package/dist/docs/TopBar.mdx +95 -0
  82. package/dist/docs/Video.mdx +12 -0
  83. package/dist/docs/accessibility.mdx +67 -0
  84. package/dist/docs/coreconcepts.mdx +77 -0
  85. package/dist/docs/introduction.mdx +33 -0
  86. package/dist/docs/versioning.mdx +40 -0
  87. package/dist/index.cjs.js +1 -1
  88. package/package.json +3 -3
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "main": "dist/index.cjs.js",
5
5
  "typings": "dist/index.d.ts",
6
6
  "module": "dist/index.js",
7
- "version": "2.29.0-beta.5",
7
+ "version": "2.29.0",
8
8
  "description": "",
9
9
  "files": [
10
10
  "dist"
@@ -17,6 +17,7 @@
17
17
  "build:docs": "node ./scripts/generate-component-props.mjs && node ./scripts/export-documentation.mjs",
18
18
  "start:sandbox": "vite -c ./sandbox/vite.config.js",
19
19
  "add-component": "node ./scripts/add-component.mjs",
20
+ "prepublishOnly": "run-s clean build:lib build:types build:docs",
20
21
  "clean": "del ./dist/",
21
22
  "format": "prettier 'src/**/*.{js,ts,tsx}' --write",
22
23
  "lint": "eslint 'src/**/*.{js,ts,tsx}' --fix",
@@ -70,7 +71,6 @@
70
71
  "@semantic-release/npm": "^7.1.1",
71
72
  "@semantic-release/release-notes-generator": "^9.0.2",
72
73
  "@size-limit/preset-small-lib": "^7.0.5",
73
- "@stitches/react": "^1.2.8",
74
74
  "@testing-library/jest-dom": "^5.11.9",
75
75
  "@testing-library/react": "^11.2.3",
76
76
  "@testing-library/react-hooks": "^7.0.2",
@@ -122,7 +122,6 @@
122
122
  "peerDependencies": {
123
123
  "@atom-learning/icons": "^1.0.0",
124
124
  "@atom-learning/theme": "^1.0.0",
125
- "@stitches/react": "^1.0.0",
126
125
  "react": "^16.0.0 || ^17.0.0 || ^18.0.0",
127
126
  "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
128
127
  },
@@ -149,6 +148,7 @@
149
148
  "@radix-ui/react-tooltip": "^1.0.0",
150
149
  "@radix-ui/react-visually-hidden": "^1.0.0",
151
150
  "@reach/combobox": "^0.16.1",
151
+ "@stitches/react": "^1.2.8",
152
152
  "@tanstack/react-table": "^8.5.11",
153
153
  "@types/react": "^17.0.30",
154
154
  "color2k": "^2.0.0",