Skip to content

Commit

Permalink
chore: exit prerelease mode
Browse files Browse the repository at this point in the history
  • Loading branch information
github-bot committed Jun 22, 2023
1 parent e4576b2 commit 833ceb2
Show file tree
Hide file tree
Showing 38 changed files with 88 additions and 185 deletions.
5 changes: 0 additions & 5 deletions .changeset/button-focus-stack.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/charCounter.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/charcounter-initialvalue.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/disabled-multiCombo.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/docs-select.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/docs-toggle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/docs.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/dropdown-noitems.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/feat-simplePagination.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/fix-characterCounterProp.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-characterCounterStyling.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-docsDatagrid.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-iconbuttonstack.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-modals.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-pagination.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-simplePagination.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-tablePaginationBorderRadius.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-toaststack.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gold-pears-travel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/great-donuts-build.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/grid-docs.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/multiselect-align.md

This file was deleted.

40 changes: 0 additions & 40 deletions .changeset/pre.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/theme-docs.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/toast-docs.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tooltip-docs.md

This file was deleted.

2 changes: 2 additions & 0 deletions packages/charts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @react-magma/charts

## 4.0.0

## 4.0.0-next.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/charts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-magma/charts",
"version": "4.0.0-next.1",
"version": "4.0.0",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -41,7 +41,7 @@
"@emotion/styled": "^10.0.27",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-magma-dom": "^4.1.0-next.2",
"react-magma-dom": "^4.1.0",
"react-magma-icons": "^3.0.0"
}
}
2 changes: 2 additions & 0 deletions packages/dropzone/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 4.0.0

## 4.0.0-next.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/dropzone/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-magma/dropzone",
"version": "4.0.0-next.1",
"version": "4.0.0",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -42,7 +42,7 @@
"@emotion/styled": "^10.0.27",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-magma-dom": "^4.1.0-next.2",
"react-magma-dom": "^4.1.0",
"react-magma-icons": "^3.0.0"
}
}
30 changes: 30 additions & 0 deletions packages/react-magma-dom/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Change Log

## 4.1.0

### Minor Changes

- 3d00dcc7e: feat(SimplePagination): New Pagination type which changes the pages in Pagination from a series of individual buttons to a dropdown.

### Patch Changes

- c0a658b5a: fix(Button): Update button z-index when it's in focus to bring the focus outline to the front.
- 155f2de2c: fix(CharCounter): Update maxLength/maxCount logic.
- caee2a755: fix(CharCounter): Update calculation for character length on rerender.
- 35a33a7ae: fix(combobox): Disabled Multi Combobox disables the buttons inside it
- cca876b3a: fix(dropdown): Dropdowns without `DropdownMenuItem` will get focused on open.
Fixes issue where these dropdowns could not be closed on Escape in Safari, and should be readable by screenreaders.
- 630bb5ab3: fix(Character Counter): Two new props have been added. The `hasCharacterCounter` prop which defaults to `true` and the `maxCount` prop which replaces `maxLength` and enables the Character Counter.

In the interim if an input needs a native `maxlength` and not a Character Counter, set `hasCharacterCounter={false}` and then use `maxLength`.

Please note that in the meantime, `maxLength` is still supported but will need to be changed to `maxCount` as future releases will remove `maxLength` and `hasCharacterCounter`.

- 8ffdf899b: fix(Character Counter): Fixed bold text in Character Counter before user input, red error border on maxLength only Inputs and Textareas with hasCharacterCounter set to false, then removed unintentional maxLength limit on Textarea using maxLength or maxCount with hasCharacterCounter set to true.
- d0c69155a: fix(inputbase): Update icon/button position for inputs with two icons.
- 6f53d1891: fix(Modal): Added support for closing individual nested modals with escape key.
- 395aea21c: fix(Pagination): Spacing, Tooltip inverse state, and VoiceOver support fixes.
- 6b6e0de20: fix(SimplePagination): Fixed keyboard navigation on previous and next buttons, onPageChange function now reads the current page, VoiceOver fix for current page, and responsive tweaks.
- 7066b5c84: fix(TablePagination): TablePagination component now respects theme border radius on bottom corners
- f487b936f: fix(alertbase): Update height for toasts in AlertBase
- 92569a238: chore: Revert Input outline commits
- 4a10f8905: fix(select): Fix Multi Select placeholder text alignment

## 4.1.0-next.15

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-magma-dom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-magma-dom",
"version": "4.1.0-next.15",
"version": "4.1.0",
"description": "",
"main": "dist/index.js",
"module": "dist/esm/index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/schema-renderer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @react-magma/schema-renderer

## 4.0.0

## 4.0.0-next.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/schema-renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-magma/schema-renderer",
"version": "4.0.0-next.1",
"version": "4.0.0",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -41,7 +41,7 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "11.3.2",
"react-magma-dom": "^4.1.0-next.2",
"react-magma-dom": "^4.1.0",
"react-magma-icons": "^3.0.0",
"tsdx": "^0.14.1",
"uuid": "^8.3.0"
Expand Down
2 changes: 2 additions & 0 deletions patterns/header/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 6.0.0

## 6.0.0-next.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions patterns/header/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"publishConfig": {
"access": "public"
},
"version": "6.0.0-next.1",
"version": "6.0.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -38,7 +38,7 @@
"downshift": "^5.4.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-magma-dom": "^4.1.0-next.2",
"react-magma-dom": "^4.1.0",
"react-magma-icons": "^3.0.0",
"uuid": "^8.3.0"
},
Expand Down
35 changes: 35 additions & 0 deletions website/react-magma-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# Change Log

## 5.0.1

### Patch Changes

- 4a10f8905: Reorganize Select docs
- 0894b08eb: Update ToggleButton and ToggleButtonGroup docs.
- 108637df1: Update page layout. Move secondary navigation to the page.
- 54e6ea1d8: fix(docs - datagrid): This resolves the missing example under "Selectable and Sortable" within the Datagrid API documentation.
- 33548e7e5: docs: updated docs
- 504763bd6: Update Grid docs. Add explanation for `as` prop.
- fbc4b655f: Update the Theme page to include more details about theming, and remove theme section in the Custom Styles page.
- 0ddda514c: Update Toast docs to include that messages should be 1-2 lines long.
- 0b581a8cb: Update Tooltip docs to remove reference to old `trigger` prop.
- Updated dependencies [c0a658b5a]
- Updated dependencies [155f2de2c]
- Updated dependencies [caee2a755]
- Updated dependencies [35a33a7ae]
- Updated dependencies [cca876b3a]
- Updated dependencies [3d00dcc7e]
- Updated dependencies [630bb5ab3]
- Updated dependencies [8ffdf899b]
- Updated dependencies [d0c69155a]
- Updated dependencies [6f53d1891]
- Updated dependencies [395aea21c]
- Updated dependencies [6b6e0de20]
- Updated dependencies [7066b5c84]
- Updated dependencies [f487b936f]
- Updated dependencies [92569a238]
- Updated dependencies [4a10f8905]
- [email protected]
- @react-magma/charts@4.0.0
- @react-magma/dropzone@4.0.0
- @react-magma/schema-renderer@4.0.0
- @cengage-patterns/header@6.0.0

## 5.0.1-next.23

### Patch Changes
Expand Down
Loading

0 comments on commit 833ceb2

Please sign in to comment.