@hitachivantara/uikit-react-core 5.69.0 → 5.71.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/Card/Content/Content.cjs +10 -8
- package/dist/cjs/Forms/Adornment/Adornment.cjs +11 -3
- package/dist/cjs/Forms/Adornment/Adornment.styles.cjs +6 -0
- package/dist/cjs/Forms/Suggestions/Suggestions.cjs +22 -29
- package/dist/cjs/Header/Header.cjs +3 -9
- package/dist/cjs/Header/Header.styles.cjs +3 -3
- package/dist/cjs/ListContainer/ListItem/ListItem.styles.cjs +1 -0
- package/dist/cjs/TimePicker/TimePicker.cjs +2 -6
- package/dist/cjs/VerticalNavigation/TreeView/TreeViewItem.cjs +6 -4
- package/dist/esm/Card/Content/Content.js +10 -8
- package/dist/esm/Card/Content/Content.js.map +1 -1
- package/dist/esm/Forms/Adornment/Adornment.js +11 -3
- package/dist/esm/Forms/Adornment/Adornment.js.map +1 -1
- package/dist/esm/Forms/Adornment/Adornment.styles.js +6 -0
- package/dist/esm/Forms/Adornment/Adornment.styles.js.map +1 -1
- package/dist/esm/Forms/Suggestions/Suggestions.js +22 -27
- package/dist/esm/Forms/Suggestions/Suggestions.js.map +1 -1
- package/dist/esm/Header/Actions/Actions.styles.js.map +1 -1
- package/dist/esm/Header/Brand/Brand.styles.js.map +1 -1
- package/dist/esm/Header/Header.js +3 -9
- package/dist/esm/Header/Header.js.map +1 -1
- package/dist/esm/Header/Header.styles.js +3 -3
- package/dist/esm/Header/Header.styles.js.map +1 -1
- package/dist/esm/Header/Navigation/MenuBar/Bar.styles.js.map +1 -1
- package/dist/esm/Header/Navigation/MenuItem/MenuItem.styles.js.map +1 -1
- package/dist/esm/Header/Navigation/Navigation.styles.js.map +1 -1
- package/dist/esm/Input/Input.js.map +1 -1
- package/dist/esm/ListContainer/ListItem/ListItem.styles.js +1 -0
- package/dist/esm/ListContainer/ListItem/ListItem.styles.js.map +1 -1
- package/dist/esm/TimePicker/TimePicker.js +2 -6
- package/dist/esm/TimePicker/TimePicker.js.map +1 -1
- package/dist/esm/VerticalNavigation/TreeView/TreeViewItem.js +7 -5
- package/dist/esm/VerticalNavigation/TreeView/TreeViewItem.js.map +1 -1
- package/dist/types/index.d.ts +356 -289
- package/package.json +6 -6
package/dist/types/index.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
|
|
1
3
|
import { ActionType } from 'react-table';
|
|
2
4
|
import { AvatarProps } from '@mui/material/Avatar';
|
|
3
5
|
import { Breakpoint as Breakpoint_2 } from '@mui/material/styles';
|
|
@@ -7,12 +9,14 @@ import { CardMediaProps } from '@mui/material/CardMedia';
|
|
|
7
9
|
import { Cell } from 'react-table';
|
|
8
10
|
import { CheckboxProps } from '@mui/material/Checkbox';
|
|
9
11
|
import { ChipProps } from '@mui/material/Chip';
|
|
12
|
+
import { ClickAwayListenerProps } from '@mui/base/ClickAwayListener';
|
|
10
13
|
import { ColumnInstance } from 'react-table';
|
|
11
14
|
import { ColumnInterface } from 'react-table';
|
|
12
15
|
import { ComponentProps } from 'react';
|
|
13
16
|
import { ContainerProps } from '@mui/material/Container';
|
|
14
17
|
import { Context } from 'react';
|
|
15
18
|
import { createClasses } from '@hitachivantara/uikit-react-utils';
|
|
19
|
+
import { CSSProperties } from 'react';
|
|
16
20
|
import { default as default_2 } from 'react';
|
|
17
21
|
import { default as default_3 } from 'embla-carousel-react';
|
|
18
22
|
import { defaultCacheKey } from '@hitachivantara/uikit-react-shared';
|
|
@@ -25,6 +29,7 @@ import { DividerProps } from '@mui/material/Divider';
|
|
|
25
29
|
import { DrawerProps } from '@mui/material/Drawer';
|
|
26
30
|
import { ds3 } from '@hitachivantara/uikit-styles';
|
|
27
31
|
import { ds5 } from '@hitachivantara/uikit-styles';
|
|
32
|
+
import { ElementType } from 'react';
|
|
28
33
|
import { EmotionCache } from '@emotion/cache';
|
|
29
34
|
import { EmotionContext } from '@hitachivantara/uikit-react-shared';
|
|
30
35
|
import { ExtractNames } from '@hitachivantara/uikit-react-utils';
|
|
@@ -58,7 +63,9 @@ import { IdType as IdType_2 } from 'react-table';
|
|
|
58
63
|
import { InputBaseComponentProps } from '@mui/material/InputBase';
|
|
59
64
|
import { InputBaseProps } from '@mui/material/InputBase';
|
|
60
65
|
import { InputProps } from '@mui/material/Input';
|
|
61
|
-
import { JSX as JSX_2 } from 'react
|
|
66
|
+
import { JSX as JSX_2 } from 'react';
|
|
67
|
+
import { JSX as JSX_3 } from 'react/jsx-runtime';
|
|
68
|
+
import { JSXElementConstructor } from 'react';
|
|
62
69
|
import { OptionGroupProps } from '@mui/base/OptionGroup';
|
|
63
70
|
import { OptionOwnProps } from '@mui/base/Option';
|
|
64
71
|
import { OptionsObject } from 'notistack';
|
|
@@ -68,6 +75,7 @@ import { PropGetter } from 'react-table';
|
|
|
68
75
|
import { PropsWithoutRef } from 'react';
|
|
69
76
|
import { RadioProps } from '@mui/material/Radio';
|
|
70
77
|
import * as React_2 from 'react';
|
|
78
|
+
import { ReactElement } from 'react';
|
|
71
79
|
import { ReactNode } from 'react';
|
|
72
80
|
import { ReducerTableState } from 'react-table';
|
|
73
81
|
import { RefAttributes } from 'react';
|
|
@@ -195,6 +203,7 @@ export declare const actionsGenericClasses: {
|
|
|
195
203
|
|
|
196
204
|
export declare const adornmentClasses: {
|
|
197
205
|
root: "HvAdornment-root";
|
|
206
|
+
disabled: "HvAdornment-disabled";
|
|
198
207
|
icon: "HvAdornment-icon";
|
|
199
208
|
adornment: "HvAdornment-adornment";
|
|
200
209
|
adornmentIcon: "HvAdornment-adornmentIcon";
|
|
@@ -257,10 +266,10 @@ export declare const avatarClasses: {
|
|
|
257
266
|
square: "HvAvatar-square";
|
|
258
267
|
img: "HvAvatar-img";
|
|
259
268
|
status: "HvAvatar-status";
|
|
260
|
-
fallback: "HvAvatar-fallback";
|
|
261
269
|
avatar: "HvAvatar-avatar";
|
|
262
|
-
badge: "HvAvatar-badge";
|
|
263
270
|
circular: "HvAvatar-circular";
|
|
271
|
+
fallback: "HvAvatar-fallback";
|
|
272
|
+
badge: "HvAvatar-badge";
|
|
264
273
|
};
|
|
265
274
|
|
|
266
275
|
export declare const avatarGroupClasses: {
|
|
@@ -274,19 +283,19 @@ export declare const avatarGroupClasses: {
|
|
|
274
283
|
export declare const badgeClasses: {
|
|
275
284
|
root: "HvBadge-root";
|
|
276
285
|
badge: "HvBadge-badge";
|
|
286
|
+
showLabel: "HvBadge-showLabel";
|
|
277
287
|
badgeContainer: "HvBadge-badgeContainer";
|
|
278
288
|
badgePosition: "HvBadge-badgePosition";
|
|
279
289
|
showCount: "HvBadge-showCount";
|
|
280
|
-
showLabel: "HvBadge-showLabel";
|
|
281
290
|
badgeIcon: "HvBadge-badgeIcon";
|
|
282
291
|
badgeOneDigit: "HvBadge-badgeOneDigit";
|
|
283
292
|
};
|
|
284
293
|
|
|
285
294
|
export declare const bannerClasses: {
|
|
286
295
|
root: "HvBanner-root";
|
|
287
|
-
rootClosed: "HvBanner-rootClosed";
|
|
288
296
|
anchorOriginTopCenter: "HvBanner-anchorOriginTopCenter";
|
|
289
297
|
anchorOriginBottomCenter: "HvBanner-anchorOriginBottomCenter";
|
|
298
|
+
rootClosed: "HvBanner-rootClosed";
|
|
290
299
|
};
|
|
291
300
|
|
|
292
301
|
export declare const bannerContentClasses: {
|
|
@@ -328,9 +337,9 @@ export declare const baseDropdownClasses: {
|
|
|
328
337
|
panel: "HvBaseDropdown-panel";
|
|
329
338
|
inputExtensionOpen: "HvBaseDropdown-inputExtensionOpen";
|
|
330
339
|
anchor: "HvBaseDropdown-anchor";
|
|
340
|
+
arrow: "HvBaseDropdown-arrow";
|
|
331
341
|
selection: "HvBaseDropdown-selection";
|
|
332
342
|
arrowContainer: "HvBaseDropdown-arrowContainer";
|
|
333
|
-
arrow: "HvBaseDropdown-arrow";
|
|
334
343
|
panelOpenedUp: "HvBaseDropdown-panelOpenedUp";
|
|
335
344
|
panelOpenedDown: "HvBaseDropdown-panelOpenedDown";
|
|
336
345
|
rootDisabled: "HvBaseDropdown-rootDisabled";
|
|
@@ -387,10 +396,10 @@ export declare const breadCrumbClasses: {
|
|
|
387
396
|
link: "HvBreadCrumb-link";
|
|
388
397
|
root: "HvBreadCrumb-root";
|
|
389
398
|
a: "HvBreadCrumb-a";
|
|
390
|
-
orderedList: "HvBreadCrumb-orderedList";
|
|
391
|
-
currentPage: "HvBreadCrumb-currentPage";
|
|
392
399
|
centerContainer: "HvBreadCrumb-centerContainer";
|
|
393
400
|
separatorContainer: "HvBreadCrumb-separatorContainer";
|
|
401
|
+
orderedList: "HvBreadCrumb-orderedList";
|
|
402
|
+
currentPage: "HvBreadCrumb-currentPage";
|
|
394
403
|
};
|
|
395
404
|
|
|
396
405
|
export declare interface Breakpoint {
|
|
@@ -414,9 +423,9 @@ export declare const bulkActionsClasses: {
|
|
|
414
423
|
root: "HvBulkActions-root";
|
|
415
424
|
semantic: "HvBulkActions-semantic";
|
|
416
425
|
divider: "HvBulkActions-divider";
|
|
417
|
-
selectAll: "HvBulkActions-selectAll";
|
|
418
426
|
actions: "HvBulkActions-actions";
|
|
419
427
|
selectAllContainer: "HvBulkActions-selectAllContainer";
|
|
428
|
+
selectAll: "HvBulkActions-selectAll";
|
|
420
429
|
selectAllPages: "HvBulkActions-selectAllPages";
|
|
421
430
|
};
|
|
422
431
|
|
|
@@ -432,10 +441,10 @@ export declare const buttonClasses: {
|
|
|
432
441
|
secondaryGhost: "HvButton-secondaryGhost";
|
|
433
442
|
primaryGhost: "HvButton-primaryGhost";
|
|
434
443
|
subtle: "HvButton-subtle";
|
|
435
|
-
|
|
444
|
+
focusVisible: "HvButton-focusVisible";
|
|
436
445
|
startIcon: "HvButton-startIcon";
|
|
437
446
|
endIcon: "HvButton-endIcon";
|
|
438
|
-
|
|
447
|
+
primarySubtle: "HvButton-primarySubtle";
|
|
439
448
|
};
|
|
440
449
|
|
|
441
450
|
export declare const buttonRadius: readonly ["none", "base", "round", "circle", "full"];
|
|
@@ -446,11 +455,11 @@ export declare const buttonVariant: readonly ["primary", "primarySubtle", "prima
|
|
|
446
455
|
|
|
447
456
|
export declare const calendarClasses: {
|
|
448
457
|
root: "HvCalendar-root";
|
|
449
|
-
rangeCalendarContainer: "HvCalendar-rangeCalendarContainer";
|
|
450
|
-
singleCalendar: "HvCalendar-singleCalendar";
|
|
451
458
|
focusSelection: "HvCalendar-focusSelection";
|
|
452
459
|
calendarMonthlyCell: "HvCalendar-calendarMonthlyCell";
|
|
453
460
|
calendarMonthlyCellSelected: "HvCalendar-calendarMonthlyCellSelected";
|
|
461
|
+
rangeCalendarContainer: "HvCalendar-rangeCalendarContainer";
|
|
462
|
+
singleCalendar: "HvCalendar-singleCalendar";
|
|
454
463
|
};
|
|
455
464
|
|
|
456
465
|
export declare const calendarHeaderClasses: {
|
|
@@ -501,7 +510,7 @@ export declare const carouselClasses: {
|
|
|
501
510
|
thumbnailSelected: "HvCarousel-thumbnailSelected";
|
|
502
511
|
dot: "HvCarousel-dot";
|
|
503
512
|
main: "HvCarousel-main";
|
|
504
|
-
|
|
513
|
+
dots: "HvCarousel-dots";
|
|
505
514
|
actions: "HvCarousel-actions";
|
|
506
515
|
fullscreen: "HvCarousel-fullscreen";
|
|
507
516
|
closeButton: "HvCarousel-closeButton";
|
|
@@ -509,19 +518,19 @@ export declare const carouselClasses: {
|
|
|
509
518
|
pageCounter: "HvCarousel-pageCounter";
|
|
510
519
|
mainXs: "HvCarousel-mainXs";
|
|
511
520
|
mainFullscreen: "HvCarousel-mainFullscreen";
|
|
521
|
+
counter: "HvCarousel-counter";
|
|
512
522
|
slideControls: "HvCarousel-slideControls";
|
|
513
523
|
slidesViewport: "HvCarousel-slidesViewport";
|
|
514
524
|
slidesContainer: "HvCarousel-slidesContainer";
|
|
515
|
-
dots: "HvCarousel-dots";
|
|
516
525
|
dotsXs: "HvCarousel-dotsXs";
|
|
517
526
|
dotSelected: "HvCarousel-dotSelected";
|
|
518
527
|
};
|
|
519
528
|
|
|
520
529
|
declare type CellValue<V = any> = V;
|
|
521
530
|
|
|
522
|
-
export declare const CellWithCheckBox: ({ row, labels: labelsProp }: any) =>
|
|
531
|
+
export declare const CellWithCheckBox: ({ row, labels: labelsProp }: any) => JSX_3.Element;
|
|
523
532
|
|
|
524
|
-
export declare const CellWithExpandButton: ({ row, cell, labels: labelsProp, }: any) =>
|
|
533
|
+
export declare const CellWithExpandButton: ({ row, cell, labels: labelsProp, }: any) => JSX_3.Element;
|
|
525
534
|
|
|
526
535
|
export declare const charCounterClasses: {
|
|
527
536
|
root: "HvCharCounter-root";
|
|
@@ -840,11 +849,11 @@ export declare const dropdownClasses: {
|
|
|
840
849
|
arrow: "HvDropdown-arrow";
|
|
841
850
|
labelContainer: "HvDropdown-labelContainer";
|
|
842
851
|
selectionDisabled: "HvDropdown-selectionDisabled";
|
|
852
|
+
rootList: "HvDropdown-rootList";
|
|
853
|
+
dropdownListContainer: "HvDropdown-dropdownListContainer";
|
|
843
854
|
dropdownHeader: "HvDropdown-dropdownHeader";
|
|
844
855
|
dropdownHeaderInvalid: "HvDropdown-dropdownHeaderInvalid";
|
|
845
856
|
dropdownHeaderOpen: "HvDropdown-dropdownHeaderOpen";
|
|
846
|
-
dropdownListContainer: "HvDropdown-dropdownListContainer";
|
|
847
|
-
rootList: "HvDropdown-rootList";
|
|
848
857
|
};
|
|
849
858
|
|
|
850
859
|
export declare const dropDownMenuClasses: {
|
|
@@ -867,8 +876,8 @@ export declare const emptyStateClasses: {
|
|
|
867
876
|
container: "HvEmptyState-container";
|
|
868
877
|
root: "HvEmptyState-root";
|
|
869
878
|
titleContainer: "HvEmptyState-titleContainer";
|
|
870
|
-
actionContainer: "HvEmptyState-actionContainer";
|
|
871
879
|
iconContainer: "HvEmptyState-iconContainer";
|
|
880
|
+
actionContainer: "HvEmptyState-actionContainer";
|
|
872
881
|
messageContainer: "HvEmptyState-messageContainer";
|
|
873
882
|
containerMessageOnly: "HvEmptyState-containerMessageOnly";
|
|
874
883
|
textContainer: "HvEmptyState-textContainer";
|
|
@@ -924,7 +933,7 @@ export declare const findDescriptors: (children: default_2.ReactNode, descriptor
|
|
|
924
933
|
description: Descriptor[];
|
|
925
934
|
controlled: Descriptor[];
|
|
926
935
|
errormessage: Descriptor[];
|
|
927
|
-
HvCalendarHeader?: Descriptor[];
|
|
936
|
+
HvCalendarHeader?: Descriptor[] | undefined;
|
|
928
937
|
};
|
|
929
938
|
|
|
930
939
|
declare type FixComponentProps<T> = T extends any ? T : never;
|
|
@@ -936,11 +945,11 @@ export declare const focusClasses: {
|
|
|
936
945
|
root: "HvFocus-root";
|
|
937
946
|
disabled: "HvFocus-disabled";
|
|
938
947
|
selected: "HvFocus-selected";
|
|
939
|
-
focus: "HvFocus-focus";
|
|
940
948
|
focusDisabled: "HvFocus-focusDisabled";
|
|
941
949
|
focused: "HvFocus-focused";
|
|
942
950
|
externalReference: "HvFocus-externalReference";
|
|
943
951
|
falseFocus: "HvFocus-falseFocus";
|
|
952
|
+
focus: "HvFocus-focus";
|
|
944
953
|
};
|
|
945
954
|
|
|
946
955
|
export declare const footerClasses: {
|
|
@@ -997,8 +1006,8 @@ export declare const getPrevNextFocus: (nodeId?: string) => {
|
|
|
997
1006
|
};
|
|
998
1007
|
|
|
999
1008
|
export declare const getSelectorIcons: () => {
|
|
1000
|
-
radio:
|
|
1001
|
-
radioChecked:
|
|
1009
|
+
radio: JSX_3.Element;
|
|
1010
|
+
radioChecked: JSX_3.Element;
|
|
1002
1011
|
};
|
|
1003
1012
|
|
|
1004
1013
|
export declare const getTableHeadPropsHook: (props: any, { instance }: any) => any[];
|
|
@@ -1012,9 +1021,9 @@ export declare const globalActionsClasses: {
|
|
|
1012
1021
|
wrapper: "HvGlobalActions-wrapper";
|
|
1013
1022
|
sectionName: "HvGlobalActions-sectionName";
|
|
1014
1023
|
backButton: "HvGlobalActions-backButton";
|
|
1015
|
-
actions: "HvGlobalActions-actions";
|
|
1016
|
-
positionSticky: "HvGlobalActions-positionSticky";
|
|
1017
1024
|
positionFixed: "HvGlobalActions-positionFixed";
|
|
1025
|
+
positionSticky: "HvGlobalActions-positionSticky";
|
|
1026
|
+
actions: "HvGlobalActions-actions";
|
|
1018
1027
|
global: "HvGlobalActions-global";
|
|
1019
1028
|
globalSectionArea: "HvGlobalActions-globalSectionArea";
|
|
1020
1029
|
globalWrapperComplement: "HvGlobalActions-globalWrapperComplement";
|
|
@@ -1023,13 +1032,12 @@ export declare const globalActionsClasses: {
|
|
|
1023
1032
|
export declare const gridClasses: {
|
|
1024
1033
|
container: "HvGrid-container";
|
|
1025
1034
|
root: "HvGrid-root";
|
|
1026
|
-
item: "HvGrid-item";
|
|
1027
|
-
zeroMinWidth: "HvGrid-zeroMinWidth";
|
|
1028
1035
|
"direction-xs-column": "HvGrid-direction-xs-column";
|
|
1029
|
-
"direction-xs-reverse": "HvGrid-direction-xs-reverse";
|
|
1030
1036
|
"direction-xs-row-reverse": "HvGrid-direction-xs-row-reverse";
|
|
1031
1037
|
"wrap-xs-nowrap": "HvGrid-wrap-xs-nowrap";
|
|
1032
1038
|
"wrap-xs-wrap-reverse": "HvGrid-wrap-xs-wrap-reverse";
|
|
1039
|
+
item: "HvGrid-item";
|
|
1040
|
+
zeroMinWidth: "HvGrid-zeroMinWidth";
|
|
1033
1041
|
"spacing-xs-1": "HvGrid-spacing-xs-1";
|
|
1034
1042
|
"spacing-xs-2": "HvGrid-spacing-xs-2";
|
|
1035
1043
|
"spacing-xs-3": "HvGrid-spacing-xs-3";
|
|
@@ -1054,6 +1062,7 @@ export declare const gridClasses: {
|
|
|
1054
1062
|
"grid-xs-10": "HvGrid-grid-xs-10";
|
|
1055
1063
|
"grid-xs-11": "HvGrid-grid-xs-11";
|
|
1056
1064
|
"grid-xs-12": "HvGrid-grid-xs-12";
|
|
1065
|
+
"direction-xs-reverse": "HvGrid-direction-xs-reverse";
|
|
1057
1066
|
};
|
|
1058
1067
|
|
|
1059
1068
|
export declare const headerActionsClasses: {
|
|
@@ -1070,6 +1079,7 @@ export declare const headerClasses: {
|
|
|
1070
1079
|
backgroundColor: "HvHeader-backgroundColor";
|
|
1071
1080
|
header: "HvHeader-header";
|
|
1072
1081
|
root: "HvHeader-root";
|
|
1082
|
+
fixed: "HvHeader-fixed";
|
|
1073
1083
|
};
|
|
1074
1084
|
|
|
1075
1085
|
export declare const headerNavigationClasses: {
|
|
@@ -1096,7 +1106,7 @@ export declare type HvAccentColors = Record<HvAccentColorKeys, string>;
|
|
|
1096
1106
|
/**
|
|
1097
1107
|
* A accordion is a design element that expands in place to expose hidden information.
|
|
1098
1108
|
*/
|
|
1099
|
-
export declare const HvAccordion: (props: HvAccordionProps) =>
|
|
1109
|
+
export declare const HvAccordion: (props: HvAccordionProps) => JSX_3.Element;
|
|
1100
1110
|
|
|
1101
1111
|
export declare type HvAccordionClasses = ExtractNames<typeof useClasses_19>;
|
|
1102
1112
|
|
|
@@ -1125,7 +1135,7 @@ export declare interface HvAccordionProps extends HvBaseProps<HTMLDivElement, "o
|
|
|
1125
1135
|
disableEventHandling?: boolean;
|
|
1126
1136
|
}
|
|
1127
1137
|
|
|
1128
|
-
export declare const HvActionBar: (props: HvActionBarProps) =>
|
|
1138
|
+
export declare const HvActionBar: (props: HvActionBarProps) => JSX_3.Element;
|
|
1129
1139
|
|
|
1130
1140
|
export declare type HvActionBarClasses = ExtractNames<typeof useClasses_20>;
|
|
1131
1141
|
|
|
@@ -1166,7 +1176,7 @@ export declare interface HvActionGeneric {
|
|
|
1166
1176
|
iconOnly?: boolean;
|
|
1167
1177
|
}
|
|
1168
1178
|
|
|
1169
|
-
export declare const HvActionsGeneric: (props: HvActionsGenericProps) =>
|
|
1179
|
+
export declare const HvActionsGeneric: (props: HvActionsGenericProps) => JSX_3.Element | null;
|
|
1170
1180
|
|
|
1171
1181
|
export declare type HvActionsGenericClasses = ExtractNames<typeof useClasses_21>;
|
|
1172
1182
|
|
|
@@ -1229,9 +1239,9 @@ export declare interface HvAdornmentProps extends HvBaseProps<HTMLDivElement | H
|
|
|
1229
1239
|
classes?: HvAdornmentClasses;
|
|
1230
1240
|
}
|
|
1231
1241
|
|
|
1232
|
-
export declare const HvAppSwitcher: (props: HvAppSwitcherProps) =>
|
|
1242
|
+
export declare const HvAppSwitcher: (props: HvAppSwitcherProps) => JSX_3.Element;
|
|
1233
1243
|
|
|
1234
|
-
export declare const HvAppSwitcherAction: ({ id, className, classes: classesProp, application, onClickCallback, isSelectedCallback, }: HvAppSwitcherActionProps) =>
|
|
1244
|
+
export declare const HvAppSwitcherAction: ({ id, className, classes: classesProp, application, onClickCallback, isSelectedCallback, }: HvAppSwitcherActionProps) => JSX_3.Element;
|
|
1235
1245
|
|
|
1236
1246
|
export declare interface HvAppSwitcherActionApplication {
|
|
1237
1247
|
/** Id of the application. */
|
|
@@ -1386,7 +1396,7 @@ export declare type HvAvatarVariant = "circular" | "square";
|
|
|
1386
1396
|
/**
|
|
1387
1397
|
* The badge is a component used to notify the user that something has occurred, in the app context.
|
|
1388
1398
|
*/
|
|
1389
|
-
export declare const HvBadge: (props: HvBadgeProps) =>
|
|
1399
|
+
export declare const HvBadge: (props: HvBadgeProps) => JSX_3.Element;
|
|
1390
1400
|
|
|
1391
1401
|
export declare type HvBadgeClasses = ExtractNames<typeof useClasses_27>;
|
|
1392
1402
|
|
|
@@ -1425,7 +1435,7 @@ export declare interface HvBadgeProps extends HvBaseProps {
|
|
|
1425
1435
|
* A Banner displays an important and succinct message. It can also provide actions for the user to address, or dismiss.
|
|
1426
1436
|
* It requires a user action, for it to be dismissed. Banners should appear at the top of the screen, below a top app bar.
|
|
1427
1437
|
*/
|
|
1428
|
-
export declare const HvBanner: (props: HvBannerProps) =>
|
|
1438
|
+
export declare const HvBanner: (props: HvBannerProps) => JSX_3.Element;
|
|
1429
1439
|
|
|
1430
1440
|
export declare type HvBannerActionPosition = "auto" | "inline" | "bottom-right";
|
|
1431
1441
|
|
|
@@ -1691,7 +1701,7 @@ export declare interface HvBaseDropdownProps extends HvBaseProps<HTMLDivElement,
|
|
|
1691
1701
|
* An Input component that only posses the most basic functionalities.
|
|
1692
1702
|
* It should be used alongside the other form elements to construct a proper accessible form.
|
|
1693
1703
|
*/
|
|
1694
|
-
export declare const HvBaseInput: (props: HvBaseInputProps) =>
|
|
1704
|
+
export declare const HvBaseInput: (props: HvBaseInputProps) => JSX_3.Element;
|
|
1695
1705
|
|
|
1696
1706
|
export declare type HvBaseInputClasses = ExtractNames<typeof useClasses_17>;
|
|
1697
1707
|
|
|
@@ -1894,16 +1904,16 @@ export { HvBaseTheme }
|
|
|
1894
1904
|
* It can be used to add styles to the wrapped components.
|
|
1895
1905
|
* It can also be used to create a layout using the flexbox properties.
|
|
1896
1906
|
*/
|
|
1897
|
-
export declare const HvBox: <C extends
|
|
1898
|
-
style?:
|
|
1899
|
-
sx?:
|
|
1907
|
+
export declare const HvBox: <C extends ElementType<any, keyof JSX_2.IntrinsicElements> = "div">(props: {
|
|
1908
|
+
style?: CSSProperties | undefined;
|
|
1909
|
+
sx?: CSSProperties | ((theme: HvTheme_2) => React.CSSProperties) | undefined;
|
|
1900
1910
|
} & {
|
|
1901
1911
|
component?: C | undefined;
|
|
1902
1912
|
} & {
|
|
1903
|
-
children?: ReactNode
|
|
1913
|
+
children?: ReactNode;
|
|
1904
1914
|
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "style" | "component" | "sx"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "style" | "component" | "sx"> ? T extends any ? T : never : never : never) & {
|
|
1905
1915
|
ref?: PolymorphicRef<C> | undefined;
|
|
1906
|
-
} & RefAttributes<unknown>) =>
|
|
1916
|
+
} & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
1907
1917
|
|
|
1908
1918
|
export declare type HvBoxProps<C extends React.ElementType = "div"> = PolymorphicComponentRef<C, {
|
|
1909
1919
|
style?: React.CSSProperties;
|
|
@@ -1913,7 +1923,7 @@ export declare type HvBoxProps<C extends React.ElementType = "div"> = Polymorphi
|
|
|
1913
1923
|
/**
|
|
1914
1924
|
* A breadcrumb is a graphical control element frequently used as a navigational aid.
|
|
1915
1925
|
*/
|
|
1916
|
-
export declare const HvBreadCrumb: (props: HvBreadCrumbProps) =>
|
|
1926
|
+
export declare const HvBreadCrumb: (props: HvBreadCrumbProps) => JSX_3.Element;
|
|
1917
1927
|
|
|
1918
1928
|
export declare type HvBreadCrumbClasses = ExtractNames<typeof useClasses_34>;
|
|
1919
1929
|
|
|
@@ -1945,7 +1955,7 @@ export { HvBreakpoints }
|
|
|
1945
1955
|
* Bulk Actions allow users to perform an action on a single or multiple items.
|
|
1946
1956
|
* Also known as "batch production" of multiple items at once, one stage at a time.
|
|
1947
1957
|
*/
|
|
1948
|
-
export declare const HvBulkActions: (props: HvBulkActionsProps) =>
|
|
1958
|
+
export declare const HvBulkActions: (props: HvBulkActionsProps) => JSX_3.Element;
|
|
1949
1959
|
|
|
1950
1960
|
export declare type HvBulkActionsClasses = ExtractNames<typeof useClasses_35>;
|
|
1951
1961
|
|
|
@@ -1993,42 +2003,58 @@ export declare interface HvBulkActionsProps extends HvBaseProps {
|
|
|
1993
2003
|
/**
|
|
1994
2004
|
* Button component is used to trigger an action or event.
|
|
1995
2005
|
*/
|
|
1996
|
-
export declare const HvButton: <C extends
|
|
2006
|
+
export declare const HvButton: <C extends ElementType<any, keyof JSX_2.IntrinsicElements> = "button">(props: {
|
|
1997
2007
|
/** Use the variant prop to change the visual style of the button. */
|
|
1998
|
-
variant?:
|
|
2008
|
+
variant?: "positive" | "warning" | "negative" | "secondary" | "primary" | "semantic" | "secondarySubtle" | "ghost" | "secondaryGhost" | "primaryGhost" | "primarySubtle" | "positiveSubtle" | "positiveGhost" | "negativeSubtle" | "negativeGhost" | "warningSubtle" | "warningGhost" | undefined;
|
|
1999
2009
|
/** Whether the button is an icon-only button. */
|
|
2000
|
-
icon?: boolean;
|
|
2010
|
+
icon?: boolean | undefined;
|
|
2001
2011
|
/** Whether the button is disabled or not. */
|
|
2002
|
-
disabled?: boolean;
|
|
2012
|
+
disabled?: boolean | undefined;
|
|
2003
2013
|
/** Class names to be applied. */
|
|
2004
|
-
className?: string;
|
|
2014
|
+
className?: string | undefined;
|
|
2005
2015
|
/** Element placed before the children. */
|
|
2006
2016
|
startIcon?: React.ReactNode;
|
|
2007
2017
|
/** Element placed after the children. */
|
|
2008
2018
|
endIcon?: React.ReactNode;
|
|
2009
2019
|
/** Button size. */
|
|
2010
|
-
size?:
|
|
2020
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2011
2021
|
/** Button border radius. */
|
|
2012
|
-
radius?:
|
|
2022
|
+
radius?: "base" | "none" | "round" | "circle" | "full" | undefined;
|
|
2013
2023
|
/** Defines the default colors of the button are forced into the icon. */
|
|
2014
|
-
overrideIconColors?: boolean;
|
|
2024
|
+
overrideIconColors?: boolean | undefined;
|
|
2015
2025
|
/** A Jss Object used to override or extend the styles applied. */
|
|
2016
|
-
classes?:
|
|
2026
|
+
classes?: Partial<{
|
|
2027
|
+
secondary: string;
|
|
2028
|
+
primary: string;
|
|
2029
|
+
root: string;
|
|
2030
|
+
disabled: string;
|
|
2031
|
+
semantic: string;
|
|
2032
|
+
icon: string;
|
|
2033
|
+
secondarySubtle: string;
|
|
2034
|
+
ghost: string;
|
|
2035
|
+
secondaryGhost: string;
|
|
2036
|
+
primaryGhost: string;
|
|
2037
|
+
subtle: string;
|
|
2038
|
+
focusVisible: string;
|
|
2039
|
+
startIcon: string;
|
|
2040
|
+
endIcon: string;
|
|
2041
|
+
primarySubtle: string;
|
|
2042
|
+
}> | undefined;
|
|
2017
2043
|
/** Whether the button is selected or not. */
|
|
2018
|
-
selected?: boolean;
|
|
2044
|
+
selected?: boolean | undefined;
|
|
2019
2045
|
/**
|
|
2020
2046
|
* Whether the button is focusable when disabled.
|
|
2021
2047
|
* Without this property, the accessibility of the button decreases when disabled since it's not read by screen readers.
|
|
2022
2048
|
* Set this property to `true` when you need the button to still be focusable when disabled for accessibility purposes.
|
|
2023
2049
|
*/
|
|
2024
|
-
focusableWhenDisabled?: boolean;
|
|
2050
|
+
focusableWhenDisabled?: boolean | undefined;
|
|
2025
2051
|
} & {
|
|
2026
2052
|
component?: C | undefined;
|
|
2027
2053
|
} & {
|
|
2028
|
-
children?: ReactNode
|
|
2054
|
+
children?: ReactNode;
|
|
2029
2055
|
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "disabled" | "icon" | "selected" | "variant" | "size" | "component" | "className" | "radius" | "startIcon" | "endIcon" | "overrideIconColors" | "focusableWhenDisabled"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "disabled" | "icon" | "selected" | "variant" | "size" | "component" | "className" | "radius" | "startIcon" | "endIcon" | "overrideIconColors" | "focusableWhenDisabled"> ? T extends any ? T : never : never : never) & {
|
|
2030
2056
|
ref?: PolymorphicRef<C> | undefined;
|
|
2031
|
-
} & RefAttributes<unknown>) =>
|
|
2057
|
+
} & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
2032
2058
|
|
|
2033
2059
|
export declare type HvButtonClasses = ExtractNames<typeof useClasses_12>;
|
|
2034
2060
|
|
|
@@ -2069,12 +2095,12 @@ export declare type HvButtonSize = (typeof buttonSize)[number];
|
|
|
2069
2095
|
|
|
2070
2096
|
export declare type HvButtonVariant = (typeof buttonVariant)[number];
|
|
2071
2097
|
|
|
2072
|
-
export declare const HvCalendar: (props: HvCalendarProps) =>
|
|
2098
|
+
export declare const HvCalendar: (props: HvCalendarProps) => JSX_3.Element;
|
|
2073
2099
|
|
|
2074
2100
|
export declare type HvCalendarClasses = ExtractNames<typeof useClasses_37>;
|
|
2075
2101
|
|
|
2076
2102
|
export declare const HvCalendarHeader: {
|
|
2077
|
-
(props: HvCalendarHeaderProps):
|
|
2103
|
+
(props: HvCalendarHeaderProps): JSX_3.Element;
|
|
2078
2104
|
formElementType: string;
|
|
2079
2105
|
};
|
|
2080
2106
|
|
|
@@ -2196,11 +2222,11 @@ export declare interface HvCalendarProps {
|
|
|
2196
2222
|
* linked short representation of a conceptual unit. For that reason,
|
|
2197
2223
|
* this pattern must be used as an entry-point for further information.
|
|
2198
2224
|
*/
|
|
2199
|
-
export declare const HvCard: (props: HvCardProps) =>
|
|
2225
|
+
export declare const HvCard: (props: HvCardProps) => JSX_3.Element;
|
|
2200
2226
|
|
|
2201
2227
|
export declare type HvCardClasses = ExtractNames<typeof useClasses_39>;
|
|
2202
2228
|
|
|
2203
|
-
export declare const HvCardContent: (
|
|
2229
|
+
export declare const HvCardContent: (props: HvCardContentProps) => JSX_3.Element;
|
|
2204
2230
|
|
|
2205
2231
|
export declare type HvCardContentClasses = ExtractNames<typeof useClasses_41>;
|
|
2206
2232
|
|
|
@@ -2211,7 +2237,7 @@ export declare interface HvCardContentProps extends Omit<CardContentProps, "clas
|
|
|
2211
2237
|
classes?: HvCardContentClasses;
|
|
2212
2238
|
}
|
|
2213
2239
|
|
|
2214
|
-
export declare const HvCardHeader: (props: HvCardHeaderProps) =>
|
|
2240
|
+
export declare const HvCardHeader: (props: HvCardHeaderProps) => JSX_3.Element;
|
|
2215
2241
|
|
|
2216
2242
|
export declare type HvCardHeaderClasses = ExtractNames<typeof useClasses_40>;
|
|
2217
2243
|
|
|
@@ -2228,7 +2254,7 @@ export declare interface HvCardHeaderProps extends Omit<CardHeaderProps, "classe
|
|
|
2228
2254
|
classes?: HvCardHeaderClasses;
|
|
2229
2255
|
}
|
|
2230
2256
|
|
|
2231
|
-
export declare const HvCardMedia: ({ classes: classesProp, className, children, ...others }: HvCardMediaProps) =>
|
|
2257
|
+
export declare const HvCardMedia: ({ classes: classesProp, className, children, ...others }: HvCardMediaProps) => JSX_3.Element;
|
|
2232
2258
|
|
|
2233
2259
|
export declare type HvCardMediaClasses = ExtractNames<typeof useClasses_42>;
|
|
2234
2260
|
|
|
@@ -2267,11 +2293,11 @@ export declare interface HvCardProps extends HvBaseProps {
|
|
|
2267
2293
|
* A Carousel is commonly used to browse images, it can also be used to browse any kind of content like text, video, or charts.
|
|
2268
2294
|
* It allows you to focus on a particular content while having a notion of how many you have to explore.
|
|
2269
2295
|
*/
|
|
2270
|
-
export declare const HvCarousel: (props: HvCarouselProps) =>
|
|
2296
|
+
export declare const HvCarousel: (props: HvCarouselProps) => JSX_3.Element;
|
|
2271
2297
|
|
|
2272
2298
|
export declare type HvCarouselClasses = ExtractNames<typeof useClasses_43>;
|
|
2273
2299
|
|
|
2274
|
-
export declare const HvCarouselControls: (props: HvCarouselControlsProps) =>
|
|
2300
|
+
export declare const HvCarouselControls: (props: HvCarouselControlsProps) => JSX_3.Element;
|
|
2275
2301
|
|
|
2276
2302
|
declare interface HvCarouselControlsProps extends HvBaseProps<HTMLDivElement>, Pick<HvPaginationProps, "page" | "pages" | "canPrevious" | "canNext"> {
|
|
2277
2303
|
showDots?: boolean;
|
|
@@ -2328,7 +2354,7 @@ export declare interface HvCarouselProps extends HvBaseProps<HTMLDivElement, "ti
|
|
|
2328
2354
|
* A container to use as `children` of `HvCarousel`.
|
|
2329
2355
|
* Pass `img` props directly to it, or `children` for any custom content
|
|
2330
2356
|
*/
|
|
2331
|
-
export declare const HvCarouselSlide: ({ classes: classesProp, className, children, size: flexBasis, src, alt, ...props }: HvCarouselSlideProps) =>
|
|
2357
|
+
export declare const HvCarouselSlide: ({ classes: classesProp, className, children, size: flexBasis, src, alt, ...props }: HvCarouselSlideProps) => JSX_3.Element;
|
|
2332
2358
|
|
|
2333
2359
|
export declare type HvCarouselSlideClasses = ExtractNames<typeof useClasses_44>;
|
|
2334
2360
|
|
|
@@ -2379,7 +2405,7 @@ export declare interface HvCellProps<D extends object = Record<string, unknown>,
|
|
|
2379
2405
|
* Use the character counter when there is a character or word limit.
|
|
2380
2406
|
* By itself it doesn't block the user from going above the limit.
|
|
2381
2407
|
*/
|
|
2382
|
-
export declare const HvCharCounter: (props: HvCharCounterProps) =>
|
|
2408
|
+
export declare const HvCharCounter: (props: HvCharCounterProps) => JSX_3.Element;
|
|
2383
2409
|
|
|
2384
2410
|
export declare type HvCharCounterClasses = ExtractNames<typeof useClasses_5>;
|
|
2385
2411
|
|
|
@@ -2692,7 +2718,7 @@ export declare interface HvContainerProps extends Omit<ContainerProps, "classes"
|
|
|
2692
2718
|
classes?: HvContainerClasses;
|
|
2693
2719
|
}
|
|
2694
2720
|
|
|
2695
|
-
export declare const HvControls: (props: HvControlsProps) =>
|
|
2721
|
+
export declare const HvControls: (props: HvControlsProps) => JSX_3.Element;
|
|
2696
2722
|
|
|
2697
2723
|
export declare type HvControlsClasses = ExtractNames<typeof useClasses_50>;
|
|
2698
2724
|
|
|
@@ -2863,11 +2889,11 @@ export declare interface HvDatePickerProps extends Omit<HvFormElementProps, "onC
|
|
|
2863
2889
|
/** @deprecated use `HvFormStatus` instead */
|
|
2864
2890
|
export declare type HvDatePickerStatus = HvFormStatus;
|
|
2865
2891
|
|
|
2866
|
-
export declare const HvDialog: (props: HvDialogProps) =>
|
|
2892
|
+
export declare const HvDialog: (props: HvDialogProps) => JSX_3.Element;
|
|
2867
2893
|
|
|
2868
2894
|
export declare type HvDialogActionClasses = ExtractNames<typeof useClasses_62>;
|
|
2869
2895
|
|
|
2870
|
-
export declare const HvDialogActions: (props: HvDialogActionsProps) =>
|
|
2896
|
+
export declare const HvDialogActions: (props: HvDialogActionsProps) => JSX_3.Element;
|
|
2871
2897
|
|
|
2872
2898
|
export declare interface HvDialogActionsProps extends Omit<DialogActionsProps, "classes"> {
|
|
2873
2899
|
/** Set the dialog to fullscreen mode. @deprecated set `fullscreen` in `HvDialog` */
|
|
@@ -2878,7 +2904,7 @@ export declare interface HvDialogActionsProps extends Omit<DialogActionsProps, "
|
|
|
2878
2904
|
|
|
2879
2905
|
export declare type HvDialogClasses = ExtractNames<typeof useClasses_63>;
|
|
2880
2906
|
|
|
2881
|
-
export declare const HvDialogContent: (props: HvDialogContentProps) =>
|
|
2907
|
+
export declare const HvDialogContent: (props: HvDialogContentProps) => JSX_3.Element;
|
|
2882
2908
|
|
|
2883
2909
|
export declare type HvDialogContentClasses = ExtractNames<typeof useClasses_61>;
|
|
2884
2910
|
|
|
@@ -2920,7 +2946,7 @@ export declare interface HvDialogProps extends Omit<DialogProps, "fullScreen" |
|
|
|
2920
2946
|
component?: DialogProps["component"];
|
|
2921
2947
|
}
|
|
2922
2948
|
|
|
2923
|
-
export declare const HvDialogTitle: (props: HvDialogTitleProps) =>
|
|
2949
|
+
export declare const HvDialogTitle: (props: HvDialogTitleProps) => JSX_3.Element;
|
|
2924
2950
|
|
|
2925
2951
|
export declare type HvDialogTitleClasses = ExtractNames<typeof useClasses_60>;
|
|
2926
2952
|
|
|
@@ -2941,7 +2967,7 @@ export declare type HvDialogTitleVariant = "success" | "warning" | "error" | "in
|
|
|
2941
2967
|
* Pagination is the process of dividing a document into discrete pages. It relates to how users interact with structured content on a website or application.
|
|
2942
2968
|
* This component uses Radio Buttons to represent each page.
|
|
2943
2969
|
*/
|
|
2944
|
-
export declare const HvDotPagination: (props: HvDotPaginationProps) =>
|
|
2970
|
+
export declare const HvDotPagination: (props: HvDotPaginationProps) => JSX_3.Element;
|
|
2945
2971
|
|
|
2946
2972
|
export declare type HvDotPaginationClasses = ExtractNames<typeof useClasses_64>;
|
|
2947
2973
|
|
|
@@ -2985,7 +3011,7 @@ export declare interface HvDotPaginationProps extends Omit<HvRadioGroupProps, "c
|
|
|
2985
3011
|
* It only provides the pane with a close button, the rest of the
|
|
2986
3012
|
* content can be customized.
|
|
2987
3013
|
*/
|
|
2988
|
-
export declare const HvDrawer: (props: HvDrawerProps) =>
|
|
3014
|
+
export declare const HvDrawer: (props: HvDrawerProps) => JSX_3.Element;
|
|
2989
3015
|
|
|
2990
3016
|
export declare type HvDrawerClasses = ExtractNames<typeof useClasses_66>;
|
|
2991
3017
|
|
|
@@ -3141,7 +3167,7 @@ declare interface HvDropdownListProps {
|
|
|
3141
3167
|
/**
|
|
3142
3168
|
* A dropdown menu is a graphical control element, similar to a list box, that allows the user to choose a value from a list.
|
|
3143
3169
|
*/
|
|
3144
|
-
export declare const HvDropDownMenu: (props: HvDropDownMenuProps) =>
|
|
3170
|
+
export declare const HvDropDownMenu: (props: HvDropDownMenuProps) => JSX_3.Element;
|
|
3145
3171
|
|
|
3146
3172
|
export declare type HvDropDownMenuClasses = ExtractNames<typeof useClasses_22>;
|
|
3147
3173
|
|
|
@@ -3342,7 +3368,7 @@ declare interface HvDropZoneLabels {
|
|
|
3342
3368
|
/**
|
|
3343
3369
|
* Empty states communicate that there’s no information, data or values to display in a given context.
|
|
3344
3370
|
*/
|
|
3345
|
-
export declare const HvEmptyState: (props: HvEmptyStateProps) =>
|
|
3371
|
+
export declare const HvEmptyState: (props: HvEmptyStateProps) => JSX_3.Element;
|
|
3346
3372
|
|
|
3347
3373
|
export declare type HvEmptyStateClasses = ExtractNames<typeof useClasses_67>;
|
|
3348
3374
|
|
|
@@ -3370,7 +3396,7 @@ export { HvExtraDeepProps }
|
|
|
3370
3396
|
|
|
3371
3397
|
export { HvExtraProps }
|
|
3372
3398
|
|
|
3373
|
-
export declare const HvFile: (props: HvFileProps) =>
|
|
3399
|
+
export declare const HvFile: (props: HvFileProps) => JSX_3.Element;
|
|
3374
3400
|
|
|
3375
3401
|
export declare type HvFileClasses = ExtractNames<typeof useClasses_69>;
|
|
3376
3402
|
|
|
@@ -3438,7 +3464,7 @@ export declare type HvFilesAddedEvent = (files: HvFileData[]) => void;
|
|
|
3438
3464
|
*
|
|
3439
3465
|
* Accepted file types follow the format of the html input accept attribute. Please check https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file for more details.
|
|
3440
3466
|
*/
|
|
3441
|
-
export declare const HvFileUploader: (props: HvFileUploaderProps) =>
|
|
3467
|
+
export declare const HvFileUploader: (props: HvFileUploaderProps) => JSX_3.Element;
|
|
3442
3468
|
|
|
3443
3469
|
export declare interface HvFileUploaderLabels extends HvDropZoneLabels {
|
|
3444
3470
|
/**
|
|
@@ -3451,7 +3477,7 @@ export declare interface HvFileUploaderLabels extends HvDropZoneLabels {
|
|
|
3451
3477
|
* The `HvFileUploaderPreview` component is available to facilitate the styling
|
|
3452
3478
|
* of the button (when clickable) and the detection of image unloading.
|
|
3453
3479
|
*/
|
|
3454
|
-
export declare const HvFileUploaderPreview: (props: HvFileUploaderPreviewProps) =>
|
|
3480
|
+
export declare const HvFileUploaderPreview: (props: HvFileUploaderPreviewProps) => JSX_3.Element;
|
|
3455
3481
|
|
|
3456
3482
|
export declare type HvFileUploaderPreviewClasses = ExtractNames<typeof useClasses_68>;
|
|
3457
3483
|
|
|
@@ -3622,7 +3648,7 @@ export declare interface HvFilterGroupProps extends Omit<HvFormElementProps, "cl
|
|
|
3622
3648
|
|
|
3623
3649
|
export declare type HvFilterGroupValue = (string | number)[][];
|
|
3624
3650
|
|
|
3625
|
-
export declare const HvFocus: ({ classes: classesProp, children, configuration, disabledClass, selected, disabled, rootRef, focusOnClick, focusDisabled, strategy, useFalseFocus, filterClass, navigationJump, }: HvFocusProps) =>
|
|
3651
|
+
export declare const HvFocus: ({ classes: classesProp, children, configuration, disabledClass, selected, disabled, rootRef, focusOnClick, focusDisabled, strategy, useFalseFocus, filterClass, navigationJump, }: HvFocusProps) => JSX_3.Element;
|
|
3626
3652
|
|
|
3627
3653
|
export declare type HvFocusClasses = ExtractNames<typeof useClasses_2>;
|
|
3628
3654
|
|
|
@@ -3661,7 +3687,7 @@ export declare type HvFocusStrategies = "listbox" | "menu" | "card" | "grid";
|
|
|
3661
3687
|
/**
|
|
3662
3688
|
* A Footer is a way of providing extra information at the end of a page.
|
|
3663
3689
|
*/
|
|
3664
|
-
export declare const HvFooter: (props: HvFooterProps) =>
|
|
3690
|
+
export declare const HvFooter: (props: HvFooterProps) => JSX_3.Element;
|
|
3665
3691
|
|
|
3666
3692
|
export declare type HvFooterClasses = ExtractNames<typeof useClasses_72>;
|
|
3667
3693
|
|
|
@@ -3685,7 +3711,7 @@ declare type HvFooterProps_2<D extends object = Record<string, unknown>> = HvTab
|
|
|
3685
3711
|
};
|
|
3686
3712
|
|
|
3687
3713
|
export declare const HvFormElement: {
|
|
3688
|
-
(props: HvFormElementProps):
|
|
3714
|
+
(props: HvFormElementProps): JSX_3.Element;
|
|
3689
3715
|
formElementType: string;
|
|
3690
3716
|
};
|
|
3691
3717
|
|
|
@@ -3775,7 +3801,7 @@ export declare type HvFormStatus = "standBy" | "valid" | "invalid" | "empty";
|
|
|
3775
3801
|
* Global Actions are actions that affect the entire page they live in.
|
|
3776
3802
|
* They should persist while scrolling down the screen.
|
|
3777
3803
|
*/
|
|
3778
|
-
export declare const HvGlobalActions: (props: HvGlobalActionsProps) =>
|
|
3804
|
+
export declare const HvGlobalActions: (props: HvGlobalActionsProps) => JSX_3.Element;
|
|
3779
3805
|
|
|
3780
3806
|
export declare type HvGlobalActionsClasses = ExtractNames<typeof useClasses_73>;
|
|
3781
3807
|
|
|
@@ -3925,9 +3951,9 @@ export declare type HvGridSpacing = "xs" | "sm" | "md" | "lg" | "xl" | "auto" |
|
|
|
3925
3951
|
/**
|
|
3926
3952
|
* Header component is used to render a header bar with logo and brand name, navigation and actions.
|
|
3927
3953
|
*/
|
|
3928
|
-
export declare const HvHeader: (props: HvHeaderProps) =>
|
|
3954
|
+
export declare const HvHeader: (props: HvHeaderProps) => JSX_3.Element;
|
|
3929
3955
|
|
|
3930
|
-
export declare const HvHeaderActions: (props: HvHeaderActionsProps) =>
|
|
3956
|
+
export declare const HvHeaderActions: (props: HvHeaderActionsProps) => JSX_3.Element;
|
|
3931
3957
|
|
|
3932
3958
|
export declare type HvHeaderActionsClasses = ExtractNames<typeof useClasses_76>;
|
|
3933
3959
|
|
|
@@ -3938,7 +3964,7 @@ export declare interface HvHeaderActionsProps extends HvBaseProps {
|
|
|
3938
3964
|
/**
|
|
3939
3965
|
* Header component is used to render a header bar with logo and brand name, navigation and actions.
|
|
3940
3966
|
*/
|
|
3941
|
-
export declare const HvHeaderBrand: (props: HvHeaderBrandProps) =>
|
|
3967
|
+
export declare const HvHeaderBrand: (props: HvHeaderBrandProps) => JSX_3.Element;
|
|
3942
3968
|
|
|
3943
3969
|
export declare type HvHeaderBrandClasses = ExtractNames<typeof useClasses_77>;
|
|
3944
3970
|
|
|
@@ -3954,7 +3980,7 @@ declare interface HvHeaderGroup<D extends object = Record<string, unknown>, H ex
|
|
|
3954
3980
|
headers: Array<HvHeaderGroup<D, H>>;
|
|
3955
3981
|
}
|
|
3956
3982
|
|
|
3957
|
-
export declare const HvHeaderMenuBar: (props: HvHeaderMenuBarProps) =>
|
|
3983
|
+
export declare const HvHeaderMenuBar: (props: HvHeaderMenuBarProps) => JSX_3.Element;
|
|
3958
3984
|
|
|
3959
3985
|
declare type HvHeaderMenuBarClasses = ExtractNames<typeof useClasses_78>;
|
|
3960
3986
|
|
|
@@ -3967,7 +3993,7 @@ declare interface HvHeaderMenuBarProps extends HvBaseProps<HTMLDivElement, "onCl
|
|
|
3967
3993
|
classes?: HvHeaderMenuBarClasses;
|
|
3968
3994
|
}
|
|
3969
3995
|
|
|
3970
|
-
export declare const HvHeaderMenuItem: (props: HvHeaderMenuItemProps) =>
|
|
3996
|
+
export declare const HvHeaderMenuItem: (props: HvHeaderMenuItemProps) => JSX_3.Element;
|
|
3971
3997
|
|
|
3972
3998
|
declare type HvHeaderMenuItemClasses = ExtractNames<typeof useClasses_79>;
|
|
3973
3999
|
|
|
@@ -3980,7 +4006,7 @@ declare interface HvHeaderMenuItemProps extends HvBaseProps<HTMLDivElement, "onC
|
|
|
3980
4006
|
classes?: HvHeaderMenuItemClasses;
|
|
3981
4007
|
}
|
|
3982
4008
|
|
|
3983
|
-
export declare const HvHeaderNavigation: (props: HvHeaderNavigationProps) =>
|
|
4009
|
+
export declare const HvHeaderNavigation: (props: HvHeaderNavigationProps) => JSX_3.Element;
|
|
3984
4010
|
|
|
3985
4011
|
export declare type HvHeaderNavigationClasses = ExtractNames<typeof useClasses_80>;
|
|
3986
4012
|
|
|
@@ -4048,7 +4074,7 @@ export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof useC
|
|
|
4048
4074
|
* As defined by Design System, a tooltip with the button’s label should always be displayed when hovering an icon only button.
|
|
4049
4075
|
* This component provides this behavior out of the box.
|
|
4050
4076
|
*/
|
|
4051
|
-
export declare const HvIconButton: <C extends
|
|
4077
|
+
export declare const HvIconButton: <C extends ElementType<any, keyof JSX_2.IntrinsicElements> = "button">(props: Omit<HvButtonProps<C>, "icon" | "title" | "children" | "ref" | "component" | "startIcon" | "endIcon" | "focusableWhenDisabled"> & {
|
|
4052
4078
|
/** Label to be displayed in the tooltip when hovered. This label will be used as the button's `aria-label`. */
|
|
4053
4079
|
title: React.ReactNode;
|
|
4054
4080
|
/** Number of milliseconds to wait before showing the tooltip. @default 500 */
|
|
@@ -4056,14 +4082,14 @@ export declare const HvIconButton: <C extends React.ElementType = "button">(prop
|
|
|
4056
4082
|
/** Tooltip placement. @default top */
|
|
4057
4083
|
placement?: HvTooltipProps["placement"];
|
|
4058
4084
|
/** Extra tooltip properties. */
|
|
4059
|
-
tooltipProps?: Omit<Partial<HvTooltipProps>, "children"
|
|
4085
|
+
tooltipProps?: Omit<Partial<HvTooltipProps>, "children"> | undefined;
|
|
4060
4086
|
} & {
|
|
4061
4087
|
component?: C | undefined;
|
|
4062
4088
|
} & {
|
|
4063
|
-
children?: ReactNode
|
|
4064
|
-
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "disabled" | "title" | "selected" | "variant" | "size" | "component" | "className" | "radius" | "
|
|
4089
|
+
children?: ReactNode;
|
|
4090
|
+
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "disabled" | "title" | "selected" | "variant" | "size" | "component" | "className" | "radius" | "placement" | "overrideIconColors" | "enterDelay" | "tooltipProps" | Exclude<keyof (Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "disabled" | "icon" | "selected" | "variant" | "size" | "component" | "className" | "radius" | "startIcon" | "endIcon" | "overrideIconColors" | "focusableWhenDisabled"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "disabled" | "icon" | "selected" | "variant" | "size" | "component" | "className" | "radius" | "startIcon" | "endIcon" | "overrideIconColors" | "focusableWhenDisabled"> ? T extends any ? T : never : never : never), "icon" | "title" | "children" | "ref" | "component" | "startIcon" | "endIcon" | "focusableWhenDisabled">> extends infer T_1 ? T_1 extends Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "disabled" | "title" | "selected" | "variant" | "size" | "component" | "className" | "radius" | "placement" | "overrideIconColors" | "enterDelay" | "tooltipProps" | Exclude<keyof (Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "disabled" | "icon" | "selected" | "variant" | "size" | "component" | "className" | "radius" | "startIcon" | "endIcon" | "overrideIconColors" | "focusableWhenDisabled"> extends infer T_2 ? T_2 extends Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "disabled" | "icon" | "selected" | "variant" | "size" | "component" | "className" | "radius" | "startIcon" | "endIcon" | "overrideIconColors" | "focusableWhenDisabled"> ? T_2 extends any ? T_2 : never : never : never), "icon" | "title" | "children" | "ref" | "component" | "startIcon" | "endIcon" | "focusableWhenDisabled">> ? T_1 extends any ? T_1 : never : never : never) & {
|
|
4065
4091
|
ref?: PolymorphicRef<C> | undefined;
|
|
4066
|
-
} & RefAttributes<unknown>) =>
|
|
4092
|
+
} & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
4067
4093
|
|
|
4068
4094
|
export declare type HvIconButtonProps<C extends React.ElementType = "button"> = PolymorphicComponentRef<C, Omit<HvButtonProps<C>, "icon" | "focusableWhenDisabled" | "title" | "startIcon" | "endIcon" | "children" | "ref" | "component"> & {
|
|
4069
4095
|
/** Label to be displayed in the tooltip when hovered. This label will be used as the button's `aria-label`. */
|
|
@@ -4079,7 +4105,7 @@ export declare type HvIconButtonProps<C extends React.ElementType = "button"> =
|
|
|
4079
4105
|
/**
|
|
4080
4106
|
* Provides the user with additional descriptive text for the form element.
|
|
4081
4107
|
*/
|
|
4082
|
-
export declare const HvInfoMessage: (props: HvInfoMessageProps) =>
|
|
4108
|
+
export declare const HvInfoMessage: (props: HvInfoMessageProps) => JSX_3.Element;
|
|
4083
4109
|
|
|
4084
4110
|
export declare type HvInfoMessageClasses = ExtractNames<typeof useClasses_9>;
|
|
4085
4111
|
|
|
@@ -4096,36 +4122,47 @@ export declare interface HvInfoMessageProps extends HvTypographyProps<"label"> {
|
|
|
4096
4122
|
* An Inline Editor allows the user to edit a record without making a major switch
|
|
4097
4123
|
* between viewing and editing, making it an efficient method of updating a record.
|
|
4098
4124
|
*/
|
|
4099
|
-
export declare const HvInlineEditor: <C extends default_2.ElementType = default_2.ForwardRefExoticComponent<HvInputProps & default_2.RefAttributes<HTMLInputElement | HTMLTextAreaElement>>>(props: {
|
|
4125
|
+
export declare const HvInlineEditor: <C extends default_2.ElementType<any, keyof default_2.JSX.IntrinsicElements> = default_2.ForwardRefExoticComponent<HvInputProps & default_2.RefAttributes<HTMLInputElement | HTMLTextAreaElement>>>(props: {
|
|
4100
4126
|
/** The value of the form element. */
|
|
4101
|
-
value?: string;
|
|
4127
|
+
value?: string | undefined;
|
|
4102
4128
|
/** The default value of the form element. */
|
|
4103
|
-
defaultValue?: string;
|
|
4129
|
+
defaultValue?: string | undefined;
|
|
4104
4130
|
/** Whether the Edit icon should always be visible */
|
|
4105
|
-
showIcon?: boolean;
|
|
4131
|
+
showIcon?: boolean | undefined;
|
|
4106
4132
|
/** Variant of the HvTypography to display */
|
|
4107
|
-
variant?:
|
|
4133
|
+
variant?: "display" | "title1" | "title2" | "title3" | "title4" | "label" | "body" | "captionLabel" | "caption1" | "caption2" | undefined;
|
|
4108
4134
|
/** Called when the input is blurred. */
|
|
4109
|
-
onBlur?: (event: default_2.FocusEvent<HTMLTextAreaElement | HTMLInputElement>, value: string) => void;
|
|
4135
|
+
onBlur?: ((event: default_2.FocusEvent<HTMLTextAreaElement | HTMLInputElement>, value: string) => void) | undefined;
|
|
4110
4136
|
/** Called when the input value changes. */
|
|
4111
|
-
onChange?: (event: default_2.SyntheticEvent, value: string) => void;
|
|
4137
|
+
onChange?: ((event: default_2.SyntheticEvent, value: string) => void) | undefined;
|
|
4112
4138
|
/** Props passed to the HvButton component */
|
|
4113
|
-
buttonProps?: HvButtonProps;
|
|
4139
|
+
buttonProps?: HvButtonProps | undefined;
|
|
4114
4140
|
/** Props passed to the HvTypography text component */
|
|
4115
|
-
typographyProps?: HvTypographyProps;
|
|
4141
|
+
typographyProps?: HvTypographyProps | undefined;
|
|
4116
4142
|
/** Whether the editor is disabled or not. */
|
|
4117
|
-
disabled?: boolean;
|
|
4143
|
+
disabled?: boolean | undefined;
|
|
4118
4144
|
/** A Jss Object used to override or extend the styles applied to the empty state component. */
|
|
4119
|
-
classes?:
|
|
4145
|
+
classes?: Partial<{
|
|
4146
|
+
root: string;
|
|
4147
|
+
inputBorderContainer: string;
|
|
4148
|
+
inputRoot: string;
|
|
4149
|
+
input: string;
|
|
4150
|
+
icon: string;
|
|
4151
|
+
button: string;
|
|
4152
|
+
text: string;
|
|
4153
|
+
largeText: string;
|
|
4154
|
+
textEmpty: string;
|
|
4155
|
+
iconVisible: string;
|
|
4156
|
+
}> | undefined;
|
|
4120
4157
|
/** The placeholder value of the input. */
|
|
4121
|
-
placeholder?: string;
|
|
4158
|
+
placeholder?: string | undefined;
|
|
4122
4159
|
} & {
|
|
4123
4160
|
component?: C | undefined;
|
|
4124
4161
|
} & {
|
|
4125
|
-
children?: default_2.ReactNode
|
|
4162
|
+
children?: default_2.ReactNode;
|
|
4126
4163
|
} & (Omit<default_2.PropsWithoutRef<default_2.ComponentProps<C>>, "value" | "classes" | "placeholder" | "disabled" | "variant" | "component" | "onBlur" | "onChange" | "defaultValue" | "showIcon" | "buttonProps" | "typographyProps"> extends infer T ? T extends Omit<default_2.PropsWithoutRef<default_2.ComponentProps<C>>, "value" | "classes" | "placeholder" | "disabled" | "variant" | "component" | "onBlur" | "onChange" | "defaultValue" | "showIcon" | "buttonProps" | "typographyProps"> ? T extends any ? T : never : never : never) & {
|
|
4127
4164
|
ref?: PolymorphicRef<C> | undefined;
|
|
4128
|
-
} & default_2.RefAttributes<unknown>) => default_2.ReactElement | null;
|
|
4165
|
+
} & default_2.RefAttributes<unknown>) => default_2.ReactElement<any, string | default_2.JSXElementConstructor<any>> | null;
|
|
4129
4166
|
|
|
4130
4167
|
export declare type HvInlineEditorClasses = ExtractNames<typeof useClasses_81>;
|
|
4131
4168
|
|
|
@@ -4305,7 +4342,7 @@ export declare interface HvKnobProperty {
|
|
|
4305
4342
|
* and its success/failure against a given target. KPIs are the first item read on a dashboard.
|
|
4306
4343
|
* Communicates simple, immediate and vital information for operational decision making.
|
|
4307
4344
|
*/
|
|
4308
|
-
export declare const HvKpi: (props: HvKpiProps) =>
|
|
4345
|
+
export declare const HvKpi: (props: HvKpiProps) => JSX_3.Element;
|
|
4309
4346
|
|
|
4310
4347
|
export declare type HvKpiClasses = ExtractNames<typeof useClasses_82>;
|
|
4311
4348
|
|
|
@@ -4345,7 +4382,7 @@ export declare interface HvKpiProps extends HvBaseProps<HTMLDivElement, "childre
|
|
|
4345
4382
|
/**
|
|
4346
4383
|
* Provides the user with a recognizable name for a given form element.
|
|
4347
4384
|
*/
|
|
4348
|
-
export declare const HvLabel: (props: HvLabelProps) =>
|
|
4385
|
+
export declare const HvLabel: (props: HvLabelProps) => JSX_3.Element;
|
|
4349
4386
|
|
|
4350
4387
|
export declare type HvLabelClasses = ExtractNames<typeof useClasses_8>;
|
|
4351
4388
|
|
|
@@ -4364,7 +4401,7 @@ export declare interface HvLabelProps extends HvTypographyProps<"label"> {
|
|
|
4364
4401
|
classes?: HvLabelClasses;
|
|
4365
4402
|
}
|
|
4366
4403
|
|
|
4367
|
-
export declare const HvLeftControl: ({ id, classes: classesProp, className, children, placeholder, onSearch, hideSearch, searchProps, ...others }: HvLeftControlProps) =>
|
|
4404
|
+
export declare const HvLeftControl: ({ id, classes: classesProp, className, children, placeholder, onSearch, hideSearch, searchProps, ...others }: HvLeftControlProps) => JSX_3.Element;
|
|
4368
4405
|
|
|
4369
4406
|
export declare type HvLeftControlClasses = ExtractNames<typeof useClasses_55>;
|
|
4370
4407
|
|
|
@@ -4381,7 +4418,7 @@ export declare interface HvLeftControlProps extends HvBaseProps {
|
|
|
4381
4418
|
classes?: HvLeftControlClasses;
|
|
4382
4419
|
}
|
|
4383
4420
|
|
|
4384
|
-
export declare const HvLink: (props: HvLinkProps) =>
|
|
4421
|
+
export declare const HvLink: (props: HvLinkProps) => JSX_3.Element;
|
|
4385
4422
|
|
|
4386
4423
|
export declare type HvLinkClasses = ExtractNames<typeof useClasses_83>;
|
|
4387
4424
|
|
|
@@ -4397,7 +4434,7 @@ export declare interface HvLinkProps extends HvBaseProps<HTMLAnchorElement, "onC
|
|
|
4397
4434
|
/**
|
|
4398
4435
|
* Component used to show a set of related data to the user.
|
|
4399
4436
|
*/
|
|
4400
|
-
export declare const HvList: (props: HvListProps) =>
|
|
4437
|
+
export declare const HvList: (props: HvListProps) => JSX_3.Element | null;
|
|
4401
4438
|
|
|
4402
4439
|
export declare type HvListClasses = ExtractNames<typeof useClasses_84>;
|
|
4403
4440
|
|
|
@@ -4550,7 +4587,7 @@ export declare interface HvListValue extends Record<string, any> {
|
|
|
4550
4587
|
/**
|
|
4551
4588
|
* Loading provides feedback about a process that is taking place in the application.
|
|
4552
4589
|
*/
|
|
4553
|
-
export declare const HvLoading: (props: HvLoadingProps) =>
|
|
4590
|
+
export declare const HvLoading: (props: HvLoadingProps) => JSX_3.Element;
|
|
4554
4591
|
|
|
4555
4592
|
export declare type HvLoadingClasses = ExtractNames<typeof useClasses_85>;
|
|
4556
4593
|
|
|
@@ -4563,7 +4600,7 @@ export declare type HvLoadingClasses = ExtractNames<typeof useClasses_85>;
|
|
|
4563
4600
|
* <MyComponent>
|
|
4564
4601
|
* </HvLoadingContainer>
|
|
4565
4602
|
* */
|
|
4566
|
-
export declare const HvLoadingContainer: (props: HvLoadingContainerProps) =>
|
|
4603
|
+
export declare const HvLoadingContainer: (props: HvLoadingContainerProps) => JSX_3.Element;
|
|
4567
4604
|
|
|
4568
4605
|
export declare type HvLoadingContainerClasses = ExtractNames<typeof useClasses_86>;
|
|
4569
4606
|
|
|
@@ -4588,7 +4625,7 @@ export declare interface HvLoadingProps extends HvBaseProps {
|
|
|
4588
4625
|
/**
|
|
4589
4626
|
* Container layout for the login form.
|
|
4590
4627
|
*/
|
|
4591
|
-
export declare const HvLogin: (props: HvLoginProps) =>
|
|
4628
|
+
export declare const HvLogin: (props: HvLoginProps) => JSX_3.Element;
|
|
4592
4629
|
|
|
4593
4630
|
export declare type HvLoginClasses = ExtractNames<typeof useClasses_87>;
|
|
4594
4631
|
|
|
@@ -4615,7 +4652,7 @@ declare interface HvMetaBase<D extends object = Record<string, unknown>, H exten
|
|
|
4615
4652
|
userProps: any;
|
|
4616
4653
|
}
|
|
4617
4654
|
|
|
4618
|
-
export declare const HvMultiButton: (props: HvMultiButtonProps) =>
|
|
4655
|
+
export declare const HvMultiButton: (props: HvMultiButtonProps) => JSX_3.Element;
|
|
4619
4656
|
|
|
4620
4657
|
export declare type HvMultiButtonClasses = ExtractNames<typeof useClasses_88>;
|
|
4621
4658
|
|
|
@@ -4653,7 +4690,7 @@ export declare function hvNumberColumn<D extends object = Record<string, unknown
|
|
|
4653
4690
|
|
|
4654
4691
|
export declare const hvNumberFallback: (value: any) => number | "—";
|
|
4655
4692
|
|
|
4656
|
-
export declare const HvOption: <OptionValue extends {}>(props: HvOptionProps<OptionValue> & RefAttributes<HTMLLIElement>) =>
|
|
4693
|
+
export declare const HvOption: <OptionValue extends {}>(props: HvOptionProps<OptionValue> & RefAttributes<HTMLLIElement>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
4657
4694
|
|
|
4658
4695
|
/**
|
|
4659
4696
|
* Optional
|
|
@@ -4690,7 +4727,7 @@ export declare interface HvOptionProps<OptionValue extends {}> extends Omit<HvLi
|
|
|
4690
4727
|
/**
|
|
4691
4728
|
* This component generates a tooltip whenever the text is overflowed.
|
|
4692
4729
|
*/
|
|
4693
|
-
export declare const HvOverflowTooltip: (props: HvOverflowTooltipProps) =>
|
|
4730
|
+
export declare const HvOverflowTooltip: (props: HvOverflowTooltipProps) => JSX_3.Element;
|
|
4694
4731
|
|
|
4695
4732
|
export declare type HvOverflowTooltipClasses = ExtractNames<typeof useClasses_89>;
|
|
4696
4733
|
|
|
@@ -4713,7 +4750,7 @@ export declare interface HvOverflowTooltipProps extends HvBaseProps {
|
|
|
4713
4750
|
* Pagination is the process of dividing a document into discrete pages. It relates to how users interact
|
|
4714
4751
|
* with structured content on a website or application.
|
|
4715
4752
|
*/
|
|
4716
|
-
export declare const HvPagination: (props: HvPaginationProps) =>
|
|
4753
|
+
export declare const HvPagination: (props: HvPaginationProps) => JSX_3.Element;
|
|
4717
4754
|
|
|
4718
4755
|
export declare type HvPaginationClasses = ExtractNames<typeof useClasses_46>;
|
|
4719
4756
|
|
|
@@ -4770,7 +4807,7 @@ export declare interface HvPanelProps extends HvBaseProps {
|
|
|
4770
4807
|
|
|
4771
4808
|
export declare type HvPolarizedColorKeys = "positive" | "positive_120" | "positive_80" | "warning" | "warning_120" | "warning_140" | "negative" | "cat21" | "cat22" | "cat23" | "cat24" | "cat25" | "cat26" | "cat27" | "cat28" | "catastrophic";
|
|
4772
4809
|
|
|
4773
|
-
export declare const HvProgressBar: (props: HvProgressBarProps) =>
|
|
4810
|
+
export declare const HvProgressBar: (props: HvProgressBarProps) => JSX_3.Element;
|
|
4774
4811
|
|
|
4775
4812
|
export declare type HvProgressBarClasses = ExtractNames<typeof useClasses_92>;
|
|
4776
4813
|
|
|
@@ -4819,7 +4856,7 @@ export declare type HvPropGetter<D extends object = Record<string, unknown>, H e
|
|
|
4819
4856
|
/**
|
|
4820
4857
|
* Enables theming capabilities and makes cross-component theme properties available down the tree.
|
|
4821
4858
|
*/
|
|
4822
|
-
export declare const HvProvider: ({ children, rootElementId, cssBaseline, cssTheme, themes, theme, colorMode, emotionCache: emotionCacheProp, classNameKey, }: HvProviderProps) =>
|
|
4859
|
+
export declare const HvProvider: ({ children, rootElementId, cssBaseline, cssTheme, themes, theme, colorMode, emotionCache: emotionCacheProp, classNameKey, }: HvProviderProps) => JSX_3.Element;
|
|
4823
4860
|
|
|
4824
4861
|
export declare interface HvProviderProps {
|
|
4825
4862
|
/**
|
|
@@ -4886,7 +4923,7 @@ export declare interface HvProviderProps {
|
|
|
4886
4923
|
*
|
|
4887
4924
|
* Take a look at the [usage page](https://lumada-design.github.io/uikit/master/?path=/docs/widgets-query-builder-usage--docs) to learn more about this component.
|
|
4888
4925
|
*/
|
|
4889
|
-
export declare const HvQueryBuilder: (props: HvQueryBuilderProps) =>
|
|
4926
|
+
export declare const HvQueryBuilder: (props: HvQueryBuilderProps) => JSX_3.Element;
|
|
4890
4927
|
|
|
4891
4928
|
export declare interface HvQueryBuilderAttribute extends Record<string, unknown> {
|
|
4892
4929
|
id?: string;
|
|
@@ -5331,7 +5368,7 @@ export declare interface HvRadioProps extends Omit<RadioProps, "onChange" | "cla
|
|
|
5331
5368
|
|
|
5332
5369
|
export declare type HvRadioStatus = "standBy" | "valid" | "invalid";
|
|
5333
5370
|
|
|
5334
|
-
export declare const HvRightControl: ({ id, classes: classesProp, className, children, values, onSort, hideSortBy, sortProps, ...others }: HvRightControlProps) =>
|
|
5371
|
+
export declare const HvRightControl: ({ id, classes: classesProp, className, children, values, onSort, hideSortBy, sortProps, ...others }: HvRightControlProps) => JSX_3.Element;
|
|
5335
5372
|
|
|
5336
5373
|
export declare type HvRightControlClasses = ExtractNames<typeof useClasses_56>;
|
|
5337
5374
|
|
|
@@ -5370,7 +5407,7 @@ declare type HvRowPropGetter<D extends object = Record<string, unknown>, H exten
|
|
|
5370
5407
|
/**
|
|
5371
5408
|
* The horizontal scroll to element can be used to quickly navigate in a page.
|
|
5372
5409
|
*/
|
|
5373
|
-
export declare const HvScrollToHorizontal: (props: HvScrollToHorizontalProps) =>
|
|
5410
|
+
export declare const HvScrollToHorizontal: (props: HvScrollToHorizontalProps) => JSX_3.Element;
|
|
5374
5411
|
|
|
5375
5412
|
export declare type HvScrollToHorizontalClasses = ExtractNames<typeof useClasses_98>;
|
|
5376
5413
|
|
|
@@ -5455,7 +5492,7 @@ export declare type HvScrollToTooltipPositions = "left" | "right" | "top" | "bot
|
|
|
5455
5492
|
/**
|
|
5456
5493
|
* The vertical scroll to element can be used to quickly navigate in a page.
|
|
5457
5494
|
*/
|
|
5458
|
-
export declare const HvScrollToVertical: (props: HvScrollToVerticalProps) =>
|
|
5495
|
+
export declare const HvScrollToVertical: (props: HvScrollToVerticalProps) => JSX_3.Element;
|
|
5459
5496
|
|
|
5460
5497
|
export declare type HvScrollToVerticalClasses = ExtractNames<typeof useClasses_96>;
|
|
5461
5498
|
|
|
@@ -5569,7 +5606,7 @@ export declare interface HvSectionProps extends Omit<HvBaseProps<HTMLDivElement>
|
|
|
5569
5606
|
* <HvOption value="cat">Cat</HvOption>
|
|
5570
5607
|
* </HvSelect>
|
|
5571
5608
|
* */
|
|
5572
|
-
export declare const HvSelect: <OptionValue extends {}, Multiple extends boolean = false>(props: HvSelectProps<OptionValue, Multiple> & RefAttributes<HTMLButtonElement>) =>
|
|
5609
|
+
export declare const HvSelect: <OptionValue extends {}, Multiple extends boolean = false>(props: HvSelectProps<OptionValue, Multiple> & RefAttributes<HTMLButtonElement>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
5573
5610
|
|
|
5574
5611
|
export declare type HvSelectClasses = ExtractNames<typeof useClasses_11>;
|
|
5575
5612
|
|
|
@@ -5661,7 +5698,7 @@ export declare type HvSemanticColors = Record<HvSemanticColorKeys, string>;
|
|
|
5661
5698
|
|
|
5662
5699
|
export declare type HvSequentialColorKeys = "cat1" | "cat1_100" | "cat1_200" | "cat1_300" | "cat1_400" | "cat1_500" | "cat1_600" | "cat1_700" | "cat1_800" | "cat1_900";
|
|
5663
5700
|
|
|
5664
|
-
export declare const HvSimpleGrid: (props: HvSimpleGridProps) =>
|
|
5701
|
+
export declare const HvSimpleGrid: (props: HvSimpleGridProps) => JSX_3.Element;
|
|
5665
5702
|
|
|
5666
5703
|
export declare type HvSimpleGridClasses = ExtractNames<typeof useClasses_100>;
|
|
5667
5704
|
|
|
@@ -5694,7 +5731,7 @@ export { HvSize }
|
|
|
5694
5731
|
/**
|
|
5695
5732
|
* The `HvSkeleton` component is used to create a placeholder element that represents the shape and size of the content that will be loaded.
|
|
5696
5733
|
*/
|
|
5697
|
-
export declare const HvSkeleton: (props: HvSkeletonProps) =>
|
|
5734
|
+
export declare const HvSkeleton: (props: HvSkeletonProps) => JSX_3.Element;
|
|
5698
5735
|
|
|
5699
5736
|
export declare type HvSkeletonClasses = ExtractNames<typeof useClasses_129>;
|
|
5700
5737
|
|
|
@@ -5818,7 +5855,7 @@ export declare interface HvSliderProps extends HvBaseProps<HTMLDivElement, "onCh
|
|
|
5818
5855
|
* One is the HvSnackbar, which wraps all the positioning, transition, auto hide, etc.
|
|
5819
5856
|
* The other is the HvSnackbarContent, which allows a finer control and customization of the content of the Snackbar.
|
|
5820
5857
|
*/
|
|
5821
|
-
export declare const HvSnackbar: ({ classes: classesProp, className, id, open, onClose, label, anchorOrigin, autoHideDuration, variant, showIcon, customIcon, action, actionCallback, onAction, transitionDuration, transitionDirection, container, offset, snackbarContentProps, ...others }: HvSnackbarProps) =>
|
|
5858
|
+
export declare const HvSnackbar: ({ classes: classesProp, className, id, open, onClose, label, anchorOrigin, autoHideDuration, variant, showIcon, customIcon, action, actionCallback, onAction, transitionDuration, transitionDirection, container, offset, snackbarContentProps, ...others }: HvSnackbarProps) => JSX_3.Element;
|
|
5822
5859
|
|
|
5823
5860
|
export declare type HvSnackbarClasses = ExtractNames<typeof useClasses_102>;
|
|
5824
5861
|
|
|
@@ -5898,7 +5935,7 @@ export declare interface HvSnackbarProps extends Omit<SnackbarProps, "action" |
|
|
|
5898
5935
|
ref?: SnackbarProps["ref"];
|
|
5899
5936
|
}
|
|
5900
5937
|
|
|
5901
|
-
export declare const HvSnackbarProvider: ({ children, notistackClassesOverride, maxSnack, autoHideDuration, anchorOrigin, classes: classesProp, className, container, ...others }: HvSnackbarProviderProps) =>
|
|
5938
|
+
export declare const HvSnackbarProvider: ({ children, notistackClassesOverride, maxSnack, autoHideDuration, anchorOrigin, classes: classesProp, className, container, ...others }: HvSnackbarProviderProps) => JSX_3.Element;
|
|
5902
5939
|
|
|
5903
5940
|
export declare type HvSnackbarProviderClasses = ExtractNames<typeof useClasses_104>;
|
|
5904
5941
|
|
|
@@ -5928,7 +5965,7 @@ export declare type HvSnackbarVariant = "default" | "success" | "warning" | "err
|
|
|
5928
5965
|
*
|
|
5929
5966
|
* It also allows the specification of the spacing between the stack elements and the addition of a divider between the elements.
|
|
5930
5967
|
*/
|
|
5931
|
-
export declare const HvStack: (props: HvStackProps) =>
|
|
5968
|
+
export declare const HvStack: (props: HvStackProps) => JSX_3.Element;
|
|
5932
5969
|
|
|
5933
5970
|
export declare interface HvStackBreakpoints extends Record<HvBreakpoints, string> {
|
|
5934
5971
|
}
|
|
@@ -5969,7 +6006,9 @@ export declare const HvSuggestions: ForwardRefExoticComponent<HvSuggestionsProps
|
|
|
5969
6006
|
export declare type HvSuggestionsClasses = ExtractNames<typeof useClasses_16>;
|
|
5970
6007
|
|
|
5971
6008
|
export declare interface HvSuggestionsProps extends HvBaseProps {
|
|
5972
|
-
/** Whether suggestions is visible
|
|
6009
|
+
/** Whether suggestions is visible */
|
|
6010
|
+
open?: boolean;
|
|
6011
|
+
/** Whether suggestions is visible. @deprecated use `open` instead */
|
|
5973
6012
|
expanded?: boolean;
|
|
5974
6013
|
/** The HTML element Suggestions attaches to. */
|
|
5975
6014
|
anchorEl?: HTMLElement | null;
|
|
@@ -5978,7 +6017,7 @@ export declare interface HvSuggestionsProps extends HvBaseProps {
|
|
|
5978
6017
|
/** Function called when a suggestion is selected */
|
|
5979
6018
|
onSuggestionSelected?: (event: React.MouseEvent, value: HvSuggestion) => void;
|
|
5980
6019
|
/** Function called when suggestion list is closed */
|
|
5981
|
-
onClose?:
|
|
6020
|
+
onClose?: ClickAwayListenerProps["onClickAway"];
|
|
5982
6021
|
/** A Jss Object used to override or extend the styles applied to the component. */
|
|
5983
6022
|
classes?: HvSuggestionsClasses;
|
|
5984
6023
|
}
|
|
@@ -6104,7 +6143,7 @@ export declare interface HvSwitchProps extends Omit<SwitchProps, "onChange" | "c
|
|
|
6104
6143
|
component?: SwitchProps["component"];
|
|
6105
6144
|
}
|
|
6106
6145
|
|
|
6107
|
-
export declare const HvTab: (props: HvTabProps) =>
|
|
6146
|
+
export declare const HvTab: (props: HvTabProps) => JSX_3.Element;
|
|
6108
6147
|
|
|
6109
6148
|
export declare type HvTabClasses = ExtractNames<typeof useClasses_107>;
|
|
6110
6149
|
|
|
@@ -6439,7 +6478,7 @@ export declare interface HvTabProps extends Omit<TabProps, "children"> {
|
|
|
6439
6478
|
* A Tab is a graphical control element that allows multiple documents or panels to be contained within a single window.
|
|
6440
6479
|
* Tabs can be used as a navigational widget for switching between sets of documents.
|
|
6441
6480
|
*/
|
|
6442
|
-
export declare const HvTabs: (props: HvTabsProps) =>
|
|
6481
|
+
export declare const HvTabs: (props: HvTabsProps) => JSX_3.Element;
|
|
6443
6482
|
|
|
6444
6483
|
export declare type HvTabsClasses = ExtractNames<typeof useClasses_112>;
|
|
6445
6484
|
|
|
@@ -6701,7 +6740,7 @@ export declare interface HvThemePalette {
|
|
|
6701
6740
|
support: HvSupportColors;
|
|
6702
6741
|
}
|
|
6703
6742
|
|
|
6704
|
-
export declare const HvThemeProvider: ({ children, themes: themesList, theme: themeProp, emotionCache, colorMode: colorModeProp, themeRootId: rootId, }: HvThemeProviderProps) =>
|
|
6743
|
+
export declare const HvThemeProvider: ({ children, themes: themesList, theme: themeProp, emotionCache, colorMode: colorModeProp, themeRootId: rootId, }: HvThemeProviderProps) => JSX_3.Element;
|
|
6705
6744
|
|
|
6706
6745
|
declare interface HvThemeProviderProps {
|
|
6707
6746
|
children: React.ReactNode;
|
|
@@ -6715,40 +6754,42 @@ declare interface HvThemeProviderProps {
|
|
|
6715
6754
|
/**
|
|
6716
6755
|
* The HvTimeAgo component implements the Design System relative time format guidelines.
|
|
6717
6756
|
*/
|
|
6718
|
-
export declare const HvTimeAgo: <C extends
|
|
6757
|
+
export declare const HvTimeAgo: <C extends ElementType<any, keyof JSX_2.IntrinsicElements> = "p">(props: {
|
|
6719
6758
|
/**
|
|
6720
6759
|
* The timestamp to format, in seconds or milliseconds.
|
|
6721
6760
|
* Defaults to `emptyElement` if value is null or 0
|
|
6722
6761
|
*/
|
|
6723
|
-
timestamp?: number;
|
|
6762
|
+
timestamp?: number | undefined;
|
|
6724
6763
|
/**
|
|
6725
6764
|
* The locale to be used. Should be on of the dayjs supported locales and explicitly imported
|
|
6726
6765
|
* @see https://day.js.org/docs/en/i18n/i18n
|
|
6727
6766
|
*/
|
|
6728
|
-
locale?: string;
|
|
6767
|
+
locale?: string | undefined;
|
|
6729
6768
|
/**
|
|
6730
6769
|
* The element to render when the timestamp is null or 0
|
|
6731
6770
|
* Defaults to `—` (Em Dash)
|
|
6732
6771
|
*/
|
|
6733
6772
|
emptyElement?: React.ReactNode;
|
|
6734
6773
|
/** Disables periodic date refreshes */
|
|
6735
|
-
disableRefresh?: boolean;
|
|
6774
|
+
disableRefresh?: boolean | undefined;
|
|
6736
6775
|
/** Whether to show seconds in the rendered time */
|
|
6737
|
-
showSeconds?: boolean;
|
|
6776
|
+
showSeconds?: boolean | undefined;
|
|
6738
6777
|
/**
|
|
6739
6778
|
* Whether the component should render just the string
|
|
6740
6779
|
* Consider using `useTimeAgo` instead
|
|
6741
6780
|
*/
|
|
6742
|
-
justText?: boolean;
|
|
6781
|
+
justText?: boolean | undefined;
|
|
6743
6782
|
/** A Jss Object used to override or extend the styles applied to the component. */
|
|
6744
|
-
classes?:
|
|
6783
|
+
classes?: Partial<{
|
|
6784
|
+
root: string;
|
|
6785
|
+
}> | undefined;
|
|
6745
6786
|
} & {
|
|
6746
6787
|
component?: C | undefined;
|
|
6747
6788
|
} & {
|
|
6748
|
-
children?: ReactNode
|
|
6749
|
-
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "component" | "
|
|
6789
|
+
children?: ReactNode;
|
|
6790
|
+
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "component" | "timestamp" | "locale" | "emptyElement" | "disableRefresh" | "showSeconds" | "justText"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "component" | "timestamp" | "locale" | "emptyElement" | "disableRefresh" | "showSeconds" | "justText"> ? T extends any ? T : never : never : never) & {
|
|
6750
6791
|
ref?: PolymorphicRef<C> | undefined;
|
|
6751
|
-
} & RefAttributes<unknown>) =>
|
|
6792
|
+
} & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
6752
6793
|
|
|
6753
6794
|
export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_115>;
|
|
6754
6795
|
|
|
@@ -6810,7 +6851,7 @@ export declare interface HvTimePickerProps extends Omit<HvFormElementProps, "cla
|
|
|
6810
6851
|
* If undefined, the component will use a format according to the passed locale.
|
|
6811
6852
|
*/
|
|
6812
6853
|
timeFormat?: TimeFormat;
|
|
6813
|
-
/** Whether to show the seconds
|
|
6854
|
+
/** Whether to visually show the seconds control */
|
|
6814
6855
|
showSeconds?: boolean;
|
|
6815
6856
|
/** Locale that will provide the time format(12 or 24 hour format). It is "overwritten" by `showAmPm` */
|
|
6816
6857
|
locale?: string;
|
|
@@ -6829,17 +6870,6 @@ export declare interface HvTimePickerProps extends Omit<HvFormElementProps, "cla
|
|
|
6829
6870
|
escapeWithReference?: boolean;
|
|
6830
6871
|
/** Extra properties to be passed to the TimePicker's dropdown. */
|
|
6831
6872
|
dropdownProps?: Partial<HvBaseDropdownProps>;
|
|
6832
|
-
/**
|
|
6833
|
-
* The label of the form element.
|
|
6834
|
-
*
|
|
6835
|
-
* The form element must be labeled for accessibility reasons.
|
|
6836
|
-
* If not provided, an aria-label or aria-labelledby must be provided instead.
|
|
6837
|
-
*/
|
|
6838
|
-
label?: React.ReactNode;
|
|
6839
|
-
/**
|
|
6840
|
-
* Provide additional descriptive text for the form element.
|
|
6841
|
-
*/
|
|
6842
|
-
description?: React.ReactNode;
|
|
6843
6873
|
}
|
|
6844
6874
|
|
|
6845
6875
|
export declare type HvTimePickerValue = {
|
|
@@ -6994,7 +7024,7 @@ export declare interface HvTreeItemProps extends React.HTMLAttributes<HTMLElemen
|
|
|
6994
7024
|
* </HvTreeView>
|
|
6995
7025
|
* ```
|
|
6996
7026
|
*/
|
|
6997
|
-
export declare const HvTreeView: <Multiple extends boolean | undefined>(props: HvTreeViewProps<Multiple> & RefAttributes<HTMLUListElement>) =>
|
|
7027
|
+
export declare const HvTreeView: <Multiple extends boolean | undefined>(props: HvTreeViewProps<Multiple> & RefAttributes<HTMLUListElement>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
6998
7028
|
|
|
6999
7029
|
export declare type HvTreeViewClasses = ExtractNames<typeof useClasses_117>;
|
|
7000
7030
|
|
|
@@ -7008,34 +7038,69 @@ export declare interface HvTreeViewProps<Multiple extends boolean | undefined> e
|
|
|
7008
7038
|
/**
|
|
7009
7039
|
* Typography component is used to render text and paragraphs within an interface.
|
|
7010
7040
|
*/
|
|
7011
|
-
export declare const HvTypography: <C extends
|
|
7041
|
+
export declare const HvTypography: <C extends ElementType<any, keyof JSX_2.IntrinsicElements> = "p">(props: {
|
|
7012
7042
|
/** Use the variant prop to change the visual style of the Typography. */
|
|
7013
|
-
variant?:
|
|
7043
|
+
variant?: "display" | "title1" | "title2" | "title3" | "title4" | "label" | "body" | "captionLabel" | "caption1" | "caption2" | HvTypographyLegacyVariants | undefined;
|
|
7014
7044
|
/** If `true` the typography will display the look of a link. */
|
|
7015
|
-
link?: boolean;
|
|
7045
|
+
link?: boolean | undefined;
|
|
7016
7046
|
/** If `true` the typography will display the look of a disabled state. */
|
|
7017
|
-
disabled?: boolean;
|
|
7047
|
+
disabled?: boolean | undefined;
|
|
7018
7048
|
/**
|
|
7019
7049
|
* If `true`, the typography will render a "p" element
|
|
7020
7050
|
* @deprecated use `component="p"` instead
|
|
7021
7051
|
* */
|
|
7022
|
-
paragraph?: boolean;
|
|
7052
|
+
paragraph?: boolean | undefined;
|
|
7023
7053
|
/**
|
|
7024
7054
|
* If `true`, the text will not wrap, but instead will truncate with a text overflow ellipsis.
|
|
7025
7055
|
*
|
|
7026
7056
|
* Note that text overflow can only happen with block or inline-block level elements
|
|
7027
7057
|
* (the element needs to have a width in order to overflow).
|
|
7028
7058
|
*/
|
|
7029
|
-
noWrap?: boolean;
|
|
7059
|
+
noWrap?: boolean | undefined;
|
|
7030
7060
|
/** A Jss Object used to override or extend the styles applied to the component. */
|
|
7031
|
-
classes?:
|
|
7061
|
+
classes?: Partial<{
|
|
7062
|
+
display: string;
|
|
7063
|
+
title1: string;
|
|
7064
|
+
title2: string;
|
|
7065
|
+
title3: string;
|
|
7066
|
+
title4: string;
|
|
7067
|
+
label: string;
|
|
7068
|
+
body: string;
|
|
7069
|
+
captionLabel: string;
|
|
7070
|
+
caption1: string;
|
|
7071
|
+
caption2: string;
|
|
7072
|
+
"5xlTitle": string;
|
|
7073
|
+
"4xlTitle": string;
|
|
7074
|
+
xxlTitle: string;
|
|
7075
|
+
lTitle: string;
|
|
7076
|
+
sTitle: string;
|
|
7077
|
+
xxsTitle: string;
|
|
7078
|
+
sectionTitle: string;
|
|
7079
|
+
placeholderText: string;
|
|
7080
|
+
link: string;
|
|
7081
|
+
disabledText: string;
|
|
7082
|
+
selectedNavText: string;
|
|
7083
|
+
vizTextDisabled: string;
|
|
7084
|
+
xsInlineLink: string;
|
|
7085
|
+
root: string;
|
|
7086
|
+
disabled: string;
|
|
7087
|
+
isLink: string;
|
|
7088
|
+
noWrap: string;
|
|
7089
|
+
"3xlTitle": string;
|
|
7090
|
+
xlTitle: string;
|
|
7091
|
+
mTitle: string;
|
|
7092
|
+
xsTitle: string;
|
|
7093
|
+
highlightText: string;
|
|
7094
|
+
normalText: string;
|
|
7095
|
+
vizText: string;
|
|
7096
|
+
}> | undefined;
|
|
7032
7097
|
} & {
|
|
7033
7098
|
component?: C | undefined;
|
|
7034
7099
|
} & {
|
|
7035
|
-
children?: ReactNode
|
|
7100
|
+
children?: ReactNode;
|
|
7036
7101
|
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "link" | "classes" | "disabled" | "variant" | "component" | "noWrap" | "paragraph"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "link" | "classes" | "disabled" | "variant" | "component" | "noWrap" | "paragraph"> ? T extends any ? T : never : never : never) & {
|
|
7037
7102
|
ref?: PolymorphicRef<C> | undefined;
|
|
7038
|
-
} & RefAttributes<unknown>) =>
|
|
7103
|
+
} & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
7039
7104
|
|
|
7040
7105
|
export declare type HvTypographyClasses = ExtractNames<typeof useClasses>;
|
|
7041
7106
|
|
|
@@ -7113,9 +7178,9 @@ export declare interface HvValidationMessages {
|
|
|
7113
7178
|
*
|
|
7114
7179
|
* Both modes are available via the `mode` property and each app should choose the most appropriate.
|
|
7115
7180
|
*/
|
|
7116
|
-
export declare const HvVerticalNavigation: (props: HvVerticalNavigationProps) =>
|
|
7181
|
+
export declare const HvVerticalNavigation: (props: HvVerticalNavigationProps) => JSX_3.Element;
|
|
7117
7182
|
|
|
7118
|
-
export declare const HvVerticalNavigationAction: (props: HvVerticalNavigationActionProps) =>
|
|
7183
|
+
export declare const HvVerticalNavigationAction: (props: HvVerticalNavigationActionProps) => JSX_3.Element;
|
|
7119
7184
|
|
|
7120
7185
|
export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof useClasses_123>;
|
|
7121
7186
|
|
|
@@ -7130,7 +7195,7 @@ export declare interface HvVerticalNavigationActionProps extends Omit<HvTypograp
|
|
|
7130
7195
|
onClick?: (event: React.KeyboardEvent<HTMLDivElement> | React.MouseEvent<HTMLDivElement>) => void;
|
|
7131
7196
|
}
|
|
7132
7197
|
|
|
7133
|
-
export declare const HvVerticalNavigationActions: (props: HvVerticalNavigationActionsProps) =>
|
|
7198
|
+
export declare const HvVerticalNavigationActions: (props: HvVerticalNavigationActionsProps) => JSX_3.Element;
|
|
7134
7199
|
|
|
7135
7200
|
export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof useClasses_122>;
|
|
7136
7201
|
|
|
@@ -7141,7 +7206,7 @@ export declare interface HvVerticalNavigationActionsProps extends HvBaseProps {
|
|
|
7141
7206
|
|
|
7142
7207
|
export declare type HvVerticalNavigationClasses = ExtractNames<typeof useClasses_120>;
|
|
7143
7208
|
|
|
7144
|
-
export declare const HvVerticalNavigationHeader: (props: HvVerticalNavigationHeaderProps) =>
|
|
7209
|
+
export declare const HvVerticalNavigationHeader: (props: HvVerticalNavigationHeaderProps) => JSX_3.Element | null;
|
|
7145
7210
|
|
|
7146
7211
|
export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof useClasses_121>;
|
|
7147
7212
|
|
|
@@ -7188,7 +7253,7 @@ export declare interface HvVerticalNavigationProps extends HvBaseProps<HTMLDivEl
|
|
|
7188
7253
|
useIcons?: boolean;
|
|
7189
7254
|
}
|
|
7190
7255
|
|
|
7191
|
-
export declare const HvVerticalNavigationSlider: (props: HvVerticalNavigationSliderProps) =>
|
|
7256
|
+
export declare const HvVerticalNavigationSlider: (props: HvVerticalNavigationSliderProps) => JSX_3.Element;
|
|
7192
7257
|
|
|
7193
7258
|
export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof useClasses_125>;
|
|
7194
7259
|
|
|
@@ -7216,7 +7281,7 @@ export declare interface HvVerticalNavigationSliderProps extends Omit<HvListCont
|
|
|
7216
7281
|
forwardButtonAriaLabel?: string;
|
|
7217
7282
|
}
|
|
7218
7283
|
|
|
7219
|
-
export declare const HvVerticalNavigationTree: (props: HvVerticalNavigationTreeProps) =>
|
|
7284
|
+
export declare const HvVerticalNavigationTree: (props: HvVerticalNavigationTreeProps) => JSX_3.Element;
|
|
7220
7285
|
|
|
7221
7286
|
export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof useClasses_124>;
|
|
7222
7287
|
|
|
@@ -7375,7 +7440,7 @@ export declare type HvVerticalScrollListItemClasses = ExtractNames<typeof useCla
|
|
|
7375
7440
|
/**
|
|
7376
7441
|
* Provides the user with a descriptive text, signaling an error, for when the form element is in an invalid state.
|
|
7377
7442
|
*/
|
|
7378
|
-
export declare const HvWarningText: (props: HvWarningTextProps) =>
|
|
7443
|
+
export declare const HvWarningText: (props: HvWarningTextProps) => JSX_3.Element;
|
|
7379
7444
|
|
|
7380
7445
|
export declare type HvWarningTextClasses = ExtractNames<typeof useClasses_10>;
|
|
7381
7446
|
|
|
@@ -7398,7 +7463,7 @@ export declare interface HvWarningTextProps extends HvBaseProps {
|
|
|
7398
7463
|
classes?: HvWarningTextClasses;
|
|
7399
7464
|
}
|
|
7400
7465
|
|
|
7401
|
-
export declare const iconVariant: (variant: "success" | "warning" | "error" | "info" | "default", color?: IconBaseProps["color"], semantic?: true) =>
|
|
7466
|
+
export declare const iconVariant: (variant: "success" | "warning" | "error" | "info" | "default", color?: IconBaseProps["color"], semantic?: true) => JSX_3.Element | null;
|
|
7402
7467
|
|
|
7403
7468
|
declare type IdType<D> = StringKey<D> | string;
|
|
7404
7469
|
|
|
@@ -7434,8 +7499,8 @@ export declare const inputClasses: {
|
|
|
7434
7499
|
icon: "HvInput-icon";
|
|
7435
7500
|
description: "HvInput-description";
|
|
7436
7501
|
error: "HvInput-error";
|
|
7437
|
-
adornmentButton: "HvInput-adornmentButton";
|
|
7438
7502
|
labelContainer: "HvInput-labelContainer";
|
|
7503
|
+
adornmentButton: "HvInput-adornmentButton";
|
|
7439
7504
|
inputRootDisabled: "HvInput-inputRootDisabled";
|
|
7440
7505
|
adornmentsBox: "HvInput-adornmentsBox";
|
|
7441
7506
|
iconClear: "HvInput-iconClear";
|
|
@@ -7449,14 +7514,14 @@ declare type InputElement = HTMLInputElement | HTMLTextAreaElement;
|
|
|
7449
7514
|
|
|
7450
7515
|
export declare const isBrowser: (browsers: string | string[]) => boolean | null;
|
|
7451
7516
|
|
|
7452
|
-
export declare const isInvalid: (compareState: HvFormStatus) =>
|
|
7517
|
+
export declare const isInvalid: (compareState: HvFormStatus) => boolean;
|
|
7453
7518
|
|
|
7454
7519
|
/** Check whether a keyboard `event` is pressing the `keyCode` key. */
|
|
7455
7520
|
export declare const isKey: (event: any, keyCode: Key) => boolean;
|
|
7456
7521
|
|
|
7457
7522
|
export declare const isOneOfKeys: (event: any, keys: Key[]) => boolean;
|
|
7458
7523
|
|
|
7459
|
-
export declare const isValid: (compareState: HvFormStatus) =>
|
|
7524
|
+
export declare const isValid: (compareState: HvFormStatus) => boolean;
|
|
7460
7525
|
|
|
7461
7526
|
declare type Key = keyof typeof keyboardCodes;
|
|
7462
7527
|
|
|
@@ -7531,10 +7596,10 @@ export declare const listItemClasses: {
|
|
|
7531
7596
|
selected: "HvListItem-selected";
|
|
7532
7597
|
condensed: "HvListItem-condensed";
|
|
7533
7598
|
focus: "HvListItem-focus";
|
|
7534
|
-
interactive: "HvListItem-interactive";
|
|
7535
7599
|
startAdornment: "HvListItem-startAdornment";
|
|
7536
7600
|
endAdornment: "HvListItem-endAdornment";
|
|
7537
7601
|
gutters: "HvListItem-gutters";
|
|
7602
|
+
interactive: "HvListItem-interactive";
|
|
7538
7603
|
withStartAdornment: "HvListItem-withStartAdornment";
|
|
7539
7604
|
withEndAdornment: "HvListItem-withEndAdornment";
|
|
7540
7605
|
};
|
|
@@ -7546,9 +7611,9 @@ export declare const loadingClasses: {
|
|
|
7546
7611
|
root: "HvLoading-root";
|
|
7547
7612
|
hidden: "HvLoading-hidden";
|
|
7548
7613
|
blur: "HvLoading-blur";
|
|
7614
|
+
regular: "HvLoading-regular";
|
|
7549
7615
|
barContainer: "HvLoading-barContainer";
|
|
7550
7616
|
loadingBar: "HvLoading-loadingBar";
|
|
7551
|
-
regular: "HvLoading-regular";
|
|
7552
7617
|
smallColor: "HvLoading-smallColor";
|
|
7553
7618
|
regularColor: "HvLoading-regularColor";
|
|
7554
7619
|
};
|
|
@@ -7579,9 +7644,9 @@ export declare const multiButtonClasses: {
|
|
|
7579
7644
|
splitGroupDisabled: "HvMultiButton-splitGroupDisabled";
|
|
7580
7645
|
splitContainer: "HvMultiButton-splitContainer";
|
|
7581
7646
|
split: "HvMultiButton-split";
|
|
7582
|
-
primarySubtle: "HvMultiButton-primarySubtle";
|
|
7583
7647
|
firstButton: "HvMultiButton-firstButton";
|
|
7584
7648
|
lastButton: "HvMultiButton-lastButton";
|
|
7649
|
+
primarySubtle: "HvMultiButton-primarySubtle";
|
|
7585
7650
|
};
|
|
7586
7651
|
|
|
7587
7652
|
export declare const multiSelectionEventHandler: (evt: any, index: number, selectionAnchor: any, allValues: any[], selectedState: boolean[], selectionCheck: any) => any[];
|
|
@@ -7791,8 +7856,8 @@ export declare const scrollToHorizontalClasses: {
|
|
|
7791
7856
|
root: "HvScrollToHorizontal-root";
|
|
7792
7857
|
selected: "HvScrollToHorizontal-selected";
|
|
7793
7858
|
notSelected: "HvScrollToHorizontal-notSelected";
|
|
7794
|
-
positionSticky: "HvScrollToHorizontal-positionSticky";
|
|
7795
7859
|
positionFixed: "HvScrollToHorizontal-positionFixed";
|
|
7860
|
+
positionSticky: "HvScrollToHorizontal-positionSticky";
|
|
7796
7861
|
notSelectedRoot: "HvScrollToHorizontal-notSelectedRoot";
|
|
7797
7862
|
};
|
|
7798
7863
|
|
|
@@ -7822,8 +7887,8 @@ export declare const selectClasses: {
|
|
|
7822
7887
|
popper: "HvSelect-popper";
|
|
7823
7888
|
description: "HvSelect-description";
|
|
7824
7889
|
error: "HvSelect-error";
|
|
7825
|
-
invalid: "HvSelect-invalid";
|
|
7826
7890
|
labelContainer: "HvSelect-labelContainer";
|
|
7891
|
+
invalid: "HvSelect-invalid";
|
|
7827
7892
|
panelOpenedUp: "HvSelect-panelOpenedUp";
|
|
7828
7893
|
panelOpenedDown: "HvSelect-panelOpenedDown";
|
|
7829
7894
|
};
|
|
@@ -7872,11 +7937,11 @@ export declare const sliderClasses: {
|
|
|
7872
7937
|
error: "HvSlider-error";
|
|
7873
7938
|
labelContainer: "HvSlider-labelContainer";
|
|
7874
7939
|
rootDisabled: "HvSlider-rootDisabled";
|
|
7940
|
+
handle: "HvSlider-handle";
|
|
7875
7941
|
sliderBase: "HvSlider-sliderBase";
|
|
7876
7942
|
sliderContainer: "HvSlider-sliderContainer";
|
|
7877
7943
|
sliderRoot: "HvSlider-sliderRoot";
|
|
7878
7944
|
rootRange: "HvSlider-rootRange";
|
|
7879
|
-
handle: "HvSlider-handle";
|
|
7880
7945
|
handleContainerDisabled: "HvSlider-handleContainerDisabled";
|
|
7881
7946
|
handleHiddenContainer: "HvSlider-handleHiddenContainer";
|
|
7882
7947
|
labelIncluded: "HvSlider-labelIncluded";
|
|
@@ -7886,12 +7951,12 @@ export declare const sliderClasses: {
|
|
|
7886
7951
|
|
|
7887
7952
|
export declare const snackbarClasses: {
|
|
7888
7953
|
root: "HvSnackbar-root";
|
|
7889
|
-
anchorOriginTopCenter: "HvSnackbar-anchorOriginTopCenter";
|
|
7890
|
-
anchorOriginBottomCenter: "HvSnackbar-anchorOriginBottomCenter";
|
|
7891
7954
|
anchorOriginTopRight: "HvSnackbar-anchorOriginTopRight";
|
|
7892
7955
|
anchorOriginBottomRight: "HvSnackbar-anchorOriginBottomRight";
|
|
7893
7956
|
anchorOriginTopLeft: "HvSnackbar-anchorOriginTopLeft";
|
|
7894
7957
|
anchorOriginBottomLeft: "HvSnackbar-anchorOriginBottomLeft";
|
|
7958
|
+
anchorOriginTopCenter: "HvSnackbar-anchorOriginTopCenter";
|
|
7959
|
+
anchorOriginBottomCenter: "HvSnackbar-anchorOriginBottomCenter";
|
|
7895
7960
|
};
|
|
7896
7961
|
|
|
7897
7962
|
export declare const snackbarContentClasses: {
|
|
@@ -7960,12 +8025,12 @@ export declare const tableCellClasses: {
|
|
|
7960
8025
|
variantListcheckbox: "HvTableCell-variantListcheckbox";
|
|
7961
8026
|
variantList: "HvTableCell-variantList";
|
|
7962
8027
|
footer: "HvTableCell-footer";
|
|
7963
|
-
resizable: "HvTableCell-resizable";
|
|
7964
|
-
sorted: "HvTableCell-sorted";
|
|
7965
8028
|
alignLeft: "HvTableCell-alignLeft";
|
|
7966
8029
|
alignCenter: "HvTableCell-alignCenter";
|
|
7967
8030
|
alignRight: "HvTableCell-alignRight";
|
|
7968
8031
|
alignJustify: "HvTableCell-alignJustify";
|
|
8032
|
+
resizable: "HvTableCell-resizable";
|
|
8033
|
+
sorted: "HvTableCell-sorted";
|
|
7969
8034
|
variantNone: "HvTableCell-variantNone";
|
|
7970
8035
|
variantCheckbox: "HvTableCell-variantCheckbox";
|
|
7971
8036
|
variantActions: "HvTableCell-variantActions";
|
|
@@ -8003,12 +8068,12 @@ export declare const tableHeaderClasses: {
|
|
|
8003
8068
|
variantList: "HvTableHeader-variantList";
|
|
8004
8069
|
resizer: "HvTableHeader-resizer";
|
|
8005
8070
|
footer: "HvTableHeader-footer";
|
|
8006
|
-
resizable: "HvTableHeader-resizable";
|
|
8007
|
-
sorted: "HvTableHeader-sorted";
|
|
8008
8071
|
alignLeft: "HvTableHeader-alignLeft";
|
|
8009
8072
|
alignCenter: "HvTableHeader-alignCenter";
|
|
8010
8073
|
alignRight: "HvTableHeader-alignRight";
|
|
8011
8074
|
alignJustify: "HvTableHeader-alignJustify";
|
|
8075
|
+
resizable: "HvTableHeader-resizable";
|
|
8076
|
+
sorted: "HvTableHeader-sorted";
|
|
8012
8077
|
variantNone: "HvTableHeader-variantNone";
|
|
8013
8078
|
variantCheckbox: "HvTableHeader-variantCheckbox";
|
|
8014
8079
|
variantActions: "HvTableHeader-variantActions";
|
|
@@ -8039,9 +8104,9 @@ export declare const tableRowClasses: {
|
|
|
8039
8104
|
variantList: "HvTableRow-variantList";
|
|
8040
8105
|
expanded: "HvTableRow-expanded";
|
|
8041
8106
|
footer: "HvTableRow-footer";
|
|
8107
|
+
hover: "HvTableRow-hover";
|
|
8042
8108
|
variantListHead: "HvTableRow-variantListHead";
|
|
8043
8109
|
striped: "HvTableRow-striped";
|
|
8044
|
-
hover: "HvTableRow-hover";
|
|
8045
8110
|
};
|
|
8046
8111
|
|
|
8047
8112
|
export declare const tableSectionClasses: {
|
|
@@ -8056,9 +8121,9 @@ export declare const tableSectionClasses: {
|
|
|
8056
8121
|
|
|
8057
8122
|
export declare const tabsClasses: {
|
|
8058
8123
|
root: "HvTabs-root";
|
|
8059
|
-
indicator: "HvTabs-indicator";
|
|
8060
|
-
scroller: "HvTabs-scroller";
|
|
8061
8124
|
flexContainer: "HvTabs-flexContainer";
|
|
8125
|
+
scroller: "HvTabs-scroller";
|
|
8126
|
+
indicator: "HvTabs-indicator";
|
|
8062
8127
|
};
|
|
8063
8128
|
|
|
8064
8129
|
export declare const tagClasses: {
|
|
@@ -8067,10 +8132,10 @@ export declare const tagClasses: {
|
|
|
8067
8132
|
disabled: "HvTag-disabled";
|
|
8068
8133
|
button: "HvTag-button";
|
|
8069
8134
|
focusVisible: "HvTag-focusVisible";
|
|
8070
|
-
chipRoot: "HvTag-chipRoot";
|
|
8071
8135
|
clickable: "HvTag-clickable";
|
|
8072
|
-
categorical: "HvTag-categorical";
|
|
8073
8136
|
deleteIcon: "HvTag-deleteIcon";
|
|
8137
|
+
chipRoot: "HvTag-chipRoot";
|
|
8138
|
+
categorical: "HvTag-categorical";
|
|
8074
8139
|
tagButton: "HvTag-tagButton";
|
|
8075
8140
|
disabledDeleteIcon: "HvTag-disabledDeleteIcon";
|
|
8076
8141
|
categoricalFocus: "HvTag-categoricalFocus";
|
|
@@ -8086,8 +8151,8 @@ export declare const tagsInputClasses: {
|
|
|
8086
8151
|
tagsList: "HvTagsInput-tagsList";
|
|
8087
8152
|
description: "HvTagsInput-description";
|
|
8088
8153
|
error: "HvTagsInput-error";
|
|
8089
|
-
invalid: "HvTagsInput-invalid";
|
|
8090
8154
|
labelContainer: "HvTagsInput-labelContainer";
|
|
8155
|
+
invalid: "HvTagsInput-invalid";
|
|
8091
8156
|
resizable: "HvTagsInput-resizable";
|
|
8092
8157
|
suggestionsContainer: "HvTagsInput-suggestionsContainer";
|
|
8093
8158
|
suggestionList: "HvTagsInput-suggestionList";
|
|
@@ -8112,8 +8177,8 @@ export declare const textAreaClasses: {
|
|
|
8112
8177
|
input: "HvTextArea-input";
|
|
8113
8178
|
description: "HvTextArea-description";
|
|
8114
8179
|
error: "HvTextArea-error";
|
|
8115
|
-
invalid: "HvTextArea-invalid";
|
|
8116
8180
|
labelContainer: "HvTextArea-labelContainer";
|
|
8181
|
+
invalid: "HvTextArea-invalid";
|
|
8117
8182
|
resizable: "HvTextArea-resizable";
|
|
8118
8183
|
inputResizable: "HvTextArea-inputResizable";
|
|
8119
8184
|
characterCounter: "HvTextArea-characterCounter";
|
|
@@ -8194,10 +8259,10 @@ export declare const treeViewItemClasses: {
|
|
|
8194
8259
|
group: "HvVerticalNavigationTreeViewItem-group";
|
|
8195
8260
|
node: "HvVerticalNavigationTreeViewItem-node";
|
|
8196
8261
|
focused: "HvVerticalNavigationTreeViewItem-focused";
|
|
8197
|
-
expandable: "HvVerticalNavigationTreeViewItem-expandable";
|
|
8198
8262
|
labelIcon: "HvVerticalNavigationTreeViewItem-labelIcon";
|
|
8199
8263
|
collapsed: "HvVerticalNavigationTreeViewItem-collapsed";
|
|
8200
8264
|
minimized: "HvVerticalNavigationTreeViewItem-minimized";
|
|
8265
|
+
expandable: "HvVerticalNavigationTreeViewItem-expandable";
|
|
8201
8266
|
unselected: "HvVerticalNavigationTreeViewItem-unselected";
|
|
8202
8267
|
labelExpandable: "HvVerticalNavigationTreeViewItem-labelExpandable";
|
|
8203
8268
|
};
|
|
@@ -8328,7 +8393,7 @@ declare const useClasses_100: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8328
8393
|
cx: (...args: any) => string;
|
|
8329
8394
|
};
|
|
8330
8395
|
|
|
8331
|
-
declare const useClasses_101: (classesProp?: Partial<Record<"label" | "root" | "trackDragging" | "trackStandBy" | "handleContainer" | "error" | "labelContainer" | "rootDisabled" | "
|
|
8396
|
+
declare const useClasses_101: (classesProp?: Partial<Record<"label" | "root" | "trackDragging" | "trackStandBy" | "handleContainer" | "error" | "labelContainer" | "rootDisabled" | "handle" | "sliderBase" | "sliderContainer" | "sliderRoot" | "rootRange" | "handleContainerDisabled" | "handleHiddenContainer" | "labelIncluded" | "onlyInput" | "sliderTooltip", string>>, addStatic?: boolean) => {
|
|
8332
8397
|
classes: {
|
|
8333
8398
|
label: string;
|
|
8334
8399
|
root: string;
|
|
@@ -8338,11 +8403,11 @@ declare const useClasses_101: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8338
8403
|
error: string;
|
|
8339
8404
|
labelContainer: string;
|
|
8340
8405
|
rootDisabled: string;
|
|
8406
|
+
handle: string;
|
|
8341
8407
|
sliderBase: string;
|
|
8342
8408
|
sliderContainer: string;
|
|
8343
8409
|
sliderRoot: string;
|
|
8344
8410
|
rootRange: string;
|
|
8345
|
-
handle: string;
|
|
8346
8411
|
handleContainerDisabled: string;
|
|
8347
8412
|
handleHiddenContainer: string;
|
|
8348
8413
|
labelIncluded: string;
|
|
@@ -8353,15 +8418,15 @@ declare const useClasses_101: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8353
8418
|
cx: (...args: any) => string;
|
|
8354
8419
|
};
|
|
8355
8420
|
|
|
8356
|
-
declare const useClasses_102: (classesProp?: Partial<Record<"root" | "
|
|
8421
|
+
declare const useClasses_102: (classesProp?: Partial<Record<"root" | "anchorOriginTopRight" | "anchorOriginBottomRight" | "anchorOriginTopLeft" | "anchorOriginBottomLeft" | "anchorOriginTopCenter" | "anchorOriginBottomCenter", string>>, addStatic?: boolean) => {
|
|
8357
8422
|
classes: {
|
|
8358
8423
|
root: string;
|
|
8359
|
-
anchorOriginTopCenter: string;
|
|
8360
|
-
anchorOriginBottomCenter: string;
|
|
8361
8424
|
anchorOriginTopRight: string;
|
|
8362
8425
|
anchorOriginBottomRight: string;
|
|
8363
8426
|
anchorOriginTopLeft: string;
|
|
8364
8427
|
anchorOriginBottomLeft: string;
|
|
8428
|
+
anchorOriginTopCenter: string;
|
|
8429
|
+
anchorOriginBottomCenter: string;
|
|
8365
8430
|
};
|
|
8366
8431
|
css: any;
|
|
8367
8432
|
cx: (...args: any) => string;
|
|
@@ -8447,7 +8512,7 @@ declare const useClasses_109: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8447
8512
|
cx: (...args: any) => string;
|
|
8448
8513
|
};
|
|
8449
8514
|
|
|
8450
|
-
declare const useClasses_11: (classesProp?: Partial<Record<"label" | "root" | "panel" | "disabled" | "readOnly" | "select" | "popper" | "description" | "error" | "
|
|
8515
|
+
declare const useClasses_11: (classesProp?: Partial<Record<"label" | "root" | "panel" | "disabled" | "readOnly" | "select" | "popper" | "description" | "error" | "labelContainer" | "invalid" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
|
|
8451
8516
|
classes: {
|
|
8452
8517
|
label: string;
|
|
8453
8518
|
root: string;
|
|
@@ -8458,8 +8523,8 @@ declare const useClasses_11: (classesProp?: Partial<Record<"label" | "root" | "p
|
|
|
8458
8523
|
popper: string;
|
|
8459
8524
|
description: string;
|
|
8460
8525
|
error: string;
|
|
8461
|
-
invalid: string;
|
|
8462
8526
|
labelContainer: string;
|
|
8527
|
+
invalid: string;
|
|
8463
8528
|
panelOpenedUp: string;
|
|
8464
8529
|
panelOpenedDown: string;
|
|
8465
8530
|
};
|
|
@@ -8476,17 +8541,17 @@ declare const useClasses_110: (classesProp?: Partial<Record<"root" | "stickyHead
|
|
|
8476
8541
|
cx: (...args: any) => string;
|
|
8477
8542
|
};
|
|
8478
8543
|
|
|
8479
|
-
declare const useClasses_111: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "button" | "focusVisible" | "
|
|
8544
|
+
declare const useClasses_111: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "button" | "focusVisible" | "clickable" | "deleteIcon" | "chipRoot" | "categorical" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
|
|
8480
8545
|
classes: {
|
|
8481
8546
|
label: string;
|
|
8482
8547
|
root: string;
|
|
8483
8548
|
disabled: string;
|
|
8484
8549
|
button: string;
|
|
8485
8550
|
focusVisible: string;
|
|
8486
|
-
chipRoot: string;
|
|
8487
8551
|
clickable: string;
|
|
8488
|
-
categorical: string;
|
|
8489
8552
|
deleteIcon: string;
|
|
8553
|
+
chipRoot: string;
|
|
8554
|
+
categorical: string;
|
|
8490
8555
|
tagButton: string;
|
|
8491
8556
|
disabledDeleteIcon: string;
|
|
8492
8557
|
categoricalFocus: string;
|
|
@@ -8496,18 +8561,18 @@ declare const useClasses_111: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8496
8561
|
cx: (...args: any) => string;
|
|
8497
8562
|
};
|
|
8498
8563
|
|
|
8499
|
-
declare const useClasses_112: (classesProp?: Partial<Record<"root" | "
|
|
8564
|
+
declare const useClasses_112: (classesProp?: Partial<Record<"root" | "flexContainer" | "scroller" | "indicator", string>>, addStatic?: boolean) => {
|
|
8500
8565
|
classes: {
|
|
8501
8566
|
root: string;
|
|
8502
|
-
indicator: string;
|
|
8503
|
-
scroller: string;
|
|
8504
8567
|
flexContainer: string;
|
|
8568
|
+
scroller: string;
|
|
8569
|
+
indicator: string;
|
|
8505
8570
|
};
|
|
8506
8571
|
css: any;
|
|
8507
8572
|
cx: (...args: any) => string;
|
|
8508
8573
|
};
|
|
8509
8574
|
|
|
8510
|
-
declare const useClasses_113: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "readOnly" | "input" | "tagsList" | "description" | "error" | "
|
|
8575
|
+
declare const useClasses_113: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "readOnly" | "input" | "tagsList" | "description" | "error" | "labelContainer" | "invalid" | "resizable" | "suggestionsContainer" | "suggestionList" | "inputExtension" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty" | "singleLine", string>>, addStatic?: boolean) => {
|
|
8511
8576
|
classes: {
|
|
8512
8577
|
label: string;
|
|
8513
8578
|
root: string;
|
|
@@ -8517,8 +8582,8 @@ declare const useClasses_113: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8517
8582
|
tagsList: string;
|
|
8518
8583
|
description: string;
|
|
8519
8584
|
error: string;
|
|
8520
|
-
invalid: string;
|
|
8521
8585
|
labelContainer: string;
|
|
8586
|
+
invalid: string;
|
|
8522
8587
|
resizable: string;
|
|
8523
8588
|
suggestionsContainer: string;
|
|
8524
8589
|
suggestionList: string;
|
|
@@ -8539,7 +8604,7 @@ declare const useClasses_113: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8539
8604
|
cx: (...args: any) => string;
|
|
8540
8605
|
};
|
|
8541
8606
|
|
|
8542
|
-
declare const useClasses_114: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "input" | "description" | "error" | "
|
|
8607
|
+
declare const useClasses_114: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "input" | "description" | "error" | "labelContainer" | "invalid" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
|
|
8543
8608
|
classes: {
|
|
8544
8609
|
label: string;
|
|
8545
8610
|
root: string;
|
|
@@ -8547,8 +8612,8 @@ declare const useClasses_114: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8547
8612
|
input: string;
|
|
8548
8613
|
description: string;
|
|
8549
8614
|
error: string;
|
|
8550
|
-
invalid: string;
|
|
8551
8615
|
labelContainer: string;
|
|
8616
|
+
invalid: string;
|
|
8552
8617
|
resizable: string;
|
|
8553
8618
|
inputResizable: string;
|
|
8554
8619
|
characterCounter: string;
|
|
@@ -8624,7 +8689,7 @@ declare const useClasses_119: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8624
8689
|
cx: (...args: any) => string;
|
|
8625
8690
|
};
|
|
8626
8691
|
|
|
8627
|
-
declare const useClasses_12: (classesProp?: Partial<Record<"secondary" | "primary" | "root" | "disabled" | "semantic" | "icon" | "secondarySubtle" | "ghost" | "secondaryGhost" | "primaryGhost" | "subtle" | "
|
|
8692
|
+
declare const useClasses_12: (classesProp?: Partial<Record<"secondary" | "primary" | "root" | "disabled" | "semantic" | "icon" | "secondarySubtle" | "ghost" | "secondaryGhost" | "primaryGhost" | "subtle" | "focusVisible" | "startIcon" | "endIcon" | "primarySubtle", string>>, addStatic?: boolean) => {
|
|
8628
8693
|
classes: {
|
|
8629
8694
|
secondary: string;
|
|
8630
8695
|
primary: string;
|
|
@@ -8637,10 +8702,10 @@ declare const useClasses_12: (classesProp?: Partial<Record<"secondary" | "primar
|
|
|
8637
8702
|
secondaryGhost: string;
|
|
8638
8703
|
primaryGhost: string;
|
|
8639
8704
|
subtle: string;
|
|
8640
|
-
|
|
8705
|
+
focusVisible: string;
|
|
8641
8706
|
startIcon: string;
|
|
8642
8707
|
endIcon: string;
|
|
8643
|
-
|
|
8708
|
+
primarySubtle: string;
|
|
8644
8709
|
};
|
|
8645
8710
|
css: any;
|
|
8646
8711
|
cx: (...args: any) => string;
|
|
@@ -8688,14 +8753,14 @@ declare const useClasses_123: (classesProp?: Partial<Record<"action" | "minimize
|
|
|
8688
8753
|
cx: (...args: any) => string;
|
|
8689
8754
|
};
|
|
8690
8755
|
|
|
8691
|
-
declare const useClasses_124: (classesProp?: Partial<Record<"root" | "listItem" | "list" | "navigationPopup" | "
|
|
8756
|
+
declare const useClasses_124: (classesProp?: Partial<Record<"root" | "listItem" | "list" | "navigationPopup" | "collapsed" | "popup", string>>, addStatic?: boolean) => {
|
|
8692
8757
|
classes: {
|
|
8693
8758
|
root: string;
|
|
8694
8759
|
listItem: string;
|
|
8695
8760
|
list: string;
|
|
8696
8761
|
navigationPopup: string;
|
|
8697
|
-
popup: string;
|
|
8698
8762
|
collapsed: string;
|
|
8763
|
+
popup: string;
|
|
8699
8764
|
};
|
|
8700
8765
|
css: any;
|
|
8701
8766
|
cx: (...args: any) => string;
|
|
@@ -8722,7 +8787,7 @@ declare const useClasses_126: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8722
8787
|
cx: (...args: any) => string;
|
|
8723
8788
|
};
|
|
8724
8789
|
|
|
8725
|
-
declare const useClasses_127: (classesProp?: Partial<Record<"content" | "label" | "link" | "disabled" | "icon" | "selectable" | "selected" | "hide" | "expanded" | "unselectable" | "group" | "node" | "focused" | "
|
|
8790
|
+
declare const useClasses_127: (classesProp?: Partial<Record<"content" | "label" | "link" | "disabled" | "icon" | "selectable" | "selected" | "hide" | "expanded" | "unselectable" | "group" | "node" | "focused" | "labelIcon" | "collapsed" | "minimized" | "expandable" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
|
|
8726
8791
|
classes: {
|
|
8727
8792
|
content: string;
|
|
8728
8793
|
label: string;
|
|
@@ -8737,10 +8802,10 @@ declare const useClasses_127: (classesProp?: Partial<Record<"content" | "label"
|
|
|
8737
8802
|
group: string;
|
|
8738
8803
|
node: string;
|
|
8739
8804
|
focused: string;
|
|
8740
|
-
expandable: string;
|
|
8741
8805
|
labelIcon: string;
|
|
8742
8806
|
collapsed: string;
|
|
8743
8807
|
minimized: string;
|
|
8808
|
+
expandable: string;
|
|
8744
8809
|
unselected: string;
|
|
8745
8810
|
labelExpandable: string;
|
|
8746
8811
|
};
|
|
@@ -8841,7 +8906,7 @@ declare const useClasses_17: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
8841
8906
|
cx: (...args: any) => string;
|
|
8842
8907
|
};
|
|
8843
8908
|
|
|
8844
|
-
declare const useClasses_18: (classesProp?: Partial<Record<"container" | "header" | "root" | "headerOpen" | "headerDisabled" | "headerReadOnly" | "placeholder" | "panel" | "inputExtensionOpen" | "anchor" | "
|
|
8909
|
+
declare const useClasses_18: (classesProp?: Partial<Record<"container" | "header" | "root" | "headerOpen" | "headerDisabled" | "headerReadOnly" | "placeholder" | "panel" | "inputExtensionOpen" | "anchor" | "arrow" | "selection" | "arrowContainer" | "panelOpenedUp" | "panelOpenedDown" | "rootDisabled" | "headerOpenUp" | "headerOpenDown" | "selectionDisabled" | "inputExtensionLeftPosition" | "inputExtensionOpenShadow" | "inputExtensionFloatRight" | "inputExtensionFloatLeft", string>>, addStatic?: boolean) => {
|
|
8845
8910
|
classes: {
|
|
8846
8911
|
container: string;
|
|
8847
8912
|
header: string;
|
|
@@ -8853,9 +8918,9 @@ declare const useClasses_18: (classesProp?: Partial<Record<"container" | "header
|
|
|
8853
8918
|
panel: string;
|
|
8854
8919
|
inputExtensionOpen: string;
|
|
8855
8920
|
anchor: string;
|
|
8921
|
+
arrow: string;
|
|
8856
8922
|
selection: string;
|
|
8857
8923
|
arrowContainer: string;
|
|
8858
|
-
arrow: string;
|
|
8859
8924
|
panelOpenedUp: string;
|
|
8860
8925
|
panelOpenedDown: string;
|
|
8861
8926
|
rootDisabled: string;
|
|
@@ -8883,16 +8948,16 @@ declare const useClasses_19: (classesProp?: Partial<Record<"container" | "label"
|
|
|
8883
8948
|
cx: (...args: any) => string;
|
|
8884
8949
|
};
|
|
8885
8950
|
|
|
8886
|
-
declare const useClasses_2: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "
|
|
8951
|
+
declare const useClasses_2: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "focusDisabled" | "focused" | "externalReference" | "falseFocus" | "focus", string>>, addStatic?: boolean) => {
|
|
8887
8952
|
classes: {
|
|
8888
8953
|
root: string;
|
|
8889
8954
|
disabled: string;
|
|
8890
8955
|
selected: string;
|
|
8891
|
-
focus: string;
|
|
8892
8956
|
focusDisabled: string;
|
|
8893
8957
|
focused: string;
|
|
8894
8958
|
externalReference: string;
|
|
8895
8959
|
falseFocus: string;
|
|
8960
|
+
focus: string;
|
|
8896
8961
|
};
|
|
8897
8962
|
css: any;
|
|
8898
8963
|
cx: (...args: any) => string;
|
|
@@ -8973,7 +9038,7 @@ declare const useClasses_24: (classesProp?: Partial<Record<"typography" | "root"
|
|
|
8973
9038
|
cx: (...args: any) => string;
|
|
8974
9039
|
};
|
|
8975
9040
|
|
|
8976
|
-
declare const useClasses_25: (classesProp?: Partial<Record<"container" | "xs" | "sm" | "md" | "lg" | "xl" | "root" | "square" | "img" | "status" | "
|
|
9041
|
+
declare const useClasses_25: (classesProp?: Partial<Record<"container" | "xs" | "sm" | "md" | "lg" | "xl" | "root" | "square" | "img" | "status" | "avatar" | "circular" | "fallback" | "badge", string>>, addStatic?: boolean) => {
|
|
8977
9042
|
classes: {
|
|
8978
9043
|
container: string;
|
|
8979
9044
|
xs: string;
|
|
@@ -8985,10 +9050,10 @@ declare const useClasses_25: (classesProp?: Partial<Record<"container" | "xs" |
|
|
|
8985
9050
|
square: string;
|
|
8986
9051
|
img: string;
|
|
8987
9052
|
status: string;
|
|
8988
|
-
fallback: string;
|
|
8989
9053
|
avatar: string;
|
|
8990
|
-
badge: string;
|
|
8991
9054
|
circular: string;
|
|
9055
|
+
fallback: string;
|
|
9056
|
+
badge: string;
|
|
8992
9057
|
};
|
|
8993
9058
|
css: any;
|
|
8994
9059
|
cx: (...args: any) => string;
|
|
@@ -9006,14 +9071,14 @@ declare const useClasses_26: (classesProp?: Partial<Record<"root" | "row" | "col
|
|
|
9006
9071
|
cx: (...args: any) => string;
|
|
9007
9072
|
};
|
|
9008
9073
|
|
|
9009
|
-
declare const useClasses_27: (classesProp?: Partial<Record<"root" | "badge" | "
|
|
9074
|
+
declare const useClasses_27: (classesProp?: Partial<Record<"root" | "badge" | "showLabel" | "badgeContainer" | "badgePosition" | "showCount" | "badgeIcon" | "badgeOneDigit", string>>, addStatic?: boolean) => {
|
|
9010
9075
|
classes: {
|
|
9011
9076
|
root: string;
|
|
9012
9077
|
badge: string;
|
|
9078
|
+
showLabel: string;
|
|
9013
9079
|
badgeContainer: string;
|
|
9014
9080
|
badgePosition: string;
|
|
9015
9081
|
showCount: string;
|
|
9016
|
-
showLabel: string;
|
|
9017
9082
|
badgeIcon: string;
|
|
9018
9083
|
badgeOneDigit: string;
|
|
9019
9084
|
};
|
|
@@ -9021,23 +9086,23 @@ declare const useClasses_27: (classesProp?: Partial<Record<"root" | "badge" | "b
|
|
|
9021
9086
|
cx: (...args: any) => string;
|
|
9022
9087
|
};
|
|
9023
9088
|
|
|
9024
|
-
declare const useClasses_28: (classesProp?: Partial<Record<"root" | "
|
|
9089
|
+
declare const useClasses_28: (classesProp?: Partial<Record<"root" | "anchorOriginTopCenter" | "anchorOriginBottomCenter" | "rootClosed", string>>, addStatic?: boolean) => {
|
|
9025
9090
|
classes: {
|
|
9026
9091
|
root: string;
|
|
9027
|
-
rootClosed: string;
|
|
9028
9092
|
anchorOriginTopCenter: string;
|
|
9029
9093
|
anchorOriginBottomCenter: string;
|
|
9094
|
+
rootClosed: string;
|
|
9030
9095
|
};
|
|
9031
9096
|
css: any;
|
|
9032
9097
|
cx: (...args: any) => string;
|
|
9033
9098
|
};
|
|
9034
9099
|
|
|
9035
|
-
declare const useClasses_29: (classesProp?: Partial<Record<"
|
|
9100
|
+
declare const useClasses_29: (classesProp?: Partial<Record<"iconContainer" | "actionContainer" | "actionsInnerContainer" | "closeAction", string>>, addStatic?: boolean) => {
|
|
9036
9101
|
classes: {
|
|
9102
|
+
iconContainer: string;
|
|
9037
9103
|
actionContainer: string;
|
|
9038
9104
|
actionsInnerContainer: string;
|
|
9039
9105
|
closeAction: string;
|
|
9040
|
-
iconContainer: string;
|
|
9041
9106
|
};
|
|
9042
9107
|
css: any;
|
|
9043
9108
|
cx: (...args: any) => string;
|
|
@@ -9110,28 +9175,28 @@ declare const useClasses_33: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
9110
9175
|
cx: (...args: any) => string;
|
|
9111
9176
|
};
|
|
9112
9177
|
|
|
9113
|
-
declare const useClasses_34: (classesProp?: Partial<Record<"link" | "root" | "a" | "
|
|
9178
|
+
declare const useClasses_34: (classesProp?: Partial<Record<"link" | "root" | "a" | "centerContainer" | "separatorContainer" | "orderedList" | "currentPage", string>>, addStatic?: boolean) => {
|
|
9114
9179
|
classes: {
|
|
9115
9180
|
link: string;
|
|
9116
9181
|
root: string;
|
|
9117
9182
|
a: string;
|
|
9118
|
-
orderedList: string;
|
|
9119
|
-
currentPage: string;
|
|
9120
9183
|
centerContainer: string;
|
|
9121
9184
|
separatorContainer: string;
|
|
9185
|
+
orderedList: string;
|
|
9186
|
+
currentPage: string;
|
|
9122
9187
|
};
|
|
9123
9188
|
css: any;
|
|
9124
9189
|
cx: (...args: any) => string;
|
|
9125
9190
|
};
|
|
9126
9191
|
|
|
9127
|
-
declare const useClasses_35: (classesProp?: Partial<Record<"root" | "semantic" | "divider" | "
|
|
9192
|
+
declare const useClasses_35: (classesProp?: Partial<Record<"root" | "semantic" | "divider" | "actions" | "selectAllContainer" | "selectAll" | "selectAllPages", string>>, addStatic?: boolean) => {
|
|
9128
9193
|
classes: {
|
|
9129
9194
|
root: string;
|
|
9130
9195
|
semantic: string;
|
|
9131
9196
|
divider: string;
|
|
9132
|
-
selectAll: string;
|
|
9133
9197
|
actions: string;
|
|
9134
9198
|
selectAllContainer: string;
|
|
9199
|
+
selectAll: string;
|
|
9135
9200
|
selectAllPages: string;
|
|
9136
9201
|
};
|
|
9137
9202
|
css: any;
|
|
@@ -9156,14 +9221,14 @@ declare const useClasses_36: (classesProp?: Partial<Record<"container" | "label"
|
|
|
9156
9221
|
cx: (...args: any) => string;
|
|
9157
9222
|
};
|
|
9158
9223
|
|
|
9159
|
-
declare const useClasses_37: (classesProp?: Partial<Record<"root" | "
|
|
9224
|
+
declare const useClasses_37: (classesProp?: Partial<Record<"root" | "focusSelection" | "calendarMonthlyCell" | "calendarMonthlyCellSelected" | "rangeCalendarContainer" | "singleCalendar", string>>, addStatic?: boolean) => {
|
|
9160
9225
|
classes: {
|
|
9161
9226
|
root: string;
|
|
9162
|
-
rangeCalendarContainer: string;
|
|
9163
|
-
singleCalendar: string;
|
|
9164
9227
|
focusSelection: string;
|
|
9165
9228
|
calendarMonthlyCell: string;
|
|
9166
9229
|
calendarMonthlyCellSelected: string;
|
|
9230
|
+
rangeCalendarContainer: string;
|
|
9231
|
+
singleCalendar: string;
|
|
9167
9232
|
};
|
|
9168
9233
|
css: any;
|
|
9169
9234
|
cx: (...args: any) => string;
|
|
@@ -9196,17 +9261,17 @@ declare const useClasses_39: (classesProp?: Partial<Record<"root" | "icon" | "se
|
|
|
9196
9261
|
cx: (...args: any) => string;
|
|
9197
9262
|
};
|
|
9198
9263
|
|
|
9199
|
-
declare const useClasses_4: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "condensed" | "focus" | "
|
|
9264
|
+
declare const useClasses_4: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "condensed" | "focus" | "startAdornment" | "endAdornment" | "gutters" | "interactive" | "withStartAdornment" | "withEndAdornment", string>>, addStatic?: boolean) => {
|
|
9200
9265
|
classes: {
|
|
9201
9266
|
root: string;
|
|
9202
9267
|
disabled: string;
|
|
9203
9268
|
selected: string;
|
|
9204
9269
|
condensed: string;
|
|
9205
9270
|
focus: string;
|
|
9206
|
-
interactive: string;
|
|
9207
9271
|
startAdornment: string;
|
|
9208
9272
|
endAdornment: string;
|
|
9209
9273
|
gutters: string;
|
|
9274
|
+
interactive: string;
|
|
9210
9275
|
withStartAdornment: string;
|
|
9211
9276
|
withEndAdornment: string;
|
|
9212
9277
|
};
|
|
@@ -9244,7 +9309,7 @@ declare const useClasses_42: (classesProp?: Partial<Record<"root" | "media", str
|
|
|
9244
9309
|
cx: (...args: any) => string;
|
|
9245
9310
|
};
|
|
9246
9311
|
|
|
9247
|
-
declare const useClasses_43: (classesProp?: Partial<Record<"xs" | "root" | "panel" | "title" | "controls" | "counterContainer" | "thumbnail" | "thumbnailSelected" | "dot" | "main" | "
|
|
9312
|
+
declare const useClasses_43: (classesProp?: Partial<Record<"xs" | "root" | "panel" | "title" | "controls" | "counterContainer" | "thumbnail" | "thumbnailSelected" | "dot" | "main" | "dots" | "actions" | "fullscreen" | "closeButton" | "mainContainer" | "pageCounter" | "mainXs" | "mainFullscreen" | "counter" | "slideControls" | "slidesViewport" | "slidesContainer" | "dotsXs" | "dotSelected", string>>, addStatic?: boolean) => {
|
|
9248
9313
|
classes: {
|
|
9249
9314
|
xs: string;
|
|
9250
9315
|
root: string;
|
|
@@ -9256,7 +9321,7 @@ declare const useClasses_43: (classesProp?: Partial<Record<"xs" | "root" | "pane
|
|
|
9256
9321
|
thumbnailSelected: string;
|
|
9257
9322
|
dot: string;
|
|
9258
9323
|
main: string;
|
|
9259
|
-
|
|
9324
|
+
dots: string;
|
|
9260
9325
|
actions: string;
|
|
9261
9326
|
fullscreen: string;
|
|
9262
9327
|
closeButton: string;
|
|
@@ -9264,10 +9329,10 @@ declare const useClasses_43: (classesProp?: Partial<Record<"xs" | "root" | "pane
|
|
|
9264
9329
|
pageCounter: string;
|
|
9265
9330
|
mainXs: string;
|
|
9266
9331
|
mainFullscreen: string;
|
|
9332
|
+
counter: string;
|
|
9267
9333
|
slideControls: string;
|
|
9268
9334
|
slidesViewport: string;
|
|
9269
9335
|
slidesContainer: string;
|
|
9270
|
-
dots: string;
|
|
9271
9336
|
dotsXs: string;
|
|
9272
9337
|
dotSelected: string;
|
|
9273
9338
|
};
|
|
@@ -9284,7 +9349,7 @@ declare const useClasses_44: (classesProp?: Partial<Record<"image" | "slide", st
|
|
|
9284
9349
|
cx: (...args: any) => string;
|
|
9285
9350
|
};
|
|
9286
9351
|
|
|
9287
|
-
declare const useClasses_45: (classesProp?: Partial<Record<"label" | "root" | "inputBorderContainer" | "inputRoot" | "inputRootFocused" | "inputRootMultiline" | "input" | "icon" | "description" | "error" | "
|
|
9352
|
+
declare const useClasses_45: (classesProp?: Partial<Record<"label" | "root" | "inputBorderContainer" | "inputRoot" | "inputRootFocused" | "inputRootMultiline" | "input" | "icon" | "description" | "error" | "labelContainer" | "adornmentButton" | "inputRootDisabled" | "adornmentsBox" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList" | "inputExtension", string>>, addStatic?: boolean) => {
|
|
9288
9353
|
classes: {
|
|
9289
9354
|
label: string;
|
|
9290
9355
|
root: string;
|
|
@@ -9296,8 +9361,8 @@ declare const useClasses_45: (classesProp?: Partial<Record<"label" | "root" | "i
|
|
|
9296
9361
|
icon: string;
|
|
9297
9362
|
description: string;
|
|
9298
9363
|
error: string;
|
|
9299
|
-
adornmentButton: string;
|
|
9300
9364
|
labelContainer: string;
|
|
9365
|
+
adornmentButton: string;
|
|
9301
9366
|
inputRootDisabled: string;
|
|
9302
9367
|
adornmentsBox: string;
|
|
9303
9368
|
iconClear: string;
|
|
@@ -9404,7 +9469,7 @@ declare const useClasses_50: (classesProp?: Partial<Record<"root" | "section" |
|
|
|
9404
9469
|
cx: (...args: any) => string;
|
|
9405
9470
|
};
|
|
9406
9471
|
|
|
9407
|
-
declare const useClasses_51: (classesProp?: Partial<Record<"body" | "root" | "head" | "variantListactions" | "variantListcheckbox" | "variantList" | "footer" | "
|
|
9472
|
+
declare const useClasses_51: (classesProp?: Partial<Record<"body" | "root" | "head" | "variantListactions" | "variantListcheckbox" | "variantList" | "footer" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "resizable" | "sorted" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "variantListHead" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing", string>>, addStatic?: boolean) => {
|
|
9408
9473
|
classes: {
|
|
9409
9474
|
body: string;
|
|
9410
9475
|
root: string;
|
|
@@ -9413,12 +9478,12 @@ declare const useClasses_51: (classesProp?: Partial<Record<"body" | "root" | "he
|
|
|
9413
9478
|
variantListcheckbox: string;
|
|
9414
9479
|
variantList: string;
|
|
9415
9480
|
footer: string;
|
|
9416
|
-
resizable: string;
|
|
9417
|
-
sorted: string;
|
|
9418
9481
|
alignLeft: string;
|
|
9419
9482
|
alignCenter: string;
|
|
9420
9483
|
alignRight: string;
|
|
9421
9484
|
alignJustify: string;
|
|
9485
|
+
resizable: string;
|
|
9486
|
+
sorted: string;
|
|
9422
9487
|
variantNone: string;
|
|
9423
9488
|
variantCheckbox: string;
|
|
9424
9489
|
variantActions: string;
|
|
@@ -9435,7 +9500,7 @@ declare const useClasses_51: (classesProp?: Partial<Record<"body" | "root" | "he
|
|
|
9435
9500
|
cx: (...args: any) => string;
|
|
9436
9501
|
};
|
|
9437
9502
|
|
|
9438
|
-
declare const useClasses_52: (classesProp?: Partial<Record<"body" | "root" | "selected" | "head" | "variantList" | "expanded" | "footer" | "
|
|
9503
|
+
declare const useClasses_52: (classesProp?: Partial<Record<"body" | "root" | "selected" | "head" | "variantList" | "expanded" | "footer" | "hover" | "variantListHead" | "striped", string>>, addStatic?: boolean) => {
|
|
9439
9504
|
classes: {
|
|
9440
9505
|
body: string;
|
|
9441
9506
|
root: string;
|
|
@@ -9444,15 +9509,15 @@ declare const useClasses_52: (classesProp?: Partial<Record<"body" | "root" | "se
|
|
|
9444
9509
|
variantList: string;
|
|
9445
9510
|
expanded: string;
|
|
9446
9511
|
footer: string;
|
|
9512
|
+
hover: string;
|
|
9447
9513
|
variantListHead: string;
|
|
9448
9514
|
striped: string;
|
|
9449
|
-
hover: string;
|
|
9450
9515
|
};
|
|
9451
9516
|
css: any;
|
|
9452
9517
|
cx: (...args: any) => string;
|
|
9453
9518
|
};
|
|
9454
9519
|
|
|
9455
|
-
declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "head" | "sortButton" | "variantList" | "resizer" | "footer" | "
|
|
9520
|
+
declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "head" | "sortButton" | "variantList" | "resizer" | "footer" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "resizable" | "sorted" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing" | "headerContent" | "headerText" | "headerParagraph" | "sortableHeaderText" | "sortable" | "sortIcon" | "alignFlexLeft" | "alignFlexRight" | "alignFlexCenter" | "alignFlexJustify", string>>, addStatic?: boolean) => {
|
|
9456
9521
|
classes: {
|
|
9457
9522
|
body: string;
|
|
9458
9523
|
root: string;
|
|
@@ -9461,12 +9526,12 @@ declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "he
|
|
|
9461
9526
|
variantList: string;
|
|
9462
9527
|
resizer: string;
|
|
9463
9528
|
footer: string;
|
|
9464
|
-
resizable: string;
|
|
9465
|
-
sorted: string;
|
|
9466
9529
|
alignLeft: string;
|
|
9467
9530
|
alignCenter: string;
|
|
9468
9531
|
alignRight: string;
|
|
9469
9532
|
alignJustify: string;
|
|
9533
|
+
resizable: string;
|
|
9534
|
+
sorted: string;
|
|
9470
9535
|
variantNone: string;
|
|
9471
9536
|
variantCheckbox: string;
|
|
9472
9537
|
variantActions: string;
|
|
@@ -9520,7 +9585,7 @@ declare const useClasses_56: (classesProp?: Partial<Record<"root" | "sortDropdow
|
|
|
9520
9585
|
cx: (...args: any) => string;
|
|
9521
9586
|
};
|
|
9522
9587
|
|
|
9523
|
-
declare const useClasses_57: (classesProp?: Partial<Record<"label" | "root" | "placeholder" | "disabled" | "readOnly" | "placeholderClosed" | "dropdown" | "description" | "error" | "arrow" | "labelContainer" | "selectionDisabled" | "
|
|
9588
|
+
declare const useClasses_57: (classesProp?: Partial<Record<"label" | "root" | "placeholder" | "disabled" | "readOnly" | "placeholderClosed" | "dropdown" | "description" | "error" | "arrow" | "labelContainer" | "selectionDisabled" | "rootList" | "dropdownListContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen", string>>, addStatic?: boolean) => {
|
|
9524
9589
|
classes: {
|
|
9525
9590
|
label: string;
|
|
9526
9591
|
root: string;
|
|
@@ -9534,25 +9599,25 @@ declare const useClasses_57: (classesProp?: Partial<Record<"label" | "root" | "p
|
|
|
9534
9599
|
arrow: string;
|
|
9535
9600
|
labelContainer: string;
|
|
9536
9601
|
selectionDisabled: string;
|
|
9602
|
+
rootList: string;
|
|
9603
|
+
dropdownListContainer: string;
|
|
9537
9604
|
dropdownHeader: string;
|
|
9538
9605
|
dropdownHeaderInvalid: string;
|
|
9539
9606
|
dropdownHeaderOpen: string;
|
|
9540
|
-
dropdownListContainer: string;
|
|
9541
|
-
rootList: string;
|
|
9542
9607
|
};
|
|
9543
9608
|
css: any;
|
|
9544
9609
|
cx: (...args: any) => string;
|
|
9545
9610
|
};
|
|
9546
9611
|
|
|
9547
|
-
declare const useClasses_58: (classesProp?: Partial<Record<"listContainer" | "selection" | "
|
|
9612
|
+
declare const useClasses_58: (classesProp?: Partial<Record<"listContainer" | "selection" | "selectAllContainer" | "selectAll" | "rootList" | "dropdownListContainer" | "virtualized" | "searchContainer" | "listBorderDown", string>>, addStatic?: boolean) => {
|
|
9548
9613
|
classes: {
|
|
9549
9614
|
listContainer: string;
|
|
9550
9615
|
selection: string;
|
|
9551
|
-
virtualized: string;
|
|
9552
|
-
selectAll: string;
|
|
9553
9616
|
selectAllContainer: string;
|
|
9554
|
-
|
|
9617
|
+
selectAll: string;
|
|
9555
9618
|
rootList: string;
|
|
9619
|
+
dropdownListContainer: string;
|
|
9620
|
+
virtualized: string;
|
|
9556
9621
|
searchContainer: string;
|
|
9557
9622
|
listBorderDown: string;
|
|
9558
9623
|
};
|
|
@@ -9583,9 +9648,10 @@ declare const useClasses_59: (classesProp?: Partial<Record<"label" | "root" | "p
|
|
|
9583
9648
|
cx: (...args: any) => string;
|
|
9584
9649
|
};
|
|
9585
9650
|
|
|
9586
|
-
declare const useClasses_6: (classesProp?: Partial<Record<"root" | "icon" | "adornment" | "adornmentIcon" | "hideIcon" | "adornmentButton", string>>, addStatic?: boolean) => {
|
|
9651
|
+
declare const useClasses_6: (classesProp?: Partial<Record<"root" | "disabled" | "icon" | "adornment" | "adornmentIcon" | "hideIcon" | "adornmentButton", string>>, addStatic?: boolean) => {
|
|
9587
9652
|
classes: {
|
|
9588
9653
|
root: string;
|
|
9654
|
+
disabled: string;
|
|
9589
9655
|
icon: string;
|
|
9590
9656
|
adornment: string;
|
|
9591
9657
|
adornmentIcon: string;
|
|
@@ -9680,13 +9746,13 @@ declare const useClasses_66: (classesProp?: Partial<Record<"background" | "root"
|
|
|
9680
9746
|
cx: (...args: any) => string;
|
|
9681
9747
|
};
|
|
9682
9748
|
|
|
9683
|
-
declare const useClasses_67: (classesProp?: Partial<Record<"container" | "root" | "titleContainer" | "
|
|
9749
|
+
declare const useClasses_67: (classesProp?: Partial<Record<"container" | "root" | "titleContainer" | "iconContainer" | "actionContainer" | "messageContainer" | "containerMessageOnly" | "textContainer", string>>, addStatic?: boolean) => {
|
|
9684
9750
|
classes: {
|
|
9685
9751
|
container: string;
|
|
9686
9752
|
root: string;
|
|
9687
9753
|
titleContainer: string;
|
|
9688
|
-
actionContainer: string;
|
|
9689
9754
|
iconContainer: string;
|
|
9755
|
+
actionContainer: string;
|
|
9690
9756
|
messageContainer: string;
|
|
9691
9757
|
containerMessageOnly: string;
|
|
9692
9758
|
textContainer: string;
|
|
@@ -9771,7 +9837,7 @@ declare const useClasses_72: (classesProp?: Partial<Record<"name" | "small" | "r
|
|
|
9771
9837
|
cx: (...args: any) => string;
|
|
9772
9838
|
};
|
|
9773
9839
|
|
|
9774
|
-
declare const useClasses_73: (classesProp?: Partial<Record<"name" | "root" | "section" | "wrapper" | "sectionName" | "backButton" | "
|
|
9840
|
+
declare const useClasses_73: (classesProp?: Partial<Record<"name" | "root" | "section" | "wrapper" | "sectionName" | "backButton" | "positionFixed" | "positionSticky" | "actions" | "global" | "globalSectionArea" | "globalWrapperComplement", string>>, addStatic?: boolean) => {
|
|
9775
9841
|
classes: {
|
|
9776
9842
|
name: string;
|
|
9777
9843
|
root: string;
|
|
@@ -9779,9 +9845,9 @@ declare const useClasses_73: (classesProp?: Partial<Record<"name" | "root" | "se
|
|
|
9779
9845
|
wrapper: string;
|
|
9780
9846
|
sectionName: string;
|
|
9781
9847
|
backButton: string;
|
|
9782
|
-
actions: string;
|
|
9783
|
-
positionSticky: string;
|
|
9784
9848
|
positionFixed: string;
|
|
9849
|
+
positionSticky: string;
|
|
9850
|
+
actions: string;
|
|
9785
9851
|
global: string;
|
|
9786
9852
|
globalSectionArea: string;
|
|
9787
9853
|
globalWrapperComplement: string;
|
|
@@ -9790,17 +9856,16 @@ declare const useClasses_73: (classesProp?: Partial<Record<"name" | "root" | "se
|
|
|
9790
9856
|
cx: (...args: any) => string;
|
|
9791
9857
|
};
|
|
9792
9858
|
|
|
9793
|
-
declare const useClasses_74: (classesProp?: Partial<Record<"container" | "root" | "
|
|
9859
|
+
declare const useClasses_74: (classesProp?: Partial<Record<"container" | "root" | "direction-xs-column" | "direction-xs-row-reverse" | "wrap-xs-nowrap" | "wrap-xs-wrap-reverse" | "item" | "zeroMinWidth" | "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" | "direction-xs-reverse", string>>, addStatic?: boolean) => {
|
|
9794
9860
|
classes: {
|
|
9795
9861
|
container: string;
|
|
9796
9862
|
root: string;
|
|
9797
|
-
item: string;
|
|
9798
|
-
zeroMinWidth: string;
|
|
9799
9863
|
"direction-xs-column": string;
|
|
9800
|
-
"direction-xs-reverse": string;
|
|
9801
9864
|
"direction-xs-row-reverse": string;
|
|
9802
9865
|
"wrap-xs-nowrap": string;
|
|
9803
9866
|
"wrap-xs-wrap-reverse": string;
|
|
9867
|
+
item: string;
|
|
9868
|
+
zeroMinWidth: string;
|
|
9804
9869
|
"spacing-xs-1": string;
|
|
9805
9870
|
"spacing-xs-2": string;
|
|
9806
9871
|
"spacing-xs-3": string;
|
|
@@ -9825,16 +9890,18 @@ declare const useClasses_74: (classesProp?: Partial<Record<"container" | "root"
|
|
|
9825
9890
|
"grid-xs-10": string;
|
|
9826
9891
|
"grid-xs-11": string;
|
|
9827
9892
|
"grid-xs-12": string;
|
|
9893
|
+
"direction-xs-reverse": string;
|
|
9828
9894
|
};
|
|
9829
9895
|
css: any;
|
|
9830
9896
|
cx: (...args: any) => string;
|
|
9831
9897
|
};
|
|
9832
9898
|
|
|
9833
|
-
declare const useClasses_75: (classesProp?: Partial<Record<"backgroundColor" | "header" | "root", string>>, addStatic?: boolean) => {
|
|
9899
|
+
declare const useClasses_75: (classesProp?: Partial<Record<"backgroundColor" | "header" | "root" | "fixed", string>>, addStatic?: boolean) => {
|
|
9834
9900
|
classes: {
|
|
9835
9901
|
backgroundColor: string;
|
|
9836
9902
|
header: string;
|
|
9837
9903
|
root: string;
|
|
9904
|
+
fixed: string;
|
|
9838
9905
|
};
|
|
9839
9906
|
css: any;
|
|
9840
9907
|
cx: (...args: any) => string;
|
|
@@ -9961,7 +10028,7 @@ declare const useClasses_84: (classesProp?: Partial<Record<"link" | "root" | "it
|
|
|
9961
10028
|
cx: (...args: any) => string;
|
|
9962
10029
|
};
|
|
9963
10030
|
|
|
9964
|
-
declare const useClasses_85: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "root" | "hidden" | "blur" | "
|
|
10031
|
+
declare const useClasses_85: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "root" | "hidden" | "blur" | "regular" | "barContainer" | "loadingBar" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
|
|
9965
10032
|
classes: {
|
|
9966
10033
|
overlay: string;
|
|
9967
10034
|
label: string;
|
|
@@ -9969,9 +10036,9 @@ declare const useClasses_85: (classesProp?: Partial<Record<"overlay" | "label" |
|
|
|
9969
10036
|
root: string;
|
|
9970
10037
|
hidden: string;
|
|
9971
10038
|
blur: string;
|
|
10039
|
+
regular: string;
|
|
9972
10040
|
barContainer: string;
|
|
9973
10041
|
loadingBar: string;
|
|
9974
|
-
regular: string;
|
|
9975
10042
|
smallColor: string;
|
|
9976
10043
|
regularColor: string;
|
|
9977
10044
|
};
|
|
@@ -9997,7 +10064,7 @@ declare const useClasses_87: (classesProp?: Partial<Record<"root" | "formContain
|
|
|
9997
10064
|
cx: (...args: any) => string;
|
|
9998
10065
|
};
|
|
9999
10066
|
|
|
10000
|
-
declare const useClasses_88: (classesProp?: Partial<Record<"secondary" | "primary" | "vertical" | "root" | "secondarySubtle" | "selected" | "button" | "secondaryGhost" | "splitDisabled" | "multiple" | "primaryGhost" | "splitGroup" | "splitGroupDisabled" | "splitContainer" | "split" | "
|
|
10067
|
+
declare const useClasses_88: (classesProp?: Partial<Record<"secondary" | "primary" | "vertical" | "root" | "secondarySubtle" | "selected" | "button" | "secondaryGhost" | "splitDisabled" | "multiple" | "primaryGhost" | "splitGroup" | "splitGroupDisabled" | "splitContainer" | "split" | "firstButton" | "lastButton" | "primarySubtle", string>>, addStatic?: boolean) => {
|
|
10001
10068
|
classes: {
|
|
10002
10069
|
secondary: string;
|
|
10003
10070
|
primary: string;
|
|
@@ -10014,9 +10081,9 @@ declare const useClasses_88: (classesProp?: Partial<Record<"secondary" | "primar
|
|
|
10014
10081
|
splitGroupDisabled: string;
|
|
10015
10082
|
splitContainer: string;
|
|
10016
10083
|
split: string;
|
|
10017
|
-
primarySubtle: string;
|
|
10018
10084
|
firstButton: string;
|
|
10019
10085
|
lastButton: string;
|
|
10086
|
+
primarySubtle: string;
|
|
10020
10087
|
};
|
|
10021
10088
|
css: any;
|
|
10022
10089
|
cx: (...args: any) => string;
|
|
@@ -10159,13 +10226,13 @@ declare const useClasses_97: (classesProp?: Partial<Record<"root" | "selected" |
|
|
|
10159
10226
|
cx: (...args: any) => string;
|
|
10160
10227
|
};
|
|
10161
10228
|
|
|
10162
|
-
declare const useClasses_98: (classesProp?: Partial<Record<"root" | "selected" | "notSelected" | "
|
|
10229
|
+
declare const useClasses_98: (classesProp?: Partial<Record<"root" | "selected" | "notSelected" | "positionFixed" | "positionSticky" | "notSelectedRoot", string>>, addStatic?: boolean) => {
|
|
10163
10230
|
classes: {
|
|
10164
10231
|
root: string;
|
|
10165
10232
|
selected: string;
|
|
10166
10233
|
notSelected: string;
|
|
10167
|
-
positionSticky: string;
|
|
10168
10234
|
positionFixed: string;
|
|
10235
|
+
positionSticky: string;
|
|
10169
10236
|
notSelectedRoot: string;
|
|
10170
10237
|
};
|
|
10171
10238
|
css: any;
|
|
@@ -10369,7 +10436,7 @@ export declare const useHvRowState: typeof useRowState;
|
|
|
10369
10436
|
|
|
10370
10437
|
export declare const useHvSnackbar: () => {
|
|
10371
10438
|
enqueueSnackbar: (message: React.ReactNode, options?: HvNotistackSnackMessageProps) => SnackbarKey;
|
|
10372
|
-
closeSnackbar: (key?: SnackbarKey) => void;
|
|
10439
|
+
closeSnackbar: (key?: SnackbarKey | undefined) => void;
|
|
10373
10440
|
};
|
|
10374
10441
|
|
|
10375
10442
|
export declare const useHvSortBy: UseHvSortByProps;
|
|
@@ -10705,8 +10772,8 @@ export declare const verticalNavigationTreeClasses: {
|
|
|
10705
10772
|
listItem: "HvVerticalNavigationTree-listItem";
|
|
10706
10773
|
list: "HvVerticalNavigationTree-list";
|
|
10707
10774
|
navigationPopup: "HvVerticalNavigationTree-navigationPopup";
|
|
10708
|
-
popup: "HvVerticalNavigationTree-popup";
|
|
10709
10775
|
collapsed: "HvVerticalNavigationTree-collapsed";
|
|
10776
|
+
popup: "HvVerticalNavigationTree-popup";
|
|
10710
10777
|
};
|
|
10711
10778
|
|
|
10712
10779
|
export declare const verticalScrollListItemClasses: {
|
|
@@ -10729,9 +10796,9 @@ export declare const warningTextClasses: {
|
|
|
10729
10796
|
topBorder: "HvWarningText-topBorder";
|
|
10730
10797
|
};
|
|
10731
10798
|
|
|
10732
|
-
export declare const withTooltip: (Component: React.FunctionComponent, label: string | undefined, placement: HvTooltipPlacementType, hideTooltip?: (event: React.MouseEvent<HTMLDivElement>) => boolean, tooltipProps?: Partial<HvTooltipProps>, tooltipContainerProps?: HvBaseProps) => (props: any) =>
|
|
10799
|
+
export declare const withTooltip: (Component: React.FunctionComponent, label: string | undefined, placement: HvTooltipPlacementType, hideTooltip?: ((event: React.MouseEvent<HTMLDivElement>) => boolean) | undefined, tooltipProps?: Partial<HvTooltipProps>, tooltipContainerProps?: HvBaseProps) => (props: any) => JSX_3.Element;
|
|
10733
10800
|
|
|
10734
10801
|
/** @deprecated */
|
|
10735
|
-
export declare const wrapperTooltip: (hasTooltips: boolean, Component: any, label: any) => ((props: any) =>
|
|
10802
|
+
export declare const wrapperTooltip: (hasTooltips: boolean, Component: any, label: any) => ((props: any) => JSX_3.Element) | (() => any);
|
|
10736
10803
|
|
|
10737
10804
|
export { }
|