Skip to content

Commit

Permalink
build(version): version packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Mar 27, 2024
1 parent 93cb725 commit bc90f77
Show file tree
Hide file tree
Showing 8 changed files with 72 additions and 3 deletions.
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"sharp-months-draw",
"silent-chefs-invent",
"tasty-trainers-beg",
"ten-poems-film",
"thin-tables-carry",
"tidy-tips-sort"
]
Expand Down
26 changes: 26 additions & 0 deletions .changeset/ten-poems-film.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
"@react-md/core": minor
---

Fixed styling issues, added additional configuration props, and added support for non-barrel file behavior

## Features

- Added support for non-barrel files for `@react-md/core` to improve build performance in bundlers
- i.e. `import { Button } from "@react-md/core/button/Button"` and `import { useToggle } from "@react-md/core/useToggle"`
- Added a new `MenuItemCircularProgress` component
- Added a `useFuzzyMatch` hook to increase the performance around fuzzy matching in large lists
- `useListboxContext` will now throw an error if a parent `ListboxProvider` does not exist
- Updated the `TableRow` hover state to no longer require the `InteractionModeProvider`
- Updated the `useDebouncedFunction` and `useThrottledFunction` hooks to support manually cancelling timeouts

## Fixes

- `Label` supports `pointer-events` while floating
- `Select` no longer displays the soft keyboard on mobile devices
- `TextArea` allows the `containerProps` like the `TextField` and added some fixes for the resizing behavior
- `Snackbar` supports absolute positioning

## Documentation

- Updated the documentation around using the mocked `ResizeObserver` in tests so that the example is on the `setupResizeObserverMock` instead of `ResizeObserverMock.resizeElement`
8 changes: 8 additions & 0 deletions apps/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# docs

## 6.0.0-next.10

### Patch Changes

- Updated dependencies
- @react-md/core@1.0.0-next.10
- @react-md/material-icons@6.0.0-next.10

## 6.0.0-next.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "docs",
"type": "module",
"private": true,
"version": "6.0.0-next.9",
"version": "6.0.0-next.10",
"description": "The documentation site for react-md",
"scripts": {
"run-script": "tsx --tsconfig scripts/tsconfig.json",
Expand Down
27 changes: 27 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# @react-md/core

## 1.0.0-next.10

### Minor Changes

- Fixed styling issues, added additional configuration props, and added support for non-barrel file behavior

#### Features

- Added support for non-barrel files for `@react-md/core` to improve build performance in bundlers
- i.e. `import { Button } from "@react-md/core/button/Button"` and `import { useToggle } from "@react-md/core/useToggle"`
- Added a new `MenuItemCircularProgress` component
- Added a `useFuzzyMatch` hook to increase the performance around fuzzy matching in large lists
- `useListboxContext` will now throw an error if a parent `ListboxProvider` does not exist
- Updated the `TableRow` hover state to no longer require the `InteractionModeProvider`
- Updated the `useDebouncedFunction` and `useThrottledFunction` hooks to support manually cancelling timeouts

#### Fixes

- `Label` supports `pointer-events` while floating
- `Select` no longer displays the soft keyboard on mobile devices
- `TextArea` allows the `containerProps` like the `TextField` and added some fixes for the resizing behavior
- `Snackbar` supports absolute positioning

#### Documentation

- Updated the documentation around using the mocked `ResizeObserver` in tests so that the example is on the `setupResizeObserverMock` instead of `ResizeObserverMock.resizeElement`

## 1.0.0-next.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-md/core",
"version": "1.0.0-next.9",
"version": "1.0.0-next.10",
"description": "The core components and functionality for react-md.",
"type": "module",
"sass": "./dist/_core.scss",
Expand Down
7 changes: 7 additions & 0 deletions packages/material-icons/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @react-md/material-icons

## 6.0.0-next.10

### Patch Changes

- Updated dependencies
- @react-md/core@1.0.0-next.10

## 6.0.0-next.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/material-icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-md/material-icons",
"version": "6.0.0-next.9",
"version": "6.0.0-next.10",
"description": "Material Design Icon components for react-md",
"type": "module",
"exports": {
Expand Down

0 comments on commit bc90f77

Please sign in to comment.