@mui/x-tree-view-pro 8.23.0 → 8.24.0
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 +111 -1
- package/RichTreeViewPro/RichTreeViewPro.js +32 -29
- package/RichTreeViewPro/RichTreeViewPro.types.d.ts +6 -5
- package/RichTreeViewPro/index.d.ts +1 -2
- package/RichTreeViewPro/useExtractRichTreeViewProParameters.d.ts +294 -0
- package/RichTreeViewPro/useExtractRichTreeViewProParameters.js +107 -0
- package/esm/RichTreeViewPro/RichTreeViewPro.js +32 -29
- package/esm/RichTreeViewPro/RichTreeViewPro.types.d.ts +6 -5
- package/esm/RichTreeViewPro/index.d.ts +1 -2
- package/esm/RichTreeViewPro/useExtractRichTreeViewProParameters.d.ts +294 -0
- package/esm/RichTreeViewPro/useExtractRichTreeViewProParameters.js +99 -0
- package/esm/hooks/useRichTreeViewProApiRef.d.ts +2 -2
- package/esm/index.d.ts +0 -1
- package/esm/index.js +1 -2
- package/esm/internals/RichTreeViewProStore/RichTreeViewProStore.d.ts +49 -0
- package/esm/internals/RichTreeViewProStore/RichTreeViewProStore.js +15 -0
- package/esm/internals/RichTreeViewProStore/RichTreeViewProStore.types.d.ts +69 -0
- package/esm/internals/RichTreeViewProStore/RichTreeViewProStore.utils.d.ts +3 -0
- package/esm/internals/RichTreeViewProStore/RichTreeViewProStore.utils.js +18 -0
- package/esm/internals/RichTreeViewProStore/index.d.ts +2 -0
- package/esm/internals/RichTreeViewProStore/index.js +2 -0
- package/esm/internals/plugins/itemsReordering/TreeViewItemsReorderingPlugin.d.ts +53 -0
- package/esm/internals/plugins/itemsReordering/TreeViewItemsReorderingPlugin.js +180 -0
- package/esm/internals/plugins/itemsReordering/index.d.ts +3 -0
- package/esm/internals/plugins/itemsReordering/index.js +3 -0
- package/esm/internals/plugins/{useTreeViewItemsReordering → itemsReordering}/itemPlugin.js +6 -7
- package/esm/internals/plugins/itemsReordering/selectors.d.ts +29 -0
- package/esm/internals/plugins/{useTreeViewItemsReordering/useTreeViewItemsReordering.selectors.js → itemsReordering/selectors.js} +4 -4
- package/esm/internals/plugins/itemsReordering/types.d.ts +6 -0
- package/{internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.utils.d.ts → esm/internals/plugins/itemsReordering/utils.d.ts} +7 -7
- package/esm/internals/plugins/{useTreeViewItemsReordering/useTreeViewItemsReordering.utils.js → itemsReordering/utils.js} +2 -2
- package/esm/internals/plugins/lazyLoading/TreeViewLazyLoadingPlugin.d.ts +51 -0
- package/esm/internals/plugins/lazyLoading/TreeViewLazyLoadingPlugin.js +230 -0
- package/esm/internals/plugins/lazyLoading/index.d.ts +2 -0
- package/esm/internals/plugins/lazyLoading/index.js +2 -0
- package/esm/internals/plugins/lazyLoading/types.d.ts +21 -0
- package/esm/internals/plugins/lazyLoading/types.js +1 -0
- package/{internals/plugins/useTreeViewLazyLoading → esm/internals/plugins/lazyLoading}/utils.d.ts +3 -7
- package/esm/internals/plugins/{useTreeViewLazyLoading → lazyLoading}/utils.js +3 -11
- package/hooks/useRichTreeViewProApiRef.d.ts +2 -2
- package/index.d.ts +0 -1
- package/index.js +1 -23
- package/internals/RichTreeViewProStore/RichTreeViewProStore.d.ts +49 -0
- package/internals/RichTreeViewProStore/RichTreeViewProStore.js +23 -0
- package/internals/RichTreeViewProStore/RichTreeViewProStore.types.d.ts +69 -0
- package/internals/RichTreeViewProStore/RichTreeViewProStore.utils.d.ts +3 -0
- package/internals/RichTreeViewProStore/RichTreeViewProStore.utils.js +25 -0
- package/internals/RichTreeViewProStore/index.d.ts +2 -0
- package/internals/RichTreeViewProStore/index.js +27 -0
- package/internals/plugins/itemsReordering/TreeViewItemsReorderingPlugin.d.ts +53 -0
- package/internals/plugins/itemsReordering/TreeViewItemsReorderingPlugin.js +188 -0
- package/internals/plugins/itemsReordering/index.d.ts +3 -0
- package/internals/plugins/itemsReordering/index.js +27 -0
- package/internals/plugins/{useTreeViewItemsReordering → itemsReordering}/itemPlugin.js +9 -10
- package/internals/plugins/itemsReordering/selectors.d.ts +29 -0
- package/internals/plugins/{useTreeViewItemsReordering/useTreeViewItemsReordering.selectors.js → itemsReordering/selectors.js} +4 -4
- package/internals/plugins/itemsReordering/types.d.ts +6 -0
- package/{esm/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.utils.d.ts → internals/plugins/itemsReordering/utils.d.ts} +7 -7
- package/internals/plugins/{useTreeViewItemsReordering/useTreeViewItemsReordering.utils.js → itemsReordering/utils.js} +2 -2
- package/internals/plugins/lazyLoading/TreeViewLazyLoadingPlugin.d.ts +51 -0
- package/internals/plugins/lazyLoading/TreeViewLazyLoadingPlugin.js +238 -0
- package/internals/plugins/lazyLoading/index.d.ts +2 -0
- package/internals/plugins/lazyLoading/index.js +27 -0
- package/internals/plugins/lazyLoading/types.d.ts +21 -0
- package/internals/plugins/lazyLoading/types.js +5 -0
- package/{esm/internals/plugins/useTreeViewLazyLoading → internals/plugins/lazyLoading}/utils.d.ts +3 -7
- package/internals/plugins/{useTreeViewLazyLoading → lazyLoading}/utils.js +3 -9
- package/package.json +4 -4
- package/RichTreeViewPro/RichTreeViewPro.plugins.d.ts +0 -5
- package/RichTreeViewPro/RichTreeViewPro.plugins.js +0 -12
- package/esm/RichTreeViewPro/RichTreeViewPro.plugins.d.ts +0 -5
- package/esm/RichTreeViewPro/RichTreeViewPro.plugins.js +0 -6
- package/esm/internals/index.d.ts +0 -1
- package/esm/internals/plugins/useTreeViewItemsReordering/index.d.ts +0 -3
- package/esm/internals/plugins/useTreeViewItemsReordering/index.js +0 -2
- package/esm/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.d.ts +0 -3
- package/esm/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.js +0 -196
- package/esm/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.selectors.d.ts +0 -30
- package/esm/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.types.d.ts +0 -107
- package/esm/internals/plugins/useTreeViewLazyLoading/index.d.ts +0 -1
- package/esm/internals/plugins/useTreeViewLazyLoading/index.js +0 -1
- package/esm/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.d.ts +0 -2
- package/esm/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.js +0 -251
- package/internals/index.d.ts +0 -1
- package/internals/plugins/useTreeViewItemsReordering/index.d.ts +0 -3
- package/internals/plugins/useTreeViewItemsReordering/index.js +0 -19
- package/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.d.ts +0 -3
- package/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.js +0 -205
- package/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.selectors.d.ts +0 -30
- package/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.types.d.ts +0 -107
- package/internals/plugins/useTreeViewLazyLoading/index.d.ts +0 -1
- package/internals/plugins/useTreeViewLazyLoading/index.js +0 -12
- package/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.d.ts +0 -2
- package/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.js +0 -259
- /package/esm/internals/{index.js → RichTreeViewProStore/RichTreeViewProStore.types.js} +0 -0
- /package/esm/internals/plugins/{useTreeViewItemsReordering → itemsReordering}/itemPlugin.d.ts +0 -0
- /package/esm/internals/plugins/{useTreeViewItemsReordering/useTreeViewItemsReordering.types.js → itemsReordering/types.js} +0 -0
- /package/internals/{index.js → RichTreeViewProStore/RichTreeViewProStore.types.js} +0 -0
- /package/internals/plugins/{useTreeViewItemsReordering → itemsReordering}/itemPlugin.d.ts +0 -0
- /package/internals/plugins/{useTreeViewItemsReordering/useTreeViewItemsReordering.types.js → itemsReordering/types.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,9 +5,119 @@
|
|
|
5
5
|
All notable changes to this project will be documented in this file.
|
|
6
6
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
7
7
|
|
|
8
|
+
## 8.24.0
|
|
9
|
+
|
|
10
|
+
_Jan 8, 2026_
|
|
11
|
+
|
|
12
|
+
We'd like to extend a big thank you to the 12 contributors who made this release possible. Here are some highlights ✨:
|
|
13
|
+
|
|
14
|
+
- ⚡️Add bar [batch renderer](https://mui.com/x/react-charts/bars/#performance), result in a significant performance improvement when rendering thousands of bars
|
|
15
|
+
- 📊 Add [range bar chart](https://mui.com/x/react-charts/range-bar/) to render
|
|
16
|
+

|
|
17
|
+
- 🌎 Improved Danish (da-DK) and Japanese (ja-JP) locales on the Data Grid
|
|
18
|
+
|
|
19
|
+
Special thanks go out to these community members for their valuable contributions:
|
|
20
|
+
@anders-noerrelykke, @auloin, @sai6855, @yuito-it
|
|
21
|
+
|
|
22
|
+
The following team members contributed to this release:
|
|
23
|
+
@alelthomas, @alexfauquette, @arminmeh, @bernardobelchior, @flaviendelangle, @JCQuintas, @mapache-salvaje, @siriwatknp
|
|
24
|
+
|
|
25
|
+
### Data Grid
|
|
26
|
+
|
|
27
|
+
#### `@mui/x-data-grid@8.24.0`
|
|
28
|
+
|
|
29
|
+
- [l10n] Improve Danish (da-DK) locale (#20828) @anders-noerrelykke
|
|
30
|
+
- [l10n] Improve Japanese (ja-JP) locale (#20251) @yuito-it
|
|
31
|
+
|
|
32
|
+
#### `@mui/x-data-grid-pro@8.24.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
33
|
+
|
|
34
|
+
Same changes as in `@mui/x-data-grid@8.24.0`, plus:
|
|
35
|
+
|
|
36
|
+
- [DataGridPro] Fix header filter height for `density="compact"` (#20834) @arminmeh
|
|
37
|
+
|
|
38
|
+
#### `@mui/x-data-grid-premium@8.24.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
39
|
+
|
|
40
|
+
Same changes as in `@mui/x-data-grid-pro@8.24.0`.
|
|
41
|
+
|
|
42
|
+
### Date and Time Pickers
|
|
43
|
+
|
|
44
|
+
#### `@mui/x-date-pickers@8.24.0`
|
|
45
|
+
|
|
46
|
+
- [pickers] Fix Styles applied to PickersDay when MuiPickersDay-dayOutsideMonth is used (#20719) @sai6855
|
|
47
|
+
|
|
48
|
+
#### `@mui/x-date-pickers-pro@8.24.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
49
|
+
|
|
50
|
+
Same changes as in `@mui/x-date-pickers@8.24.0`.
|
|
51
|
+
|
|
52
|
+
### Charts
|
|
53
|
+
|
|
54
|
+
#### `@mui/x-charts@8.24.0`
|
|
55
|
+
|
|
56
|
+
- [charts] Add `VisibilityManager` logic to allow managing series/items (#20571) @JCQuintas
|
|
57
|
+
- [charts] Add `identifierSerializer` configuration (#20775) @JCQuintas
|
|
58
|
+
- [charts] Add `serializeIdentifier` instance function (#20791) @JCQuintas
|
|
59
|
+
- [charts] Add bar batch renderer (#20457) @bernardobelchior
|
|
60
|
+
- [charts] Allow animating bar, line, and pie elements to hidden state (#20798) @JCQuintas
|
|
61
|
+
- [charts] Fix failing lint step (#20813) @bernardobelchior
|
|
62
|
+
- [charts] Fix tooltip anchored to item (#20783) @alexfauquette
|
|
63
|
+
- [charts] Fix type casting in getCategoryAxisConfig and applySeriesLayout functions (#20797) @sai6855
|
|
64
|
+
- [charts] Let keyboard navigation avoid overflow and handle nullish values (#20757) @alexfauquette
|
|
65
|
+
- [charts] Refactor `PieChart` and `PieChartPro` to use `slots` and `slotProps` directly (#20795) @sai6855
|
|
66
|
+
- [charts] Refactor `useRegisterPointerEventHandlers` (#20824) @bernardobelchior
|
|
67
|
+
- [charts] Update legend types to allow hiding/showing items (#20784) @JCQuintas
|
|
68
|
+
|
|
69
|
+
#### `@mui/x-charts-pro@8.24.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
70
|
+
|
|
71
|
+
Same changes as in `@mui/x-charts@8.24.0`, plus:
|
|
72
|
+
|
|
73
|
+
- [charts-pro] Pass `slotProps.toolbar` to `Toolbar` in `PieChartPro` (#20796) @sai6855
|
|
74
|
+
|
|
75
|
+
#### `@mui/x-charts-premium@8.24.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
76
|
+
|
|
77
|
+
Same changes as in `@mui/x-charts-pro@8.24.0`, plus:
|
|
78
|
+
|
|
79
|
+
- [charts-premium] Add range bar chart (#20275) @bernardobelchior
|
|
80
|
+
|
|
81
|
+
### Tree View
|
|
82
|
+
|
|
83
|
+
#### `@mui/x-tree-view@8.24.0`
|
|
84
|
+
|
|
85
|
+
- [tree view] Introduce a Tree View Store to clean the internals (#20051) @flaviendelangle
|
|
86
|
+
|
|
87
|
+
#### `@mui/x-tree-view-pro@8.24.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
88
|
+
|
|
89
|
+
Same changes as in `@mui/x-tree-view@8.24.0`.
|
|
90
|
+
|
|
91
|
+
### Codemod
|
|
92
|
+
|
|
93
|
+
#### `@mui/x-codemod@8.24.0`
|
|
94
|
+
|
|
95
|
+
Internal changes.
|
|
96
|
+
|
|
97
|
+
### Docs
|
|
98
|
+
|
|
99
|
+
- [docs] Fix axis size default values (#20799) @bernardobelchior
|
|
100
|
+
- [docs] Update What's New in MUI X page with post v8 features (DX-118) (#20787) @alelthomas
|
|
101
|
+
- [docs] Fix `onAccept`'s `context.source` documentation to use 'view' instead of 'picker' (#20465) @auloin
|
|
102
|
+
- [docs] Revise the Charts Brush doc (#20792) @mapache-salvaje
|
|
103
|
+
- [docs] Revise the Charts Highlighting doc (#20788) @mapache-salvaje
|
|
104
|
+
- [docs] Revise the Charts Label doc (#20794) @mapache-salvaje
|
|
105
|
+
- [docs] Revise the Charts Export doc (#20779) @mapache-salvaje
|
|
106
|
+
|
|
107
|
+
### Core
|
|
108
|
+
|
|
109
|
+
- [code-infra] Fix v8.23.0 release date (#20767) @bernardobelchior
|
|
110
|
+
- [code-infra] Remove `glob-gitignore` (#20801) @bernardobelchior
|
|
111
|
+
- [code-infra] Remove `nyc` (#20804) @bernardobelchior
|
|
112
|
+
- [code-infra] Remove `stream-browserify` and `null-loader` (#20805) @bernardobelchior
|
|
113
|
+
- [code-infra] Remove `stylelint-config-tailwindcss` (#20807) @bernardobelchior
|
|
114
|
+
- [code-infra] Remove unused `path` package (#20802) @bernardobelchior
|
|
115
|
+
- [code-infra] Retry flaky e2e test on webkit (#20806) @JCQuintas
|
|
116
|
+
- [internal] Add `internal` slot to properly generate components CSS layer (#20763) @siriwatknp
|
|
117
|
+
|
|
8
118
|
## 8.23.0
|
|
9
119
|
|
|
10
|
-
_Dec
|
|
120
|
+
_Dec 24, 2025_
|
|
11
121
|
|
|
12
122
|
We'd like to extend a big thank you to the 12 contributors who made this release possible. Here are some highlights ✨:
|
|
13
123
|
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
'use client';
|
|
3
3
|
|
|
4
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
5
4
|
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
5
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
6
6
|
Object.defineProperty(exports, "__esModule", {
|
|
7
7
|
value: true
|
|
8
8
|
});
|
|
9
9
|
exports.RichTreeViewProRoot = exports.RichTreeViewPro = void 0;
|
|
10
10
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
-
var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutPropertiesLoose"));
|
|
12
11
|
var React = _interopRequireWildcard(require("react"));
|
|
13
12
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
|
+
var _useMergedRefs = require("@base-ui/utils/useMergedRefs");
|
|
14
14
|
var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
|
|
15
15
|
var _xLicense = require("@mui/x-license");
|
|
16
16
|
var _useSlotProps = _interopRequireDefault(require("@mui/utils/useSlotProps"));
|
|
@@ -18,9 +18,9 @@ var _internals = require("@mui/x-tree-view/internals");
|
|
|
18
18
|
var _warning = require("@mui/x-internals/warning");
|
|
19
19
|
var _zeroStyled = require("../internals/zero-styled");
|
|
20
20
|
var _richTreeViewProClasses = require("./richTreeViewProClasses");
|
|
21
|
-
var
|
|
21
|
+
var _useExtractRichTreeViewProParameters = require("./useExtractRichTreeViewProParameters");
|
|
22
|
+
var _RichTreeViewProStore = require("../internals/RichTreeViewProStore");
|
|
22
23
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
23
|
-
const _excluded = ["slots", "slotProps"];
|
|
24
24
|
const useThemeProps = (0, _zeroStyled.createUseThemeProps)('MuiRichTreeViewPro');
|
|
25
25
|
const useUtilityClasses = ownerState => {
|
|
26
26
|
const {
|
|
@@ -52,7 +52,7 @@ const RichTreeViewProRoot = exports.RichTreeViewProRoot = (0, _zeroStyled.styled
|
|
|
52
52
|
outline: 0,
|
|
53
53
|
position: 'relative'
|
|
54
54
|
});
|
|
55
|
-
const releaseInfo = "
|
|
55
|
+
const releaseInfo = "MTc2NzgzMDQwMDAwMA==";
|
|
56
56
|
|
|
57
57
|
/**
|
|
58
58
|
*
|
|
@@ -64,16 +64,11 @@ const releaseInfo = "MTc2NjUzNDQwMDAwMA==";
|
|
|
64
64
|
*
|
|
65
65
|
* - [RichTreeView API](https://mui.com/x/api/tree-view/rich-tree-view/)
|
|
66
66
|
*/
|
|
67
|
-
const RichTreeViewPro = exports.RichTreeViewPro = /*#__PURE__*/React.forwardRef(function RichTreeViewPro(inProps,
|
|
67
|
+
const RichTreeViewPro = exports.RichTreeViewPro = /*#__PURE__*/React.forwardRef(function RichTreeViewPro(inProps, forwardedRef) {
|
|
68
68
|
const props = useThemeProps({
|
|
69
69
|
props: inProps,
|
|
70
70
|
name: 'MuiRichTreeViewPro'
|
|
71
71
|
});
|
|
72
|
-
const {
|
|
73
|
-
slots,
|
|
74
|
-
slotProps
|
|
75
|
-
} = props,
|
|
76
|
-
other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded);
|
|
77
72
|
(0, _xLicense.useLicenseVerifier)('x-tree-view-pro', releaseInfo);
|
|
78
73
|
if (process.env.NODE_ENV !== 'production') {
|
|
79
74
|
if (props.children != null) {
|
|
@@ -81,13 +76,16 @@ const RichTreeViewPro = exports.RichTreeViewPro = /*#__PURE__*/React.forwardRef(
|
|
|
81
76
|
}
|
|
82
77
|
}
|
|
83
78
|
const {
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
79
|
+
slots,
|
|
80
|
+
slotProps,
|
|
81
|
+
apiRef,
|
|
82
|
+
parameters,
|
|
83
|
+
forwardedProps
|
|
84
|
+
} = (0, _useExtractRichTreeViewProParameters.useExtractRichTreeViewProParameters)(props);
|
|
85
|
+
const store = (0, _internals.useTreeViewStore)(_RichTreeViewProStore.RichTreeViewProStore, parameters);
|
|
86
|
+
const ref = React.useRef(null);
|
|
87
|
+
const handleRef = (0, _useMergedRefs.useMergedRefs)(forwardedRef, ref);
|
|
88
|
+
const getRootProps = (0, _internals.useTreeViewRootProps)(store, forwardedProps, handleRef);
|
|
91
89
|
const classes = useUtilityClasses(props);
|
|
92
90
|
const Root = slots?.root ?? RichTreeViewProRoot;
|
|
93
91
|
const rootProps = (0, _useSlotProps.default)({
|
|
@@ -98,19 +96,24 @@ const RichTreeViewPro = exports.RichTreeViewPro = /*#__PURE__*/React.forwardRef(
|
|
|
98
96
|
ownerState: props
|
|
99
97
|
});
|
|
100
98
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_internals.TreeViewProvider, {
|
|
101
|
-
|
|
99
|
+
store: store,
|
|
102
100
|
classes: classes,
|
|
103
101
|
slots: slots,
|
|
104
102
|
slotProps: slotProps,
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
103
|
+
apiRef: apiRef,
|
|
104
|
+
rootRef: ref,
|
|
105
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_internals.TreeViewItemDepthContext.Provider, {
|
|
106
|
+
value: _internals.itemsSelectors.itemDepth,
|
|
107
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(Root, (0, _extends2.default)({}, rootProps, {
|
|
108
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_internals.RichTreeViewItems, {
|
|
109
|
+
slots: slots,
|
|
110
|
+
slotProps: slotProps
|
|
111
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_xLicense.Watermark, {
|
|
112
|
+
packageName: "x-tree-view-pro",
|
|
113
|
+
releaseInfo: releaseInfo
|
|
114
|
+
})]
|
|
115
|
+
}))
|
|
116
|
+
})
|
|
114
117
|
});
|
|
115
118
|
});
|
|
116
119
|
if (process.env.NODE_ENV !== "production") RichTreeViewPro.displayName = "RichTreeViewPro";
|
|
@@ -120,7 +123,7 @@ process.env.NODE_ENV !== "production" ? RichTreeViewPro.propTypes = {
|
|
|
120
123
|
// | To update them edit the TypeScript types and run "pnpm proptypes" |
|
|
121
124
|
// ----------------------------------------------------------------------
|
|
122
125
|
/**
|
|
123
|
-
* The ref object that allows Tree View manipulation. Can be instantiated with `
|
|
126
|
+
* The ref object that allows Tree View manipulation. Can be instantiated with `useRichTreeViewApiProRef()`.
|
|
124
127
|
*/
|
|
125
128
|
apiRef: _propTypes.default.shape({
|
|
126
129
|
current: _propTypes.default.shape({
|
|
@@ -2,9 +2,10 @@ import * as React from 'react';
|
|
|
2
2
|
import { Theme } from '@mui/material/styles';
|
|
3
3
|
import { SxProps } from '@mui/system/styleFunctionSx';
|
|
4
4
|
import { SlotComponentProps } from '@mui/utils/types';
|
|
5
|
-
import {
|
|
5
|
+
import { TreeViewValidItem } from '@mui/x-tree-view/models';
|
|
6
|
+
import { RichTreeViewItemsSlots, RichTreeViewItemsSlotProps, TreeViewSlots, TreeViewSlotProps, UseTreeViewStoreParameters, TreeViewPublicAPI } from '@mui/x-tree-view/internals';
|
|
6
7
|
import { RichTreeViewProClasses } from "./richTreeViewProClasses.js";
|
|
7
|
-
import {
|
|
8
|
+
import { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.js";
|
|
8
9
|
export interface RichTreeViewProSlots extends TreeViewSlots, RichTreeViewItemsSlots {
|
|
9
10
|
/**
|
|
10
11
|
* Element rendered at the root.
|
|
@@ -15,7 +16,7 @@ export interface RichTreeViewProSlots extends TreeViewSlots, RichTreeViewItemsSl
|
|
|
15
16
|
export interface RichTreeViewProSlotProps<R extends {}, Multiple extends boolean | undefined> extends TreeViewSlotProps, RichTreeViewItemsSlotProps {
|
|
16
17
|
root?: SlotComponentProps<'ul', {}, RichTreeViewProProps<R, Multiple>>;
|
|
17
18
|
}
|
|
18
|
-
export type RichTreeViewProApiRef = React.RefObject<Partial<TreeViewPublicAPI<
|
|
19
|
+
export type RichTreeViewProApiRef<R extends TreeViewValidItem<R> = any, Multiple extends boolean | undefined = any> = React.RefObject<Partial<TreeViewPublicAPI<RichTreeViewProStore<R, Multiple>>> | undefined>;
|
|
19
20
|
export interface RichTreeViewProPropsBase extends React.HTMLAttributes<HTMLUListElement> {
|
|
20
21
|
className?: string;
|
|
21
22
|
/**
|
|
@@ -27,7 +28,7 @@ export interface RichTreeViewProPropsBase extends React.HTMLAttributes<HTMLUList
|
|
|
27
28
|
*/
|
|
28
29
|
sx?: SxProps<Theme>;
|
|
29
30
|
}
|
|
30
|
-
export interface RichTreeViewProProps<R extends {}, Multiple extends boolean | undefined> extends
|
|
31
|
+
export interface RichTreeViewProProps<R extends {}, Multiple extends boolean | undefined> extends UseTreeViewStoreParameters<RichTreeViewProStore<R, Multiple>>, RichTreeViewProPropsBase {
|
|
31
32
|
/**
|
|
32
33
|
* Overridable component slots.
|
|
33
34
|
* @default {}
|
|
@@ -39,7 +40,7 @@ export interface RichTreeViewProProps<R extends {}, Multiple extends boolean | u
|
|
|
39
40
|
*/
|
|
40
41
|
slotProps?: RichTreeViewProSlotProps<R, Multiple>;
|
|
41
42
|
/**
|
|
42
|
-
* The ref object that allows Tree View manipulation. Can be instantiated with `
|
|
43
|
+
* The ref object that allows Tree View manipulation. Can be instantiated with `useRichTreeViewApiProRef()`.
|
|
43
44
|
*/
|
|
44
45
|
apiRef?: RichTreeViewProApiRef;
|
|
45
46
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
export * from "./RichTreeViewPro.js";
|
|
2
2
|
export * from "./richTreeViewProClasses.js";
|
|
3
|
-
export type { RichTreeViewProProps, RichTreeViewProPropsBase, RichTreeViewProSlots, RichTreeViewProSlotProps, RichTreeViewProApiRef } from "./RichTreeViewPro.types.js";
|
|
4
|
-
export type { RichTreeViewProPluginSignatures } from "./RichTreeViewPro.plugins.js";
|
|
3
|
+
export type { RichTreeViewProProps, RichTreeViewProPropsBase, RichTreeViewProSlots, RichTreeViewProSlotProps, RichTreeViewProApiRef } from "./RichTreeViewPro.types.js";
|
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { TreeViewValidItem } from '@mui/x-tree-view/models';
|
|
3
|
+
import { UseTreeViewStoreParameters } from '@mui/x-tree-view/internals';
|
|
4
|
+
import { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.js";
|
|
5
|
+
import { RichTreeViewProProps } from "./RichTreeViewPro.types.js";
|
|
6
|
+
export declare function useExtractRichTreeViewProParameters<R extends TreeViewValidItem<R>, Multiple extends boolean | undefined>(props: RichTreeViewProProps<R, Multiple>): {
|
|
7
|
+
apiRef: import("./RichTreeViewPro.types.js").RichTreeViewProApiRef<any, any> | undefined;
|
|
8
|
+
slots: import("./RichTreeViewPro.types.js").RichTreeViewProSlots | undefined;
|
|
9
|
+
slotProps: import("./RichTreeViewPro.types.js").RichTreeViewProSlotProps<R, Multiple> | undefined;
|
|
10
|
+
parameters: UseTreeViewStoreParameters<RichTreeViewProStore<R, Multiple>>;
|
|
11
|
+
forwardedProps: {
|
|
12
|
+
className?: string;
|
|
13
|
+
classes?: Partial<import("./richTreeViewProClasses.js").RichTreeViewProClasses>;
|
|
14
|
+
sx?: import("@mui/system").SxProps<import("@mui/material/styles").Theme>;
|
|
15
|
+
defaultChecked?: boolean | undefined;
|
|
16
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
17
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
18
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
19
|
+
accessKey?: string | undefined;
|
|
20
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
21
|
+
autoFocus?: boolean | undefined;
|
|
22
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
23
|
+
contextMenu?: string | undefined;
|
|
24
|
+
dir?: string | undefined;
|
|
25
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
26
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
27
|
+
hidden?: boolean | undefined;
|
|
28
|
+
lang?: string | undefined;
|
|
29
|
+
nonce?: string | undefined;
|
|
30
|
+
slot?: string | undefined;
|
|
31
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
32
|
+
style?: React.CSSProperties | undefined;
|
|
33
|
+
tabIndex?: number | undefined;
|
|
34
|
+
title?: string | undefined;
|
|
35
|
+
translate?: "yes" | "no" | undefined;
|
|
36
|
+
radioGroup?: string | undefined;
|
|
37
|
+
role?: React.AriaRole | undefined;
|
|
38
|
+
about?: string | undefined;
|
|
39
|
+
content?: string | undefined;
|
|
40
|
+
datatype?: string | undefined;
|
|
41
|
+
inlist?: any;
|
|
42
|
+
prefix?: string | undefined;
|
|
43
|
+
property?: string | undefined;
|
|
44
|
+
rel?: string | undefined;
|
|
45
|
+
resource?: string | undefined;
|
|
46
|
+
rev?: string | undefined;
|
|
47
|
+
typeof?: string | undefined;
|
|
48
|
+
vocab?: string | undefined;
|
|
49
|
+
autoCorrect?: string | undefined;
|
|
50
|
+
autoSave?: string | undefined;
|
|
51
|
+
color?: string | undefined;
|
|
52
|
+
itemProp?: string | undefined;
|
|
53
|
+
itemScope?: boolean | undefined;
|
|
54
|
+
itemType?: string | undefined;
|
|
55
|
+
itemID?: string | undefined;
|
|
56
|
+
itemRef?: string | undefined;
|
|
57
|
+
results?: number | undefined;
|
|
58
|
+
security?: string | undefined;
|
|
59
|
+
unselectable?: "on" | "off" | undefined;
|
|
60
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined;
|
|
61
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
62
|
+
popoverTarget?: string | undefined;
|
|
63
|
+
inert?: boolean | undefined;
|
|
64
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
65
|
+
is?: string | undefined;
|
|
66
|
+
exportparts?: string | undefined;
|
|
67
|
+
part?: string | undefined;
|
|
68
|
+
"aria-activedescendant"?: string | undefined;
|
|
69
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
70
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
71
|
+
"aria-braillelabel"?: string | undefined;
|
|
72
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
73
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
74
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
75
|
+
"aria-colcount"?: number | undefined;
|
|
76
|
+
"aria-colindex"?: number | undefined;
|
|
77
|
+
"aria-colindextext"?: string | undefined;
|
|
78
|
+
"aria-colspan"?: number | undefined;
|
|
79
|
+
"aria-controls"?: string | undefined;
|
|
80
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
81
|
+
"aria-describedby"?: string | undefined;
|
|
82
|
+
"aria-description"?: string | undefined;
|
|
83
|
+
"aria-details"?: string | undefined;
|
|
84
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
85
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
86
|
+
"aria-errormessage"?: string | undefined;
|
|
87
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
88
|
+
"aria-flowto"?: string | undefined;
|
|
89
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
90
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
91
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
92
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
93
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
94
|
+
"aria-label"?: string | undefined;
|
|
95
|
+
"aria-labelledby"?: string | undefined;
|
|
96
|
+
"aria-level"?: number | undefined;
|
|
97
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
98
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
99
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
100
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
101
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
102
|
+
"aria-owns"?: string | undefined;
|
|
103
|
+
"aria-placeholder"?: string | undefined;
|
|
104
|
+
"aria-posinset"?: number | undefined;
|
|
105
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
106
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
107
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
108
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
109
|
+
"aria-roledescription"?: string | undefined;
|
|
110
|
+
"aria-rowcount"?: number | undefined;
|
|
111
|
+
"aria-rowindex"?: number | undefined;
|
|
112
|
+
"aria-rowindextext"?: string | undefined;
|
|
113
|
+
"aria-rowspan"?: number | undefined;
|
|
114
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
115
|
+
"aria-setsize"?: number | undefined;
|
|
116
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
117
|
+
"aria-valuemax"?: number | undefined;
|
|
118
|
+
"aria-valuemin"?: number | undefined;
|
|
119
|
+
"aria-valuenow"?: number | undefined;
|
|
120
|
+
"aria-valuetext"?: string | undefined;
|
|
121
|
+
children?: React.ReactNode | undefined;
|
|
122
|
+
dangerouslySetInnerHTML?: {
|
|
123
|
+
__html: string | TrustedHTML;
|
|
124
|
+
} | undefined;
|
|
125
|
+
onCopy?: React.ClipboardEventHandler<HTMLUListElement> | undefined;
|
|
126
|
+
onCopyCapture?: React.ClipboardEventHandler<HTMLUListElement> | undefined;
|
|
127
|
+
onCut?: React.ClipboardEventHandler<HTMLUListElement> | undefined;
|
|
128
|
+
onCutCapture?: React.ClipboardEventHandler<HTMLUListElement> | undefined;
|
|
129
|
+
onPaste?: React.ClipboardEventHandler<HTMLUListElement> | undefined;
|
|
130
|
+
onPasteCapture?: React.ClipboardEventHandler<HTMLUListElement> | undefined;
|
|
131
|
+
onCompositionEnd?: React.CompositionEventHandler<HTMLUListElement> | undefined;
|
|
132
|
+
onCompositionEndCapture?: React.CompositionEventHandler<HTMLUListElement> | undefined;
|
|
133
|
+
onCompositionStart?: React.CompositionEventHandler<HTMLUListElement> | undefined;
|
|
134
|
+
onCompositionStartCapture?: React.CompositionEventHandler<HTMLUListElement> | undefined;
|
|
135
|
+
onCompositionUpdate?: React.CompositionEventHandler<HTMLUListElement> | undefined;
|
|
136
|
+
onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLUListElement> | undefined;
|
|
137
|
+
onFocus?: React.FocusEventHandler<HTMLUListElement> | undefined;
|
|
138
|
+
onFocusCapture?: React.FocusEventHandler<HTMLUListElement> | undefined;
|
|
139
|
+
onBlur?: React.FocusEventHandler<HTMLUListElement> | undefined;
|
|
140
|
+
onBlurCapture?: React.FocusEventHandler<HTMLUListElement> | undefined;
|
|
141
|
+
onChange?: React.FormEventHandler<HTMLUListElement> | undefined;
|
|
142
|
+
onChangeCapture?: React.FormEventHandler<HTMLUListElement> | undefined;
|
|
143
|
+
onBeforeInput?: React.InputEventHandler<HTMLUListElement> | undefined;
|
|
144
|
+
onBeforeInputCapture?: React.FormEventHandler<HTMLUListElement> | undefined;
|
|
145
|
+
onInput?: React.FormEventHandler<HTMLUListElement> | undefined;
|
|
146
|
+
onInputCapture?: React.FormEventHandler<HTMLUListElement> | undefined;
|
|
147
|
+
onReset?: React.FormEventHandler<HTMLUListElement> | undefined;
|
|
148
|
+
onResetCapture?: React.FormEventHandler<HTMLUListElement> | undefined;
|
|
149
|
+
onSubmit?: React.FormEventHandler<HTMLUListElement> | undefined;
|
|
150
|
+
onSubmitCapture?: React.FormEventHandler<HTMLUListElement> | undefined;
|
|
151
|
+
onInvalid?: React.FormEventHandler<HTMLUListElement> | undefined;
|
|
152
|
+
onInvalidCapture?: React.FormEventHandler<HTMLUListElement> | undefined;
|
|
153
|
+
onLoad?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
154
|
+
onLoadCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
155
|
+
onError?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
156
|
+
onErrorCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
157
|
+
onKeyDown?: React.KeyboardEventHandler<HTMLUListElement> | undefined;
|
|
158
|
+
onKeyDownCapture?: React.KeyboardEventHandler<HTMLUListElement> | undefined;
|
|
159
|
+
onKeyPress?: React.KeyboardEventHandler<HTMLUListElement> | undefined;
|
|
160
|
+
onKeyPressCapture?: React.KeyboardEventHandler<HTMLUListElement> | undefined;
|
|
161
|
+
onKeyUp?: React.KeyboardEventHandler<HTMLUListElement> | undefined;
|
|
162
|
+
onKeyUpCapture?: React.KeyboardEventHandler<HTMLUListElement> | undefined;
|
|
163
|
+
onAbort?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
164
|
+
onAbortCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
165
|
+
onCanPlay?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
166
|
+
onCanPlayCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
167
|
+
onCanPlayThrough?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
168
|
+
onCanPlayThroughCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
169
|
+
onDurationChange?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
170
|
+
onDurationChangeCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
171
|
+
onEmptied?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
172
|
+
onEmptiedCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
173
|
+
onEncrypted?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
174
|
+
onEncryptedCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
175
|
+
onEnded?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
176
|
+
onEndedCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
177
|
+
onLoadedData?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
178
|
+
onLoadedDataCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
179
|
+
onLoadedMetadata?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
180
|
+
onLoadedMetadataCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
181
|
+
onLoadStart?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
182
|
+
onLoadStartCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
183
|
+
onPause?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
184
|
+
onPauseCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
185
|
+
onPlay?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
186
|
+
onPlayCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
187
|
+
onPlaying?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
188
|
+
onPlayingCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
189
|
+
onProgress?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
190
|
+
onProgressCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
191
|
+
onRateChange?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
192
|
+
onRateChangeCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
193
|
+
onSeeked?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
194
|
+
onSeekedCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
195
|
+
onSeeking?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
196
|
+
onSeekingCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
197
|
+
onStalled?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
198
|
+
onStalledCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
199
|
+
onSuspend?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
200
|
+
onSuspendCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
201
|
+
onTimeUpdate?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
202
|
+
onTimeUpdateCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
203
|
+
onVolumeChange?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
204
|
+
onVolumeChangeCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
205
|
+
onWaiting?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
206
|
+
onWaitingCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
207
|
+
onAuxClick?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
208
|
+
onAuxClickCapture?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
209
|
+
onClick?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
210
|
+
onClickCapture?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
211
|
+
onContextMenu?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
212
|
+
onContextMenuCapture?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
213
|
+
onDoubleClick?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
214
|
+
onDoubleClickCapture?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
215
|
+
onDrag?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
216
|
+
onDragCapture?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
217
|
+
onDragEnd?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
218
|
+
onDragEndCapture?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
219
|
+
onDragEnter?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
220
|
+
onDragEnterCapture?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
221
|
+
onDragExit?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
222
|
+
onDragExitCapture?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
223
|
+
onDragLeave?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
224
|
+
onDragLeaveCapture?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
225
|
+
onDragOver?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
226
|
+
onDragOverCapture?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
227
|
+
onDragStart?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
228
|
+
onDragStartCapture?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
229
|
+
onDrop?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
230
|
+
onDropCapture?: React.DragEventHandler<HTMLUListElement> | undefined;
|
|
231
|
+
onMouseDown?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
232
|
+
onMouseDownCapture?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
233
|
+
onMouseEnter?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
234
|
+
onMouseLeave?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
235
|
+
onMouseMove?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
236
|
+
onMouseMoveCapture?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
237
|
+
onMouseOut?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
238
|
+
onMouseOutCapture?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
239
|
+
onMouseOver?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
240
|
+
onMouseOverCapture?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
241
|
+
onMouseUp?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
242
|
+
onMouseUpCapture?: React.MouseEventHandler<HTMLUListElement> | undefined;
|
|
243
|
+
onSelect?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
244
|
+
onSelectCapture?: React.ReactEventHandler<HTMLUListElement> | undefined;
|
|
245
|
+
onTouchCancel?: React.TouchEventHandler<HTMLUListElement> | undefined;
|
|
246
|
+
onTouchCancelCapture?: React.TouchEventHandler<HTMLUListElement> | undefined;
|
|
247
|
+
onTouchEnd?: React.TouchEventHandler<HTMLUListElement> | undefined;
|
|
248
|
+
onTouchEndCapture?: React.TouchEventHandler<HTMLUListElement> | undefined;
|
|
249
|
+
onTouchMove?: React.TouchEventHandler<HTMLUListElement> | undefined;
|
|
250
|
+
onTouchMoveCapture?: React.TouchEventHandler<HTMLUListElement> | undefined;
|
|
251
|
+
onTouchStart?: React.TouchEventHandler<HTMLUListElement> | undefined;
|
|
252
|
+
onTouchStartCapture?: React.TouchEventHandler<HTMLUListElement> | undefined;
|
|
253
|
+
onPointerDown?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
254
|
+
onPointerDownCapture?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
255
|
+
onPointerMove?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
256
|
+
onPointerMoveCapture?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
257
|
+
onPointerUp?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
258
|
+
onPointerUpCapture?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
259
|
+
onPointerCancel?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
260
|
+
onPointerCancelCapture?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
261
|
+
onPointerEnter?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
262
|
+
onPointerLeave?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
263
|
+
onPointerOver?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
264
|
+
onPointerOverCapture?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
265
|
+
onPointerOut?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
266
|
+
onPointerOutCapture?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
267
|
+
onGotPointerCapture?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
268
|
+
onGotPointerCaptureCapture?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
269
|
+
onLostPointerCapture?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
270
|
+
onLostPointerCaptureCapture?: React.PointerEventHandler<HTMLUListElement> | undefined;
|
|
271
|
+
onScroll?: React.UIEventHandler<HTMLUListElement> | undefined;
|
|
272
|
+
onScrollCapture?: React.UIEventHandler<HTMLUListElement> | undefined;
|
|
273
|
+
onScrollEnd?: React.UIEventHandler<HTMLUListElement> | undefined;
|
|
274
|
+
onScrollEndCapture?: React.UIEventHandler<HTMLUListElement> | undefined;
|
|
275
|
+
onWheel?: React.WheelEventHandler<HTMLUListElement> | undefined;
|
|
276
|
+
onWheelCapture?: React.WheelEventHandler<HTMLUListElement> | undefined;
|
|
277
|
+
onAnimationStart?: React.AnimationEventHandler<HTMLUListElement> | undefined;
|
|
278
|
+
onAnimationStartCapture?: React.AnimationEventHandler<HTMLUListElement> | undefined;
|
|
279
|
+
onAnimationEnd?: React.AnimationEventHandler<HTMLUListElement> | undefined;
|
|
280
|
+
onAnimationEndCapture?: React.AnimationEventHandler<HTMLUListElement> | undefined;
|
|
281
|
+
onAnimationIteration?: React.AnimationEventHandler<HTMLUListElement> | undefined;
|
|
282
|
+
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLUListElement> | undefined;
|
|
283
|
+
onToggle?: React.ToggleEventHandler<HTMLUListElement> | undefined;
|
|
284
|
+
onBeforeToggle?: React.ToggleEventHandler<HTMLUListElement> | undefined;
|
|
285
|
+
onTransitionCancel?: React.TransitionEventHandler<HTMLUListElement> | undefined;
|
|
286
|
+
onTransitionCancelCapture?: React.TransitionEventHandler<HTMLUListElement> | undefined;
|
|
287
|
+
onTransitionEnd?: React.TransitionEventHandler<HTMLUListElement> | undefined;
|
|
288
|
+
onTransitionEndCapture?: React.TransitionEventHandler<HTMLUListElement> | undefined;
|
|
289
|
+
onTransitionRun?: React.TransitionEventHandler<HTMLUListElement> | undefined;
|
|
290
|
+
onTransitionRunCapture?: React.TransitionEventHandler<HTMLUListElement> | undefined;
|
|
291
|
+
onTransitionStart?: React.TransitionEventHandler<HTMLUListElement> | undefined;
|
|
292
|
+
onTransitionStartCapture?: React.TransitionEventHandler<HTMLUListElement> | undefined;
|
|
293
|
+
};
|
|
294
|
+
};
|