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 Nov 9, 2024
1 parent 086cb2c commit c42ad14
Show file tree
Hide file tree
Showing 14 changed files with 158 additions and 6 deletions.
55 changes: 55 additions & 0 deletions .changeset/lucky-chairs-serve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
---
"@react-md/core": patch
---

This release was focused around the `Autocomplete` and the "better" API for it. There's a lot more functionality built
in by default and should behave much more like other libraries. I might add a few more features in before calling it complete, but not sure yet.

Check out the <https://next.react-md.dev/components/autocomplete> page to see the latest demos.

Fixes:

- Updated all styles to fix issues around the new [Sass Mixed Declarations](https://sass-lang.com/documentation/breaking-changes/mixed-decls/)
- Updated most function declarations on interfaces to be arrow functions instead of methods to prevent `this` pollution
- No longer unmount the dialog component when switching between full-page and other dialog types
- Updated the nested Dialog behavior when a full-page dialog is included
- Fixed some missing accessibility props for the `Navigation` components

Features:

- Updated the `Navigation` components to be controlled for the collapsed state and added a `useNavigationExpansion` hook to help control the state
- Added the `objectFit` utility class generator
- Added `isColorScheme` and `isColorSchemeMode` type assertion helpers
- Added support for `Dialog` widths
- Only apply base styles to the `body` element instead of `html`
- Updated the `Card` component to extend the `Box` component
- Added support to `disableRipple` on the component level instead of global only
- Added `useReadonlySet` hook
- Added `disabled` support to the `useFixedPositioning` hook and related components
- Added the missing `--rmd-scrollbar-size` type definition to the `CSSProperties` interface
- Added a simple `debounce` helper for usage outside of react components

Other changes:

- Updated `.mouse-mode`, `.keyboard-mode`, and `.touch-mode` to be prefixed with `rmd-` like all other classes
- Started adding SCSS documentation back since I'm working on the sassdoc-parser/sass-lsp
- Renamed `ResponsiveItemContainer` to `ResponsiveItem`
- Split some files so they they don't all need to be considered client components
- Updated the `NativeSelect` styling to match other components that use the `TextFieldContainer` and `FormMessageContainer` components
- Fixed the height for nested Menu Item Dropdowns
- Stopped using deprecated browser APIs
- Renamed `useImmediateRaf` to `testImmediateRaf` so it isn't considered a hook

Documentation:

- Added Dark Mode docs
- Added Breakpoints docs
- Added Color Palette docs
- Added additional `Dialog` demos
- Added `Form` docs
- Added `WindowSplitter` docs
- Added `ResponsiveItem` docs

Internal:

- Updated to use `eslint@9.x.x`
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"gentle-gifts-arrive",
"gold-singers-remember",
"hip-poems-relate",
"lucky-chairs-serve",
"ninety-drinks-wave",
"olive-pianos-knock",
"orange-toes-share",
Expand Down
10 changes: 10 additions & 0 deletions apps/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# docs

## 0.0.2-next.4

### Patch Changes

- Updated dependencies
- @react-md/core@1.0.0-next.17
- @react-md/code@0.0.1-next.5
- docs-generator@0.0.1-next.5
- @react-md/material-icons@6.0.0-next.18

## 0.0.2-next.3

### 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": "0.0.2-next.3",
"version": "0.0.2-next.4",
"description": "The documentation site for react-md",
"scripts": {
"run-script": "tsx --tsconfig scripts/tsconfig.json",
Expand Down
8 changes: 8 additions & 0 deletions packages/code/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @react-md/code

## 0.0.1-next.5

### Patch Changes

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

## 0.0.1-next.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/code/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@react-md/code",
"private": true,
"version": "0.0.1-next.4",
"version": "0.0.1-next.5",
"description": "The core components and functionality for react-md.",
"type": "module",
"sass": "./dist/_code.scss",
Expand Down
56 changes: 56 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,61 @@
# @react-md/core

## 1.0.0-next.17

### Patch Changes

- This release was focused around the `Autocomplete` and the "better" API for it. There's a lot more functionality built
in by default and should behave much more like other libraries. I might add a few more features in before calling it complete, but not sure yet.

Check out the <https://next.react-md.dev/components/autocomplete> page to see the latest demos.

Fixes:

- Updated all styles to fix issues around the new [Sass Mixed Declarations](https://sass-lang.com/documentation/breaking-changes/mixed-decls/)
- Updated most function declarations on interfaces to be arrow functions instead of methods to prevent `this` pollution
- No longer unmount the dialog component when switching between full-page and other dialog types
- Updated the nested Dialog behavior when a full-page dialog is included
- Fixed some missing accessibility props for the `Navigation` components

Features:

- Updated the `Navigation` components to be controlled for the collapsed state and added a `useNavigationExpansion` hook to help control the state
- Added the `objectFit` utility class generator
- Added `isColorScheme` and `isColorSchemeMode` type assertion helpers
- Added support for `Dialog` widths
- Only apply base styles to the `body` element instead of `html`
- Updated the `Card` component to extend the `Box` component
- Added support to `disableRipple` on the component level instead of global only
- Added `useReadonlySet` hook
- Added `disabled` support to the `useFixedPositioning` hook and related components
- Added the missing `--rmd-scrollbar-size` type definition to the `CSSProperties` interface
- Added a simple `debounce` helper for usage outside of react components

Other changes:

- Updated `.mouse-mode`, `.keyboard-mode`, and `.touch-mode` to be prefixed with `rmd-` like all other classes
- Started adding SCSS documentation back since I'm working on the sassdoc-parser/sass-lsp
- Renamed `ResponsiveItemContainer` to `ResponsiveItem`
- Split some files so they they don't all need to be considered client components
- Updated the `NativeSelect` styling to match other components that use the `TextFieldContainer` and `FormMessageContainer` components
- Fixed the height for nested Menu Item Dropdowns
- Stopped using deprecated browser APIs
- Renamed `useImmediateRaf` to `testImmediateRaf` so it isn't considered a hook

Documentation:

- Added Dark Mode docs
- Added Breakpoints docs
- Added Color Palette docs
- Added additional `Dialog` demos
- Added `Form` docs
- Added `WindowSplitter` docs
- Added `ResponsiveItem` docs

Internal:

- Updated to use `eslint@9.x.x`

## 1.0.0-next.16

### 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.16",
"version": "1.0.0-next.17",
"description": "The core components and functionality for react-md.",
"type": "module",
"sass": "./dist/_core.scss",
Expand Down
8 changes: 8 additions & 0 deletions packages/docs-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# docs-generator

## 0.0.1-next.5

### Patch Changes

- Updated dependencies
- @react-md/core@1.0.0-next.17
- @react-md/code@0.0.1-next.5

## 0.0.1-next.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/docs-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docs-generator",
"private": true,
"version": "0.0.1-next.4",
"version": "0.0.1-next.5",
"description": "MDX Plugins for the documentation site",
"type": "module",
"exports": {
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.18

### Patch Changes

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

## 6.0.0-next.17

### 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.17",
"version": "6.0.0-next.18",
"description": "Material Design Icon components for react-md",
"type": "module",
"exports": {
Expand Down
7 changes: 7 additions & 0 deletions packages/react-md/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# react-md

## 6.0.0-next.5

### Patch Changes

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

## 6.0.0-next.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-md/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-md",
"version": "6.0.0-next.4",
"version": "6.0.0-next.5",
"description": "This is the full react-md library bundled together for convenience.",
"type": "module",
"sass": "./dist/_react-md.scss",
Expand Down

0 comments on commit c42ad14

Please sign in to comment.