├── .changeset ├── a11y-docs-img-empty-alts.md ├── chore-charts-peer-deps.md ├── chore-delete-deprecated-packages.md ├── chore-disable-docs-formatting.md ├── chore-docs-deps.md ├── chore-docs-fix-chart-images.md ├── chore-dom-peer-deps.md ├── chore-dropzone-peer-deps.md ├── chore-fix-components.md ├── chore-fix-docs-build.md ├── chore-fix-dropzone-build.md ├── chore-react-18-upgrade-publishing-workflow.md ├── chore-react-react-dom-gatsby.md ├── chore-storybook.md ├── chore-test-packages-upgrade.md ├── chore-update-docs-and-landing-page.md ├── chore-update-react-magma-icons.version.md ├── chore-upgrade-gatsby-react-helmet.md ├── chore-upgrade-minor-deps.md ├── chore-upgrade-typedoc.md ├── chore-upgrade-typescript-eslint.md ├── config.json ├── feat-Checkbox-add-aria-label.md ├── feat-DateTimePicker-timezone.md ├── feat-Modal-add-headel-level-prop.md ├── feat-SplitDropdown-add-leading-icon.md ├── fix-AIButton-box-shadow.md ├── fix-Accordion-accessibility-render-issue.md ├── fix-Combobox-accessibility.md ├── fix-Docs-Miscellaneous-issues.md ├── fix-Dropdown-add-aria-contols.md ├── fix-NavTabs-fix-obscured-focus.md ├── fix-Select-scrollbar-issue.md ├── fix-Storybook-select-issues.md ├── fix-Table-tabIndex-logic.md ├── fix-ToggleButton-transform.md ├── fix-datepicker-canvas-issue-react-18.md ├── fix-drawer-scrollable-content.md ├── fix-modal-trigger-button.md ├── fix-select-aria-label.md ├── fix-select-focus-behaviour.md ├── fix-timepicker-broken-auto-fill.md ├── fix-timepicker-update-styles.md ├── major-charts-v13-release.md ├── major-dropzone-v13-release.md ├── major-v5-release.md ├── manually-sync-4.10.0.md ├── pre.json └── storybook-csf3.md ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── deploy-v2-docs.yml │ ├── preview.yml │ ├── publish-latest.yml.disabled │ ├── publish-next.yml │ ├── publish-old.yml.disabled │ ├── publish-patch-v4.yml │ ├── publish-patch-v5.yml │ ├── publish-v4-latest.yml │ └── publish-v4-next.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .lintstagedrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .storybook ├── main.js ├── manager.js └── preview.tsx ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── commitlint.config.js ├── eslint.config.js ├── jest.config.js ├── jest.overrides.js ├── jest.setup.js ├── lerna.json ├── nx.json ├── package.json ├── packages ├── charts │ ├── CHANGELOG.md │ ├── README.md │ ├── eslint.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── components │ │ │ └── CarbonChart │ │ │ │ ├── CarbonChart.test.js │ │ │ │ ├── CarbonChart.tsx │ │ │ │ ├── CarbonChartArea.stories.tsx │ │ │ │ ├── CarbonChartAreaStacked.stories.tsx │ │ │ │ ├── CarbonChartBar.stories.tsx │ │ │ │ ├── CarbonChartBarFloating.stories.tsx │ │ │ │ ├── CarbonChartBarGrouped.stories.tsx │ │ │ │ ├── CarbonChartBarStacked.stories.tsx │ │ │ │ ├── CarbonChartBoxplot.stories.tsx │ │ │ │ ├── CarbonChartBubble.stories.tsx │ │ │ │ ├── CarbonChartBullet.stories.tsx │ │ │ │ ├── CarbonChartCombo.stories.tsx │ │ │ │ ├── CarbonChartDonut.stories.tsx │ │ │ │ ├── CarbonChartGauge.stories.tsx │ │ │ │ ├── CarbonChartHistogram.stories.tsx │ │ │ │ ├── CarbonChartLine.stories.tsx │ │ │ │ ├── CarbonChartLollipop.stories.tsx │ │ │ │ ├── CarbonChartMeter.stories.tsx │ │ │ │ ├── CarbonChartPie.stories.tsx │ │ │ │ ├── CarbonChartRadar.stories.tsx │ │ │ │ ├── CarbonChartScatter.stories.tsx │ │ │ │ ├── CarbonChartSparkline.stories.tsx │ │ │ │ ├── CarbonChartStep.stories.tsx │ │ │ │ ├── embeddedStyles.ts │ │ │ │ └── index.ts │ │ └── index.ts │ └── tsconfig.json ├── dropzone │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── axe-helper.js │ ├── eslint.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── components │ │ │ └── dropzone │ │ │ │ ├── Dropzone.stories.tsx │ │ │ │ ├── Dropzone.test.js │ │ │ │ ├── Dropzone.tsx │ │ │ │ ├── FileIcon.tsx │ │ │ │ ├── FilePreview.ts │ │ │ │ ├── Preview.tsx │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ └── index.ts │ └── tsconfig.json └── react-magma-dom │ ├── .gitignore │ ├── CHANGELOG.md │ ├── axe-helper.js │ ├── babel.config.js │ ├── eslint.config.js │ ├── jest.config.js │ ├── package.json │ ├── scripts │ ├── copy-changelog.js │ ├── generateJSON.js │ ├── generateJSON.mjs │ ├── getAlias.js │ └── getVersion.js │ ├── src │ ├── components │ │ ├── AIButton │ │ │ ├── AIButton.stories.tsx │ │ │ ├── AIButton.test.js │ │ │ ├── StyledAIButton.test.js │ │ │ ├── StyledAIButton.tsx │ │ │ ├── StyledAIButtonTemplate.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── AIButton.test.js.snap │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Accordion │ │ │ ├── Accordion.stories.tsx │ │ │ ├── Accordion.test.js │ │ │ ├── Accordion.tsx │ │ │ ├── AccordionButton.tsx │ │ │ ├── AccordionItem.tsx │ │ │ ├── AccordionPanel.tsx │ │ │ ├── index.ts │ │ │ ├── useAccordion.ts │ │ │ ├── useAccordionButton.ts │ │ │ └── useAccordionItem.ts │ │ ├── Alert │ │ │ ├── Alert.stories.tsx │ │ │ ├── Alert.test.js │ │ │ ├── __snapshots__ │ │ │ │ └── Alert.test.js.snap │ │ │ └── index.tsx │ │ ├── AlertBase │ │ │ └── index.tsx │ │ ├── Announce │ │ │ ├── Announce.stories.tsx │ │ │ ├── Announce.test.js │ │ │ └── index.tsx │ │ ├── AppBar │ │ │ ├── AppBar.stories.tsx │ │ │ ├── AppBar.test.js │ │ │ ├── AppBar.tsx │ │ │ └── index.ts │ │ ├── Badge │ │ │ ├── Badge.stories.tsx │ │ │ ├── Badge.test.js │ │ │ └── index.tsx │ │ ├── Banner │ │ │ ├── Banner.stories.tsx │ │ │ ├── Banner.test.js │ │ │ └── index.tsx │ │ ├── BlockQuote │ │ │ ├── BlockQuote.stories.tsx │ │ │ ├── BlockQuote.test.js │ │ │ ├── BlockQuote.tsx │ │ │ ├── BlockQuoteItem.tsx │ │ │ └── index.tsx │ │ ├── Breadcrumb │ │ │ ├── Breadcrumb.stories.tsx │ │ │ ├── Breadcrumb.test.js │ │ │ ├── Breadcrumb.tsx │ │ │ ├── BreadcrumbItem.tsx │ │ │ └── index.tsx │ │ ├── BreakpointsContainer │ │ │ ├── BreakpointsContainer.stories.tsx │ │ │ ├── BreakpointsContainer.test.js │ │ │ └── index.tsx │ │ ├── Button │ │ │ ├── Button.stories.tsx │ │ │ ├── Button.test.js │ │ │ ├── __snapshots__ │ │ │ │ └── Button.test.js.snap │ │ │ └── index.tsx │ │ ├── ButtonGroup │ │ │ ├── ButtonGroup.stories.tsx │ │ │ ├── ButtonGroup.test.js │ │ │ ├── __snapshots__ │ │ │ │ └── ButtonGroup.test.js.snap │ │ │ └── index.tsx │ │ ├── Card │ │ │ ├── Card.stories.tsx │ │ │ ├── Card.test.js │ │ │ ├── Card.tsx │ │ │ ├── CardBody.tsx │ │ │ ├── CardHeading.tsx │ │ │ └── index.tsx │ │ ├── CharacterCounter │ │ │ ├── CharacterCounter.stories.tsx │ │ │ ├── CharacterCounter.test.js │ │ │ ├── CharacterCounter.tsx │ │ │ └── index.ts │ │ ├── Checkbox │ │ │ ├── Checkbox.stories.tsx │ │ │ ├── Checkbox.test.js │ │ │ └── index.tsx │ │ ├── Combobox │ │ │ ├── Combobox.stories.tsx │ │ │ ├── Combobox.test.js │ │ │ ├── Combobox.tsx │ │ │ ├── ComboboxInput.tsx │ │ │ ├── MultiCombobox.test.js │ │ │ ├── MultiCombobox.tsx │ │ │ ├── index.tsx │ │ │ └── shared.ts │ │ ├── Container │ │ │ ├── Container.stories.tsx │ │ │ ├── Container.test.js │ │ │ ├── Container.tsx │ │ │ └── index.tsx │ │ ├── Datagrid │ │ │ ├── Datagrid.stories.tsx │ │ │ ├── Datagrid.test.js │ │ │ ├── Datagrid.tsx │ │ │ ├── components.tsx │ │ │ └── index.ts │ │ ├── DatePicker │ │ │ ├── CalendarContext.ts │ │ │ ├── CalendarDay.test.js │ │ │ ├── CalendarDay.tsx │ │ │ ├── CalendarHeader.test.js │ │ │ ├── CalendarHeader.tsx │ │ │ ├── CalendarMonth.test.js │ │ │ ├── CalendarMonth.tsx │ │ │ ├── DatePicker.stories.tsx │ │ │ ├── DatePicker.test.js │ │ │ ├── HelperInformation.test.js │ │ │ ├── HelperInformation.tsx │ │ │ ├── MonthPicker.tsx │ │ │ ├── StyledSelect.tsx │ │ │ ├── YearPicker.tsx │ │ │ ├── index.tsx │ │ │ └── utils.ts │ │ ├── DateTimePicker │ │ │ ├── DateTimePicker.stories.tsx │ │ │ ├── DateTimePicker.test.js │ │ │ └── index.tsx │ │ ├── DefinitionList │ │ │ ├── DefinitionList.stories.tsx │ │ │ ├── DefinitionList.test.js │ │ │ ├── DefinitionList.tsx │ │ │ ├── DefinitionListItem.tsx │ │ │ └── index.ts │ │ ├── Drawer │ │ │ ├── Drawer.stories.tsx │ │ │ ├── Drawer.test.js │ │ │ ├── Drawer.tsx │ │ │ └── index.ts │ │ ├── Dropdown │ │ │ ├── Dropdown.stories.tsx │ │ │ ├── Dropdown.test.js │ │ │ ├── Dropdown.tsx │ │ │ ├── DropdownButton.tsx │ │ │ ├── DropdownContent.tsx │ │ │ ├── DropdownDivider.tsx │ │ │ ├── DropdownExpandableMenuButton.tsx │ │ │ ├── DropdownExpandableMenuGroup.tsx │ │ │ ├── DropdownExpandableMenuItem.tsx │ │ │ ├── DropdownExpandableMenuListItem.tsx │ │ │ ├── DropdownExpandableMenuPanel.tsx │ │ │ ├── DropdownHeader.tsx │ │ │ ├── DropdownMenuGroup.tsx │ │ │ ├── DropdownMenuItem.tsx │ │ │ ├── DropdownMenuNavItem.tsx │ │ │ ├── DropdownSplitButton.tsx │ │ │ └── index.tsx │ │ ├── Flex │ │ │ ├── Flex.stories.tsx │ │ │ ├── Flex.test.js │ │ │ ├── Flex.tsx │ │ │ └── index.ts │ │ ├── Form │ │ │ ├── Form.stories.tsx │ │ │ ├── Form.test.js │ │ │ └── index.tsx │ │ ├── FormFieldContainer │ │ │ ├── FormFieldContainer.test.js │ │ │ ├── FormFieldContainer.tsx │ │ │ └── index.ts │ │ ├── FormGroup │ │ │ ├── FormGroup.stories.tsx │ │ │ ├── FormGroup.test.js │ │ │ └── index.tsx │ │ ├── Grid │ │ │ ├── Grid.stories.tsx │ │ │ ├── Grid.test.js │ │ │ ├── Grid.tsx │ │ │ └── index.ts │ │ ├── Heading │ │ │ ├── Heading.stories.tsx │ │ │ ├── Heading.test.js │ │ │ ├── __snapshots__ │ │ │ │ └── Heading.test.js.snap │ │ │ └── index.tsx │ │ ├── HideAtBreakpoint │ │ │ ├── HideAtBreakpoint.stories.tsx │ │ │ ├── HideAtBreakpoint.test.js │ │ │ └── index.tsx │ │ ├── Hyperlink │ │ │ ├── Hyperlink.stories.tsx │ │ │ ├── Hyperlink.test.js │ │ │ └── index.tsx │ │ ├── IconButton │ │ │ ├── IconButton.stories.tsx │ │ │ ├── IconButton.test.js │ │ │ ├── __snapshots__ │ │ │ │ └── IconButton.test.js.snap │ │ │ └── index.tsx │ │ ├── IndeterminateCheckbox │ │ │ ├── IndeterminateCheckbox.stories.tsx │ │ │ ├── IndeterminateCheckbox.test.js │ │ │ └── index.tsx │ │ ├── Input │ │ │ ├── Input.stories.tsx │ │ │ ├── Input.test.js │ │ │ ├── InputMessage.tsx │ │ │ ├── index.tsx │ │ │ └── testUtils.tsx │ │ ├── InputBase │ │ │ ├── InputBase.stories.tsx │ │ │ └── index.tsx │ │ ├── Label │ │ │ └── index.tsx │ │ ├── List │ │ │ ├── List.stories.tsx │ │ │ ├── List.test.js │ │ │ ├── List.tsx │ │ │ ├── ListItem.tsx │ │ │ └── index.ts │ │ ├── LoadingIndicator │ │ │ ├── LoadingIndicator.stories.tsx │ │ │ ├── LoadingIndicator.test.js │ │ │ └── index.tsx │ │ ├── Modal │ │ │ ├── Modal.stories.tsx │ │ │ ├── Modal.test.js │ │ │ ├── Modal.tsx │ │ │ └── index.ts │ │ ├── NativeSelect │ │ │ ├── NativeSelect.stories.tsx │ │ │ ├── NativeSelect.test.js │ │ │ ├── NativeSelect.tsx │ │ │ └── index.ts │ │ ├── NavTabs │ │ │ ├── NavTab.tsx │ │ │ ├── NavTabs.stories.tsx │ │ │ ├── NavTabs.test.js │ │ │ ├── NavTabs.tsx │ │ │ └── index.tsx │ │ ├── Pagination │ │ │ ├── PageButton.tsx │ │ │ ├── Pagination.stories.tsx │ │ │ ├── Pagination.test.js │ │ │ ├── Pagination.tsx │ │ │ ├── SimplePagination.test.js │ │ │ ├── SimplePagination.tsx │ │ │ ├── index.ts │ │ │ ├── usePagination.test.js │ │ │ └── usePagination.ts │ │ ├── Paragraph │ │ │ ├── Paragraph.stories.tsx │ │ │ ├── Paragraph.test.js │ │ │ └── index.tsx │ │ ├── PasswordInput │ │ │ ├── PasswordInput.stories.tsx │ │ │ ├── PasswordInput.test.js │ │ │ └── index.tsx │ │ ├── Popover │ │ │ ├── Popover.stories.tsx │ │ │ ├── Popover.test.js │ │ │ ├── Popover.tsx │ │ │ ├── PopoverContent.tsx │ │ │ ├── PopoverSection.tsx │ │ │ ├── PopoverTrigger.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Popover.test.js.snap │ │ │ └── index.tsx │ │ ├── ProgressBar │ │ │ ├── ProgressBar.stories.tsx │ │ │ ├── ProgressBar.test.js │ │ │ └── index.tsx │ │ ├── ProgressRing │ │ │ ├── ProgressRing.test.js │ │ │ └── index.tsx │ │ ├── Radio │ │ │ ├── Radio.stories.tsx │ │ │ ├── Radio.test.js │ │ │ └── index.tsx │ │ ├── RadioGroup │ │ │ ├── RadioGroup.test.js │ │ │ └── index.tsx │ │ ├── Search │ │ │ ├── Search.stories.tsx │ │ │ ├── Search.test.js │ │ │ └── index.tsx │ │ ├── Select │ │ │ ├── ItemsList.tsx │ │ │ ├── MultiSelect.test.js │ │ │ ├── MultiSelect.tsx │ │ │ ├── Select.stories.tsx │ │ │ ├── Select.test.js │ │ │ ├── Select.tsx │ │ │ ├── SelectContainer.tsx │ │ │ ├── SelectTriggerButton.tsx │ │ │ ├── components.tsx │ │ │ ├── index.tsx │ │ │ ├── shared.ts │ │ │ └── utils.ts │ │ ├── SelectionControls │ │ │ ├── InputStyles.tsx │ │ │ ├── StyledContainer.tsx │ │ │ └── StyledLabel.tsx │ │ ├── SkipLink │ │ │ ├── SkipLink.stories.tsx │ │ │ ├── SkipLink.test.js │ │ │ ├── __snapshots__ │ │ │ │ └── SkipLink.test.js.snap │ │ │ └── index.tsx │ │ ├── SkipLinkContent │ │ │ ├── SkipLinkContent.test.js │ │ │ └── index.tsx │ │ ├── Spacer │ │ │ ├── Spacer.stories.tsx │ │ │ ├── Spacer.test.js │ │ │ ├── Spacer.tsx │ │ │ └── index.ts │ │ ├── Spinner │ │ │ ├── Spinner.stories.tsx │ │ │ ├── Spinner.test.js │ │ │ └── index.tsx │ │ ├── Stepper │ │ │ ├── ResponsiveStepperContainer.tsx │ │ │ ├── Step.tsx │ │ │ ├── Stepper.stories.tsx │ │ │ ├── Stepper.test.js │ │ │ ├── Stepper.tsx │ │ │ └── index.ts │ │ ├── StyledButton │ │ │ ├── StyledButton.test.js │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Table │ │ │ ├── Table.stories.tsx │ │ │ ├── Table.test.js │ │ │ ├── Table.tsx │ │ │ ├── TableBody.tsx │ │ │ ├── TableCell.tsx │ │ │ ├── TableHead.tsx │ │ │ ├── TableHeaderCell.tsx │ │ │ ├── TablePagination.test.js │ │ │ ├── TablePagination.tsx │ │ │ ├── TableRow.test.js │ │ │ ├── TableRow.tsx │ │ │ └── index.tsx │ │ ├── Tabs │ │ │ ├── CustomTab.test.js │ │ │ ├── CustomTab.tsx │ │ │ ├── Tab.test.js │ │ │ ├── Tab.tsx │ │ │ ├── TabPanel.test.js │ │ │ ├── TabPanel.tsx │ │ │ ├── TabPanelsContainer.test.js │ │ │ ├── TabPanelsContainer.tsx │ │ │ ├── TabScrollSpyPanel.tsx │ │ │ ├── Tabs.stories.tsx │ │ │ ├── Tabs.test.js │ │ │ ├── Tabs.tsx │ │ │ ├── TabsContainer.test.js │ │ │ ├── TabsContainer.tsx │ │ │ ├── TabsScrollButtons.tsx │ │ │ ├── TabsScrollSpyContainer.test.js │ │ │ ├── TabsScrollSpyContainer.tsx │ │ │ ├── index.tsx │ │ │ ├── shared.ts │ │ │ └── utils.ts │ │ ├── Tag │ │ │ ├── Tag.stories.tsx │ │ │ ├── Tag.test.js │ │ │ ├── Tag.tsx │ │ │ └── index.ts │ │ ├── Textarea │ │ │ ├── Textarea.stories.tsx │ │ │ ├── Textarea.test.js │ │ │ └── index.tsx │ │ ├── TimePicker │ │ │ ├── AmPmToggle.tsx │ │ │ ├── TimePicker.stories.tsx │ │ │ ├── TimePicker.test.js │ │ │ ├── TimePicker.tsx │ │ │ ├── index.tsx │ │ │ └── useTimePicker.ts │ │ ├── Toast │ │ │ ├── Toast.stories.tsx │ │ │ ├── Toast.test.js │ │ │ ├── ToastsContainer.test.js │ │ │ ├── ToastsContainer.tsx │ │ │ └── index.tsx │ │ ├── Toggle │ │ │ ├── Toggle.stories.tsx │ │ │ ├── Toggle.test.js │ │ │ └── index.tsx │ │ ├── ToggleButton │ │ │ ├── ToggleButton.stories.tsx │ │ │ ├── ToggleButton.test.js │ │ │ ├── ToggleButton.tsx │ │ │ └── index.ts │ │ ├── ToggleButtonGroup │ │ │ ├── ToggleButtonGroup.stories.tsx │ │ │ ├── ToggleButtonGroup.test.js │ │ │ ├── ToggleButtonGroup.tsx │ │ │ └── index.ts │ │ ├── Tooltip │ │ │ ├── Tooltip.stories.tsx │ │ │ ├── Tooltip.test.js │ │ │ ├── __snapshots__ │ │ │ │ └── Tooltip.test.js.snap │ │ │ └── index.tsx │ │ ├── Transition │ │ │ ├── Transition.stories.tsx │ │ │ ├── Transition.test.js │ │ │ ├── Transition.tsx │ │ │ └── index.ts │ │ ├── TreeView │ │ │ ├── TreeItem.test.js │ │ │ ├── TreeItem.tsx │ │ │ ├── TreeItemContext.ts │ │ │ ├── TreeView.stories.tsx │ │ │ ├── TreeView.test.js │ │ │ ├── TreeView.tsx │ │ │ ├── TreeViewContext.ts │ │ │ ├── __snapshots__ │ │ │ │ └── TreeView.test.js.snap │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ ├── useTreeItem.ts │ │ │ ├── useTreeView.ts │ │ │ └── utils.ts │ │ ├── Typography │ │ │ └── index.tsx │ │ └── VisuallyHidden │ │ │ ├── VisuallyHidden.stories.tsx │ │ │ ├── VisuallyHidden.test.js │ │ │ └── index.tsx │ ├── hooks │ │ ├── useControlled.ts │ │ ├── useDataPagination.test.js │ │ ├── useDataPagination.ts │ │ ├── useDescendants.ts │ │ ├── useDeviceDetect.test.js │ │ ├── useDeviceDetect.ts │ │ ├── useFocusLock.test.js │ │ ├── useFocusLock.ts │ │ ├── useForceUpdate.ts │ │ ├── useMagmaFloating.ts │ │ ├── useMediaQuery.test.js │ │ └── useMediaQuery.ts │ ├── i18n │ │ ├── default.ts │ │ ├── index.ts │ │ └── interface.ts │ ├── index.ts │ ├── inverse │ │ └── index.ts │ ├── theme │ │ ├── GlobalStyles │ │ │ ├── GlobalStyles.test.js │ │ │ └── index.tsx │ │ ├── ThemeContext.ts │ │ ├── components │ │ │ ├── drawerTransition.ts │ │ │ ├── reducedMotionTransition.ts │ │ │ └── transition.ts │ │ ├── magma.ts │ │ ├── magmaColors.ts │ │ └── styled.ts │ └── utils │ │ ├── UtilityStyles.tsx │ │ ├── index.ts │ │ └── utils.test.jsx │ ├── tsconfig.json │ └── tsdx.config.js ├── plop-templates ├── component-pkg │ ├── index.ts.hbs │ ├── use{{capitalize componentName}}.ts.hbs │ ├── {{capitalize componentName}}.stories.tsx.hbs │ ├── {{capitalize componentName}}.test.js.hbs │ └── {{capitalize componentName}}.tsx.hbs ├── plopfile.hbs └── website │ └── component.mdx.hbs ├── readme_assets ├── commitizen_resulting_commit.png ├── commitizen_scope_thru_end.png └── commitizen_topic.png ├── scripts ├── clean.sh └── plopfile.ts ├── tests └── playwright │ ├── .gitignore │ ├── package.json │ ├── playwright.config.ts │ └── tests │ └── storybook │ ├── accordion │ └── accordion.spec.ts │ ├── alert │ └── alert.spec.ts │ └── announce │ └── announce.spec.ts ├── tsconfig.json └── website ├── react-magma-docs ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── eslint.config.js ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── src │ ├── components │ │ ├── ButtonProps │ │ │ └── index.js │ │ ├── CodeBlock │ │ │ ├── actions.tsx │ │ │ ├── code-block.tsx │ │ │ ├── context.ts │ │ │ ├── editor.tsx │ │ │ ├── examples.tsx │ │ │ ├── file-uploader.mdx │ │ │ ├── index.tsx │ │ │ ├── magmaCode.ts │ │ │ ├── magmaCodeDark.ts │ │ │ └── preview.tsx │ │ ├── ColorSwatch │ │ │ └── index.js │ │ ├── DarkMode │ │ │ ├── DarkModeButton.jsx │ │ │ ├── DarkModeContext.js │ │ │ ├── DarkModeSwitch.jsx │ │ │ └── index.js │ │ ├── DemoModal │ │ │ └── index.js │ │ ├── Divider │ │ │ └── index.js │ │ ├── Donut │ │ │ └── index.js │ │ ├── ExtendedButton │ │ │ └── index.js │ │ ├── IconButtonProps │ │ │ └── index.js │ │ ├── Intro │ │ │ ├── IndexPageContent.js │ │ │ ├── NavItem.js │ │ │ └── images │ │ │ │ ├── React_Magma_Logo_Color.svg │ │ │ │ ├── img-accessible.svg │ │ │ │ ├── img-component-based.svg │ │ │ │ ├── img-device-agnostic.svg │ │ │ │ ├── img-evolving.svg │ │ │ │ └── img-quality.svg │ │ ├── LayoutComponent │ │ │ └── index.js │ │ ├── LeadParagraph │ │ │ └── index.js │ │ ├── Logo │ │ │ └── index.js │ │ ├── MainContainer │ │ │ └── index.js │ │ ├── MainNav │ │ │ └── index.js │ │ ├── Masthead │ │ │ └── index.js │ │ ├── NetlifyFooter │ │ │ └── index.js │ │ ├── PageContent │ │ │ └── index.js │ │ ├── SimplePropsTable │ │ │ └── index.js │ │ ├── SlidingDrawer │ │ │ └── index.js │ │ ├── SubPageTabs │ │ │ └── index.js │ │ ├── editorTheme.js │ │ ├── layout.css │ │ └── layout.js │ ├── images │ │ └── icons │ │ │ └── storybook-icon.tsx │ ├── pages │ │ ├── 404.js │ │ ├── animate.css │ │ ├── api-intro │ │ │ ├── changelog.mdx │ │ │ ├── introduction.mdx │ │ │ ├── page-templates.mdx │ │ │ ├── styles-and-themes.mdx │ │ │ ├── usage.mdx │ │ │ └── versions.mdx │ │ ├── api │ │ │ ├── accordion.mdx │ │ │ ├── aibutton.mdx │ │ │ ├── alert.mdx │ │ │ ├── announce.mdx │ │ │ ├── appbar.mdx │ │ │ ├── badge.mdx │ │ │ ├── banner.mdx │ │ │ ├── blockquote.mdx │ │ │ ├── breadcrumb.mdx │ │ │ ├── breakpoints-container.mdx │ │ │ ├── button.mdx │ │ │ ├── buttongroup.mdx │ │ │ ├── card.mdx │ │ │ ├── character-counter.mdx │ │ │ ├── checkboxes.mdx │ │ │ ├── combobox.mdx │ │ │ ├── container.mdx │ │ │ ├── datagrid.mdx │ │ │ ├── date-pickers.mdx │ │ │ ├── date-time-picker.mdx │ │ │ ├── drawer.mdx │ │ │ ├── dropdown.mdx │ │ │ ├── dropzone.mdx │ │ │ ├── flex.mdx │ │ │ ├── form.mdx │ │ │ ├── formgroup.mdx │ │ │ ├── global-styles.mdx │ │ │ ├── grid.mdx │ │ │ ├── heading.mdx │ │ │ ├── hide-at-breakpoint.mdx │ │ │ ├── hyperlink.mdx │ │ │ ├── icon-button.mdx │ │ │ ├── icon.mdx │ │ │ ├── indeterminate.mdx │ │ │ ├── input.mdx │ │ │ ├── internationalization.mdx │ │ │ ├── list.mdx │ │ │ ├── loading-indicator.mdx │ │ │ ├── modal.mdx │ │ │ ├── native-select.mdx │ │ │ ├── nav-tabs.mdx │ │ │ ├── pagination.mdx │ │ │ ├── paragraph.mdx │ │ │ ├── password-input.mdx │ │ │ ├── popover.mdx │ │ │ ├── progress-bar.mdx │ │ │ ├── radio.mdx │ │ │ ├── search.mdx │ │ │ ├── select.mdx │ │ │ ├── skip-link.mdx │ │ │ ├── spacer.mdx │ │ │ ├── spinner.mdx │ │ │ ├── stepper.mdx │ │ │ ├── table.mdx │ │ │ ├── tabs.mdx │ │ │ ├── tag.mdx │ │ │ ├── textarea.mdx │ │ │ ├── time-picker.mdx │ │ │ ├── toast.mdx │ │ │ ├── toggle-button-group.mdx │ │ │ ├── toggle-button.mdx │ │ │ ├── toggle.mdx │ │ │ ├── tooltip.mdx │ │ │ ├── transition.mdx │ │ │ ├── tree-view.mdx │ │ │ ├── use-device-detect.mdx │ │ │ ├── use-focus-lock.mdx │ │ │ ├── use-media-query.mdx │ │ │ └── visually-hidden.mdx │ │ ├── contribution-guidelines.mdx │ │ ├── data-visualization │ │ │ ├── chart-demos.future.txt │ │ │ ├── chart-demos.mdx │ │ │ ├── chart-types.css │ │ │ ├── chart-types.future.txt │ │ │ ├── chart-types.mdx │ │ │ └── introduction.mdx │ │ ├── design-intro │ │ │ ├── colors.mdx │ │ │ ├── get-started.mdx │ │ │ ├── layout.mdx │ │ │ ├── spacing.mdx │ │ │ └── typography.mdx │ │ ├── design │ │ │ ├── accordion.mdx │ │ │ ├── alert.mdx │ │ │ ├── badge.mdx │ │ │ ├── banner.mdx │ │ │ ├── breadcrumb.mdx │ │ │ ├── button.mdx │ │ │ ├── buttongroup.mdx │ │ │ ├── card.mdx │ │ │ ├── character-counter.mdx │ │ │ ├── checkboxes.mdx │ │ │ ├── combobox.mdx │ │ │ ├── date-picker.mdx │ │ │ ├── design-guidelines-styles.css │ │ │ ├── dropdown.mdx │ │ │ ├── dropzone.mdx │ │ │ ├── icon.mdx │ │ │ ├── indeterminate.mdx │ │ │ ├── input.mdx │ │ │ ├── list.mdx │ │ │ ├── loading-indicator.mdx │ │ │ ├── modal.mdx │ │ │ ├── native-select.mdx │ │ │ ├── password-input.mdx │ │ │ ├── progress-bar.mdx │ │ │ ├── radio.mdx │ │ │ ├── search.mdx │ │ │ ├── select.mdx │ │ │ ├── stepper.mdx │ │ │ ├── table.mdx │ │ │ ├── tabs.mdx │ │ │ ├── tag.mdx │ │ │ ├── time-picker.mdx │ │ │ ├── toast.mdx │ │ │ ├── toggle.mdx │ │ │ ├── tooltip.mdx │ │ │ └── tree-view.mdx │ │ ├── index.js │ │ ├── select-migration.mdx │ │ └── theme-settings.mdx │ └── utils │ │ └── index.js ├── static │ ├── downloads │ │ └── contributing-to-react-magma.pdf │ └── images │ │ ├── React_Magma_Logo_Mark.png │ │ ├── accordion │ │ ├── accordion-anatomy.png │ │ ├── accordion-bad-alignment.png │ │ ├── accordion-crowded-icons.png │ │ ├── accordion-drawer.png │ │ ├── accordion-good-alignment.png │ │ ├── accordion-in-page.png │ │ ├── accordion-incorrect-icon-orientation.png │ │ ├── accordion-incorrect-icons.png │ │ ├── accordion-intro-example.png │ │ ├── accordion-mouse-interaction.png │ │ ├── accordion-sidebar.png │ │ └── accordion-states.png │ │ ├── alerts │ │ ├── alert-anatomy.png │ │ ├── alert-intro-image.png │ │ ├── alert-inverse.png │ │ ├── alert-severity-levels.png │ │ ├── banner-alert-example.png │ │ ├── batch-actions-toast.png │ │ ├── inline-alert-example-2.png │ │ ├── inline-alert-example.png │ │ ├── mobile-banner-alert-example.png │ │ ├── mobile-inline-alert-example.png │ │ ├── mobile-toast-alert-example.png │ │ ├── stack-toasts-incorrect.png │ │ ├── toast-alert-example.png │ │ ├── toast-error-manually-dismiss.png │ │ └── toast-successful-auto-dismiss.png │ │ ├── badges │ │ ├── Badges.png │ │ ├── counter-example.png │ │ ├── label-colors.png │ │ └── label-example.png │ │ ├── breadcrumbs │ │ ├── breadcrumbs-wrap.png │ │ └── example-breadcrumbs.png │ │ ├── button-group │ │ ├── additional-actions.png │ │ ├── alignment.png │ │ ├── bad-groupings.png │ │ ├── button-group-intro.png │ │ ├── button-order-bad.png │ │ ├── button-order-good.png │ │ ├── good-groupings.png │ │ ├── icons-bad.png │ │ ├── icons-good.png │ │ ├── no-space.png │ │ ├── orientation.png │ │ └── size.png │ │ ├── buttons │ │ ├── button-sizes.png │ │ ├── ex_4_1.png │ │ ├── ex_4_2.png │ │ ├── ex_4_3.png │ │ ├── ex_4_4.png │ │ ├── ex_4_5.png │ │ ├── ex_4_6.png │ │ ├── ex_4_7.png │ │ ├── ex_4_8.png │ │ ├── ex_4_9.png │ │ ├── ex_6_1.png │ │ ├── ex_6_3.png │ │ ├── ex_6_4.png │ │ ├── ex_7_1.png │ │ ├── ex_7_2.png │ │ ├── ex_8_1.png │ │ ├── ex_8_2.png │ │ ├── ex_8_3.png │ │ ├── ex_9_1.png │ │ ├── ex_9_2.png │ │ ├── marketing_example.png │ │ ├── subtle_button_example_1.png │ │ └── subtle_button_example_2.png │ │ ├── cards │ │ ├── card-anatomy.png │ │ ├── card-callout.png │ │ ├── card-colors.png │ │ ├── card-depth.png │ │ ├── card-dividers.png │ │ ├── card-general-layout.png │ │ ├── card-inset-divider.png │ │ ├── card-intro-example.png │ │ ├── card-overflow.png │ │ ├── card-scannable.png │ │ ├── card-scrolling-incorrect.png │ │ ├── card-truncate-correct.png │ │ ├── card-ui-controls.png │ │ ├── cards-layout.png │ │ └── cards-related-pieces.png │ │ ├── character-counter │ │ ├── behavior-1.png │ │ ├── behavior-2.png │ │ ├── behavior-3.png │ │ └── intro-image.png │ │ ├── chart-types │ │ ├── area.jpg │ │ ├── boxplot.jpg │ │ ├── bubble.jpg │ │ ├── bullet.jpg │ │ ├── circle-pack.jpg │ │ ├── combo.jpg │ │ ├── donut.jpg │ │ ├── floating-bar.jpg │ │ ├── gauge.jpg │ │ ├── grouped-bar.jpg │ │ ├── heatmap.jpg │ │ ├── histogram.jpg │ │ ├── line.jpg │ │ ├── lollipop.jpg │ │ ├── meter.jpg │ │ ├── pie.jpg │ │ ├── radar.jpg │ │ ├── scatter.jpg │ │ ├── simple-bar.jpg │ │ ├── sparkline.jpg │ │ ├── stacked-area.jpg │ │ ├── stacked-bar.jpg │ │ ├── step.jpg │ │ └── treemap.jpg │ │ ├── dropdowns │ │ ├── anatomy-icon-and-text.png │ │ ├── anatomy-selection-state-list.png │ │ ├── anatomy-text-list.png │ │ ├── custom-dropdown-button-1.png │ │ ├── custom-dropdown-button-2.png │ │ ├── dropdown-alignment-1.png │ │ ├── dropdown-alignment-2.png │ │ ├── dropdown-alignment-3.png │ │ ├── dropdown-custom-content.png │ │ ├── dropdown-groups.png │ │ ├── dropdown-intro-example.png │ │ ├── dropdown-signin-form.png │ │ ├── menu-adjust-placement.png │ │ ├── menu-item-wrapped.png │ │ ├── menu-max-height.png │ │ ├── menu-too-long.png │ │ ├── menu-too-wide.png │ │ ├── menu-tool-long.png │ │ ├── simple-dropdown-button.png │ │ └── split-dropdown-button.png │ │ ├── dropzone │ │ ├── file-types.png │ │ ├── file-validation.png │ │ ├── loading-states.png │ │ ├── uploaded-file-anatomy.png │ │ ├── uploaded-file-overflow.png │ │ ├── uploader-anatomy.png │ │ ├── uploader-dropzone-anatomy.png │ │ ├── uploader-intro-image.png │ │ └── uploader-validation.png │ │ ├── gatsby-icon.png │ │ ├── header │ │ ├── anatomy-standard-responsive.png │ │ ├── anatomy-standard.png │ │ ├── duplicate-sidebar.png │ │ ├── h-specs-standard-responsive.png │ │ ├── h-specs-standard-with-sidebar.png │ │ ├── h-specs-standard.png │ │ ├── left-justification.png │ │ ├── sidebar-and-hamburger.png │ │ ├── span-width.png │ │ ├── standard-header.png │ │ ├── too-many-icons.png │ │ ├── v-specs-compact.png │ │ └── v-specs-standard.png │ │ ├── icons │ │ ├── icon-color-correct.png │ │ ├── icon-color-too-light.png │ │ ├── icon-mixed-colors.png │ │ ├── icon-sizes.png │ │ ├── icon-text-balance-correct.png │ │ ├── icon-text-balance-incorrect.png │ │ ├── icon-text-balance.png │ │ ├── icon-text-centered.png │ │ ├── icon-text-wrong-alignment.png │ │ └── icons-intro.png │ │ ├── inputs │ │ ├── Input-anatomy.png │ │ ├── caution-wrap-label.png │ │ ├── combobox-example.png │ │ ├── date-input-example.png │ │ ├── header-search.png │ │ ├── inline-search.png │ │ ├── input-container.png │ │ ├── input-error-message.png │ │ ├── input-helper-text.png │ │ ├── input-leading-icon.png │ │ ├── input-sizes.png │ │ ├── input-states.png │ │ ├── input-text.png │ │ ├── input-trailing-icon.png │ │ ├── input-what-is-this.png │ │ ├── inputs-intro-image.png │ │ ├── multi-combobox-example.png │ │ ├── multi-select-example.png │ │ ├── multiple-required-fields.png │ │ ├── native-select-example.png │ │ ├── number-field-example.png │ │ ├── password-input-anatomy.png │ │ ├── password-input-example.png │ │ ├── search-input-example.png │ │ ├── search-intro-image.png │ │ ├── selects-intro-image.png │ │ ├── single-required-field.png │ │ ├── text-area-example.png │ │ ├── text-field-example.png │ │ ├── time-input-example.png │ │ ├── time-input-keyboard.png │ │ ├── wrong-optional-field.png │ │ └── wrong-truncate-label.png │ │ ├── layout │ │ ├── columns-12.png │ │ ├── columns-4.png │ │ ├── columns-6.png │ │ ├── columns-gutters-margins.png │ │ ├── gutters-16.png │ │ ├── gutters-24.png │ │ ├── layout-full-width.png │ │ ├── layout-restricted-width.png │ │ ├── layout-with-sidebar-1024.png │ │ ├── layout-with-sidebar.png │ │ ├── template-full-width.png │ │ ├── template-restricted-width.png │ │ ├── template-sidebar-app-header.png │ │ └── template-sidebar-global-header.png │ │ ├── lists │ │ ├── icon-alignment.png │ │ ├── icon-list.png │ │ ├── icon-sizes.png │ │ ├── larger-spacing.png │ │ ├── list-intro-example.png │ │ ├── ordered-list.png │ │ ├── small-spacing.png │ │ └── unordered-list.png │ │ ├── loading-indicators │ │ ├── Button-loading.png │ │ ├── circular-spinner.png │ │ ├── example-progress-bar-message.png │ │ ├── example-spinner-message.png │ │ ├── mindtap-loading.png │ │ └── progress-bar.png │ │ ├── modals │ │ ├── confirm-decision.png │ │ ├── edit-item-example.png │ │ ├── modal-example-intro.png │ │ ├── modal-focus-example.png │ │ ├── modal-sizes.png │ │ └── modal-validation.png │ │ ├── progress-bars │ │ ├── Progress-bar-anatomy.png │ │ ├── Progress-bar-colors1.png │ │ ├── Progress-bar-colors2.png │ │ ├── Progress-bar-compare.png │ │ ├── Progress-bar-dynamic.png │ │ ├── Progress-bar-intro.png │ │ └── Progress-bar-static.png │ │ ├── react-magma-icon.svg │ │ ├── selection-controls │ │ ├── Checkbox-alternate-colors.png │ │ ├── Checkbox-example.png │ │ ├── Checkbox-incorrect-multi-color.png │ │ ├── Checkbox-incorrect-neutral.png │ │ ├── Checkbox-inverse.png │ │ ├── Checkbox-parent-child-example.png │ │ ├── Checkbox-states.png │ │ ├── Radio-buttons-example.png │ │ ├── Radio-example-2.png │ │ ├── Radio-inverse.png │ │ ├── Radio-select-only-one-incorrect.png │ │ ├── Radio-select-only-one.png │ │ ├── Radio-states.png │ │ ├── Toggle-switch-example.png │ │ └── Toggle-switch-states.png │ │ ├── spacing │ │ ├── icon-text-balance-correct.png │ │ └── spacing-example.png │ │ ├── stepper │ │ ├── mobile-no-labels.png │ │ ├── mobile-standard-labels.png │ │ ├── mobile-summary-view.png │ │ ├── no-labels.png │ │ ├── placement-full-page.png │ │ ├── placement-modal.png │ │ ├── placement-side-panel.png │ │ ├── primary-label.png │ │ ├── secondary-label.png │ │ ├── standard-labels.png │ │ ├── step-active.png │ │ ├── step-anatomy.png │ │ ├── step-complete.png │ │ ├── step-error.png │ │ ├── step-incomplete.png │ │ ├── step-navigation.png │ │ ├── stepper-intro.png │ │ ├── summary-view.png │ │ ├── text-wrap.png │ │ └── validation-error.png │ │ ├── tables │ │ ├── column-header-truncate.png │ │ ├── column-header-wrap.png │ │ ├── column-titles.png │ │ ├── compact-density.png │ │ ├── inline-actions-overflow.png │ │ ├── inline-actions.png │ │ ├── loose-density.png │ │ ├── normal-density.png │ │ ├── row-hover.png │ │ ├── striped-rows.png │ │ ├── table-anatomy.png │ │ ├── table-densities.png │ │ ├── table-description.png │ │ ├── table-sorting.png │ │ ├── table-title.png │ │ └── tables-intro-image.png │ │ ├── tabs │ │ ├── horizontal-scrolling-tabs.png │ │ ├── nesting-tabs-wrong.png │ │ ├── stacking-tabs-wrong.png │ │ ├── tabs-active-indicator-bottom.png │ │ ├── tabs-active-indicator-top.png │ │ ├── tabs-alignment-with-content.png │ │ ├── tabs-anatomy.png │ │ ├── tabs-centered.png │ │ ├── tabs-column.png │ │ ├── tabs-example.png │ │ ├── tabs-full-width.png │ │ ├── tabs-header.png │ │ ├── tabs-icon-and-label-stacked.png │ │ ├── tabs-icon-and-text-incorrect.png │ │ ├── tabs-icon-and-text.png │ │ ├── tabs-icon-only.png │ │ ├── tabs-inverse-compliant-colors.png │ │ ├── tabs-inverse-example.png │ │ ├── tabs-left-aligned.png │ │ ├── tabs-line-wrap.png │ │ ├── tabs-resize-text.png │ │ ├── tabs-right-aligned.png │ │ ├── tabs-states.png │ │ ├── tabs-truncate-text.png │ │ ├── tabs-vertical-scrolling.png │ │ └── tabs-vertical.png │ │ ├── tags │ │ ├── tags-categories.png │ │ ├── tags-dismissable.png │ │ ├── tags-filters.png │ │ ├── tags-intro.png │ │ ├── tags-sizes.png │ │ ├── tags-states.png │ │ ├── tags-styles.png │ │ └── tags-with-icon.png │ │ ├── tooltips │ │ ├── Tooltip-imagery.png │ │ ├── Tooltip-positions.png │ │ └── Tooltip-repeat-word.png │ │ ├── treeview │ │ ├── anatomy.png │ │ ├── expanding-behavior.png │ │ ├── intro-image.png │ │ ├── multi-select-states.png │ │ ├── nesting-alignment-1-1.png │ │ ├── nesting-alignment-1.png │ │ ├── node-icons-correct.png │ │ ├── node-icons-wrong.png │ │ ├── selecting-behavior.png │ │ ├── single-select-states.png │ │ └── stacking-nodes.png │ │ └── typography │ │ ├── font-italic.png │ │ ├── font-weights.png │ │ ├── margins-illustration.png │ │ ├── modal-title-style.png │ │ ├── noto-serif-characters.png │ │ ├── responsive-example.png │ │ ├── subdued-example-1.png │ │ ├── subdued-example-2.png │ │ ├── text-color-contrast.png │ │ ├── text-color-decoration.png │ │ ├── text-color-meaning-2.png │ │ ├── text-color-meaning.png │ │ ├── text-color-neutral-1.png │ │ ├── text-color-neutral-2.png │ │ ├── type-scale.png │ │ └── work-sans-characters.png └── tsconfig.json └── react-magma-landing ├── CHANGELOG.md ├── package.json ├── scripts └── build.js ├── static ├── 404.html ├── images │ ├── RM-Next.svg │ └── react-magma-icon.png └── styles.css └── templates ├── _redirects └── index.html /.changeset/a11y-docs-img-empty-alts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/a11y-docs-img-empty-alts.md -------------------------------------------------------------------------------- /.changeset/chore-charts-peer-deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-charts-peer-deps.md -------------------------------------------------------------------------------- /.changeset/chore-delete-deprecated-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-delete-deprecated-packages.md -------------------------------------------------------------------------------- /.changeset/chore-disable-docs-formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-disable-docs-formatting.md -------------------------------------------------------------------------------- /.changeset/chore-docs-deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-docs-deps.md -------------------------------------------------------------------------------- /.changeset/chore-docs-fix-chart-images.md: -------------------------------------------------------------------------------- 1 | --- 2 | 'react-magma-docs': patch 3 | --- 4 | 5 | chore: fix images 6 | -------------------------------------------------------------------------------- /.changeset/chore-dom-peer-deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-dom-peer-deps.md -------------------------------------------------------------------------------- /.changeset/chore-dropzone-peer-deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-dropzone-peer-deps.md -------------------------------------------------------------------------------- /.changeset/chore-fix-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-fix-components.md -------------------------------------------------------------------------------- /.changeset/chore-fix-docs-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-fix-docs-build.md -------------------------------------------------------------------------------- /.changeset/chore-fix-dropzone-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-fix-dropzone-build.md -------------------------------------------------------------------------------- /.changeset/chore-react-18-upgrade-publishing-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-react-18-upgrade-publishing-workflow.md -------------------------------------------------------------------------------- /.changeset/chore-react-react-dom-gatsby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-react-react-dom-gatsby.md -------------------------------------------------------------------------------- /.changeset/chore-storybook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-storybook.md -------------------------------------------------------------------------------- /.changeset/chore-test-packages-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-test-packages-upgrade.md -------------------------------------------------------------------------------- /.changeset/chore-update-docs-and-landing-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-update-docs-and-landing-page.md -------------------------------------------------------------------------------- /.changeset/chore-update-react-magma-icons.version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-update-react-magma-icons.version.md -------------------------------------------------------------------------------- /.changeset/chore-upgrade-gatsby-react-helmet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-upgrade-gatsby-react-helmet.md -------------------------------------------------------------------------------- /.changeset/chore-upgrade-minor-deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-upgrade-minor-deps.md -------------------------------------------------------------------------------- /.changeset/chore-upgrade-typedoc.md: -------------------------------------------------------------------------------- 1 | --- 2 | 'react-magma-docs': patch 3 | --- 4 | 5 | chore: upgrade typedoc 6 | -------------------------------------------------------------------------------- /.changeset/chore-upgrade-typescript-eslint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/chore-upgrade-typescript-eslint.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.changeset/feat-Checkbox-add-aria-label.md: -------------------------------------------------------------------------------- 1 | --- 2 | 'react-magma-dom': minor 3 | --- 4 | 5 | feat(Checkbox): Add new `ariaLabel` prop. 6 | -------------------------------------------------------------------------------- /.changeset/feat-DateTimePicker-timezone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/feat-DateTimePicker-timezone.md -------------------------------------------------------------------------------- /.changeset/feat-Modal-add-headel-level-prop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/feat-Modal-add-headel-level-prop.md -------------------------------------------------------------------------------- /.changeset/feat-SplitDropdown-add-leading-icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/feat-SplitDropdown-add-leading-icon.md -------------------------------------------------------------------------------- /.changeset/fix-AIButton-box-shadow.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | 'react-magma-dom': patch 4 | --- 5 | 6 | fix(AIButton): Fix box-shadows. 7 | -------------------------------------------------------------------------------- /.changeset/fix-Accordion-accessibility-render-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/fix-Accordion-accessibility-render-issue.md -------------------------------------------------------------------------------- /.changeset/fix-Combobox-accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/fix-Combobox-accessibility.md -------------------------------------------------------------------------------- /.changeset/fix-Docs-Miscellaneous-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/fix-Docs-Miscellaneous-issues.md -------------------------------------------------------------------------------- /.changeset/fix-Dropdown-add-aria-contols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/fix-Dropdown-add-aria-contols.md -------------------------------------------------------------------------------- /.changeset/fix-NavTabs-fix-obscured-focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/fix-NavTabs-fix-obscured-focus.md -------------------------------------------------------------------------------- /.changeset/fix-Select-scrollbar-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/fix-Select-scrollbar-issue.md -------------------------------------------------------------------------------- /.changeset/fix-Storybook-select-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/fix-Storybook-select-issues.md -------------------------------------------------------------------------------- /.changeset/fix-Table-tabIndex-logic.md: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | 'react-magma-dom': patch 4 | --- 5 | 6 | fix(Table): Change logic for `tabIndex`. 7 | -------------------------------------------------------------------------------- /.changeset/fix-ToggleButton-transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/fix-ToggleButton-transform.md -------------------------------------------------------------------------------- /.changeset/fix-datepicker-canvas-issue-react-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/fix-datepicker-canvas-issue-react-18.md -------------------------------------------------------------------------------- /.changeset/fix-drawer-scrollable-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/fix-drawer-scrollable-content.md -------------------------------------------------------------------------------- /.changeset/fix-modal-trigger-button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/fix-modal-trigger-button.md -------------------------------------------------------------------------------- /.changeset/fix-select-aria-label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/fix-select-aria-label.md -------------------------------------------------------------------------------- /.changeset/fix-select-focus-behaviour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/fix-select-focus-behaviour.md -------------------------------------------------------------------------------- /.changeset/fix-timepicker-broken-auto-fill.md: -------------------------------------------------------------------------------- 1 | --- 2 | 'react-magma-dom': patch 3 | --- 4 | 5 | fix(TimePicker): Fix issue with auto fill. 6 | -------------------------------------------------------------------------------- /.changeset/fix-timepicker-update-styles.md: -------------------------------------------------------------------------------- 1 | --- 2 | 'react-magma-dom': patch 3 | --- 4 | 5 | fix(TimePicker): Update styles 6 | -------------------------------------------------------------------------------- /.changeset/major-charts-v13-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/major-charts-v13-release.md -------------------------------------------------------------------------------- /.changeset/major-dropzone-v13-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/major-dropzone-v13-release.md -------------------------------------------------------------------------------- /.changeset/major-v5-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/major-v5-release.md -------------------------------------------------------------------------------- /.changeset/manually-sync-4.10.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | 'react-magma-docs': patch 3 | --- 4 | 5 | chore: Manually sync main -> dev (4.10.0) 6 | -------------------------------------------------------------------------------- /.changeset/pre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/pre.json -------------------------------------------------------------------------------- /.changeset/storybook-csf3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.changeset/storybook-csf3.md -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/deploy-v2-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.github/workflows/deploy-v2-docs.yml -------------------------------------------------------------------------------- /.github/workflows/preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.github/workflows/preview.yml -------------------------------------------------------------------------------- /.github/workflows/publish-latest.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.github/workflows/publish-latest.yml.disabled -------------------------------------------------------------------------------- /.github/workflows/publish-next.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.github/workflows/publish-next.yml -------------------------------------------------------------------------------- /.github/workflows/publish-old.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.github/workflows/publish-old.yml.disabled -------------------------------------------------------------------------------- /.github/workflows/publish-patch-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.github/workflows/publish-patch-v4.yml -------------------------------------------------------------------------------- /.github/workflows/publish-patch-v5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.github/workflows/publish-patch-v5.yml -------------------------------------------------------------------------------- /.github/workflows/publish-v4-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.github/workflows/publish-v4-latest.yml -------------------------------------------------------------------------------- /.github/workflows/publish-v4-next.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.github/workflows/publish-v4-next.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | npx --no-install commitlint --edit 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.19.2 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.storybook/manager.js -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/eslint.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/jest.overrides.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/jest.setup.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/lerna.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/package.json -------------------------------------------------------------------------------- /packages/charts/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/charts/CHANGELOG.md -------------------------------------------------------------------------------- /packages/charts/README.md: -------------------------------------------------------------------------------- 1 | # React Magma Charts 2 | -------------------------------------------------------------------------------- /packages/charts/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/charts/eslint.config.js -------------------------------------------------------------------------------- /packages/charts/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/charts/jest.config.js -------------------------------------------------------------------------------- /packages/charts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/charts/package.json -------------------------------------------------------------------------------- /packages/charts/src/components/CarbonChart/CarbonChart.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/charts/src/components/CarbonChart/CarbonChart.test.js -------------------------------------------------------------------------------- /packages/charts/src/components/CarbonChart/CarbonChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/charts/src/components/CarbonChart/CarbonChart.tsx -------------------------------------------------------------------------------- /packages/charts/src/components/CarbonChart/CarbonChartBar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/charts/src/components/CarbonChart/CarbonChartBar.stories.tsx -------------------------------------------------------------------------------- /packages/charts/src/components/CarbonChart/CarbonChartPie.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/charts/src/components/CarbonChart/CarbonChartPie.stories.tsx -------------------------------------------------------------------------------- /packages/charts/src/components/CarbonChart/embeddedStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/charts/src/components/CarbonChart/embeddedStyles.ts -------------------------------------------------------------------------------- /packages/charts/src/components/CarbonChart/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CarbonChart'; 2 | -------------------------------------------------------------------------------- /packages/charts/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components/CarbonChart'; 2 | -------------------------------------------------------------------------------- /packages/charts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/charts/tsconfig.json -------------------------------------------------------------------------------- /packages/dropzone/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | .cache 5 | dist 6 | -------------------------------------------------------------------------------- /packages/dropzone/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/CHANGELOG.md -------------------------------------------------------------------------------- /packages/dropzone/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/LICENSE -------------------------------------------------------------------------------- /packages/dropzone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/README.md -------------------------------------------------------------------------------- /packages/dropzone/axe-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/axe-helper.js -------------------------------------------------------------------------------- /packages/dropzone/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/eslint.config.js -------------------------------------------------------------------------------- /packages/dropzone/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/jest.config.js -------------------------------------------------------------------------------- /packages/dropzone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/package.json -------------------------------------------------------------------------------- /packages/dropzone/src/components/dropzone/Dropzone.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/src/components/dropzone/Dropzone.stories.tsx -------------------------------------------------------------------------------- /packages/dropzone/src/components/dropzone/Dropzone.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/src/components/dropzone/Dropzone.test.js -------------------------------------------------------------------------------- /packages/dropzone/src/components/dropzone/Dropzone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/src/components/dropzone/Dropzone.tsx -------------------------------------------------------------------------------- /packages/dropzone/src/components/dropzone/FileIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/src/components/dropzone/FileIcon.tsx -------------------------------------------------------------------------------- /packages/dropzone/src/components/dropzone/FilePreview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/src/components/dropzone/FilePreview.ts -------------------------------------------------------------------------------- /packages/dropzone/src/components/dropzone/Preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/src/components/dropzone/Preview.tsx -------------------------------------------------------------------------------- /packages/dropzone/src/components/dropzone/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/src/components/dropzone/index.ts -------------------------------------------------------------------------------- /packages/dropzone/src/components/dropzone/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/src/components/dropzone/utils.ts -------------------------------------------------------------------------------- /packages/dropzone/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components/dropzone'; 2 | -------------------------------------------------------------------------------- /packages/dropzone/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/dropzone/tsconfig.json -------------------------------------------------------------------------------- /packages/react-magma-dom/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .rpt2_cache 3 | dist 4 | lib 5 | coverage 6 | *.log 7 | *.d.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-magma-dom/axe-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/axe-helper.js -------------------------------------------------------------------------------- /packages/react-magma-dom/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/babel.config.js -------------------------------------------------------------------------------- /packages/react-magma-dom/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/eslint.config.js -------------------------------------------------------------------------------- /packages/react-magma-dom/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/jest.config.js -------------------------------------------------------------------------------- /packages/react-magma-dom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/package.json -------------------------------------------------------------------------------- /packages/react-magma-dom/scripts/copy-changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/scripts/copy-changelog.js -------------------------------------------------------------------------------- /packages/react-magma-dom/scripts/generateJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/scripts/generateJSON.js -------------------------------------------------------------------------------- /packages/react-magma-dom/scripts/generateJSON.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/scripts/generateJSON.mjs -------------------------------------------------------------------------------- /packages/react-magma-dom/scripts/getAlias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/scripts/getAlias.js -------------------------------------------------------------------------------- /packages/react-magma-dom/scripts/getVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/scripts/getVersion.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/AIButton/AIButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/AIButton/AIButton.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/AIButton/AIButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/AIButton/AIButton.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/AIButton/StyledAIButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/AIButton/StyledAIButton.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/AIButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/AIButton/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/AIButton/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/AIButton/styles.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Accordion/Accordion.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Accordion/Accordion.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Accordion/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Accordion/Accordion.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Accordion/AccordionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Accordion/AccordionButton.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Accordion/AccordionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Accordion/AccordionItem.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Accordion/AccordionPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Accordion/AccordionPanel.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Accordion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Accordion/index.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Accordion/useAccordion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Accordion/useAccordion.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Accordion/useAccordionItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Accordion/useAccordionItem.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Alert/Alert.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Alert/Alert.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Alert/Alert.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Alert/Alert.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Alert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Alert/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/AlertBase/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/AlertBase/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Announce/Announce.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Announce/Announce.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Announce/Announce.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Announce/Announce.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Announce/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Announce/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/AppBar/AppBar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/AppBar/AppBar.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/AppBar/AppBar.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/AppBar/AppBar.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/AppBar/AppBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/AppBar/AppBar.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/AppBar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AppBar'; 2 | -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Badge/Badge.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Badge/Badge.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Badge/Badge.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Badge/Badge.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Badge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Badge/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Banner/Banner.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Banner/Banner.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Banner/Banner.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Banner/Banner.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Banner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Banner/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/BlockQuote/BlockQuote.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/BlockQuote/BlockQuote.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/BlockQuote/BlockQuote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/BlockQuote/BlockQuote.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/BlockQuote/BlockQuoteItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/BlockQuote/BlockQuoteItem.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/BlockQuote/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/BlockQuote/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Breadcrumb/Breadcrumb.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Breadcrumb/Breadcrumb.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Breadcrumb/Breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Breadcrumb/Breadcrumb.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Breadcrumb/BreadcrumbItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Breadcrumb/BreadcrumbItem.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Breadcrumb/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Breadcrumb/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Button/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Button/Button.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Button/Button.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Button/Button.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Button/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/ButtonGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/ButtonGroup/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Card/Card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Card/Card.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Card/Card.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Card/Card.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Card/Card.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Card/CardBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Card/CardBody.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Card/CardHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Card/CardHeading.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Card/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/CharacterCounter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CharacterCounter'; 2 | -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Checkbox/Checkbox.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Checkbox/Checkbox.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Checkbox/Checkbox.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Checkbox/Checkbox.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Checkbox/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Combobox/Combobox.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Combobox/Combobox.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Combobox/Combobox.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Combobox/Combobox.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Combobox/Combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Combobox/Combobox.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Combobox/ComboboxInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Combobox/ComboboxInput.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Combobox/MultiCombobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Combobox/MultiCombobox.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Combobox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Combobox/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Combobox/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Combobox/shared.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Container/Container.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Container/Container.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Container/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Container/Container.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Container/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Container'; 2 | -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Datagrid/Datagrid.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Datagrid/Datagrid.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Datagrid/Datagrid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Datagrid/Datagrid.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Datagrid/Datagrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Datagrid/Datagrid.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Datagrid/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Datagrid/components.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Datagrid/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Datagrid'; 2 | -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/DatePicker/CalendarContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/DatePicker/CalendarContext.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/DatePicker/CalendarDay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/DatePicker/CalendarDay.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/DatePicker/CalendarHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/DatePicker/CalendarHeader.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/DatePicker/CalendarMonth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/DatePicker/CalendarMonth.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/DatePicker/DatePicker.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/DatePicker/DatePicker.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/DatePicker/MonthPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/DatePicker/MonthPicker.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/DatePicker/StyledSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/DatePicker/StyledSelect.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/DatePicker/YearPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/DatePicker/YearPicker.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/DatePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/DatePicker/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/DatePicker/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/DatePicker/utils.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/DateTimePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/DateTimePicker/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/DefinitionList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/DefinitionList/index.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Drawer/Drawer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Drawer/Drawer.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Drawer/Drawer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Drawer/Drawer.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Drawer/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Drawer/Drawer.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Drawer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Drawer/index.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Dropdown/Dropdown.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Dropdown/Dropdown.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Dropdown/Dropdown.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Dropdown/Dropdown.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Dropdown/DropdownButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Dropdown/DropdownButton.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Dropdown/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Flex/Flex.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Flex/Flex.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Flex/Flex.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Flex/Flex.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Flex/Flex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Flex/Flex.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Flex/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Flex'; 2 | -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Form/Form.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Form/Form.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Form/Form.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Form/Form.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Form/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/FormFieldContainer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FormFieldContainer'; 2 | -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/FormGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/FormGroup/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Grid/Grid.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Grid/Grid.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Grid/Grid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Grid/Grid.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Grid/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Grid/Grid.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Grid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Grid/index.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Heading/Heading.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Heading/Heading.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Heading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Heading/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/HideAtBreakpoint/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/HideAtBreakpoint/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Hyperlink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Hyperlink/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/IconButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/IconButton/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Input/Input.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Input/Input.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Input/Input.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Input/Input.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Input/InputMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Input/InputMessage.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Input/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Input/testUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Input/testUtils.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/InputBase/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/InputBase/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Label/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Label/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/List/List.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/List/List.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/List/List.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/List/List.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/List/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/List/List.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/List/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/List/ListItem.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/List/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/List/index.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/LoadingIndicator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/LoadingIndicator/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Modal/Modal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Modal/Modal.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Modal/Modal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Modal/Modal.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Modal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Modal'; 2 | -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/NativeSelect/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NativeSelect'; 2 | -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/NavTabs/NavTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/NavTabs/NavTab.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/NavTabs/NavTabs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/NavTabs/NavTabs.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/NavTabs/NavTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/NavTabs/NavTabs.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/NavTabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/NavTabs/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Pagination/PageButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Pagination/PageButton.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Pagination/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Pagination/Pagination.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Pagination/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Pagination'; 2 | -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Paragraph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Paragraph/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/PasswordInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/PasswordInput/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Popover/Popover.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Popover/Popover.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Popover/Popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Popover/Popover.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Popover/PopoverContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Popover/PopoverContent.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Popover/PopoverSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Popover/PopoverSection.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Popover/PopoverTrigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Popover/PopoverTrigger.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Popover/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Popover/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/ProgressBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/ProgressBar/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/ProgressRing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/ProgressRing/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Radio/Radio.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Radio/Radio.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Radio/Radio.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Radio/Radio.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Radio/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/RadioGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/RadioGroup/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Search/Search.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Search/Search.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Search/Search.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Search/Search.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Search/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Select/ItemsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Select/ItemsList.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Select/MultiSelect.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Select/MultiSelect.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Select/MultiSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Select/MultiSelect.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Select/Select.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Select/Select.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Select/Select.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Select/Select.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Select/Select.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Select/SelectContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Select/SelectContainer.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Select/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Select/components.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Select/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Select/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Select/shared.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Select/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Select/utils.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/SkipLink/SkipLink.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/SkipLink/SkipLink.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/SkipLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/SkipLink/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/SkipLinkContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/SkipLinkContent/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Spacer/Spacer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Spacer/Spacer.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Spacer/Spacer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Spacer/Spacer.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Spacer/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Spacer/Spacer.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Spacer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Spacer'; 2 | -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Spinner/Spinner.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Spinner/Spinner.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Spinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Spinner/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Stepper/Step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Stepper/Step.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Stepper/Stepper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Stepper/Stepper.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Stepper/Stepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Stepper/Stepper.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Stepper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Stepper/index.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/StyledButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/StyledButton/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/StyledButton/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/StyledButton/styles.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Table/Table.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Table/Table.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Table/Table.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Table/Table.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Table/Table.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Table/TableBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Table/TableBody.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Table/TableCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Table/TableCell.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Table/TableHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Table/TableHead.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Table/TableHeaderCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Table/TableHeaderCell.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Table/TablePagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Table/TablePagination.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Table/TableRow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Table/TableRow.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Table/TableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Table/TableRow.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Table/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/CustomTab.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/CustomTab.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/CustomTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/CustomTab.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/Tab.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/Tab.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/Tab.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/TabPanel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/TabPanel.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/TabPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/TabPanel.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/TabScrollSpyPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/TabScrollSpyPanel.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/Tabs.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/Tabs.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/Tabs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/Tabs.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/TabsContainer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/TabsContainer.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/TabsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/TabsContainer.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/TabsScrollButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/TabsScrollButtons.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/shared.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tabs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tabs/utils.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tag/Tag.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tag/Tag.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tag/Tag.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tag/Tag.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tag/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tag/Tag.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tag/index.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Textarea/Textarea.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Textarea/Textarea.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Textarea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Textarea/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/TimePicker/AmPmToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/TimePicker/AmPmToggle.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/TimePicker/TimePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/TimePicker/TimePicker.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/TimePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/TimePicker/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Toast/Toast.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Toast/Toast.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Toast/Toast.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Toast/Toast.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Toast/ToastsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Toast/ToastsContainer.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Toast/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Toast/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Toggle/Toggle.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Toggle/Toggle.stories.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Toggle/Toggle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Toggle/Toggle.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Toggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Toggle/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/ToggleButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ToggleButton'; 2 | -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/ToggleButtonGroup/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ToggleButtonGroup'; 2 | -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tooltip/Tooltip.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tooltip/Tooltip.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Tooltip/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Transition/Transition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Transition/Transition.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Transition/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Transition'; 2 | -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/TreeView/TreeItem.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/TreeView/TreeItem.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/TreeView/TreeItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/TreeView/TreeItem.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/TreeView/TreeView.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/TreeView/TreeView.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/TreeView/TreeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/TreeView/TreeView.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/TreeView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/TreeView/index.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/TreeView/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/TreeView/types.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/TreeView/useTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/TreeView/useTreeItem.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/TreeView/useTreeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/TreeView/useTreeView.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/TreeView/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/TreeView/utils.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/Typography/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/Typography/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/components/VisuallyHidden/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/components/VisuallyHidden/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/hooks/useControlled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/hooks/useControlled.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/hooks/useDataPagination.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/hooks/useDataPagination.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/hooks/useDataPagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/hooks/useDataPagination.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/hooks/useDescendants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/hooks/useDescendants.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/hooks/useDeviceDetect.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/hooks/useDeviceDetect.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/hooks/useDeviceDetect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/hooks/useDeviceDetect.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/hooks/useFocusLock.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/hooks/useFocusLock.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/hooks/useFocusLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/hooks/useFocusLock.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/hooks/useForceUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/hooks/useForceUpdate.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/hooks/useMagmaFloating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/hooks/useMagmaFloating.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/hooks/useMediaQuery.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/hooks/useMediaQuery.test.js -------------------------------------------------------------------------------- /packages/react-magma-dom/src/hooks/useMediaQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/hooks/useMediaQuery.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/i18n/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/i18n/default.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/i18n/index.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/i18n/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/i18n/interface.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/index.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/inverse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/inverse/index.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/theme/GlobalStyles/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/theme/GlobalStyles/index.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/theme/ThemeContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/theme/ThemeContext.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/theme/components/drawerTransition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/theme/components/drawerTransition.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/theme/components/transition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/theme/components/transition.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/theme/magma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/theme/magma.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/theme/magmaColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/theme/magmaColors.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/theme/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/theme/styled.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/utils/UtilityStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/utils/UtilityStyles.tsx -------------------------------------------------------------------------------- /packages/react-magma-dom/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/utils/index.ts -------------------------------------------------------------------------------- /packages/react-magma-dom/src/utils/utils.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/src/utils/utils.test.jsx -------------------------------------------------------------------------------- /packages/react-magma-dom/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/tsconfig.json -------------------------------------------------------------------------------- /packages/react-magma-dom/tsdx.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/packages/react-magma-dom/tsdx.config.js -------------------------------------------------------------------------------- /plop-templates/component-pkg/index.ts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/plop-templates/component-pkg/index.ts.hbs -------------------------------------------------------------------------------- /plop-templates/component-pkg/{{capitalize componentName}}.tsx.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/plop-templates/component-pkg/{{capitalize componentName}}.tsx.hbs -------------------------------------------------------------------------------- /plop-templates/plopfile.hbs: -------------------------------------------------------------------------------- 1 | # This is a index for plop -------------------------------------------------------------------------------- /plop-templates/website/component.mdx.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/plop-templates/website/component.mdx.hbs -------------------------------------------------------------------------------- /readme_assets/commitizen_resulting_commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/readme_assets/commitizen_resulting_commit.png -------------------------------------------------------------------------------- /readme_assets/commitizen_scope_thru_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/readme_assets/commitizen_scope_thru_end.png -------------------------------------------------------------------------------- /readme_assets/commitizen_topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/readme_assets/commitizen_topic.png -------------------------------------------------------------------------------- /scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/scripts/clean.sh -------------------------------------------------------------------------------- /scripts/plopfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/scripts/plopfile.ts -------------------------------------------------------------------------------- /tests/playwright/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/tests/playwright/.gitignore -------------------------------------------------------------------------------- /tests/playwright/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/tests/playwright/package.json -------------------------------------------------------------------------------- /tests/playwright/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/tests/playwright/playwright.config.ts -------------------------------------------------------------------------------- /tests/playwright/tests/storybook/accordion/accordion.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/tests/playwright/tests/storybook/accordion/accordion.spec.ts -------------------------------------------------------------------------------- /tests/playwright/tests/storybook/alert/alert.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/tests/playwright/tests/storybook/alert/alert.spec.ts -------------------------------------------------------------------------------- /tests/playwright/tests/storybook/announce/announce.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/tests/playwright/tests/storybook/announce/announce.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/tsconfig.json -------------------------------------------------------------------------------- /website/react-magma-docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/.gitignore -------------------------------------------------------------------------------- /website/react-magma-docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/CHANGELOG.md -------------------------------------------------------------------------------- /website/react-magma-docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/LICENSE -------------------------------------------------------------------------------- /website/react-magma-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/README.md -------------------------------------------------------------------------------- /website/react-magma-docs/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/eslint.config.js -------------------------------------------------------------------------------- /website/react-magma-docs/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/gatsby-browser.js -------------------------------------------------------------------------------- /website/react-magma-docs/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/gatsby-config.js -------------------------------------------------------------------------------- /website/react-magma-docs/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/gatsby-node.js -------------------------------------------------------------------------------- /website/react-magma-docs/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/gatsby-ssr.js -------------------------------------------------------------------------------- /website/react-magma-docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/package.json -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/ButtonProps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/ButtonProps/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/CodeBlock/actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/CodeBlock/actions.tsx -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/CodeBlock/code-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/CodeBlock/code-block.tsx -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/CodeBlock/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/CodeBlock/context.ts -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/CodeBlock/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/CodeBlock/editor.tsx -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/CodeBlock/examples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/CodeBlock/examples.tsx -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/CodeBlock/file-uploader.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/CodeBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/CodeBlock/index.tsx -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/CodeBlock/magmaCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/CodeBlock/magmaCode.ts -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/CodeBlock/magmaCodeDark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/CodeBlock/magmaCodeDark.ts -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/CodeBlock/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/CodeBlock/preview.tsx -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/ColorSwatch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/ColorSwatch/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/DarkMode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/DarkMode/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/DemoModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/DemoModal/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/Divider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/Divider/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/Donut/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/Donut/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/ExtendedButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/ExtendedButton/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/IconButtonProps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/IconButtonProps/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/Intro/IndexPageContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/Intro/IndexPageContent.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/Intro/NavItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/Intro/NavItem.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/LayoutComponent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/LayoutComponent/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/LeadParagraph/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/LeadParagraph/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/Logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/Logo/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/MainContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/MainContainer/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/MainNav/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/MainNav/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/Masthead/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/Masthead/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/NetlifyFooter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/NetlifyFooter/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/PageContent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/PageContent/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/SimplePropsTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/SimplePropsTable/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/SlidingDrawer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/SlidingDrawer/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/SubPageTabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/SubPageTabs/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/editorTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/editorTheme.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/layout.css -------------------------------------------------------------------------------- /website/react-magma-docs/src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/components/layout.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/images/icons/storybook-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/images/icons/storybook-icon.tsx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/404.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/animate.css -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api-intro/changelog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api-intro/changelog.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api-intro/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api-intro/introduction.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api-intro/page-templates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api-intro/page-templates.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api-intro/styles-and-themes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api-intro/styles-and-themes.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api-intro/usage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api-intro/usage.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api-intro/versions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api-intro/versions.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/accordion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/accordion.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/aibutton.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/aibutton.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/alert.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/alert.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/announce.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/announce.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/appbar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/appbar.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/badge.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/badge.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/banner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/banner.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/blockquote.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/blockquote.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/breadcrumb.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/breadcrumb.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/breakpoints-container.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/breakpoints-container.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/button.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/buttongroup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/buttongroup.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/card.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/character-counter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/character-counter.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/checkboxes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/checkboxes.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/combobox.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/combobox.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/container.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/container.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/datagrid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/datagrid.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/date-pickers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/date-pickers.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/date-time-picker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/date-time-picker.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/drawer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/drawer.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/dropdown.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/dropdown.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/dropzone.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/dropzone.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/flex.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/flex.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/form.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/form.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/formgroup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/formgroup.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/global-styles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/global-styles.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/grid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/grid.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/heading.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/heading.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/hide-at-breakpoint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/hide-at-breakpoint.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/hyperlink.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/hyperlink.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/icon-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/icon-button.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/icon.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/icon.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/indeterminate.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/indeterminate.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/input.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/input.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/internationalization.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/internationalization.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/list.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/loading-indicator.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/loading-indicator.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/modal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/modal.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/native-select.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/native-select.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/nav-tabs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/nav-tabs.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/pagination.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/pagination.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/paragraph.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/paragraph.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/password-input.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/password-input.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/popover.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/popover.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/progress-bar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/progress-bar.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/radio.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/radio.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/search.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/search.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/select.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/select.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/skip-link.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/skip-link.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/spacer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/spacer.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/spinner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/spinner.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/stepper.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/stepper.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/table.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/table.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/tabs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/tabs.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/tag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/tag.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/textarea.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/textarea.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/time-picker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/time-picker.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/toast.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/toast.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/toggle-button-group.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/toggle-button-group.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/toggle-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/toggle-button.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/toggle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/toggle.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/tooltip.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/tooltip.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/transition.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/transition.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/tree-view.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/tree-view.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/use-device-detect.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/use-device-detect.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/use-focus-lock.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/use-focus-lock.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/use-media-query.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/use-media-query.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/api/visually-hidden.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/api/visually-hidden.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/contribution-guidelines.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/contribution-guidelines.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design-intro/colors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design-intro/colors.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design-intro/get-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design-intro/get-started.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design-intro/layout.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design-intro/layout.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design-intro/spacing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design-intro/spacing.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design-intro/typography.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design-intro/typography.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/accordion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/accordion.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/alert.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/alert.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/badge.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/badge.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/banner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/banner.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/breadcrumb.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/breadcrumb.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/button.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/buttongroup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/buttongroup.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/card.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/character-counter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/character-counter.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/checkboxes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/checkboxes.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/combobox.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/combobox.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/date-picker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/date-picker.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/dropdown.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/dropdown.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/dropzone.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/dropzone.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/icon.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/icon.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/indeterminate.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/indeterminate.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/input.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/input.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/list.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/loading-indicator.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/loading-indicator.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/modal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/modal.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/native-select.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/native-select.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/password-input.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/password-input.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/progress-bar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/progress-bar.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/radio.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/radio.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/search.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/search.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/select.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/select.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/stepper.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/stepper.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/table.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/table.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/tabs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/tabs.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/tag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/tag.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/time-picker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/time-picker.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/toast.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/toast.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/toggle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/toggle.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/tooltip.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/tooltip.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/design/tree-view.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/design/tree-view.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/select-migration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/select-migration.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/pages/theme-settings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/pages/theme-settings.mdx -------------------------------------------------------------------------------- /website/react-magma-docs/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/src/utils/index.js -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/React_Magma_Logo_Mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/React_Magma_Logo_Mark.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/alerts/alert-anatomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/alerts/alert-anatomy.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/alerts/alert-inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/alerts/alert-inverse.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/badges/Badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/badges/Badges.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/badges/counter-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/badges/counter-example.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/badges/label-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/badges/label-colors.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/badges/label-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/badges/label-example.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/button-group/alignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/button-group/alignment.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/button-group/icons-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/button-group/icons-bad.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/button-group/icons-good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/button-group/icons-good.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/button-group/no-space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/button-group/no-space.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/button-group/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/button-group/size.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/button-sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/button-sizes.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_4_1.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_4_2.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_4_3.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_4_4.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_4_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_4_5.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_4_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_4_6.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_4_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_4_7.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_4_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_4_8.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_4_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_4_9.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_6_1.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_6_3.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_6_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_6_4.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_7_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_7_1.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_7_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_7_2.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_8_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_8_1.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_8_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_8_2.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_8_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_8_3.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_9_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_9_1.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/buttons/ex_9_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/buttons/ex_9_2.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/cards/card-anatomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/cards/card-anatomy.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/cards/card-callout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/cards/card-callout.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/cards/card-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/cards/card-colors.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/cards/card-depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/cards/card-depth.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/cards/card-dividers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/cards/card-dividers.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/cards/card-overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/cards/card-overflow.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/cards/card-scannable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/cards/card-scannable.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/cards/card-ui-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/cards/card-ui-controls.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/cards/cards-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/cards/cards-layout.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/area.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/area.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/boxplot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/boxplot.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/bubble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/bubble.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/bullet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/bullet.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/circle-pack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/circle-pack.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/combo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/combo.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/donut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/donut.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/gauge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/gauge.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/grouped-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/grouped-bar.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/heatmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/heatmap.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/histogram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/histogram.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/line.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/lollipop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/lollipop.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/meter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/meter.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/pie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/pie.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/radar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/radar.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/scatter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/scatter.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/simple-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/simple-bar.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/sparkline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/sparkline.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/stacked-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/stacked-bar.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/step.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/step.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/chart-types/treemap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/chart-types/treemap.jpg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/dropdowns/menu-too-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/dropdowns/menu-too-long.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/dropdowns/menu-too-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/dropdowns/menu-too-wide.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/dropzone/file-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/dropzone/file-types.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/dropzone/loading-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/dropzone/loading-states.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/gatsby-icon.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/header/anatomy-standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/header/anatomy-standard.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/header/h-specs-standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/header/h-specs-standard.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/header/span-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/header/span-width.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/header/standard-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/header/standard-header.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/header/too-many-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/header/too-many-icons.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/header/v-specs-compact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/header/v-specs-compact.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/header/v-specs-standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/header/v-specs-standard.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/icons/icon-mixed-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/icons/icon-mixed-colors.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/icons/icon-sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/icons/icon-sizes.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/icons/icon-text-balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/icons/icon-text-balance.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/icons/icons-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/icons/icons-intro.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/inputs/Input-anatomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/inputs/Input-anatomy.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/inputs/combobox-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/inputs/combobox-example.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/inputs/header-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/inputs/header-search.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/inputs/inline-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/inputs/inline-search.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/inputs/input-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/inputs/input-container.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/inputs/input-sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/inputs/input-sizes.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/inputs/input-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/inputs/input-states.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/inputs/input-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/inputs/input-text.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/layout/columns-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/layout/columns-12.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/layout/columns-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/layout/columns-4.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/layout/columns-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/layout/columns-6.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/layout/gutters-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/layout/gutters-16.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/layout/gutters-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/layout/gutters-24.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/lists/icon-alignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/lists/icon-alignment.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/lists/icon-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/lists/icon-list.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/lists/icon-sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/lists/icon-sizes.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/lists/larger-spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/lists/larger-spacing.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/lists/ordered-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/lists/ordered-list.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/lists/small-spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/lists/small-spacing.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/lists/unordered-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/lists/unordered-list.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/modals/confirm-decision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/modals/confirm-decision.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/modals/modal-sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/modals/modal-sizes.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/modals/modal-validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/modals/modal-validation.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/react-magma-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/react-magma-icon.svg -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/spacing/spacing-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/spacing/spacing-example.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/stepper/no-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/stepper/no-labels.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/stepper/placement-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/stepper/placement-modal.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/stepper/primary-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/stepper/primary-label.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/stepper/secondary-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/stepper/secondary-label.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/stepper/standard-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/stepper/standard-labels.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/stepper/step-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/stepper/step-active.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/stepper/step-anatomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/stepper/step-anatomy.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/stepper/step-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/stepper/step-complete.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/stepper/step-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/stepper/step-error.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/stepper/step-incomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/stepper/step-incomplete.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/stepper/step-navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/stepper/step-navigation.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/stepper/stepper-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/stepper/stepper-intro.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/stepper/summary-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/stepper/summary-view.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/stepper/text-wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/stepper/text-wrap.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tables/column-titles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tables/column-titles.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tables/compact-density.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tables/compact-density.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tables/inline-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tables/inline-actions.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tables/loose-density.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tables/loose-density.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tables/normal-density.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tables/normal-density.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tables/row-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tables/row-hover.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tables/striped-rows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tables/striped-rows.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tables/table-anatomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tables/table-anatomy.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tables/table-densities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tables/table-densities.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tables/table-sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tables/table-sorting.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tables/table-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tables/table-title.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/nesting-tabs-wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/nesting-tabs-wrong.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-anatomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-anatomy.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-centered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-centered.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-column.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-example.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-full-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-full-width.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-header.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-icon-and-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-icon-and-text.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-icon-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-icon-only.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-left-aligned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-left-aligned.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-line-wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-line-wrap.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-resize-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-resize-text.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-right-aligned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-right-aligned.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-states.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-truncate-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-truncate-text.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tabs/tabs-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tabs/tabs-vertical.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tags/tags-categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tags/tags-categories.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tags/tags-dismissable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tags/tags-dismissable.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tags/tags-filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tags/tags-filters.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tags/tags-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tags/tags-intro.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tags/tags-sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tags/tags-sizes.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tags/tags-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tags/tags-states.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tags/tags-styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tags/tags-styles.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/tags/tags-with-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/tags/tags-with-icon.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/treeview/anatomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/treeview/anatomy.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/treeview/intro-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/treeview/intro-image.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/treeview/stacking-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/treeview/stacking-nodes.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/typography/font-italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/typography/font-italic.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/typography/font-weights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/typography/font-weights.png -------------------------------------------------------------------------------- /website/react-magma-docs/static/images/typography/type-scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/static/images/typography/type-scale.png -------------------------------------------------------------------------------- /website/react-magma-docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-docs/tsconfig.json -------------------------------------------------------------------------------- /website/react-magma-landing/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-landing/CHANGELOG.md -------------------------------------------------------------------------------- /website/react-magma-landing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-landing/package.json -------------------------------------------------------------------------------- /website/react-magma-landing/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-landing/scripts/build.js -------------------------------------------------------------------------------- /website/react-magma-landing/static/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-landing/static/404.html -------------------------------------------------------------------------------- /website/react-magma-landing/static/images/RM-Next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-landing/static/images/RM-Next.svg -------------------------------------------------------------------------------- /website/react-magma-landing/static/images/react-magma-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-landing/static/images/react-magma-icon.png -------------------------------------------------------------------------------- /website/react-magma-landing/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-landing/static/styles.css -------------------------------------------------------------------------------- /website/react-magma-landing/templates/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-landing/templates/_redirects -------------------------------------------------------------------------------- /website/react-magma-landing/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cengage/react-magma/HEAD/website/react-magma-landing/templates/index.html --------------------------------------------------------------------------------