@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
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.useExtractRichTreeViewProParameters = useExtractRichTreeViewProParameters;
|
|
9
|
+
var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutPropertiesLoose"));
|
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
const _excluded = ["apiRef", "slots", "slotProps", "disabledItemsFocusable", "items", "isItemDisabled", "isItemSelectionDisabled", "getItemLabel", "getItemChildren", "getItemId", "onItemClick", "itemChildrenIndentation", "id", "expandedItems", "defaultExpandedItems", "onExpandedItemsChange", "onItemExpansionToggle", "expansionTrigger", "disableSelection", "selectedItems", "defaultSelectedItems", "multiSelect", "checkboxSelection", "selectionPropagation", "onSelectedItemsChange", "onItemSelectionToggle", "onItemFocus", "onItemLabelChange", "isItemEditable", "dataSource", "dataSourceCache", "itemsReordering", "isItemReorderable", "canMoveItemToNewPosition", "onItemPositionChange"];
|
|
12
|
+
function useExtractRichTreeViewProParameters(props) {
|
|
13
|
+
const {
|
|
14
|
+
// Props for Provider
|
|
15
|
+
apiRef,
|
|
16
|
+
slots,
|
|
17
|
+
slotProps,
|
|
18
|
+
// Shared parameters
|
|
19
|
+
disabledItemsFocusable,
|
|
20
|
+
items,
|
|
21
|
+
isItemDisabled,
|
|
22
|
+
isItemSelectionDisabled,
|
|
23
|
+
getItemLabel,
|
|
24
|
+
getItemChildren,
|
|
25
|
+
getItemId,
|
|
26
|
+
onItemClick,
|
|
27
|
+
itemChildrenIndentation,
|
|
28
|
+
id,
|
|
29
|
+
expandedItems,
|
|
30
|
+
defaultExpandedItems,
|
|
31
|
+
onExpandedItemsChange,
|
|
32
|
+
onItemExpansionToggle,
|
|
33
|
+
expansionTrigger,
|
|
34
|
+
disableSelection,
|
|
35
|
+
selectedItems,
|
|
36
|
+
defaultSelectedItems,
|
|
37
|
+
multiSelect,
|
|
38
|
+
checkboxSelection,
|
|
39
|
+
selectionPropagation,
|
|
40
|
+
onSelectedItemsChange,
|
|
41
|
+
onItemSelectionToggle,
|
|
42
|
+
onItemFocus,
|
|
43
|
+
// RichTreeViewStore parameters
|
|
44
|
+
onItemLabelChange,
|
|
45
|
+
isItemEditable,
|
|
46
|
+
// RichTreeViewProStore parameters
|
|
47
|
+
dataSource,
|
|
48
|
+
dataSourceCache,
|
|
49
|
+
itemsReordering,
|
|
50
|
+
isItemReorderable,
|
|
51
|
+
canMoveItemToNewPosition,
|
|
52
|
+
onItemPositionChange
|
|
53
|
+
|
|
54
|
+
// Forwarded props
|
|
55
|
+
} = props,
|
|
56
|
+
forwardedProps = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded);
|
|
57
|
+
const parameters = React.useMemo(() => ({
|
|
58
|
+
// Shared parameters
|
|
59
|
+
disabledItemsFocusable,
|
|
60
|
+
items,
|
|
61
|
+
isItemDisabled,
|
|
62
|
+
isItemSelectionDisabled,
|
|
63
|
+
getItemLabel,
|
|
64
|
+
getItemChildren,
|
|
65
|
+
getItemId,
|
|
66
|
+
onItemClick,
|
|
67
|
+
itemChildrenIndentation,
|
|
68
|
+
id,
|
|
69
|
+
expandedItems,
|
|
70
|
+
defaultExpandedItems,
|
|
71
|
+
onExpandedItemsChange,
|
|
72
|
+
onItemExpansionToggle,
|
|
73
|
+
expansionTrigger,
|
|
74
|
+
disableSelection,
|
|
75
|
+
selectedItems,
|
|
76
|
+
defaultSelectedItems,
|
|
77
|
+
multiSelect,
|
|
78
|
+
checkboxSelection,
|
|
79
|
+
selectionPropagation,
|
|
80
|
+
onSelectedItemsChange,
|
|
81
|
+
onItemSelectionToggle,
|
|
82
|
+
onItemFocus,
|
|
83
|
+
// RichTreeViewStore parameters
|
|
84
|
+
onItemLabelChange,
|
|
85
|
+
isItemEditable,
|
|
86
|
+
// RichTreeViewProStore parameters
|
|
87
|
+
dataSource,
|
|
88
|
+
dataSourceCache,
|
|
89
|
+
itemsReordering,
|
|
90
|
+
isItemReorderable,
|
|
91
|
+
canMoveItemToNewPosition,
|
|
92
|
+
onItemPositionChange
|
|
93
|
+
}), [
|
|
94
|
+
// Shared parameters
|
|
95
|
+
disabledItemsFocusable, items, isItemDisabled, isItemSelectionDisabled, getItemLabel, getItemChildren, getItemId, onItemClick, itemChildrenIndentation, id, expandedItems, defaultExpandedItems, onExpandedItemsChange, onItemExpansionToggle, expansionTrigger, disableSelection, selectedItems, defaultSelectedItems, multiSelect, checkboxSelection, selectionPropagation, onSelectedItemsChange, onItemSelectionToggle, onItemFocus,
|
|
96
|
+
// RichTreeViewStore parameters
|
|
97
|
+
onItemLabelChange, isItemEditable,
|
|
98
|
+
// RichTreeViewProStore parameters
|
|
99
|
+
dataSource, dataSourceCache, itemsReordering, isItemReorderable, canMoveItemToNewPosition, onItemPositionChange]);
|
|
100
|
+
return {
|
|
101
|
+
apiRef,
|
|
102
|
+
slots,
|
|
103
|
+
slotProps,
|
|
104
|
+
parameters,
|
|
105
|
+
forwardedProps
|
|
106
|
+
};
|
|
107
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
|
|
3
3
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
|
-
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
5
|
-
const _excluded = ["slots", "slotProps"];
|
|
6
4
|
import * as React from 'react';
|
|
7
5
|
import PropTypes from 'prop-types';
|
|
6
|
+
import { useMergedRefs } from '@base-ui/utils/useMergedRefs';
|
|
8
7
|
import composeClasses from '@mui/utils/composeClasses';
|
|
9
8
|
import { useLicenseVerifier, Watermark } from '@mui/x-license';
|
|
10
9
|
import useSlotProps from '@mui/utils/useSlotProps';
|
|
11
|
-
import {
|
|
10
|
+
import { TreeViewProvider, RichTreeViewItems, TreeViewItemDepthContext, itemsSelectors, useTreeViewRootProps, useTreeViewStore } from '@mui/x-tree-view/internals';
|
|
12
11
|
import { warnOnce } from '@mui/x-internals/warning';
|
|
13
12
|
import { styled, createUseThemeProps } from "../internals/zero-styled/index.js";
|
|
14
13
|
import { getRichTreeViewProUtilityClass } from "./richTreeViewProClasses.js";
|
|
15
|
-
import {
|
|
14
|
+
import { useExtractRichTreeViewProParameters } from "./useExtractRichTreeViewProParameters.js";
|
|
15
|
+
import { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.js";
|
|
16
16
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
17
17
|
const useThemeProps = createUseThemeProps('MuiRichTreeViewPro');
|
|
18
18
|
const useUtilityClasses = ownerState => {
|
|
@@ -45,7 +45,7 @@ export const RichTreeViewProRoot = styled('ul', {
|
|
|
45
45
|
outline: 0,
|
|
46
46
|
position: 'relative'
|
|
47
47
|
});
|
|
48
|
-
const releaseInfo = "
|
|
48
|
+
const releaseInfo = "MTc2NzgzMDQwMDAwMA==";
|
|
49
49
|
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
@@ -57,16 +57,11 @@ const releaseInfo = "MTc2NjUzNDQwMDAwMA==";
|
|
|
57
57
|
*
|
|
58
58
|
* - [RichTreeView API](https://mui.com/x/api/tree-view/rich-tree-view/)
|
|
59
59
|
*/
|
|
60
|
-
const RichTreeViewPro = /*#__PURE__*/React.forwardRef(function RichTreeViewPro(inProps,
|
|
60
|
+
const RichTreeViewPro = /*#__PURE__*/React.forwardRef(function RichTreeViewPro(inProps, forwardedRef) {
|
|
61
61
|
const props = useThemeProps({
|
|
62
62
|
props: inProps,
|
|
63
63
|
name: 'MuiRichTreeViewPro'
|
|
64
64
|
});
|
|
65
|
-
const {
|
|
66
|
-
slots,
|
|
67
|
-
slotProps
|
|
68
|
-
} = props,
|
|
69
|
-
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
70
65
|
useLicenseVerifier('x-tree-view-pro', releaseInfo);
|
|
71
66
|
if (process.env.NODE_ENV !== 'production') {
|
|
72
67
|
if (props.children != null) {
|
|
@@ -74,13 +69,16 @@ const RichTreeViewPro = /*#__PURE__*/React.forwardRef(function RichTreeViewPro(i
|
|
|
74
69
|
}
|
|
75
70
|
}
|
|
76
71
|
const {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
72
|
+
slots,
|
|
73
|
+
slotProps,
|
|
74
|
+
apiRef,
|
|
75
|
+
parameters,
|
|
76
|
+
forwardedProps
|
|
77
|
+
} = useExtractRichTreeViewProParameters(props);
|
|
78
|
+
const store = useTreeViewStore(RichTreeViewProStore, parameters);
|
|
79
|
+
const ref = React.useRef(null);
|
|
80
|
+
const handleRef = useMergedRefs(forwardedRef, ref);
|
|
81
|
+
const getRootProps = useTreeViewRootProps(store, forwardedProps, handleRef);
|
|
84
82
|
const classes = useUtilityClasses(props);
|
|
85
83
|
const Root = slots?.root ?? RichTreeViewProRoot;
|
|
86
84
|
const rootProps = useSlotProps({
|
|
@@ -91,19 +89,24 @@ const RichTreeViewPro = /*#__PURE__*/React.forwardRef(function RichTreeViewPro(i
|
|
|
91
89
|
ownerState: props
|
|
92
90
|
});
|
|
93
91
|
return /*#__PURE__*/_jsx(TreeViewProvider, {
|
|
94
|
-
|
|
92
|
+
store: store,
|
|
95
93
|
classes: classes,
|
|
96
94
|
slots: slots,
|
|
97
95
|
slotProps: slotProps,
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
96
|
+
apiRef: apiRef,
|
|
97
|
+
rootRef: ref,
|
|
98
|
+
children: /*#__PURE__*/_jsx(TreeViewItemDepthContext.Provider, {
|
|
99
|
+
value: itemsSelectors.itemDepth,
|
|
100
|
+
children: /*#__PURE__*/_jsxs(Root, _extends({}, rootProps, {
|
|
101
|
+
children: [/*#__PURE__*/_jsx(RichTreeViewItems, {
|
|
102
|
+
slots: slots,
|
|
103
|
+
slotProps: slotProps
|
|
104
|
+
}), /*#__PURE__*/_jsx(Watermark, {
|
|
105
|
+
packageName: "x-tree-view-pro",
|
|
106
|
+
releaseInfo: releaseInfo
|
|
107
|
+
})]
|
|
108
|
+
}))
|
|
109
|
+
})
|
|
107
110
|
});
|
|
108
111
|
});
|
|
109
112
|
if (process.env.NODE_ENV !== "production") RichTreeViewPro.displayName = "RichTreeViewPro";
|
|
@@ -113,7 +116,7 @@ process.env.NODE_ENV !== "production" ? RichTreeViewPro.propTypes = {
|
|
|
113
116
|
// | To update them edit the TypeScript types and run "pnpm proptypes" |
|
|
114
117
|
// ----------------------------------------------------------------------
|
|
115
118
|
/**
|
|
116
|
-
* The ref object that allows Tree View manipulation. Can be instantiated with `
|
|
119
|
+
* The ref object that allows Tree View manipulation. Can be instantiated with `useRichTreeViewApiProRef()`.
|
|
117
120
|
*/
|
|
118
121
|
apiRef: PropTypes.shape({
|
|
119
122
|
current: PropTypes.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
|
+
};
|