@react-md/material-icons 6.0.0-next.2 → 6.0.0-next.4

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +114 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,119 @@
1
1
  # @react-md/material-icons
2
2
 
3
+ ## 6.0.0-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed Sass variable issues and other CSS tweaks.
8
+ - Updated dependencies
9
+ - @react-md/core@1.0.0-next.4
10
+
11
+ ## 6.0.0-next.3
12
+
13
+ ### Patch Changes
14
+
15
+ - The next v6 alpha release.
16
+
17
+ # Changes
18
+
19
+ ## AppBar
20
+
21
+ - Updated `AppBar` to use the `Box` component and additional `cssUtils`
22
+ - Added a `$nav-keyline` variable for the `AppBarTitle` offset
23
+
24
+ ## Avatar
25
+
26
+ - Fixed the `color` prop definition
27
+
28
+ ## Badge
29
+
30
+ - Simplified the offset variables
31
+
32
+ ## Button
33
+
34
+ - Added a `TooltippedButton` component
35
+
36
+ ## Card
37
+
38
+ - Added a `ClickableCard` component
39
+ - Fixed the `CardSubtitle` color
40
+
41
+ ## Dialog
42
+
43
+ - Fixed the background colors
44
+
45
+ ## Divider
46
+
47
+ - Removed the `vertical-sizing` variable and updated the vertical divider to update the same way as a horizontal divider
48
+
49
+ ## Expansion Panel
50
+
51
+ - Renamed `preventAllClosed` to `preventAllCollapsed` to better match naming schemes
52
+
53
+ ## Form
54
+
55
+ - Updated `MenuItemInputToggle` to use `multiline` instead of `threeLines`
56
+ - Fixed the `Select` focus behavior when rendering within a `Sheet`
57
+
58
+ ## Icon
59
+
60
+ - Fixed the styling for the `IconRotator` by setting the default rotate variables
61
+ - Fixed the styling for the `IconSpacing` component when using `above` or `below`
62
+
63
+ ## List
64
+
65
+ - Renamed `threeLines` to `multiline` and updated the CSS variables to match
66
+ - Fixed some styling by correctly passing all props down
67
+ - Added the ability to disable the spacing for the left addons
68
+
69
+ ## Portal
70
+
71
+ - Updated `PortalContainerProvider` to support a `RefObject`
72
+
73
+ ## Table
74
+
75
+ - Fixed the `TableCheckbox` and `TableRadio` components to be client components instead of server components
76
+
77
+ ## Tabs
78
+
79
+ - Added support for rendering vertically
80
+ - Added support to render a tab as a link instead of a button
81
+ - Renamed the `--rmd-tab-width` to `--rmd-tab-size`
82
+
83
+ ## Tooltip
84
+
85
+ - Fixed some type definition issues for event handlers
86
+
87
+ ## Transition
88
+
89
+ - Updated `SkeletonPlaceholder` to `forwardRef`
90
+ - Updated `SkeletonPlaceholder` and `useSkeletonPlaceholder` to support `animation-delay`
91
+ - Added `randomSkeletonPlaceholder` util to generate SSR-only skeletons
92
+ - Fixed the naming of the Sass variables since they weren't prefixed by `transition-`
93
+
94
+ ## Tree
95
+
96
+ - Fixed the type definitions for the `DefaultTreeItemRenderer` for the `data` prop after switching to `RenderRecursively`
97
+ - Fixed the `Tree` components to start the `--rmd-tree-depth` at `0` instead of `-1`
98
+ - Removed the `--padded` style since it's no longer needed
99
+
100
+ ## Typography
101
+
102
+ - Updated the base typography to default to `overflow-wrap: break-word`
103
+ - Fixed the `TextContainer` styling to include the padding in the line length
104
+
105
+ ## Other
106
+
107
+ - Uses `:has` selectors and `:focus-visible` since all major browsers support them now
108
+ - Uses `@media(hover: hover) and (pointer: fine)` for hover states instead of `.mouse-mode`
109
+ - Refactored some draggable utils and fixed bugs around dragging
110
+ - Added a `useElementSize` wrapper for the `useResizeObserver` hook
111
+ - Fixed `useElementSize` to trigger immediately on mount
112
+ - Updated `useWindowSize` to support SSR values
113
+
114
+ - Updated dependencies
115
+ - @react-md/core@1.0.0-next.3
116
+
3
117
  ## 6.0.0-next.2
4
118
 
5
119
  ### 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.2",
3
+ "version": "6.0.0-next.4",
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.2"
32
+ "@react-md/core": "1.0.0-next.4"
33
33
  },
34
34
  "devDependencies": {
35
- "@swc/core": "1.3.96",
36
- "@types/lodash": "^4.14.201",
37
- "@types/node": "^20.9.0",
38
- "@types/react": "^18.2.37",
35
+ "@swc/core": "1.3.105",
36
+ "@types/lodash": "^4.14.202",
37
+ "@types/node": "^20.11.6",
38
+ "@types/react": "^18.2.48",
39
39
  "glob": "^10.3.10",
40
40
  "lodash": "^4.17.21",
41
- "prettier": "^3.1.0",
42
- "pretty-ms": "^8.0.0",
43
- "svgo": "^3.0.3",
44
- "ts-node": "^10.9.1",
45
- "typescript": "^5.2.2"
41
+ "prettier": "^3.2.4",
42
+ "pretty-ms": "^9.0.0",
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",