@hitachivantara/uikit-react-core 5.36.2 → 5.36.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/Card/Header/Header.cjs +1 -0
- package/dist/cjs/components/Card/Header/Header.cjs.map +1 -1
- package/dist/cjs/components/Card/Header/Header.styles.cjs +6 -10
- package/dist/cjs/components/Card/Header/Header.styles.cjs.map +1 -1
- package/dist/cjs/components/Section/Section.cjs +4 -3
- package/dist/cjs/components/Section/Section.cjs.map +1 -1
- package/dist/cjs/components/Table/hooks/usePagination.cjs +1 -1
- package/dist/cjs/components/Table/hooks/usePagination.cjs.map +1 -1
- package/dist/cjs/components/TreeView/TreeItem/DefaultContent.cjs +24 -8
- package/dist/cjs/components/TreeView/TreeItem/DefaultContent.cjs.map +1 -1
- package/dist/cjs/components/TreeView/TreeItem/TreeItem.cjs +7 -6
- package/dist/cjs/components/TreeView/TreeItem/TreeItem.cjs.map +1 -1
- package/dist/cjs/components/TreeView/TreeItem/useHvTreeItem.cjs +2 -3
- package/dist/cjs/components/TreeView/TreeItem/useHvTreeItem.cjs.map +1 -1
- package/dist/cjs/components/TreeView/TreeView.cjs +4 -4
- package/dist/cjs/components/TreeView/TreeView.cjs.map +1 -1
- package/dist/cjs/components/TreeView/internals/DescendantProvider.cjs +146 -0
- package/dist/cjs/components/TreeView/internals/DescendantProvider.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/TreeViewProvider.cjs +34 -0
- package/dist/cjs/components/TreeView/internals/TreeViewProvider.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/corePlugins.cjs +6 -0
- package/dist/cjs/components/TreeView/internals/corePlugins.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/hooks/plugins/defaultPlugins.cjs +11 -0
- package/dist/cjs/components/TreeView/internals/hooks/plugins/defaultPlugins.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/hooks/plugins/useTreeViewContextValueBuilder.cjs +28 -0
- package/dist/cjs/components/TreeView/internals/hooks/plugins/useTreeViewContextValueBuilder.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/hooks/plugins/useTreeViewExpansion.cjs +80 -0
- package/dist/cjs/components/TreeView/internals/hooks/plugins/useTreeViewExpansion.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/hooks/plugins/useTreeViewFocus.cjs +105 -0
- package/dist/cjs/components/TreeView/internals/hooks/plugins/useTreeViewFocus.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/hooks/plugins/useTreeViewKeyboardNavigation.cjs +237 -0
- package/dist/cjs/components/TreeView/internals/hooks/plugins/useTreeViewKeyboardNavigation.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/hooks/plugins/useTreeViewNodes.cjs +82 -0
- package/dist/cjs/components/TreeView/internals/hooks/plugins/useTreeViewNodes.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/hooks/plugins/useTreeViewSelection.cjs +232 -0
- package/dist/cjs/components/TreeView/internals/hooks/plugins/useTreeViewSelection.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/hooks/useInstanceEventHandler.cjs +93 -0
- package/dist/cjs/components/TreeView/internals/hooks/useInstanceEventHandler.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/hooks/useTreeView.cjs +87 -0
- package/dist/cjs/components/TreeView/internals/hooks/useTreeView.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/hooks/useTreeViewInstanceEvents.cjs +52 -0
- package/dist/cjs/components/TreeView/internals/hooks/useTreeViewInstanceEvents.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/hooks/useTreeViewModels.cjs +58 -0
- package/dist/cjs/components/TreeView/internals/hooks/useTreeViewModels.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/hooks/utils.cjs +47 -0
- package/dist/cjs/components/TreeView/internals/hooks/utils.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/utils/EventManager.cjs +62 -0
- package/dist/cjs/components/TreeView/internals/utils/EventManager.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/utils/FinalizationRegistryBasedCleanupTracking.cjs +22 -0
- package/dist/cjs/components/TreeView/internals/utils/FinalizationRegistryBasedCleanupTracking.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/utils/TimerBasedCleanupTracking.cjs +41 -0
- package/dist/cjs/components/TreeView/internals/utils/TimerBasedCleanupTracking.cjs.map +1 -0
- package/dist/cjs/components/TreeView/internals/utils/publishTreeViewEvent.cjs +7 -0
- package/dist/cjs/components/TreeView/internals/utils/publishTreeViewEvent.cjs.map +1 -0
- package/dist/esm/components/Card/Header/Header.js +1 -0
- package/dist/esm/components/Card/Header/Header.js.map +1 -1
- package/dist/esm/components/Card/Header/Header.styles.js +6 -10
- package/dist/esm/components/Card/Header/Header.styles.js.map +1 -1
- package/dist/esm/components/Section/Section.js +4 -3
- package/dist/esm/components/Section/Section.js.map +1 -1
- package/dist/esm/components/Table/hooks/usePagination.js +1 -1
- package/dist/esm/components/Table/hooks/usePagination.js.map +1 -1
- package/dist/esm/components/TreeView/TreeItem/DefaultContent.js +18 -2
- package/dist/esm/components/TreeView/TreeItem/DefaultContent.js.map +1 -1
- package/dist/esm/components/TreeView/TreeItem/TreeItem.js +3 -4
- package/dist/esm/components/TreeView/TreeItem/TreeItem.js.map +1 -1
- package/dist/esm/components/TreeView/TreeItem/useHvTreeItem.js +1 -2
- package/dist/esm/components/TreeView/TreeItem/useHvTreeItem.js.map +1 -1
- package/dist/esm/components/TreeView/TreeView.js +4 -4
- package/dist/esm/components/TreeView/TreeView.js.map +1 -1
- package/dist/esm/components/TreeView/internals/DescendantProvider.js +127 -0
- package/dist/esm/components/TreeView/internals/DescendantProvider.js.map +1 -0
- package/dist/esm/components/TreeView/internals/TreeViewProvider.js +34 -0
- package/dist/esm/components/TreeView/internals/TreeViewProvider.js.map +1 -0
- package/dist/esm/components/TreeView/internals/corePlugins.js +6 -0
- package/dist/esm/components/TreeView/internals/corePlugins.js.map +1 -0
- package/dist/esm/components/TreeView/internals/hooks/plugins/defaultPlugins.js +11 -0
- package/dist/esm/components/TreeView/internals/hooks/plugins/defaultPlugins.js.map +1 -0
- package/dist/esm/components/TreeView/internals/hooks/plugins/useTreeViewContextValueBuilder.js +28 -0
- package/dist/esm/components/TreeView/internals/hooks/plugins/useTreeViewContextValueBuilder.js.map +1 -0
- package/dist/esm/components/TreeView/internals/hooks/plugins/useTreeViewExpansion.js +61 -0
- package/dist/esm/components/TreeView/internals/hooks/plugins/useTreeViewExpansion.js.map +1 -0
- package/dist/esm/components/TreeView/internals/hooks/plugins/useTreeViewFocus.js +86 -0
- package/dist/esm/components/TreeView/internals/hooks/plugins/useTreeViewFocus.js.map +1 -0
- package/dist/esm/components/TreeView/internals/hooks/plugins/useTreeViewKeyboardNavigation.js +218 -0
- package/dist/esm/components/TreeView/internals/hooks/plugins/useTreeViewKeyboardNavigation.js.map +1 -0
- package/dist/esm/components/TreeView/internals/hooks/plugins/useTreeViewNodes.js +63 -0
- package/dist/esm/components/TreeView/internals/hooks/plugins/useTreeViewNodes.js.map +1 -0
- package/dist/esm/components/TreeView/internals/hooks/plugins/useTreeViewSelection.js +213 -0
- package/dist/esm/components/TreeView/internals/hooks/plugins/useTreeViewSelection.js.map +1 -0
- package/dist/esm/components/TreeView/internals/hooks/useInstanceEventHandler.js +74 -0
- package/dist/esm/components/TreeView/internals/hooks/useInstanceEventHandler.js.map +1 -0
- package/dist/esm/components/TreeView/internals/hooks/useTreeView.js +68 -0
- package/dist/esm/components/TreeView/internals/hooks/useTreeView.js.map +1 -0
- package/dist/esm/components/TreeView/internals/hooks/useTreeViewInstanceEvents.js +33 -0
- package/dist/esm/components/TreeView/internals/hooks/useTreeViewInstanceEvents.js.map +1 -0
- package/dist/esm/components/TreeView/internals/hooks/useTreeViewModels.js +39 -0
- package/dist/esm/components/TreeView/internals/hooks/useTreeViewModels.js.map +1 -0
- package/dist/esm/components/TreeView/internals/hooks/utils.js +47 -0
- package/dist/esm/components/TreeView/internals/hooks/utils.js.map +1 -0
- package/dist/esm/components/TreeView/internals/utils/EventManager.js +62 -0
- package/dist/esm/components/TreeView/internals/utils/EventManager.js.map +1 -0
- package/dist/esm/components/TreeView/internals/utils/FinalizationRegistryBasedCleanupTracking.js +22 -0
- package/dist/esm/components/TreeView/internals/utils/FinalizationRegistryBasedCleanupTracking.js.map +1 -0
- package/dist/esm/components/TreeView/internals/utils/TimerBasedCleanupTracking.js +41 -0
- package/dist/esm/components/TreeView/internals/utils/TimerBasedCleanupTracking.js.map +1 -0
- package/dist/esm/components/TreeView/internals/utils/publishTreeViewEvent.js +7 -0
- package/dist/esm/components/TreeView/internals/utils/publishTreeViewEvent.js.map +1 -0
- package/dist/types/index.d.ts +791 -589
- package/package.json +5 -6
- package/dist/cjs/components/TreeView/internals.cjs +0 -30
- package/dist/cjs/components/TreeView/internals.cjs.map +0 -1
- package/dist/esm/components/TreeView/internals.js +0 -15
- package/dist/esm/components/TreeView/internals.js.map +0 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -13,16 +13,15 @@ import { ChipProps } from '@mui/material/Chip';
|
|
|
13
13
|
import { ClassNameMap } from '@mui/material';
|
|
14
14
|
import { ColumnInstance } from 'react-table';
|
|
15
15
|
import { ColumnInterface } from 'react-table';
|
|
16
|
-
import
|
|
17
|
-
import
|
|
16
|
+
import { CombinedClassKey } from 'notistack';
|
|
17
|
+
import { ComponentProps } from 'react';
|
|
18
18
|
import { ContainerProps } from '@mui/material/Container';
|
|
19
|
-
import
|
|
19
|
+
import { Context } from 'react';
|
|
20
20
|
import { CSSInterpolation } from '@emotion/serialize';
|
|
21
21
|
import { CSSInterpolation as CSSInterpolation_2 } from '@emotion/css';
|
|
22
22
|
import { CSSProperties } from 'react';
|
|
23
23
|
import { defaultCacheKey } from '@hitachivantara/uikit-react-shared';
|
|
24
24
|
import { defaultEmotionCache } from '@hitachivantara/uikit-react-shared';
|
|
25
|
-
import { DefaultTreeViewPluginParameters } from '@mui/x-tree-view/internals/plugins/defaultPlugins';
|
|
26
25
|
import { DialogActionsProps } from '@mui/material/DialogActions';
|
|
27
26
|
import { DialogContentProps } from '@mui/material/DialogContent';
|
|
28
27
|
import { DialogProps } from '@mui/material/Dialog';
|
|
@@ -34,7 +33,7 @@ import { ds5 } from '@hitachivantara/uikit-styles';
|
|
|
34
33
|
import { EmblaOptionsType } from 'embla-carousel-react';
|
|
35
34
|
import { EmotionCache } from '@emotion/cache';
|
|
36
35
|
import { EmotionContext } from '@hitachivantara/uikit-react-shared';
|
|
37
|
-
import
|
|
36
|
+
import { ForwardRefExoticComponent } from 'react';
|
|
38
37
|
import { GridProps } from '@mui/material';
|
|
39
38
|
import { Hooks } from 'react-table';
|
|
40
39
|
import { HTMLAttributes } from 'react';
|
|
@@ -67,10 +66,11 @@ import { ImgHTMLAttributes } from 'react';
|
|
|
67
66
|
import { InputBaseComponentProps } from '@mui/material';
|
|
68
67
|
import { InputBaseProps } from '@mui/material';
|
|
69
68
|
import { InputProps } from '@mui/material';
|
|
70
|
-
import
|
|
69
|
+
import { JSX as JSX_2 } from '@emotion/react/jsx-runtime';
|
|
70
|
+
import { JSXElementConstructor } from 'react';
|
|
71
71
|
import { MouseEvent as MouseEvent_2 } from 'react';
|
|
72
72
|
import { MouseEventHandler } from 'react';
|
|
73
|
-
import
|
|
73
|
+
import { OptionsObject } from 'notistack';
|
|
74
74
|
import { PopperProps } from '@mui/material';
|
|
75
75
|
import { PropGetter } from 'react-table';
|
|
76
76
|
import { RadioProps } from '@mui/material/Radio';
|
|
@@ -80,7 +80,7 @@ import * as React_3 from 'react';
|
|
|
80
80
|
import { ReactElement } from 'react';
|
|
81
81
|
import { ReactNode } from 'react';
|
|
82
82
|
import { ReducerTableState } from 'react-table';
|
|
83
|
-
import
|
|
83
|
+
import { RefAttributes } from 'react';
|
|
84
84
|
import { RefObject } from 'react';
|
|
85
85
|
import { Renderer } from 'react-table';
|
|
86
86
|
import { Row } from 'react-table';
|
|
@@ -88,7 +88,7 @@ import { SliderProps } from 'rc-slider';
|
|
|
88
88
|
import { SliderRef } from 'rc-slider';
|
|
89
89
|
import { SnackbarCloseReason } from '@mui/material/Snackbar';
|
|
90
90
|
import { SnackbarContentProps } from '@mui/material/SnackbarContent';
|
|
91
|
-
import
|
|
91
|
+
import { SnackbarKey } from 'notistack';
|
|
92
92
|
import { SnackbarOrigin } from '@mui/material/Snackbar';
|
|
93
93
|
import { SnackbarProps } from '@mui/material/Snackbar';
|
|
94
94
|
import { SwitchProps } from '@mui/material/Switch';
|
|
@@ -99,7 +99,7 @@ import { TableCommonProps } from 'react-table';
|
|
|
99
99
|
import { TableExpandedToggleProps } from 'react-table';
|
|
100
100
|
import { TableFooterProps } from 'react-table';
|
|
101
101
|
import { TableHeaderProps } from 'react-table';
|
|
102
|
-
import
|
|
102
|
+
import { TableHTMLAttributes } from 'react';
|
|
103
103
|
import { TableInstance } from 'react-table';
|
|
104
104
|
import { TableOptions } from 'react-table';
|
|
105
105
|
import { TableProps } from 'react-table';
|
|
@@ -107,13 +107,12 @@ import { TableRowProps } from 'react-table';
|
|
|
107
107
|
import { TableState } from 'react-table';
|
|
108
108
|
import { TabProps } from '@mui/material';
|
|
109
109
|
import { TabsProps } from '@mui/material';
|
|
110
|
-
import
|
|
110
|
+
import { TdHTMLAttributes } from 'react';
|
|
111
111
|
import { theme } from '@hitachivantara/uikit-styles';
|
|
112
112
|
import { themes } from '@hitachivantara/uikit-styles';
|
|
113
|
-
import
|
|
113
|
+
import { ThHTMLAttributes } from 'react';
|
|
114
114
|
import { TooltipProps } from '@mui/material';
|
|
115
|
-
import
|
|
116
|
-
import type { TreeItemProps } from '@mui/x-tree-view';
|
|
115
|
+
import { TransitionProps } from '@mui/material/transitions';
|
|
117
116
|
import { UseColumnOrderInstanceProps } from 'react-table';
|
|
118
117
|
import { UseColumnOrderState } from 'react-table';
|
|
119
118
|
import { useEffect } from 'react';
|
|
@@ -157,11 +156,6 @@ import { UseSortByInstanceProps } from 'react-table';
|
|
|
157
156
|
import { UseSortByOptions } from 'react-table';
|
|
158
157
|
import { UseSortByState } from 'react-table';
|
|
159
158
|
import { UseTableHeaderGroupProps } from 'react-table';
|
|
160
|
-
import type { UseTreeViewExpansionInstance } from '@mui/x-tree-view/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types';
|
|
161
|
-
import type { UseTreeViewFocusInstance } from '@mui/x-tree-view/internals/plugins/useTreeViewFocus/useTreeViewFocus.types';
|
|
162
|
-
import type { UseTreeViewKeyboardNavigationInstance } from '@mui/x-tree-view/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.types';
|
|
163
|
-
import type { UseTreeViewNodesInstance } from '@mui/x-tree-view/internals/plugins/useTreeViewNodes/useTreeViewNodes.types';
|
|
164
|
-
import type { UseTreeViewSelectionInstance } from '@mui/x-tree-view/internals/plugins/useTreeViewSelection/useTreeViewSelection.types';
|
|
165
159
|
|
|
166
160
|
declare type Accessor<D extends object> = (originalRow: D, index: number, sub: {
|
|
167
161
|
subRows: D[];
|
|
@@ -170,11 +164,11 @@ declare type Accessor<D extends object> = (originalRow: D, index: number, sub: {
|
|
|
170
164
|
}) => CellValue;
|
|
171
165
|
|
|
172
166
|
export declare const accordionClasses: {
|
|
173
|
-
|
|
167
|
+
container: "HvAccordion-container";
|
|
174
168
|
label: "HvAccordion-label";
|
|
175
169
|
root: "HvAccordion-root";
|
|
176
|
-
container: "HvAccordion-container";
|
|
177
170
|
disabled: "HvAccordion-disabled";
|
|
171
|
+
hidden: "HvAccordion-hidden";
|
|
178
172
|
};
|
|
179
173
|
|
|
180
174
|
export declare const actionBarClasses: {
|
|
@@ -183,8 +177,8 @@ export declare const actionBarClasses: {
|
|
|
183
177
|
|
|
184
178
|
export declare const actionClasses: {
|
|
185
179
|
action: "HvVerticalNavigationAction-action";
|
|
186
|
-
noIcon: "HvVerticalNavigationAction-noIcon";
|
|
187
180
|
minimized: "HvVerticalNavigationAction-minimized";
|
|
181
|
+
noIcon: "HvVerticalNavigationAction-noIcon";
|
|
188
182
|
};
|
|
189
183
|
|
|
190
184
|
export declare const actionsClasses: {
|
|
@@ -193,8 +187,8 @@ export declare const actionsClasses: {
|
|
|
193
187
|
};
|
|
194
188
|
|
|
195
189
|
export declare const actionsGenericClasses: {
|
|
196
|
-
button: "HvActionsGeneric-button";
|
|
197
190
|
root: "HvActionsGeneric-root";
|
|
191
|
+
button: "HvActionsGeneric-button";
|
|
198
192
|
actionContainer: "HvActionsGeneric-actionContainer";
|
|
199
193
|
dropDownMenu: "HvActionsGeneric-dropDownMenu";
|
|
200
194
|
dropDownMenuButton: "HvActionsGeneric-dropDownMenuButton";
|
|
@@ -205,27 +199,28 @@ export declare const adornmentClasses: {
|
|
|
205
199
|
root: "HvAdornment-root";
|
|
206
200
|
icon: "HvAdornment-icon";
|
|
207
201
|
adornment: "HvAdornment-adornment";
|
|
208
|
-
adornmentButton: "HvAdornment-adornmentButton";
|
|
209
202
|
adornmentIcon: "HvAdornment-adornmentIcon";
|
|
210
203
|
hideIcon: "HvAdornment-hideIcon";
|
|
204
|
+
adornmentButton: "HvAdornment-adornmentButton";
|
|
211
205
|
};
|
|
212
206
|
|
|
213
207
|
export declare const appSwitcherActionClasses: {
|
|
214
|
-
title: "HvAppSwitcher-Action-title";
|
|
215
|
-
root: "HvAppSwitcher-Action-root";
|
|
216
208
|
typography: "HvAppSwitcher-Action-typography";
|
|
217
|
-
|
|
209
|
+
root: "HvAppSwitcher-Action-root";
|
|
218
210
|
disabled: "HvAppSwitcher-Action-disabled";
|
|
211
|
+
icon: "HvAppSwitcher-Action-icon";
|
|
212
|
+
title: "HvAppSwitcher-Action-title";
|
|
219
213
|
selected: "HvAppSwitcher-Action-selected";
|
|
220
214
|
iconUrl: "HvAppSwitcher-Action-iconUrl";
|
|
221
215
|
iconInfo: "HvAppSwitcher-Action-iconInfo";
|
|
222
216
|
};
|
|
223
217
|
|
|
224
218
|
export declare const appSwitcherClasses: {
|
|
225
|
-
title: "HvAppSwitcher-title";
|
|
226
|
-
open: "HvAppSwitcher-open";
|
|
227
219
|
root: "HvAppSwitcher-root";
|
|
220
|
+
title: "HvAppSwitcher-title";
|
|
228
221
|
single: "HvAppSwitcher-single";
|
|
222
|
+
actionsContainer: "HvAppSwitcher-actionsContainer";
|
|
223
|
+
open: "HvAppSwitcher-open";
|
|
229
224
|
item: "HvAppSwitcher-item";
|
|
230
225
|
itemSelected: "HvAppSwitcher-itemSelected";
|
|
231
226
|
itemDisabled: "HvAppSwitcher-itemDisabled";
|
|
@@ -233,7 +228,6 @@ export declare const appSwitcherClasses: {
|
|
|
233
228
|
itemIcon: "HvAppSwitcher-itemIcon";
|
|
234
229
|
itemTitle: "HvAppSwitcher-itemTitle";
|
|
235
230
|
itemInfoIcon: "HvAppSwitcher-itemInfoIcon";
|
|
236
|
-
actionsContainer: "HvAppSwitcher-actionsContainer";
|
|
237
231
|
footerContainer: "HvAppSwitcher-footerContainer";
|
|
238
232
|
closed: "HvAppSwitcher-closed";
|
|
239
233
|
dual: "HvAppSwitcher-dual";
|
|
@@ -247,16 +241,16 @@ declare type AsProp<C extends React.ElementType> = {
|
|
|
247
241
|
};
|
|
248
242
|
|
|
249
243
|
export declare const avatarClasses: {
|
|
250
|
-
img: "HvAvatar-img";
|
|
251
|
-
root: "HvAvatar-root";
|
|
252
244
|
container: "HvAvatar-container";
|
|
253
245
|
xs: "HvAvatar-xs";
|
|
254
246
|
sm: "HvAvatar-sm";
|
|
255
247
|
md: "HvAvatar-md";
|
|
256
248
|
lg: "HvAvatar-lg";
|
|
257
249
|
xl: "HvAvatar-xl";
|
|
258
|
-
|
|
250
|
+
root: "HvAvatar-root";
|
|
259
251
|
square: "HvAvatar-square";
|
|
252
|
+
img: "HvAvatar-img";
|
|
253
|
+
status: "HvAvatar-status";
|
|
260
254
|
fallback: "HvAvatar-fallback";
|
|
261
255
|
avatar: "HvAvatar-avatar";
|
|
262
256
|
badge: "HvAvatar-badge";
|
|
@@ -282,44 +276,44 @@ export declare const bannerClasses: {
|
|
|
282
276
|
};
|
|
283
277
|
|
|
284
278
|
export declare const bannerContentClasses: {
|
|
285
|
-
root: "HvBannerContent-root";
|
|
286
279
|
warning: "HvBannerContent-warning";
|
|
287
|
-
|
|
280
|
+
root: "HvBannerContent-root";
|
|
288
281
|
action: "HvBannerContent-action";
|
|
282
|
+
default: "HvBannerContent-default";
|
|
289
283
|
error: "HvBannerContent-error";
|
|
290
|
-
success: "HvBannerContent-success";
|
|
291
284
|
message: "HvBannerContent-message";
|
|
285
|
+
success: "HvBannerContent-success";
|
|
292
286
|
baseVariant: "HvBannerContent-baseVariant";
|
|
293
287
|
outContainer: "HvBannerContent-outContainer";
|
|
294
288
|
};
|
|
295
289
|
|
|
296
290
|
export declare const baseCheckBoxClasses: {
|
|
297
291
|
root: "HvBaseCheckBox-root";
|
|
298
|
-
icon: "HvBaseCheckBox-icon";
|
|
299
292
|
disabled: "HvBaseCheckBox-disabled";
|
|
293
|
+
icon: "HvBaseCheckBox-icon";
|
|
300
294
|
focusVisible: "HvBaseCheckBox-focusVisible";
|
|
301
295
|
};
|
|
302
296
|
|
|
303
297
|
export declare const baseDropdownClasses: {
|
|
304
|
-
|
|
305
|
-
arrow: "HvBaseDropdown-arrow";
|
|
306
|
-
anchor: "HvBaseDropdown-anchor";
|
|
298
|
+
container: "HvBaseDropdown-container";
|
|
307
299
|
header: "HvBaseDropdown-header";
|
|
300
|
+
anchor: "HvBaseDropdown-anchor";
|
|
308
301
|
root: "HvBaseDropdown-root";
|
|
309
|
-
container: "HvBaseDropdown-container";
|
|
310
|
-
rootDisabled: "HvBaseDropdown-rootDisabled";
|
|
311
302
|
headerOpen: "HvBaseDropdown-headerOpen";
|
|
312
|
-
headerOpenUp: "HvBaseDropdown-headerOpenUp";
|
|
313
|
-
headerOpenDown: "HvBaseDropdown-headerOpenDown";
|
|
314
303
|
headerDisabled: "HvBaseDropdown-headerDisabled";
|
|
315
304
|
headerReadOnly: "HvBaseDropdown-headerReadOnly";
|
|
305
|
+
placeholder: "HvBaseDropdown-placeholder";
|
|
306
|
+
panel: "HvBaseDropdown-panel";
|
|
307
|
+
inputExtensionOpen: "HvBaseDropdown-inputExtensionOpen";
|
|
308
|
+
rootDisabled: "HvBaseDropdown-rootDisabled";
|
|
309
|
+
headerOpenUp: "HvBaseDropdown-headerOpenUp";
|
|
310
|
+
headerOpenDown: "HvBaseDropdown-headerOpenDown";
|
|
316
311
|
arrowContainer: "HvBaseDropdown-arrowContainer";
|
|
312
|
+
arrow: "HvBaseDropdown-arrow";
|
|
317
313
|
selection: "HvBaseDropdown-selection";
|
|
318
314
|
selectionDisabled: "HvBaseDropdown-selectionDisabled";
|
|
319
|
-
panel: "HvBaseDropdown-panel";
|
|
320
315
|
panelOpenedUp: "HvBaseDropdown-panelOpenedUp";
|
|
321
316
|
panelOpenedDown: "HvBaseDropdown-panelOpenedDown";
|
|
322
|
-
inputExtensionOpen: "HvBaseDropdown-inputExtensionOpen";
|
|
323
317
|
inputExtensionLeftPosition: "HvBaseDropdown-inputExtensionLeftPosition";
|
|
324
318
|
inputExtensionOpenShadow: "HvBaseDropdown-inputExtensionOpenShadow";
|
|
325
319
|
inputExtensionFloatRight: "HvBaseDropdown-inputExtensionFloatRight";
|
|
@@ -327,51 +321,51 @@ export declare const baseDropdownClasses: {
|
|
|
327
321
|
};
|
|
328
322
|
|
|
329
323
|
export declare const baseInputClasses: {
|
|
330
|
-
input: "HvBaseInput-input";
|
|
331
324
|
root: "HvBaseInput-root";
|
|
332
325
|
disabled: "HvBaseInput-disabled";
|
|
333
326
|
readOnly: "HvBaseInput-readOnly";
|
|
334
|
-
invalid: "HvBaseInput-invalid";
|
|
335
|
-
resizable: "HvBaseInput-resizable";
|
|
336
327
|
inputBorderContainer: "HvBaseInput-inputBorderContainer";
|
|
337
|
-
inputRootInvalid: "HvBaseInput-inputRootInvalid";
|
|
338
328
|
inputRootReadOnly: "HvBaseInput-inputRootReadOnly";
|
|
339
329
|
inputRoot: "HvBaseInput-inputRoot";
|
|
340
330
|
inputRootFocused: "HvBaseInput-inputRootFocused";
|
|
341
|
-
inputRootDisabled: "HvBaseInput-inputRootDisabled";
|
|
342
331
|
inputRootMultiline: "HvBaseInput-inputRootMultiline";
|
|
343
|
-
|
|
332
|
+
input: "HvBaseInput-input";
|
|
344
333
|
inputReadOnly: "HvBaseInput-inputReadOnly";
|
|
334
|
+
invalid: "HvBaseInput-invalid";
|
|
335
|
+
resizable: "HvBaseInput-resizable";
|
|
336
|
+
inputRootInvalid: "HvBaseInput-inputRootInvalid";
|
|
337
|
+
inputRootDisabled: "HvBaseInput-inputRootDisabled";
|
|
338
|
+
inputDisabled: "HvBaseInput-inputDisabled";
|
|
345
339
|
inputResizable: "HvBaseInput-inputResizable";
|
|
346
340
|
};
|
|
347
341
|
|
|
348
342
|
export declare const baseRadioClasses: {
|
|
349
343
|
root: "HvBaseRadio-root";
|
|
350
|
-
icon: "HvBaseRadio-icon";
|
|
351
344
|
disabled: "HvBaseRadio-disabled";
|
|
345
|
+
icon: "HvBaseRadio-icon";
|
|
352
346
|
focusVisible: "HvBaseRadio-focusVisible";
|
|
353
347
|
};
|
|
354
348
|
|
|
355
349
|
export declare const baseSwitchClasses: {
|
|
356
|
-
track: "HvBaseSwitch-track";
|
|
357
|
-
switch: "HvBaseSwitch-switch";
|
|
358
350
|
root: "HvBaseSwitch-root";
|
|
359
351
|
disabled: "HvBaseSwitch-disabled";
|
|
360
|
-
checked: "HvBaseSwitch-checked";
|
|
361
352
|
readOnly: "HvBaseSwitch-readOnly";
|
|
362
|
-
|
|
353
|
+
switch: "HvBaseSwitch-switch";
|
|
363
354
|
switchBase: "HvBaseSwitch-switchBase";
|
|
355
|
+
track: "HvBaseSwitch-track";
|
|
356
|
+
checked: "HvBaseSwitch-checked";
|
|
357
|
+
focusVisible: "HvBaseSwitch-focusVisible";
|
|
364
358
|
thumb: "HvBaseSwitch-thumb";
|
|
365
359
|
};
|
|
366
360
|
|
|
367
361
|
export declare const breadCrumbClasses: {
|
|
368
362
|
link: "HvBreadCrumb-link";
|
|
369
|
-
a: "HvBreadCrumb-a";
|
|
370
363
|
root: "HvBreadCrumb-root";
|
|
371
|
-
|
|
364
|
+
a: "HvBreadCrumb-a";
|
|
372
365
|
currentPage: "HvBreadCrumb-currentPage";
|
|
373
366
|
centerContainer: "HvBreadCrumb-centerContainer";
|
|
374
367
|
separatorContainer: "HvBreadCrumb-separatorContainer";
|
|
368
|
+
orderedList: "HvBreadCrumb-orderedList";
|
|
375
369
|
};
|
|
376
370
|
|
|
377
371
|
export declare interface Breakpoint {
|
|
@@ -398,24 +392,24 @@ export declare const buildFormElementPropsFromContext: (name: any, disabled: any
|
|
|
398
392
|
export declare const bulkActionsClasses: {
|
|
399
393
|
root: "HvBulkActions-root";
|
|
400
394
|
semantic: "HvBulkActions-semantic";
|
|
395
|
+
divider: "HvBulkActions-divider";
|
|
396
|
+
selectAll: "HvBulkActions-selectAll";
|
|
401
397
|
actions: "HvBulkActions-actions";
|
|
402
398
|
selectAllContainer: "HvBulkActions-selectAllContainer";
|
|
403
|
-
selectAll: "HvBulkActions-selectAll";
|
|
404
399
|
selectAllPages: "HvBulkActions-selectAllPages";
|
|
405
|
-
divider: "HvBulkActions-divider";
|
|
406
400
|
};
|
|
407
401
|
|
|
408
402
|
export declare const buttonClasses: {
|
|
409
|
-
root: "HvButton-root";
|
|
410
403
|
secondary: "HvButton-secondary";
|
|
411
404
|
primary: "HvButton-primary";
|
|
412
|
-
|
|
405
|
+
root: "HvButton-root";
|
|
413
406
|
disabled: "HvButton-disabled";
|
|
414
407
|
semantic: "HvButton-semantic";
|
|
415
|
-
primarySubtle: "HvButton-primarySubtle";
|
|
416
|
-
primaryGhost: "HvButton-primaryGhost";
|
|
417
408
|
secondarySubtle: "HvButton-secondarySubtle";
|
|
409
|
+
icon: "HvButton-icon";
|
|
418
410
|
secondaryGhost: "HvButton-secondaryGhost";
|
|
411
|
+
primaryGhost: "HvButton-primaryGhost";
|
|
412
|
+
primarySubtle: "HvButton-primarySubtle";
|
|
419
413
|
ghost: "HvButton-ghost";
|
|
420
414
|
startIcon: "HvButton-startIcon";
|
|
421
415
|
endIcon: "HvButton-endIcon";
|
|
@@ -430,28 +424,28 @@ export declare const buttonVariant: readonly ["primary", "primarySubtle", "prima
|
|
|
430
424
|
|
|
431
425
|
export declare const calendarClasses: {
|
|
432
426
|
root: "HvCalendar-root";
|
|
433
|
-
rangeCalendarContainer: "HvCalendar-rangeCalendarContainer";
|
|
434
|
-
singleCalendar: "HvCalendar-singleCalendar";
|
|
435
427
|
focusSelection: "HvCalendar-focusSelection";
|
|
436
428
|
calendarMonthlyCell: "HvCalendar-calendarMonthlyCell";
|
|
437
429
|
calendarMonthlyCellSelected: "HvCalendar-calendarMonthlyCellSelected";
|
|
430
|
+
rangeCalendarContainer: "HvCalendar-rangeCalendarContainer";
|
|
431
|
+
singleCalendar: "HvCalendar-singleCalendar";
|
|
438
432
|
};
|
|
439
433
|
|
|
440
434
|
export declare const calendarHeaderClasses: {
|
|
441
|
-
input: "HvCalendarHeader-input";
|
|
442
435
|
root: "HvCalendarHeader-root";
|
|
443
|
-
invalid: "HvCalendarHeader-invalid";
|
|
444
436
|
inputBorderContainer: "HvCalendarHeader-inputBorderContainer";
|
|
445
|
-
|
|
437
|
+
input: "HvCalendarHeader-input";
|
|
446
438
|
headerDate: "HvCalendarHeader-headerDate";
|
|
439
|
+
headerDayOfWeek: "HvCalendarHeader-headerDayOfWeek";
|
|
440
|
+
invalid: "HvCalendarHeader-invalid";
|
|
447
441
|
invalidMessageStyling: "HvCalendarHeader-invalidMessageStyling";
|
|
448
442
|
};
|
|
449
443
|
|
|
450
444
|
export declare const cardClasses: {
|
|
451
445
|
root: "HvCard-root";
|
|
446
|
+
selectable: "HvCard-selectable";
|
|
452
447
|
icon: "HvCard-icon";
|
|
453
448
|
selected: "HvCard-selected";
|
|
454
|
-
selectable: "HvCard-selectable";
|
|
455
449
|
semanticContainer: "HvCard-semanticContainer";
|
|
456
450
|
semanticBar: "HvCard-semanticBar";
|
|
457
451
|
};
|
|
@@ -461,12 +455,12 @@ export declare const cardContentClasses: {
|
|
|
461
455
|
};
|
|
462
456
|
|
|
463
457
|
export declare const cardHeaderClasses: {
|
|
464
|
-
title: "HvCardHeader-title";
|
|
465
458
|
content: "HvCardHeader-content";
|
|
466
459
|
root: "HvCardHeader-root";
|
|
467
|
-
|
|
460
|
+
title: "HvCardHeader-title";
|
|
468
461
|
titleShort: "HvCardHeader-titleShort";
|
|
469
462
|
subheader: "HvCardHeader-subheader";
|
|
463
|
+
action: "HvCardHeader-action";
|
|
470
464
|
};
|
|
471
465
|
|
|
472
466
|
export declare const cardMediaClasses: {
|
|
@@ -475,30 +469,30 @@ export declare const cardMediaClasses: {
|
|
|
475
469
|
};
|
|
476
470
|
|
|
477
471
|
export declare const carouselClasses: {
|
|
478
|
-
title: "HvCarousel-title";
|
|
479
|
-
main: "HvCarousel-main";
|
|
480
|
-
root: "HvCarousel-root";
|
|
481
472
|
xs: "HvCarousel-xs";
|
|
482
|
-
|
|
483
|
-
controls: "HvCarousel-controls";
|
|
484
|
-
actions: "HvCarousel-actions";
|
|
473
|
+
root: "HvCarousel-root";
|
|
485
474
|
panel: "HvCarousel-panel";
|
|
475
|
+
title: "HvCarousel-title";
|
|
476
|
+
controls: "HvCarousel-controls";
|
|
477
|
+
counterContainer: "HvCarousel-counterContainer";
|
|
478
|
+
thumbnail: "HvCarousel-thumbnail";
|
|
479
|
+
thumbnailSelected: "HvCarousel-thumbnailSelected";
|
|
480
|
+
dot: "HvCarousel-dot";
|
|
481
|
+
main: "HvCarousel-main";
|
|
482
|
+
counter: "HvCarousel-counter";
|
|
486
483
|
fullscreen: "HvCarousel-fullscreen";
|
|
487
484
|
closeButton: "HvCarousel-closeButton";
|
|
485
|
+
actions: "HvCarousel-actions";
|
|
486
|
+
dots: "HvCarousel-dots";
|
|
488
487
|
mainContainer: "HvCarousel-mainContainer";
|
|
489
488
|
pageCounter: "HvCarousel-pageCounter";
|
|
490
489
|
mainXs: "HvCarousel-mainXs";
|
|
491
490
|
mainFullscreen: "HvCarousel-mainFullscreen";
|
|
492
|
-
counterContainer: "HvCarousel-counterContainer";
|
|
493
|
-
counter: "HvCarousel-counter";
|
|
494
491
|
slideControls: "HvCarousel-slideControls";
|
|
495
492
|
slidesViewport: "HvCarousel-slidesViewport";
|
|
496
493
|
slidesContainer: "HvCarousel-slidesContainer";
|
|
497
|
-
dots: "HvCarousel-dots";
|
|
498
494
|
dotsXs: "HvCarousel-dotsXs";
|
|
499
495
|
dotSelected: "HvCarousel-dotSelected";
|
|
500
|
-
thumbnail: "HvCarousel-thumbnail";
|
|
501
|
-
thumbnailSelected: "HvCarousel-thumbnailSelected";
|
|
502
496
|
};
|
|
503
497
|
|
|
504
498
|
declare type CellValue<V = any> = V;
|
|
@@ -522,40 +516,40 @@ export declare const charCounterClasses: {
|
|
|
522
516
|
};
|
|
523
517
|
|
|
524
518
|
export declare const checkBoxClasses: {
|
|
519
|
+
container: "HvCheckBox-container";
|
|
525
520
|
label: "HvCheckBox-label";
|
|
526
521
|
root: "HvCheckBox-root";
|
|
527
|
-
container: "HvCheckBox-container";
|
|
528
|
-
checkbox: "HvCheckBox-checkbox";
|
|
529
522
|
disabled: "HvCheckBox-disabled";
|
|
523
|
+
checkbox: "HvCheckBox-checkbox";
|
|
530
524
|
focusVisible: "HvCheckBox-focusVisible";
|
|
531
525
|
invalidContainer: "HvCheckBox-invalidContainer";
|
|
532
526
|
invalidCheckbox: "HvCheckBox-invalidCheckbox";
|
|
533
527
|
};
|
|
534
528
|
|
|
535
529
|
export declare const checkBoxGroupClasses: {
|
|
530
|
+
vertical: "HvCheckBoxGroup-vertical";
|
|
531
|
+
horizontal: "HvCheckBoxGroup-horizontal";
|
|
536
532
|
label: "HvCheckBoxGroup-label";
|
|
537
533
|
root: "HvCheckBoxGroup-root";
|
|
538
|
-
horizontal: "HvCheckBoxGroup-horizontal";
|
|
539
|
-
vertical: "HvCheckBoxGroup-vertical";
|
|
540
534
|
group: "HvCheckBoxGroup-group";
|
|
541
|
-
error: "HvCheckBoxGroup-error";
|
|
542
535
|
invalid: "HvCheckBoxGroup-invalid";
|
|
536
|
+
error: "HvCheckBoxGroup-error";
|
|
543
537
|
selectAll: "HvCheckBoxGroup-selectAll";
|
|
544
538
|
};
|
|
545
539
|
|
|
546
540
|
export declare const checkValidHexColorValue: (value?: string) => boolean;
|
|
547
541
|
|
|
548
542
|
export declare const colorPickerClasses: {
|
|
543
|
+
colorPicker: "HvColorPicker-colorPicker";
|
|
549
544
|
label: "HvColorPicker-label";
|
|
545
|
+
description: "HvColorPicker-description";
|
|
550
546
|
root: "HvColorPicker-root";
|
|
551
|
-
colorPicker: "HvColorPicker-colorPicker";
|
|
552
547
|
panel: "HvColorPicker-panel";
|
|
553
|
-
description: "HvColorPicker-description";
|
|
554
|
-
labelContainer: "HvColorPicker-labelContainer";
|
|
555
548
|
headerColorValue: "HvColorPicker-headerColorValue";
|
|
549
|
+
recommendedColorsRoot: "HvColorPicker-recommendedColorsRoot";
|
|
550
|
+
labelContainer: "HvColorPicker-labelContainer";
|
|
556
551
|
headerColorIcon: "HvColorPicker-headerColorIcon";
|
|
557
552
|
colorPickerIcon: "HvColorPicker-colorPickerIcon";
|
|
558
|
-
recommendedColorsRoot: "HvColorPicker-recommendedColorsRoot";
|
|
559
553
|
dropdownRootIconOnly: "HvColorPicker-dropdownRootIconOnly";
|
|
560
554
|
headerColorIconOnly: "HvColorPicker-headerColorIconOnly";
|
|
561
555
|
pickerFields: "HvColorPicker-pickerFields";
|
|
@@ -573,8 +567,8 @@ export declare const containerClasses: {
|
|
|
573
567
|
};
|
|
574
568
|
|
|
575
569
|
export declare const controlsClasses: {
|
|
576
|
-
section: "HvControls-section";
|
|
577
570
|
root: "HvControls-root";
|
|
571
|
+
section: "HvControls-section";
|
|
578
572
|
rightSection: "HvControls-rightSection";
|
|
579
573
|
leftSection: "HvControls-leftSection";
|
|
580
574
|
};
|
|
@@ -602,20 +596,20 @@ export declare const createTheme: (props: HvCreateThemeProps) => HvTheme | HvThe
|
|
|
602
596
|
|
|
603
597
|
export declare const datePickerClasses: {
|
|
604
598
|
label: "HvDatePicker-label";
|
|
599
|
+
description: "HvDatePicker-description";
|
|
605
600
|
root: "HvDatePicker-root";
|
|
601
|
+
panel: "HvDatePicker-panel";
|
|
606
602
|
icon: "HvDatePicker-icon";
|
|
603
|
+
inputText: "HvDatePicker-inputText";
|
|
607
604
|
action: "HvDatePicker-action";
|
|
608
605
|
error: "HvDatePicker-error";
|
|
609
|
-
actionContainer: "HvDatePicker-actionContainer";
|
|
610
606
|
dropdown: "HvDatePicker-dropdown";
|
|
611
|
-
|
|
612
|
-
description: "HvDatePicker-description";
|
|
613
|
-
labelContainer: "HvDatePicker-labelContainer";
|
|
614
|
-
leftContainer: "HvDatePicker-leftContainer";
|
|
607
|
+
actionContainer: "HvDatePicker-actionContainer";
|
|
615
608
|
rightContainer: "HvDatePicker-rightContainer";
|
|
609
|
+
labelContainer: "HvDatePicker-labelContainer";
|
|
616
610
|
dropdownHeaderInvalid: "HvDatePicker-dropdownHeaderInvalid";
|
|
617
611
|
dropdownHeaderOpen: "HvDatePicker-dropdownHeaderOpen";
|
|
618
|
-
|
|
612
|
+
leftContainer: "HvDatePicker-leftContainer";
|
|
619
613
|
dateText: "HvDatePicker-dateText";
|
|
620
614
|
};
|
|
621
615
|
|
|
@@ -624,7 +618,7 @@ export declare interface DateRangeProp {
|
|
|
624
618
|
endDate?: Date;
|
|
625
619
|
}
|
|
626
620
|
|
|
627
|
-
export declare const decreaseSize: (size: string) => "
|
|
621
|
+
export declare const decreaseSize: (size: string) => "XS" | "S" | "M" | "L";
|
|
628
622
|
|
|
629
623
|
/** This type allows to do a deep partial by applying the Partial type to each key recursively */
|
|
630
624
|
export declare type DeepPartial<T> = Partial<{
|
|
@@ -653,26 +647,29 @@ export declare const defaultGetToggleAllRowsSelectedProps: (props: any, { instan
|
|
|
653
647
|
|
|
654
648
|
export declare const defaultGetToggleRowSelectedProps: (props: any, meta: any) => any[];
|
|
655
649
|
|
|
650
|
+
declare interface DefaultTreeViewPluginParameters<Multiple extends boolean | undefined> extends UseTreeViewNodesParameters, UseTreeViewExpansionParameters, UseTreeViewFocusParameters, UseTreeViewSelectionParameters<Multiple>, UseTreeViewContextValueBuilderParameters {
|
|
651
|
+
}
|
|
652
|
+
|
|
656
653
|
declare interface Descriptor {
|
|
657
654
|
id?: string;
|
|
658
655
|
htmlFor?: string;
|
|
659
656
|
}
|
|
660
657
|
|
|
661
658
|
export declare const dialogActionClasses: {
|
|
662
|
-
root: "HvDialog-Action-root";
|
|
663
659
|
spacing: "HvDialog-Action-spacing";
|
|
660
|
+
root: "HvDialog-Action-root";
|
|
664
661
|
fullscreen: "HvDialog-Action-fullscreen";
|
|
665
662
|
};
|
|
666
663
|
|
|
667
664
|
export declare const dialogClasses: {
|
|
668
|
-
root: "HvDialog-root";
|
|
669
|
-
background: "HvDialog-background";
|
|
670
665
|
warning: "HvDialog-warning";
|
|
666
|
+
background: "HvDialog-background";
|
|
667
|
+
root: "HvDialog-root";
|
|
668
|
+
paper: "HvDialog-paper";
|
|
671
669
|
error: "HvDialog-error";
|
|
672
670
|
success: "HvDialog-success";
|
|
673
671
|
fullscreen: "HvDialog-fullscreen";
|
|
674
672
|
closeButton: "HvDialog-closeButton";
|
|
675
|
-
paper: "HvDialog-paper";
|
|
676
673
|
statusBar: "HvDialog-statusBar";
|
|
677
674
|
};
|
|
678
675
|
|
|
@@ -691,53 +688,53 @@ declare interface DialogLabels {
|
|
|
691
688
|
|
|
692
689
|
export declare const dialogTitleClasses: {
|
|
693
690
|
root: "HvDialog-Title-root";
|
|
691
|
+
titleText: "HvDialog-Title-titleText";
|
|
694
692
|
fullscreen: "HvDialog-Title-fullscreen";
|
|
695
693
|
messageContainer: "HvDialog-Title-messageContainer";
|
|
696
694
|
textWithIcon: "HvDialog-Title-textWithIcon";
|
|
697
|
-
titleText: "HvDialog-Title-titleText";
|
|
698
695
|
};
|
|
699
696
|
|
|
700
697
|
export declare const dotPaginationClasses: {
|
|
701
|
-
root: "HvDotPagination-root";
|
|
702
698
|
horizontal: "HvDotPagination-horizontal";
|
|
703
|
-
|
|
699
|
+
root: "HvDotPagination-root";
|
|
704
700
|
icon: "HvDotPagination-icon";
|
|
701
|
+
radio: "HvDotPagination-radio";
|
|
705
702
|
radioRoot: "HvDotPagination-radioRoot";
|
|
706
703
|
};
|
|
707
704
|
|
|
708
705
|
export declare const drawerClasses: {
|
|
709
|
-
root: "HvDrawer-root";
|
|
710
706
|
background: "HvDrawer-background";
|
|
711
|
-
|
|
707
|
+
root: "HvDrawer-root";
|
|
712
708
|
paper: "HvDrawer-paper";
|
|
709
|
+
closeButton: "HvDrawer-closeButton";
|
|
713
710
|
};
|
|
714
711
|
|
|
715
712
|
export declare const dropdownClasses: {
|
|
716
|
-
placeholder: "HvDropdown-placeholder";
|
|
717
|
-
arrow: "HvDropdown-arrow";
|
|
718
713
|
label: "HvDropdown-label";
|
|
714
|
+
description: "HvDropdown-description";
|
|
719
715
|
root: "HvDropdown-root";
|
|
716
|
+
placeholder: "HvDropdown-placeholder";
|
|
720
717
|
disabled: "HvDropdown-disabled";
|
|
721
718
|
readOnly: "HvDropdown-readOnly";
|
|
719
|
+
placeholderClosed: "HvDropdown-placeholderClosed";
|
|
722
720
|
error: "HvDropdown-error";
|
|
723
721
|
dropdown: "HvDropdown-dropdown";
|
|
722
|
+
arrow: "HvDropdown-arrow";
|
|
724
723
|
selectionDisabled: "HvDropdown-selectionDisabled";
|
|
725
|
-
description: "HvDropdown-description";
|
|
726
724
|
labelContainer: "HvDropdown-labelContainer";
|
|
725
|
+
rootList: "HvDropdown-rootList";
|
|
726
|
+
dropdownListContainer: "HvDropdown-dropdownListContainer";
|
|
727
|
+
dropdownHeader: "HvDropdown-dropdownHeader";
|
|
727
728
|
dropdownHeaderInvalid: "HvDropdown-dropdownHeaderInvalid";
|
|
728
729
|
dropdownHeaderOpen: "HvDropdown-dropdownHeaderOpen";
|
|
729
|
-
placeholderClosed: "HvDropdown-placeholderClosed";
|
|
730
|
-
dropdownHeader: "HvDropdown-dropdownHeader";
|
|
731
|
-
dropdownListContainer: "HvDropdown-dropdownListContainer";
|
|
732
|
-
rootList: "HvDropdown-rootList";
|
|
733
730
|
};
|
|
734
731
|
|
|
735
732
|
export declare const dropDownMenuClasses: {
|
|
736
|
-
root: "HvDropDownMenu-root";
|
|
737
733
|
container: "HvDropDownMenu-container";
|
|
734
|
+
root: "HvDropDownMenu-root";
|
|
738
735
|
icon: "HvDropDownMenu-icon";
|
|
739
|
-
baseContainer: "HvDropDownMenu-baseContainer";
|
|
740
736
|
iconSelected: "HvDropDownMenu-iconSelected";
|
|
737
|
+
baseContainer: "HvDropDownMenu-baseContainer";
|
|
741
738
|
menuListRoot: "HvDropDownMenu-menuListRoot";
|
|
742
739
|
menuList: "HvDropDownMenu-menuList";
|
|
743
740
|
};
|
|
@@ -749,14 +746,14 @@ export { ds5 }
|
|
|
749
746
|
export { EmotionContext }
|
|
750
747
|
|
|
751
748
|
export declare const emptyStateClasses: {
|
|
752
|
-
root: "HvEmptyState-root";
|
|
753
749
|
container: "HvEmptyState-container";
|
|
754
|
-
|
|
750
|
+
root: "HvEmptyState-root";
|
|
751
|
+
titleContainer: "HvEmptyState-titleContainer";
|
|
752
|
+
messageContainer: "HvEmptyState-messageContainer";
|
|
755
753
|
containerMessageOnly: "HvEmptyState-containerMessageOnly";
|
|
756
754
|
iconContainer: "HvEmptyState-iconContainer";
|
|
757
|
-
titleContainer: "HvEmptyState-titleContainer";
|
|
758
755
|
textContainer: "HvEmptyState-textContainer";
|
|
759
|
-
|
|
756
|
+
actionContainer: "HvEmptyState-actionContainer";
|
|
760
757
|
};
|
|
761
758
|
|
|
762
759
|
export declare type ExtractNames<T extends (...args: any) => {
|
|
@@ -766,27 +763,27 @@ export declare type ExtractNames<T extends (...args: any) => {
|
|
|
766
763
|
|
|
767
764
|
export declare const fileClasses: {
|
|
768
765
|
root: "HvFile-root";
|
|
769
|
-
progressbar: "HvFile-progressbar";
|
|
770
766
|
icon: "HvFile-icon";
|
|
771
|
-
removeButton: "HvFile-removeButton";
|
|
772
|
-
fail: "HvFile-fail";
|
|
773
767
|
progressbarContainer: "HvFile-progressbarContainer";
|
|
768
|
+
previewContainer: "HvFile-previewContainer";
|
|
769
|
+
progressbar: "HvFile-progressbar";
|
|
774
770
|
progressbarBack: "HvFile-progressbarBack";
|
|
775
771
|
nameText: "HvFile-nameText";
|
|
776
772
|
progressTextContainer: "HvFile-progressTextContainer";
|
|
777
|
-
|
|
773
|
+
removeButton: "HvFile-removeButton";
|
|
774
|
+
fail: "HvFile-fail";
|
|
778
775
|
};
|
|
779
776
|
|
|
780
777
|
export declare const fileUploaderPreviewClasses: {
|
|
781
|
-
overlay: "HvFileUploaderPreview-overlay";
|
|
782
778
|
previewButton: "HvFileUploaderPreview-previewButton";
|
|
779
|
+
overlay: "HvFileUploaderPreview-overlay";
|
|
783
780
|
};
|
|
784
781
|
|
|
785
782
|
export declare const filterGroupClasses: {
|
|
786
783
|
label: "HvFilterGroup-label";
|
|
784
|
+
description: "HvFilterGroup-description";
|
|
787
785
|
root: "HvFilterGroup-root";
|
|
788
786
|
error: "HvFilterGroup-error";
|
|
789
|
-
description: "HvFilterGroup-description";
|
|
790
787
|
labelContainer: "HvFilterGroup-labelContainer";
|
|
791
788
|
};
|
|
792
789
|
|
|
@@ -822,18 +819,18 @@ export declare const focusClasses: {
|
|
|
822
819
|
root: "HvFocus-root";
|
|
823
820
|
disabled: "HvFocus-disabled";
|
|
824
821
|
selected: "HvFocus-selected";
|
|
825
|
-
focus: "HvFocus-focus";
|
|
826
|
-
focused: "HvFocus-focused";
|
|
827
822
|
focusDisabled: "HvFocus-focusDisabled";
|
|
823
|
+
focused: "HvFocus-focused";
|
|
828
824
|
externalReference: "HvFocus-externalReference";
|
|
829
825
|
falseFocus: "HvFocus-falseFocus";
|
|
826
|
+
focus: "HvFocus-focus";
|
|
830
827
|
};
|
|
831
828
|
|
|
832
829
|
export declare const footerClasses: {
|
|
830
|
+
name: "HvFooter-name";
|
|
833
831
|
small: "HvFooter-small";
|
|
834
832
|
root: "HvFooter-root";
|
|
835
833
|
separator: "HvFooter-separator";
|
|
836
|
-
name: "HvFooter-name";
|
|
837
834
|
rightContainer: "HvFooter-rightContainer";
|
|
838
835
|
copyright: "HvFooter-copyright";
|
|
839
836
|
};
|
|
@@ -917,22 +914,22 @@ export declare const getTableHeadPropsHook: (props: any, { instance }: {
|
|
|
917
914
|
export declare const getVarValue: (cssVar: string, rootElementId?: string) => string | undefined;
|
|
918
915
|
|
|
919
916
|
export declare const globalActionsClasses: {
|
|
920
|
-
root: "HvGlobalActions-root";
|
|
921
917
|
name: "HvGlobalActions-name";
|
|
922
|
-
|
|
918
|
+
root: "HvGlobalActions-root";
|
|
923
919
|
wrapper: "HvGlobalActions-wrapper";
|
|
920
|
+
globalSectionArea: "HvGlobalActions-globalSectionArea";
|
|
921
|
+
sectionName: "HvGlobalActions-sectionName";
|
|
924
922
|
actions: "HvGlobalActions-actions";
|
|
925
923
|
positionSticky: "HvGlobalActions-positionSticky";
|
|
926
924
|
positionFixed: "HvGlobalActions-positionFixed";
|
|
925
|
+
global: "HvGlobalActions-global";
|
|
927
926
|
globalWrapperComplement: "HvGlobalActions-globalWrapperComplement";
|
|
928
|
-
globalSectionArea: "HvGlobalActions-globalSectionArea";
|
|
929
927
|
backButton: "HvGlobalActions-backButton";
|
|
930
|
-
sectionName: "HvGlobalActions-sectionName";
|
|
931
928
|
};
|
|
932
929
|
|
|
933
930
|
export declare const gridClasses: {
|
|
934
|
-
root: "HvGrid-root";
|
|
935
931
|
container: "HvGrid-container";
|
|
932
|
+
root: "HvGrid-root";
|
|
936
933
|
item: "HvGrid-item";
|
|
937
934
|
zeroMinWidth: "HvGrid-zeroMinWidth";
|
|
938
935
|
"direction-xs-column": "HvGrid-direction-xs-column";
|
|
@@ -977,9 +974,9 @@ export declare const headerBrandClasses: {
|
|
|
977
974
|
};
|
|
978
975
|
|
|
979
976
|
export declare const headerClasses: {
|
|
977
|
+
backgroundColor: "HvHeader-backgroundColor";
|
|
980
978
|
header: "HvHeader-header";
|
|
981
979
|
root: "HvHeader-root";
|
|
982
|
-
backgroundColor: "HvHeader-backgroundColor";
|
|
983
980
|
};
|
|
984
981
|
|
|
985
982
|
export declare const headerNavigationClasses: {
|
|
@@ -989,10 +986,10 @@ export declare const headerNavigationClasses: {
|
|
|
989
986
|
export declare const hexToRgbA: (hex: any, factor?: number) => string;
|
|
990
987
|
|
|
991
988
|
export declare const horizontalScrollListItemClasses: {
|
|
992
|
-
button: "HvHorizontalScrollListItem-button";
|
|
993
|
-
text: "HvHorizontalScrollListItem-text";
|
|
994
989
|
root: "HvHorizontalScrollListItem-root";
|
|
995
990
|
selected: "HvHorizontalScrollListItem-selected";
|
|
991
|
+
button: "HvHorizontalScrollListItem-button";
|
|
992
|
+
text: "HvHorizontalScrollListItem-text";
|
|
996
993
|
};
|
|
997
994
|
|
|
998
995
|
export { HvAccentColor }
|
|
@@ -1112,7 +1109,7 @@ export declare interface HvActionsGenericProps extends HvBaseProps {
|
|
|
1112
1109
|
* As such, its functionality, if any, for accessibility purposes must be provided through an alternative mean,
|
|
1113
1110
|
* or by using a regular icon button or toggle button instead.
|
|
1114
1111
|
*/
|
|
1115
|
-
export declare const HvAdornment: ForwardRefExoticComponent<HvAdornmentProps & RefAttributes<
|
|
1112
|
+
export declare const HvAdornment: ForwardRefExoticComponent<HvAdornmentProps & RefAttributes<HTMLButtonElement | HTMLDivElement>>;
|
|
1116
1113
|
|
|
1117
1114
|
export declare type HvAdornmentClasses = ExtractNames<typeof useClasses_6>;
|
|
1118
1115
|
|
|
@@ -5434,9 +5431,9 @@ export declare interface HvScrollToVerticalProps extends HvBaseProps<HTMLOListEl
|
|
|
5434
5431
|
/**
|
|
5435
5432
|
* Sections allow grouping information on a page under the same topic.
|
|
5436
5433
|
*/
|
|
5437
|
-
export declare const HvSection:
|
|
5434
|
+
export declare const HvSection: ForwardRefExoticComponent<HvSectionProps & RefAttributes<HTMLDivElement>>;
|
|
5438
5435
|
|
|
5439
|
-
export declare type HvSectionClasses = ExtractNames<typeof
|
|
5436
|
+
export declare type HvSectionClasses = ExtractNames<typeof useClasses_122>;
|
|
5440
5437
|
|
|
5441
5438
|
export declare interface HvSectionProps extends Omit<HvBaseProps<HTMLDivElement>, "title"> {
|
|
5442
5439
|
/** The title of the section */
|
|
@@ -6756,18 +6753,60 @@ export declare interface HvTooltipProps extends Omit<TooltipProps, "classes"> {
|
|
|
6756
6753
|
containerId?: string;
|
|
6757
6754
|
}
|
|
6758
6755
|
|
|
6759
|
-
|
|
6756
|
+
declare type HvTreeContentClasses = ExtractNames<typeof useClasses_121>;
|
|
6757
|
+
|
|
6758
|
+
export declare interface HvTreeContentProps extends HTMLAttributes<HTMLElement> {
|
|
6759
|
+
/** className applied to the root element. */
|
|
6760
|
+
className?: string;
|
|
6761
|
+
/** Override or extend the styles applied to the component. */
|
|
6762
|
+
classes?: HvTreeContentClasses;
|
|
6763
|
+
/** The tree node label. */
|
|
6764
|
+
label?: ReactNode;
|
|
6765
|
+
/** The id of the node. */
|
|
6766
|
+
nodeId: string;
|
|
6767
|
+
/** The icon to display next to the tree node's label. */
|
|
6768
|
+
icon?: ReactNode;
|
|
6769
|
+
/** The icon to display next to the tree node's label. Either an expansion or collapse icon. */
|
|
6770
|
+
expansionIcon?: ReactNode;
|
|
6771
|
+
/** The icon to display next to the tree node's label. Either a parent or end icon. */
|
|
6772
|
+
displayIcon?: ReactNode;
|
|
6760
6773
|
}
|
|
6761
6774
|
|
|
6762
6775
|
export declare const HvTreeItem: ForwardRefExoticComponent<HvTreeItemProps & RefAttributes<HTMLLIElement>>;
|
|
6763
6776
|
|
|
6764
6777
|
export declare type HvTreeItemClasses = ExtractNames<typeof useClasses_120>;
|
|
6765
6778
|
|
|
6766
|
-
export declare interface HvTreeItemProps extends
|
|
6779
|
+
export declare interface HvTreeItemProps extends HTMLAttributes<HTMLElement> {
|
|
6780
|
+
/** The element id */
|
|
6781
|
+
id?: string;
|
|
6782
|
+
/** The id of the node. */
|
|
6783
|
+
nodeId: string;
|
|
6784
|
+
/** The tree node label. */
|
|
6785
|
+
label?: ReactNode;
|
|
6786
|
+
/** Override or extend the styles applied to the component. */
|
|
6767
6787
|
classes?: HvTreeItemClasses;
|
|
6788
|
+
/** If `true`, the node is disabled. */
|
|
6768
6789
|
disabled?: boolean;
|
|
6790
|
+
/** The icon to display next to the tree node's label. */
|
|
6769
6791
|
icon?: ReactNode;
|
|
6770
|
-
|
|
6792
|
+
/** The component used for the content node. */
|
|
6793
|
+
ContentComponent?: JSXElementConstructor<HvTreeContentProps>;
|
|
6794
|
+
/** Props applied to the content component */
|
|
6795
|
+
ContentProps?: HvTreeContentProps;
|
|
6796
|
+
/** The content of the component. */
|
|
6797
|
+
children?: ReactNode;
|
|
6798
|
+
/** className applied to the root element. */
|
|
6799
|
+
className?: string;
|
|
6800
|
+
/** The icon used to collapse the node. */
|
|
6801
|
+
collapseIcon?: ReactNode;
|
|
6802
|
+
/** The icon displayed next to an end node. */
|
|
6803
|
+
endIcon?: ReactNode;
|
|
6804
|
+
/** The icon used to expand the node. */
|
|
6805
|
+
expandIcon?: ReactNode;
|
|
6806
|
+
/** The component used for the transition. */
|
|
6807
|
+
TransitionComponent?: JSXElementConstructor<TransitionProps>;
|
|
6808
|
+
/** Props applied to the transition component */
|
|
6809
|
+
TransitionProps?: TransitionProps;
|
|
6771
6810
|
}
|
|
6772
6811
|
|
|
6773
6812
|
/**
|
|
@@ -7337,7 +7376,7 @@ export declare const iconVariant: (variant: "success" | "warning" | "error" | "i
|
|
|
7337
7376
|
|
|
7338
7377
|
declare type IdType<D> = StringKey<D> | string;
|
|
7339
7378
|
|
|
7340
|
-
export declare const increaseSize: (size: string) => "
|
|
7379
|
+
export declare const increaseSize: (size: string) => "S" | "M" | "L" | "XL";
|
|
7341
7380
|
|
|
7342
7381
|
export declare const infoMessageClasses: {
|
|
7343
7382
|
root: "HvInfoMessage-root";
|
|
@@ -7346,33 +7385,33 @@ export declare const infoMessageClasses: {
|
|
|
7346
7385
|
};
|
|
7347
7386
|
|
|
7348
7387
|
export declare const inlineEditorClasses: {
|
|
7349
|
-
button: "HvInlineEditor-button";
|
|
7350
|
-
input: "HvInlineEditor-input";
|
|
7351
|
-
text: "HvInlineEditor-text";
|
|
7352
7388
|
root: "HvInlineEditor-root";
|
|
7353
|
-
icon: "HvInlineEditor-icon";
|
|
7354
7389
|
inputBorderContainer: "HvInlineEditor-inputBorderContainer";
|
|
7355
7390
|
inputRoot: "HvInlineEditor-inputRoot";
|
|
7391
|
+
input: "HvInlineEditor-input";
|
|
7392
|
+
icon: "HvInlineEditor-icon";
|
|
7393
|
+
button: "HvInlineEditor-button";
|
|
7394
|
+
text: "HvInlineEditor-text";
|
|
7356
7395
|
largeText: "HvInlineEditor-largeText";
|
|
7357
7396
|
textEmpty: "HvInlineEditor-textEmpty";
|
|
7358
7397
|
iconVisible: "HvInlineEditor-iconVisible";
|
|
7359
7398
|
};
|
|
7360
7399
|
|
|
7361
7400
|
export declare const inputClasses: {
|
|
7362
|
-
input: "HvInput-input";
|
|
7363
7401
|
label: "HvInput-label";
|
|
7402
|
+
description: "HvInput-description";
|
|
7364
7403
|
root: "HvInput-root";
|
|
7365
|
-
icon: "HvInput-icon";
|
|
7366
|
-
error: "HvInput-error";
|
|
7367
7404
|
inputBorderContainer: "HvInput-inputBorderContainer";
|
|
7368
7405
|
inputRoot: "HvInput-inputRoot";
|
|
7369
7406
|
inputRootFocused: "HvInput-inputRootFocused";
|
|
7370
|
-
inputRootDisabled: "HvInput-inputRootDisabled";
|
|
7371
7407
|
inputRootMultiline: "HvInput-inputRootMultiline";
|
|
7372
|
-
|
|
7408
|
+
input: "HvInput-input";
|
|
7409
|
+
icon: "HvInput-icon";
|
|
7410
|
+
adornmentButton: "HvInput-adornmentButton";
|
|
7411
|
+
error: "HvInput-error";
|
|
7412
|
+
inputRootDisabled: "HvInput-inputRootDisabled";
|
|
7373
7413
|
labelContainer: "HvInput-labelContainer";
|
|
7374
7414
|
adornmentsBox: "HvInput-adornmentsBox";
|
|
7375
|
-
adornmentButton: "HvInput-adornmentButton";
|
|
7376
7415
|
iconClear: "HvInput-iconClear";
|
|
7377
7416
|
hasSuggestions: "HvInput-hasSuggestions";
|
|
7378
7417
|
suggestionsContainer: "HvInput-suggestionsContainer";
|
|
@@ -7446,13 +7485,13 @@ export declare const linkClasses: {
|
|
|
7446
7485
|
export declare const listClasses: {
|
|
7447
7486
|
link: "HvList-link";
|
|
7448
7487
|
root: "HvList-root";
|
|
7488
|
+
itemSelector: "HvList-itemSelector";
|
|
7449
7489
|
item: "HvList-item";
|
|
7450
7490
|
virtualizedRoot: "HvList-virtualizedRoot";
|
|
7451
7491
|
selectorRoot: "HvList-selectorRoot";
|
|
7452
7492
|
selectorContainer: "HvList-selectorContainer";
|
|
7453
7493
|
box: "HvList-box";
|
|
7454
7494
|
truncate: "HvList-truncate";
|
|
7455
|
-
itemSelector: "HvList-itemSelector";
|
|
7456
7495
|
selectAllSelector: "HvList-selectAllSelector";
|
|
7457
7496
|
};
|
|
7458
7497
|
|
|
@@ -7462,24 +7501,24 @@ export declare const listContainerClasses: {
|
|
|
7462
7501
|
|
|
7463
7502
|
export declare const listItemClasses: {
|
|
7464
7503
|
root: "HvListItem-root";
|
|
7465
|
-
condensed: "HvListItem-condensed";
|
|
7466
7504
|
disabled: "HvListItem-disabled";
|
|
7467
7505
|
selected: "HvListItem-selected";
|
|
7506
|
+
condensed: "HvListItem-condensed";
|
|
7468
7507
|
focus: "HvListItem-focus";
|
|
7469
7508
|
interactive: "HvListItem-interactive";
|
|
7470
|
-
endAdornment: "HvListItem-endAdornment";
|
|
7471
7509
|
startAdornment: "HvListItem-startAdornment";
|
|
7510
|
+
endAdornment: "HvListItem-endAdornment";
|
|
7472
7511
|
gutters: "HvListItem-gutters";
|
|
7473
7512
|
withStartAdornment: "HvListItem-withStartAdornment";
|
|
7474
7513
|
withEndAdornment: "HvListItem-withEndAdornment";
|
|
7475
7514
|
};
|
|
7476
7515
|
|
|
7477
7516
|
export declare const loadingClasses: {
|
|
7478
|
-
hidden: "HvLoading-hidden";
|
|
7479
7517
|
small: "HvLoading-small";
|
|
7480
7518
|
label: "HvLoading-label";
|
|
7481
7519
|
root: "HvLoading-root";
|
|
7482
7520
|
overlay: "HvLoading-overlay";
|
|
7521
|
+
hidden: "HvLoading-hidden";
|
|
7483
7522
|
blur: "HvLoading-blur";
|
|
7484
7523
|
barContainer: "HvLoading-barContainer";
|
|
7485
7524
|
loadingBar: "HvLoading-loadingBar";
|
|
@@ -7494,10 +7533,10 @@ export declare const loginClasses: {
|
|
|
7494
7533
|
};
|
|
7495
7534
|
|
|
7496
7535
|
export declare const multiButtonClasses: {
|
|
7497
|
-
button: "HvMultiButton-button";
|
|
7498
|
-
root: "HvMultiButton-root";
|
|
7499
7536
|
vertical: "HvMultiButton-vertical";
|
|
7537
|
+
root: "HvMultiButton-root";
|
|
7500
7538
|
selected: "HvMultiButton-selected";
|
|
7539
|
+
button: "HvMultiButton-button";
|
|
7501
7540
|
};
|
|
7502
7541
|
|
|
7503
7542
|
export declare const multiSelectionEventHandler: (evt: any, index: any, selectionAnchor: any, allValues: any, selectedState: any, selectionCheck: any) => any[];
|
|
@@ -7539,12 +7578,12 @@ export declare const paginationClasses: {
|
|
|
7539
7578
|
root: "HvPagination-root";
|
|
7540
7579
|
icon: "HvPagination-icon";
|
|
7541
7580
|
pageSizeOptions: "HvPagination-pageSizeOptions";
|
|
7542
|
-
iconContainer: "HvPagination-iconContainer";
|
|
7543
7581
|
pageSizeHeader: "HvPagination-pageSizeHeader";
|
|
7544
7582
|
pageSizeTextContainer: "HvPagination-pageSizeTextContainer";
|
|
7545
|
-
totalPagesTextContainer: "HvPagination-totalPagesTextContainer";
|
|
7546
7583
|
pageSizeOptionsSelect: "HvPagination-pageSizeOptionsSelect";
|
|
7584
|
+
totalPagesTextContainer: "HvPagination-totalPagesTextContainer";
|
|
7547
7585
|
pageNavigator: "HvPagination-pageNavigator";
|
|
7586
|
+
iconContainer: "HvPagination-iconContainer";
|
|
7548
7587
|
pageInfo: "HvPagination-pageInfo";
|
|
7549
7588
|
pageJump: "HvPagination-pageJump";
|
|
7550
7589
|
pageSizeInput: "HvPagination-pageSizeInput";
|
|
@@ -7576,8 +7615,8 @@ export declare function prepareRow(row: any, { instance }: {
|
|
|
7576
7615
|
export declare const processThemes: (themesList?: (HvTheme | HvThemeStructure)[]) => (HvTheme | HvThemeStructure)[];
|
|
7577
7616
|
|
|
7578
7617
|
export declare const progressBarClasses: {
|
|
7579
|
-
progress: "HvProgressBar-progress";
|
|
7580
7618
|
root: "HvProgressBar-root";
|
|
7619
|
+
progress: "HvProgressBar-progress";
|
|
7581
7620
|
progressBar: "HvProgressBar-progressBar";
|
|
7582
7621
|
progressBarLabel: "HvProgressBar-progressBarLabel";
|
|
7583
7622
|
progressContainer: "HvProgressBar-progressContainer";
|
|
@@ -7592,39 +7631,39 @@ export declare const queryBuilderClasses: {
|
|
|
7592
7631
|
root: "HvQueryBuilder-root";
|
|
7593
7632
|
topGroup: "HvQueryBuilder-topGroup";
|
|
7594
7633
|
subGroup: "HvQueryBuilder-subGroup";
|
|
7634
|
+
subRulesContainer: "HvQueryBuilder-subRulesContainer";
|
|
7635
|
+
topActionButtonContainer: "HvQueryBuilder-topActionButtonContainer";
|
|
7636
|
+
removeButton: "HvQueryBuilder-removeButton";
|
|
7595
7637
|
combinator: "HvQueryBuilder-combinator";
|
|
7596
7638
|
topCombinator: "HvQueryBuilder-topCombinator";
|
|
7597
7639
|
combinatorButton: "HvQueryBuilder-combinatorButton";
|
|
7598
|
-
removeButton: "HvQueryBuilder-removeButton";
|
|
7599
7640
|
topRemoveButton: "HvQueryBuilder-topRemoveButton";
|
|
7600
7641
|
topRemoveButtonDisabled: "HvQueryBuilder-topRemoveButtonDisabled";
|
|
7601
7642
|
rulesContainer: "HvQueryBuilder-rulesContainer";
|
|
7602
|
-
subRulesContainer: "HvQueryBuilder-subRulesContainer";
|
|
7603
7643
|
actionButtonContainer: "HvQueryBuilder-actionButtonContainer";
|
|
7604
|
-
topActionButtonContainer: "HvQueryBuilder-topActionButtonContainer";
|
|
7605
7644
|
topRulesContainer: "HvQueryBuilder-topRulesContainer";
|
|
7606
7645
|
buttonBackground: "HvQueryBuilder-buttonBackground";
|
|
7607
7646
|
};
|
|
7608
7647
|
|
|
7609
7648
|
export declare const radioClasses: {
|
|
7649
|
+
container: "HvRadio-container";
|
|
7610
7650
|
label: "HvRadio-label";
|
|
7611
7651
|
root: "HvRadio-root";
|
|
7612
|
-
container: "HvRadio-container";
|
|
7613
|
-
radio: "HvRadio-radio";
|
|
7614
7652
|
disabled: "HvRadio-disabled";
|
|
7653
|
+
radio: "HvRadio-radio";
|
|
7615
7654
|
focusVisible: "HvRadio-focusVisible";
|
|
7616
7655
|
invalidContainer: "HvRadio-invalidContainer";
|
|
7617
7656
|
invalidRadio: "HvRadio-invalidRadio";
|
|
7618
7657
|
};
|
|
7619
7658
|
|
|
7620
7659
|
export declare const radioGroupClasses: {
|
|
7660
|
+
vertical: "HvRadioGroup-vertical";
|
|
7661
|
+
horizontal: "HvRadioGroup-horizontal";
|
|
7621
7662
|
label: "HvRadioGroup-label";
|
|
7622
7663
|
root: "HvRadioGroup-root";
|
|
7623
|
-
horizontal: "HvRadioGroup-horizontal";
|
|
7624
|
-
vertical: "HvRadioGroup-vertical";
|
|
7625
7664
|
group: "HvRadioGroup-group";
|
|
7626
|
-
error: "HvRadioGroup-error";
|
|
7627
7665
|
invalid: "HvRadioGroup-invalid";
|
|
7666
|
+
error: "HvRadioGroup-error";
|
|
7628
7667
|
};
|
|
7629
7668
|
|
|
7630
7669
|
export declare class Random {
|
|
@@ -7648,10 +7687,10 @@ export declare const rightControlClasses: {
|
|
|
7648
7687
|
export declare const scrollToHorizontalClasses: {
|
|
7649
7688
|
root: "HvScrollToHorizontal-root";
|
|
7650
7689
|
selected: "HvScrollToHorizontal-selected";
|
|
7690
|
+
notSelected: "HvScrollToHorizontal-notSelected";
|
|
7691
|
+
notSelectedRoot: "HvScrollToHorizontal-notSelectedRoot";
|
|
7651
7692
|
positionSticky: "HvScrollToHorizontal-positionSticky";
|
|
7652
7693
|
positionFixed: "HvScrollToHorizontal-positionFixed";
|
|
7653
|
-
notSelectedRoot: "HvScrollToHorizontal-notSelectedRoot";
|
|
7654
|
-
notSelected: "HvScrollToHorizontal-notSelected";
|
|
7655
7694
|
};
|
|
7656
7695
|
|
|
7657
7696
|
export declare const scrollToVerticalClasses: {
|
|
@@ -7661,22 +7700,22 @@ export declare const scrollToVerticalClasses: {
|
|
|
7661
7700
|
};
|
|
7662
7701
|
|
|
7663
7702
|
export declare const sectionClasses: {
|
|
7664
|
-
hidden: "HvSection-hidden";
|
|
7665
7703
|
content: "HvSection-content";
|
|
7666
7704
|
header: "HvSection-header";
|
|
7667
7705
|
root: "HvSection-root";
|
|
7706
|
+
hidden: "HvSection-hidden";
|
|
7668
7707
|
actions: "HvSection-actions";
|
|
7669
7708
|
};
|
|
7670
7709
|
|
|
7671
7710
|
export declare const selectionListClasses: {
|
|
7711
|
+
vertical: "HvSelectionList-vertical";
|
|
7712
|
+
horizontal: "HvSelectionList-horizontal";
|
|
7672
7713
|
label: "HvSelectionList-label";
|
|
7714
|
+
description: "HvSelectionList-description";
|
|
7673
7715
|
root: "HvSelectionList-root";
|
|
7674
|
-
horizontal: "HvSelectionList-horizontal";
|
|
7675
|
-
vertical: "HvSelectionList-vertical";
|
|
7676
7716
|
listbox: "HvSelectionList-listbox";
|
|
7677
|
-
error: "HvSelectionList-error";
|
|
7678
7717
|
invalid: "HvSelectionList-invalid";
|
|
7679
|
-
|
|
7718
|
+
error: "HvSelectionList-error";
|
|
7680
7719
|
};
|
|
7681
7720
|
|
|
7682
7721
|
/**
|
|
@@ -7695,16 +7734,16 @@ export declare const simpleGridClasses: {
|
|
|
7695
7734
|
export declare const sliderClasses: {
|
|
7696
7735
|
label: "HvSlider-label";
|
|
7697
7736
|
root: "HvSlider-root";
|
|
7737
|
+
trackDragging: "HvSlider-trackDragging";
|
|
7738
|
+
trackStandBy: "HvSlider-trackStandBy";
|
|
7739
|
+
handleContainer: "HvSlider-handleContainer";
|
|
7698
7740
|
error: "HvSlider-error";
|
|
7699
7741
|
rootDisabled: "HvSlider-rootDisabled";
|
|
7700
7742
|
labelContainer: "HvSlider-labelContainer";
|
|
7701
7743
|
sliderBase: "HvSlider-sliderBase";
|
|
7702
7744
|
sliderContainer: "HvSlider-sliderContainer";
|
|
7703
|
-
trackDragging: "HvSlider-trackDragging";
|
|
7704
|
-
trackStandBy: "HvSlider-trackStandBy";
|
|
7705
7745
|
sliderRoot: "HvSlider-sliderRoot";
|
|
7706
7746
|
rootRange: "HvSlider-rootRange";
|
|
7707
|
-
handleContainer: "HvSlider-handleContainer";
|
|
7708
7747
|
handle: "HvSlider-handle";
|
|
7709
7748
|
handleContainerDisabled: "HvSlider-handleContainerDisabled";
|
|
7710
7749
|
handleHiddenContainer: "HvSlider-handleHiddenContainer";
|
|
@@ -7724,13 +7763,13 @@ export declare const snackbarClasses: {
|
|
|
7724
7763
|
};
|
|
7725
7764
|
|
|
7726
7765
|
export declare const snackbarContentClasses: {
|
|
7727
|
-
root: "HvSnackbar-Content-root";
|
|
7728
7766
|
warning: "HvSnackbar-Content-warning";
|
|
7729
|
-
|
|
7767
|
+
root: "HvSnackbar-Content-root";
|
|
7730
7768
|
action: "HvSnackbar-Content-action";
|
|
7769
|
+
default: "HvSnackbar-Content-default";
|
|
7731
7770
|
error: "HvSnackbar-Content-error";
|
|
7732
|
-
success: "HvSnackbar-Content-success";
|
|
7733
7771
|
message: "HvSnackbar-Content-message";
|
|
7772
|
+
success: "HvSnackbar-Content-success";
|
|
7734
7773
|
messageSpan: "HvSnackbar-Content-messageSpan";
|
|
7735
7774
|
messageText: "HvSnackbar-Content-messageText";
|
|
7736
7775
|
iconVariant: "HvSnackbar-Content-iconVariant";
|
|
@@ -7743,12 +7782,12 @@ export declare const snackbarProviderClasses: {
|
|
|
7743
7782
|
export declare type Spacing = "sm" | "md" | "lg" | "xl";
|
|
7744
7783
|
|
|
7745
7784
|
export declare const stackClasses: {
|
|
7746
|
-
root: "HvStack-root";
|
|
7747
7785
|
xs: "HvStack-xs";
|
|
7748
7786
|
sm: "HvStack-sm";
|
|
7749
7787
|
md: "HvStack-md";
|
|
7750
7788
|
lg: "HvStack-lg";
|
|
7751
7789
|
xl: "HvStack-xl";
|
|
7790
|
+
root: "HvStack-root";
|
|
7752
7791
|
row: "HvStack-row";
|
|
7753
7792
|
column: "HvStack-column";
|
|
7754
7793
|
};
|
|
@@ -7757,16 +7796,16 @@ declare type StringKey<D> = Extract<keyof D, string>;
|
|
|
7757
7796
|
|
|
7758
7797
|
export declare const suggestionsClasses: {
|
|
7759
7798
|
root: "HvSuggestions-root";
|
|
7760
|
-
popper: "HvSuggestions-popper";
|
|
7761
7799
|
list: "HvSuggestions-list";
|
|
7800
|
+
popper: "HvSuggestions-popper";
|
|
7762
7801
|
};
|
|
7763
7802
|
|
|
7764
7803
|
export declare const switchClasses: {
|
|
7765
7804
|
label: "HvSwitch-label";
|
|
7766
7805
|
root: "HvSwitch-root";
|
|
7806
|
+
invalidSwitch: "HvSwitch-invalidSwitch";
|
|
7767
7807
|
error: "HvSwitch-error";
|
|
7768
7808
|
switchContainer: "HvSwitch-switchContainer";
|
|
7769
|
-
invalidSwitch: "HvSwitch-invalidSwitch";
|
|
7770
7809
|
};
|
|
7771
7810
|
|
|
7772
7811
|
declare type SxProps = React.CSSProperties | ((theme: HvTheme_2) => React.CSSProperties);
|
|
@@ -7784,29 +7823,29 @@ export declare const tableBodyClasses: {
|
|
|
7784
7823
|
|
|
7785
7824
|
export declare const tableCellClasses: {
|
|
7786
7825
|
body: "HvTableCell-body";
|
|
7787
|
-
footer: "HvTableCell-footer";
|
|
7788
|
-
head: "HvTableCell-head";
|
|
7789
7826
|
root: "HvTableCell-root";
|
|
7827
|
+
head: "HvTableCell-head";
|
|
7828
|
+
variantListactions: "HvTableCell-variantListactions";
|
|
7829
|
+
variantListcheckbox: "HvTableCell-variantListcheckbox";
|
|
7830
|
+
variantList: "HvTableCell-variantList";
|
|
7831
|
+
footer: "HvTableCell-footer";
|
|
7790
7832
|
resizable: "HvTableCell-resizable";
|
|
7791
|
-
|
|
7833
|
+
alignLeft: "HvTableCell-alignLeft";
|
|
7834
|
+
alignCenter: "HvTableCell-alignCenter";
|
|
7835
|
+
alignRight: "HvTableCell-alignRight";
|
|
7836
|
+
alignJustify: "HvTableCell-alignJustify";
|
|
7792
7837
|
stickyColumn: "HvTableCell-stickyColumn";
|
|
7793
7838
|
stickyColumnMostLeft: "HvTableCell-stickyColumnMostLeft";
|
|
7794
7839
|
stickyColumnLeastRight: "HvTableCell-stickyColumnLeastRight";
|
|
7795
7840
|
groupColumnMostLeft: "HvTableCell-groupColumnMostLeft";
|
|
7796
7841
|
groupColumnMostRight: "HvTableCell-groupColumnMostRight";
|
|
7797
|
-
|
|
7798
|
-
alignLeft: "HvTableCell-alignLeft";
|
|
7799
|
-
alignCenter: "HvTableCell-alignCenter";
|
|
7800
|
-
alignRight: "HvTableCell-alignRight";
|
|
7801
|
-
alignJustify: "HvTableCell-alignJustify";
|
|
7802
|
-
variantNone: "HvTableCell-variantNone";
|
|
7842
|
+
sorted: "HvTableCell-sorted";
|
|
7803
7843
|
variantCheckbox: "HvTableCell-variantCheckbox";
|
|
7804
|
-
variantActions: "HvTableCell-variantActions";
|
|
7805
7844
|
variantExpand: "HvTableCell-variantExpand";
|
|
7806
|
-
|
|
7845
|
+
variantActions: "HvTableCell-variantActions";
|
|
7846
|
+
variantNone: "HvTableCell-variantNone";
|
|
7847
|
+
resizing: "HvTableCell-resizing";
|
|
7807
7848
|
variantListHead: "HvTableCell-variantListHead";
|
|
7808
|
-
variantListactions: "HvTableCell-variantListactions";
|
|
7809
|
-
variantListcheckbox: "HvTableCell-variantListcheckbox";
|
|
7810
7849
|
};
|
|
7811
7850
|
|
|
7812
7851
|
export declare const tableClasses: {
|
|
@@ -7827,50 +7866,50 @@ export declare const tableHeadClasses: {
|
|
|
7827
7866
|
|
|
7828
7867
|
export declare const tableHeaderClasses: {
|
|
7829
7868
|
body: "HvTableHeader-body";
|
|
7830
|
-
footer: "HvTableHeader-footer";
|
|
7831
|
-
head: "HvTableHeader-head";
|
|
7832
7869
|
root: "HvTableHeader-root";
|
|
7870
|
+
head: "HvTableHeader-head";
|
|
7871
|
+
sortButton: "HvTableHeader-sortButton";
|
|
7872
|
+
variantList: "HvTableHeader-variantList";
|
|
7833
7873
|
resizer: "HvTableHeader-resizer";
|
|
7874
|
+
footer: "HvTableHeader-footer";
|
|
7834
7875
|
resizable: "HvTableHeader-resizable";
|
|
7835
|
-
|
|
7836
|
-
|
|
7876
|
+
alignLeft: "HvTableHeader-alignLeft";
|
|
7877
|
+
alignCenter: "HvTableHeader-alignCenter";
|
|
7878
|
+
alignRight: "HvTableHeader-alignRight";
|
|
7879
|
+
alignJustify: "HvTableHeader-alignJustify";
|
|
7837
7880
|
stickyColumn: "HvTableHeader-stickyColumn";
|
|
7838
7881
|
stickyColumnMostLeft: "HvTableHeader-stickyColumnMostLeft";
|
|
7839
7882
|
stickyColumnLeastRight: "HvTableHeader-stickyColumnLeastRight";
|
|
7840
7883
|
groupColumnMostLeft: "HvTableHeader-groupColumnMostLeft";
|
|
7841
7884
|
groupColumnMostRight: "HvTableHeader-groupColumnMostRight";
|
|
7842
|
-
resizing: "HvTableHeader-resizing";
|
|
7843
|
-
alignLeft: "HvTableHeader-alignLeft";
|
|
7844
|
-
alignCenter: "HvTableHeader-alignCenter";
|
|
7845
|
-
alignRight: "HvTableHeader-alignRight";
|
|
7846
|
-
alignJustify: "HvTableHeader-alignJustify";
|
|
7847
|
-
variantNone: "HvTableHeader-variantNone";
|
|
7848
|
-
variantCheckbox: "HvTableHeader-variantCheckbox";
|
|
7849
|
-
variantActions: "HvTableHeader-variantActions";
|
|
7850
|
-
variantExpand: "HvTableHeader-variantExpand";
|
|
7851
|
-
variantList: "HvTableHeader-variantList";
|
|
7852
7885
|
headerContent: "HvTableHeader-headerContent";
|
|
7853
7886
|
headerText: "HvTableHeader-headerText";
|
|
7854
7887
|
headerParagraph: "HvTableHeader-headerParagraph";
|
|
7855
7888
|
sortableHeaderText: "HvTableHeader-sortableHeaderText";
|
|
7856
|
-
|
|
7889
|
+
sorted: "HvTableHeader-sorted";
|
|
7890
|
+
sortable: "HvTableHeader-sortable";
|
|
7857
7891
|
sortIcon: "HvTableHeader-sortIcon";
|
|
7858
7892
|
alignFlexLeft: "HvTableHeader-alignFlexLeft";
|
|
7859
7893
|
alignFlexRight: "HvTableHeader-alignFlexRight";
|
|
7860
7894
|
alignFlexCenter: "HvTableHeader-alignFlexCenter";
|
|
7861
7895
|
alignFlexJustify: "HvTableHeader-alignFlexJustify";
|
|
7896
|
+
variantCheckbox: "HvTableHeader-variantCheckbox";
|
|
7897
|
+
variantExpand: "HvTableHeader-variantExpand";
|
|
7898
|
+
variantActions: "HvTableHeader-variantActions";
|
|
7899
|
+
variantNone: "HvTableHeader-variantNone";
|
|
7900
|
+
resizing: "HvTableHeader-resizing";
|
|
7862
7901
|
};
|
|
7863
7902
|
|
|
7864
7903
|
export declare const tableRowClasses: {
|
|
7865
7904
|
body: "HvTableRow-body";
|
|
7866
|
-
footer: "HvTableRow-footer";
|
|
7867
|
-
head: "HvTableRow-head";
|
|
7868
7905
|
root: "HvTableRow-root";
|
|
7869
|
-
expanded: "HvTableRow-expanded";
|
|
7870
7906
|
selected: "HvTableRow-selected";
|
|
7871
|
-
|
|
7872
|
-
striped: "HvTableRow-striped";
|
|
7907
|
+
head: "HvTableRow-head";
|
|
7873
7908
|
variantList: "HvTableRow-variantList";
|
|
7909
|
+
expanded: "HvTableRow-expanded";
|
|
7910
|
+
footer: "HvTableRow-footer";
|
|
7911
|
+
striped: "HvTableRow-striped";
|
|
7912
|
+
hover: "HvTableRow-hover";
|
|
7874
7913
|
variantListHead: "HvTableRow-variantListHead";
|
|
7875
7914
|
};
|
|
7876
7915
|
|
|
@@ -7882,10 +7921,10 @@ export declare const tabsClasses: {
|
|
|
7882
7921
|
};
|
|
7883
7922
|
|
|
7884
7923
|
export declare const tagClasses: {
|
|
7885
|
-
button: "HvTag-button";
|
|
7886
7924
|
label: "HvTag-label";
|
|
7887
7925
|
root: "HvTag-root";
|
|
7888
7926
|
disabled: "HvTag-disabled";
|
|
7927
|
+
button: "HvTag-button";
|
|
7889
7928
|
focusVisible: "HvTag-focusVisible";
|
|
7890
7929
|
chipRoot: "HvTag-chipRoot";
|
|
7891
7930
|
clickable: "HvTag-clickable";
|
|
@@ -7898,24 +7937,24 @@ export declare const tagClasses: {
|
|
|
7898
7937
|
};
|
|
7899
7938
|
|
|
7900
7939
|
export declare const tagsInputClasses: {
|
|
7901
|
-
input: "HvTagsInput-input";
|
|
7902
7940
|
label: "HvTagsInput-label";
|
|
7941
|
+
description: "HvTagsInput-description";
|
|
7903
7942
|
root: "HvTagsInput-root";
|
|
7904
7943
|
disabled: "HvTagsInput-disabled";
|
|
7905
7944
|
readOnly: "HvTagsInput-readOnly";
|
|
7906
|
-
|
|
7945
|
+
input: "HvTagsInput-input";
|
|
7946
|
+
tagsList: "HvTagsInput-tagsList";
|
|
7907
7947
|
invalid: "HvTagsInput-invalid";
|
|
7948
|
+
error: "HvTagsInput-error";
|
|
7908
7949
|
resizable: "HvTagsInput-resizable";
|
|
7909
|
-
|
|
7950
|
+
chipRoot: "HvTagsInput-chipRoot";
|
|
7910
7951
|
labelContainer: "HvTagsInput-labelContainer";
|
|
7911
7952
|
suggestionsContainer: "HvTagsInput-suggestionsContainer";
|
|
7912
7953
|
suggestionList: "HvTagsInput-suggestionList";
|
|
7913
7954
|
inputExtension: "HvTagsInput-inputExtension";
|
|
7914
|
-
|
|
7955
|
+
characterCounter: "HvTagsInput-characterCounter";
|
|
7915
7956
|
listItemGutters: "HvTagsInput-listItemGutters";
|
|
7916
7957
|
listItemRoot: "HvTagsInput-listItemRoot";
|
|
7917
|
-
characterCounter: "HvTagsInput-characterCounter";
|
|
7918
|
-
tagsList: "HvTagsInput-tagsList";
|
|
7919
7958
|
tagInputContainerRoot: "HvTagsInput-tagInputContainerRoot";
|
|
7920
7959
|
tagInputRoot: "HvTagsInput-tagInputRoot";
|
|
7921
7960
|
tagSelected: "HvTagsInput-tagSelected";
|
|
@@ -7926,18 +7965,18 @@ export declare const tagsInputClasses: {
|
|
|
7926
7965
|
};
|
|
7927
7966
|
|
|
7928
7967
|
export declare const textAreaClasses: {
|
|
7929
|
-
input: "HvTextArea-input";
|
|
7930
7968
|
label: "HvTextArea-label";
|
|
7969
|
+
description: "HvTextArea-description";
|
|
7931
7970
|
root: "HvTextArea-root";
|
|
7932
7971
|
disabled: "HvTextArea-disabled";
|
|
7933
|
-
|
|
7972
|
+
input: "HvTextArea-input";
|
|
7934
7973
|
invalid: "HvTextArea-invalid";
|
|
7974
|
+
error: "HvTextArea-error";
|
|
7935
7975
|
resizable: "HvTextArea-resizable";
|
|
7936
7976
|
inputResizable: "HvTextArea-inputResizable";
|
|
7937
|
-
description: "HvTextArea-description";
|
|
7938
7977
|
labelContainer: "HvTextArea-labelContainer";
|
|
7939
|
-
characterCounter: "HvTextArea-characterCounter";
|
|
7940
7978
|
baseInput: "HvTextArea-baseInput";
|
|
7979
|
+
characterCounter: "HvTextArea-characterCounter";
|
|
7941
7980
|
};
|
|
7942
7981
|
|
|
7943
7982
|
export { theme }
|
|
@@ -7951,32 +7990,32 @@ export declare const timeAgoClasses: {
|
|
|
7951
7990
|
export declare type TimeFormat = "12" | "24";
|
|
7952
7991
|
|
|
7953
7992
|
export declare const timePickerClasses: {
|
|
7954
|
-
placeholder: "HvTimePicker-placeholder";
|
|
7955
7993
|
label: "HvTimePicker-label";
|
|
7994
|
+
description: "HvTimePicker-description";
|
|
7956
7995
|
root: "HvTimePicker-root";
|
|
7996
|
+
placeholder: "HvTimePicker-placeholder";
|
|
7957
7997
|
icon: "HvTimePicker-icon";
|
|
7958
7998
|
error: "HvTimePicker-error";
|
|
7959
|
-
description: "HvTimePicker-description";
|
|
7960
7999
|
labelContainer: "HvTimePicker-labelContainer";
|
|
8000
|
+
dropdownHeader: "HvTimePicker-dropdownHeader";
|
|
7961
8001
|
dropdownHeaderInvalid: "HvTimePicker-dropdownHeaderInvalid";
|
|
7962
8002
|
dropdownHeaderOpen: "HvTimePicker-dropdownHeaderOpen";
|
|
7963
|
-
dropdownHeader: "HvTimePicker-dropdownHeader";
|
|
7964
8003
|
placeholderDisabled: "HvTimePicker-placeholderDisabled";
|
|
7965
8004
|
dropdownPanel: "HvTimePicker-dropdownPanel";
|
|
7966
8005
|
timePopperContainer: "HvTimePicker-timePopperContainer";
|
|
7967
8006
|
};
|
|
7968
8007
|
|
|
7969
8008
|
export declare const tooltipClasses: {
|
|
7970
|
-
title: "HvTooltip-title";
|
|
7971
8009
|
color: "HvTooltip-color";
|
|
7972
8010
|
root: "HvTooltip-root";
|
|
8011
|
+
title: "HvTooltip-title";
|
|
8012
|
+
popper: "HvTooltip-popper";
|
|
8013
|
+
separator: "HvTooltip-separator";
|
|
7973
8014
|
tooltip: "HvTooltip-tooltip";
|
|
8015
|
+
values: "HvTooltip-values";
|
|
7974
8016
|
tooltipMulti: "HvTooltip-tooltipMulti";
|
|
7975
|
-
popper: "HvTooltip-popper";
|
|
7976
8017
|
valuesContainer: "HvTooltip-valuesContainer";
|
|
7977
|
-
values: "HvTooltip-values";
|
|
7978
8018
|
separatorColor: "HvTooltip-separatorColor";
|
|
7979
|
-
separator: "HvTooltip-separator";
|
|
7980
8019
|
valueWrapper: "HvTooltip-valueWrapper";
|
|
7981
8020
|
};
|
|
7982
8021
|
|
|
@@ -7984,10 +8023,10 @@ export declare const treeItemClasses: {
|
|
|
7984
8023
|
content: "HvTreeItem-content";
|
|
7985
8024
|
label: "HvTreeItem-label";
|
|
7986
8025
|
root: "HvTreeItem-root";
|
|
7987
|
-
group: "HvTreeItem-group";
|
|
7988
|
-
expanded: "HvTreeItem-expanded";
|
|
7989
8026
|
disabled: "HvTreeItem-disabled";
|
|
7990
8027
|
selected: "HvTreeItem-selected";
|
|
8028
|
+
expanded: "HvTreeItem-expanded";
|
|
8029
|
+
group: "HvTreeItem-group";
|
|
7991
8030
|
focused: "HvTreeItem-focused";
|
|
7992
8031
|
iconContainer: "HvTreeItem-iconContainer";
|
|
7993
8032
|
};
|
|
@@ -8002,51 +8041,68 @@ export declare const treeViewClasses: {
|
|
|
8002
8041
|
|
|
8003
8042
|
export declare const treeViewItemClasses: {
|
|
8004
8043
|
content: "HvVerticalNavigationTreeViewItem-content";
|
|
8005
|
-
unselectable: "HvVerticalNavigationTreeViewItem-unselectable";
|
|
8006
|
-
link: "HvVerticalNavigationTreeViewItem-link";
|
|
8007
8044
|
label: "HvVerticalNavigationTreeViewItem-label";
|
|
8008
|
-
|
|
8009
|
-
hide: "HvVerticalNavigationTreeViewItem-hide";
|
|
8010
|
-
expanded: "HvVerticalNavigationTreeViewItem-expanded";
|
|
8045
|
+
link: "HvVerticalNavigationTreeViewItem-link";
|
|
8011
8046
|
disabled: "HvVerticalNavigationTreeViewItem-disabled";
|
|
8047
|
+
selectable: "HvVerticalNavigationTreeViewItem-selectable";
|
|
8012
8048
|
selected: "HvVerticalNavigationTreeViewItem-selected";
|
|
8049
|
+
hide: "HvVerticalNavigationTreeViewItem-hide";
|
|
8050
|
+
expanded: "HvVerticalNavigationTreeViewItem-expanded";
|
|
8051
|
+
unselectable: "HvVerticalNavigationTreeViewItem-unselectable";
|
|
8052
|
+
group: "HvVerticalNavigationTreeViewItem-group";
|
|
8013
8053
|
node: "HvVerticalNavigationTreeViewItem-node";
|
|
8014
8054
|
focused: "HvVerticalNavigationTreeViewItem-focused";
|
|
8015
|
-
selectable: "HvVerticalNavigationTreeViewItem-selectable";
|
|
8016
|
-
expandable: "HvVerticalNavigationTreeViewItem-expandable";
|
|
8017
8055
|
labelIcon: "HvVerticalNavigationTreeViewItem-labelIcon";
|
|
8018
8056
|
collapsed: "HvVerticalNavigationTreeViewItem-collapsed";
|
|
8019
8057
|
minimized: "HvVerticalNavigationTreeViewItem-minimized";
|
|
8058
|
+
expandable: "HvVerticalNavigationTreeViewItem-expandable";
|
|
8020
8059
|
unselected: "HvVerticalNavigationTreeViewItem-unselected";
|
|
8021
8060
|
labelExpandable: "HvVerticalNavigationTreeViewItem-labelExpandable";
|
|
8022
8061
|
};
|
|
8023
8062
|
|
|
8063
|
+
declare interface TreeViewItemRange {
|
|
8064
|
+
start?: string | null;
|
|
8065
|
+
end?: string | null;
|
|
8066
|
+
next?: string | null;
|
|
8067
|
+
current?: string;
|
|
8068
|
+
}
|
|
8069
|
+
|
|
8070
|
+
declare interface TreeViewNode {
|
|
8071
|
+
id: string;
|
|
8072
|
+
idAttribute: string | undefined;
|
|
8073
|
+
index: number;
|
|
8074
|
+
parentId: string | null;
|
|
8075
|
+
expandable: boolean;
|
|
8076
|
+
disabled: boolean | undefined;
|
|
8077
|
+
}
|
|
8078
|
+
|
|
8079
|
+
declare type TreeViewSelectionValue<Multiple extends boolean | undefined> = Multiple extends true ? string[] : string | null;
|
|
8080
|
+
|
|
8024
8081
|
export declare const typographyClasses: {
|
|
8025
|
-
link: "HvTypography-link";
|
|
8026
|
-
body: "HvTypography-body";
|
|
8027
|
-
label: "HvTypography-label";
|
|
8028
|
-
root: "HvTypography-root";
|
|
8029
8082
|
display: "HvTypography-display";
|
|
8083
|
+
"5xlTitle": "HvTypography-5xlTitle";
|
|
8084
|
+
"4xlTitle": "HvTypography-4xlTitle";
|
|
8030
8085
|
title1: "HvTypography-title1";
|
|
8031
8086
|
title2: "HvTypography-title2";
|
|
8032
8087
|
title3: "HvTypography-title3";
|
|
8033
8088
|
title4: "HvTypography-title4";
|
|
8089
|
+
label: "HvTypography-label";
|
|
8090
|
+
body: "HvTypography-body";
|
|
8034
8091
|
caption1: "HvTypography-caption1";
|
|
8035
8092
|
caption2: "HvTypography-caption2";
|
|
8036
|
-
"5xlTitle": "HvTypography-5xlTitle";
|
|
8037
|
-
"4xlTitle": "HvTypography-4xlTitle";
|
|
8038
8093
|
xxlTitle: "HvTypography-xxlTitle";
|
|
8039
8094
|
lTitle: "HvTypography-lTitle";
|
|
8040
8095
|
sTitle: "HvTypography-sTitle";
|
|
8041
8096
|
xxsTitle: "HvTypography-xxsTitle";
|
|
8042
8097
|
sectionTitle: "HvTypography-sectionTitle";
|
|
8043
8098
|
placeholderText: "HvTypography-placeholderText";
|
|
8099
|
+
link: "HvTypography-link";
|
|
8044
8100
|
disabledText: "HvTypography-disabledText";
|
|
8045
8101
|
selectedNavText: "HvTypography-selectedNavText";
|
|
8046
8102
|
vizTextDisabled: "HvTypography-vizTextDisabled";
|
|
8047
8103
|
xsInlineLink: "HvTypography-xsInlineLink";
|
|
8104
|
+
root: "HvTypography-root";
|
|
8048
8105
|
disabled: "HvTypography-disabled";
|
|
8049
|
-
noWrap: "HvTypography-noWrap";
|
|
8050
8106
|
"3xlTitle": "HvTypography-3xlTitle";
|
|
8051
8107
|
xlTitle: "HvTypography-xlTitle";
|
|
8052
8108
|
mTitle: "HvTypography-mTitle";
|
|
@@ -8055,6 +8111,7 @@ export declare const typographyClasses: {
|
|
|
8055
8111
|
normalText: "HvTypography-normalText";
|
|
8056
8112
|
vizText: "HvTypography-vizText";
|
|
8057
8113
|
isLink: "HvTypography-isLink";
|
|
8114
|
+
noWrap: "HvTypography-noWrap";
|
|
8058
8115
|
};
|
|
8059
8116
|
|
|
8060
8117
|
export declare const typographyVariants: readonly ["display", "title1", "title2", "title3", "title4", "body", "label", "caption1", "caption2"];
|
|
@@ -8063,33 +8120,32 @@ export declare type UseBulkActionsProps = (<D extends object = Record<string, un
|
|
|
8063
8120
|
pluginName: string;
|
|
8064
8121
|
};
|
|
8065
8122
|
|
|
8066
|
-
declare const useClasses: (classesProp?: Partial<Record<"
|
|
8123
|
+
declare const useClasses: (classesProp?: Partial<Record<"display" | "5xlTitle" | "4xlTitle" | "title1" | "title2" | "title3" | "title4" | "label" | "body" | "caption1" | "caption2" | "xxlTitle" | "lTitle" | "sTitle" | "xxsTitle" | "sectionTitle" | "placeholderText" | "link" | "disabledText" | "selectedNavText" | "vizTextDisabled" | "xsInlineLink" | "root" | "disabled" | "3xlTitle" | "xlTitle" | "mTitle" | "xsTitle" | "highlightText" | "normalText" | "vizText" | "isLink" | "noWrap", string>>, addStatic?: boolean) => {
|
|
8067
8124
|
classes: {
|
|
8068
|
-
link: string;
|
|
8069
|
-
body: string;
|
|
8070
|
-
label: string;
|
|
8071
|
-
root: string;
|
|
8072
8125
|
display: string;
|
|
8126
|
+
"5xlTitle": string;
|
|
8127
|
+
"4xlTitle": string;
|
|
8073
8128
|
title1: string;
|
|
8074
8129
|
title2: string;
|
|
8075
8130
|
title3: string;
|
|
8076
8131
|
title4: string;
|
|
8132
|
+
label: string;
|
|
8133
|
+
body: string;
|
|
8077
8134
|
caption1: string;
|
|
8078
8135
|
caption2: string;
|
|
8079
|
-
"5xlTitle": string;
|
|
8080
|
-
"4xlTitle": string;
|
|
8081
8136
|
xxlTitle: string;
|
|
8082
8137
|
lTitle: string;
|
|
8083
8138
|
sTitle: string;
|
|
8084
8139
|
xxsTitle: string;
|
|
8085
8140
|
sectionTitle: string;
|
|
8086
8141
|
placeholderText: string;
|
|
8142
|
+
link: string;
|
|
8087
8143
|
disabledText: string;
|
|
8088
8144
|
selectedNavText: string;
|
|
8089
8145
|
vizTextDisabled: string;
|
|
8090
8146
|
xsInlineLink: string;
|
|
8147
|
+
root: string;
|
|
8091
8148
|
disabled: string;
|
|
8092
|
-
noWrap: string;
|
|
8093
8149
|
"3xlTitle": string;
|
|
8094
8150
|
xlTitle: string;
|
|
8095
8151
|
mTitle: string;
|
|
@@ -8098,6 +8154,7 @@ declare const useClasses: (classesProp?: Partial<Record<"link" | "body" | "label
|
|
|
8098
8154
|
normalText: string;
|
|
8099
8155
|
vizText: string;
|
|
8100
8156
|
isLink: string;
|
|
8157
|
+
noWrap: string;
|
|
8101
8158
|
};
|
|
8102
8159
|
css: {
|
|
8103
8160
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8106,14 +8163,14 @@ declare const useClasses: (classesProp?: Partial<Record<"link" | "body" | "label
|
|
|
8106
8163
|
cx: (...args: any) => string;
|
|
8107
8164
|
};
|
|
8108
8165
|
|
|
8109
|
-
declare const useClasses_10: (classesProp?: Partial<Record<"root" | "
|
|
8166
|
+
declare const useClasses_10: (classesProp?: Partial<Record<"root" | "warningText" | "topGutter" | "defaultIcon" | "show" | "hideText" | "topBorder", string>>, addStatic?: boolean) => {
|
|
8110
8167
|
classes: {
|
|
8111
8168
|
root: string;
|
|
8112
|
-
show: string;
|
|
8113
|
-
hideText: string;
|
|
8114
|
-
defaultIcon: string;
|
|
8115
8169
|
warningText: string;
|
|
8116
8170
|
topGutter: string;
|
|
8171
|
+
defaultIcon: string;
|
|
8172
|
+
show: string;
|
|
8173
|
+
hideText: string;
|
|
8117
8174
|
topBorder: string;
|
|
8118
8175
|
};
|
|
8119
8176
|
css: {
|
|
@@ -8123,13 +8180,13 @@ declare const useClasses_10: (classesProp?: Partial<Record<"root" | "show" | "hi
|
|
|
8123
8180
|
cx: (...args: any) => string;
|
|
8124
8181
|
};
|
|
8125
8182
|
|
|
8126
|
-
declare const useClasses_100: (classesProp?: Partial<Record<"root" | "
|
|
8183
|
+
declare const useClasses_100: (classesProp?: Partial<Record<"root" | "listItem" | "list" | "popup" | "collapsed" | "navigationPopup", string>>, addStatic?: boolean) => {
|
|
8127
8184
|
classes: {
|
|
8128
8185
|
root: string;
|
|
8186
|
+
listItem: string;
|
|
8129
8187
|
list: string;
|
|
8130
8188
|
popup: string;
|
|
8131
8189
|
collapsed: string;
|
|
8132
|
-
listItem: string;
|
|
8133
8190
|
navigationPopup: string;
|
|
8134
8191
|
};
|
|
8135
8192
|
css: {
|
|
@@ -8163,24 +8220,24 @@ declare const useClasses_102: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8163
8220
|
cx: (...args: any) => string;
|
|
8164
8221
|
};
|
|
8165
8222
|
|
|
8166
|
-
declare const useClasses_103: (classesProp?: Partial<Record<"content" | "
|
|
8223
|
+
declare const useClasses_103: (classesProp?: Partial<Record<"content" | "label" | "link" | "disabled" | "selectable" | "selected" | "hide" | "expanded" | "unselectable" | "group" | "node" | "focused" | "labelIcon" | "collapsed" | "minimized" | "expandable" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
|
|
8167
8224
|
classes: {
|
|
8168
8225
|
content: string;
|
|
8169
|
-
unselectable: string;
|
|
8170
|
-
link: string;
|
|
8171
8226
|
label: string;
|
|
8172
|
-
|
|
8173
|
-
hide: string;
|
|
8174
|
-
expanded: string;
|
|
8227
|
+
link: string;
|
|
8175
8228
|
disabled: string;
|
|
8229
|
+
selectable: string;
|
|
8176
8230
|
selected: string;
|
|
8231
|
+
hide: string;
|
|
8232
|
+
expanded: string;
|
|
8233
|
+
unselectable: string;
|
|
8234
|
+
group: string;
|
|
8177
8235
|
node: string;
|
|
8178
8236
|
focused: string;
|
|
8179
|
-
selectable: string;
|
|
8180
|
-
expandable: string;
|
|
8181
8237
|
labelIcon: string;
|
|
8182
8238
|
collapsed: string;
|
|
8183
8239
|
minimized: string;
|
|
8240
|
+
expandable: string;
|
|
8184
8241
|
unselected: string;
|
|
8185
8242
|
labelExpandable: string;
|
|
8186
8243
|
};
|
|
@@ -8191,20 +8248,20 @@ declare const useClasses_103: (classesProp?: Partial<Record<"content" | "unselec
|
|
|
8191
8248
|
cx: (...args: any) => string;
|
|
8192
8249
|
};
|
|
8193
8250
|
|
|
8194
|
-
declare const useClasses_104: (classesProp?: Partial<Record<"label" | "root" | "
|
|
8251
|
+
declare const useClasses_104: (classesProp?: Partial<Record<"label" | "root" | "trackDragging" | "trackStandBy" | "handleContainer" | "error" | "rootDisabled" | "labelContainer" | "sliderBase" | "sliderContainer" | "sliderRoot" | "rootRange" | "handle" | "handleContainerDisabled" | "handleHiddenContainer" | "labelIncluded" | "onlyInput" | "sliderTooltip", string>>, addStatic?: boolean) => {
|
|
8195
8252
|
classes: {
|
|
8196
8253
|
label: string;
|
|
8197
8254
|
root: string;
|
|
8255
|
+
trackDragging: string;
|
|
8256
|
+
trackStandBy: string;
|
|
8257
|
+
handleContainer: string;
|
|
8198
8258
|
error: string;
|
|
8199
8259
|
rootDisabled: string;
|
|
8200
8260
|
labelContainer: string;
|
|
8201
8261
|
sliderBase: string;
|
|
8202
8262
|
sliderContainer: string;
|
|
8203
|
-
trackDragging: string;
|
|
8204
|
-
trackStandBy: string;
|
|
8205
8263
|
sliderRoot: string;
|
|
8206
8264
|
rootRange: string;
|
|
8207
|
-
handleContainer: string;
|
|
8208
8265
|
handle: string;
|
|
8209
8266
|
handleContainerDisabled: string;
|
|
8210
8267
|
handleHiddenContainer: string;
|
|
@@ -8219,12 +8276,12 @@ declare const useClasses_104: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8219
8276
|
cx: (...args: any) => string;
|
|
8220
8277
|
};
|
|
8221
8278
|
|
|
8222
|
-
declare const useClasses_105: (classesProp?: Partial<Record<"label" | "
|
|
8279
|
+
declare const useClasses_105: (classesProp?: Partial<Record<"label" | "description" | "root" | "error" | "labelContainer", string>>, addStatic?: boolean) => {
|
|
8223
8280
|
classes: {
|
|
8224
8281
|
label: string;
|
|
8282
|
+
description: string;
|
|
8225
8283
|
root: string;
|
|
8226
8284
|
error: string;
|
|
8227
|
-
description: string;
|
|
8228
8285
|
labelContainer: string;
|
|
8229
8286
|
};
|
|
8230
8287
|
css: {
|
|
@@ -8234,18 +8291,18 @@ declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8234
8291
|
cx: (...args: any) => string;
|
|
8235
8292
|
};
|
|
8236
8293
|
|
|
8237
|
-
declare const useClasses_106: (classesProp?: Partial<Record<"
|
|
8294
|
+
declare const useClasses_106: (classesProp?: Partial<Record<"space" | "header" | "root" | "panel" | "rightSidePanel" | "applyButton" | "dropdown" | "baseDropdownSelection" | "leftSidePanel" | "actionBar", string>>, addStatic?: boolean) => {
|
|
8238
8295
|
classes: {
|
|
8296
|
+
space: string;
|
|
8239
8297
|
header: string;
|
|
8240
8298
|
root: string;
|
|
8241
|
-
space: string;
|
|
8242
|
-
dropdown: string;
|
|
8243
8299
|
panel: string;
|
|
8244
|
-
baseDropdownSelection: string;
|
|
8245
8300
|
rightSidePanel: string;
|
|
8301
|
+
applyButton: string;
|
|
8302
|
+
dropdown: string;
|
|
8303
|
+
baseDropdownSelection: string;
|
|
8246
8304
|
leftSidePanel: string;
|
|
8247
8305
|
actionBar: string;
|
|
8248
|
-
applyButton: string;
|
|
8249
8306
|
};
|
|
8250
8307
|
css: {
|
|
8251
8308
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8254,23 +8311,23 @@ declare const useClasses_106: (classesProp?: Partial<Record<"header" | "root" |
|
|
|
8254
8311
|
cx: (...args: any) => string;
|
|
8255
8312
|
};
|
|
8256
8313
|
|
|
8257
|
-
declare const useClasses_107: (classesProp?: Partial<Record<"label" | "
|
|
8314
|
+
declare const useClasses_107: (classesProp?: Partial<Record<"label" | "description" | "root" | "panel" | "icon" | "inputText" | "action" | "error" | "dropdown" | "actionContainer" | "rightContainer" | "labelContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "leftContainer" | "dateText", string>>, addStatic?: boolean) => {
|
|
8258
8315
|
classes: {
|
|
8259
8316
|
label: string;
|
|
8317
|
+
description: string;
|
|
8260
8318
|
root: string;
|
|
8319
|
+
panel: string;
|
|
8261
8320
|
icon: string;
|
|
8321
|
+
inputText: string;
|
|
8262
8322
|
action: string;
|
|
8263
8323
|
error: string;
|
|
8264
|
-
actionContainer: string;
|
|
8265
8324
|
dropdown: string;
|
|
8266
|
-
|
|
8267
|
-
description: string;
|
|
8268
|
-
labelContainer: string;
|
|
8269
|
-
leftContainer: string;
|
|
8325
|
+
actionContainer: string;
|
|
8270
8326
|
rightContainer: string;
|
|
8327
|
+
labelContainer: string;
|
|
8271
8328
|
dropdownHeaderInvalid: string;
|
|
8272
8329
|
dropdownHeaderOpen: string;
|
|
8273
|
-
|
|
8330
|
+
leftContainer: string;
|
|
8274
8331
|
dateText: string;
|
|
8275
8332
|
};
|
|
8276
8333
|
css: {
|
|
@@ -8280,11 +8337,11 @@ declare const useClasses_107: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8280
8337
|
cx: (...args: any) => string;
|
|
8281
8338
|
};
|
|
8282
8339
|
|
|
8283
|
-
declare const useClasses_108: (classesProp?: Partial<Record<"
|
|
8340
|
+
declare const useClasses_108: (classesProp?: Partial<Record<"root" | "button" | "text" | "notSelected", string>>, addStatic?: boolean) => {
|
|
8284
8341
|
classes: {
|
|
8342
|
+
root: string;
|
|
8285
8343
|
button: string;
|
|
8286
8344
|
text: string;
|
|
8287
|
-
root: string;
|
|
8288
8345
|
notSelected: string;
|
|
8289
8346
|
};
|
|
8290
8347
|
css: {
|
|
@@ -8307,16 +8364,16 @@ declare const useClasses_109: (classesProp?: Partial<Record<"root" | "positionFi
|
|
|
8307
8364
|
cx: (...args: any) => string;
|
|
8308
8365
|
};
|
|
8309
8366
|
|
|
8310
|
-
declare const useClasses_11: (classesProp?: Partial<Record<"
|
|
8367
|
+
declare const useClasses_11: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "description" | "root" | "listbox" | "invalid" | "error", string>>, addStatic?: boolean) => {
|
|
8311
8368
|
classes: {
|
|
8369
|
+
vertical: string;
|
|
8370
|
+
horizontal: string;
|
|
8312
8371
|
label: string;
|
|
8372
|
+
description: string;
|
|
8313
8373
|
root: string;
|
|
8314
|
-
horizontal: string;
|
|
8315
|
-
vertical: string;
|
|
8316
8374
|
listbox: string;
|
|
8317
|
-
error: string;
|
|
8318
8375
|
invalid: string;
|
|
8319
|
-
|
|
8376
|
+
error: string;
|
|
8320
8377
|
};
|
|
8321
8378
|
css: {
|
|
8322
8379
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8325,12 +8382,12 @@ declare const useClasses_11: (classesProp?: Partial<Record<"label" | "root" | "h
|
|
|
8325
8382
|
cx: (...args: any) => string;
|
|
8326
8383
|
};
|
|
8327
8384
|
|
|
8328
|
-
declare const useClasses_110: (classesProp?: Partial<Record<"
|
|
8385
|
+
declare const useClasses_110: (classesProp?: Partial<Record<"root" | "selected" | "button" | "text", string>>, addStatic?: boolean) => {
|
|
8329
8386
|
classes: {
|
|
8330
|
-
button: string;
|
|
8331
|
-
text: string;
|
|
8332
8387
|
root: string;
|
|
8333
8388
|
selected: string;
|
|
8389
|
+
button: string;
|
|
8390
|
+
text: string;
|
|
8334
8391
|
};
|
|
8335
8392
|
css: {
|
|
8336
8393
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8339,14 +8396,14 @@ declare const useClasses_110: (classesProp?: Partial<Record<"button" | "text" |
|
|
|
8339
8396
|
cx: (...args: any) => string;
|
|
8340
8397
|
};
|
|
8341
8398
|
|
|
8342
|
-
declare const useClasses_111: (classesProp?: Partial<Record<"root" | "selected" | "
|
|
8399
|
+
declare const useClasses_111: (classesProp?: Partial<Record<"root" | "selected" | "notSelected" | "notSelectedRoot" | "positionSticky" | "positionFixed", string>>, addStatic?: boolean) => {
|
|
8343
8400
|
classes: {
|
|
8344
8401
|
root: string;
|
|
8345
8402
|
selected: string;
|
|
8403
|
+
notSelected: string;
|
|
8404
|
+
notSelectedRoot: string;
|
|
8346
8405
|
positionSticky: string;
|
|
8347
8406
|
positionFixed: string;
|
|
8348
|
-
notSelectedRoot: string;
|
|
8349
|
-
notSelected: string;
|
|
8350
8407
|
};
|
|
8351
8408
|
css: {
|
|
8352
8409
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8355,15 +8412,15 @@ declare const useClasses_111: (classesProp?: Partial<Record<"root" | "selected"
|
|
|
8355
8412
|
cx: (...args: any) => string;
|
|
8356
8413
|
};
|
|
8357
8414
|
|
|
8358
|
-
declare const useClasses_112: (classesProp?: Partial<Record<"
|
|
8415
|
+
declare const useClasses_112: (classesProp?: Partial<Record<"root" | "inputBorderContainer" | "inputRoot" | "input" | "icon" | "button" | "text" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
|
|
8359
8416
|
classes: {
|
|
8360
|
-
button: string;
|
|
8361
|
-
input: string;
|
|
8362
|
-
text: string;
|
|
8363
8417
|
root: string;
|
|
8364
|
-
icon: string;
|
|
8365
8418
|
inputBorderContainer: string;
|
|
8366
8419
|
inputRoot: string;
|
|
8420
|
+
input: string;
|
|
8421
|
+
icon: string;
|
|
8422
|
+
button: string;
|
|
8423
|
+
text: string;
|
|
8367
8424
|
largeText: string;
|
|
8368
8425
|
textEmpty: string;
|
|
8369
8426
|
iconVisible: string;
|
|
@@ -8386,21 +8443,21 @@ declare const useClasses_113: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8386
8443
|
cx: (...args: any) => string;
|
|
8387
8444
|
};
|
|
8388
8445
|
|
|
8389
|
-
declare const useClasses_114: (classesProp?: Partial<Record<"root" | "topGroup" | "subGroup" | "
|
|
8446
|
+
declare const useClasses_114: (classesProp?: Partial<Record<"root" | "topGroup" | "subGroup" | "subRulesContainer" | "topActionButtonContainer" | "removeButton" | "combinator" | "topCombinator" | "combinatorButton" | "topRemoveButton" | "topRemoveButtonDisabled" | "rulesContainer" | "actionButtonContainer" | "topRulesContainer" | "buttonBackground", string>>, addStatic?: boolean) => {
|
|
8390
8447
|
classes: {
|
|
8391
8448
|
root: string;
|
|
8392
8449
|
topGroup: string;
|
|
8393
8450
|
subGroup: string;
|
|
8451
|
+
subRulesContainer: string;
|
|
8452
|
+
topActionButtonContainer: string;
|
|
8453
|
+
removeButton: string;
|
|
8394
8454
|
combinator: string;
|
|
8395
8455
|
topCombinator: string;
|
|
8396
8456
|
combinatorButton: string;
|
|
8397
|
-
removeButton: string;
|
|
8398
8457
|
topRemoveButton: string;
|
|
8399
8458
|
topRemoveButtonDisabled: string;
|
|
8400
8459
|
rulesContainer: string;
|
|
8401
|
-
subRulesContainer: string;
|
|
8402
8460
|
actionButtonContainer: string;
|
|
8403
|
-
topActionButtonContainer: string;
|
|
8404
8461
|
topRulesContainer: string;
|
|
8405
8462
|
buttonBackground: string;
|
|
8406
8463
|
};
|
|
@@ -8411,18 +8468,18 @@ declare const useClasses_114: (classesProp?: Partial<Record<"root" | "topGroup"
|
|
|
8411
8468
|
cx: (...args: any) => string;
|
|
8412
8469
|
};
|
|
8413
8470
|
|
|
8414
|
-
declare const useClasses_115: (classesProp?: Partial<Record<"
|
|
8471
|
+
declare const useClasses_115: (classesProp?: Partial<Record<"colorPicker" | "label" | "description" | "root" | "panel" | "headerColorValue" | "recommendedColorsRoot" | "labelContainer" | "headerColorIcon" | "colorPickerIcon" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
|
|
8415
8472
|
classes: {
|
|
8473
|
+
colorPicker: string;
|
|
8416
8474
|
label: string;
|
|
8475
|
+
description: string;
|
|
8417
8476
|
root: string;
|
|
8418
|
-
colorPicker: string;
|
|
8419
8477
|
panel: string;
|
|
8420
|
-
description: string;
|
|
8421
|
-
labelContainer: string;
|
|
8422
8478
|
headerColorValue: string;
|
|
8479
|
+
recommendedColorsRoot: string;
|
|
8480
|
+
labelContainer: string;
|
|
8423
8481
|
headerColorIcon: string;
|
|
8424
8482
|
colorPickerIcon: string;
|
|
8425
|
-
recommendedColorsRoot: string;
|
|
8426
8483
|
dropdownRootIconOnly: string;
|
|
8427
8484
|
headerColorIconOnly: string;
|
|
8428
8485
|
pickerFields: string;
|
|
@@ -8434,32 +8491,32 @@ declare const useClasses_115: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8434
8491
|
cx: (...args: any) => string;
|
|
8435
8492
|
};
|
|
8436
8493
|
|
|
8437
|
-
declare const useClasses_116: (classesProp?: Partial<Record<"
|
|
8494
|
+
declare const useClasses_116: (classesProp?: Partial<Record<"xs" | "root" | "panel" | "title" | "controls" | "counterContainer" | "thumbnail" | "thumbnailSelected" | "dot" | "main" | "counter" | "fullscreen" | "closeButton" | "actions" | "dots" | "mainContainer" | "pageCounter" | "mainXs" | "mainFullscreen" | "slideControls" | "slidesViewport" | "slidesContainer" | "dotsXs" | "dotSelected", string>>, addStatic?: boolean) => {
|
|
8438
8495
|
classes: {
|
|
8439
|
-
title: string;
|
|
8440
|
-
main: string;
|
|
8441
|
-
root: string;
|
|
8442
8496
|
xs: string;
|
|
8443
|
-
|
|
8444
|
-
controls: string;
|
|
8445
|
-
actions: string;
|
|
8497
|
+
root: string;
|
|
8446
8498
|
panel: string;
|
|
8499
|
+
title: string;
|
|
8500
|
+
controls: string;
|
|
8501
|
+
counterContainer: string;
|
|
8502
|
+
thumbnail: string;
|
|
8503
|
+
thumbnailSelected: string;
|
|
8504
|
+
dot: string;
|
|
8505
|
+
main: string;
|
|
8506
|
+
counter: string;
|
|
8447
8507
|
fullscreen: string;
|
|
8448
8508
|
closeButton: string;
|
|
8509
|
+
actions: string;
|
|
8510
|
+
dots: string;
|
|
8449
8511
|
mainContainer: string;
|
|
8450
8512
|
pageCounter: string;
|
|
8451
8513
|
mainXs: string;
|
|
8452
8514
|
mainFullscreen: string;
|
|
8453
|
-
counterContainer: string;
|
|
8454
|
-
counter: string;
|
|
8455
8515
|
slideControls: string;
|
|
8456
8516
|
slidesViewport: string;
|
|
8457
8517
|
slidesContainer: string;
|
|
8458
|
-
dots: string;
|
|
8459
8518
|
dotsXs: string;
|
|
8460
8519
|
dotSelected: string;
|
|
8461
|
-
thumbnail: string;
|
|
8462
|
-
thumbnailSelected: string;
|
|
8463
8520
|
};
|
|
8464
8521
|
css: {
|
|
8465
8522
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8480,18 +8537,18 @@ declare const useClasses_117: (classesProp?: Partial<Record<"image" | "slide", s
|
|
|
8480
8537
|
cx: (...args: any) => string;
|
|
8481
8538
|
};
|
|
8482
8539
|
|
|
8483
|
-
declare const useClasses_118: (classesProp?: Partial<Record<"
|
|
8540
|
+
declare const useClasses_118: (classesProp?: Partial<Record<"label" | "description" | "root" | "placeholder" | "icon" | "error" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
|
|
8484
8541
|
classes: {
|
|
8485
|
-
placeholder: string;
|
|
8486
8542
|
label: string;
|
|
8543
|
+
description: string;
|
|
8487
8544
|
root: string;
|
|
8545
|
+
placeholder: string;
|
|
8488
8546
|
icon: string;
|
|
8489
8547
|
error: string;
|
|
8490
|
-
description: string;
|
|
8491
8548
|
labelContainer: string;
|
|
8549
|
+
dropdownHeader: string;
|
|
8492
8550
|
dropdownHeaderInvalid: string;
|
|
8493
8551
|
dropdownHeaderOpen: string;
|
|
8494
|
-
dropdownHeader: string;
|
|
8495
8552
|
placeholderDisabled: string;
|
|
8496
8553
|
dropdownPanel: string;
|
|
8497
8554
|
timePopperContainer: string;
|
|
@@ -8514,11 +8571,11 @@ declare const useClasses_119: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8514
8571
|
cx: (...args: any) => string;
|
|
8515
8572
|
};
|
|
8516
8573
|
|
|
8517
|
-
declare const useClasses_12: (classesProp?: Partial<Record<"root" | "
|
|
8574
|
+
declare const useClasses_12: (classesProp?: Partial<Record<"root" | "list" | "popper", string>>, addStatic?: boolean) => {
|
|
8518
8575
|
classes: {
|
|
8519
8576
|
root: string;
|
|
8520
|
-
popper: string;
|
|
8521
8577
|
list: string;
|
|
8578
|
+
popper: string;
|
|
8522
8579
|
};
|
|
8523
8580
|
css: {
|
|
8524
8581
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8527,15 +8584,32 @@ declare const useClasses_12: (classesProp?: Partial<Record<"root" | "popper" | "
|
|
|
8527
8584
|
cx: (...args: any) => string;
|
|
8528
8585
|
};
|
|
8529
8586
|
|
|
8530
|
-
declare const useClasses_120: (classesProp?: Partial<Record<"content" | "label" | "root" | "
|
|
8587
|
+
declare const useClasses_120: (classesProp?: Partial<Record<"content" | "label" | "root" | "disabled" | "selected" | "expanded" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
|
|
8531
8588
|
classes: {
|
|
8532
8589
|
content: string;
|
|
8533
8590
|
label: string;
|
|
8534
8591
|
root: string;
|
|
8535
|
-
|
|
8592
|
+
disabled: string;
|
|
8593
|
+
selected: string;
|
|
8536
8594
|
expanded: string;
|
|
8595
|
+
group: string;
|
|
8596
|
+
focused: string;
|
|
8597
|
+
iconContainer: string;
|
|
8598
|
+
};
|
|
8599
|
+
css: {
|
|
8600
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8601
|
+
(...args: CSSInterpolation[]): string;
|
|
8602
|
+
};
|
|
8603
|
+
cx: (...args: any) => string;
|
|
8604
|
+
};
|
|
8605
|
+
|
|
8606
|
+
declare const useClasses_121: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "selected" | "expanded" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
|
|
8607
|
+
classes: {
|
|
8608
|
+
label: string;
|
|
8609
|
+
root: string;
|
|
8537
8610
|
disabled: string;
|
|
8538
8611
|
selected: string;
|
|
8612
|
+
expanded: string;
|
|
8539
8613
|
focused: string;
|
|
8540
8614
|
iconContainer: string;
|
|
8541
8615
|
};
|
|
@@ -8546,12 +8620,12 @@ declare const useClasses_120: (classesProp?: Partial<Record<"content" | "label"
|
|
|
8546
8620
|
cx: (...args: any) => string;
|
|
8547
8621
|
};
|
|
8548
8622
|
|
|
8549
|
-
declare const
|
|
8623
|
+
declare const useClasses_122: (classesProp?: Partial<Record<"content" | "header" | "root" | "hidden" | "actions", string>>, addStatic?: boolean) => {
|
|
8550
8624
|
classes: {
|
|
8551
|
-
hidden: string;
|
|
8552
8625
|
content: string;
|
|
8553
8626
|
header: string;
|
|
8554
8627
|
root: string;
|
|
8628
|
+
hidden: string;
|
|
8555
8629
|
actions: string;
|
|
8556
8630
|
};
|
|
8557
8631
|
css: {
|
|
@@ -8561,23 +8635,23 @@ declare const useClasses_121: (classesProp?: Partial<Record<"hidden" | "content"
|
|
|
8561
8635
|
cx: (...args: any) => string;
|
|
8562
8636
|
};
|
|
8563
8637
|
|
|
8564
|
-
declare const useClasses_13: (classesProp?: Partial<Record<"
|
|
8638
|
+
declare const useClasses_13: (classesProp?: Partial<Record<"root" | "disabled" | "readOnly" | "inputBorderContainer" | "inputRootReadOnly" | "inputRoot" | "inputRootFocused" | "inputRootMultiline" | "input" | "inputReadOnly" | "invalid" | "resizable" | "inputRootInvalid" | "inputRootDisabled" | "inputDisabled" | "inputResizable", string>>, addStatic?: boolean) => {
|
|
8565
8639
|
classes: {
|
|
8566
|
-
input: string;
|
|
8567
8640
|
root: string;
|
|
8568
8641
|
disabled: string;
|
|
8569
8642
|
readOnly: string;
|
|
8570
|
-
invalid: string;
|
|
8571
|
-
resizable: string;
|
|
8572
8643
|
inputBorderContainer: string;
|
|
8573
|
-
inputRootInvalid: string;
|
|
8574
8644
|
inputRootReadOnly: string;
|
|
8575
8645
|
inputRoot: string;
|
|
8576
8646
|
inputRootFocused: string;
|
|
8577
|
-
inputRootDisabled: string;
|
|
8578
8647
|
inputRootMultiline: string;
|
|
8579
|
-
|
|
8648
|
+
input: string;
|
|
8580
8649
|
inputReadOnly: string;
|
|
8650
|
+
invalid: string;
|
|
8651
|
+
resizable: string;
|
|
8652
|
+
inputRootInvalid: string;
|
|
8653
|
+
inputRootDisabled: string;
|
|
8654
|
+
inputDisabled: string;
|
|
8581
8655
|
inputResizable: string;
|
|
8582
8656
|
};
|
|
8583
8657
|
css: {
|
|
@@ -8587,27 +8661,27 @@ declare const useClasses_13: (classesProp?: Partial<Record<"input" | "root" | "d
|
|
|
8587
8661
|
cx: (...args: any) => string;
|
|
8588
8662
|
};
|
|
8589
8663
|
|
|
8590
|
-
declare const useClasses_14: (classesProp?: Partial<Record<"
|
|
8664
|
+
declare const useClasses_14: (classesProp?: Partial<Record<"container" | "header" | "anchor" | "root" | "headerOpen" | "headerDisabled" | "headerReadOnly" | "placeholder" | "panel" | "inputExtensionOpen" | "rootDisabled" | "headerOpenUp" | "headerOpenDown" | "arrowContainer" | "arrow" | "selection" | "selectionDisabled" | "panelOpenedUp" | "panelOpenedDown" | "inputExtensionLeftPosition" | "inputExtensionOpenShadow" | "inputExtensionFloatRight" | "inputExtensionFloatLeft", string>>, addStatic?: boolean) => {
|
|
8591
8665
|
classes: {
|
|
8592
|
-
|
|
8593
|
-
arrow: string;
|
|
8594
|
-
anchor: string;
|
|
8666
|
+
container: string;
|
|
8595
8667
|
header: string;
|
|
8668
|
+
anchor: string;
|
|
8596
8669
|
root: string;
|
|
8597
|
-
container: string;
|
|
8598
|
-
rootDisabled: string;
|
|
8599
8670
|
headerOpen: string;
|
|
8600
|
-
headerOpenUp: string;
|
|
8601
|
-
headerOpenDown: string;
|
|
8602
8671
|
headerDisabled: string;
|
|
8603
8672
|
headerReadOnly: string;
|
|
8673
|
+
placeholder: string;
|
|
8674
|
+
panel: string;
|
|
8675
|
+
inputExtensionOpen: string;
|
|
8676
|
+
rootDisabled: string;
|
|
8677
|
+
headerOpenUp: string;
|
|
8678
|
+
headerOpenDown: string;
|
|
8604
8679
|
arrowContainer: string;
|
|
8680
|
+
arrow: string;
|
|
8605
8681
|
selection: string;
|
|
8606
8682
|
selectionDisabled: string;
|
|
8607
|
-
panel: string;
|
|
8608
8683
|
panelOpenedUp: string;
|
|
8609
8684
|
panelOpenedDown: string;
|
|
8610
|
-
inputExtensionOpen: string;
|
|
8611
8685
|
inputExtensionLeftPosition: string;
|
|
8612
8686
|
inputExtensionOpenShadow: string;
|
|
8613
8687
|
inputExtensionFloatRight: string;
|
|
@@ -8631,13 +8705,13 @@ declare const useClasses_15: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
8631
8705
|
cx: (...args: any) => string;
|
|
8632
8706
|
};
|
|
8633
8707
|
|
|
8634
|
-
declare const useClasses_16: (classesProp?: Partial<Record<"
|
|
8708
|
+
declare const useClasses_16: (classesProp?: Partial<Record<"container" | "label" | "root" | "disabled" | "hidden", string>>, addStatic?: boolean) => {
|
|
8635
8709
|
classes: {
|
|
8636
|
-
|
|
8710
|
+
container: string;
|
|
8637
8711
|
label: string;
|
|
8638
8712
|
root: string;
|
|
8639
|
-
container: string;
|
|
8640
8713
|
disabled: string;
|
|
8714
|
+
hidden: string;
|
|
8641
8715
|
};
|
|
8642
8716
|
css: {
|
|
8643
8717
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8646,18 +8720,18 @@ declare const useClasses_16: (classesProp?: Partial<Record<"hidden" | "label" |
|
|
|
8646
8720
|
cx: (...args: any) => string;
|
|
8647
8721
|
};
|
|
8648
8722
|
|
|
8649
|
-
declare const useClasses_17: (classesProp?: Partial<Record<"
|
|
8723
|
+
declare const useClasses_17: (classesProp?: Partial<Record<"container" | "xs" | "sm" | "md" | "lg" | "xl" | "root" | "square" | "img" | "status" | "fallback" | "avatar" | "badge" | "circular", string>>, addStatic?: boolean) => {
|
|
8650
8724
|
classes: {
|
|
8651
|
-
img: string;
|
|
8652
|
-
root: string;
|
|
8653
8725
|
container: string;
|
|
8654
8726
|
xs: string;
|
|
8655
8727
|
sm: string;
|
|
8656
8728
|
md: string;
|
|
8657
8729
|
lg: string;
|
|
8658
8730
|
xl: string;
|
|
8659
|
-
|
|
8731
|
+
root: string;
|
|
8660
8732
|
square: string;
|
|
8733
|
+
img: string;
|
|
8734
|
+
status: string;
|
|
8661
8735
|
fallback: string;
|
|
8662
8736
|
avatar: string;
|
|
8663
8737
|
badge: string;
|
|
@@ -8688,18 +8762,18 @@ declare const useClasses_18: (classesProp?: Partial<Record<"root" | "badge" | "b
|
|
|
8688
8762
|
cx: (...args: any) => string;
|
|
8689
8763
|
};
|
|
8690
8764
|
|
|
8691
|
-
declare const useClasses_19: (classesProp?: Partial<Record<"
|
|
8765
|
+
declare const useClasses_19: (classesProp?: Partial<Record<"secondary" | "primary" | "root" | "disabled" | "semantic" | "secondarySubtle" | "icon" | "secondaryGhost" | "primaryGhost" | "primarySubtle" | "ghost" | "startIcon" | "endIcon" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
8692
8766
|
classes: {
|
|
8693
|
-
root: string;
|
|
8694
8767
|
secondary: string;
|
|
8695
8768
|
primary: string;
|
|
8696
|
-
|
|
8769
|
+
root: string;
|
|
8697
8770
|
disabled: string;
|
|
8698
8771
|
semantic: string;
|
|
8699
|
-
primarySubtle: string;
|
|
8700
|
-
primaryGhost: string;
|
|
8701
8772
|
secondarySubtle: string;
|
|
8773
|
+
icon: string;
|
|
8702
8774
|
secondaryGhost: string;
|
|
8775
|
+
primaryGhost: string;
|
|
8776
|
+
primarySubtle: string;
|
|
8703
8777
|
ghost: string;
|
|
8704
8778
|
startIcon: string;
|
|
8705
8779
|
endIcon: string;
|
|
@@ -8712,16 +8786,16 @@ declare const useClasses_19: (classesProp?: Partial<Record<"root" | "secondary"
|
|
|
8712
8786
|
cx: (...args: any) => string;
|
|
8713
8787
|
};
|
|
8714
8788
|
|
|
8715
|
-
declare const useClasses_2: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "
|
|
8789
|
+
declare const useClasses_2: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "focusDisabled" | "focused" | "externalReference" | "falseFocus" | "focus", string>>, addStatic?: boolean) => {
|
|
8716
8790
|
classes: {
|
|
8717
8791
|
root: string;
|
|
8718
8792
|
disabled: string;
|
|
8719
8793
|
selected: string;
|
|
8720
|
-
focus: string;
|
|
8721
|
-
focused: string;
|
|
8722
8794
|
focusDisabled: string;
|
|
8795
|
+
focused: string;
|
|
8723
8796
|
externalReference: string;
|
|
8724
8797
|
falseFocus: string;
|
|
8798
|
+
focus: string;
|
|
8725
8799
|
};
|
|
8726
8800
|
css: {
|
|
8727
8801
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8730,12 +8804,12 @@ declare const useClasses_2: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
8730
8804
|
cx: (...args: any) => string;
|
|
8731
8805
|
};
|
|
8732
8806
|
|
|
8733
|
-
declare const useClasses_20: (classesProp?: Partial<Record<"root" | "
|
|
8807
|
+
declare const useClasses_20: (classesProp?: Partial<Record<"root" | "selectable" | "icon" | "selected" | "semanticContainer" | "semanticBar", string>>, addStatic?: boolean) => {
|
|
8734
8808
|
classes: {
|
|
8735
8809
|
root: string;
|
|
8810
|
+
selectable: string;
|
|
8736
8811
|
icon: string;
|
|
8737
8812
|
selected: string;
|
|
8738
|
-
selectable: string;
|
|
8739
8813
|
semanticContainer: string;
|
|
8740
8814
|
semanticBar: string;
|
|
8741
8815
|
};
|
|
@@ -8746,14 +8820,14 @@ declare const useClasses_20: (classesProp?: Partial<Record<"root" | "icon" | "se
|
|
|
8746
8820
|
cx: (...args: any) => string;
|
|
8747
8821
|
};
|
|
8748
8822
|
|
|
8749
|
-
declare const useClasses_21: (classesProp?: Partial<Record<"
|
|
8823
|
+
declare const useClasses_21: (classesProp?: Partial<Record<"content" | "root" | "title" | "titleShort" | "subheader" | "action", string>>, addStatic?: boolean) => {
|
|
8750
8824
|
classes: {
|
|
8751
|
-
title: string;
|
|
8752
8825
|
content: string;
|
|
8753
8826
|
root: string;
|
|
8754
|
-
|
|
8827
|
+
title: string;
|
|
8755
8828
|
titleShort: string;
|
|
8756
8829
|
subheader: string;
|
|
8830
|
+
action: string;
|
|
8757
8831
|
};
|
|
8758
8832
|
css: {
|
|
8759
8833
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8803,13 +8877,13 @@ declare const useClasses_24: (classesProp?: Partial<Record<"fixed" | "root" | "d
|
|
|
8803
8877
|
cx: (...args: any) => string;
|
|
8804
8878
|
};
|
|
8805
8879
|
|
|
8806
|
-
declare const useClasses_25: (classesProp?: Partial<Record<"root" | "
|
|
8880
|
+
declare const useClasses_25: (classesProp?: Partial<Record<"root" | "titleText" | "fullscreen" | "messageContainer" | "textWithIcon", string>>, addStatic?: boolean) => {
|
|
8807
8881
|
classes: {
|
|
8808
8882
|
root: string;
|
|
8883
|
+
titleText: string;
|
|
8809
8884
|
fullscreen: string;
|
|
8810
8885
|
messageContainer: string;
|
|
8811
8886
|
textWithIcon: string;
|
|
8812
|
-
titleText: string;
|
|
8813
8887
|
};
|
|
8814
8888
|
css: {
|
|
8815
8889
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8830,10 +8904,10 @@ declare const useClasses_26: (classesProp?: Partial<Record<"root" | "textContent
|
|
|
8830
8904
|
cx: (...args: any) => string;
|
|
8831
8905
|
};
|
|
8832
8906
|
|
|
8833
|
-
declare const useClasses_27: (classesProp?: Partial<Record<"
|
|
8907
|
+
declare const useClasses_27: (classesProp?: Partial<Record<"spacing" | "root" | "fullscreen", string>>, addStatic?: boolean) => {
|
|
8834
8908
|
classes: {
|
|
8835
|
-
root: string;
|
|
8836
8909
|
spacing: string;
|
|
8910
|
+
root: string;
|
|
8837
8911
|
fullscreen: string;
|
|
8838
8912
|
};
|
|
8839
8913
|
css: {
|
|
@@ -8843,16 +8917,16 @@ declare const useClasses_27: (classesProp?: Partial<Record<"root" | "spacing" |
|
|
|
8843
8917
|
cx: (...args: any) => string;
|
|
8844
8918
|
};
|
|
8845
8919
|
|
|
8846
|
-
declare const useClasses_28: (classesProp?: Partial<Record<"
|
|
8920
|
+
declare const useClasses_28: (classesProp?: Partial<Record<"warning" | "background" | "root" | "paper" | "error" | "success" | "fullscreen" | "closeButton" | "statusBar", string>>, addStatic?: boolean) => {
|
|
8847
8921
|
classes: {
|
|
8848
|
-
root: string;
|
|
8849
|
-
background: string;
|
|
8850
8922
|
warning: string;
|
|
8923
|
+
background: string;
|
|
8924
|
+
root: string;
|
|
8925
|
+
paper: string;
|
|
8851
8926
|
error: string;
|
|
8852
8927
|
success: string;
|
|
8853
8928
|
fullscreen: string;
|
|
8854
8929
|
closeButton: string;
|
|
8855
|
-
paper: string;
|
|
8856
8930
|
statusBar: string;
|
|
8857
8931
|
};
|
|
8858
8932
|
css: {
|
|
@@ -8862,12 +8936,12 @@ declare const useClasses_28: (classesProp?: Partial<Record<"root" | "background"
|
|
|
8862
8936
|
cx: (...args: any) => string;
|
|
8863
8937
|
};
|
|
8864
8938
|
|
|
8865
|
-
declare const useClasses_29: (classesProp?: Partial<Record<"
|
|
8939
|
+
declare const useClasses_29: (classesProp?: Partial<Record<"background" | "root" | "paper" | "closeButton", string>>, addStatic?: boolean) => {
|
|
8866
8940
|
classes: {
|
|
8867
|
-
root: string;
|
|
8868
8941
|
background: string;
|
|
8869
|
-
|
|
8942
|
+
root: string;
|
|
8870
8943
|
paper: string;
|
|
8944
|
+
closeButton: string;
|
|
8871
8945
|
};
|
|
8872
8946
|
css: {
|
|
8873
8947
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8887,16 +8961,16 @@ declare const useClasses_3: (classesProp?: Partial<Record<"root", string>>, addS
|
|
|
8887
8961
|
cx: (...args: any) => string;
|
|
8888
8962
|
};
|
|
8889
8963
|
|
|
8890
|
-
declare const useClasses_30: (classesProp?: Partial<Record<"
|
|
8964
|
+
declare const useClasses_30: (classesProp?: Partial<Record<"container" | "root" | "titleContainer" | "messageContainer" | "containerMessageOnly" | "iconContainer" | "textContainer" | "actionContainer", string>>, addStatic?: boolean) => {
|
|
8891
8965
|
classes: {
|
|
8892
|
-
root: string;
|
|
8893
8966
|
container: string;
|
|
8894
|
-
|
|
8967
|
+
root: string;
|
|
8968
|
+
titleContainer: string;
|
|
8969
|
+
messageContainer: string;
|
|
8895
8970
|
containerMessageOnly: string;
|
|
8896
8971
|
iconContainer: string;
|
|
8897
|
-
titleContainer: string;
|
|
8898
8972
|
textContainer: string;
|
|
8899
|
-
|
|
8973
|
+
actionContainer: string;
|
|
8900
8974
|
};
|
|
8901
8975
|
css: {
|
|
8902
8976
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8905,12 +8979,12 @@ declare const useClasses_30: (classesProp?: Partial<Record<"root" | "container"
|
|
|
8905
8979
|
cx: (...args: any) => string;
|
|
8906
8980
|
};
|
|
8907
8981
|
|
|
8908
|
-
declare const useClasses_31: (classesProp?: Partial<Record<"
|
|
8982
|
+
declare const useClasses_31: (classesProp?: Partial<Record<"name" | "small" | "root" | "separator" | "rightContainer" | "copyright", string>>, addStatic?: boolean) => {
|
|
8909
8983
|
classes: {
|
|
8984
|
+
name: string;
|
|
8910
8985
|
small: string;
|
|
8911
8986
|
root: string;
|
|
8912
8987
|
separator: string;
|
|
8913
|
-
name: string;
|
|
8914
8988
|
rightContainer: string;
|
|
8915
8989
|
copyright: string;
|
|
8916
8990
|
};
|
|
@@ -8921,10 +8995,10 @@ declare const useClasses_31: (classesProp?: Partial<Record<"small" | "root" | "s
|
|
|
8921
8995
|
cx: (...args: any) => string;
|
|
8922
8996
|
};
|
|
8923
8997
|
|
|
8924
|
-
declare const useClasses_32: (classesProp?: Partial<Record<"
|
|
8998
|
+
declare const useClasses_32: (classesProp?: Partial<Record<"container" | "root" | "item" | "zeroMinWidth" | "direction-xs-column" | "direction-xs-reverse" | "direction-xs-row-reverse" | "wrap-xs-nowrap" | "wrap-xs-wrap-reverse" | "spacing-xs-1" | "spacing-xs-2" | "spacing-xs-3" | "spacing-xs-4" | "spacing-xs-5" | "spacing-xs-6" | "spacing-xs-7" | "spacing-xs-8" | "spacing-xs-9" | "spacing-xs-10" | "grid-xs-auto" | "grid-xs-true" | "grid-xs-1" | "grid-xs-2" | "grid-xs-3" | "grid-xs-4" | "grid-xs-5" | "grid-xs-6" | "grid-xs-7" | "grid-xs-8" | "grid-xs-9" | "grid-xs-10" | "grid-xs-11" | "grid-xs-12", string>>, addStatic?: boolean) => {
|
|
8925
8999
|
classes: {
|
|
8926
|
-
root: string;
|
|
8927
9000
|
container: string;
|
|
9001
|
+
root: string;
|
|
8928
9002
|
item: string;
|
|
8929
9003
|
zeroMinWidth: string;
|
|
8930
9004
|
"direction-xs-column": string;
|
|
@@ -8964,11 +9038,11 @@ declare const useClasses_32: (classesProp?: Partial<Record<"root" | "container"
|
|
|
8964
9038
|
cx: (...args: any) => string;
|
|
8965
9039
|
};
|
|
8966
9040
|
|
|
8967
|
-
declare const useClasses_33: (classesProp?: Partial<Record<"
|
|
9041
|
+
declare const useClasses_33: (classesProp?: Partial<Record<"backgroundColor" | "header" | "root", string>>, addStatic?: boolean) => {
|
|
8968
9042
|
classes: {
|
|
9043
|
+
backgroundColor: string;
|
|
8969
9044
|
header: string;
|
|
8970
9045
|
root: string;
|
|
8971
|
-
backgroundColor: string;
|
|
8972
9046
|
};
|
|
8973
9047
|
css: {
|
|
8974
9048
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9001,14 +9075,14 @@ declare const useClasses_35: (classesProp?: Partial<Record<"root" | "separator"
|
|
|
9001
9075
|
cx: (...args: any) => string;
|
|
9002
9076
|
};
|
|
9003
9077
|
|
|
9004
|
-
declare const useClasses_36: (classesProp?: Partial<Record<"
|
|
9078
|
+
declare const useClasses_36: (classesProp?: Partial<Record<"root" | "active" | "list" | "menu" | "menubar" | "hidden", string>>, addStatic?: boolean) => {
|
|
9005
9079
|
classes: {
|
|
9006
|
-
hidden: string;
|
|
9007
|
-
menu: string;
|
|
9008
9080
|
root: string;
|
|
9081
|
+
active: string;
|
|
9009
9082
|
list: string;
|
|
9083
|
+
menu: string;
|
|
9010
9084
|
menubar: string;
|
|
9011
|
-
|
|
9085
|
+
hidden: string;
|
|
9012
9086
|
};
|
|
9013
9087
|
css: {
|
|
9014
9088
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9017,14 +9091,14 @@ declare const useClasses_36: (classesProp?: Partial<Record<"hidden" | "menu" | "
|
|
|
9017
9091
|
cx: (...args: any) => string;
|
|
9018
9092
|
};
|
|
9019
9093
|
|
|
9020
|
-
declare const useClasses_37: (classesProp?: Partial<Record<"link" | "
|
|
9094
|
+
declare const useClasses_37: (classesProp?: Partial<Record<"link" | "root" | "menu" | "menubar" | "selected" | "button", string>>, addStatic?: boolean) => {
|
|
9021
9095
|
classes: {
|
|
9022
9096
|
link: string;
|
|
9023
|
-
button: string;
|
|
9024
|
-
menu: string;
|
|
9025
9097
|
root: string;
|
|
9098
|
+
menu: string;
|
|
9026
9099
|
menubar: string;
|
|
9027
9100
|
selected: string;
|
|
9101
|
+
button: string;
|
|
9028
9102
|
};
|
|
9029
9103
|
css: {
|
|
9030
9104
|
(template: TemplateStringsArray, ...args: CSSInterpolation_2[]): string;
|
|
@@ -9064,16 +9138,16 @@ declare const useClasses_39: (classesProp?: Partial<Record<"root" | "visualIndic
|
|
|
9064
9138
|
cx: (...args: any) => string;
|
|
9065
9139
|
};
|
|
9066
9140
|
|
|
9067
|
-
declare const useClasses_4: (classesProp?: Partial<Record<"root" | "
|
|
9141
|
+
declare const useClasses_4: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "condensed" | "focus" | "interactive" | "startAdornment" | "endAdornment" | "gutters" | "withStartAdornment" | "withEndAdornment", string>>, addStatic?: boolean) => {
|
|
9068
9142
|
classes: {
|
|
9069
9143
|
root: string;
|
|
9070
|
-
condensed: string;
|
|
9071
9144
|
disabled: string;
|
|
9072
9145
|
selected: string;
|
|
9146
|
+
condensed: string;
|
|
9073
9147
|
focus: string;
|
|
9074
9148
|
interactive: string;
|
|
9075
|
-
endAdornment: string;
|
|
9076
9149
|
startAdornment: string;
|
|
9150
|
+
endAdornment: string;
|
|
9077
9151
|
gutters: string;
|
|
9078
9152
|
withStartAdornment: string;
|
|
9079
9153
|
withEndAdornment: string;
|
|
@@ -9096,13 +9170,13 @@ declare const useClasses_40: (classesProp?: Partial<Record<"a", string>>, addSta
|
|
|
9096
9170
|
cx: (...args: any) => string;
|
|
9097
9171
|
};
|
|
9098
9172
|
|
|
9099
|
-
declare const useClasses_41: (classesProp?: Partial<Record<"
|
|
9173
|
+
declare const useClasses_41: (classesProp?: Partial<Record<"small" | "label" | "root" | "overlay" | "hidden" | "blur" | "barContainer" | "loadingBar" | "regular" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
|
|
9100
9174
|
classes: {
|
|
9101
|
-
hidden: string;
|
|
9102
9175
|
small: string;
|
|
9103
9176
|
label: string;
|
|
9104
9177
|
root: string;
|
|
9105
9178
|
overlay: string;
|
|
9179
|
+
hidden: string;
|
|
9106
9180
|
blur: string;
|
|
9107
9181
|
barContainer: string;
|
|
9108
9182
|
loadingBar: string;
|
|
@@ -9117,12 +9191,12 @@ declare const useClasses_41: (classesProp?: Partial<Record<"hidden" | "small" |
|
|
|
9117
9191
|
cx: (...args: any) => string;
|
|
9118
9192
|
};
|
|
9119
9193
|
|
|
9120
|
-
declare const useClasses_42: (classesProp?: Partial<Record<"
|
|
9194
|
+
declare const useClasses_42: (classesProp?: Partial<Record<"vertical" | "root" | "selected" | "button", string>>, addStatic?: boolean) => {
|
|
9121
9195
|
classes: {
|
|
9122
|
-
button: string;
|
|
9123
|
-
root: string;
|
|
9124
9196
|
vertical: string;
|
|
9197
|
+
root: string;
|
|
9125
9198
|
selected: string;
|
|
9199
|
+
button: string;
|
|
9126
9200
|
};
|
|
9127
9201
|
css: {
|
|
9128
9202
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9142,10 +9216,10 @@ declare const useClasses_43: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
9142
9216
|
cx: (...args: any) => string;
|
|
9143
9217
|
};
|
|
9144
9218
|
|
|
9145
|
-
declare const useClasses_44: (classesProp?: Partial<Record<"
|
|
9219
|
+
declare const useClasses_44: (classesProp?: Partial<Record<"root" | "progress" | "progressBar" | "progressBarLabel" | "progressContainer" | "progressDone" | "progressBarContainer" | "progressError", string>>, addStatic?: boolean) => {
|
|
9146
9220
|
classes: {
|
|
9147
|
-
progress: string;
|
|
9148
9221
|
root: string;
|
|
9222
|
+
progress: string;
|
|
9149
9223
|
progressBar: string;
|
|
9150
9224
|
progressBarLabel: string;
|
|
9151
9225
|
progressContainer: string;
|
|
@@ -9171,14 +9245,14 @@ declare const useClasses_45: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
9171
9245
|
cx: (...args: any) => string;
|
|
9172
9246
|
};
|
|
9173
9247
|
|
|
9174
|
-
declare const useClasses_46: (classesProp?: Partial<Record<"
|
|
9248
|
+
declare const useClasses_46: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "root" | "row" | "column", string>>, addStatic?: boolean) => {
|
|
9175
9249
|
classes: {
|
|
9176
|
-
root: string;
|
|
9177
9250
|
xs: string;
|
|
9178
9251
|
sm: string;
|
|
9179
9252
|
md: string;
|
|
9180
9253
|
lg: string;
|
|
9181
9254
|
xl: string;
|
|
9255
|
+
root: string;
|
|
9182
9256
|
row: string;
|
|
9183
9257
|
column: string;
|
|
9184
9258
|
};
|
|
@@ -9217,12 +9291,12 @@ declare const useClasses_48: (classesProp?: Partial<Record<"root" | "indicator"
|
|
|
9217
9291
|
cx: (...args: any) => string;
|
|
9218
9292
|
};
|
|
9219
9293
|
|
|
9220
|
-
declare const useClasses_49: (classesProp?: Partial<Record<"
|
|
9294
|
+
declare const useClasses_49: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "button" | "focusVisible" | "chipRoot" | "clickable" | "categorical" | "deleteIcon" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
|
|
9221
9295
|
classes: {
|
|
9222
|
-
button: string;
|
|
9223
9296
|
label: string;
|
|
9224
9297
|
root: string;
|
|
9225
9298
|
disabled: string;
|
|
9299
|
+
button: string;
|
|
9226
9300
|
focusVisible: string;
|
|
9227
9301
|
chipRoot: string;
|
|
9228
9302
|
clickable: string;
|
|
@@ -9254,18 +9328,18 @@ declare const useClasses_5: (classesProp?: Partial<Record<"root" | "counterDisab
|
|
|
9254
9328
|
cx: (...args: any) => string;
|
|
9255
9329
|
};
|
|
9256
9330
|
|
|
9257
|
-
declare const useClasses_50: (classesProp?: Partial<Record<"
|
|
9331
|
+
declare const useClasses_50: (classesProp?: Partial<Record<"color" | "root" | "title" | "popper" | "separator" | "tooltip" | "values" | "tooltipMulti" | "valuesContainer" | "separatorColor" | "valueWrapper", string>>, addStatic?: boolean) => {
|
|
9258
9332
|
classes: {
|
|
9259
|
-
title: string;
|
|
9260
9333
|
color: string;
|
|
9261
9334
|
root: string;
|
|
9335
|
+
title: string;
|
|
9336
|
+
popper: string;
|
|
9337
|
+
separator: string;
|
|
9262
9338
|
tooltip: string;
|
|
9339
|
+
values: string;
|
|
9263
9340
|
tooltipMulti: string;
|
|
9264
|
-
popper: string;
|
|
9265
9341
|
valuesContainer: string;
|
|
9266
|
-
values: string;
|
|
9267
9342
|
separatorColor: string;
|
|
9268
|
-
separator: string;
|
|
9269
9343
|
valueWrapper: string;
|
|
9270
9344
|
};
|
|
9271
9345
|
css: {
|
|
@@ -9288,11 +9362,11 @@ declare const useClasses_51: (classesProp?: Partial<Record<"tooltipData" | "tool
|
|
|
9288
9362
|
cx: (...args: any) => string;
|
|
9289
9363
|
};
|
|
9290
9364
|
|
|
9291
|
-
declare const useClasses_52: (classesProp?: Partial<Record<"root" | "
|
|
9365
|
+
declare const useClasses_52: (classesProp?: Partial<Record<"root" | "disabled" | "icon" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
9292
9366
|
classes: {
|
|
9293
9367
|
root: string;
|
|
9294
|
-
icon: string;
|
|
9295
9368
|
disabled: string;
|
|
9369
|
+
icon: string;
|
|
9296
9370
|
focusVisible: string;
|
|
9297
9371
|
};
|
|
9298
9372
|
css: {
|
|
@@ -9302,11 +9376,11 @@ declare const useClasses_52: (classesProp?: Partial<Record<"root" | "icon" | "di
|
|
|
9302
9376
|
cx: (...args: any) => string;
|
|
9303
9377
|
};
|
|
9304
9378
|
|
|
9305
|
-
declare const useClasses_53: (classesProp?: Partial<Record<"root" | "
|
|
9379
|
+
declare const useClasses_53: (classesProp?: Partial<Record<"root" | "disabled" | "icon" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
9306
9380
|
classes: {
|
|
9307
9381
|
root: string;
|
|
9308
|
-
icon: string;
|
|
9309
9382
|
disabled: string;
|
|
9383
|
+
icon: string;
|
|
9310
9384
|
focusVisible: string;
|
|
9311
9385
|
};
|
|
9312
9386
|
css: {
|
|
@@ -9316,12 +9390,13 @@ declare const useClasses_53: (classesProp?: Partial<Record<"root" | "icon" | "di
|
|
|
9316
9390
|
cx: (...args: any) => string;
|
|
9317
9391
|
};
|
|
9318
9392
|
|
|
9319
|
-
declare const useClasses_54: (classesProp?: Partial<Record<"title" | "
|
|
9393
|
+
declare const useClasses_54: (classesProp?: Partial<Record<"root" | "title" | "single" | "actionsContainer" | "open" | "item" | "itemSelected" | "itemDisabled" | "itemTrigger" | "itemIcon" | "itemTitle" | "itemInfoIcon" | "footerContainer" | "closed" | "dual" | "fluid", string>>, addStatic?: boolean) => {
|
|
9320
9394
|
classes: {
|
|
9321
|
-
title: string;
|
|
9322
|
-
open: string;
|
|
9323
9395
|
root: string;
|
|
9396
|
+
title: string;
|
|
9324
9397
|
single: string;
|
|
9398
|
+
actionsContainer: string;
|
|
9399
|
+
open: string;
|
|
9325
9400
|
item: string;
|
|
9326
9401
|
itemSelected: string;
|
|
9327
9402
|
itemDisabled: string;
|
|
@@ -9329,7 +9404,6 @@ declare const useClasses_54: (classesProp?: Partial<Record<"title" | "open" | "r
|
|
|
9329
9404
|
itemIcon: string;
|
|
9330
9405
|
itemTitle: string;
|
|
9331
9406
|
itemInfoIcon: string;
|
|
9332
|
-
actionsContainer: string;
|
|
9333
9407
|
footerContainer: string;
|
|
9334
9408
|
closed: string;
|
|
9335
9409
|
dual: string;
|
|
@@ -9342,13 +9416,13 @@ declare const useClasses_54: (classesProp?: Partial<Record<"title" | "open" | "r
|
|
|
9342
9416
|
cx: (...args: any) => string;
|
|
9343
9417
|
};
|
|
9344
9418
|
|
|
9345
|
-
declare const useClasses_55: (classesProp?: Partial<Record<"
|
|
9419
|
+
declare const useClasses_55: (classesProp?: Partial<Record<"typography" | "root" | "disabled" | "icon" | "title" | "selected" | "iconUrl" | "iconInfo", string>>, addStatic?: boolean) => {
|
|
9346
9420
|
classes: {
|
|
9347
|
-
title: string;
|
|
9348
|
-
root: string;
|
|
9349
9421
|
typography: string;
|
|
9350
|
-
|
|
9422
|
+
root: string;
|
|
9351
9423
|
disabled: string;
|
|
9424
|
+
icon: string;
|
|
9425
|
+
title: string;
|
|
9352
9426
|
selected: string;
|
|
9353
9427
|
iconUrl: string;
|
|
9354
9428
|
iconInfo: string;
|
|
@@ -9360,16 +9434,16 @@ declare const useClasses_55: (classesProp?: Partial<Record<"title" | "root" | "t
|
|
|
9360
9434
|
cx: (...args: any) => string;
|
|
9361
9435
|
};
|
|
9362
9436
|
|
|
9363
|
-
declare const useClasses_56: (classesProp?: Partial<Record<"
|
|
9437
|
+
declare const useClasses_56: (classesProp?: Partial<Record<"root" | "disabled" | "readOnly" | "switch" | "switchBase" | "track" | "checked" | "focusVisible" | "thumb", string>>, addStatic?: boolean) => {
|
|
9364
9438
|
classes: {
|
|
9365
|
-
track: string;
|
|
9366
|
-
switch: string;
|
|
9367
9439
|
root: string;
|
|
9368
9440
|
disabled: string;
|
|
9369
|
-
checked: string;
|
|
9370
9441
|
readOnly: string;
|
|
9371
|
-
|
|
9442
|
+
switch: string;
|
|
9372
9443
|
switchBase: string;
|
|
9444
|
+
track: string;
|
|
9445
|
+
checked: string;
|
|
9446
|
+
focusVisible: string;
|
|
9373
9447
|
thumb: string;
|
|
9374
9448
|
};
|
|
9375
9449
|
css: {
|
|
@@ -9379,13 +9453,13 @@ declare const useClasses_56: (classesProp?: Partial<Record<"track" | "switch" |
|
|
|
9379
9453
|
cx: (...args: any) => string;
|
|
9380
9454
|
};
|
|
9381
9455
|
|
|
9382
|
-
declare const useClasses_57: (classesProp?: Partial<Record<"
|
|
9456
|
+
declare const useClasses_57: (classesProp?: Partial<Record<"container" | "label" | "root" | "disabled" | "checkbox" | "focusVisible" | "invalidContainer" | "invalidCheckbox", string>>, addStatic?: boolean) => {
|
|
9383
9457
|
classes: {
|
|
9458
|
+
container: string;
|
|
9384
9459
|
label: string;
|
|
9385
9460
|
root: string;
|
|
9386
|
-
container: string;
|
|
9387
|
-
checkbox: string;
|
|
9388
9461
|
disabled: string;
|
|
9462
|
+
checkbox: string;
|
|
9389
9463
|
focusVisible: string;
|
|
9390
9464
|
invalidContainer: string;
|
|
9391
9465
|
invalidCheckbox: string;
|
|
@@ -9397,22 +9471,22 @@ declare const useClasses_57: (classesProp?: Partial<Record<"label" | "root" | "c
|
|
|
9397
9471
|
cx: (...args: any) => string;
|
|
9398
9472
|
};
|
|
9399
9473
|
|
|
9400
|
-
declare const useClasses_58: (classesProp?: Partial<Record<"
|
|
9474
|
+
declare const useClasses_58: (classesProp?: Partial<Record<"label" | "description" | "root" | "inputBorderContainer" | "inputRoot" | "inputRootFocused" | "inputRootMultiline" | "input" | "icon" | "adornmentButton" | "error" | "inputRootDisabled" | "labelContainer" | "adornmentsBox" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList" | "inputExtension", string>>, addStatic?: boolean) => {
|
|
9401
9475
|
classes: {
|
|
9402
|
-
input: string;
|
|
9403
9476
|
label: string;
|
|
9477
|
+
description: string;
|
|
9404
9478
|
root: string;
|
|
9405
|
-
icon: string;
|
|
9406
|
-
error: string;
|
|
9407
9479
|
inputBorderContainer: string;
|
|
9408
9480
|
inputRoot: string;
|
|
9409
9481
|
inputRootFocused: string;
|
|
9410
|
-
inputRootDisabled: string;
|
|
9411
9482
|
inputRootMultiline: string;
|
|
9412
|
-
|
|
9483
|
+
input: string;
|
|
9484
|
+
icon: string;
|
|
9485
|
+
adornmentButton: string;
|
|
9486
|
+
error: string;
|
|
9487
|
+
inputRootDisabled: string;
|
|
9413
9488
|
labelContainer: string;
|
|
9414
9489
|
adornmentsBox: string;
|
|
9415
|
-
adornmentButton: string;
|
|
9416
9490
|
iconClear: string;
|
|
9417
9491
|
hasSuggestions: string;
|
|
9418
9492
|
suggestionsContainer: string;
|
|
@@ -9426,13 +9500,13 @@ declare const useClasses_58: (classesProp?: Partial<Record<"input" | "label" | "
|
|
|
9426
9500
|
cx: (...args: any) => string;
|
|
9427
9501
|
};
|
|
9428
9502
|
|
|
9429
|
-
declare const useClasses_59: (classesProp?: Partial<Record<"label" | "root" | "
|
|
9503
|
+
declare const useClasses_59: (classesProp?: Partial<Record<"label" | "root" | "invalidSwitch" | "error" | "switchContainer", string>>, addStatic?: boolean) => {
|
|
9430
9504
|
classes: {
|
|
9431
9505
|
label: string;
|
|
9432
9506
|
root: string;
|
|
9507
|
+
invalidSwitch: string;
|
|
9433
9508
|
error: string;
|
|
9434
9509
|
switchContainer: string;
|
|
9435
|
-
invalidSwitch: string;
|
|
9436
9510
|
};
|
|
9437
9511
|
css: {
|
|
9438
9512
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9441,14 +9515,14 @@ declare const useClasses_59: (classesProp?: Partial<Record<"label" | "root" | "e
|
|
|
9441
9515
|
cx: (...args: any) => string;
|
|
9442
9516
|
};
|
|
9443
9517
|
|
|
9444
|
-
declare const useClasses_6: (classesProp?: Partial<Record<"root" | "icon" | "adornment" | "
|
|
9518
|
+
declare const useClasses_6: (classesProp?: Partial<Record<"root" | "icon" | "adornment" | "adornmentIcon" | "hideIcon" | "adornmentButton", string>>, addStatic?: boolean) => {
|
|
9445
9519
|
classes: {
|
|
9446
9520
|
root: string;
|
|
9447
9521
|
icon: string;
|
|
9448
9522
|
adornment: string;
|
|
9449
|
-
adornmentButton: string;
|
|
9450
9523
|
adornmentIcon: string;
|
|
9451
9524
|
hideIcon: string;
|
|
9525
|
+
adornmentButton: string;
|
|
9452
9526
|
};
|
|
9453
9527
|
css: {
|
|
9454
9528
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9457,13 +9531,13 @@ declare const useClasses_6: (classesProp?: Partial<Record<"root" | "icon" | "ado
|
|
|
9457
9531
|
cx: (...args: any) => string;
|
|
9458
9532
|
};
|
|
9459
9533
|
|
|
9460
|
-
declare const useClasses_60: (classesProp?: Partial<Record<"
|
|
9534
|
+
declare const useClasses_60: (classesProp?: Partial<Record<"container" | "label" | "root" | "disabled" | "radio" | "focusVisible" | "invalidContainer" | "invalidRadio", string>>, addStatic?: boolean) => {
|
|
9461
9535
|
classes: {
|
|
9536
|
+
container: string;
|
|
9462
9537
|
label: string;
|
|
9463
9538
|
root: string;
|
|
9464
|
-
container: string;
|
|
9465
|
-
radio: string;
|
|
9466
9539
|
disabled: string;
|
|
9540
|
+
radio: string;
|
|
9467
9541
|
focusVisible: string;
|
|
9468
9542
|
invalidContainer: string;
|
|
9469
9543
|
invalidRadio: string;
|
|
@@ -9475,20 +9549,20 @@ declare const useClasses_60: (classesProp?: Partial<Record<"label" | "root" | "c
|
|
|
9475
9549
|
cx: (...args: any) => string;
|
|
9476
9550
|
};
|
|
9477
9551
|
|
|
9478
|
-
declare const useClasses_61: (classesProp?: Partial<Record<"
|
|
9552
|
+
declare const useClasses_61: (classesProp?: Partial<Record<"label" | "description" | "root" | "disabled" | "input" | "invalid" | "error" | "resizable" | "inputResizable" | "labelContainer" | "baseInput" | "characterCounter", string>>, addStatic?: boolean) => {
|
|
9479
9553
|
classes: {
|
|
9480
|
-
input: string;
|
|
9481
9554
|
label: string;
|
|
9555
|
+
description: string;
|
|
9482
9556
|
root: string;
|
|
9483
9557
|
disabled: string;
|
|
9484
|
-
|
|
9558
|
+
input: string;
|
|
9485
9559
|
invalid: string;
|
|
9560
|
+
error: string;
|
|
9486
9561
|
resizable: string;
|
|
9487
9562
|
inputResizable: string;
|
|
9488
|
-
description: string;
|
|
9489
9563
|
labelContainer: string;
|
|
9490
|
-
characterCounter: string;
|
|
9491
9564
|
baseInput: string;
|
|
9565
|
+
characterCounter: string;
|
|
9492
9566
|
};
|
|
9493
9567
|
css: {
|
|
9494
9568
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9497,26 +9571,26 @@ declare const useClasses_61: (classesProp?: Partial<Record<"input" | "label" | "
|
|
|
9497
9571
|
cx: (...args: any) => string;
|
|
9498
9572
|
};
|
|
9499
9573
|
|
|
9500
|
-
declare const useClasses_62: (classesProp?: Partial<Record<"
|
|
9574
|
+
declare const useClasses_62: (classesProp?: Partial<Record<"label" | "description" | "root" | "disabled" | "readOnly" | "input" | "tagsList" | "invalid" | "error" | "resizable" | "chipRoot" | "labelContainer" | "suggestionsContainer" | "suggestionList" | "inputExtension" | "characterCounter" | "listItemGutters" | "listItemRoot" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty" | "singleLine", string>>, addStatic?: boolean) => {
|
|
9501
9575
|
classes: {
|
|
9502
|
-
input: string;
|
|
9503
9576
|
label: string;
|
|
9577
|
+
description: string;
|
|
9504
9578
|
root: string;
|
|
9505
9579
|
disabled: string;
|
|
9506
9580
|
readOnly: string;
|
|
9507
|
-
|
|
9581
|
+
input: string;
|
|
9582
|
+
tagsList: string;
|
|
9508
9583
|
invalid: string;
|
|
9584
|
+
error: string;
|
|
9509
9585
|
resizable: string;
|
|
9510
|
-
|
|
9586
|
+
chipRoot: string;
|
|
9511
9587
|
labelContainer: string;
|
|
9512
9588
|
suggestionsContainer: string;
|
|
9513
9589
|
suggestionList: string;
|
|
9514
9590
|
inputExtension: string;
|
|
9515
|
-
|
|
9591
|
+
characterCounter: string;
|
|
9516
9592
|
listItemGutters: string;
|
|
9517
9593
|
listItemRoot: string;
|
|
9518
|
-
characterCounter: string;
|
|
9519
|
-
tagsList: string;
|
|
9520
9594
|
tagInputContainerRoot: string;
|
|
9521
9595
|
tagInputRoot: string;
|
|
9522
9596
|
tagSelected: string;
|
|
@@ -9532,15 +9606,15 @@ declare const useClasses_62: (classesProp?: Partial<Record<"input" | "label" | "
|
|
|
9532
9606
|
cx: (...args: any) => string;
|
|
9533
9607
|
};
|
|
9534
9608
|
|
|
9535
|
-
declare const useClasses_63: (classesProp?: Partial<Record<"
|
|
9609
|
+
declare const useClasses_63: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "group" | "invalid" | "error" | "selectAll", string>>, addStatic?: boolean) => {
|
|
9536
9610
|
classes: {
|
|
9611
|
+
vertical: string;
|
|
9612
|
+
horizontal: string;
|
|
9537
9613
|
label: string;
|
|
9538
9614
|
root: string;
|
|
9539
|
-
horizontal: string;
|
|
9540
|
-
vertical: string;
|
|
9541
9615
|
group: string;
|
|
9542
|
-
error: string;
|
|
9543
9616
|
invalid: string;
|
|
9617
|
+
error: string;
|
|
9544
9618
|
selectAll: string;
|
|
9545
9619
|
};
|
|
9546
9620
|
css: {
|
|
@@ -9550,17 +9624,17 @@ declare const useClasses_63: (classesProp?: Partial<Record<"label" | "root" | "h
|
|
|
9550
9624
|
cx: (...args: any) => string;
|
|
9551
9625
|
};
|
|
9552
9626
|
|
|
9553
|
-
declare const useClasses_64: (classesProp?: Partial<Record<"link" | "root" | "item" | "virtualizedRoot" | "selectorRoot" | "selectorContainer" | "box" | "truncate" | "
|
|
9627
|
+
declare const useClasses_64: (classesProp?: Partial<Record<"link" | "root" | "itemSelector" | "item" | "virtualizedRoot" | "selectorRoot" | "selectorContainer" | "box" | "truncate" | "selectAllSelector", string>>, addStatic?: boolean) => {
|
|
9554
9628
|
classes: {
|
|
9555
9629
|
link: string;
|
|
9556
9630
|
root: string;
|
|
9631
|
+
itemSelector: string;
|
|
9557
9632
|
item: string;
|
|
9558
9633
|
virtualizedRoot: string;
|
|
9559
9634
|
selectorRoot: string;
|
|
9560
9635
|
selectorContainer: string;
|
|
9561
9636
|
box: string;
|
|
9562
9637
|
truncate: string;
|
|
9563
|
-
itemSelector: string;
|
|
9564
9638
|
selectAllSelector: string;
|
|
9565
9639
|
};
|
|
9566
9640
|
css: {
|
|
@@ -9570,15 +9644,15 @@ declare const useClasses_64: (classesProp?: Partial<Record<"link" | "root" | "it
|
|
|
9570
9644
|
cx: (...args: any) => string;
|
|
9571
9645
|
};
|
|
9572
9646
|
|
|
9573
|
-
declare const useClasses_65: (classesProp?: Partial<Record<"
|
|
9647
|
+
declare const useClasses_65: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "group" | "invalid" | "error", string>>, addStatic?: boolean) => {
|
|
9574
9648
|
classes: {
|
|
9649
|
+
vertical: string;
|
|
9650
|
+
horizontal: string;
|
|
9575
9651
|
label: string;
|
|
9576
9652
|
root: string;
|
|
9577
|
-
horizontal: string;
|
|
9578
|
-
vertical: string;
|
|
9579
9653
|
group: string;
|
|
9580
|
-
error: string;
|
|
9581
9654
|
invalid: string;
|
|
9655
|
+
error: string;
|
|
9582
9656
|
};
|
|
9583
9657
|
css: {
|
|
9584
9658
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9587,10 +9661,10 @@ declare const useClasses_65: (classesProp?: Partial<Record<"label" | "root" | "h
|
|
|
9587
9661
|
cx: (...args: any) => string;
|
|
9588
9662
|
};
|
|
9589
9663
|
|
|
9590
|
-
declare const useClasses_66: (classesProp?: Partial<Record<"
|
|
9664
|
+
declare const useClasses_66: (classesProp?: Partial<Record<"previewButton" | "overlay", string>>, addStatic?: boolean) => {
|
|
9591
9665
|
classes: {
|
|
9592
|
-
overlay: string;
|
|
9593
9666
|
previewButton: string;
|
|
9667
|
+
overlay: string;
|
|
9594
9668
|
};
|
|
9595
9669
|
css: {
|
|
9596
9670
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9599,18 +9673,18 @@ declare const useClasses_66: (classesProp?: Partial<Record<"overlay" | "previewB
|
|
|
9599
9673
|
cx: (...args: any) => string;
|
|
9600
9674
|
};
|
|
9601
9675
|
|
|
9602
|
-
declare const useClasses_67: (classesProp?: Partial<Record<"root" | "
|
|
9676
|
+
declare const useClasses_67: (classesProp?: Partial<Record<"root" | "icon" | "progressbarContainer" | "previewContainer" | "progressbar" | "progressbarBack" | "nameText" | "progressTextContainer" | "removeButton" | "fail", string>>, addStatic?: boolean) => {
|
|
9603
9677
|
classes: {
|
|
9604
9678
|
root: string;
|
|
9605
|
-
progressbar: string;
|
|
9606
9679
|
icon: string;
|
|
9607
|
-
removeButton: string;
|
|
9608
|
-
fail: string;
|
|
9609
9680
|
progressbarContainer: string;
|
|
9681
|
+
previewContainer: string;
|
|
9682
|
+
progressbar: string;
|
|
9610
9683
|
progressbarBack: string;
|
|
9611
9684
|
nameText: string;
|
|
9612
9685
|
progressTextContainer: string;
|
|
9613
|
-
|
|
9686
|
+
removeButton: string;
|
|
9687
|
+
fail: string;
|
|
9614
9688
|
};
|
|
9615
9689
|
css: {
|
|
9616
9690
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9619,13 +9693,13 @@ declare const useClasses_67: (classesProp?: Partial<Record<"root" | "progressbar
|
|
|
9619
9693
|
cx: (...args: any) => string;
|
|
9620
9694
|
};
|
|
9621
9695
|
|
|
9622
|
-
declare const useClasses_68: (classesProp?: Partial<Record<"
|
|
9696
|
+
declare const useClasses_68: (classesProp?: Partial<Record<"container" | "root" | "icon" | "iconSelected" | "baseContainer" | "menuListRoot" | "menuList", string>>, addStatic?: boolean) => {
|
|
9623
9697
|
classes: {
|
|
9624
|
-
root: string;
|
|
9625
9698
|
container: string;
|
|
9699
|
+
root: string;
|
|
9626
9700
|
icon: string;
|
|
9627
|
-
baseContainer: string;
|
|
9628
9701
|
iconSelected: string;
|
|
9702
|
+
baseContainer: string;
|
|
9629
9703
|
menuListRoot: string;
|
|
9630
9704
|
menuList: string;
|
|
9631
9705
|
};
|
|
@@ -9636,17 +9710,17 @@ declare const useClasses_68: (classesProp?: Partial<Record<"root" | "container"
|
|
|
9636
9710
|
cx: (...args: any) => string;
|
|
9637
9711
|
};
|
|
9638
9712
|
|
|
9639
|
-
declare const useClasses_69: (classesProp?: Partial<Record<"root" | "icon" | "pageSizeOptions" | "
|
|
9713
|
+
declare const useClasses_69: (classesProp?: Partial<Record<"root" | "icon" | "pageSizeOptions" | "pageSizeHeader" | "pageSizeTextContainer" | "pageSizeOptionsSelect" | "totalPagesTextContainer" | "pageNavigator" | "iconContainer" | "pageInfo" | "pageJump" | "pageSizeInput" | "pageSizeInputRoot" | "pageSizeInputContainer", string>>, addStatic?: boolean) => {
|
|
9640
9714
|
classes: {
|
|
9641
9715
|
root: string;
|
|
9642
9716
|
icon: string;
|
|
9643
9717
|
pageSizeOptions: string;
|
|
9644
|
-
iconContainer: string;
|
|
9645
9718
|
pageSizeHeader: string;
|
|
9646
9719
|
pageSizeTextContainer: string;
|
|
9647
|
-
totalPagesTextContainer: string;
|
|
9648
9720
|
pageSizeOptionsSelect: string;
|
|
9721
|
+
totalPagesTextContainer: string;
|
|
9649
9722
|
pageNavigator: string;
|
|
9723
|
+
iconContainer: string;
|
|
9650
9724
|
pageInfo: string;
|
|
9651
9725
|
pageJump: string;
|
|
9652
9726
|
pageSizeInput: string;
|
|
@@ -9671,10 +9745,10 @@ declare const useClasses_7: (classesProp?: Partial<Record<"root", string>>, addS
|
|
|
9671
9745
|
cx: (...args: any) => string;
|
|
9672
9746
|
};
|
|
9673
9747
|
|
|
9674
|
-
declare const useClasses_70: (classesProp?: Partial<Record<"
|
|
9748
|
+
declare const useClasses_70: (classesProp?: Partial<Record<"root" | "button" | "actionContainer" | "dropDownMenu" | "dropDownMenuButton" | "dropDownMenuButtonSelected", string>>, addStatic?: boolean) => {
|
|
9675
9749
|
classes: {
|
|
9676
|
-
button: string;
|
|
9677
9750
|
root: string;
|
|
9751
|
+
button: string;
|
|
9678
9752
|
actionContainer: string;
|
|
9679
9753
|
dropDownMenu: string;
|
|
9680
9754
|
dropDownMenuButton: string;
|
|
@@ -9687,15 +9761,15 @@ declare const useClasses_70: (classesProp?: Partial<Record<"button" | "root" | "
|
|
|
9687
9761
|
cx: (...args: any) => string;
|
|
9688
9762
|
};
|
|
9689
9763
|
|
|
9690
|
-
declare const useClasses_71: (classesProp?: Partial<Record<"link" | "
|
|
9764
|
+
declare const useClasses_71: (classesProp?: Partial<Record<"link" | "root" | "a" | "currentPage" | "centerContainer" | "separatorContainer" | "orderedList", string>>, addStatic?: boolean) => {
|
|
9691
9765
|
classes: {
|
|
9692
9766
|
link: string;
|
|
9693
|
-
a: string;
|
|
9694
9767
|
root: string;
|
|
9695
|
-
|
|
9768
|
+
a: string;
|
|
9696
9769
|
currentPage: string;
|
|
9697
9770
|
centerContainer: string;
|
|
9698
9771
|
separatorContainer: string;
|
|
9772
|
+
orderedList: string;
|
|
9699
9773
|
};
|
|
9700
9774
|
css: {
|
|
9701
9775
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9704,12 +9778,12 @@ declare const useClasses_71: (classesProp?: Partial<Record<"link" | "a" | "root"
|
|
|
9704
9778
|
cx: (...args: any) => string;
|
|
9705
9779
|
};
|
|
9706
9780
|
|
|
9707
|
-
declare const useClasses_72: (classesProp?: Partial<Record<"
|
|
9781
|
+
declare const useClasses_72: (classesProp?: Partial<Record<"horizontal" | "root" | "icon" | "radio" | "radioRoot", string>>, addStatic?: boolean) => {
|
|
9708
9782
|
classes: {
|
|
9709
|
-
root: string;
|
|
9710
9783
|
horizontal: string;
|
|
9711
|
-
|
|
9784
|
+
root: string;
|
|
9712
9785
|
icon: string;
|
|
9786
|
+
radio: string;
|
|
9713
9787
|
radioRoot: string;
|
|
9714
9788
|
};
|
|
9715
9789
|
css: {
|
|
@@ -9733,10 +9807,10 @@ declare const useClasses_73: (classesProp?: Partial<Record<"root" | "rootClosed"
|
|
|
9733
9807
|
cx: (...args: any) => string;
|
|
9734
9808
|
};
|
|
9735
9809
|
|
|
9736
|
-
declare const useClasses_74: (classesProp?: Partial<Record<"
|
|
9810
|
+
declare const useClasses_74: (classesProp?: Partial<Record<"iconContainer" | "actionContainer" | "actionsInnerContainer" | "closeAction", string>>, addStatic?: boolean) => {
|
|
9737
9811
|
classes: {
|
|
9738
|
-
actionContainer: string;
|
|
9739
9812
|
iconContainer: string;
|
|
9813
|
+
actionContainer: string;
|
|
9740
9814
|
actionsInnerContainer: string;
|
|
9741
9815
|
closeAction: string;
|
|
9742
9816
|
};
|
|
@@ -9747,15 +9821,15 @@ declare const useClasses_74: (classesProp?: Partial<Record<"actionContainer" | "
|
|
|
9747
9821
|
cx: (...args: any) => string;
|
|
9748
9822
|
};
|
|
9749
9823
|
|
|
9750
|
-
declare const useClasses_75: (classesProp?: Partial<Record<"
|
|
9824
|
+
declare const useClasses_75: (classesProp?: Partial<Record<"warning" | "root" | "action" | "default" | "error" | "message" | "success" | "baseVariant" | "outContainer", string>>, addStatic?: boolean) => {
|
|
9751
9825
|
classes: {
|
|
9752
|
-
root: string;
|
|
9753
9826
|
warning: string;
|
|
9754
|
-
|
|
9827
|
+
root: string;
|
|
9755
9828
|
action: string;
|
|
9829
|
+
default: string;
|
|
9756
9830
|
error: string;
|
|
9757
|
-
success: string;
|
|
9758
9831
|
message: string;
|
|
9832
|
+
success: string;
|
|
9759
9833
|
baseVariant: string;
|
|
9760
9834
|
outContainer: string;
|
|
9761
9835
|
};
|
|
@@ -9783,15 +9857,15 @@ declare const useClasses_76: (classesProp?: Partial<Record<"root" | "anchorOrigi
|
|
|
9783
9857
|
cx: (...args: any) => string;
|
|
9784
9858
|
};
|
|
9785
9859
|
|
|
9786
|
-
declare const useClasses_77: (classesProp?: Partial<Record<"
|
|
9860
|
+
declare const useClasses_77: (classesProp?: Partial<Record<"warning" | "root" | "action" | "default" | "error" | "message" | "success" | "messageSpan" | "messageText" | "iconVariant", string>>, addStatic?: boolean) => {
|
|
9787
9861
|
classes: {
|
|
9788
|
-
root: string;
|
|
9789
9862
|
warning: string;
|
|
9790
|
-
|
|
9863
|
+
root: string;
|
|
9791
9864
|
action: string;
|
|
9865
|
+
default: string;
|
|
9792
9866
|
error: string;
|
|
9793
|
-
success: string;
|
|
9794
9867
|
message: string;
|
|
9868
|
+
success: string;
|
|
9795
9869
|
messageSpan: string;
|
|
9796
9870
|
messageText: string;
|
|
9797
9871
|
iconVariant: string;
|
|
@@ -9814,15 +9888,15 @@ declare const useClasses_78: (classesProp?: Partial<Record<"snackItemRoot", stri
|
|
|
9814
9888
|
cx: (...args: any) => string;
|
|
9815
9889
|
};
|
|
9816
9890
|
|
|
9817
|
-
declare const useClasses_79: (classesProp?: Partial<Record<"root" | "semantic" | "
|
|
9891
|
+
declare const useClasses_79: (classesProp?: Partial<Record<"root" | "semantic" | "divider" | "selectAll" | "actions" | "selectAllContainer" | "selectAllPages", string>>, addStatic?: boolean) => {
|
|
9818
9892
|
classes: {
|
|
9819
9893
|
root: string;
|
|
9820
9894
|
semantic: string;
|
|
9895
|
+
divider: string;
|
|
9896
|
+
selectAll: string;
|
|
9821
9897
|
actions: string;
|
|
9822
9898
|
selectAllContainer: string;
|
|
9823
|
-
selectAll: string;
|
|
9824
9899
|
selectAllPages: string;
|
|
9825
|
-
divider: string;
|
|
9826
9900
|
};
|
|
9827
9901
|
css: {
|
|
9828
9902
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9844,19 +9918,19 @@ declare const useClasses_8: (classesProp?: Partial<Record<"root" | "labelDisable
|
|
|
9844
9918
|
cx: (...args: any) => string;
|
|
9845
9919
|
};
|
|
9846
9920
|
|
|
9847
|
-
declare const useClasses_80: (classesProp?: Partial<Record<"root" | "
|
|
9921
|
+
declare const useClasses_80: (classesProp?: Partial<Record<"name" | "root" | "wrapper" | "globalSectionArea" | "sectionName" | "actions" | "positionSticky" | "positionFixed" | "global" | "globalWrapperComplement" | "backButton", string>>, addStatic?: boolean) => {
|
|
9848
9922
|
classes: {
|
|
9849
|
-
root: string;
|
|
9850
9923
|
name: string;
|
|
9851
|
-
|
|
9924
|
+
root: string;
|
|
9852
9925
|
wrapper: string;
|
|
9926
|
+
globalSectionArea: string;
|
|
9927
|
+
sectionName: string;
|
|
9853
9928
|
actions: string;
|
|
9854
9929
|
positionSticky: string;
|
|
9855
9930
|
positionFixed: string;
|
|
9931
|
+
global: string;
|
|
9856
9932
|
globalWrapperComplement: string;
|
|
9857
|
-
globalSectionArea: string;
|
|
9858
9933
|
backButton: string;
|
|
9859
|
-
sectionName: string;
|
|
9860
9934
|
};
|
|
9861
9935
|
css: {
|
|
9862
9936
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9865,25 +9939,25 @@ declare const useClasses_80: (classesProp?: Partial<Record<"root" | "name" | "gl
|
|
|
9865
9939
|
cx: (...args: any) => string;
|
|
9866
9940
|
};
|
|
9867
9941
|
|
|
9868
|
-
declare const useClasses_81: (classesProp?: Partial<Record<"
|
|
9942
|
+
declare const useClasses_81: (classesProp?: Partial<Record<"label" | "description" | "root" | "placeholder" | "disabled" | "readOnly" | "placeholderClosed" | "error" | "dropdown" | "arrow" | "selectionDisabled" | "labelContainer" | "rootList" | "dropdownListContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen", string>>, addStatic?: boolean) => {
|
|
9869
9943
|
classes: {
|
|
9870
|
-
placeholder: string;
|
|
9871
|
-
arrow: string;
|
|
9872
9944
|
label: string;
|
|
9945
|
+
description: string;
|
|
9873
9946
|
root: string;
|
|
9947
|
+
placeholder: string;
|
|
9874
9948
|
disabled: string;
|
|
9875
9949
|
readOnly: string;
|
|
9950
|
+
placeholderClosed: string;
|
|
9876
9951
|
error: string;
|
|
9877
9952
|
dropdown: string;
|
|
9953
|
+
arrow: string;
|
|
9878
9954
|
selectionDisabled: string;
|
|
9879
|
-
description: string;
|
|
9880
9955
|
labelContainer: string;
|
|
9956
|
+
rootList: string;
|
|
9957
|
+
dropdownListContainer: string;
|
|
9958
|
+
dropdownHeader: string;
|
|
9881
9959
|
dropdownHeaderInvalid: string;
|
|
9882
9960
|
dropdownHeaderOpen: string;
|
|
9883
|
-
placeholderClosed: string;
|
|
9884
|
-
dropdownHeader: string;
|
|
9885
|
-
dropdownListContainer: string;
|
|
9886
|
-
rootList: string;
|
|
9887
9961
|
};
|
|
9888
9962
|
css: {
|
|
9889
9963
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9892,13 +9966,13 @@ declare const useClasses_81: (classesProp?: Partial<Record<"placeholder" | "arro
|
|
|
9892
9966
|
cx: (...args: any) => string;
|
|
9893
9967
|
};
|
|
9894
9968
|
|
|
9895
|
-
declare const useClasses_82: (classesProp?: Partial<Record<"selection" | "
|
|
9969
|
+
declare const useClasses_82: (classesProp?: Partial<Record<"selection" | "selectAll" | "selectAllContainer" | "rootList" | "dropdownListContainer" | "searchContainer" | "listBorderDown" | "listContainer", string>>, addStatic?: boolean) => {
|
|
9896
9970
|
classes: {
|
|
9897
9971
|
selection: string;
|
|
9898
|
-
selectAllContainer: string;
|
|
9899
9972
|
selectAll: string;
|
|
9900
|
-
|
|
9973
|
+
selectAllContainer: string;
|
|
9901
9974
|
rootList: string;
|
|
9975
|
+
dropdownListContainer: string;
|
|
9902
9976
|
searchContainer: string;
|
|
9903
9977
|
listBorderDown: string;
|
|
9904
9978
|
listContainer: string;
|
|
@@ -9958,41 +10032,41 @@ declare const useClasses_86: (classesProp?: Partial<Record<"root" | "stickyHeade
|
|
|
9958
10032
|
cx: (...args: any) => string;
|
|
9959
10033
|
};
|
|
9960
10034
|
|
|
9961
|
-
declare const useClasses_87: (classesProp?: Partial<Record<"body" | "
|
|
10035
|
+
declare const useClasses_87: (classesProp?: Partial<Record<"body" | "root" | "head" | "sortButton" | "variantList" | "resizer" | "footer" | "resizable" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "headerContent" | "headerText" | "headerParagraph" | "sortableHeaderText" | "sorted" | "sortable" | "sortIcon" | "alignFlexLeft" | "alignFlexRight" | "alignFlexCenter" | "alignFlexJustify" | "variantCheckbox" | "variantExpand" | "variantActions" | "variantNone" | "resizing", string>>, addStatic?: boolean) => {
|
|
9962
10036
|
classes: {
|
|
9963
10037
|
body: string;
|
|
9964
|
-
footer: string;
|
|
9965
|
-
head: string;
|
|
9966
10038
|
root: string;
|
|
10039
|
+
head: string;
|
|
10040
|
+
sortButton: string;
|
|
10041
|
+
variantList: string;
|
|
9967
10042
|
resizer: string;
|
|
10043
|
+
footer: string;
|
|
9968
10044
|
resizable: string;
|
|
9969
|
-
|
|
9970
|
-
|
|
10045
|
+
alignLeft: string;
|
|
10046
|
+
alignCenter: string;
|
|
10047
|
+
alignRight: string;
|
|
10048
|
+
alignJustify: string;
|
|
9971
10049
|
stickyColumn: string;
|
|
9972
10050
|
stickyColumnMostLeft: string;
|
|
9973
10051
|
stickyColumnLeastRight: string;
|
|
9974
10052
|
groupColumnMostLeft: string;
|
|
9975
10053
|
groupColumnMostRight: string;
|
|
9976
|
-
resizing: string;
|
|
9977
|
-
alignLeft: string;
|
|
9978
|
-
alignCenter: string;
|
|
9979
|
-
alignRight: string;
|
|
9980
|
-
alignJustify: string;
|
|
9981
|
-
variantNone: string;
|
|
9982
|
-
variantCheckbox: string;
|
|
9983
|
-
variantActions: string;
|
|
9984
|
-
variantExpand: string;
|
|
9985
|
-
variantList: string;
|
|
9986
10054
|
headerContent: string;
|
|
9987
10055
|
headerText: string;
|
|
9988
10056
|
headerParagraph: string;
|
|
9989
10057
|
sortableHeaderText: string;
|
|
9990
|
-
|
|
10058
|
+
sorted: string;
|
|
10059
|
+
sortable: string;
|
|
9991
10060
|
sortIcon: string;
|
|
9992
10061
|
alignFlexLeft: string;
|
|
9993
10062
|
alignFlexRight: string;
|
|
9994
10063
|
alignFlexCenter: string;
|
|
9995
10064
|
alignFlexJustify: string;
|
|
10065
|
+
variantCheckbox: string;
|
|
10066
|
+
variantExpand: string;
|
|
10067
|
+
variantActions: string;
|
|
10068
|
+
variantNone: string;
|
|
10069
|
+
resizing: string;
|
|
9996
10070
|
};
|
|
9997
10071
|
css: {
|
|
9998
10072
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -10001,17 +10075,17 @@ declare const useClasses_87: (classesProp?: Partial<Record<"body" | "footer" | "
|
|
|
10001
10075
|
cx: (...args: any) => string;
|
|
10002
10076
|
};
|
|
10003
10077
|
|
|
10004
|
-
declare const useClasses_88: (classesProp?: Partial<Record<"body" | "
|
|
10078
|
+
declare const useClasses_88: (classesProp?: Partial<Record<"body" | "root" | "selected" | "head" | "variantList" | "expanded" | "footer" | "striped" | "hover" | "variantListHead", string>>, addStatic?: boolean) => {
|
|
10005
10079
|
classes: {
|
|
10006
10080
|
body: string;
|
|
10007
|
-
footer: string;
|
|
10008
|
-
head: string;
|
|
10009
10081
|
root: string;
|
|
10010
|
-
expanded: string;
|
|
10011
10082
|
selected: string;
|
|
10012
|
-
|
|
10013
|
-
striped: string;
|
|
10083
|
+
head: string;
|
|
10014
10084
|
variantList: string;
|
|
10085
|
+
expanded: string;
|
|
10086
|
+
footer: string;
|
|
10087
|
+
striped: string;
|
|
10088
|
+
hover: string;
|
|
10015
10089
|
variantListHead: string;
|
|
10016
10090
|
};
|
|
10017
10091
|
css: {
|
|
@@ -10021,32 +10095,32 @@ declare const useClasses_88: (classesProp?: Partial<Record<"body" | "footer" | "
|
|
|
10021
10095
|
cx: (...args: any) => string;
|
|
10022
10096
|
};
|
|
10023
10097
|
|
|
10024
|
-
declare const useClasses_89: (classesProp?: Partial<Record<"body" | "
|
|
10098
|
+
declare const useClasses_89: (classesProp?: Partial<Record<"body" | "root" | "head" | "variantListactions" | "variantListcheckbox" | "variantList" | "footer" | "resizable" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "sorted" | "variantCheckbox" | "variantExpand" | "variantActions" | "variantNone" | "resizing" | "variantListHead", string>>, addStatic?: boolean) => {
|
|
10025
10099
|
classes: {
|
|
10026
10100
|
body: string;
|
|
10027
|
-
footer: string;
|
|
10028
|
-
head: string;
|
|
10029
10101
|
root: string;
|
|
10102
|
+
head: string;
|
|
10103
|
+
variantListactions: string;
|
|
10104
|
+
variantListcheckbox: string;
|
|
10105
|
+
variantList: string;
|
|
10106
|
+
footer: string;
|
|
10030
10107
|
resizable: string;
|
|
10031
|
-
|
|
10108
|
+
alignLeft: string;
|
|
10109
|
+
alignCenter: string;
|
|
10110
|
+
alignRight: string;
|
|
10111
|
+
alignJustify: string;
|
|
10032
10112
|
stickyColumn: string;
|
|
10033
10113
|
stickyColumnMostLeft: string;
|
|
10034
10114
|
stickyColumnLeastRight: string;
|
|
10035
10115
|
groupColumnMostLeft: string;
|
|
10036
10116
|
groupColumnMostRight: string;
|
|
10037
|
-
|
|
10038
|
-
alignLeft: string;
|
|
10039
|
-
alignCenter: string;
|
|
10040
|
-
alignRight: string;
|
|
10041
|
-
alignJustify: string;
|
|
10042
|
-
variantNone: string;
|
|
10117
|
+
sorted: string;
|
|
10043
10118
|
variantCheckbox: string;
|
|
10044
|
-
variantActions: string;
|
|
10045
10119
|
variantExpand: string;
|
|
10046
|
-
|
|
10120
|
+
variantActions: string;
|
|
10121
|
+
variantNone: string;
|
|
10122
|
+
resizing: string;
|
|
10047
10123
|
variantListHead: string;
|
|
10048
|
-
variantListactions: string;
|
|
10049
|
-
variantListcheckbox: string;
|
|
10050
10124
|
};
|
|
10051
10125
|
css: {
|
|
10052
10126
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -10080,10 +10154,10 @@ declare const useClasses_90: (classesProp?: Partial<Record<"root" | "formContain
|
|
|
10080
10154
|
cx: (...args: any) => string;
|
|
10081
10155
|
};
|
|
10082
10156
|
|
|
10083
|
-
declare const useClasses_91: (classesProp?: Partial<Record<"
|
|
10157
|
+
declare const useClasses_91: (classesProp?: Partial<Record<"root" | "section" | "rightSection" | "leftSection", string>>, addStatic?: boolean) => {
|
|
10084
10158
|
classes: {
|
|
10085
|
-
section: string;
|
|
10086
10159
|
root: string;
|
|
10160
|
+
section: string;
|
|
10087
10161
|
rightSection: string;
|
|
10088
10162
|
leftSection: string;
|
|
10089
10163
|
};
|
|
@@ -10117,14 +10191,14 @@ declare const useClasses_93: (classesProp?: Partial<Record<"root" | "sortDropdow
|
|
|
10117
10191
|
cx: (...args: any) => string;
|
|
10118
10192
|
};
|
|
10119
10193
|
|
|
10120
|
-
declare const useClasses_94: (classesProp?: Partial<Record<"root" | "
|
|
10194
|
+
declare const useClasses_94: (classesProp?: Partial<Record<"root" | "focusSelection" | "calendarMonthlyCell" | "calendarMonthlyCellSelected" | "rangeCalendarContainer" | "singleCalendar", string>>, addStatic?: boolean) => {
|
|
10121
10195
|
classes: {
|
|
10122
10196
|
root: string;
|
|
10123
|
-
rangeCalendarContainer: string;
|
|
10124
|
-
singleCalendar: string;
|
|
10125
10197
|
focusSelection: string;
|
|
10126
10198
|
calendarMonthlyCell: string;
|
|
10127
10199
|
calendarMonthlyCellSelected: string;
|
|
10200
|
+
rangeCalendarContainer: string;
|
|
10201
|
+
singleCalendar: string;
|
|
10128
10202
|
};
|
|
10129
10203
|
css: {
|
|
10130
10204
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -10133,14 +10207,14 @@ declare const useClasses_94: (classesProp?: Partial<Record<"root" | "rangeCalend
|
|
|
10133
10207
|
cx: (...args: any) => string;
|
|
10134
10208
|
};
|
|
10135
10209
|
|
|
10136
|
-
declare const useClasses_95: (classesProp?: Partial<Record<"
|
|
10210
|
+
declare const useClasses_95: (classesProp?: Partial<Record<"root" | "inputBorderContainer" | "input" | "headerDate" | "headerDayOfWeek" | "invalid" | "invalidMessageStyling", string>>, addStatic?: boolean) => {
|
|
10137
10211
|
classes: {
|
|
10138
|
-
input: string;
|
|
10139
10212
|
root: string;
|
|
10140
|
-
invalid: string;
|
|
10141
10213
|
inputBorderContainer: string;
|
|
10142
|
-
|
|
10214
|
+
input: string;
|
|
10143
10215
|
headerDate: string;
|
|
10216
|
+
headerDayOfWeek: string;
|
|
10217
|
+
invalid: string;
|
|
10144
10218
|
invalidMessageStyling: string;
|
|
10145
10219
|
};
|
|
10146
10220
|
css: {
|
|
@@ -10189,11 +10263,11 @@ declare const useClasses_98: (classesProp?: Partial<Record<"root" | "hide", stri
|
|
|
10189
10263
|
cx: (...args: any) => string;
|
|
10190
10264
|
};
|
|
10191
10265
|
|
|
10192
|
-
declare const useClasses_99: (classesProp?: Partial<Record<"action" | "
|
|
10266
|
+
declare const useClasses_99: (classesProp?: Partial<Record<"action" | "minimized" | "noIcon", string>>, addStatic?: boolean) => {
|
|
10193
10267
|
classes: {
|
|
10194
10268
|
action: string;
|
|
10195
|
-
noIcon: string;
|
|
10196
10269
|
minimized: string;
|
|
10270
|
+
noIcon: string;
|
|
10197
10271
|
};
|
|
10198
10272
|
css: {
|
|
10199
10273
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -10535,6 +10609,134 @@ export declare const useTheme: () => HvThemeContextValue & {
|
|
|
10535
10609
|
colors?: HvThemeColorModeStructure;
|
|
10536
10610
|
};
|
|
10537
10611
|
|
|
10612
|
+
declare interface UseTreeViewContextValueBuilderParameters {
|
|
10613
|
+
/**
|
|
10614
|
+
* This prop is used to help implement the accessibility logic.
|
|
10615
|
+
* If you don't provide this prop. It falls back to a randomly generated id.
|
|
10616
|
+
*/
|
|
10617
|
+
id?: string;
|
|
10618
|
+
/**
|
|
10619
|
+
* The default icon used to collapse the node.
|
|
10620
|
+
*/
|
|
10621
|
+
defaultCollapseIcon?: React.ReactNode;
|
|
10622
|
+
/**
|
|
10623
|
+
* The default icon displayed next to a end node. This is applied to all
|
|
10624
|
+
* tree nodes and can be overridden by the TreeItem `icon` prop.
|
|
10625
|
+
*/
|
|
10626
|
+
defaultEndIcon?: React.ReactNode;
|
|
10627
|
+
/**
|
|
10628
|
+
* The default icon used to expand the node.
|
|
10629
|
+
*/
|
|
10630
|
+
defaultExpandIcon?: React.ReactNode;
|
|
10631
|
+
/**
|
|
10632
|
+
* The default icon displayed next to a parent node. This is applied to all
|
|
10633
|
+
* parent nodes and can be overridden by the TreeItem `icon` prop.
|
|
10634
|
+
*/
|
|
10635
|
+
defaultParentIcon?: React.ReactNode;
|
|
10636
|
+
}
|
|
10637
|
+
|
|
10638
|
+
declare interface UseTreeViewExpansionInstance {
|
|
10639
|
+
isNodeExpanded: (nodeId: string) => boolean;
|
|
10640
|
+
isNodeExpandable: (nodeId: string) => boolean;
|
|
10641
|
+
toggleNodeExpansion: (event: React_3.SyntheticEvent, value: string) => void;
|
|
10642
|
+
expandAllSiblings: (event: React_3.KeyboardEvent<HTMLUListElement>, nodeId: string) => void;
|
|
10643
|
+
}
|
|
10644
|
+
|
|
10645
|
+
declare interface UseTreeViewExpansionParameters {
|
|
10646
|
+
/**
|
|
10647
|
+
* Expanded node ids.
|
|
10648
|
+
* Used when the item's expansion is controlled.
|
|
10649
|
+
*/
|
|
10650
|
+
expanded?: string[];
|
|
10651
|
+
/**
|
|
10652
|
+
* Expanded node ids.
|
|
10653
|
+
* Used when the item's expansion is not controlled.
|
|
10654
|
+
* @default []
|
|
10655
|
+
*/
|
|
10656
|
+
defaultExpanded?: string[];
|
|
10657
|
+
/**
|
|
10658
|
+
* Callback fired when tree items are expanded/collapsed.
|
|
10659
|
+
* @param {React.SyntheticEvent} event The event source of the callback.
|
|
10660
|
+
* @param {array} nodeIds The ids of the expanded nodes.
|
|
10661
|
+
*/
|
|
10662
|
+
onNodeToggle?: (event: React_3.SyntheticEvent, nodeIds: string[]) => void;
|
|
10663
|
+
}
|
|
10664
|
+
|
|
10665
|
+
declare interface UseTreeViewFocusInstance {
|
|
10666
|
+
isNodeFocused: (nodeId: string) => boolean;
|
|
10667
|
+
focusNode: (event: React_3.SyntheticEvent, nodeId: string | null) => void;
|
|
10668
|
+
}
|
|
10669
|
+
|
|
10670
|
+
declare interface UseTreeViewFocusParameters {
|
|
10671
|
+
/**
|
|
10672
|
+
* Callback fired when tree items are focused.
|
|
10673
|
+
* @param {React.SyntheticEvent} event The event source of the callback **Warning**: This is a generic event not a focus event.
|
|
10674
|
+
* @param {string} nodeId The id of the node focused.
|
|
10675
|
+
* @param {string} value of the focused node.
|
|
10676
|
+
*/
|
|
10677
|
+
onNodeFocus?: (event: React_3.SyntheticEvent, nodeId: string) => void;
|
|
10678
|
+
}
|
|
10679
|
+
|
|
10680
|
+
declare interface UseTreeViewKeyboardNavigationInstance {
|
|
10681
|
+
mapFirstChar: (nodeId: string, firstChar: string) => () => void;
|
|
10682
|
+
}
|
|
10683
|
+
|
|
10684
|
+
declare interface UseTreeViewNodesInstance {
|
|
10685
|
+
getNode: (nodeId: string) => TreeViewNode;
|
|
10686
|
+
updateNode: (node: TreeViewNode) => void;
|
|
10687
|
+
removeNode: (nodeId: string) => void;
|
|
10688
|
+
getChildrenIds: (nodeId: string | null) => string[];
|
|
10689
|
+
getNavigableChildrenIds: (nodeId: string | null) => string[];
|
|
10690
|
+
isNodeDisabled: (nodeId: string | null) => nodeId is string;
|
|
10691
|
+
}
|
|
10692
|
+
|
|
10693
|
+
declare interface UseTreeViewNodesParameters {
|
|
10694
|
+
/**
|
|
10695
|
+
* If `true`, will allow focus on disabled items.
|
|
10696
|
+
* @default false
|
|
10697
|
+
*/
|
|
10698
|
+
disabledItemsFocusable?: boolean;
|
|
10699
|
+
}
|
|
10700
|
+
|
|
10701
|
+
declare interface UseTreeViewSelectionInstance {
|
|
10702
|
+
isNodeSelected: (nodeId: string) => boolean;
|
|
10703
|
+
selectNode: (event: React_3.SyntheticEvent, nodeId: string, multiple?: boolean) => void;
|
|
10704
|
+
selectRange: (event: React_3.SyntheticEvent, nodes: TreeViewItemRange, stacked?: boolean) => void;
|
|
10705
|
+
rangeSelectToFirst: (event: React_3.KeyboardEvent<HTMLUListElement>, nodeId: string) => void;
|
|
10706
|
+
rangeSelectToLast: (event: React_3.KeyboardEvent<HTMLUListElement>, nodeId: string) => void;
|
|
10707
|
+
}
|
|
10708
|
+
|
|
10709
|
+
declare interface UseTreeViewSelectionParameters<Multiple extends boolean | undefined> {
|
|
10710
|
+
/**
|
|
10711
|
+
* If `true` selection is disabled.
|
|
10712
|
+
* @default false
|
|
10713
|
+
*/
|
|
10714
|
+
disableSelection?: boolean;
|
|
10715
|
+
/**
|
|
10716
|
+
* Selected node ids. (Uncontrolled)
|
|
10717
|
+
* When `multiSelect` is true this takes an array of strings; when false (default) a string.
|
|
10718
|
+
* @default []
|
|
10719
|
+
*/
|
|
10720
|
+
defaultSelected?: TreeViewSelectionValue<Multiple>;
|
|
10721
|
+
/**
|
|
10722
|
+
* Selected node ids. (Controlled)
|
|
10723
|
+
* When `multiSelect` is true this takes an array of strings; when false (default) a string.
|
|
10724
|
+
*/
|
|
10725
|
+
selected?: TreeViewSelectionValue<Multiple>;
|
|
10726
|
+
/**
|
|
10727
|
+
* If true `ctrl` and `shift` will trigger multiselect.
|
|
10728
|
+
* @default false
|
|
10729
|
+
*/
|
|
10730
|
+
multiSelect?: Multiple;
|
|
10731
|
+
/**
|
|
10732
|
+
* Callback fired when tree items are selected/unselected.
|
|
10733
|
+
* @param {React.SyntheticEvent} event The event source of the callback
|
|
10734
|
+
* @param {string[] | string} nodeIds Ids of the selected nodes. When `multiSelect` is true
|
|
10735
|
+
* this is an array of strings; when false (default) a string.
|
|
10736
|
+
*/
|
|
10737
|
+
onNodeSelect?: (event: React_3.SyntheticEvent, nodeIds: Exclude<TreeViewSelectionValue<Multiple>, null>) => void;
|
|
10738
|
+
}
|
|
10739
|
+
|
|
10538
10740
|
export declare const useUniqueId: (id?: string, idPrefix?: string) => string;
|
|
10539
10741
|
|
|
10540
10742
|
export declare const useWidth: () => Breakpoint_2;
|
|
@@ -10582,17 +10784,17 @@ export declare const verticalNavigationSliderClasses: {
|
|
|
10582
10784
|
|
|
10583
10785
|
export declare const verticalNavigationTreeClasses: {
|
|
10584
10786
|
root: "HvVerticalNavigationTree-root";
|
|
10787
|
+
listItem: "HvVerticalNavigationTree-listItem";
|
|
10585
10788
|
list: "HvVerticalNavigationTree-list";
|
|
10586
10789
|
popup: "HvVerticalNavigationTree-popup";
|
|
10587
10790
|
collapsed: "HvVerticalNavigationTree-collapsed";
|
|
10588
|
-
listItem: "HvVerticalNavigationTree-listItem";
|
|
10589
10791
|
navigationPopup: "HvVerticalNavigationTree-navigationPopup";
|
|
10590
10792
|
};
|
|
10591
10793
|
|
|
10592
10794
|
export declare const verticalScrollListItemClasses: {
|
|
10795
|
+
root: "HvVerticalScrollListItem-root";
|
|
10593
10796
|
button: "HvVerticalScrollListItem-button";
|
|
10594
10797
|
text: "HvVerticalScrollListItem-text";
|
|
10595
|
-
root: "HvVerticalScrollListItem-root";
|
|
10596
10798
|
notSelected: "HvVerticalScrollListItem-notSelected";
|
|
10597
10799
|
};
|
|
10598
10800
|
|
|
@@ -10600,11 +10802,11 @@ export declare type VisibilitySelectorActions = "previous_month" | "next_month"
|
|
|
10600
10802
|
|
|
10601
10803
|
export declare const warningTextClasses: {
|
|
10602
10804
|
root: "HvWarningText-root";
|
|
10603
|
-
show: "HvWarningText-show";
|
|
10604
|
-
hideText: "HvWarningText-hideText";
|
|
10605
|
-
defaultIcon: "HvWarningText-defaultIcon";
|
|
10606
10805
|
warningText: "HvWarningText-warningText";
|
|
10607
10806
|
topGutter: "HvWarningText-topGutter";
|
|
10807
|
+
defaultIcon: "HvWarningText-defaultIcon";
|
|
10808
|
+
show: "HvWarningText-show";
|
|
10809
|
+
hideText: "HvWarningText-hideText";
|
|
10608
10810
|
topBorder: "HvWarningText-topBorder";
|
|
10609
10811
|
};
|
|
10610
10812
|
|