@react-md/material-icons 6.0.0-next.1 → 6.0.0-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +119 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,124 @@
|
|
|
1
1
|
# @react-md/material-icons
|
|
2
2
|
|
|
3
|
+
## 6.0.0-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- The next v6 alpha release.
|
|
8
|
+
|
|
9
|
+
# Changes
|
|
10
|
+
|
|
11
|
+
## AppBar
|
|
12
|
+
|
|
13
|
+
- Updated `AppBar` to use the `Box` component and additional `cssUtils`
|
|
14
|
+
- Added a `$nav-keyline` variable for the `AppBarTitle` offset
|
|
15
|
+
|
|
16
|
+
## Avatar
|
|
17
|
+
|
|
18
|
+
- Fixed the `color` prop definition
|
|
19
|
+
|
|
20
|
+
## Badge
|
|
21
|
+
|
|
22
|
+
- Simplified the offset variables
|
|
23
|
+
|
|
24
|
+
## Button
|
|
25
|
+
|
|
26
|
+
- Added a `TooltippedButton` component
|
|
27
|
+
|
|
28
|
+
## Card
|
|
29
|
+
|
|
30
|
+
- Added a `ClickableCard` component
|
|
31
|
+
- Fixed the `CardSubtitle` color
|
|
32
|
+
|
|
33
|
+
## Dialog
|
|
34
|
+
|
|
35
|
+
- Fixed the background colors
|
|
36
|
+
|
|
37
|
+
## Divider
|
|
38
|
+
|
|
39
|
+
- Removed the `vertical-sizing` variable and updated the vertical divider to update the same way as a horizontal divider
|
|
40
|
+
|
|
41
|
+
## Expansion Panel
|
|
42
|
+
|
|
43
|
+
- Renamed `preventAllClosed` to `preventAllCollapsed` to better match naming schemes
|
|
44
|
+
|
|
45
|
+
## Form
|
|
46
|
+
|
|
47
|
+
- Updated `MenuItemInputToggle` to use `multiline` instead of `threeLines`
|
|
48
|
+
- Fixed the `Select` focus behavior when rendering within a `Sheet`
|
|
49
|
+
|
|
50
|
+
## Icon
|
|
51
|
+
|
|
52
|
+
- Fixed the styling for the `IconRotator` by setting the default rotate variables
|
|
53
|
+
- Fixed the styling for the `IconSpacing` component when using `above` or `below`
|
|
54
|
+
|
|
55
|
+
## List
|
|
56
|
+
|
|
57
|
+
- Renamed `threeLines` to `multiline` and updated the CSS variables to match
|
|
58
|
+
- Fixed some styling by correctly passing all props down
|
|
59
|
+
- Added the ability to disable the spacing for the left addons
|
|
60
|
+
|
|
61
|
+
## Portal
|
|
62
|
+
|
|
63
|
+
- Updated `PortalContainerProvider` to support a `RefObject`
|
|
64
|
+
|
|
65
|
+
## Table
|
|
66
|
+
|
|
67
|
+
- Fixed the `TableCheckbox` and `TableRadio` components to be client components instead of server components
|
|
68
|
+
|
|
69
|
+
## Tabs
|
|
70
|
+
|
|
71
|
+
- Added support for rendering vertically
|
|
72
|
+
- Added support to render a tab as a link instead of a button
|
|
73
|
+
- Renamed the `--rmd-tab-width` to `--rmd-tab-size`
|
|
74
|
+
|
|
75
|
+
## Tooltip
|
|
76
|
+
|
|
77
|
+
- Fixed some type definition issues for event handlers
|
|
78
|
+
|
|
79
|
+
## Transition
|
|
80
|
+
|
|
81
|
+
- Updated `SkeletonPlaceholder` to `forwardRef`
|
|
82
|
+
- Updated `SkeletonPlaceholder` and `useSkeletonPlaceholder` to support `animation-delay`
|
|
83
|
+
- Added `randomSkeletonPlaceholder` util to generate SSR-only skeletons
|
|
84
|
+
- Fixed the naming of the Sass variables since they weren't prefixed by `transition-`
|
|
85
|
+
|
|
86
|
+
## Tree
|
|
87
|
+
|
|
88
|
+
- Fixed the type definitions for the `DefaultTreeItemRenderer` for the `data` prop after switching to `RenderRecursively`
|
|
89
|
+
- Fixed the `Tree` components to start the `--rmd-tree-depth` at `0` instead of `-1`
|
|
90
|
+
- Removed the `--padded` style since it's no longer needed
|
|
91
|
+
|
|
92
|
+
## Typography
|
|
93
|
+
|
|
94
|
+
- Updated the base typography to default to `overflow-wrap: break-word`
|
|
95
|
+
- Fixed the `TextContainer` styling to include the padding in the line length
|
|
96
|
+
|
|
97
|
+
## Other
|
|
98
|
+
|
|
99
|
+
- Uses `:has` selectors and `:focus-visible` since all major browsers support them now
|
|
100
|
+
- Uses `@media(hover: hover) and (pointer: fine)` for hover states instead of `.mouse-mode`
|
|
101
|
+
- Refactored some draggable utils and fixed bugs around dragging
|
|
102
|
+
- Added a `useElementSize` wrapper for the `useResizeObserver` hook
|
|
103
|
+
- Fixed `useElementSize` to trigger immediately on mount
|
|
104
|
+
- Updated `useWindowSize` to support SSR values
|
|
105
|
+
|
|
106
|
+
- Updated dependencies
|
|
107
|
+
- @react-md/core@1.0.0-next.3
|
|
108
|
+
|
|
109
|
+
## 6.0.0-next.2
|
|
110
|
+
|
|
111
|
+
### Major Changes
|
|
112
|
+
|
|
113
|
+
- Updated custom properties to require a defined value instead of always providing a fallback. This decreases the bundle size by a good amount.
|
|
114
|
+
|
|
115
|
+
Also updated the `Snackbar` so that it no longer has a `role="status"` to fix accessibility. Instead, each toast will have `role="status"` or `role="alert"`.
|
|
116
|
+
|
|
117
|
+
### Patch Changes
|
|
118
|
+
|
|
119
|
+
- Updated dependencies
|
|
120
|
+
- @react-md/core@1.0.0-next.2
|
|
121
|
+
|
|
3
122
|
## 6.0.0-next.1
|
|
4
123
|
|
|
5
124
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-md/material-icons",
|
|
3
|
-
"version": "6.0.0-next.
|
|
3
|
+
"version": "6.0.0-next.3",
|
|
4
4
|
"description": "Material Design Icon components for react-md",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -29,20 +29,20 @@
|
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"cnbuilder": "^3.1.0",
|
|
32
|
-
"@react-md/core": "1.0.0-next.
|
|
32
|
+
"@react-md/core": "1.0.0-next.3"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@swc/core": "1.3.
|
|
36
|
-
"@types/lodash": "^4.14.
|
|
37
|
-
"@types/node": "^20.
|
|
38
|
-
"@types/react": "^18.2.
|
|
35
|
+
"@swc/core": "1.3.102",
|
|
36
|
+
"@types/lodash": "^4.14.202",
|
|
37
|
+
"@types/node": "^20.11.0",
|
|
38
|
+
"@types/react": "^18.2.47",
|
|
39
39
|
"glob": "^10.3.10",
|
|
40
40
|
"lodash": "^4.17.21",
|
|
41
|
-
"prettier": "^3.1.
|
|
41
|
+
"prettier": "^3.1.1",
|
|
42
42
|
"pretty-ms": "^8.0.0",
|
|
43
|
-
"svgo": "^3.0
|
|
44
|
-
"ts-node": "^10.9.
|
|
45
|
-
"typescript": "^5.
|
|
43
|
+
"svgo": "^3.2.0",
|
|
44
|
+
"ts-node": "^10.9.2",
|
|
45
|
+
"typescript": "^5.3.3"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"react": ">= 18",
|