@react-md/material-icons 6.0.0-next.1 → 6.0.0-next.10

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 CHANGED
@@ -1,5 +1,178 @@
1
1
  # @react-md/material-icons
2
2
 
3
+ ## 6.0.0-next.10
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @react-md/core@1.0.0-next.10
9
+
10
+ ## 6.0.0-next.9
11
+
12
+ ### Patch Changes
13
+
14
+ - Added a RootHtml component for Next.js apps and a lot of changes to the Select
15
+ component. The Select _should_ be able to be autofilled by the browser and
16
+ password managers now if I remember correctly. There's also a lot of work into
17
+ getting started with the new Autocomplete API.
18
+ - Updated dependencies
19
+ - @react-md/core@1.0.0-next.9
20
+
21
+ ## 6.0.0-next.8
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies
26
+ - @react-md/core@1.0.0-next.8
27
+
28
+ ## 6.0.0-next.7
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies
33
+ - @react-md/core@1.0.0-next.7
34
+
35
+ ## 6.0.0-next.6
36
+
37
+ ### Patch Changes
38
+
39
+ - Updated dependencies
40
+ - @react-md/core@1.0.0-next.6
41
+
42
+ ## 6.0.0-next.5
43
+
44
+ ### Patch Changes
45
+
46
+ - Updated dependencies
47
+ - @react-md/core@1.0.0-next.5
48
+
49
+ ## 6.0.0-next.4
50
+
51
+ ### Patch Changes
52
+
53
+ - Fixed Sass variable issues and other CSS tweaks.
54
+ - Updated dependencies
55
+ - @react-md/core@1.0.0-next.4
56
+
57
+ ## 6.0.0-next.3
58
+
59
+ ### Patch Changes
60
+
61
+ - The next v6 alpha release.
62
+
63
+ # Changes
64
+
65
+ ## AppBar
66
+
67
+ - Updated `AppBar` to use the `Box` component and additional `cssUtils`
68
+ - Added a `$nav-keyline` variable for the `AppBarTitle` offset
69
+
70
+ ## Avatar
71
+
72
+ - Fixed the `color` prop definition
73
+
74
+ ## Badge
75
+
76
+ - Simplified the offset variables
77
+
78
+ ## Button
79
+
80
+ - Added a `TooltippedButton` component
81
+
82
+ ## Card
83
+
84
+ - Added a `ClickableCard` component
85
+ - Fixed the `CardSubtitle` color
86
+
87
+ ## Dialog
88
+
89
+ - Fixed the background colors
90
+
91
+ ## Divider
92
+
93
+ - Removed the `vertical-sizing` variable and updated the vertical divider to update the same way as a horizontal divider
94
+
95
+ ## Expansion Panel
96
+
97
+ - Renamed `preventAllClosed` to `preventAllCollapsed` to better match naming schemes
98
+
99
+ ## Form
100
+
101
+ - Updated `MenuItemInputToggle` to use `multiline` instead of `threeLines`
102
+ - Fixed the `Select` focus behavior when rendering within a `Sheet`
103
+
104
+ ## Icon
105
+
106
+ - Fixed the styling for the `IconRotator` by setting the default rotate variables
107
+ - Fixed the styling for the `IconSpacing` component when using `above` or `below`
108
+
109
+ ## List
110
+
111
+ - Renamed `threeLines` to `multiline` and updated the CSS variables to match
112
+ - Fixed some styling by correctly passing all props down
113
+ - Added the ability to disable the spacing for the left addons
114
+
115
+ ## Portal
116
+
117
+ - Updated `PortalContainerProvider` to support a `RefObject`
118
+
119
+ ## Table
120
+
121
+ - Fixed the `TableCheckbox` and `TableRadio` components to be client components instead of server components
122
+
123
+ ## Tabs
124
+
125
+ - Added support for rendering vertically
126
+ - Added support to render a tab as a link instead of a button
127
+ - Renamed the `--rmd-tab-width` to `--rmd-tab-size`
128
+
129
+ ## Tooltip
130
+
131
+ - Fixed some type definition issues for event handlers
132
+
133
+ ## Transition
134
+
135
+ - Updated `SkeletonPlaceholder` to `forwardRef`
136
+ - Updated `SkeletonPlaceholder` and `useSkeletonPlaceholder` to support `animation-delay`
137
+ - Added `randomSkeletonPlaceholder` util to generate SSR-only skeletons
138
+ - Fixed the naming of the Sass variables since they weren't prefixed by `transition-`
139
+
140
+ ## Tree
141
+
142
+ - Fixed the type definitions for the `DefaultTreeItemRenderer` for the `data` prop after switching to `RenderRecursively`
143
+ - Fixed the `Tree` components to start the `--rmd-tree-depth` at `0` instead of `-1`
144
+ - Removed the `--padded` style since it's no longer needed
145
+
146
+ ## Typography
147
+
148
+ - Updated the base typography to default to `overflow-wrap: break-word`
149
+ - Fixed the `TextContainer` styling to include the padding in the line length
150
+
151
+ ## Other
152
+
153
+ - Uses `:has` selectors and `:focus-visible` since all major browsers support them now
154
+ - Uses `@media(hover: hover) and (pointer: fine)` for hover states instead of `.mouse-mode`
155
+ - Refactored some draggable utils and fixed bugs around dragging
156
+ - Added a `useElementSize` wrapper for the `useResizeObserver` hook
157
+ - Fixed `useElementSize` to trigger immediately on mount
158
+ - Updated `useWindowSize` to support SSR values
159
+
160
+ - Updated dependencies
161
+ - @react-md/core@1.0.0-next.3
162
+
163
+ ## 6.0.0-next.2
164
+
165
+ ### Major Changes
166
+
167
+ - Updated custom properties to require a defined value instead of always providing a fallback. This decreases the bundle size by a good amount.
168
+
169
+ 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"`.
170
+
171
+ ### Patch Changes
172
+
173
+ - Updated dependencies
174
+ - @react-md/core@1.0.0-next.2
175
+
3
176
  ## 6.0.0-next.1
4
177
 
5
178
  ### 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.1",
3
+ "version": "6.0.0-next.10",
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.1"
32
+ "@react-md/core": "1.0.0-next.10"
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.4.8",
36
+ "@types/lodash": "^4.17.0",
37
+ "@types/node": "^20.11.30",
38
+ "@types/react": "^18.2.69",
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.5",
42
+ "pretty-ms": "^9.0.0",
43
+ "svgo": "^3.2.0",
44
+ "tsx": "^4.7.1",
45
+ "typescript": "^5.4.3"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "react": ">= 18",
@@ -60,7 +60,7 @@
60
60
  "access": "public"
61
61
  },
62
62
  "scripts": {
63
- "run-script": "ts-node -P scripts/tsconfig.json",
63
+ "run-script": "tsx --tsconfig scripts/tsconfig.json",
64
64
  "update-icons": "pnpm run run-script scripts/updateMaterialIcons.ts",
65
65
  "build": "pnpm run run-script scripts/build.ts",
66
66
  "clean": "rm -rf .turbo node_modules *Icon.d.ts *Icon.js"
@@ -14,9 +14,5 @@
14
14
  "lib": ["esnext", "dom"]
15
15
  },
16
16
  "include": ["**/*.ts"],
17
- "exclude": ["node_modules"],
18
- "ts-node": {
19
- "esm": true,
20
- "transpileOnly": true
21
- }
17
+ "exclude": ["node_modules"]
22
18
  }