@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.
- package/CHANGELOG.md +207 -0
- package/dist/components/badge/Badge.js +1 -1
- package/dist/components/navigation/NavigationMenuDropdownContent.js +1 -1
- package/dist/components/navigation/NavigationMenuDropdownTrigger.js +1 -1
- package/dist/components/navigation/preventHover.d.ts +1 -0
- package/dist/components/navigation/preventHover.js +1 -0
- package/dist/components/toggle-group/ToggleGroupButton.js +1 -1
- package/dist/docgen.json +1 -0
- package/dist/docs/Accordion.mdx +45 -0
- package/dist/docs/ActionIcon.mdx +87 -0
- package/dist/docs/AlertDialog.mdx +40 -0
- package/dist/docs/Avatar.mdx +129 -0
- package/dist/docs/Badge.mdx +55 -0
- package/dist/docs/Box.mdx +52 -0
- package/dist/docs/Button.mdx +68 -0
- package/dist/docs/CONTRIBUTING.md +224 -0
- package/dist/docs/CSSWrapper.mdx +10 -0
- package/dist/docs/Carousel.mdx +88 -0
- package/dist/docs/Checkbox.mdx +19 -0
- package/dist/docs/CheckboxField.mdx +14 -0
- package/dist/docs/Chip.mdx +118 -0
- package/dist/docs/ChipDismissibleGroup.mdx +33 -0
- package/dist/docs/ChipToggleGroup.mdx +27 -0
- package/dist/docs/Combobox.mdx +44 -0
- package/dist/docs/DataTable.mdx +279 -0
- package/dist/docs/DateField.mdx +20 -0
- package/dist/docs/DateInput.mdx +87 -0
- package/dist/docs/Dialog.mdx +68 -0
- package/dist/docs/Dismissible.mdx +48 -0
- package/dist/docs/DismissibleGroup.mdx +29 -0
- package/dist/docs/Divider.mdx +16 -0
- package/dist/docs/DropdownMenu.mdx +30 -0
- package/dist/docs/EmptyState.mdx +23 -0
- package/dist/docs/FieldWrapper.mdx +30 -0
- package/dist/docs/FileInput.mdx +45 -0
- package/dist/docs/Flex.mdx +16 -0
- package/dist/docs/Form.mdx +411 -0
- package/dist/docs/Grid.mdx +28 -0
- package/dist/docs/Heading.mdx +30 -0
- package/dist/docs/Icon.mdx +30 -0
- package/dist/docs/Image.mdx +14 -0
- package/dist/docs/InlineMessage.mdx +52 -0
- package/dist/docs/Input.mdx +24 -0
- package/dist/docs/InputField.mdx +26 -0
- package/dist/docs/Label.mdx +32 -0
- package/dist/docs/Link.mdx +53 -0
- package/dist/docs/List.mdx +38 -0
- package/dist/docs/Loader.mdx +16 -0
- package/dist/docs/MarkdownContent.mdx +77 -0
- package/dist/docs/NavigationMenu.mdx +144 -0
- package/dist/docs/NotificationBadge.mdx +35 -0
- package/dist/docs/NumberInput.mdx +37 -0
- package/dist/docs/NumberInputField.mdx +26 -0
- package/dist/docs/PasswordField.mdx +23 -0
- package/dist/docs/PasswordInput.mdx +15 -0
- package/dist/docs/Popover.mdx +29 -0
- package/dist/docs/ProgressBar.mdx +56 -0
- package/dist/docs/RadioButton.mdx +10 -0
- package/dist/docs/RadioButtonField.mdx +25 -0
- package/dist/docs/RadioCard.mdx +62 -0
- package/dist/docs/SearchField.mdx +26 -0
- package/dist/docs/SearchInput.mdx +13 -0
- package/dist/docs/Select.mdx +56 -0
- package/dist/docs/SelectField.mdx +17 -0
- package/dist/docs/Sidedrawer.mdx +155 -0
- package/dist/docs/Slider.mdx +117 -0
- package/dist/docs/SliderField.mdx +35 -0
- package/dist/docs/Stack.mdx +24 -0
- package/dist/docs/StackContent.mdx +32 -0
- package/dist/docs/Stepper.mdx +154 -0
- package/dist/docs/Styling.mdx +85 -0
- package/dist/docs/Switch.mdx +28 -0
- package/dist/docs/Table.mdx +146 -0
- package/dist/docs/Tabs.mdx +102 -0
- package/dist/docs/Text.mdx +24 -0
- package/dist/docs/Textarea.mdx +12 -0
- package/dist/docs/TextareaField.mdx +21 -0
- package/dist/docs/Toast.mdx +20 -0
- package/dist/docs/ToggleGroup.mdx +88 -0
- package/dist/docs/Tooltip.mdx +25 -0
- package/dist/docs/TopBar.mdx +95 -0
- package/dist/docs/Video.mdx +12 -0
- package/dist/docs/accessibility.mdx +67 -0
- package/dist/docs/coreconcepts.mdx +77 -0
- package/dist/docs/introduction.mdx +33 -0
- package/dist/docs/versioning.mdx +40 -0
- package/dist/index.cjs.js +1 -1
- 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
|
|
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",
|