@mui/lab 5.0.0-alpha.159 → 5.0.0-alpha.161
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 +184 -1
- package/LoadingButton/LoadingButton.js +4 -4
- package/Masonry/Masonry.js +4 -4
- package/TabContext/TabContext.js +4 -4
- package/TabList/TabList.js +4 -4
- package/TabPanel/TabPanel.js +4 -4
- package/Timeline/Timeline.js +4 -4
- package/TimelineConnector/TimelineConnector.js +4 -4
- package/TimelineContent/TimelineContent.js +4 -4
- package/TimelineDot/TimelineDot.js +4 -4
- package/TimelineItem/TimelineItem.js +4 -4
- package/TimelineOppositeContent/TimelineOppositeContent.js +4 -4
- package/TimelineSeparator/TimelineSeparator.js +4 -4
- package/index.js +1 -1
- package/legacy/LoadingButton/LoadingButton.js +4 -4
- package/legacy/Masonry/Masonry.js +4 -4
- package/legacy/TabContext/TabContext.js +4 -4
- package/legacy/TabList/TabList.js +4 -4
- package/legacy/TabPanel/TabPanel.js +4 -4
- package/legacy/Timeline/Timeline.js +4 -4
- package/legacy/TimelineConnector/TimelineConnector.js +4 -4
- package/legacy/TimelineContent/TimelineContent.js +4 -4
- package/legacy/TimelineDot/TimelineDot.js +4 -4
- package/legacy/TimelineItem/TimelineItem.js +4 -4
- package/legacy/TimelineOppositeContent/TimelineOppositeContent.js +4 -4
- package/legacy/TimelineSeparator/TimelineSeparator.js +4 -4
- package/legacy/index.js +1 -1
- package/modern/LoadingButton/LoadingButton.js +4 -4
- package/modern/Masonry/Masonry.js +4 -4
- package/modern/TabContext/TabContext.js +4 -4
- package/modern/TabList/TabList.js +4 -4
- package/modern/TabPanel/TabPanel.js +4 -4
- package/modern/Timeline/Timeline.js +4 -4
- package/modern/TimelineConnector/TimelineConnector.js +4 -4
- package/modern/TimelineContent/TimelineContent.js +4 -4
- package/modern/TimelineDot/TimelineDot.js +4 -4
- package/modern/TimelineItem/TimelineItem.js +4 -4
- package/modern/TimelineOppositeContent/TimelineOppositeContent.js +4 -4
- package/modern/TimelineSeparator/TimelineSeparator.js +4 -4
- package/modern/index.js +1 -1
- package/node/LoadingButton/LoadingButton.js +4 -4
- package/node/Masonry/Masonry.js +4 -4
- package/node/TabContext/TabContext.js +4 -4
- package/node/TabList/TabList.js +4 -4
- package/node/TabPanel/TabPanel.js +4 -4
- package/node/Timeline/Timeline.js +4 -4
- package/node/TimelineConnector/TimelineConnector.js +4 -4
- package/node/TimelineContent/TimelineContent.js +4 -4
- package/node/TimelineDot/TimelineDot.js +4 -4
- package/node/TimelineItem/TimelineItem.js +4 -4
- package/node/TimelineOppositeContent/TimelineOppositeContent.js +4 -4
- package/node/TimelineSeparator/TimelineSeparator.js +4 -4
- package/node/index.js +1 -1
- package/package.json +11 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,188 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## v5.15.5
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v5.15.4..master -->
|
|
6
|
+
|
|
7
|
+
_Jan 17, 2024_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:
|
|
10
|
+
|
|
11
|
+
- Base UI's CSS class prefix is now `base-` (#40205) @michaldudak
|
|
12
|
+
- Bug fixes, and a lot of improvements to code and docs infra
|
|
13
|
+
|
|
14
|
+
### `@mui/material@5.15.5`
|
|
15
|
+
|
|
16
|
+
- ​<!-- 42 -->[Accordion] Deprecate \*Props props and classes for v6 (#40418) @DiegoAndai
|
|
17
|
+
- ​<!-- 41 -->[Alert] Update TypeScript types to allow color override types to be added to `iconMapping` and `severity` props (#40551) @2metres
|
|
18
|
+
- ​<!-- 27 -->[Dialog] Remove deprecated onBackdropClick from Dialog tests (#40505) @sai6855
|
|
19
|
+
- ​<!-- 26 -->[Divider] Deprecate props and classes for v6 (#40563) @sai6855
|
|
20
|
+
|
|
21
|
+
### `@mui/material-next@6.0.0-alpha.118`
|
|
22
|
+
|
|
23
|
+
- ​<!-- 36 -->[ButtonGroup] Apply MD3 style to `ButtonGroup` (#40124) @lhilgert9
|
|
24
|
+
|
|
25
|
+
### `@mui/base@5.0.0-beta.32`
|
|
26
|
+
|
|
27
|
+
#### Breaking changes
|
|
28
|
+
|
|
29
|
+
- ​<!-- 40 -->Change the CSS class prefix to `base-` (#40205) @michaldudak
|
|
30
|
+
|
|
31
|
+
The class prefix of Base UI components have been changed from `Mui-` to `base-`. This only affects codebases that uses class names verbatim, i.e. not exposed by JS objects such as `buttonClasses`, but as plain strings or in CSS stylesheets (`.MuiButton.root`)
|
|
32
|
+
|
|
33
|
+
To adapt your code to the new pattern:
|
|
34
|
+
|
|
35
|
+
- replace all occurrences of the regex `.Mui([A-Z][A-Za-z]*)-` with `.base-$1-` (so `MuiButton-root` becomes `base-Button-root`, etc.),
|
|
36
|
+
- replace all occurrences of the regex `.Mui-([a-z]*)` with `.base--$1` (so `Mui-disabled` becomes `base--disabled`, etc.).
|
|
37
|
+
|
|
38
|
+
#### Changes
|
|
39
|
+
|
|
40
|
+
- ​<!-- 39 -->[Select] Fix screen-reader CSS to avoid body scrollbar (#40599) @brijeshb42
|
|
41
|
+
- ​<!-- 38 -->[Switch] Add border-box to demos (#40638) @zanivan
|
|
42
|
+
|
|
43
|
+
### `@mui/joy@5.0.0-beta.23`
|
|
44
|
+
|
|
45
|
+
- ​<!-- 11 -->[ModalDialog] Fix ModalDialog layout prop override (#40512) @maakcode
|
|
46
|
+
- ​<!-- 10 -->[RadioGroup] Allow zero number as a value (#40344) @aacevski
|
|
47
|
+
|
|
48
|
+
### `@mui/codemod@5.15.5`
|
|
49
|
+
|
|
50
|
+
- ​<!-- 31 -->Allow `json` files to be transformed (#40536) @ZeeshanTamboli
|
|
51
|
+
|
|
52
|
+
### `@mui/lab@5.0.0-alpha.161`
|
|
53
|
+
|
|
54
|
+
- ​<!-- 09 -->Update `@mui/material` peer dependency version (#40528) @ZeeshanTamboli
|
|
55
|
+
|
|
56
|
+
### `@mui/material-nextjs@5.15.5`
|
|
57
|
+
|
|
58
|
+
- ​<!-- 08 -->Fix release script (#40519) @petrovmiroslav
|
|
59
|
+
- ​<!-- 07 -->Support Nonces in the App Router Provider (#40269) @josh-feldman
|
|
60
|
+
- ​<!-- 06 -->Polish @mui/material-nextjs (#40473) @oliviertassinari
|
|
61
|
+
|
|
62
|
+
### `@mui/system@5.15.5`
|
|
63
|
+
|
|
64
|
+
- ​<!-- 05 -->Fix import path for @mui/system in vite apps (#40490) @brijeshb42
|
|
65
|
+
- ​<!-- 02 -->Fix css vars generation and simplify the code (#40530) @siriwatknp
|
|
66
|
+
- ​<!-- 01 -->Identify zero runtime styled path (#40555) @brijeshb42
|
|
67
|
+
|
|
68
|
+
### Docs
|
|
69
|
+
|
|
70
|
+
- ​<!-- 35 -->[joy-ui][Card] Fix text alignment in horizontal aligned card demo (#40562) @ZeeshanTamboli
|
|
71
|
+
- ​<!-- 25 -->Improve instructions about peer dependencies (#40621) @danilo-leal
|
|
72
|
+
- ​<!-- 24 -->Solve page description length @oliviertassinari
|
|
73
|
+
- ​<!-- 23 -->Fix MUI Treasury links (#40561) @siriwatknp
|
|
74
|
+
- ​<!-- 17 -->[material-ui] Update <ListItem button/> to ListItemButton in demos (#40564) @sai6855
|
|
75
|
+
- ​<!-- 16 -->[material-ui] Revise the Snackbar page (#39298) @danilo-leal
|
|
76
|
+
- ​<!-- 15 -->[material-ui] Sharpen Material 3 copy on demo pages (#40546) @samuelsycamore
|
|
77
|
+
- ​<!-- 14 -->[material-ui] Fix typo on Next.js integration guide (#40538) @zanivan
|
|
78
|
+
- ​<!-- 13 -->[material-ui][Snackbar] Remove unused `State` interface from Consecutive Snackbars demo (#40410)
|
|
79
|
+
@zinoroman
|
|
80
|
+
- ​<!-- 12 -->[website] Resolve broken links reported by `docs:link-check` (#40547) @samuelsycamore
|
|
81
|
+
|
|
82
|
+
### Core
|
|
83
|
+
|
|
84
|
+
- ​<!-- 37 -->[blog] Fix 404 link to MUI Treasury @oliviertassinari
|
|
85
|
+
- ​<!-- 34 -->[code-infra] Add `run` command to deploy docs (#40513) @siriwatknp
|
|
86
|
+
- ​<!-- 32 -->[core] Update the lockfile (#40628) @michaldudak
|
|
87
|
+
- ​<!-- 31 -->[core] Remove dead code and follow standard @oliviertassinari
|
|
88
|
+
- ​<!-- 30 -->[core] Simplify server detection (#40471) @oliviertassinari
|
|
89
|
+
- ​<!-- 29 -->[core] Sync playwright cache between MUI X and Material UI (#40475) @oliviertassinari
|
|
90
|
+
- ​<!-- 28 -->[dependencies] Bump tough-cookie (#40437) @michaldudak
|
|
91
|
+
- ​<!-- 22 -->[docs-infra] Enforce brand name rules (#40525) @oliviertassinari
|
|
92
|
+
- ​<!-- 21 -->[docs-infra] Minimize ad layout shift on mobile (#40582) @oliviertassinari
|
|
93
|
+
- ​<!-- 20 -->[docs-infra] Improve API page deprecation info (#40440) @DiegoAndai
|
|
94
|
+
- ​<!-- 19 -->[docs-infra] Remove old tocs banners (#40537) @oliviertassinari
|
|
95
|
+
- ​<!-- 18 -->[docs-infra] Remove dead code aria-label sponsors (#40526) @oliviertassinari
|
|
96
|
+
- ​<!-- 04 -->[utils] Centralize clamp implementation in utils (#40267) @Kamino0
|
|
97
|
+
- ​<!-- 03 -->[website] Polish the Base UI page demos (#40504) @danilo-leal
|
|
98
|
+
|
|
99
|
+
All contributors of this release in alphabetical order: @2metres, @aacevski, @brijeshb42, @danilo-leal, @DiegoAndai, @josh-feldman, @Kamino0, @lhilgert9, @maakcode, @michaldudak, @oliviertassinari, @petrovmiroslav, @sai6855, @samuelsycamore, @siriwatknp, @zanivan, @ZeeshanTamboli, @zinoroman
|
|
100
|
+
|
|
101
|
+
## 5.15.4
|
|
102
|
+
|
|
103
|
+
<!-- generated comparing v5.15.3..master -->
|
|
104
|
+
|
|
105
|
+
_Jan 10, 2024_
|
|
106
|
+
|
|
107
|
+
A big thanks to the 22 contributors who made this release possible. Here are some highlights:
|
|
108
|
+
|
|
109
|
+
- ✨ Material UI's [ToggleButtonGroup](https://mui.com/material-ui/react-toggle-button/) now supports non-button element as a child (e.g., showing a Tooltip on a disabled ToggleButton) (#40220) @Methuselah96
|
|
110
|
+
|
|
111
|
+
### `@mui/material@5.15.4`
|
|
112
|
+
|
|
113
|
+
- [TextField][FormLabel][InputLabel][FormControl] Use exact children type to allow React children type augmentation (#38872) @nicegamer7
|
|
114
|
+
- [Select] Add form submission regression test (#40176) @mj12albert
|
|
115
|
+
- [ToggleButtonGroup] Support different elements under it (#40220) @Methuselah96
|
|
116
|
+
- [ClickAwayListener] Fix export of types (#40485) @illume
|
|
117
|
+
|
|
118
|
+
### `@mui/material-nextjs@5.15.4`
|
|
119
|
+
|
|
120
|
+
- Improve build size issue (#40436) @siriwatknp
|
|
121
|
+
|
|
122
|
+
### `@mui/icons-material@5.15.4`
|
|
123
|
+
|
|
124
|
+
- Update the icons (#40365) @michaldudak
|
|
125
|
+
|
|
126
|
+
### `@mui/system@5.15.4`
|
|
127
|
+
|
|
128
|
+
- [zero] Move zero runtime related packages (#40426) @brijeshb42
|
|
129
|
+
- Fix all use of styled(Box) (#40449) @oliviertassinari
|
|
130
|
+
|
|
131
|
+
### `@mui/utils@5.15.4`
|
|
132
|
+
|
|
133
|
+
- Fix `isPlainObject` to work across realm (#39981) @brijeshb42
|
|
134
|
+
|
|
135
|
+
### `@mui/base@5.0.0-beta.31`
|
|
136
|
+
|
|
137
|
+
- [base-ui][NumberInput] Remove inputId and inputRef types from NumberInput component (#40425) @sai6855
|
|
138
|
+
|
|
139
|
+
### `@mui/joy@5.0.0-beta.22`
|
|
140
|
+
|
|
141
|
+
- [Badge] Shouldn't crash when using custom size (#39986) @iamsaumya
|
|
142
|
+
- [ToggleButtonGroup] Add `JoyToggleButtonGroup` to extendTheme's components type export (#40407) @RiceCrisp
|
|
143
|
+
|
|
144
|
+
### Docs
|
|
145
|
+
|
|
146
|
+
- [base-ui] Visual tweaks to the plain CSS theme stylesheet (#40487) @zanivan
|
|
147
|
+
- [base-ui] Add tokens to plain CSS theme stylesheet (#40113) @zanivan
|
|
148
|
+
- [base-ui] Update the overview page (#40412) @danilo-leal
|
|
149
|
+
- [material-ui][Drawer] Resolve flickering when double-clicking on the backdrop to close it (#40343) @aacevski
|
|
150
|
+
- [material-ui] Refactor form submission in FormDialog component (#40470) @sai6855
|
|
151
|
+
- [material-ui] Replace recharts with MUI X charts on the Dashboard template (#40107) @alexfauquette
|
|
152
|
+
- [material-ui] Revise the Alert demo page (#34892) @samuelsycamore
|
|
153
|
+
- [material-ui] Revise the Accordion page (#40284) @anle9650
|
|
154
|
+
- [material-ui] Add docs for complementary Card components (#40346) @anle9650
|
|
155
|
+
- [material-ui] Add Material 3 components page (#40350) @DiegoAndai
|
|
156
|
+
- Fix strange italic style @oliviertassinari
|
|
157
|
+
- Fix references to ESLint @oliviertassinari
|
|
158
|
+
- Fix 301 redirections @oliviertassinari
|
|
159
|
+
- Right-to-left revision and addition to Joy UI (#39158) @danilo-leal
|
|
160
|
+
|
|
161
|
+
### Core
|
|
162
|
+
|
|
163
|
+
- [examples] Use material-nextjs integration package (#40199) @siriwatknp
|
|
164
|
+
- [code-infra] Configure build dependencies in nx (#40482) @michaldudak
|
|
165
|
+
- [code-infra] Don't require noreferrer on target link (#40447) @oliviertassinari
|
|
166
|
+
- [code-infra] Use tsx instead of ts-node (#40428) @michaldudak
|
|
167
|
+
- [code-infra] Add options to docs-api generation to support X code structure (#40111) @alexfauquette
|
|
168
|
+
- [docs-infra] Add types for withDocsInfra (#40301) @oliviertassinari
|
|
169
|
+
- [docs-infra] Fix anchor links in API pages (#40450) @oliviertassinari
|
|
170
|
+
- [docs-infra] Fix API table full-width (#40476) @oliviertassinari
|
|
171
|
+
- [docs-infra] Fix the copy button overlapping with the scrollbar (#40405) @danilo-leal
|
|
172
|
+
- [docs-infra] Remove explicit `mui-x` dependency resolving (#40257) @LukasTy
|
|
173
|
+
- [docs-infra] Update the outlined Demo container dark mode color (#40488) @danilo-leal
|
|
174
|
+
- [core] Lock file maintenance (#34538) @renovate[bot]
|
|
175
|
+
- [core] Remove duplicate devDependencies (#40438) @michaldudak
|
|
176
|
+
- [core] Remove issue emoji @oliviertassinari
|
|
177
|
+
- [core] Move prefetch at the core, will propagate to MUI X @oliviertassinari
|
|
178
|
+
- [core] Change package manager to pnpm (#36287) @Janpot
|
|
179
|
+
- [core][docs] Remove the "Understand MUI packages" page (#39835) @savalaram-redkar
|
|
180
|
+
- [website] Evolve the Developer Advocate role (#40337) @oliviertassinari
|
|
181
|
+
- [website] Fix default social card @oliviertassinari
|
|
182
|
+
- [test] Restore the `t` command (#40430) @michaldudak
|
|
183
|
+
|
|
184
|
+
All contributors of this release in alphabetical order: @aacevski, @alexfauquette, @anle9650, @brijeshb42, @danilo-leal, @DiegoAndai, @iamsaumya, @illume, @Janpot, @LukasTy, @Methuselah96, @michaldudak, @mj12albert, @nicegamer7, @oliviertassinari, @renovate[bot], @RiceCrisp, @sai6855, @samuelsycamore, @savalaram-redkar, @siriwatknp, @zanivan
|
|
185
|
+
|
|
3
186
|
## 5.15.3
|
|
4
187
|
|
|
5
188
|
<!-- generated comparing v5.15.2..master -->
|
|
@@ -12480,7 +12663,7 @@ Here are some highlights ✨:
|
|
|
12480
12663
|
|
|
12481
12664
|
- 👩🎨 A first iteration on the new styling solution.
|
|
12482
12665
|
|
|
12483
|
-
You can find a [new version](https://mui.com/components/slider-styled/) of the slider in the lab powered by [
|
|
12666
|
+
You can find a [new version](https://mui.com/components/slider-styled/) of the slider in the lab powered by [Emotion](https://emotion.sh/).
|
|
12484
12667
|
|
|
12485
12668
|
In the event that you are already using styled-components in your application, you can swap emotion for styled-components 💅. Check [this CodeSandbox](https://codesandbox.io/p/sandbox/sliderstyled-with-styled-components-forked-olc27?file=/package.json) for a demo. It relies on aliases to prevent any bundle size overhead.
|
|
12486
12669
|
|
|
@@ -162,10 +162,10 @@ const LoadingButton = /*#__PURE__*/React.forwardRef(function LoadingButton(inPro
|
|
|
162
162
|
}));
|
|
163
163
|
});
|
|
164
164
|
process.env.NODE_ENV !== "production" ? LoadingButton.propTypes /* remove-proptypes */ = {
|
|
165
|
-
//
|
|
166
|
-
//
|
|
167
|
-
//
|
|
168
|
-
//
|
|
165
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
166
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
167
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
168
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
169
169
|
/**
|
|
170
170
|
* The content of the component.
|
|
171
171
|
*/
|
package/Masonry/Masonry.js
CHANGED
|
@@ -267,10 +267,10 @@ const Masonry = /*#__PURE__*/React.forwardRef(function Masonry(inProps, ref) {
|
|
|
267
267
|
}));
|
|
268
268
|
});
|
|
269
269
|
process.env.NODE_ENV !== "production" ? Masonry.propTypes /* remove-proptypes */ = {
|
|
270
|
-
//
|
|
271
|
-
//
|
|
272
|
-
//
|
|
273
|
-
//
|
|
270
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
271
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
272
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
273
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
274
274
|
/**
|
|
275
275
|
* The content of the component.
|
|
276
276
|
*/
|
package/TabContext/TabContext.js
CHANGED
|
@@ -36,10 +36,10 @@ export default function TabContext(props) {
|
|
|
36
36
|
});
|
|
37
37
|
}
|
|
38
38
|
process.env.NODE_ENV !== "production" ? TabContext.propTypes /* remove-proptypes */ = {
|
|
39
|
-
//
|
|
40
|
-
//
|
|
41
|
-
//
|
|
42
|
-
//
|
|
39
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
40
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
41
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
42
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
43
43
|
/**
|
|
44
44
|
* The content of the component.
|
|
45
45
|
*/
|
package/TabList/TabList.js
CHANGED
|
@@ -34,10 +34,10 @@ const TabList = /*#__PURE__*/React.forwardRef(function TabList(props, ref) {
|
|
|
34
34
|
}));
|
|
35
35
|
});
|
|
36
36
|
process.env.NODE_ENV !== "production" ? TabList.propTypes /* remove-proptypes */ = {
|
|
37
|
-
//
|
|
38
|
-
//
|
|
39
|
-
//
|
|
40
|
-
//
|
|
37
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
38
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
39
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
40
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
41
41
|
/**
|
|
42
42
|
* A list of `<Tab />` elements.
|
|
43
43
|
*/
|
package/TabPanel/TabPanel.js
CHANGED
|
@@ -61,10 +61,10 @@ const TabPanel = /*#__PURE__*/React.forwardRef(function TabPanel(inProps, ref) {
|
|
|
61
61
|
}));
|
|
62
62
|
});
|
|
63
63
|
process.env.NODE_ENV !== "production" ? TabPanel.propTypes /* remove-proptypes */ = {
|
|
64
|
-
//
|
|
65
|
-
//
|
|
66
|
-
//
|
|
67
|
-
//
|
|
64
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
65
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
66
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
67
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
68
68
|
/**
|
|
69
69
|
* The content of the component.
|
|
70
70
|
*/
|
package/Timeline/Timeline.js
CHANGED
|
@@ -77,10 +77,10 @@ const Timeline = /*#__PURE__*/React.forwardRef(function Timeline(inProps, ref) {
|
|
|
77
77
|
});
|
|
78
78
|
});
|
|
79
79
|
process.env.NODE_ENV !== "production" ? Timeline.propTypes /* remove-proptypes */ = {
|
|
80
|
-
//
|
|
81
|
-
//
|
|
82
|
-
//
|
|
83
|
-
//
|
|
80
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
81
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
82
|
+
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
|
|
83
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
84
84
|
/**
|
|
85
85
|
* The content of the component.
|
|
86
86
|
*/
|
|
@@ -50,10 +50,10 @@ const TimelineConnector = /*#__PURE__*/React.forwardRef(function TimelineConnect
|
|
|
50
50
|
}, other));
|
|
51
51
|
});
|
|
52
52
|
process.env.NODE_ENV !== "production" ? TimelineConnector.propTypes /* remove-proptypes */ = {
|
|
53
|
-
//
|
|
54
|
-
//
|
|
55
|
-
//
|
|
56
|
-
//
|
|
53
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
54
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
55
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
56
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
57
57
|
/**
|
|
58
58
|
* The content of the component.
|
|
59
59
|
*/
|
|
@@ -65,10 +65,10 @@ const TimelineContent = /*#__PURE__*/React.forwardRef(function TimelineContent(i
|
|
|
65
65
|
}, other));
|
|
66
66
|
});
|
|
67
67
|
process.env.NODE_ENV !== "production" ? TimelineContent.propTypes /* remove-proptypes */ = {
|
|
68
|
-
//
|
|
69
|
-
//
|
|
70
|
-
//
|
|
71
|
-
//
|
|
68
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
69
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
70
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
71
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
72
72
|
/**
|
|
73
73
|
* The content of the component.
|
|
74
74
|
*/
|
|
@@ -82,10 +82,10 @@ const TimelineDot = /*#__PURE__*/React.forwardRef(function TimelineDot(inProps,
|
|
|
82
82
|
}, other));
|
|
83
83
|
});
|
|
84
84
|
process.env.NODE_ENV !== "production" ? TimelineDot.propTypes /* remove-proptypes */ = {
|
|
85
|
-
//
|
|
86
|
-
//
|
|
87
|
-
//
|
|
88
|
-
//
|
|
85
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
86
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
87
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
88
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
89
89
|
/**
|
|
90
90
|
* The content of the component.
|
|
91
91
|
*/
|
|
@@ -98,10 +98,10 @@ const TimelineItem = /*#__PURE__*/React.forwardRef(function TimelineItem(inProps
|
|
|
98
98
|
});
|
|
99
99
|
});
|
|
100
100
|
process.env.NODE_ENV !== "production" ? TimelineItem.propTypes /* remove-proptypes */ = {
|
|
101
|
-
//
|
|
102
|
-
//
|
|
103
|
-
//
|
|
104
|
-
//
|
|
101
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
102
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
103
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
104
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
105
105
|
/**
|
|
106
106
|
* The content of the component.
|
|
107
107
|
*/
|
|
@@ -66,10 +66,10 @@ const TimelineOppositeContent = /*#__PURE__*/React.forwardRef(function TimelineO
|
|
|
66
66
|
}, other));
|
|
67
67
|
});
|
|
68
68
|
process.env.NODE_ENV !== "production" ? TimelineOppositeContent.propTypes /* remove-proptypes */ = {
|
|
69
|
-
//
|
|
70
|
-
//
|
|
71
|
-
//
|
|
72
|
-
//
|
|
69
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
70
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
71
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
72
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
73
73
|
/**
|
|
74
74
|
* The content of the component.
|
|
75
75
|
*/
|
|
@@ -47,10 +47,10 @@ const TimelineSeparator = /*#__PURE__*/React.forwardRef(function TimelineSeparat
|
|
|
47
47
|
}, other));
|
|
48
48
|
});
|
|
49
49
|
process.env.NODE_ENV !== "production" ? TimelineSeparator.propTypes /* remove-proptypes */ = {
|
|
50
|
-
//
|
|
51
|
-
//
|
|
52
|
-
//
|
|
53
|
-
//
|
|
50
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
51
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
52
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
53
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
54
54
|
/**
|
|
55
55
|
* The content of the component.
|
|
56
56
|
*/
|
package/index.js
CHANGED
|
@@ -155,10 +155,10 @@ var LoadingButton = /*#__PURE__*/React.forwardRef(function LoadingButton(inProps
|
|
|
155
155
|
}));
|
|
156
156
|
});
|
|
157
157
|
process.env.NODE_ENV !== "production" ? LoadingButton.propTypes /* remove-proptypes */ = {
|
|
158
|
-
//
|
|
159
|
-
//
|
|
160
|
-
//
|
|
161
|
-
//
|
|
158
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
159
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
160
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
161
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
162
162
|
/**
|
|
163
163
|
* The content of the component.
|
|
164
164
|
*/
|
|
@@ -272,10 +272,10 @@ var Masonry = /*#__PURE__*/React.forwardRef(function Masonry(inProps, ref) {
|
|
|
272
272
|
}));
|
|
273
273
|
});
|
|
274
274
|
process.env.NODE_ENV !== "production" ? Masonry.propTypes /* remove-proptypes */ = {
|
|
275
|
-
//
|
|
276
|
-
//
|
|
277
|
-
//
|
|
278
|
-
//
|
|
275
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
276
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
277
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
278
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
279
279
|
/**
|
|
280
280
|
* The content of the component.
|
|
281
281
|
*/
|
|
@@ -36,10 +36,10 @@ export default function TabContext(props) {
|
|
|
36
36
|
});
|
|
37
37
|
}
|
|
38
38
|
process.env.NODE_ENV !== "production" ? TabContext.propTypes /* remove-proptypes */ = {
|
|
39
|
-
//
|
|
40
|
-
//
|
|
41
|
-
//
|
|
42
|
-
//
|
|
39
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
40
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
41
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
42
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
43
43
|
/**
|
|
44
44
|
* The content of the component.
|
|
45
45
|
*/
|
|
@@ -31,10 +31,10 @@ var TabList = /*#__PURE__*/React.forwardRef(function TabList(props, ref) {
|
|
|
31
31
|
}));
|
|
32
32
|
});
|
|
33
33
|
process.env.NODE_ENV !== "production" ? TabList.propTypes /* remove-proptypes */ = {
|
|
34
|
-
//
|
|
35
|
-
//
|
|
36
|
-
//
|
|
37
|
-
//
|
|
34
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
35
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
36
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
37
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
38
38
|
/**
|
|
39
39
|
* A list of `<Tab />` elements.
|
|
40
40
|
*/
|
|
@@ -59,10 +59,10 @@ var TabPanel = /*#__PURE__*/React.forwardRef(function TabPanel(inProps, ref) {
|
|
|
59
59
|
}));
|
|
60
60
|
});
|
|
61
61
|
process.env.NODE_ENV !== "production" ? TabPanel.propTypes /* remove-proptypes */ = {
|
|
62
|
-
//
|
|
63
|
-
//
|
|
64
|
-
//
|
|
65
|
-
//
|
|
62
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
63
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
64
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
65
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
66
66
|
/**
|
|
67
67
|
* The content of the component.
|
|
68
68
|
*/
|
|
@@ -73,10 +73,10 @@ var Timeline = /*#__PURE__*/React.forwardRef(function Timeline(inProps, ref) {
|
|
|
73
73
|
});
|
|
74
74
|
});
|
|
75
75
|
process.env.NODE_ENV !== "production" ? Timeline.propTypes /* remove-proptypes */ = {
|
|
76
|
-
//
|
|
77
|
-
//
|
|
78
|
-
//
|
|
79
|
-
//
|
|
76
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
77
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
78
|
+
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
|
|
79
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
80
80
|
/**
|
|
81
81
|
* The content of the component.
|
|
82
82
|
*/
|
|
@@ -46,10 +46,10 @@ var TimelineConnector = /*#__PURE__*/React.forwardRef(function TimelineConnector
|
|
|
46
46
|
}, other));
|
|
47
47
|
});
|
|
48
48
|
process.env.NODE_ENV !== "production" ? TimelineConnector.propTypes /* remove-proptypes */ = {
|
|
49
|
-
//
|
|
50
|
-
//
|
|
51
|
-
//
|
|
52
|
-
//
|
|
49
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
50
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
51
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
52
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
53
53
|
/**
|
|
54
54
|
* The content of the component.
|
|
55
55
|
*/
|
|
@@ -58,10 +58,10 @@ var TimelineContent = /*#__PURE__*/React.forwardRef(function TimelineContent(inP
|
|
|
58
58
|
}, other));
|
|
59
59
|
});
|
|
60
60
|
process.env.NODE_ENV !== "production" ? TimelineContent.propTypes /* remove-proptypes */ = {
|
|
61
|
-
//
|
|
62
|
-
//
|
|
63
|
-
//
|
|
64
|
-
//
|
|
61
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
62
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
63
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
64
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
65
65
|
/**
|
|
66
66
|
* The content of the component.
|
|
67
67
|
*/
|
|
@@ -78,10 +78,10 @@ var TimelineDot = /*#__PURE__*/React.forwardRef(function TimelineDot(inProps, re
|
|
|
78
78
|
}, other));
|
|
79
79
|
});
|
|
80
80
|
process.env.NODE_ENV !== "production" ? TimelineDot.propTypes /* remove-proptypes */ = {
|
|
81
|
-
//
|
|
82
|
-
//
|
|
83
|
-
//
|
|
84
|
-
//
|
|
81
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
82
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
83
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
84
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
85
85
|
/**
|
|
86
86
|
* The content of the component.
|
|
87
87
|
*/
|
|
@@ -90,10 +90,10 @@ var TimelineItem = /*#__PURE__*/React.forwardRef(function TimelineItem(inProps,
|
|
|
90
90
|
});
|
|
91
91
|
});
|
|
92
92
|
process.env.NODE_ENV !== "production" ? TimelineItem.propTypes /* remove-proptypes */ = {
|
|
93
|
-
//
|
|
94
|
-
//
|
|
95
|
-
//
|
|
96
|
-
//
|
|
93
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
94
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
95
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
96
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
97
97
|
/**
|
|
98
98
|
* The content of the component.
|
|
99
99
|
*/
|
|
@@ -59,10 +59,10 @@ var TimelineOppositeContent = /*#__PURE__*/React.forwardRef(function TimelineOpp
|
|
|
59
59
|
}, other));
|
|
60
60
|
});
|
|
61
61
|
process.env.NODE_ENV !== "production" ? TimelineOppositeContent.propTypes /* remove-proptypes */ = {
|
|
62
|
-
//
|
|
63
|
-
//
|
|
64
|
-
//
|
|
65
|
-
//
|
|
62
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
63
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
64
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
65
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
66
66
|
/**
|
|
67
67
|
* The content of the component.
|
|
68
68
|
*/
|
|
@@ -44,10 +44,10 @@ var TimelineSeparator = /*#__PURE__*/React.forwardRef(function TimelineSeparator
|
|
|
44
44
|
}, other));
|
|
45
45
|
});
|
|
46
46
|
process.env.NODE_ENV !== "production" ? TimelineSeparator.propTypes /* remove-proptypes */ = {
|
|
47
|
-
//
|
|
48
|
-
//
|
|
49
|
-
//
|
|
50
|
-
//
|
|
47
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
48
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
49
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
50
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
51
51
|
/**
|
|
52
52
|
* The content of the component.
|
|
53
53
|
*/
|
package/legacy/index.js
CHANGED
|
@@ -162,10 +162,10 @@ const LoadingButton = /*#__PURE__*/React.forwardRef(function LoadingButton(inPro
|
|
|
162
162
|
}));
|
|
163
163
|
});
|
|
164
164
|
process.env.NODE_ENV !== "production" ? LoadingButton.propTypes /* remove-proptypes */ = {
|
|
165
|
-
//
|
|
166
|
-
//
|
|
167
|
-
//
|
|
168
|
-
//
|
|
165
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
166
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
167
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
168
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
169
169
|
/**
|
|
170
170
|
* The content of the component.
|
|
171
171
|
*/
|
|
@@ -267,10 +267,10 @@ const Masonry = /*#__PURE__*/React.forwardRef(function Masonry(inProps, ref) {
|
|
|
267
267
|
}));
|
|
268
268
|
});
|
|
269
269
|
process.env.NODE_ENV !== "production" ? Masonry.propTypes /* remove-proptypes */ = {
|
|
270
|
-
//
|
|
271
|
-
//
|
|
272
|
-
//
|
|
273
|
-
//
|
|
270
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
271
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
272
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
273
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
274
274
|
/**
|
|
275
275
|
* The content of the component.
|
|
276
276
|
*/
|
|
@@ -36,10 +36,10 @@ export default function TabContext(props) {
|
|
|
36
36
|
});
|
|
37
37
|
}
|
|
38
38
|
process.env.NODE_ENV !== "production" ? TabContext.propTypes /* remove-proptypes */ = {
|
|
39
|
-
//
|
|
40
|
-
//
|
|
41
|
-
//
|
|
42
|
-
//
|
|
39
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
40
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
41
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
42
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
43
43
|
/**
|
|
44
44
|
* The content of the component.
|
|
45
45
|
*/
|
|
@@ -34,10 +34,10 @@ const TabList = /*#__PURE__*/React.forwardRef(function TabList(props, ref) {
|
|
|
34
34
|
}));
|
|
35
35
|
});
|
|
36
36
|
process.env.NODE_ENV !== "production" ? TabList.propTypes /* remove-proptypes */ = {
|
|
37
|
-
//
|
|
38
|
-
//
|
|
39
|
-
//
|
|
40
|
-
//
|
|
37
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
38
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
39
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
40
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
41
41
|
/**
|
|
42
42
|
* A list of `<Tab />` elements.
|
|
43
43
|
*/
|
|
@@ -61,10 +61,10 @@ const TabPanel = /*#__PURE__*/React.forwardRef(function TabPanel(inProps, ref) {
|
|
|
61
61
|
}));
|
|
62
62
|
});
|
|
63
63
|
process.env.NODE_ENV !== "production" ? TabPanel.propTypes /* remove-proptypes */ = {
|
|
64
|
-
//
|
|
65
|
-
//
|
|
66
|
-
//
|
|
67
|
-
//
|
|
64
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
65
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
66
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
67
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
68
68
|
/**
|
|
69
69
|
* The content of the component.
|
|
70
70
|
*/
|
|
@@ -77,10 +77,10 @@ const Timeline = /*#__PURE__*/React.forwardRef(function Timeline(inProps, ref) {
|
|
|
77
77
|
});
|
|
78
78
|
});
|
|
79
79
|
process.env.NODE_ENV !== "production" ? Timeline.propTypes /* remove-proptypes */ = {
|
|
80
|
-
//
|
|
81
|
-
//
|
|
82
|
-
//
|
|
83
|
-
//
|
|
80
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
81
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
82
|
+
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
|
|
83
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
84
84
|
/**
|
|
85
85
|
* The content of the component.
|
|
86
86
|
*/
|
|
@@ -50,10 +50,10 @@ const TimelineConnector = /*#__PURE__*/React.forwardRef(function TimelineConnect
|
|
|
50
50
|
}, other));
|
|
51
51
|
});
|
|
52
52
|
process.env.NODE_ENV !== "production" ? TimelineConnector.propTypes /* remove-proptypes */ = {
|
|
53
|
-
//
|
|
54
|
-
//
|
|
55
|
-
//
|
|
56
|
-
//
|
|
53
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
54
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
55
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
56
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
57
57
|
/**
|
|
58
58
|
* The content of the component.
|
|
59
59
|
*/
|
|
@@ -65,10 +65,10 @@ const TimelineContent = /*#__PURE__*/React.forwardRef(function TimelineContent(i
|
|
|
65
65
|
}, other));
|
|
66
66
|
});
|
|
67
67
|
process.env.NODE_ENV !== "production" ? TimelineContent.propTypes /* remove-proptypes */ = {
|
|
68
|
-
//
|
|
69
|
-
//
|
|
70
|
-
//
|
|
71
|
-
//
|
|
68
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
69
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
70
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
71
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
72
72
|
/**
|
|
73
73
|
* The content of the component.
|
|
74
74
|
*/
|
|
@@ -82,10 +82,10 @@ const TimelineDot = /*#__PURE__*/React.forwardRef(function TimelineDot(inProps,
|
|
|
82
82
|
}, other));
|
|
83
83
|
});
|
|
84
84
|
process.env.NODE_ENV !== "production" ? TimelineDot.propTypes /* remove-proptypes */ = {
|
|
85
|
-
//
|
|
86
|
-
//
|
|
87
|
-
//
|
|
88
|
-
//
|
|
85
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
86
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
87
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
88
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
89
89
|
/**
|
|
90
90
|
* The content of the component.
|
|
91
91
|
*/
|
|
@@ -98,10 +98,10 @@ const TimelineItem = /*#__PURE__*/React.forwardRef(function TimelineItem(inProps
|
|
|
98
98
|
});
|
|
99
99
|
});
|
|
100
100
|
process.env.NODE_ENV !== "production" ? TimelineItem.propTypes /* remove-proptypes */ = {
|
|
101
|
-
//
|
|
102
|
-
//
|
|
103
|
-
//
|
|
104
|
-
//
|
|
101
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
102
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
103
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
104
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
105
105
|
/**
|
|
106
106
|
* The content of the component.
|
|
107
107
|
*/
|
|
@@ -66,10 +66,10 @@ const TimelineOppositeContent = /*#__PURE__*/React.forwardRef(function TimelineO
|
|
|
66
66
|
}, other));
|
|
67
67
|
});
|
|
68
68
|
process.env.NODE_ENV !== "production" ? TimelineOppositeContent.propTypes /* remove-proptypes */ = {
|
|
69
|
-
//
|
|
70
|
-
//
|
|
71
|
-
//
|
|
72
|
-
//
|
|
69
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
70
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
71
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
72
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
73
73
|
/**
|
|
74
74
|
* The content of the component.
|
|
75
75
|
*/
|
|
@@ -47,10 +47,10 @@ const TimelineSeparator = /*#__PURE__*/React.forwardRef(function TimelineSeparat
|
|
|
47
47
|
}, other));
|
|
48
48
|
});
|
|
49
49
|
process.env.NODE_ENV !== "production" ? TimelineSeparator.propTypes /* remove-proptypes */ = {
|
|
50
|
-
//
|
|
51
|
-
//
|
|
52
|
-
//
|
|
53
|
-
//
|
|
50
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
51
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
52
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
53
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
54
54
|
/**
|
|
55
55
|
* The content of the component.
|
|
56
56
|
*/
|
package/modern/index.js
CHANGED
|
@@ -169,10 +169,10 @@ const LoadingButton = /*#__PURE__*/React.forwardRef(function LoadingButton(inPro
|
|
|
169
169
|
}));
|
|
170
170
|
});
|
|
171
171
|
process.env.NODE_ENV !== "production" ? LoadingButton.propTypes /* remove-proptypes */ = {
|
|
172
|
-
//
|
|
173
|
-
//
|
|
174
|
-
//
|
|
175
|
-
//
|
|
172
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
173
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
174
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
175
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
176
176
|
/**
|
|
177
177
|
* The content of the component.
|
|
178
178
|
*/
|
package/node/Masonry/Masonry.js
CHANGED
|
@@ -276,10 +276,10 @@ const Masonry = /*#__PURE__*/React.forwardRef(function Masonry(inProps, ref) {
|
|
|
276
276
|
}));
|
|
277
277
|
});
|
|
278
278
|
process.env.NODE_ENV !== "production" ? Masonry.propTypes /* remove-proptypes */ = {
|
|
279
|
-
//
|
|
280
|
-
//
|
|
281
|
-
//
|
|
282
|
-
//
|
|
279
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
280
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
281
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
282
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
283
283
|
/**
|
|
284
284
|
* The content of the component.
|
|
285
285
|
*/
|
|
@@ -45,10 +45,10 @@ function TabContext(props) {
|
|
|
45
45
|
});
|
|
46
46
|
}
|
|
47
47
|
process.env.NODE_ENV !== "production" ? TabContext.propTypes /* remove-proptypes */ = {
|
|
48
|
-
//
|
|
49
|
-
//
|
|
50
|
-
//
|
|
51
|
-
//
|
|
48
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
49
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
50
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
51
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
52
52
|
/**
|
|
53
53
|
* The content of the component.
|
|
54
54
|
*/
|
package/node/TabList/TabList.js
CHANGED
|
@@ -42,10 +42,10 @@ const TabList = /*#__PURE__*/React.forwardRef(function TabList(props, ref) {
|
|
|
42
42
|
}));
|
|
43
43
|
});
|
|
44
44
|
process.env.NODE_ENV !== "production" ? TabList.propTypes /* remove-proptypes */ = {
|
|
45
|
-
//
|
|
46
|
-
//
|
|
47
|
-
//
|
|
48
|
-
//
|
|
45
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
46
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
47
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
48
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
49
49
|
/**
|
|
50
50
|
* A list of `<Tab />` elements.
|
|
51
51
|
*/
|
|
@@ -69,10 +69,10 @@ const TabPanel = /*#__PURE__*/React.forwardRef(function TabPanel(inProps, ref) {
|
|
|
69
69
|
}));
|
|
70
70
|
});
|
|
71
71
|
process.env.NODE_ENV !== "production" ? TabPanel.propTypes /* remove-proptypes */ = {
|
|
72
|
-
//
|
|
73
|
-
//
|
|
74
|
-
//
|
|
75
|
-
//
|
|
72
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
73
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
74
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
75
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
76
76
|
/**
|
|
77
77
|
* The content of the component.
|
|
78
78
|
*/
|
|
@@ -85,10 +85,10 @@ const Timeline = /*#__PURE__*/React.forwardRef(function Timeline(inProps, ref) {
|
|
|
85
85
|
});
|
|
86
86
|
});
|
|
87
87
|
process.env.NODE_ENV !== "production" ? Timeline.propTypes /* remove-proptypes */ = {
|
|
88
|
-
//
|
|
89
|
-
//
|
|
90
|
-
//
|
|
91
|
-
//
|
|
88
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
89
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
90
|
+
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
|
|
91
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
92
92
|
/**
|
|
93
93
|
* The content of the component.
|
|
94
94
|
*/
|
|
@@ -58,10 +58,10 @@ const TimelineConnector = /*#__PURE__*/React.forwardRef(function TimelineConnect
|
|
|
58
58
|
}, other));
|
|
59
59
|
});
|
|
60
60
|
process.env.NODE_ENV !== "production" ? TimelineConnector.propTypes /* remove-proptypes */ = {
|
|
61
|
-
//
|
|
62
|
-
//
|
|
63
|
-
//
|
|
64
|
-
//
|
|
61
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
62
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
63
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
64
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
65
65
|
/**
|
|
66
66
|
* The content of the component.
|
|
67
67
|
*/
|
|
@@ -73,10 +73,10 @@ const TimelineContent = /*#__PURE__*/React.forwardRef(function TimelineContent(i
|
|
|
73
73
|
}, other));
|
|
74
74
|
});
|
|
75
75
|
process.env.NODE_ENV !== "production" ? TimelineContent.propTypes /* remove-proptypes */ = {
|
|
76
|
-
//
|
|
77
|
-
//
|
|
78
|
-
//
|
|
79
|
-
//
|
|
76
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
77
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
78
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
79
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
80
80
|
/**
|
|
81
81
|
* The content of the component.
|
|
82
82
|
*/
|
|
@@ -90,10 +90,10 @@ const TimelineDot = /*#__PURE__*/React.forwardRef(function TimelineDot(inProps,
|
|
|
90
90
|
}, other));
|
|
91
91
|
});
|
|
92
92
|
process.env.NODE_ENV !== "production" ? TimelineDot.propTypes /* remove-proptypes */ = {
|
|
93
|
-
//
|
|
94
|
-
//
|
|
95
|
-
//
|
|
96
|
-
//
|
|
93
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
94
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
95
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
96
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
97
97
|
/**
|
|
98
98
|
* The content of the component.
|
|
99
99
|
*/
|
|
@@ -106,10 +106,10 @@ const TimelineItem = /*#__PURE__*/React.forwardRef(function TimelineItem(inProps
|
|
|
106
106
|
});
|
|
107
107
|
});
|
|
108
108
|
process.env.NODE_ENV !== "production" ? TimelineItem.propTypes /* remove-proptypes */ = {
|
|
109
|
-
//
|
|
110
|
-
//
|
|
111
|
-
//
|
|
112
|
-
//
|
|
109
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
110
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
111
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
112
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
113
113
|
/**
|
|
114
114
|
* The content of the component.
|
|
115
115
|
*/
|
|
@@ -74,10 +74,10 @@ const TimelineOppositeContent = /*#__PURE__*/React.forwardRef(function TimelineO
|
|
|
74
74
|
}, other));
|
|
75
75
|
});
|
|
76
76
|
process.env.NODE_ENV !== "production" ? TimelineOppositeContent.propTypes /* remove-proptypes */ = {
|
|
77
|
-
//
|
|
78
|
-
//
|
|
79
|
-
//
|
|
80
|
-
//
|
|
77
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
78
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
79
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
80
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
81
81
|
/**
|
|
82
82
|
* The content of the component.
|
|
83
83
|
*/
|
|
@@ -55,10 +55,10 @@ const TimelineSeparator = /*#__PURE__*/React.forwardRef(function TimelineSeparat
|
|
|
55
55
|
}, other));
|
|
56
56
|
});
|
|
57
57
|
process.env.NODE_ENV !== "production" ? TimelineSeparator.propTypes /* remove-proptypes */ = {
|
|
58
|
-
//
|
|
59
|
-
//
|
|
60
|
-
//
|
|
61
|
-
//
|
|
58
|
+
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
59
|
+
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
60
|
+
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
61
|
+
// └─────────────────────────────────────────────────────────────────────┘
|
|
62
62
|
/**
|
|
63
63
|
* The content of the component.
|
|
64
64
|
*/
|
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/lab",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.161",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "Laboratory for new MUI modules.",
|
|
@@ -28,18 +28,18 @@
|
|
|
28
28
|
"url": "https://opencollective.com/mui-org"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@babel/runtime": "^7.23.
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"@mui/
|
|
35
|
-
"@mui/
|
|
36
|
-
"
|
|
37
|
-
"
|
|
31
|
+
"@babel/runtime": "^7.23.8",
|
|
32
|
+
"clsx": "^2.1.0",
|
|
33
|
+
"prop-types": "^15.8.1",
|
|
34
|
+
"@mui/base": "5.0.0-beta.32",
|
|
35
|
+
"@mui/system": "^5.15.5",
|
|
36
|
+
"@mui/types": "^7.2.13",
|
|
37
|
+
"@mui/utils": "^5.15.5"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"@emotion/react": "^11.5.0",
|
|
41
41
|
"@emotion/styled": "^11.3.0",
|
|
42
|
-
"@mui/material": ">=5.
|
|
42
|
+
"@mui/material": ">=5.15.0",
|
|
43
43
|
"@types/react": "^17.0.0 || ^18.0.0",
|
|
44
44
|
"react": "^17.0.0 || ^18.0.0",
|
|
45
45
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
@@ -57,7 +57,8 @@
|
|
|
57
57
|
},
|
|
58
58
|
"sideEffects": false,
|
|
59
59
|
"publishConfig": {
|
|
60
|
-
"access": "public"
|
|
60
|
+
"access": "public",
|
|
61
|
+
"directory": "build"
|
|
61
62
|
},
|
|
62
63
|
"engines": {
|
|
63
64
|
"node": ">=12.0.0"
|