@hitachivantara/uikit-react-core 5.69.0 → 5.70.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/Header/Header.cjs +3 -9
- package/dist/cjs/Header/Header.styles.cjs +3 -3
- 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/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/VerticalNavigation/TreeView/TreeViewItem.js +7 -5
- package/dist/esm/VerticalNavigation/TreeView/TreeViewItem.js.map +1 -1
- package/dist/types/index.d.ts +350 -275
- 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';
|
|
@@ -13,6 +15,7 @@ import { ComponentProps } from 'react';
|
|
|
13
15
|
import { ContainerProps } from '@mui/material/Container';
|
|
14
16
|
import { Context } from 'react';
|
|
15
17
|
import { createClasses } from '@hitachivantara/uikit-react-utils';
|
|
18
|
+
import { CSSProperties } from 'react';
|
|
16
19
|
import { default as default_2 } from 'react';
|
|
17
20
|
import { default as default_3 } from 'embla-carousel-react';
|
|
18
21
|
import { defaultCacheKey } from '@hitachivantara/uikit-react-shared';
|
|
@@ -25,6 +28,7 @@ import { DividerProps } from '@mui/material/Divider';
|
|
|
25
28
|
import { DrawerProps } from '@mui/material/Drawer';
|
|
26
29
|
import { ds3 } from '@hitachivantara/uikit-styles';
|
|
27
30
|
import { ds5 } from '@hitachivantara/uikit-styles';
|
|
31
|
+
import { ElementType } from 'react';
|
|
28
32
|
import { EmotionCache } from '@emotion/cache';
|
|
29
33
|
import { EmotionContext } from '@hitachivantara/uikit-react-shared';
|
|
30
34
|
import { ExtractNames } from '@hitachivantara/uikit-react-utils';
|
|
@@ -58,7 +62,9 @@ import { IdType as IdType_2 } from 'react-table';
|
|
|
58
62
|
import { InputBaseComponentProps } from '@mui/material/InputBase';
|
|
59
63
|
import { InputBaseProps } from '@mui/material/InputBase';
|
|
60
64
|
import { InputProps } from '@mui/material/Input';
|
|
61
|
-
import { JSX as JSX_2 } from 'react
|
|
65
|
+
import { JSX as JSX_2 } from 'react';
|
|
66
|
+
import { JSX as JSX_3 } from 'react/jsx-runtime';
|
|
67
|
+
import { JSXElementConstructor } from 'react';
|
|
62
68
|
import { OptionGroupProps } from '@mui/base/OptionGroup';
|
|
63
69
|
import { OptionOwnProps } from '@mui/base/Option';
|
|
64
70
|
import { OptionsObject } from 'notistack';
|
|
@@ -68,6 +74,7 @@ import { PropGetter } from 'react-table';
|
|
|
68
74
|
import { PropsWithoutRef } from 'react';
|
|
69
75
|
import { RadioProps } from '@mui/material/Radio';
|
|
70
76
|
import * as React_2 from 'react';
|
|
77
|
+
import { ReactElement } from 'react';
|
|
71
78
|
import { ReactNode } from 'react';
|
|
72
79
|
import { ReducerTableState } from 'react-table';
|
|
73
80
|
import { RefAttributes } from 'react';
|
|
@@ -195,6 +202,7 @@ export declare const actionsGenericClasses: {
|
|
|
195
202
|
|
|
196
203
|
export declare const adornmentClasses: {
|
|
197
204
|
root: "HvAdornment-root";
|
|
205
|
+
disabled: "HvAdornment-disabled";
|
|
198
206
|
icon: "HvAdornment-icon";
|
|
199
207
|
adornment: "HvAdornment-adornment";
|
|
200
208
|
adornmentIcon: "HvAdornment-adornmentIcon";
|
|
@@ -257,10 +265,10 @@ export declare const avatarClasses: {
|
|
|
257
265
|
square: "HvAvatar-square";
|
|
258
266
|
img: "HvAvatar-img";
|
|
259
267
|
status: "HvAvatar-status";
|
|
260
|
-
fallback: "HvAvatar-fallback";
|
|
261
268
|
avatar: "HvAvatar-avatar";
|
|
262
|
-
badge: "HvAvatar-badge";
|
|
263
269
|
circular: "HvAvatar-circular";
|
|
270
|
+
fallback: "HvAvatar-fallback";
|
|
271
|
+
badge: "HvAvatar-badge";
|
|
264
272
|
};
|
|
265
273
|
|
|
266
274
|
export declare const avatarGroupClasses: {
|
|
@@ -274,19 +282,19 @@ export declare const avatarGroupClasses: {
|
|
|
274
282
|
export declare const badgeClasses: {
|
|
275
283
|
root: "HvBadge-root";
|
|
276
284
|
badge: "HvBadge-badge";
|
|
285
|
+
showLabel: "HvBadge-showLabel";
|
|
277
286
|
badgeContainer: "HvBadge-badgeContainer";
|
|
278
287
|
badgePosition: "HvBadge-badgePosition";
|
|
279
288
|
showCount: "HvBadge-showCount";
|
|
280
|
-
showLabel: "HvBadge-showLabel";
|
|
281
289
|
badgeIcon: "HvBadge-badgeIcon";
|
|
282
290
|
badgeOneDigit: "HvBadge-badgeOneDigit";
|
|
283
291
|
};
|
|
284
292
|
|
|
285
293
|
export declare const bannerClasses: {
|
|
286
294
|
root: "HvBanner-root";
|
|
287
|
-
rootClosed: "HvBanner-rootClosed";
|
|
288
295
|
anchorOriginTopCenter: "HvBanner-anchorOriginTopCenter";
|
|
289
296
|
anchorOriginBottomCenter: "HvBanner-anchorOriginBottomCenter";
|
|
297
|
+
rootClosed: "HvBanner-rootClosed";
|
|
290
298
|
};
|
|
291
299
|
|
|
292
300
|
export declare const bannerContentClasses: {
|
|
@@ -328,9 +336,9 @@ export declare const baseDropdownClasses: {
|
|
|
328
336
|
panel: "HvBaseDropdown-panel";
|
|
329
337
|
inputExtensionOpen: "HvBaseDropdown-inputExtensionOpen";
|
|
330
338
|
anchor: "HvBaseDropdown-anchor";
|
|
339
|
+
arrow: "HvBaseDropdown-arrow";
|
|
331
340
|
selection: "HvBaseDropdown-selection";
|
|
332
341
|
arrowContainer: "HvBaseDropdown-arrowContainer";
|
|
333
|
-
arrow: "HvBaseDropdown-arrow";
|
|
334
342
|
panelOpenedUp: "HvBaseDropdown-panelOpenedUp";
|
|
335
343
|
panelOpenedDown: "HvBaseDropdown-panelOpenedDown";
|
|
336
344
|
rootDisabled: "HvBaseDropdown-rootDisabled";
|
|
@@ -387,10 +395,10 @@ export declare const breadCrumbClasses: {
|
|
|
387
395
|
link: "HvBreadCrumb-link";
|
|
388
396
|
root: "HvBreadCrumb-root";
|
|
389
397
|
a: "HvBreadCrumb-a";
|
|
390
|
-
orderedList: "HvBreadCrumb-orderedList";
|
|
391
|
-
currentPage: "HvBreadCrumb-currentPage";
|
|
392
398
|
centerContainer: "HvBreadCrumb-centerContainer";
|
|
393
399
|
separatorContainer: "HvBreadCrumb-separatorContainer";
|
|
400
|
+
orderedList: "HvBreadCrumb-orderedList";
|
|
401
|
+
currentPage: "HvBreadCrumb-currentPage";
|
|
394
402
|
};
|
|
395
403
|
|
|
396
404
|
export declare interface Breakpoint {
|
|
@@ -414,9 +422,9 @@ export declare const bulkActionsClasses: {
|
|
|
414
422
|
root: "HvBulkActions-root";
|
|
415
423
|
semantic: "HvBulkActions-semantic";
|
|
416
424
|
divider: "HvBulkActions-divider";
|
|
417
|
-
selectAll: "HvBulkActions-selectAll";
|
|
418
425
|
actions: "HvBulkActions-actions";
|
|
419
426
|
selectAllContainer: "HvBulkActions-selectAllContainer";
|
|
427
|
+
selectAll: "HvBulkActions-selectAll";
|
|
420
428
|
selectAllPages: "HvBulkActions-selectAllPages";
|
|
421
429
|
};
|
|
422
430
|
|
|
@@ -432,10 +440,10 @@ export declare const buttonClasses: {
|
|
|
432
440
|
secondaryGhost: "HvButton-secondaryGhost";
|
|
433
441
|
primaryGhost: "HvButton-primaryGhost";
|
|
434
442
|
subtle: "HvButton-subtle";
|
|
435
|
-
|
|
443
|
+
focusVisible: "HvButton-focusVisible";
|
|
436
444
|
startIcon: "HvButton-startIcon";
|
|
437
445
|
endIcon: "HvButton-endIcon";
|
|
438
|
-
|
|
446
|
+
primarySubtle: "HvButton-primarySubtle";
|
|
439
447
|
};
|
|
440
448
|
|
|
441
449
|
export declare const buttonRadius: readonly ["none", "base", "round", "circle", "full"];
|
|
@@ -446,11 +454,11 @@ export declare const buttonVariant: readonly ["primary", "primarySubtle", "prima
|
|
|
446
454
|
|
|
447
455
|
export declare const calendarClasses: {
|
|
448
456
|
root: "HvCalendar-root";
|
|
449
|
-
rangeCalendarContainer: "HvCalendar-rangeCalendarContainer";
|
|
450
|
-
singleCalendar: "HvCalendar-singleCalendar";
|
|
451
457
|
focusSelection: "HvCalendar-focusSelection";
|
|
452
458
|
calendarMonthlyCell: "HvCalendar-calendarMonthlyCell";
|
|
453
459
|
calendarMonthlyCellSelected: "HvCalendar-calendarMonthlyCellSelected";
|
|
460
|
+
rangeCalendarContainer: "HvCalendar-rangeCalendarContainer";
|
|
461
|
+
singleCalendar: "HvCalendar-singleCalendar";
|
|
454
462
|
};
|
|
455
463
|
|
|
456
464
|
export declare const calendarHeaderClasses: {
|
|
@@ -501,7 +509,7 @@ export declare const carouselClasses: {
|
|
|
501
509
|
thumbnailSelected: "HvCarousel-thumbnailSelected";
|
|
502
510
|
dot: "HvCarousel-dot";
|
|
503
511
|
main: "HvCarousel-main";
|
|
504
|
-
|
|
512
|
+
dots: "HvCarousel-dots";
|
|
505
513
|
actions: "HvCarousel-actions";
|
|
506
514
|
fullscreen: "HvCarousel-fullscreen";
|
|
507
515
|
closeButton: "HvCarousel-closeButton";
|
|
@@ -509,19 +517,19 @@ export declare const carouselClasses: {
|
|
|
509
517
|
pageCounter: "HvCarousel-pageCounter";
|
|
510
518
|
mainXs: "HvCarousel-mainXs";
|
|
511
519
|
mainFullscreen: "HvCarousel-mainFullscreen";
|
|
520
|
+
counter: "HvCarousel-counter";
|
|
512
521
|
slideControls: "HvCarousel-slideControls";
|
|
513
522
|
slidesViewport: "HvCarousel-slidesViewport";
|
|
514
523
|
slidesContainer: "HvCarousel-slidesContainer";
|
|
515
|
-
dots: "HvCarousel-dots";
|
|
516
524
|
dotsXs: "HvCarousel-dotsXs";
|
|
517
525
|
dotSelected: "HvCarousel-dotSelected";
|
|
518
526
|
};
|
|
519
527
|
|
|
520
528
|
declare type CellValue<V = any> = V;
|
|
521
529
|
|
|
522
|
-
export declare const CellWithCheckBox: ({ row, labels: labelsProp }: any) =>
|
|
530
|
+
export declare const CellWithCheckBox: ({ row, labels: labelsProp }: any) => JSX_3.Element;
|
|
523
531
|
|
|
524
|
-
export declare const CellWithExpandButton: ({ row, cell, labels: labelsProp, }: any) =>
|
|
532
|
+
export declare const CellWithExpandButton: ({ row, cell, labels: labelsProp, }: any) => JSX_3.Element;
|
|
525
533
|
|
|
526
534
|
export declare const charCounterClasses: {
|
|
527
535
|
root: "HvCharCounter-root";
|
|
@@ -840,11 +848,11 @@ export declare const dropdownClasses: {
|
|
|
840
848
|
arrow: "HvDropdown-arrow";
|
|
841
849
|
labelContainer: "HvDropdown-labelContainer";
|
|
842
850
|
selectionDisabled: "HvDropdown-selectionDisabled";
|
|
851
|
+
rootList: "HvDropdown-rootList";
|
|
852
|
+
dropdownListContainer: "HvDropdown-dropdownListContainer";
|
|
843
853
|
dropdownHeader: "HvDropdown-dropdownHeader";
|
|
844
854
|
dropdownHeaderInvalid: "HvDropdown-dropdownHeaderInvalid";
|
|
845
855
|
dropdownHeaderOpen: "HvDropdown-dropdownHeaderOpen";
|
|
846
|
-
dropdownListContainer: "HvDropdown-dropdownListContainer";
|
|
847
|
-
rootList: "HvDropdown-rootList";
|
|
848
856
|
};
|
|
849
857
|
|
|
850
858
|
export declare const dropDownMenuClasses: {
|
|
@@ -867,8 +875,8 @@ export declare const emptyStateClasses: {
|
|
|
867
875
|
container: "HvEmptyState-container";
|
|
868
876
|
root: "HvEmptyState-root";
|
|
869
877
|
titleContainer: "HvEmptyState-titleContainer";
|
|
870
|
-
actionContainer: "HvEmptyState-actionContainer";
|
|
871
878
|
iconContainer: "HvEmptyState-iconContainer";
|
|
879
|
+
actionContainer: "HvEmptyState-actionContainer";
|
|
872
880
|
messageContainer: "HvEmptyState-messageContainer";
|
|
873
881
|
containerMessageOnly: "HvEmptyState-containerMessageOnly";
|
|
874
882
|
textContainer: "HvEmptyState-textContainer";
|
|
@@ -924,7 +932,7 @@ export declare const findDescriptors: (children: default_2.ReactNode, descriptor
|
|
|
924
932
|
description: Descriptor[];
|
|
925
933
|
controlled: Descriptor[];
|
|
926
934
|
errormessage: Descriptor[];
|
|
927
|
-
HvCalendarHeader?: Descriptor[];
|
|
935
|
+
HvCalendarHeader?: Descriptor[] | undefined;
|
|
928
936
|
};
|
|
929
937
|
|
|
930
938
|
declare type FixComponentProps<T> = T extends any ? T : never;
|
|
@@ -936,11 +944,11 @@ export declare const focusClasses: {
|
|
|
936
944
|
root: "HvFocus-root";
|
|
937
945
|
disabled: "HvFocus-disabled";
|
|
938
946
|
selected: "HvFocus-selected";
|
|
939
|
-
focus: "HvFocus-focus";
|
|
940
947
|
focusDisabled: "HvFocus-focusDisabled";
|
|
941
948
|
focused: "HvFocus-focused";
|
|
942
949
|
externalReference: "HvFocus-externalReference";
|
|
943
950
|
falseFocus: "HvFocus-falseFocus";
|
|
951
|
+
focus: "HvFocus-focus";
|
|
944
952
|
};
|
|
945
953
|
|
|
946
954
|
export declare const footerClasses: {
|
|
@@ -997,8 +1005,8 @@ export declare const getPrevNextFocus: (nodeId?: string) => {
|
|
|
997
1005
|
};
|
|
998
1006
|
|
|
999
1007
|
export declare const getSelectorIcons: () => {
|
|
1000
|
-
radio:
|
|
1001
|
-
radioChecked:
|
|
1008
|
+
radio: JSX_3.Element;
|
|
1009
|
+
radioChecked: JSX_3.Element;
|
|
1002
1010
|
};
|
|
1003
1011
|
|
|
1004
1012
|
export declare const getTableHeadPropsHook: (props: any, { instance }: any) => any[];
|
|
@@ -1012,9 +1020,9 @@ export declare const globalActionsClasses: {
|
|
|
1012
1020
|
wrapper: "HvGlobalActions-wrapper";
|
|
1013
1021
|
sectionName: "HvGlobalActions-sectionName";
|
|
1014
1022
|
backButton: "HvGlobalActions-backButton";
|
|
1015
|
-
actions: "HvGlobalActions-actions";
|
|
1016
|
-
positionSticky: "HvGlobalActions-positionSticky";
|
|
1017
1023
|
positionFixed: "HvGlobalActions-positionFixed";
|
|
1024
|
+
positionSticky: "HvGlobalActions-positionSticky";
|
|
1025
|
+
actions: "HvGlobalActions-actions";
|
|
1018
1026
|
global: "HvGlobalActions-global";
|
|
1019
1027
|
globalSectionArea: "HvGlobalActions-globalSectionArea";
|
|
1020
1028
|
globalWrapperComplement: "HvGlobalActions-globalWrapperComplement";
|
|
@@ -1023,13 +1031,12 @@ export declare const globalActionsClasses: {
|
|
|
1023
1031
|
export declare const gridClasses: {
|
|
1024
1032
|
container: "HvGrid-container";
|
|
1025
1033
|
root: "HvGrid-root";
|
|
1026
|
-
item: "HvGrid-item";
|
|
1027
|
-
zeroMinWidth: "HvGrid-zeroMinWidth";
|
|
1028
1034
|
"direction-xs-column": "HvGrid-direction-xs-column";
|
|
1029
|
-
"direction-xs-reverse": "HvGrid-direction-xs-reverse";
|
|
1030
1035
|
"direction-xs-row-reverse": "HvGrid-direction-xs-row-reverse";
|
|
1031
1036
|
"wrap-xs-nowrap": "HvGrid-wrap-xs-nowrap";
|
|
1032
1037
|
"wrap-xs-wrap-reverse": "HvGrid-wrap-xs-wrap-reverse";
|
|
1038
|
+
item: "HvGrid-item";
|
|
1039
|
+
zeroMinWidth: "HvGrid-zeroMinWidth";
|
|
1033
1040
|
"spacing-xs-1": "HvGrid-spacing-xs-1";
|
|
1034
1041
|
"spacing-xs-2": "HvGrid-spacing-xs-2";
|
|
1035
1042
|
"spacing-xs-3": "HvGrid-spacing-xs-3";
|
|
@@ -1054,6 +1061,7 @@ export declare const gridClasses: {
|
|
|
1054
1061
|
"grid-xs-10": "HvGrid-grid-xs-10";
|
|
1055
1062
|
"grid-xs-11": "HvGrid-grid-xs-11";
|
|
1056
1063
|
"grid-xs-12": "HvGrid-grid-xs-12";
|
|
1064
|
+
"direction-xs-reverse": "HvGrid-direction-xs-reverse";
|
|
1057
1065
|
};
|
|
1058
1066
|
|
|
1059
1067
|
export declare const headerActionsClasses: {
|
|
@@ -1070,6 +1078,7 @@ export declare const headerClasses: {
|
|
|
1070
1078
|
backgroundColor: "HvHeader-backgroundColor";
|
|
1071
1079
|
header: "HvHeader-header";
|
|
1072
1080
|
root: "HvHeader-root";
|
|
1081
|
+
fixed: "HvHeader-fixed";
|
|
1073
1082
|
};
|
|
1074
1083
|
|
|
1075
1084
|
export declare const headerNavigationClasses: {
|
|
@@ -1096,7 +1105,7 @@ export declare type HvAccentColors = Record<HvAccentColorKeys, string>;
|
|
|
1096
1105
|
/**
|
|
1097
1106
|
* A accordion is a design element that expands in place to expose hidden information.
|
|
1098
1107
|
*/
|
|
1099
|
-
export declare const HvAccordion: (props: HvAccordionProps) =>
|
|
1108
|
+
export declare const HvAccordion: (props: HvAccordionProps) => JSX_3.Element;
|
|
1100
1109
|
|
|
1101
1110
|
export declare type HvAccordionClasses = ExtractNames<typeof useClasses_19>;
|
|
1102
1111
|
|
|
@@ -1125,7 +1134,7 @@ export declare interface HvAccordionProps extends HvBaseProps<HTMLDivElement, "o
|
|
|
1125
1134
|
disableEventHandling?: boolean;
|
|
1126
1135
|
}
|
|
1127
1136
|
|
|
1128
|
-
export declare const HvActionBar: (props: HvActionBarProps) =>
|
|
1137
|
+
export declare const HvActionBar: (props: HvActionBarProps) => JSX_3.Element;
|
|
1129
1138
|
|
|
1130
1139
|
export declare type HvActionBarClasses = ExtractNames<typeof useClasses_20>;
|
|
1131
1140
|
|
|
@@ -1166,7 +1175,7 @@ export declare interface HvActionGeneric {
|
|
|
1166
1175
|
iconOnly?: boolean;
|
|
1167
1176
|
}
|
|
1168
1177
|
|
|
1169
|
-
export declare const HvActionsGeneric: (props: HvActionsGenericProps) =>
|
|
1178
|
+
export declare const HvActionsGeneric: (props: HvActionsGenericProps) => JSX_3.Element | null;
|
|
1170
1179
|
|
|
1171
1180
|
export declare type HvActionsGenericClasses = ExtractNames<typeof useClasses_21>;
|
|
1172
1181
|
|
|
@@ -1229,9 +1238,9 @@ export declare interface HvAdornmentProps extends HvBaseProps<HTMLDivElement | H
|
|
|
1229
1238
|
classes?: HvAdornmentClasses;
|
|
1230
1239
|
}
|
|
1231
1240
|
|
|
1232
|
-
export declare const HvAppSwitcher: (props: HvAppSwitcherProps) =>
|
|
1241
|
+
export declare const HvAppSwitcher: (props: HvAppSwitcherProps) => JSX_3.Element;
|
|
1233
1242
|
|
|
1234
|
-
export declare const HvAppSwitcherAction: ({ id, className, classes: classesProp, application, onClickCallback, isSelectedCallback, }: HvAppSwitcherActionProps) =>
|
|
1243
|
+
export declare const HvAppSwitcherAction: ({ id, className, classes: classesProp, application, onClickCallback, isSelectedCallback, }: HvAppSwitcherActionProps) => JSX_3.Element;
|
|
1235
1244
|
|
|
1236
1245
|
export declare interface HvAppSwitcherActionApplication {
|
|
1237
1246
|
/** Id of the application. */
|
|
@@ -1386,7 +1395,7 @@ export declare type HvAvatarVariant = "circular" | "square";
|
|
|
1386
1395
|
/**
|
|
1387
1396
|
* The badge is a component used to notify the user that something has occurred, in the app context.
|
|
1388
1397
|
*/
|
|
1389
|
-
export declare const HvBadge: (props: HvBadgeProps) =>
|
|
1398
|
+
export declare const HvBadge: (props: HvBadgeProps) => JSX_3.Element;
|
|
1390
1399
|
|
|
1391
1400
|
export declare type HvBadgeClasses = ExtractNames<typeof useClasses_27>;
|
|
1392
1401
|
|
|
@@ -1425,7 +1434,7 @@ export declare interface HvBadgeProps extends HvBaseProps {
|
|
|
1425
1434
|
* A Banner displays an important and succinct message. It can also provide actions for the user to address, or dismiss.
|
|
1426
1435
|
* 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
1436
|
*/
|
|
1428
|
-
export declare const HvBanner: (props: HvBannerProps) =>
|
|
1437
|
+
export declare const HvBanner: (props: HvBannerProps) => JSX_3.Element;
|
|
1429
1438
|
|
|
1430
1439
|
export declare type HvBannerActionPosition = "auto" | "inline" | "bottom-right";
|
|
1431
1440
|
|
|
@@ -1691,7 +1700,7 @@ export declare interface HvBaseDropdownProps extends HvBaseProps<HTMLDivElement,
|
|
|
1691
1700
|
* An Input component that only posses the most basic functionalities.
|
|
1692
1701
|
* It should be used alongside the other form elements to construct a proper accessible form.
|
|
1693
1702
|
*/
|
|
1694
|
-
export declare const HvBaseInput: (props: HvBaseInputProps) =>
|
|
1703
|
+
export declare const HvBaseInput: (props: HvBaseInputProps) => JSX_3.Element;
|
|
1695
1704
|
|
|
1696
1705
|
export declare type HvBaseInputClasses = ExtractNames<typeof useClasses_17>;
|
|
1697
1706
|
|
|
@@ -1894,16 +1903,16 @@ export { HvBaseTheme }
|
|
|
1894
1903
|
* It can be used to add styles to the wrapped components.
|
|
1895
1904
|
* It can also be used to create a layout using the flexbox properties.
|
|
1896
1905
|
*/
|
|
1897
|
-
export declare const HvBox: <C extends
|
|
1898
|
-
style?:
|
|
1899
|
-
sx?:
|
|
1906
|
+
export declare const HvBox: <C extends ElementType<any, keyof JSX_2.IntrinsicElements> = "div">(props: {
|
|
1907
|
+
style?: CSSProperties | undefined;
|
|
1908
|
+
sx?: CSSProperties | ((theme: HvTheme_2) => React.CSSProperties) | undefined;
|
|
1900
1909
|
} & {
|
|
1901
1910
|
component?: C | undefined;
|
|
1902
1911
|
} & {
|
|
1903
|
-
children?: ReactNode
|
|
1912
|
+
children?: ReactNode;
|
|
1904
1913
|
} & (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
1914
|
ref?: PolymorphicRef<C> | undefined;
|
|
1906
|
-
} & RefAttributes<unknown>) =>
|
|
1915
|
+
} & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
1907
1916
|
|
|
1908
1917
|
export declare type HvBoxProps<C extends React.ElementType = "div"> = PolymorphicComponentRef<C, {
|
|
1909
1918
|
style?: React.CSSProperties;
|
|
@@ -1913,7 +1922,7 @@ export declare type HvBoxProps<C extends React.ElementType = "div"> = Polymorphi
|
|
|
1913
1922
|
/**
|
|
1914
1923
|
* A breadcrumb is a graphical control element frequently used as a navigational aid.
|
|
1915
1924
|
*/
|
|
1916
|
-
export declare const HvBreadCrumb: (props: HvBreadCrumbProps) =>
|
|
1925
|
+
export declare const HvBreadCrumb: (props: HvBreadCrumbProps) => JSX_3.Element;
|
|
1917
1926
|
|
|
1918
1927
|
export declare type HvBreadCrumbClasses = ExtractNames<typeof useClasses_34>;
|
|
1919
1928
|
|
|
@@ -1945,7 +1954,7 @@ export { HvBreakpoints }
|
|
|
1945
1954
|
* Bulk Actions allow users to perform an action on a single or multiple items.
|
|
1946
1955
|
* Also known as "batch production" of multiple items at once, one stage at a time.
|
|
1947
1956
|
*/
|
|
1948
|
-
export declare const HvBulkActions: (props: HvBulkActionsProps) =>
|
|
1957
|
+
export declare const HvBulkActions: (props: HvBulkActionsProps) => JSX_3.Element;
|
|
1949
1958
|
|
|
1950
1959
|
export declare type HvBulkActionsClasses = ExtractNames<typeof useClasses_35>;
|
|
1951
1960
|
|
|
@@ -1993,42 +2002,58 @@ export declare interface HvBulkActionsProps extends HvBaseProps {
|
|
|
1993
2002
|
/**
|
|
1994
2003
|
* Button component is used to trigger an action or event.
|
|
1995
2004
|
*/
|
|
1996
|
-
export declare const HvButton: <C extends
|
|
2005
|
+
export declare const HvButton: <C extends ElementType<any, keyof JSX_2.IntrinsicElements> = "button">(props: {
|
|
1997
2006
|
/** Use the variant prop to change the visual style of the button. */
|
|
1998
|
-
variant?:
|
|
2007
|
+
variant?: "positive" | "warning" | "negative" | "secondary" | "primary" | "semantic" | "secondarySubtle" | "ghost" | "secondaryGhost" | "primaryGhost" | "primarySubtle" | "positiveSubtle" | "positiveGhost" | "negativeSubtle" | "negativeGhost" | "warningSubtle" | "warningGhost" | undefined;
|
|
1999
2008
|
/** Whether the button is an icon-only button. */
|
|
2000
|
-
icon?: boolean;
|
|
2009
|
+
icon?: boolean | undefined;
|
|
2001
2010
|
/** Whether the button is disabled or not. */
|
|
2002
|
-
disabled?: boolean;
|
|
2011
|
+
disabled?: boolean | undefined;
|
|
2003
2012
|
/** Class names to be applied. */
|
|
2004
|
-
className?: string;
|
|
2013
|
+
className?: string | undefined;
|
|
2005
2014
|
/** Element placed before the children. */
|
|
2006
2015
|
startIcon?: React.ReactNode;
|
|
2007
2016
|
/** Element placed after the children. */
|
|
2008
2017
|
endIcon?: React.ReactNode;
|
|
2009
2018
|
/** Button size. */
|
|
2010
|
-
size?:
|
|
2019
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2011
2020
|
/** Button border radius. */
|
|
2012
|
-
radius?:
|
|
2021
|
+
radius?: "base" | "none" | "round" | "circle" | "full" | undefined;
|
|
2013
2022
|
/** Defines the default colors of the button are forced into the icon. */
|
|
2014
|
-
overrideIconColors?: boolean;
|
|
2023
|
+
overrideIconColors?: boolean | undefined;
|
|
2015
2024
|
/** A Jss Object used to override or extend the styles applied. */
|
|
2016
|
-
classes?:
|
|
2025
|
+
classes?: Partial<{
|
|
2026
|
+
secondary: string;
|
|
2027
|
+
primary: string;
|
|
2028
|
+
root: string;
|
|
2029
|
+
disabled: string;
|
|
2030
|
+
semantic: string;
|
|
2031
|
+
icon: string;
|
|
2032
|
+
secondarySubtle: string;
|
|
2033
|
+
ghost: string;
|
|
2034
|
+
secondaryGhost: string;
|
|
2035
|
+
primaryGhost: string;
|
|
2036
|
+
subtle: string;
|
|
2037
|
+
focusVisible: string;
|
|
2038
|
+
startIcon: string;
|
|
2039
|
+
endIcon: string;
|
|
2040
|
+
primarySubtle: string;
|
|
2041
|
+
}> | undefined;
|
|
2017
2042
|
/** Whether the button is selected or not. */
|
|
2018
|
-
selected?: boolean;
|
|
2043
|
+
selected?: boolean | undefined;
|
|
2019
2044
|
/**
|
|
2020
2045
|
* Whether the button is focusable when disabled.
|
|
2021
2046
|
* Without this property, the accessibility of the button decreases when disabled since it's not read by screen readers.
|
|
2022
2047
|
* Set this property to `true` when you need the button to still be focusable when disabled for accessibility purposes.
|
|
2023
2048
|
*/
|
|
2024
|
-
focusableWhenDisabled?: boolean;
|
|
2049
|
+
focusableWhenDisabled?: boolean | undefined;
|
|
2025
2050
|
} & {
|
|
2026
2051
|
component?: C | undefined;
|
|
2027
2052
|
} & {
|
|
2028
|
-
children?: ReactNode
|
|
2053
|
+
children?: ReactNode;
|
|
2029
2054
|
} & (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
2055
|
ref?: PolymorphicRef<C> | undefined;
|
|
2031
|
-
} & RefAttributes<unknown>) =>
|
|
2056
|
+
} & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
2032
2057
|
|
|
2033
2058
|
export declare type HvButtonClasses = ExtractNames<typeof useClasses_12>;
|
|
2034
2059
|
|
|
@@ -2069,12 +2094,12 @@ export declare type HvButtonSize = (typeof buttonSize)[number];
|
|
|
2069
2094
|
|
|
2070
2095
|
export declare type HvButtonVariant = (typeof buttonVariant)[number];
|
|
2071
2096
|
|
|
2072
|
-
export declare const HvCalendar: (props: HvCalendarProps) =>
|
|
2097
|
+
export declare const HvCalendar: (props: HvCalendarProps) => JSX_3.Element;
|
|
2073
2098
|
|
|
2074
2099
|
export declare type HvCalendarClasses = ExtractNames<typeof useClasses_37>;
|
|
2075
2100
|
|
|
2076
2101
|
export declare const HvCalendarHeader: {
|
|
2077
|
-
(props: HvCalendarHeaderProps):
|
|
2102
|
+
(props: HvCalendarHeaderProps): JSX_3.Element;
|
|
2078
2103
|
formElementType: string;
|
|
2079
2104
|
};
|
|
2080
2105
|
|
|
@@ -2196,11 +2221,11 @@ export declare interface HvCalendarProps {
|
|
|
2196
2221
|
* linked short representation of a conceptual unit. For that reason,
|
|
2197
2222
|
* this pattern must be used as an entry-point for further information.
|
|
2198
2223
|
*/
|
|
2199
|
-
export declare const HvCard: (props: HvCardProps) =>
|
|
2224
|
+
export declare const HvCard: (props: HvCardProps) => JSX_3.Element;
|
|
2200
2225
|
|
|
2201
2226
|
export declare type HvCardClasses = ExtractNames<typeof useClasses_39>;
|
|
2202
2227
|
|
|
2203
|
-
export declare const HvCardContent: (
|
|
2228
|
+
export declare const HvCardContent: (props: HvCardContentProps) => JSX_3.Element;
|
|
2204
2229
|
|
|
2205
2230
|
export declare type HvCardContentClasses = ExtractNames<typeof useClasses_41>;
|
|
2206
2231
|
|
|
@@ -2211,7 +2236,7 @@ export declare interface HvCardContentProps extends Omit<CardContentProps, "clas
|
|
|
2211
2236
|
classes?: HvCardContentClasses;
|
|
2212
2237
|
}
|
|
2213
2238
|
|
|
2214
|
-
export declare const HvCardHeader: (props: HvCardHeaderProps) =>
|
|
2239
|
+
export declare const HvCardHeader: (props: HvCardHeaderProps) => JSX_3.Element;
|
|
2215
2240
|
|
|
2216
2241
|
export declare type HvCardHeaderClasses = ExtractNames<typeof useClasses_40>;
|
|
2217
2242
|
|
|
@@ -2228,7 +2253,7 @@ export declare interface HvCardHeaderProps extends Omit<CardHeaderProps, "classe
|
|
|
2228
2253
|
classes?: HvCardHeaderClasses;
|
|
2229
2254
|
}
|
|
2230
2255
|
|
|
2231
|
-
export declare const HvCardMedia: ({ classes: classesProp, className, children, ...others }: HvCardMediaProps) =>
|
|
2256
|
+
export declare const HvCardMedia: ({ classes: classesProp, className, children, ...others }: HvCardMediaProps) => JSX_3.Element;
|
|
2232
2257
|
|
|
2233
2258
|
export declare type HvCardMediaClasses = ExtractNames<typeof useClasses_42>;
|
|
2234
2259
|
|
|
@@ -2267,11 +2292,11 @@ export declare interface HvCardProps extends HvBaseProps {
|
|
|
2267
2292
|
* 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
2293
|
* It allows you to focus on a particular content while having a notion of how many you have to explore.
|
|
2269
2294
|
*/
|
|
2270
|
-
export declare const HvCarousel: (props: HvCarouselProps) =>
|
|
2295
|
+
export declare const HvCarousel: (props: HvCarouselProps) => JSX_3.Element;
|
|
2271
2296
|
|
|
2272
2297
|
export declare type HvCarouselClasses = ExtractNames<typeof useClasses_43>;
|
|
2273
2298
|
|
|
2274
|
-
export declare const HvCarouselControls: (props: HvCarouselControlsProps) =>
|
|
2299
|
+
export declare const HvCarouselControls: (props: HvCarouselControlsProps) => JSX_3.Element;
|
|
2275
2300
|
|
|
2276
2301
|
declare interface HvCarouselControlsProps extends HvBaseProps<HTMLDivElement>, Pick<HvPaginationProps, "page" | "pages" | "canPrevious" | "canNext"> {
|
|
2277
2302
|
showDots?: boolean;
|
|
@@ -2328,7 +2353,7 @@ export declare interface HvCarouselProps extends HvBaseProps<HTMLDivElement, "ti
|
|
|
2328
2353
|
* A container to use as `children` of `HvCarousel`.
|
|
2329
2354
|
* Pass `img` props directly to it, or `children` for any custom content
|
|
2330
2355
|
*/
|
|
2331
|
-
export declare const HvCarouselSlide: ({ classes: classesProp, className, children, size: flexBasis, src, alt, ...props }: HvCarouselSlideProps) =>
|
|
2356
|
+
export declare const HvCarouselSlide: ({ classes: classesProp, className, children, size: flexBasis, src, alt, ...props }: HvCarouselSlideProps) => JSX_3.Element;
|
|
2332
2357
|
|
|
2333
2358
|
export declare type HvCarouselSlideClasses = ExtractNames<typeof useClasses_44>;
|
|
2334
2359
|
|
|
@@ -2379,7 +2404,7 @@ export declare interface HvCellProps<D extends object = Record<string, unknown>,
|
|
|
2379
2404
|
* Use the character counter when there is a character or word limit.
|
|
2380
2405
|
* By itself it doesn't block the user from going above the limit.
|
|
2381
2406
|
*/
|
|
2382
|
-
export declare const HvCharCounter: (props: HvCharCounterProps) =>
|
|
2407
|
+
export declare const HvCharCounter: (props: HvCharCounterProps) => JSX_3.Element;
|
|
2383
2408
|
|
|
2384
2409
|
export declare type HvCharCounterClasses = ExtractNames<typeof useClasses_5>;
|
|
2385
2410
|
|
|
@@ -2692,7 +2717,7 @@ export declare interface HvContainerProps extends Omit<ContainerProps, "classes"
|
|
|
2692
2717
|
classes?: HvContainerClasses;
|
|
2693
2718
|
}
|
|
2694
2719
|
|
|
2695
|
-
export declare const HvControls: (props: HvControlsProps) =>
|
|
2720
|
+
export declare const HvControls: (props: HvControlsProps) => JSX_3.Element;
|
|
2696
2721
|
|
|
2697
2722
|
export declare type HvControlsClasses = ExtractNames<typeof useClasses_50>;
|
|
2698
2723
|
|
|
@@ -2863,11 +2888,11 @@ export declare interface HvDatePickerProps extends Omit<HvFormElementProps, "onC
|
|
|
2863
2888
|
/** @deprecated use `HvFormStatus` instead */
|
|
2864
2889
|
export declare type HvDatePickerStatus = HvFormStatus;
|
|
2865
2890
|
|
|
2866
|
-
export declare const HvDialog: (props: HvDialogProps) =>
|
|
2891
|
+
export declare const HvDialog: (props: HvDialogProps) => JSX_3.Element;
|
|
2867
2892
|
|
|
2868
2893
|
export declare type HvDialogActionClasses = ExtractNames<typeof useClasses_62>;
|
|
2869
2894
|
|
|
2870
|
-
export declare const HvDialogActions: (props: HvDialogActionsProps) =>
|
|
2895
|
+
export declare const HvDialogActions: (props: HvDialogActionsProps) => JSX_3.Element;
|
|
2871
2896
|
|
|
2872
2897
|
export declare interface HvDialogActionsProps extends Omit<DialogActionsProps, "classes"> {
|
|
2873
2898
|
/** Set the dialog to fullscreen mode. @deprecated set `fullscreen` in `HvDialog` */
|
|
@@ -2878,7 +2903,7 @@ export declare interface HvDialogActionsProps extends Omit<DialogActionsProps, "
|
|
|
2878
2903
|
|
|
2879
2904
|
export declare type HvDialogClasses = ExtractNames<typeof useClasses_63>;
|
|
2880
2905
|
|
|
2881
|
-
export declare const HvDialogContent: (props: HvDialogContentProps) =>
|
|
2906
|
+
export declare const HvDialogContent: (props: HvDialogContentProps) => JSX_3.Element;
|
|
2882
2907
|
|
|
2883
2908
|
export declare type HvDialogContentClasses = ExtractNames<typeof useClasses_61>;
|
|
2884
2909
|
|
|
@@ -2920,7 +2945,7 @@ export declare interface HvDialogProps extends Omit<DialogProps, "fullScreen" |
|
|
|
2920
2945
|
component?: DialogProps["component"];
|
|
2921
2946
|
}
|
|
2922
2947
|
|
|
2923
|
-
export declare const HvDialogTitle: (props: HvDialogTitleProps) =>
|
|
2948
|
+
export declare const HvDialogTitle: (props: HvDialogTitleProps) => JSX_3.Element;
|
|
2924
2949
|
|
|
2925
2950
|
export declare type HvDialogTitleClasses = ExtractNames<typeof useClasses_60>;
|
|
2926
2951
|
|
|
@@ -2941,7 +2966,7 @@ export declare type HvDialogTitleVariant = "success" | "warning" | "error" | "in
|
|
|
2941
2966
|
* 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
2967
|
* This component uses Radio Buttons to represent each page.
|
|
2943
2968
|
*/
|
|
2944
|
-
export declare const HvDotPagination: (props: HvDotPaginationProps) =>
|
|
2969
|
+
export declare const HvDotPagination: (props: HvDotPaginationProps) => JSX_3.Element;
|
|
2945
2970
|
|
|
2946
2971
|
export declare type HvDotPaginationClasses = ExtractNames<typeof useClasses_64>;
|
|
2947
2972
|
|
|
@@ -2985,7 +3010,7 @@ export declare interface HvDotPaginationProps extends Omit<HvRadioGroupProps, "c
|
|
|
2985
3010
|
* It only provides the pane with a close button, the rest of the
|
|
2986
3011
|
* content can be customized.
|
|
2987
3012
|
*/
|
|
2988
|
-
export declare const HvDrawer: (props: HvDrawerProps) =>
|
|
3013
|
+
export declare const HvDrawer: (props: HvDrawerProps) => JSX_3.Element;
|
|
2989
3014
|
|
|
2990
3015
|
export declare type HvDrawerClasses = ExtractNames<typeof useClasses_66>;
|
|
2991
3016
|
|
|
@@ -3141,7 +3166,7 @@ declare interface HvDropdownListProps {
|
|
|
3141
3166
|
/**
|
|
3142
3167
|
* 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
3168
|
*/
|
|
3144
|
-
export declare const HvDropDownMenu: (props: HvDropDownMenuProps) =>
|
|
3169
|
+
export declare const HvDropDownMenu: (props: HvDropDownMenuProps) => JSX_3.Element;
|
|
3145
3170
|
|
|
3146
3171
|
export declare type HvDropDownMenuClasses = ExtractNames<typeof useClasses_22>;
|
|
3147
3172
|
|
|
@@ -3342,7 +3367,7 @@ declare interface HvDropZoneLabels {
|
|
|
3342
3367
|
/**
|
|
3343
3368
|
* Empty states communicate that there’s no information, data or values to display in a given context.
|
|
3344
3369
|
*/
|
|
3345
|
-
export declare const HvEmptyState: (props: HvEmptyStateProps) =>
|
|
3370
|
+
export declare const HvEmptyState: (props: HvEmptyStateProps) => JSX_3.Element;
|
|
3346
3371
|
|
|
3347
3372
|
export declare type HvEmptyStateClasses = ExtractNames<typeof useClasses_67>;
|
|
3348
3373
|
|
|
@@ -3370,7 +3395,7 @@ export { HvExtraDeepProps }
|
|
|
3370
3395
|
|
|
3371
3396
|
export { HvExtraProps }
|
|
3372
3397
|
|
|
3373
|
-
export declare const HvFile: (props: HvFileProps) =>
|
|
3398
|
+
export declare const HvFile: (props: HvFileProps) => JSX_3.Element;
|
|
3374
3399
|
|
|
3375
3400
|
export declare type HvFileClasses = ExtractNames<typeof useClasses_69>;
|
|
3376
3401
|
|
|
@@ -3438,7 +3463,7 @@ export declare type HvFilesAddedEvent = (files: HvFileData[]) => void;
|
|
|
3438
3463
|
*
|
|
3439
3464
|
* 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
3465
|
*/
|
|
3441
|
-
export declare const HvFileUploader: (props: HvFileUploaderProps) =>
|
|
3466
|
+
export declare const HvFileUploader: (props: HvFileUploaderProps) => JSX_3.Element;
|
|
3442
3467
|
|
|
3443
3468
|
export declare interface HvFileUploaderLabels extends HvDropZoneLabels {
|
|
3444
3469
|
/**
|
|
@@ -3451,7 +3476,7 @@ export declare interface HvFileUploaderLabels extends HvDropZoneLabels {
|
|
|
3451
3476
|
* The `HvFileUploaderPreview` component is available to facilitate the styling
|
|
3452
3477
|
* of the button (when clickable) and the detection of image unloading.
|
|
3453
3478
|
*/
|
|
3454
|
-
export declare const HvFileUploaderPreview: (props: HvFileUploaderPreviewProps) =>
|
|
3479
|
+
export declare const HvFileUploaderPreview: (props: HvFileUploaderPreviewProps) => JSX_3.Element;
|
|
3455
3480
|
|
|
3456
3481
|
export declare type HvFileUploaderPreviewClasses = ExtractNames<typeof useClasses_68>;
|
|
3457
3482
|
|
|
@@ -3622,7 +3647,7 @@ export declare interface HvFilterGroupProps extends Omit<HvFormElementProps, "cl
|
|
|
3622
3647
|
|
|
3623
3648
|
export declare type HvFilterGroupValue = (string | number)[][];
|
|
3624
3649
|
|
|
3625
|
-
export declare const HvFocus: ({ classes: classesProp, children, configuration, disabledClass, selected, disabled, rootRef, focusOnClick, focusDisabled, strategy, useFalseFocus, filterClass, navigationJump, }: HvFocusProps) =>
|
|
3650
|
+
export declare const HvFocus: ({ classes: classesProp, children, configuration, disabledClass, selected, disabled, rootRef, focusOnClick, focusDisabled, strategy, useFalseFocus, filterClass, navigationJump, }: HvFocusProps) => JSX_3.Element;
|
|
3626
3651
|
|
|
3627
3652
|
export declare type HvFocusClasses = ExtractNames<typeof useClasses_2>;
|
|
3628
3653
|
|
|
@@ -3661,7 +3686,7 @@ export declare type HvFocusStrategies = "listbox" | "menu" | "card" | "grid";
|
|
|
3661
3686
|
/**
|
|
3662
3687
|
* A Footer is a way of providing extra information at the end of a page.
|
|
3663
3688
|
*/
|
|
3664
|
-
export declare const HvFooter: (props: HvFooterProps) =>
|
|
3689
|
+
export declare const HvFooter: (props: HvFooterProps) => JSX_3.Element;
|
|
3665
3690
|
|
|
3666
3691
|
export declare type HvFooterClasses = ExtractNames<typeof useClasses_72>;
|
|
3667
3692
|
|
|
@@ -3685,7 +3710,7 @@ declare type HvFooterProps_2<D extends object = Record<string, unknown>> = HvTab
|
|
|
3685
3710
|
};
|
|
3686
3711
|
|
|
3687
3712
|
export declare const HvFormElement: {
|
|
3688
|
-
(props: HvFormElementProps):
|
|
3713
|
+
(props: HvFormElementProps): JSX_3.Element;
|
|
3689
3714
|
formElementType: string;
|
|
3690
3715
|
};
|
|
3691
3716
|
|
|
@@ -3775,7 +3800,7 @@ export declare type HvFormStatus = "standBy" | "valid" | "invalid" | "empty";
|
|
|
3775
3800
|
* Global Actions are actions that affect the entire page they live in.
|
|
3776
3801
|
* They should persist while scrolling down the screen.
|
|
3777
3802
|
*/
|
|
3778
|
-
export declare const HvGlobalActions: (props: HvGlobalActionsProps) =>
|
|
3803
|
+
export declare const HvGlobalActions: (props: HvGlobalActionsProps) => JSX_3.Element;
|
|
3779
3804
|
|
|
3780
3805
|
export declare type HvGlobalActionsClasses = ExtractNames<typeof useClasses_73>;
|
|
3781
3806
|
|
|
@@ -3925,9 +3950,9 @@ export declare type HvGridSpacing = "xs" | "sm" | "md" | "lg" | "xl" | "auto" |
|
|
|
3925
3950
|
/**
|
|
3926
3951
|
* Header component is used to render a header bar with logo and brand name, navigation and actions.
|
|
3927
3952
|
*/
|
|
3928
|
-
export declare const HvHeader: (props: HvHeaderProps) =>
|
|
3953
|
+
export declare const HvHeader: (props: HvHeaderProps) => JSX_3.Element;
|
|
3929
3954
|
|
|
3930
|
-
export declare const HvHeaderActions: (props: HvHeaderActionsProps) =>
|
|
3955
|
+
export declare const HvHeaderActions: (props: HvHeaderActionsProps) => JSX_3.Element;
|
|
3931
3956
|
|
|
3932
3957
|
export declare type HvHeaderActionsClasses = ExtractNames<typeof useClasses_76>;
|
|
3933
3958
|
|
|
@@ -3938,7 +3963,7 @@ export declare interface HvHeaderActionsProps extends HvBaseProps {
|
|
|
3938
3963
|
/**
|
|
3939
3964
|
* Header component is used to render a header bar with logo and brand name, navigation and actions.
|
|
3940
3965
|
*/
|
|
3941
|
-
export declare const HvHeaderBrand: (props: HvHeaderBrandProps) =>
|
|
3966
|
+
export declare const HvHeaderBrand: (props: HvHeaderBrandProps) => JSX_3.Element;
|
|
3942
3967
|
|
|
3943
3968
|
export declare type HvHeaderBrandClasses = ExtractNames<typeof useClasses_77>;
|
|
3944
3969
|
|
|
@@ -3954,7 +3979,7 @@ declare interface HvHeaderGroup<D extends object = Record<string, unknown>, H ex
|
|
|
3954
3979
|
headers: Array<HvHeaderGroup<D, H>>;
|
|
3955
3980
|
}
|
|
3956
3981
|
|
|
3957
|
-
export declare const HvHeaderMenuBar: (props: HvHeaderMenuBarProps) =>
|
|
3982
|
+
export declare const HvHeaderMenuBar: (props: HvHeaderMenuBarProps) => JSX_3.Element;
|
|
3958
3983
|
|
|
3959
3984
|
declare type HvHeaderMenuBarClasses = ExtractNames<typeof useClasses_78>;
|
|
3960
3985
|
|
|
@@ -3967,7 +3992,7 @@ declare interface HvHeaderMenuBarProps extends HvBaseProps<HTMLDivElement, "onCl
|
|
|
3967
3992
|
classes?: HvHeaderMenuBarClasses;
|
|
3968
3993
|
}
|
|
3969
3994
|
|
|
3970
|
-
export declare const HvHeaderMenuItem: (props: HvHeaderMenuItemProps) =>
|
|
3995
|
+
export declare const HvHeaderMenuItem: (props: HvHeaderMenuItemProps) => JSX_3.Element;
|
|
3971
3996
|
|
|
3972
3997
|
declare type HvHeaderMenuItemClasses = ExtractNames<typeof useClasses_79>;
|
|
3973
3998
|
|
|
@@ -3980,7 +4005,7 @@ declare interface HvHeaderMenuItemProps extends HvBaseProps<HTMLDivElement, "onC
|
|
|
3980
4005
|
classes?: HvHeaderMenuItemClasses;
|
|
3981
4006
|
}
|
|
3982
4007
|
|
|
3983
|
-
export declare const HvHeaderNavigation: (props: HvHeaderNavigationProps) =>
|
|
4008
|
+
export declare const HvHeaderNavigation: (props: HvHeaderNavigationProps) => JSX_3.Element;
|
|
3984
4009
|
|
|
3985
4010
|
export declare type HvHeaderNavigationClasses = ExtractNames<typeof useClasses_80>;
|
|
3986
4011
|
|
|
@@ -4048,7 +4073,7 @@ export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof useC
|
|
|
4048
4073
|
* As defined by Design System, a tooltip with the button’s label should always be displayed when hovering an icon only button.
|
|
4049
4074
|
* This component provides this behavior out of the box.
|
|
4050
4075
|
*/
|
|
4051
|
-
export declare const HvIconButton: <C extends
|
|
4076
|
+
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
4077
|
/** Label to be displayed in the tooltip when hovered. This label will be used as the button's `aria-label`. */
|
|
4053
4078
|
title: React.ReactNode;
|
|
4054
4079
|
/** Number of milliseconds to wait before showing the tooltip. @default 500 */
|
|
@@ -4056,14 +4081,14 @@ export declare const HvIconButton: <C extends React.ElementType = "button">(prop
|
|
|
4056
4081
|
/** Tooltip placement. @default top */
|
|
4057
4082
|
placement?: HvTooltipProps["placement"];
|
|
4058
4083
|
/** Extra tooltip properties. */
|
|
4059
|
-
tooltipProps?: Omit<Partial<HvTooltipProps>, "children"
|
|
4084
|
+
tooltipProps?: Omit<Partial<HvTooltipProps>, "children"> | undefined;
|
|
4060
4085
|
} & {
|
|
4061
4086
|
component?: C | undefined;
|
|
4062
4087
|
} & {
|
|
4063
|
-
children?: ReactNode
|
|
4064
|
-
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "disabled" | "title" | "selected" | "variant" | "size" | "component" | "className" | "radius" | "
|
|
4088
|
+
children?: ReactNode;
|
|
4089
|
+
} & (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
4090
|
ref?: PolymorphicRef<C> | undefined;
|
|
4066
|
-
} & RefAttributes<unknown>) =>
|
|
4091
|
+
} & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
4067
4092
|
|
|
4068
4093
|
export declare type HvIconButtonProps<C extends React.ElementType = "button"> = PolymorphicComponentRef<C, Omit<HvButtonProps<C>, "icon" | "focusableWhenDisabled" | "title" | "startIcon" | "endIcon" | "children" | "ref" | "component"> & {
|
|
4069
4094
|
/** Label to be displayed in the tooltip when hovered. This label will be used as the button's `aria-label`. */
|
|
@@ -4079,7 +4104,7 @@ export declare type HvIconButtonProps<C extends React.ElementType = "button"> =
|
|
|
4079
4104
|
/**
|
|
4080
4105
|
* Provides the user with additional descriptive text for the form element.
|
|
4081
4106
|
*/
|
|
4082
|
-
export declare const HvInfoMessage: (props: HvInfoMessageProps) =>
|
|
4107
|
+
export declare const HvInfoMessage: (props: HvInfoMessageProps) => JSX_3.Element;
|
|
4083
4108
|
|
|
4084
4109
|
export declare type HvInfoMessageClasses = ExtractNames<typeof useClasses_9>;
|
|
4085
4110
|
|
|
@@ -4096,36 +4121,47 @@ export declare interface HvInfoMessageProps extends HvTypographyProps<"label"> {
|
|
|
4096
4121
|
* An Inline Editor allows the user to edit a record without making a major switch
|
|
4097
4122
|
* between viewing and editing, making it an efficient method of updating a record.
|
|
4098
4123
|
*/
|
|
4099
|
-
export declare const HvInlineEditor: <C extends default_2.ElementType = default_2.ForwardRefExoticComponent<HvInputProps & default_2.RefAttributes<HTMLInputElement | HTMLTextAreaElement>>>(props: {
|
|
4124
|
+
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
4125
|
/** The value of the form element. */
|
|
4101
|
-
value?: string;
|
|
4126
|
+
value?: string | undefined;
|
|
4102
4127
|
/** The default value of the form element. */
|
|
4103
|
-
defaultValue?: string;
|
|
4128
|
+
defaultValue?: string | undefined;
|
|
4104
4129
|
/** Whether the Edit icon should always be visible */
|
|
4105
|
-
showIcon?: boolean;
|
|
4130
|
+
showIcon?: boolean | undefined;
|
|
4106
4131
|
/** Variant of the HvTypography to display */
|
|
4107
|
-
variant?:
|
|
4132
|
+
variant?: "display" | "title1" | "title2" | "title3" | "title4" | "label" | "body" | "captionLabel" | "caption1" | "caption2" | undefined;
|
|
4108
4133
|
/** Called when the input is blurred. */
|
|
4109
|
-
onBlur?: (event: default_2.FocusEvent<HTMLTextAreaElement | HTMLInputElement>, value: string) => void;
|
|
4134
|
+
onBlur?: ((event: default_2.FocusEvent<HTMLTextAreaElement | HTMLInputElement>, value: string) => void) | undefined;
|
|
4110
4135
|
/** Called when the input value changes. */
|
|
4111
|
-
onChange?: (event: default_2.SyntheticEvent, value: string) => void;
|
|
4136
|
+
onChange?: ((event: default_2.SyntheticEvent, value: string) => void) | undefined;
|
|
4112
4137
|
/** Props passed to the HvButton component */
|
|
4113
|
-
buttonProps?: HvButtonProps;
|
|
4138
|
+
buttonProps?: HvButtonProps | undefined;
|
|
4114
4139
|
/** Props passed to the HvTypography text component */
|
|
4115
|
-
typographyProps?: HvTypographyProps;
|
|
4140
|
+
typographyProps?: HvTypographyProps | undefined;
|
|
4116
4141
|
/** Whether the editor is disabled or not. */
|
|
4117
|
-
disabled?: boolean;
|
|
4142
|
+
disabled?: boolean | undefined;
|
|
4118
4143
|
/** A Jss Object used to override or extend the styles applied to the empty state component. */
|
|
4119
|
-
classes?:
|
|
4144
|
+
classes?: Partial<{
|
|
4145
|
+
root: string;
|
|
4146
|
+
inputBorderContainer: string;
|
|
4147
|
+
inputRoot: string;
|
|
4148
|
+
input: string;
|
|
4149
|
+
icon: string;
|
|
4150
|
+
button: string;
|
|
4151
|
+
text: string;
|
|
4152
|
+
largeText: string;
|
|
4153
|
+
textEmpty: string;
|
|
4154
|
+
iconVisible: string;
|
|
4155
|
+
}> | undefined;
|
|
4120
4156
|
/** The placeholder value of the input. */
|
|
4121
|
-
placeholder?: string;
|
|
4157
|
+
placeholder?: string | undefined;
|
|
4122
4158
|
} & {
|
|
4123
4159
|
component?: C | undefined;
|
|
4124
4160
|
} & {
|
|
4125
|
-
children?: default_2.ReactNode
|
|
4161
|
+
children?: default_2.ReactNode;
|
|
4126
4162
|
} & (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
4163
|
ref?: PolymorphicRef<C> | undefined;
|
|
4128
|
-
} & default_2.RefAttributes<unknown>) => default_2.ReactElement | null;
|
|
4164
|
+
} & default_2.RefAttributes<unknown>) => default_2.ReactElement<any, string | default_2.JSXElementConstructor<any>> | null;
|
|
4129
4165
|
|
|
4130
4166
|
export declare type HvInlineEditorClasses = ExtractNames<typeof useClasses_81>;
|
|
4131
4167
|
|
|
@@ -4305,7 +4341,7 @@ export declare interface HvKnobProperty {
|
|
|
4305
4341
|
* and its success/failure against a given target. KPIs are the first item read on a dashboard.
|
|
4306
4342
|
* Communicates simple, immediate and vital information for operational decision making.
|
|
4307
4343
|
*/
|
|
4308
|
-
export declare const HvKpi: (props: HvKpiProps) =>
|
|
4344
|
+
export declare const HvKpi: (props: HvKpiProps) => JSX_3.Element;
|
|
4309
4345
|
|
|
4310
4346
|
export declare type HvKpiClasses = ExtractNames<typeof useClasses_82>;
|
|
4311
4347
|
|
|
@@ -4345,7 +4381,7 @@ export declare interface HvKpiProps extends HvBaseProps<HTMLDivElement, "childre
|
|
|
4345
4381
|
/**
|
|
4346
4382
|
* Provides the user with a recognizable name for a given form element.
|
|
4347
4383
|
*/
|
|
4348
|
-
export declare const HvLabel: (props: HvLabelProps) =>
|
|
4384
|
+
export declare const HvLabel: (props: HvLabelProps) => JSX_3.Element;
|
|
4349
4385
|
|
|
4350
4386
|
export declare type HvLabelClasses = ExtractNames<typeof useClasses_8>;
|
|
4351
4387
|
|
|
@@ -4364,7 +4400,7 @@ export declare interface HvLabelProps extends HvTypographyProps<"label"> {
|
|
|
4364
4400
|
classes?: HvLabelClasses;
|
|
4365
4401
|
}
|
|
4366
4402
|
|
|
4367
|
-
export declare const HvLeftControl: ({ id, classes: classesProp, className, children, placeholder, onSearch, hideSearch, searchProps, ...others }: HvLeftControlProps) =>
|
|
4403
|
+
export declare const HvLeftControl: ({ id, classes: classesProp, className, children, placeholder, onSearch, hideSearch, searchProps, ...others }: HvLeftControlProps) => JSX_3.Element;
|
|
4368
4404
|
|
|
4369
4405
|
export declare type HvLeftControlClasses = ExtractNames<typeof useClasses_55>;
|
|
4370
4406
|
|
|
@@ -4381,7 +4417,7 @@ export declare interface HvLeftControlProps extends HvBaseProps {
|
|
|
4381
4417
|
classes?: HvLeftControlClasses;
|
|
4382
4418
|
}
|
|
4383
4419
|
|
|
4384
|
-
export declare const HvLink: (props: HvLinkProps) =>
|
|
4420
|
+
export declare const HvLink: (props: HvLinkProps) => JSX_3.Element;
|
|
4385
4421
|
|
|
4386
4422
|
export declare type HvLinkClasses = ExtractNames<typeof useClasses_83>;
|
|
4387
4423
|
|
|
@@ -4397,7 +4433,7 @@ export declare interface HvLinkProps extends HvBaseProps<HTMLAnchorElement, "onC
|
|
|
4397
4433
|
/**
|
|
4398
4434
|
* Component used to show a set of related data to the user.
|
|
4399
4435
|
*/
|
|
4400
|
-
export declare const HvList: (props: HvListProps) =>
|
|
4436
|
+
export declare const HvList: (props: HvListProps) => JSX_3.Element | null;
|
|
4401
4437
|
|
|
4402
4438
|
export declare type HvListClasses = ExtractNames<typeof useClasses_84>;
|
|
4403
4439
|
|
|
@@ -4550,7 +4586,7 @@ export declare interface HvListValue extends Record<string, any> {
|
|
|
4550
4586
|
/**
|
|
4551
4587
|
* Loading provides feedback about a process that is taking place in the application.
|
|
4552
4588
|
*/
|
|
4553
|
-
export declare const HvLoading: (props: HvLoadingProps) =>
|
|
4589
|
+
export declare const HvLoading: (props: HvLoadingProps) => JSX_3.Element;
|
|
4554
4590
|
|
|
4555
4591
|
export declare type HvLoadingClasses = ExtractNames<typeof useClasses_85>;
|
|
4556
4592
|
|
|
@@ -4563,7 +4599,7 @@ export declare type HvLoadingClasses = ExtractNames<typeof useClasses_85>;
|
|
|
4563
4599
|
* <MyComponent>
|
|
4564
4600
|
* </HvLoadingContainer>
|
|
4565
4601
|
* */
|
|
4566
|
-
export declare const HvLoadingContainer: (props: HvLoadingContainerProps) =>
|
|
4602
|
+
export declare const HvLoadingContainer: (props: HvLoadingContainerProps) => JSX_3.Element;
|
|
4567
4603
|
|
|
4568
4604
|
export declare type HvLoadingContainerClasses = ExtractNames<typeof useClasses_86>;
|
|
4569
4605
|
|
|
@@ -4588,7 +4624,7 @@ export declare interface HvLoadingProps extends HvBaseProps {
|
|
|
4588
4624
|
/**
|
|
4589
4625
|
* Container layout for the login form.
|
|
4590
4626
|
*/
|
|
4591
|
-
export declare const HvLogin: (props: HvLoginProps) =>
|
|
4627
|
+
export declare const HvLogin: (props: HvLoginProps) => JSX_3.Element;
|
|
4592
4628
|
|
|
4593
4629
|
export declare type HvLoginClasses = ExtractNames<typeof useClasses_87>;
|
|
4594
4630
|
|
|
@@ -4615,7 +4651,7 @@ declare interface HvMetaBase<D extends object = Record<string, unknown>, H exten
|
|
|
4615
4651
|
userProps: any;
|
|
4616
4652
|
}
|
|
4617
4653
|
|
|
4618
|
-
export declare const HvMultiButton: (props: HvMultiButtonProps) =>
|
|
4654
|
+
export declare const HvMultiButton: (props: HvMultiButtonProps) => JSX_3.Element;
|
|
4619
4655
|
|
|
4620
4656
|
export declare type HvMultiButtonClasses = ExtractNames<typeof useClasses_88>;
|
|
4621
4657
|
|
|
@@ -4653,7 +4689,7 @@ export declare function hvNumberColumn<D extends object = Record<string, unknown
|
|
|
4653
4689
|
|
|
4654
4690
|
export declare const hvNumberFallback: (value: any) => number | "—";
|
|
4655
4691
|
|
|
4656
|
-
export declare const HvOption: <OptionValue extends {}>(props: HvOptionProps<OptionValue> & RefAttributes<HTMLLIElement>) =>
|
|
4692
|
+
export declare const HvOption: <OptionValue extends {}>(props: HvOptionProps<OptionValue> & RefAttributes<HTMLLIElement>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
4657
4693
|
|
|
4658
4694
|
/**
|
|
4659
4695
|
* Optional
|
|
@@ -4690,7 +4726,7 @@ export declare interface HvOptionProps<OptionValue extends {}> extends Omit<HvLi
|
|
|
4690
4726
|
/**
|
|
4691
4727
|
* This component generates a tooltip whenever the text is overflowed.
|
|
4692
4728
|
*/
|
|
4693
|
-
export declare const HvOverflowTooltip: (props: HvOverflowTooltipProps) =>
|
|
4729
|
+
export declare const HvOverflowTooltip: (props: HvOverflowTooltipProps) => JSX_3.Element;
|
|
4694
4730
|
|
|
4695
4731
|
export declare type HvOverflowTooltipClasses = ExtractNames<typeof useClasses_89>;
|
|
4696
4732
|
|
|
@@ -4713,7 +4749,7 @@ export declare interface HvOverflowTooltipProps extends HvBaseProps {
|
|
|
4713
4749
|
* Pagination is the process of dividing a document into discrete pages. It relates to how users interact
|
|
4714
4750
|
* with structured content on a website or application.
|
|
4715
4751
|
*/
|
|
4716
|
-
export declare const HvPagination: (props: HvPaginationProps) =>
|
|
4752
|
+
export declare const HvPagination: (props: HvPaginationProps) => JSX_3.Element;
|
|
4717
4753
|
|
|
4718
4754
|
export declare type HvPaginationClasses = ExtractNames<typeof useClasses_46>;
|
|
4719
4755
|
|
|
@@ -4770,7 +4806,7 @@ export declare interface HvPanelProps extends HvBaseProps {
|
|
|
4770
4806
|
|
|
4771
4807
|
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
4808
|
|
|
4773
|
-
export declare const HvProgressBar: (props: HvProgressBarProps) =>
|
|
4809
|
+
export declare const HvProgressBar: (props: HvProgressBarProps) => JSX_3.Element;
|
|
4774
4810
|
|
|
4775
4811
|
export declare type HvProgressBarClasses = ExtractNames<typeof useClasses_92>;
|
|
4776
4812
|
|
|
@@ -4819,7 +4855,7 @@ export declare type HvPropGetter<D extends object = Record<string, unknown>, H e
|
|
|
4819
4855
|
/**
|
|
4820
4856
|
* Enables theming capabilities and makes cross-component theme properties available down the tree.
|
|
4821
4857
|
*/
|
|
4822
|
-
export declare const HvProvider: ({ children, rootElementId, cssBaseline, cssTheme, themes, theme, colorMode, emotionCache: emotionCacheProp, classNameKey, }: HvProviderProps) =>
|
|
4858
|
+
export declare const HvProvider: ({ children, rootElementId, cssBaseline, cssTheme, themes, theme, colorMode, emotionCache: emotionCacheProp, classNameKey, }: HvProviderProps) => JSX_3.Element;
|
|
4823
4859
|
|
|
4824
4860
|
export declare interface HvProviderProps {
|
|
4825
4861
|
/**
|
|
@@ -4886,7 +4922,7 @@ export declare interface HvProviderProps {
|
|
|
4886
4922
|
*
|
|
4887
4923
|
* 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
4924
|
*/
|
|
4889
|
-
export declare const HvQueryBuilder: (props: HvQueryBuilderProps) =>
|
|
4925
|
+
export declare const HvQueryBuilder: (props: HvQueryBuilderProps) => JSX_3.Element;
|
|
4890
4926
|
|
|
4891
4927
|
export declare interface HvQueryBuilderAttribute extends Record<string, unknown> {
|
|
4892
4928
|
id?: string;
|
|
@@ -5331,7 +5367,7 @@ export declare interface HvRadioProps extends Omit<RadioProps, "onChange" | "cla
|
|
|
5331
5367
|
|
|
5332
5368
|
export declare type HvRadioStatus = "standBy" | "valid" | "invalid";
|
|
5333
5369
|
|
|
5334
|
-
export declare const HvRightControl: ({ id, classes: classesProp, className, children, values, onSort, hideSortBy, sortProps, ...others }: HvRightControlProps) =>
|
|
5370
|
+
export declare const HvRightControl: ({ id, classes: classesProp, className, children, values, onSort, hideSortBy, sortProps, ...others }: HvRightControlProps) => JSX_3.Element;
|
|
5335
5371
|
|
|
5336
5372
|
export declare type HvRightControlClasses = ExtractNames<typeof useClasses_56>;
|
|
5337
5373
|
|
|
@@ -5370,7 +5406,7 @@ declare type HvRowPropGetter<D extends object = Record<string, unknown>, H exten
|
|
|
5370
5406
|
/**
|
|
5371
5407
|
* The horizontal scroll to element can be used to quickly navigate in a page.
|
|
5372
5408
|
*/
|
|
5373
|
-
export declare const HvScrollToHorizontal: (props: HvScrollToHorizontalProps) =>
|
|
5409
|
+
export declare const HvScrollToHorizontal: (props: HvScrollToHorizontalProps) => JSX_3.Element;
|
|
5374
5410
|
|
|
5375
5411
|
export declare type HvScrollToHorizontalClasses = ExtractNames<typeof useClasses_98>;
|
|
5376
5412
|
|
|
@@ -5455,7 +5491,7 @@ export declare type HvScrollToTooltipPositions = "left" | "right" | "top" | "bot
|
|
|
5455
5491
|
/**
|
|
5456
5492
|
* The vertical scroll to element can be used to quickly navigate in a page.
|
|
5457
5493
|
*/
|
|
5458
|
-
export declare const HvScrollToVertical: (props: HvScrollToVerticalProps) =>
|
|
5494
|
+
export declare const HvScrollToVertical: (props: HvScrollToVerticalProps) => JSX_3.Element;
|
|
5459
5495
|
|
|
5460
5496
|
export declare type HvScrollToVerticalClasses = ExtractNames<typeof useClasses_96>;
|
|
5461
5497
|
|
|
@@ -5569,7 +5605,7 @@ export declare interface HvSectionProps extends Omit<HvBaseProps<HTMLDivElement>
|
|
|
5569
5605
|
* <HvOption value="cat">Cat</HvOption>
|
|
5570
5606
|
* </HvSelect>
|
|
5571
5607
|
* */
|
|
5572
|
-
export declare const HvSelect: <OptionValue extends {}, Multiple extends boolean = false>(props: HvSelectProps<OptionValue, Multiple> & RefAttributes<HTMLButtonElement>) =>
|
|
5608
|
+
export declare const HvSelect: <OptionValue extends {}, Multiple extends boolean = false>(props: HvSelectProps<OptionValue, Multiple> & RefAttributes<HTMLButtonElement>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
5573
5609
|
|
|
5574
5610
|
export declare type HvSelectClasses = ExtractNames<typeof useClasses_11>;
|
|
5575
5611
|
|
|
@@ -5661,7 +5697,7 @@ export declare type HvSemanticColors = Record<HvSemanticColorKeys, string>;
|
|
|
5661
5697
|
|
|
5662
5698
|
export declare type HvSequentialColorKeys = "cat1" | "cat1_100" | "cat1_200" | "cat1_300" | "cat1_400" | "cat1_500" | "cat1_600" | "cat1_700" | "cat1_800" | "cat1_900";
|
|
5663
5699
|
|
|
5664
|
-
export declare const HvSimpleGrid: (props: HvSimpleGridProps) =>
|
|
5700
|
+
export declare const HvSimpleGrid: (props: HvSimpleGridProps) => JSX_3.Element;
|
|
5665
5701
|
|
|
5666
5702
|
export declare type HvSimpleGridClasses = ExtractNames<typeof useClasses_100>;
|
|
5667
5703
|
|
|
@@ -5694,7 +5730,7 @@ export { HvSize }
|
|
|
5694
5730
|
/**
|
|
5695
5731
|
* The `HvSkeleton` component is used to create a placeholder element that represents the shape and size of the content that will be loaded.
|
|
5696
5732
|
*/
|
|
5697
|
-
export declare const HvSkeleton: (props: HvSkeletonProps) =>
|
|
5733
|
+
export declare const HvSkeleton: (props: HvSkeletonProps) => JSX_3.Element;
|
|
5698
5734
|
|
|
5699
5735
|
export declare type HvSkeletonClasses = ExtractNames<typeof useClasses_129>;
|
|
5700
5736
|
|
|
@@ -5818,7 +5854,7 @@ export declare interface HvSliderProps extends HvBaseProps<HTMLDivElement, "onCh
|
|
|
5818
5854
|
* One is the HvSnackbar, which wraps all the positioning, transition, auto hide, etc.
|
|
5819
5855
|
* The other is the HvSnackbarContent, which allows a finer control and customization of the content of the Snackbar.
|
|
5820
5856
|
*/
|
|
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) =>
|
|
5857
|
+
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
5858
|
|
|
5823
5859
|
export declare type HvSnackbarClasses = ExtractNames<typeof useClasses_102>;
|
|
5824
5860
|
|
|
@@ -5898,7 +5934,7 @@ export declare interface HvSnackbarProps extends Omit<SnackbarProps, "action" |
|
|
|
5898
5934
|
ref?: SnackbarProps["ref"];
|
|
5899
5935
|
}
|
|
5900
5936
|
|
|
5901
|
-
export declare const HvSnackbarProvider: ({ children, notistackClassesOverride, maxSnack, autoHideDuration, anchorOrigin, classes: classesProp, className, container, ...others }: HvSnackbarProviderProps) =>
|
|
5937
|
+
export declare const HvSnackbarProvider: ({ children, notistackClassesOverride, maxSnack, autoHideDuration, anchorOrigin, classes: classesProp, className, container, ...others }: HvSnackbarProviderProps) => JSX_3.Element;
|
|
5902
5938
|
|
|
5903
5939
|
export declare type HvSnackbarProviderClasses = ExtractNames<typeof useClasses_104>;
|
|
5904
5940
|
|
|
@@ -5928,7 +5964,7 @@ export declare type HvSnackbarVariant = "default" | "success" | "warning" | "err
|
|
|
5928
5964
|
*
|
|
5929
5965
|
* It also allows the specification of the spacing between the stack elements and the addition of a divider between the elements.
|
|
5930
5966
|
*/
|
|
5931
|
-
export declare const HvStack: (props: HvStackProps) =>
|
|
5967
|
+
export declare const HvStack: (props: HvStackProps) => JSX_3.Element;
|
|
5932
5968
|
|
|
5933
5969
|
export declare interface HvStackBreakpoints extends Record<HvBreakpoints, string> {
|
|
5934
5970
|
}
|
|
@@ -6104,7 +6140,7 @@ export declare interface HvSwitchProps extends Omit<SwitchProps, "onChange" | "c
|
|
|
6104
6140
|
component?: SwitchProps["component"];
|
|
6105
6141
|
}
|
|
6106
6142
|
|
|
6107
|
-
export declare const HvTab: (props: HvTabProps) =>
|
|
6143
|
+
export declare const HvTab: (props: HvTabProps) => JSX_3.Element;
|
|
6108
6144
|
|
|
6109
6145
|
export declare type HvTabClasses = ExtractNames<typeof useClasses_107>;
|
|
6110
6146
|
|
|
@@ -6439,7 +6475,7 @@ export declare interface HvTabProps extends Omit<TabProps, "children"> {
|
|
|
6439
6475
|
* A Tab is a graphical control element that allows multiple documents or panels to be contained within a single window.
|
|
6440
6476
|
* Tabs can be used as a navigational widget for switching between sets of documents.
|
|
6441
6477
|
*/
|
|
6442
|
-
export declare const HvTabs: (props: HvTabsProps) =>
|
|
6478
|
+
export declare const HvTabs: (props: HvTabsProps) => JSX_3.Element;
|
|
6443
6479
|
|
|
6444
6480
|
export declare type HvTabsClasses = ExtractNames<typeof useClasses_112>;
|
|
6445
6481
|
|
|
@@ -6701,7 +6737,7 @@ export declare interface HvThemePalette {
|
|
|
6701
6737
|
support: HvSupportColors;
|
|
6702
6738
|
}
|
|
6703
6739
|
|
|
6704
|
-
export declare const HvThemeProvider: ({ children, themes: themesList, theme: themeProp, emotionCache, colorMode: colorModeProp, themeRootId: rootId, }: HvThemeProviderProps) =>
|
|
6740
|
+
export declare const HvThemeProvider: ({ children, themes: themesList, theme: themeProp, emotionCache, colorMode: colorModeProp, themeRootId: rootId, }: HvThemeProviderProps) => JSX_3.Element;
|
|
6705
6741
|
|
|
6706
6742
|
declare interface HvThemeProviderProps {
|
|
6707
6743
|
children: React.ReactNode;
|
|
@@ -6715,40 +6751,42 @@ declare interface HvThemeProviderProps {
|
|
|
6715
6751
|
/**
|
|
6716
6752
|
* The HvTimeAgo component implements the Design System relative time format guidelines.
|
|
6717
6753
|
*/
|
|
6718
|
-
export declare const HvTimeAgo: <C extends
|
|
6754
|
+
export declare const HvTimeAgo: <C extends ElementType<any, keyof JSX_2.IntrinsicElements> = "p">(props: {
|
|
6719
6755
|
/**
|
|
6720
6756
|
* The timestamp to format, in seconds or milliseconds.
|
|
6721
6757
|
* Defaults to `emptyElement` if value is null or 0
|
|
6722
6758
|
*/
|
|
6723
|
-
timestamp?: number;
|
|
6759
|
+
timestamp?: number | undefined;
|
|
6724
6760
|
/**
|
|
6725
6761
|
* The locale to be used. Should be on of the dayjs supported locales and explicitly imported
|
|
6726
6762
|
* @see https://day.js.org/docs/en/i18n/i18n
|
|
6727
6763
|
*/
|
|
6728
|
-
locale?: string;
|
|
6764
|
+
locale?: string | undefined;
|
|
6729
6765
|
/**
|
|
6730
6766
|
* The element to render when the timestamp is null or 0
|
|
6731
6767
|
* Defaults to `—` (Em Dash)
|
|
6732
6768
|
*/
|
|
6733
6769
|
emptyElement?: React.ReactNode;
|
|
6734
6770
|
/** Disables periodic date refreshes */
|
|
6735
|
-
disableRefresh?: boolean;
|
|
6771
|
+
disableRefresh?: boolean | undefined;
|
|
6736
6772
|
/** Whether to show seconds in the rendered time */
|
|
6737
|
-
showSeconds?: boolean;
|
|
6773
|
+
showSeconds?: boolean | undefined;
|
|
6738
6774
|
/**
|
|
6739
6775
|
* Whether the component should render just the string
|
|
6740
6776
|
* Consider using `useTimeAgo` instead
|
|
6741
6777
|
*/
|
|
6742
|
-
justText?: boolean;
|
|
6778
|
+
justText?: boolean | undefined;
|
|
6743
6779
|
/** A Jss Object used to override or extend the styles applied to the component. */
|
|
6744
|
-
classes?:
|
|
6780
|
+
classes?: Partial<{
|
|
6781
|
+
root: string;
|
|
6782
|
+
}> | undefined;
|
|
6745
6783
|
} & {
|
|
6746
6784
|
component?: C | undefined;
|
|
6747
6785
|
} & {
|
|
6748
|
-
children?: ReactNode
|
|
6749
|
-
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "component" | "
|
|
6786
|
+
children?: ReactNode;
|
|
6787
|
+
} & (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
6788
|
ref?: PolymorphicRef<C> | undefined;
|
|
6751
|
-
} & RefAttributes<unknown>) =>
|
|
6789
|
+
} & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
6752
6790
|
|
|
6753
6791
|
export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_115>;
|
|
6754
6792
|
|
|
@@ -6994,7 +7032,7 @@ export declare interface HvTreeItemProps extends React.HTMLAttributes<HTMLElemen
|
|
|
6994
7032
|
* </HvTreeView>
|
|
6995
7033
|
* ```
|
|
6996
7034
|
*/
|
|
6997
|
-
export declare const HvTreeView: <Multiple extends boolean | undefined>(props: HvTreeViewProps<Multiple> & RefAttributes<HTMLUListElement>) =>
|
|
7035
|
+
export declare const HvTreeView: <Multiple extends boolean | undefined>(props: HvTreeViewProps<Multiple> & RefAttributes<HTMLUListElement>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
6998
7036
|
|
|
6999
7037
|
export declare type HvTreeViewClasses = ExtractNames<typeof useClasses_117>;
|
|
7000
7038
|
|
|
@@ -7008,34 +7046,69 @@ export declare interface HvTreeViewProps<Multiple extends boolean | undefined> e
|
|
|
7008
7046
|
/**
|
|
7009
7047
|
* Typography component is used to render text and paragraphs within an interface.
|
|
7010
7048
|
*/
|
|
7011
|
-
export declare const HvTypography: <C extends
|
|
7049
|
+
export declare const HvTypography: <C extends ElementType<any, keyof JSX_2.IntrinsicElements> = "p">(props: {
|
|
7012
7050
|
/** Use the variant prop to change the visual style of the Typography. */
|
|
7013
|
-
variant?:
|
|
7051
|
+
variant?: "display" | "title1" | "title2" | "title3" | "title4" | "label" | "body" | "captionLabel" | "caption1" | "caption2" | HvTypographyLegacyVariants | undefined;
|
|
7014
7052
|
/** If `true` the typography will display the look of a link. */
|
|
7015
|
-
link?: boolean;
|
|
7053
|
+
link?: boolean | undefined;
|
|
7016
7054
|
/** If `true` the typography will display the look of a disabled state. */
|
|
7017
|
-
disabled?: boolean;
|
|
7055
|
+
disabled?: boolean | undefined;
|
|
7018
7056
|
/**
|
|
7019
7057
|
* If `true`, the typography will render a "p" element
|
|
7020
7058
|
* @deprecated use `component="p"` instead
|
|
7021
7059
|
* */
|
|
7022
|
-
paragraph?: boolean;
|
|
7060
|
+
paragraph?: boolean | undefined;
|
|
7023
7061
|
/**
|
|
7024
7062
|
* If `true`, the text will not wrap, but instead will truncate with a text overflow ellipsis.
|
|
7025
7063
|
*
|
|
7026
7064
|
* Note that text overflow can only happen with block or inline-block level elements
|
|
7027
7065
|
* (the element needs to have a width in order to overflow).
|
|
7028
7066
|
*/
|
|
7029
|
-
noWrap?: boolean;
|
|
7067
|
+
noWrap?: boolean | undefined;
|
|
7030
7068
|
/** A Jss Object used to override or extend the styles applied to the component. */
|
|
7031
|
-
classes?:
|
|
7069
|
+
classes?: Partial<{
|
|
7070
|
+
display: string;
|
|
7071
|
+
title1: string;
|
|
7072
|
+
title2: string;
|
|
7073
|
+
title3: string;
|
|
7074
|
+
title4: string;
|
|
7075
|
+
label: string;
|
|
7076
|
+
body: string;
|
|
7077
|
+
captionLabel: string;
|
|
7078
|
+
caption1: string;
|
|
7079
|
+
caption2: string;
|
|
7080
|
+
"5xlTitle": string;
|
|
7081
|
+
"4xlTitle": string;
|
|
7082
|
+
xxlTitle: string;
|
|
7083
|
+
lTitle: string;
|
|
7084
|
+
sTitle: string;
|
|
7085
|
+
xxsTitle: string;
|
|
7086
|
+
sectionTitle: string;
|
|
7087
|
+
placeholderText: string;
|
|
7088
|
+
link: string;
|
|
7089
|
+
disabledText: string;
|
|
7090
|
+
selectedNavText: string;
|
|
7091
|
+
vizTextDisabled: string;
|
|
7092
|
+
xsInlineLink: string;
|
|
7093
|
+
root: string;
|
|
7094
|
+
disabled: string;
|
|
7095
|
+
isLink: string;
|
|
7096
|
+
noWrap: string;
|
|
7097
|
+
"3xlTitle": string;
|
|
7098
|
+
xlTitle: string;
|
|
7099
|
+
mTitle: string;
|
|
7100
|
+
xsTitle: string;
|
|
7101
|
+
highlightText: string;
|
|
7102
|
+
normalText: string;
|
|
7103
|
+
vizText: string;
|
|
7104
|
+
}> | undefined;
|
|
7032
7105
|
} & {
|
|
7033
7106
|
component?: C | undefined;
|
|
7034
7107
|
} & {
|
|
7035
|
-
children?: ReactNode
|
|
7108
|
+
children?: ReactNode;
|
|
7036
7109
|
} & (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
7110
|
ref?: PolymorphicRef<C> | undefined;
|
|
7038
|
-
} & RefAttributes<unknown>) =>
|
|
7111
|
+
} & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
7039
7112
|
|
|
7040
7113
|
export declare type HvTypographyClasses = ExtractNames<typeof useClasses>;
|
|
7041
7114
|
|
|
@@ -7113,9 +7186,9 @@ export declare interface HvValidationMessages {
|
|
|
7113
7186
|
*
|
|
7114
7187
|
* Both modes are available via the `mode` property and each app should choose the most appropriate.
|
|
7115
7188
|
*/
|
|
7116
|
-
export declare const HvVerticalNavigation: (props: HvVerticalNavigationProps) =>
|
|
7189
|
+
export declare const HvVerticalNavigation: (props: HvVerticalNavigationProps) => JSX_3.Element;
|
|
7117
7190
|
|
|
7118
|
-
export declare const HvVerticalNavigationAction: (props: HvVerticalNavigationActionProps) =>
|
|
7191
|
+
export declare const HvVerticalNavigationAction: (props: HvVerticalNavigationActionProps) => JSX_3.Element;
|
|
7119
7192
|
|
|
7120
7193
|
export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof useClasses_123>;
|
|
7121
7194
|
|
|
@@ -7130,7 +7203,7 @@ export declare interface HvVerticalNavigationActionProps extends Omit<HvTypograp
|
|
|
7130
7203
|
onClick?: (event: React.KeyboardEvent<HTMLDivElement> | React.MouseEvent<HTMLDivElement>) => void;
|
|
7131
7204
|
}
|
|
7132
7205
|
|
|
7133
|
-
export declare const HvVerticalNavigationActions: (props: HvVerticalNavigationActionsProps) =>
|
|
7206
|
+
export declare const HvVerticalNavigationActions: (props: HvVerticalNavigationActionsProps) => JSX_3.Element;
|
|
7134
7207
|
|
|
7135
7208
|
export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof useClasses_122>;
|
|
7136
7209
|
|
|
@@ -7141,7 +7214,7 @@ export declare interface HvVerticalNavigationActionsProps extends HvBaseProps {
|
|
|
7141
7214
|
|
|
7142
7215
|
export declare type HvVerticalNavigationClasses = ExtractNames<typeof useClasses_120>;
|
|
7143
7216
|
|
|
7144
|
-
export declare const HvVerticalNavigationHeader: (props: HvVerticalNavigationHeaderProps) =>
|
|
7217
|
+
export declare const HvVerticalNavigationHeader: (props: HvVerticalNavigationHeaderProps) => JSX_3.Element | null;
|
|
7145
7218
|
|
|
7146
7219
|
export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof useClasses_121>;
|
|
7147
7220
|
|
|
@@ -7188,7 +7261,7 @@ export declare interface HvVerticalNavigationProps extends HvBaseProps<HTMLDivEl
|
|
|
7188
7261
|
useIcons?: boolean;
|
|
7189
7262
|
}
|
|
7190
7263
|
|
|
7191
|
-
export declare const HvVerticalNavigationSlider: (props: HvVerticalNavigationSliderProps) =>
|
|
7264
|
+
export declare const HvVerticalNavigationSlider: (props: HvVerticalNavigationSliderProps) => JSX_3.Element;
|
|
7192
7265
|
|
|
7193
7266
|
export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof useClasses_125>;
|
|
7194
7267
|
|
|
@@ -7216,7 +7289,7 @@ export declare interface HvVerticalNavigationSliderProps extends Omit<HvListCont
|
|
|
7216
7289
|
forwardButtonAriaLabel?: string;
|
|
7217
7290
|
}
|
|
7218
7291
|
|
|
7219
|
-
export declare const HvVerticalNavigationTree: (props: HvVerticalNavigationTreeProps) =>
|
|
7292
|
+
export declare const HvVerticalNavigationTree: (props: HvVerticalNavigationTreeProps) => JSX_3.Element;
|
|
7220
7293
|
|
|
7221
7294
|
export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof useClasses_124>;
|
|
7222
7295
|
|
|
@@ -7375,7 +7448,7 @@ export declare type HvVerticalScrollListItemClasses = ExtractNames<typeof useCla
|
|
|
7375
7448
|
/**
|
|
7376
7449
|
* Provides the user with a descriptive text, signaling an error, for when the form element is in an invalid state.
|
|
7377
7450
|
*/
|
|
7378
|
-
export declare const HvWarningText: (props: HvWarningTextProps) =>
|
|
7451
|
+
export declare const HvWarningText: (props: HvWarningTextProps) => JSX_3.Element;
|
|
7379
7452
|
|
|
7380
7453
|
export declare type HvWarningTextClasses = ExtractNames<typeof useClasses_10>;
|
|
7381
7454
|
|
|
@@ -7398,7 +7471,7 @@ export declare interface HvWarningTextProps extends HvBaseProps {
|
|
|
7398
7471
|
classes?: HvWarningTextClasses;
|
|
7399
7472
|
}
|
|
7400
7473
|
|
|
7401
|
-
export declare const iconVariant: (variant: "success" | "warning" | "error" | "info" | "default", color?: IconBaseProps["color"], semantic?: true) =>
|
|
7474
|
+
export declare const iconVariant: (variant: "success" | "warning" | "error" | "info" | "default", color?: IconBaseProps["color"], semantic?: true) => JSX_3.Element | null;
|
|
7402
7475
|
|
|
7403
7476
|
declare type IdType<D> = StringKey<D> | string;
|
|
7404
7477
|
|
|
@@ -7434,8 +7507,8 @@ export declare const inputClasses: {
|
|
|
7434
7507
|
icon: "HvInput-icon";
|
|
7435
7508
|
description: "HvInput-description";
|
|
7436
7509
|
error: "HvInput-error";
|
|
7437
|
-
adornmentButton: "HvInput-adornmentButton";
|
|
7438
7510
|
labelContainer: "HvInput-labelContainer";
|
|
7511
|
+
adornmentButton: "HvInput-adornmentButton";
|
|
7439
7512
|
inputRootDisabled: "HvInput-inputRootDisabled";
|
|
7440
7513
|
adornmentsBox: "HvInput-adornmentsBox";
|
|
7441
7514
|
iconClear: "HvInput-iconClear";
|
|
@@ -7449,14 +7522,14 @@ declare type InputElement = HTMLInputElement | HTMLTextAreaElement;
|
|
|
7449
7522
|
|
|
7450
7523
|
export declare const isBrowser: (browsers: string | string[]) => boolean | null;
|
|
7451
7524
|
|
|
7452
|
-
export declare const isInvalid: (compareState: HvFormStatus) =>
|
|
7525
|
+
export declare const isInvalid: (compareState: HvFormStatus) => boolean;
|
|
7453
7526
|
|
|
7454
7527
|
/** Check whether a keyboard `event` is pressing the `keyCode` key. */
|
|
7455
7528
|
export declare const isKey: (event: any, keyCode: Key) => boolean;
|
|
7456
7529
|
|
|
7457
7530
|
export declare const isOneOfKeys: (event: any, keys: Key[]) => boolean;
|
|
7458
7531
|
|
|
7459
|
-
export declare const isValid: (compareState: HvFormStatus) =>
|
|
7532
|
+
export declare const isValid: (compareState: HvFormStatus) => boolean;
|
|
7460
7533
|
|
|
7461
7534
|
declare type Key = keyof typeof keyboardCodes;
|
|
7462
7535
|
|
|
@@ -7531,10 +7604,10 @@ export declare const listItemClasses: {
|
|
|
7531
7604
|
selected: "HvListItem-selected";
|
|
7532
7605
|
condensed: "HvListItem-condensed";
|
|
7533
7606
|
focus: "HvListItem-focus";
|
|
7534
|
-
interactive: "HvListItem-interactive";
|
|
7535
7607
|
startAdornment: "HvListItem-startAdornment";
|
|
7536
7608
|
endAdornment: "HvListItem-endAdornment";
|
|
7537
7609
|
gutters: "HvListItem-gutters";
|
|
7610
|
+
interactive: "HvListItem-interactive";
|
|
7538
7611
|
withStartAdornment: "HvListItem-withStartAdornment";
|
|
7539
7612
|
withEndAdornment: "HvListItem-withEndAdornment";
|
|
7540
7613
|
};
|
|
@@ -7546,9 +7619,9 @@ export declare const loadingClasses: {
|
|
|
7546
7619
|
root: "HvLoading-root";
|
|
7547
7620
|
hidden: "HvLoading-hidden";
|
|
7548
7621
|
blur: "HvLoading-blur";
|
|
7622
|
+
regular: "HvLoading-regular";
|
|
7549
7623
|
barContainer: "HvLoading-barContainer";
|
|
7550
7624
|
loadingBar: "HvLoading-loadingBar";
|
|
7551
|
-
regular: "HvLoading-regular";
|
|
7552
7625
|
smallColor: "HvLoading-smallColor";
|
|
7553
7626
|
regularColor: "HvLoading-regularColor";
|
|
7554
7627
|
};
|
|
@@ -7579,9 +7652,9 @@ export declare const multiButtonClasses: {
|
|
|
7579
7652
|
splitGroupDisabled: "HvMultiButton-splitGroupDisabled";
|
|
7580
7653
|
splitContainer: "HvMultiButton-splitContainer";
|
|
7581
7654
|
split: "HvMultiButton-split";
|
|
7582
|
-
primarySubtle: "HvMultiButton-primarySubtle";
|
|
7583
7655
|
firstButton: "HvMultiButton-firstButton";
|
|
7584
7656
|
lastButton: "HvMultiButton-lastButton";
|
|
7657
|
+
primarySubtle: "HvMultiButton-primarySubtle";
|
|
7585
7658
|
};
|
|
7586
7659
|
|
|
7587
7660
|
export declare const multiSelectionEventHandler: (evt: any, index: number, selectionAnchor: any, allValues: any[], selectedState: boolean[], selectionCheck: any) => any[];
|
|
@@ -7791,8 +7864,8 @@ export declare const scrollToHorizontalClasses: {
|
|
|
7791
7864
|
root: "HvScrollToHorizontal-root";
|
|
7792
7865
|
selected: "HvScrollToHorizontal-selected";
|
|
7793
7866
|
notSelected: "HvScrollToHorizontal-notSelected";
|
|
7794
|
-
positionSticky: "HvScrollToHorizontal-positionSticky";
|
|
7795
7867
|
positionFixed: "HvScrollToHorizontal-positionFixed";
|
|
7868
|
+
positionSticky: "HvScrollToHorizontal-positionSticky";
|
|
7796
7869
|
notSelectedRoot: "HvScrollToHorizontal-notSelectedRoot";
|
|
7797
7870
|
};
|
|
7798
7871
|
|
|
@@ -7822,8 +7895,8 @@ export declare const selectClasses: {
|
|
|
7822
7895
|
popper: "HvSelect-popper";
|
|
7823
7896
|
description: "HvSelect-description";
|
|
7824
7897
|
error: "HvSelect-error";
|
|
7825
|
-
invalid: "HvSelect-invalid";
|
|
7826
7898
|
labelContainer: "HvSelect-labelContainer";
|
|
7899
|
+
invalid: "HvSelect-invalid";
|
|
7827
7900
|
panelOpenedUp: "HvSelect-panelOpenedUp";
|
|
7828
7901
|
panelOpenedDown: "HvSelect-panelOpenedDown";
|
|
7829
7902
|
};
|
|
@@ -7872,11 +7945,11 @@ export declare const sliderClasses: {
|
|
|
7872
7945
|
error: "HvSlider-error";
|
|
7873
7946
|
labelContainer: "HvSlider-labelContainer";
|
|
7874
7947
|
rootDisabled: "HvSlider-rootDisabled";
|
|
7948
|
+
handle: "HvSlider-handle";
|
|
7875
7949
|
sliderBase: "HvSlider-sliderBase";
|
|
7876
7950
|
sliderContainer: "HvSlider-sliderContainer";
|
|
7877
7951
|
sliderRoot: "HvSlider-sliderRoot";
|
|
7878
7952
|
rootRange: "HvSlider-rootRange";
|
|
7879
|
-
handle: "HvSlider-handle";
|
|
7880
7953
|
handleContainerDisabled: "HvSlider-handleContainerDisabled";
|
|
7881
7954
|
handleHiddenContainer: "HvSlider-handleHiddenContainer";
|
|
7882
7955
|
labelIncluded: "HvSlider-labelIncluded";
|
|
@@ -7886,12 +7959,12 @@ export declare const sliderClasses: {
|
|
|
7886
7959
|
|
|
7887
7960
|
export declare const snackbarClasses: {
|
|
7888
7961
|
root: "HvSnackbar-root";
|
|
7889
|
-
anchorOriginTopCenter: "HvSnackbar-anchorOriginTopCenter";
|
|
7890
|
-
anchorOriginBottomCenter: "HvSnackbar-anchorOriginBottomCenter";
|
|
7891
7962
|
anchorOriginTopRight: "HvSnackbar-anchorOriginTopRight";
|
|
7892
7963
|
anchorOriginBottomRight: "HvSnackbar-anchorOriginBottomRight";
|
|
7893
7964
|
anchorOriginTopLeft: "HvSnackbar-anchorOriginTopLeft";
|
|
7894
7965
|
anchorOriginBottomLeft: "HvSnackbar-anchorOriginBottomLeft";
|
|
7966
|
+
anchorOriginTopCenter: "HvSnackbar-anchorOriginTopCenter";
|
|
7967
|
+
anchorOriginBottomCenter: "HvSnackbar-anchorOriginBottomCenter";
|
|
7895
7968
|
};
|
|
7896
7969
|
|
|
7897
7970
|
export declare const snackbarContentClasses: {
|
|
@@ -7960,12 +8033,12 @@ export declare const tableCellClasses: {
|
|
|
7960
8033
|
variantListcheckbox: "HvTableCell-variantListcheckbox";
|
|
7961
8034
|
variantList: "HvTableCell-variantList";
|
|
7962
8035
|
footer: "HvTableCell-footer";
|
|
7963
|
-
resizable: "HvTableCell-resizable";
|
|
7964
|
-
sorted: "HvTableCell-sorted";
|
|
7965
8036
|
alignLeft: "HvTableCell-alignLeft";
|
|
7966
8037
|
alignCenter: "HvTableCell-alignCenter";
|
|
7967
8038
|
alignRight: "HvTableCell-alignRight";
|
|
7968
8039
|
alignJustify: "HvTableCell-alignJustify";
|
|
8040
|
+
resizable: "HvTableCell-resizable";
|
|
8041
|
+
sorted: "HvTableCell-sorted";
|
|
7969
8042
|
variantNone: "HvTableCell-variantNone";
|
|
7970
8043
|
variantCheckbox: "HvTableCell-variantCheckbox";
|
|
7971
8044
|
variantActions: "HvTableCell-variantActions";
|
|
@@ -8003,12 +8076,12 @@ export declare const tableHeaderClasses: {
|
|
|
8003
8076
|
variantList: "HvTableHeader-variantList";
|
|
8004
8077
|
resizer: "HvTableHeader-resizer";
|
|
8005
8078
|
footer: "HvTableHeader-footer";
|
|
8006
|
-
resizable: "HvTableHeader-resizable";
|
|
8007
|
-
sorted: "HvTableHeader-sorted";
|
|
8008
8079
|
alignLeft: "HvTableHeader-alignLeft";
|
|
8009
8080
|
alignCenter: "HvTableHeader-alignCenter";
|
|
8010
8081
|
alignRight: "HvTableHeader-alignRight";
|
|
8011
8082
|
alignJustify: "HvTableHeader-alignJustify";
|
|
8083
|
+
resizable: "HvTableHeader-resizable";
|
|
8084
|
+
sorted: "HvTableHeader-sorted";
|
|
8012
8085
|
variantNone: "HvTableHeader-variantNone";
|
|
8013
8086
|
variantCheckbox: "HvTableHeader-variantCheckbox";
|
|
8014
8087
|
variantActions: "HvTableHeader-variantActions";
|
|
@@ -8039,9 +8112,9 @@ export declare const tableRowClasses: {
|
|
|
8039
8112
|
variantList: "HvTableRow-variantList";
|
|
8040
8113
|
expanded: "HvTableRow-expanded";
|
|
8041
8114
|
footer: "HvTableRow-footer";
|
|
8115
|
+
hover: "HvTableRow-hover";
|
|
8042
8116
|
variantListHead: "HvTableRow-variantListHead";
|
|
8043
8117
|
striped: "HvTableRow-striped";
|
|
8044
|
-
hover: "HvTableRow-hover";
|
|
8045
8118
|
};
|
|
8046
8119
|
|
|
8047
8120
|
export declare const tableSectionClasses: {
|
|
@@ -8056,9 +8129,9 @@ export declare const tableSectionClasses: {
|
|
|
8056
8129
|
|
|
8057
8130
|
export declare const tabsClasses: {
|
|
8058
8131
|
root: "HvTabs-root";
|
|
8059
|
-
indicator: "HvTabs-indicator";
|
|
8060
|
-
scroller: "HvTabs-scroller";
|
|
8061
8132
|
flexContainer: "HvTabs-flexContainer";
|
|
8133
|
+
scroller: "HvTabs-scroller";
|
|
8134
|
+
indicator: "HvTabs-indicator";
|
|
8062
8135
|
};
|
|
8063
8136
|
|
|
8064
8137
|
export declare const tagClasses: {
|
|
@@ -8067,10 +8140,10 @@ export declare const tagClasses: {
|
|
|
8067
8140
|
disabled: "HvTag-disabled";
|
|
8068
8141
|
button: "HvTag-button";
|
|
8069
8142
|
focusVisible: "HvTag-focusVisible";
|
|
8070
|
-
chipRoot: "HvTag-chipRoot";
|
|
8071
8143
|
clickable: "HvTag-clickable";
|
|
8072
|
-
categorical: "HvTag-categorical";
|
|
8073
8144
|
deleteIcon: "HvTag-deleteIcon";
|
|
8145
|
+
chipRoot: "HvTag-chipRoot";
|
|
8146
|
+
categorical: "HvTag-categorical";
|
|
8074
8147
|
tagButton: "HvTag-tagButton";
|
|
8075
8148
|
disabledDeleteIcon: "HvTag-disabledDeleteIcon";
|
|
8076
8149
|
categoricalFocus: "HvTag-categoricalFocus";
|
|
@@ -8086,8 +8159,8 @@ export declare const tagsInputClasses: {
|
|
|
8086
8159
|
tagsList: "HvTagsInput-tagsList";
|
|
8087
8160
|
description: "HvTagsInput-description";
|
|
8088
8161
|
error: "HvTagsInput-error";
|
|
8089
|
-
invalid: "HvTagsInput-invalid";
|
|
8090
8162
|
labelContainer: "HvTagsInput-labelContainer";
|
|
8163
|
+
invalid: "HvTagsInput-invalid";
|
|
8091
8164
|
resizable: "HvTagsInput-resizable";
|
|
8092
8165
|
suggestionsContainer: "HvTagsInput-suggestionsContainer";
|
|
8093
8166
|
suggestionList: "HvTagsInput-suggestionList";
|
|
@@ -8112,8 +8185,8 @@ export declare const textAreaClasses: {
|
|
|
8112
8185
|
input: "HvTextArea-input";
|
|
8113
8186
|
description: "HvTextArea-description";
|
|
8114
8187
|
error: "HvTextArea-error";
|
|
8115
|
-
invalid: "HvTextArea-invalid";
|
|
8116
8188
|
labelContainer: "HvTextArea-labelContainer";
|
|
8189
|
+
invalid: "HvTextArea-invalid";
|
|
8117
8190
|
resizable: "HvTextArea-resizable";
|
|
8118
8191
|
inputResizable: "HvTextArea-inputResizable";
|
|
8119
8192
|
characterCounter: "HvTextArea-characterCounter";
|
|
@@ -8194,10 +8267,10 @@ export declare const treeViewItemClasses: {
|
|
|
8194
8267
|
group: "HvVerticalNavigationTreeViewItem-group";
|
|
8195
8268
|
node: "HvVerticalNavigationTreeViewItem-node";
|
|
8196
8269
|
focused: "HvVerticalNavigationTreeViewItem-focused";
|
|
8197
|
-
expandable: "HvVerticalNavigationTreeViewItem-expandable";
|
|
8198
8270
|
labelIcon: "HvVerticalNavigationTreeViewItem-labelIcon";
|
|
8199
8271
|
collapsed: "HvVerticalNavigationTreeViewItem-collapsed";
|
|
8200
8272
|
minimized: "HvVerticalNavigationTreeViewItem-minimized";
|
|
8273
|
+
expandable: "HvVerticalNavigationTreeViewItem-expandable";
|
|
8201
8274
|
unselected: "HvVerticalNavigationTreeViewItem-unselected";
|
|
8202
8275
|
labelExpandable: "HvVerticalNavigationTreeViewItem-labelExpandable";
|
|
8203
8276
|
};
|
|
@@ -8328,7 +8401,7 @@ declare const useClasses_100: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8328
8401
|
cx: (...args: any) => string;
|
|
8329
8402
|
};
|
|
8330
8403
|
|
|
8331
|
-
declare const useClasses_101: (classesProp?: Partial<Record<"label" | "root" | "trackDragging" | "trackStandBy" | "handleContainer" | "error" | "labelContainer" | "rootDisabled" | "
|
|
8404
|
+
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
8405
|
classes: {
|
|
8333
8406
|
label: string;
|
|
8334
8407
|
root: string;
|
|
@@ -8338,11 +8411,11 @@ declare const useClasses_101: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8338
8411
|
error: string;
|
|
8339
8412
|
labelContainer: string;
|
|
8340
8413
|
rootDisabled: string;
|
|
8414
|
+
handle: string;
|
|
8341
8415
|
sliderBase: string;
|
|
8342
8416
|
sliderContainer: string;
|
|
8343
8417
|
sliderRoot: string;
|
|
8344
8418
|
rootRange: string;
|
|
8345
|
-
handle: string;
|
|
8346
8419
|
handleContainerDisabled: string;
|
|
8347
8420
|
handleHiddenContainer: string;
|
|
8348
8421
|
labelIncluded: string;
|
|
@@ -8353,15 +8426,15 @@ declare const useClasses_101: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8353
8426
|
cx: (...args: any) => string;
|
|
8354
8427
|
};
|
|
8355
8428
|
|
|
8356
|
-
declare const useClasses_102: (classesProp?: Partial<Record<"root" | "
|
|
8429
|
+
declare const useClasses_102: (classesProp?: Partial<Record<"root" | "anchorOriginTopRight" | "anchorOriginBottomRight" | "anchorOriginTopLeft" | "anchorOriginBottomLeft" | "anchorOriginTopCenter" | "anchorOriginBottomCenter", string>>, addStatic?: boolean) => {
|
|
8357
8430
|
classes: {
|
|
8358
8431
|
root: string;
|
|
8359
|
-
anchorOriginTopCenter: string;
|
|
8360
|
-
anchorOriginBottomCenter: string;
|
|
8361
8432
|
anchorOriginTopRight: string;
|
|
8362
8433
|
anchorOriginBottomRight: string;
|
|
8363
8434
|
anchorOriginTopLeft: string;
|
|
8364
8435
|
anchorOriginBottomLeft: string;
|
|
8436
|
+
anchorOriginTopCenter: string;
|
|
8437
|
+
anchorOriginBottomCenter: string;
|
|
8365
8438
|
};
|
|
8366
8439
|
css: any;
|
|
8367
8440
|
cx: (...args: any) => string;
|
|
@@ -8447,7 +8520,7 @@ declare const useClasses_109: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8447
8520
|
cx: (...args: any) => string;
|
|
8448
8521
|
};
|
|
8449
8522
|
|
|
8450
|
-
declare const useClasses_11: (classesProp?: Partial<Record<"label" | "root" | "panel" | "disabled" | "readOnly" | "select" | "popper" | "description" | "error" | "
|
|
8523
|
+
declare const useClasses_11: (classesProp?: Partial<Record<"label" | "root" | "panel" | "disabled" | "readOnly" | "select" | "popper" | "description" | "error" | "labelContainer" | "invalid" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
|
|
8451
8524
|
classes: {
|
|
8452
8525
|
label: string;
|
|
8453
8526
|
root: string;
|
|
@@ -8458,8 +8531,8 @@ declare const useClasses_11: (classesProp?: Partial<Record<"label" | "root" | "p
|
|
|
8458
8531
|
popper: string;
|
|
8459
8532
|
description: string;
|
|
8460
8533
|
error: string;
|
|
8461
|
-
invalid: string;
|
|
8462
8534
|
labelContainer: string;
|
|
8535
|
+
invalid: string;
|
|
8463
8536
|
panelOpenedUp: string;
|
|
8464
8537
|
panelOpenedDown: string;
|
|
8465
8538
|
};
|
|
@@ -8476,17 +8549,17 @@ declare const useClasses_110: (classesProp?: Partial<Record<"root" | "stickyHead
|
|
|
8476
8549
|
cx: (...args: any) => string;
|
|
8477
8550
|
};
|
|
8478
8551
|
|
|
8479
|
-
declare const useClasses_111: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "button" | "focusVisible" | "
|
|
8552
|
+
declare const useClasses_111: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "button" | "focusVisible" | "clickable" | "deleteIcon" | "chipRoot" | "categorical" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
|
|
8480
8553
|
classes: {
|
|
8481
8554
|
label: string;
|
|
8482
8555
|
root: string;
|
|
8483
8556
|
disabled: string;
|
|
8484
8557
|
button: string;
|
|
8485
8558
|
focusVisible: string;
|
|
8486
|
-
chipRoot: string;
|
|
8487
8559
|
clickable: string;
|
|
8488
|
-
categorical: string;
|
|
8489
8560
|
deleteIcon: string;
|
|
8561
|
+
chipRoot: string;
|
|
8562
|
+
categorical: string;
|
|
8490
8563
|
tagButton: string;
|
|
8491
8564
|
disabledDeleteIcon: string;
|
|
8492
8565
|
categoricalFocus: string;
|
|
@@ -8496,18 +8569,18 @@ declare const useClasses_111: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8496
8569
|
cx: (...args: any) => string;
|
|
8497
8570
|
};
|
|
8498
8571
|
|
|
8499
|
-
declare const useClasses_112: (classesProp?: Partial<Record<"root" | "
|
|
8572
|
+
declare const useClasses_112: (classesProp?: Partial<Record<"root" | "flexContainer" | "scroller" | "indicator", string>>, addStatic?: boolean) => {
|
|
8500
8573
|
classes: {
|
|
8501
8574
|
root: string;
|
|
8502
|
-
indicator: string;
|
|
8503
|
-
scroller: string;
|
|
8504
8575
|
flexContainer: string;
|
|
8576
|
+
scroller: string;
|
|
8577
|
+
indicator: string;
|
|
8505
8578
|
};
|
|
8506
8579
|
css: any;
|
|
8507
8580
|
cx: (...args: any) => string;
|
|
8508
8581
|
};
|
|
8509
8582
|
|
|
8510
|
-
declare const useClasses_113: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "readOnly" | "input" | "tagsList" | "description" | "error" | "
|
|
8583
|
+
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
8584
|
classes: {
|
|
8512
8585
|
label: string;
|
|
8513
8586
|
root: string;
|
|
@@ -8517,8 +8590,8 @@ declare const useClasses_113: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8517
8590
|
tagsList: string;
|
|
8518
8591
|
description: string;
|
|
8519
8592
|
error: string;
|
|
8520
|
-
invalid: string;
|
|
8521
8593
|
labelContainer: string;
|
|
8594
|
+
invalid: string;
|
|
8522
8595
|
resizable: string;
|
|
8523
8596
|
suggestionsContainer: string;
|
|
8524
8597
|
suggestionList: string;
|
|
@@ -8539,7 +8612,7 @@ declare const useClasses_113: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8539
8612
|
cx: (...args: any) => string;
|
|
8540
8613
|
};
|
|
8541
8614
|
|
|
8542
|
-
declare const useClasses_114: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "input" | "description" | "error" | "
|
|
8615
|
+
declare const useClasses_114: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "input" | "description" | "error" | "labelContainer" | "invalid" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
|
|
8543
8616
|
classes: {
|
|
8544
8617
|
label: string;
|
|
8545
8618
|
root: string;
|
|
@@ -8547,8 +8620,8 @@ declare const useClasses_114: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8547
8620
|
input: string;
|
|
8548
8621
|
description: string;
|
|
8549
8622
|
error: string;
|
|
8550
|
-
invalid: string;
|
|
8551
8623
|
labelContainer: string;
|
|
8624
|
+
invalid: string;
|
|
8552
8625
|
resizable: string;
|
|
8553
8626
|
inputResizable: string;
|
|
8554
8627
|
characterCounter: string;
|
|
@@ -8624,7 +8697,7 @@ declare const useClasses_119: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8624
8697
|
cx: (...args: any) => string;
|
|
8625
8698
|
};
|
|
8626
8699
|
|
|
8627
|
-
declare const useClasses_12: (classesProp?: Partial<Record<"secondary" | "primary" | "root" | "disabled" | "semantic" | "icon" | "secondarySubtle" | "ghost" | "secondaryGhost" | "primaryGhost" | "subtle" | "
|
|
8700
|
+
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
8701
|
classes: {
|
|
8629
8702
|
secondary: string;
|
|
8630
8703
|
primary: string;
|
|
@@ -8637,10 +8710,10 @@ declare const useClasses_12: (classesProp?: Partial<Record<"secondary" | "primar
|
|
|
8637
8710
|
secondaryGhost: string;
|
|
8638
8711
|
primaryGhost: string;
|
|
8639
8712
|
subtle: string;
|
|
8640
|
-
|
|
8713
|
+
focusVisible: string;
|
|
8641
8714
|
startIcon: string;
|
|
8642
8715
|
endIcon: string;
|
|
8643
|
-
|
|
8716
|
+
primarySubtle: string;
|
|
8644
8717
|
};
|
|
8645
8718
|
css: any;
|
|
8646
8719
|
cx: (...args: any) => string;
|
|
@@ -8688,14 +8761,14 @@ declare const useClasses_123: (classesProp?: Partial<Record<"action" | "minimize
|
|
|
8688
8761
|
cx: (...args: any) => string;
|
|
8689
8762
|
};
|
|
8690
8763
|
|
|
8691
|
-
declare const useClasses_124: (classesProp?: Partial<Record<"root" | "listItem" | "list" | "navigationPopup" | "
|
|
8764
|
+
declare const useClasses_124: (classesProp?: Partial<Record<"root" | "listItem" | "list" | "navigationPopup" | "collapsed" | "popup", string>>, addStatic?: boolean) => {
|
|
8692
8765
|
classes: {
|
|
8693
8766
|
root: string;
|
|
8694
8767
|
listItem: string;
|
|
8695
8768
|
list: string;
|
|
8696
8769
|
navigationPopup: string;
|
|
8697
|
-
popup: string;
|
|
8698
8770
|
collapsed: string;
|
|
8771
|
+
popup: string;
|
|
8699
8772
|
};
|
|
8700
8773
|
css: any;
|
|
8701
8774
|
cx: (...args: any) => string;
|
|
@@ -8722,7 +8795,7 @@ declare const useClasses_126: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8722
8795
|
cx: (...args: any) => string;
|
|
8723
8796
|
};
|
|
8724
8797
|
|
|
8725
|
-
declare const useClasses_127: (classesProp?: Partial<Record<"content" | "label" | "link" | "disabled" | "icon" | "selectable" | "selected" | "hide" | "expanded" | "unselectable" | "group" | "node" | "focused" | "
|
|
8798
|
+
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
8799
|
classes: {
|
|
8727
8800
|
content: string;
|
|
8728
8801
|
label: string;
|
|
@@ -8737,10 +8810,10 @@ declare const useClasses_127: (classesProp?: Partial<Record<"content" | "label"
|
|
|
8737
8810
|
group: string;
|
|
8738
8811
|
node: string;
|
|
8739
8812
|
focused: string;
|
|
8740
|
-
expandable: string;
|
|
8741
8813
|
labelIcon: string;
|
|
8742
8814
|
collapsed: string;
|
|
8743
8815
|
minimized: string;
|
|
8816
|
+
expandable: string;
|
|
8744
8817
|
unselected: string;
|
|
8745
8818
|
labelExpandable: string;
|
|
8746
8819
|
};
|
|
@@ -8841,7 +8914,7 @@ declare const useClasses_17: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
8841
8914
|
cx: (...args: any) => string;
|
|
8842
8915
|
};
|
|
8843
8916
|
|
|
8844
|
-
declare const useClasses_18: (classesProp?: Partial<Record<"container" | "header" | "root" | "headerOpen" | "headerDisabled" | "headerReadOnly" | "placeholder" | "panel" | "inputExtensionOpen" | "anchor" | "
|
|
8917
|
+
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
8918
|
classes: {
|
|
8846
8919
|
container: string;
|
|
8847
8920
|
header: string;
|
|
@@ -8853,9 +8926,9 @@ declare const useClasses_18: (classesProp?: Partial<Record<"container" | "header
|
|
|
8853
8926
|
panel: string;
|
|
8854
8927
|
inputExtensionOpen: string;
|
|
8855
8928
|
anchor: string;
|
|
8929
|
+
arrow: string;
|
|
8856
8930
|
selection: string;
|
|
8857
8931
|
arrowContainer: string;
|
|
8858
|
-
arrow: string;
|
|
8859
8932
|
panelOpenedUp: string;
|
|
8860
8933
|
panelOpenedDown: string;
|
|
8861
8934
|
rootDisabled: string;
|
|
@@ -8883,16 +8956,16 @@ declare const useClasses_19: (classesProp?: Partial<Record<"container" | "label"
|
|
|
8883
8956
|
cx: (...args: any) => string;
|
|
8884
8957
|
};
|
|
8885
8958
|
|
|
8886
|
-
declare const useClasses_2: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "
|
|
8959
|
+
declare const useClasses_2: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "focusDisabled" | "focused" | "externalReference" | "falseFocus" | "focus", string>>, addStatic?: boolean) => {
|
|
8887
8960
|
classes: {
|
|
8888
8961
|
root: string;
|
|
8889
8962
|
disabled: string;
|
|
8890
8963
|
selected: string;
|
|
8891
|
-
focus: string;
|
|
8892
8964
|
focusDisabled: string;
|
|
8893
8965
|
focused: string;
|
|
8894
8966
|
externalReference: string;
|
|
8895
8967
|
falseFocus: string;
|
|
8968
|
+
focus: string;
|
|
8896
8969
|
};
|
|
8897
8970
|
css: any;
|
|
8898
8971
|
cx: (...args: any) => string;
|
|
@@ -8973,7 +9046,7 @@ declare const useClasses_24: (classesProp?: Partial<Record<"typography" | "root"
|
|
|
8973
9046
|
cx: (...args: any) => string;
|
|
8974
9047
|
};
|
|
8975
9048
|
|
|
8976
|
-
declare const useClasses_25: (classesProp?: Partial<Record<"container" | "xs" | "sm" | "md" | "lg" | "xl" | "root" | "square" | "img" | "status" | "
|
|
9049
|
+
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
9050
|
classes: {
|
|
8978
9051
|
container: string;
|
|
8979
9052
|
xs: string;
|
|
@@ -8985,10 +9058,10 @@ declare const useClasses_25: (classesProp?: Partial<Record<"container" | "xs" |
|
|
|
8985
9058
|
square: string;
|
|
8986
9059
|
img: string;
|
|
8987
9060
|
status: string;
|
|
8988
|
-
fallback: string;
|
|
8989
9061
|
avatar: string;
|
|
8990
|
-
badge: string;
|
|
8991
9062
|
circular: string;
|
|
9063
|
+
fallback: string;
|
|
9064
|
+
badge: string;
|
|
8992
9065
|
};
|
|
8993
9066
|
css: any;
|
|
8994
9067
|
cx: (...args: any) => string;
|
|
@@ -9006,14 +9079,14 @@ declare const useClasses_26: (classesProp?: Partial<Record<"root" | "row" | "col
|
|
|
9006
9079
|
cx: (...args: any) => string;
|
|
9007
9080
|
};
|
|
9008
9081
|
|
|
9009
|
-
declare const useClasses_27: (classesProp?: Partial<Record<"root" | "badge" | "
|
|
9082
|
+
declare const useClasses_27: (classesProp?: Partial<Record<"root" | "badge" | "showLabel" | "badgeContainer" | "badgePosition" | "showCount" | "badgeIcon" | "badgeOneDigit", string>>, addStatic?: boolean) => {
|
|
9010
9083
|
classes: {
|
|
9011
9084
|
root: string;
|
|
9012
9085
|
badge: string;
|
|
9086
|
+
showLabel: string;
|
|
9013
9087
|
badgeContainer: string;
|
|
9014
9088
|
badgePosition: string;
|
|
9015
9089
|
showCount: string;
|
|
9016
|
-
showLabel: string;
|
|
9017
9090
|
badgeIcon: string;
|
|
9018
9091
|
badgeOneDigit: string;
|
|
9019
9092
|
};
|
|
@@ -9021,23 +9094,23 @@ declare const useClasses_27: (classesProp?: Partial<Record<"root" | "badge" | "b
|
|
|
9021
9094
|
cx: (...args: any) => string;
|
|
9022
9095
|
};
|
|
9023
9096
|
|
|
9024
|
-
declare const useClasses_28: (classesProp?: Partial<Record<"root" | "
|
|
9097
|
+
declare const useClasses_28: (classesProp?: Partial<Record<"root" | "anchorOriginTopCenter" | "anchorOriginBottomCenter" | "rootClosed", string>>, addStatic?: boolean) => {
|
|
9025
9098
|
classes: {
|
|
9026
9099
|
root: string;
|
|
9027
|
-
rootClosed: string;
|
|
9028
9100
|
anchorOriginTopCenter: string;
|
|
9029
9101
|
anchorOriginBottomCenter: string;
|
|
9102
|
+
rootClosed: string;
|
|
9030
9103
|
};
|
|
9031
9104
|
css: any;
|
|
9032
9105
|
cx: (...args: any) => string;
|
|
9033
9106
|
};
|
|
9034
9107
|
|
|
9035
|
-
declare const useClasses_29: (classesProp?: Partial<Record<"
|
|
9108
|
+
declare const useClasses_29: (classesProp?: Partial<Record<"iconContainer" | "actionContainer" | "actionsInnerContainer" | "closeAction", string>>, addStatic?: boolean) => {
|
|
9036
9109
|
classes: {
|
|
9110
|
+
iconContainer: string;
|
|
9037
9111
|
actionContainer: string;
|
|
9038
9112
|
actionsInnerContainer: string;
|
|
9039
9113
|
closeAction: string;
|
|
9040
|
-
iconContainer: string;
|
|
9041
9114
|
};
|
|
9042
9115
|
css: any;
|
|
9043
9116
|
cx: (...args: any) => string;
|
|
@@ -9110,28 +9183,28 @@ declare const useClasses_33: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
9110
9183
|
cx: (...args: any) => string;
|
|
9111
9184
|
};
|
|
9112
9185
|
|
|
9113
|
-
declare const useClasses_34: (classesProp?: Partial<Record<"link" | "root" | "a" | "
|
|
9186
|
+
declare const useClasses_34: (classesProp?: Partial<Record<"link" | "root" | "a" | "centerContainer" | "separatorContainer" | "orderedList" | "currentPage", string>>, addStatic?: boolean) => {
|
|
9114
9187
|
classes: {
|
|
9115
9188
|
link: string;
|
|
9116
9189
|
root: string;
|
|
9117
9190
|
a: string;
|
|
9118
|
-
orderedList: string;
|
|
9119
|
-
currentPage: string;
|
|
9120
9191
|
centerContainer: string;
|
|
9121
9192
|
separatorContainer: string;
|
|
9193
|
+
orderedList: string;
|
|
9194
|
+
currentPage: string;
|
|
9122
9195
|
};
|
|
9123
9196
|
css: any;
|
|
9124
9197
|
cx: (...args: any) => string;
|
|
9125
9198
|
};
|
|
9126
9199
|
|
|
9127
|
-
declare const useClasses_35: (classesProp?: Partial<Record<"root" | "semantic" | "divider" | "
|
|
9200
|
+
declare const useClasses_35: (classesProp?: Partial<Record<"root" | "semantic" | "divider" | "actions" | "selectAllContainer" | "selectAll" | "selectAllPages", string>>, addStatic?: boolean) => {
|
|
9128
9201
|
classes: {
|
|
9129
9202
|
root: string;
|
|
9130
9203
|
semantic: string;
|
|
9131
9204
|
divider: string;
|
|
9132
|
-
selectAll: string;
|
|
9133
9205
|
actions: string;
|
|
9134
9206
|
selectAllContainer: string;
|
|
9207
|
+
selectAll: string;
|
|
9135
9208
|
selectAllPages: string;
|
|
9136
9209
|
};
|
|
9137
9210
|
css: any;
|
|
@@ -9156,14 +9229,14 @@ declare const useClasses_36: (classesProp?: Partial<Record<"container" | "label"
|
|
|
9156
9229
|
cx: (...args: any) => string;
|
|
9157
9230
|
};
|
|
9158
9231
|
|
|
9159
|
-
declare const useClasses_37: (classesProp?: Partial<Record<"root" | "
|
|
9232
|
+
declare const useClasses_37: (classesProp?: Partial<Record<"root" | "focusSelection" | "calendarMonthlyCell" | "calendarMonthlyCellSelected" | "rangeCalendarContainer" | "singleCalendar", string>>, addStatic?: boolean) => {
|
|
9160
9233
|
classes: {
|
|
9161
9234
|
root: string;
|
|
9162
|
-
rangeCalendarContainer: string;
|
|
9163
|
-
singleCalendar: string;
|
|
9164
9235
|
focusSelection: string;
|
|
9165
9236
|
calendarMonthlyCell: string;
|
|
9166
9237
|
calendarMonthlyCellSelected: string;
|
|
9238
|
+
rangeCalendarContainer: string;
|
|
9239
|
+
singleCalendar: string;
|
|
9167
9240
|
};
|
|
9168
9241
|
css: any;
|
|
9169
9242
|
cx: (...args: any) => string;
|
|
@@ -9196,17 +9269,17 @@ declare const useClasses_39: (classesProp?: Partial<Record<"root" | "icon" | "se
|
|
|
9196
9269
|
cx: (...args: any) => string;
|
|
9197
9270
|
};
|
|
9198
9271
|
|
|
9199
|
-
declare const useClasses_4: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "condensed" | "focus" | "
|
|
9272
|
+
declare const useClasses_4: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "condensed" | "focus" | "startAdornment" | "endAdornment" | "gutters" | "interactive" | "withStartAdornment" | "withEndAdornment", string>>, addStatic?: boolean) => {
|
|
9200
9273
|
classes: {
|
|
9201
9274
|
root: string;
|
|
9202
9275
|
disabled: string;
|
|
9203
9276
|
selected: string;
|
|
9204
9277
|
condensed: string;
|
|
9205
9278
|
focus: string;
|
|
9206
|
-
interactive: string;
|
|
9207
9279
|
startAdornment: string;
|
|
9208
9280
|
endAdornment: string;
|
|
9209
9281
|
gutters: string;
|
|
9282
|
+
interactive: string;
|
|
9210
9283
|
withStartAdornment: string;
|
|
9211
9284
|
withEndAdornment: string;
|
|
9212
9285
|
};
|
|
@@ -9244,7 +9317,7 @@ declare const useClasses_42: (classesProp?: Partial<Record<"root" | "media", str
|
|
|
9244
9317
|
cx: (...args: any) => string;
|
|
9245
9318
|
};
|
|
9246
9319
|
|
|
9247
|
-
declare const useClasses_43: (classesProp?: Partial<Record<"xs" | "root" | "panel" | "title" | "controls" | "counterContainer" | "thumbnail" | "thumbnailSelected" | "dot" | "main" | "
|
|
9320
|
+
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
9321
|
classes: {
|
|
9249
9322
|
xs: string;
|
|
9250
9323
|
root: string;
|
|
@@ -9256,7 +9329,7 @@ declare const useClasses_43: (classesProp?: Partial<Record<"xs" | "root" | "pane
|
|
|
9256
9329
|
thumbnailSelected: string;
|
|
9257
9330
|
dot: string;
|
|
9258
9331
|
main: string;
|
|
9259
|
-
|
|
9332
|
+
dots: string;
|
|
9260
9333
|
actions: string;
|
|
9261
9334
|
fullscreen: string;
|
|
9262
9335
|
closeButton: string;
|
|
@@ -9264,10 +9337,10 @@ declare const useClasses_43: (classesProp?: Partial<Record<"xs" | "root" | "pane
|
|
|
9264
9337
|
pageCounter: string;
|
|
9265
9338
|
mainXs: string;
|
|
9266
9339
|
mainFullscreen: string;
|
|
9340
|
+
counter: string;
|
|
9267
9341
|
slideControls: string;
|
|
9268
9342
|
slidesViewport: string;
|
|
9269
9343
|
slidesContainer: string;
|
|
9270
|
-
dots: string;
|
|
9271
9344
|
dotsXs: string;
|
|
9272
9345
|
dotSelected: string;
|
|
9273
9346
|
};
|
|
@@ -9284,7 +9357,7 @@ declare const useClasses_44: (classesProp?: Partial<Record<"image" | "slide", st
|
|
|
9284
9357
|
cx: (...args: any) => string;
|
|
9285
9358
|
};
|
|
9286
9359
|
|
|
9287
|
-
declare const useClasses_45: (classesProp?: Partial<Record<"label" | "root" | "inputBorderContainer" | "inputRoot" | "inputRootFocused" | "inputRootMultiline" | "input" | "icon" | "description" | "error" | "
|
|
9360
|
+
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
9361
|
classes: {
|
|
9289
9362
|
label: string;
|
|
9290
9363
|
root: string;
|
|
@@ -9296,8 +9369,8 @@ declare const useClasses_45: (classesProp?: Partial<Record<"label" | "root" | "i
|
|
|
9296
9369
|
icon: string;
|
|
9297
9370
|
description: string;
|
|
9298
9371
|
error: string;
|
|
9299
|
-
adornmentButton: string;
|
|
9300
9372
|
labelContainer: string;
|
|
9373
|
+
adornmentButton: string;
|
|
9301
9374
|
inputRootDisabled: string;
|
|
9302
9375
|
adornmentsBox: string;
|
|
9303
9376
|
iconClear: string;
|
|
@@ -9404,7 +9477,7 @@ declare const useClasses_50: (classesProp?: Partial<Record<"root" | "section" |
|
|
|
9404
9477
|
cx: (...args: any) => string;
|
|
9405
9478
|
};
|
|
9406
9479
|
|
|
9407
|
-
declare const useClasses_51: (classesProp?: Partial<Record<"body" | "root" | "head" | "variantListactions" | "variantListcheckbox" | "variantList" | "footer" | "
|
|
9480
|
+
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
9481
|
classes: {
|
|
9409
9482
|
body: string;
|
|
9410
9483
|
root: string;
|
|
@@ -9413,12 +9486,12 @@ declare const useClasses_51: (classesProp?: Partial<Record<"body" | "root" | "he
|
|
|
9413
9486
|
variantListcheckbox: string;
|
|
9414
9487
|
variantList: string;
|
|
9415
9488
|
footer: string;
|
|
9416
|
-
resizable: string;
|
|
9417
|
-
sorted: string;
|
|
9418
9489
|
alignLeft: string;
|
|
9419
9490
|
alignCenter: string;
|
|
9420
9491
|
alignRight: string;
|
|
9421
9492
|
alignJustify: string;
|
|
9493
|
+
resizable: string;
|
|
9494
|
+
sorted: string;
|
|
9422
9495
|
variantNone: string;
|
|
9423
9496
|
variantCheckbox: string;
|
|
9424
9497
|
variantActions: string;
|
|
@@ -9435,7 +9508,7 @@ declare const useClasses_51: (classesProp?: Partial<Record<"body" | "root" | "he
|
|
|
9435
9508
|
cx: (...args: any) => string;
|
|
9436
9509
|
};
|
|
9437
9510
|
|
|
9438
|
-
declare const useClasses_52: (classesProp?: Partial<Record<"body" | "root" | "selected" | "head" | "variantList" | "expanded" | "footer" | "
|
|
9511
|
+
declare const useClasses_52: (classesProp?: Partial<Record<"body" | "root" | "selected" | "head" | "variantList" | "expanded" | "footer" | "hover" | "variantListHead" | "striped", string>>, addStatic?: boolean) => {
|
|
9439
9512
|
classes: {
|
|
9440
9513
|
body: string;
|
|
9441
9514
|
root: string;
|
|
@@ -9444,15 +9517,15 @@ declare const useClasses_52: (classesProp?: Partial<Record<"body" | "root" | "se
|
|
|
9444
9517
|
variantList: string;
|
|
9445
9518
|
expanded: string;
|
|
9446
9519
|
footer: string;
|
|
9520
|
+
hover: string;
|
|
9447
9521
|
variantListHead: string;
|
|
9448
9522
|
striped: string;
|
|
9449
|
-
hover: string;
|
|
9450
9523
|
};
|
|
9451
9524
|
css: any;
|
|
9452
9525
|
cx: (...args: any) => string;
|
|
9453
9526
|
};
|
|
9454
9527
|
|
|
9455
|
-
declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "head" | "sortButton" | "variantList" | "resizer" | "footer" | "
|
|
9528
|
+
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
9529
|
classes: {
|
|
9457
9530
|
body: string;
|
|
9458
9531
|
root: string;
|
|
@@ -9461,12 +9534,12 @@ declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "he
|
|
|
9461
9534
|
variantList: string;
|
|
9462
9535
|
resizer: string;
|
|
9463
9536
|
footer: string;
|
|
9464
|
-
resizable: string;
|
|
9465
|
-
sorted: string;
|
|
9466
9537
|
alignLeft: string;
|
|
9467
9538
|
alignCenter: string;
|
|
9468
9539
|
alignRight: string;
|
|
9469
9540
|
alignJustify: string;
|
|
9541
|
+
resizable: string;
|
|
9542
|
+
sorted: string;
|
|
9470
9543
|
variantNone: string;
|
|
9471
9544
|
variantCheckbox: string;
|
|
9472
9545
|
variantActions: string;
|
|
@@ -9520,7 +9593,7 @@ declare const useClasses_56: (classesProp?: Partial<Record<"root" | "sortDropdow
|
|
|
9520
9593
|
cx: (...args: any) => string;
|
|
9521
9594
|
};
|
|
9522
9595
|
|
|
9523
|
-
declare const useClasses_57: (classesProp?: Partial<Record<"label" | "root" | "placeholder" | "disabled" | "readOnly" | "placeholderClosed" | "dropdown" | "description" | "error" | "arrow" | "labelContainer" | "selectionDisabled" | "
|
|
9596
|
+
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
9597
|
classes: {
|
|
9525
9598
|
label: string;
|
|
9526
9599
|
root: string;
|
|
@@ -9534,25 +9607,25 @@ declare const useClasses_57: (classesProp?: Partial<Record<"label" | "root" | "p
|
|
|
9534
9607
|
arrow: string;
|
|
9535
9608
|
labelContainer: string;
|
|
9536
9609
|
selectionDisabled: string;
|
|
9610
|
+
rootList: string;
|
|
9611
|
+
dropdownListContainer: string;
|
|
9537
9612
|
dropdownHeader: string;
|
|
9538
9613
|
dropdownHeaderInvalid: string;
|
|
9539
9614
|
dropdownHeaderOpen: string;
|
|
9540
|
-
dropdownListContainer: string;
|
|
9541
|
-
rootList: string;
|
|
9542
9615
|
};
|
|
9543
9616
|
css: any;
|
|
9544
9617
|
cx: (...args: any) => string;
|
|
9545
9618
|
};
|
|
9546
9619
|
|
|
9547
|
-
declare const useClasses_58: (classesProp?: Partial<Record<"listContainer" | "selection" | "
|
|
9620
|
+
declare const useClasses_58: (classesProp?: Partial<Record<"listContainer" | "selection" | "selectAllContainer" | "selectAll" | "rootList" | "dropdownListContainer" | "virtualized" | "searchContainer" | "listBorderDown", string>>, addStatic?: boolean) => {
|
|
9548
9621
|
classes: {
|
|
9549
9622
|
listContainer: string;
|
|
9550
9623
|
selection: string;
|
|
9551
|
-
virtualized: string;
|
|
9552
|
-
selectAll: string;
|
|
9553
9624
|
selectAllContainer: string;
|
|
9554
|
-
|
|
9625
|
+
selectAll: string;
|
|
9555
9626
|
rootList: string;
|
|
9627
|
+
dropdownListContainer: string;
|
|
9628
|
+
virtualized: string;
|
|
9556
9629
|
searchContainer: string;
|
|
9557
9630
|
listBorderDown: string;
|
|
9558
9631
|
};
|
|
@@ -9583,9 +9656,10 @@ declare const useClasses_59: (classesProp?: Partial<Record<"label" | "root" | "p
|
|
|
9583
9656
|
cx: (...args: any) => string;
|
|
9584
9657
|
};
|
|
9585
9658
|
|
|
9586
|
-
declare const useClasses_6: (classesProp?: Partial<Record<"root" | "icon" | "adornment" | "adornmentIcon" | "hideIcon" | "adornmentButton", string>>, addStatic?: boolean) => {
|
|
9659
|
+
declare const useClasses_6: (classesProp?: Partial<Record<"root" | "disabled" | "icon" | "adornment" | "adornmentIcon" | "hideIcon" | "adornmentButton", string>>, addStatic?: boolean) => {
|
|
9587
9660
|
classes: {
|
|
9588
9661
|
root: string;
|
|
9662
|
+
disabled: string;
|
|
9589
9663
|
icon: string;
|
|
9590
9664
|
adornment: string;
|
|
9591
9665
|
adornmentIcon: string;
|
|
@@ -9680,13 +9754,13 @@ declare const useClasses_66: (classesProp?: Partial<Record<"background" | "root"
|
|
|
9680
9754
|
cx: (...args: any) => string;
|
|
9681
9755
|
};
|
|
9682
9756
|
|
|
9683
|
-
declare const useClasses_67: (classesProp?: Partial<Record<"container" | "root" | "titleContainer" | "
|
|
9757
|
+
declare const useClasses_67: (classesProp?: Partial<Record<"container" | "root" | "titleContainer" | "iconContainer" | "actionContainer" | "messageContainer" | "containerMessageOnly" | "textContainer", string>>, addStatic?: boolean) => {
|
|
9684
9758
|
classes: {
|
|
9685
9759
|
container: string;
|
|
9686
9760
|
root: string;
|
|
9687
9761
|
titleContainer: string;
|
|
9688
|
-
actionContainer: string;
|
|
9689
9762
|
iconContainer: string;
|
|
9763
|
+
actionContainer: string;
|
|
9690
9764
|
messageContainer: string;
|
|
9691
9765
|
containerMessageOnly: string;
|
|
9692
9766
|
textContainer: string;
|
|
@@ -9771,7 +9845,7 @@ declare const useClasses_72: (classesProp?: Partial<Record<"name" | "small" | "r
|
|
|
9771
9845
|
cx: (...args: any) => string;
|
|
9772
9846
|
};
|
|
9773
9847
|
|
|
9774
|
-
declare const useClasses_73: (classesProp?: Partial<Record<"name" | "root" | "section" | "wrapper" | "sectionName" | "backButton" | "
|
|
9848
|
+
declare const useClasses_73: (classesProp?: Partial<Record<"name" | "root" | "section" | "wrapper" | "sectionName" | "backButton" | "positionFixed" | "positionSticky" | "actions" | "global" | "globalSectionArea" | "globalWrapperComplement", string>>, addStatic?: boolean) => {
|
|
9775
9849
|
classes: {
|
|
9776
9850
|
name: string;
|
|
9777
9851
|
root: string;
|
|
@@ -9779,9 +9853,9 @@ declare const useClasses_73: (classesProp?: Partial<Record<"name" | "root" | "se
|
|
|
9779
9853
|
wrapper: string;
|
|
9780
9854
|
sectionName: string;
|
|
9781
9855
|
backButton: string;
|
|
9782
|
-
actions: string;
|
|
9783
|
-
positionSticky: string;
|
|
9784
9856
|
positionFixed: string;
|
|
9857
|
+
positionSticky: string;
|
|
9858
|
+
actions: string;
|
|
9785
9859
|
global: string;
|
|
9786
9860
|
globalSectionArea: string;
|
|
9787
9861
|
globalWrapperComplement: string;
|
|
@@ -9790,17 +9864,16 @@ declare const useClasses_73: (classesProp?: Partial<Record<"name" | "root" | "se
|
|
|
9790
9864
|
cx: (...args: any) => string;
|
|
9791
9865
|
};
|
|
9792
9866
|
|
|
9793
|
-
declare const useClasses_74: (classesProp?: Partial<Record<"container" | "root" | "
|
|
9867
|
+
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
9868
|
classes: {
|
|
9795
9869
|
container: string;
|
|
9796
9870
|
root: string;
|
|
9797
|
-
item: string;
|
|
9798
|
-
zeroMinWidth: string;
|
|
9799
9871
|
"direction-xs-column": string;
|
|
9800
|
-
"direction-xs-reverse": string;
|
|
9801
9872
|
"direction-xs-row-reverse": string;
|
|
9802
9873
|
"wrap-xs-nowrap": string;
|
|
9803
9874
|
"wrap-xs-wrap-reverse": string;
|
|
9875
|
+
item: string;
|
|
9876
|
+
zeroMinWidth: string;
|
|
9804
9877
|
"spacing-xs-1": string;
|
|
9805
9878
|
"spacing-xs-2": string;
|
|
9806
9879
|
"spacing-xs-3": string;
|
|
@@ -9825,16 +9898,18 @@ declare const useClasses_74: (classesProp?: Partial<Record<"container" | "root"
|
|
|
9825
9898
|
"grid-xs-10": string;
|
|
9826
9899
|
"grid-xs-11": string;
|
|
9827
9900
|
"grid-xs-12": string;
|
|
9901
|
+
"direction-xs-reverse": string;
|
|
9828
9902
|
};
|
|
9829
9903
|
css: any;
|
|
9830
9904
|
cx: (...args: any) => string;
|
|
9831
9905
|
};
|
|
9832
9906
|
|
|
9833
|
-
declare const useClasses_75: (classesProp?: Partial<Record<"backgroundColor" | "header" | "root", string>>, addStatic?: boolean) => {
|
|
9907
|
+
declare const useClasses_75: (classesProp?: Partial<Record<"backgroundColor" | "header" | "root" | "fixed", string>>, addStatic?: boolean) => {
|
|
9834
9908
|
classes: {
|
|
9835
9909
|
backgroundColor: string;
|
|
9836
9910
|
header: string;
|
|
9837
9911
|
root: string;
|
|
9912
|
+
fixed: string;
|
|
9838
9913
|
};
|
|
9839
9914
|
css: any;
|
|
9840
9915
|
cx: (...args: any) => string;
|
|
@@ -9961,7 +10036,7 @@ declare const useClasses_84: (classesProp?: Partial<Record<"link" | "root" | "it
|
|
|
9961
10036
|
cx: (...args: any) => string;
|
|
9962
10037
|
};
|
|
9963
10038
|
|
|
9964
|
-
declare const useClasses_85: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "root" | "hidden" | "blur" | "
|
|
10039
|
+
declare const useClasses_85: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "root" | "hidden" | "blur" | "regular" | "barContainer" | "loadingBar" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
|
|
9965
10040
|
classes: {
|
|
9966
10041
|
overlay: string;
|
|
9967
10042
|
label: string;
|
|
@@ -9969,9 +10044,9 @@ declare const useClasses_85: (classesProp?: Partial<Record<"overlay" | "label" |
|
|
|
9969
10044
|
root: string;
|
|
9970
10045
|
hidden: string;
|
|
9971
10046
|
blur: string;
|
|
10047
|
+
regular: string;
|
|
9972
10048
|
barContainer: string;
|
|
9973
10049
|
loadingBar: string;
|
|
9974
|
-
regular: string;
|
|
9975
10050
|
smallColor: string;
|
|
9976
10051
|
regularColor: string;
|
|
9977
10052
|
};
|
|
@@ -9997,7 +10072,7 @@ declare const useClasses_87: (classesProp?: Partial<Record<"root" | "formContain
|
|
|
9997
10072
|
cx: (...args: any) => string;
|
|
9998
10073
|
};
|
|
9999
10074
|
|
|
10000
|
-
declare const useClasses_88: (classesProp?: Partial<Record<"secondary" | "primary" | "vertical" | "root" | "secondarySubtle" | "selected" | "button" | "secondaryGhost" | "splitDisabled" | "multiple" | "primaryGhost" | "splitGroup" | "splitGroupDisabled" | "splitContainer" | "split" | "
|
|
10075
|
+
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
10076
|
classes: {
|
|
10002
10077
|
secondary: string;
|
|
10003
10078
|
primary: string;
|
|
@@ -10014,9 +10089,9 @@ declare const useClasses_88: (classesProp?: Partial<Record<"secondary" | "primar
|
|
|
10014
10089
|
splitGroupDisabled: string;
|
|
10015
10090
|
splitContainer: string;
|
|
10016
10091
|
split: string;
|
|
10017
|
-
primarySubtle: string;
|
|
10018
10092
|
firstButton: string;
|
|
10019
10093
|
lastButton: string;
|
|
10094
|
+
primarySubtle: string;
|
|
10020
10095
|
};
|
|
10021
10096
|
css: any;
|
|
10022
10097
|
cx: (...args: any) => string;
|
|
@@ -10159,13 +10234,13 @@ declare const useClasses_97: (classesProp?: Partial<Record<"root" | "selected" |
|
|
|
10159
10234
|
cx: (...args: any) => string;
|
|
10160
10235
|
};
|
|
10161
10236
|
|
|
10162
|
-
declare const useClasses_98: (classesProp?: Partial<Record<"root" | "selected" | "notSelected" | "
|
|
10237
|
+
declare const useClasses_98: (classesProp?: Partial<Record<"root" | "selected" | "notSelected" | "positionFixed" | "positionSticky" | "notSelectedRoot", string>>, addStatic?: boolean) => {
|
|
10163
10238
|
classes: {
|
|
10164
10239
|
root: string;
|
|
10165
10240
|
selected: string;
|
|
10166
10241
|
notSelected: string;
|
|
10167
|
-
positionSticky: string;
|
|
10168
10242
|
positionFixed: string;
|
|
10243
|
+
positionSticky: string;
|
|
10169
10244
|
notSelectedRoot: string;
|
|
10170
10245
|
};
|
|
10171
10246
|
css: any;
|
|
@@ -10369,7 +10444,7 @@ export declare const useHvRowState: typeof useRowState;
|
|
|
10369
10444
|
|
|
10370
10445
|
export declare const useHvSnackbar: () => {
|
|
10371
10446
|
enqueueSnackbar: (message: React.ReactNode, options?: HvNotistackSnackMessageProps) => SnackbarKey;
|
|
10372
|
-
closeSnackbar: (key?: SnackbarKey) => void;
|
|
10447
|
+
closeSnackbar: (key?: SnackbarKey | undefined) => void;
|
|
10373
10448
|
};
|
|
10374
10449
|
|
|
10375
10450
|
export declare const useHvSortBy: UseHvSortByProps;
|
|
@@ -10705,8 +10780,8 @@ export declare const verticalNavigationTreeClasses: {
|
|
|
10705
10780
|
listItem: "HvVerticalNavigationTree-listItem";
|
|
10706
10781
|
list: "HvVerticalNavigationTree-list";
|
|
10707
10782
|
navigationPopup: "HvVerticalNavigationTree-navigationPopup";
|
|
10708
|
-
popup: "HvVerticalNavigationTree-popup";
|
|
10709
10783
|
collapsed: "HvVerticalNavigationTree-collapsed";
|
|
10784
|
+
popup: "HvVerticalNavigationTree-popup";
|
|
10710
10785
|
};
|
|
10711
10786
|
|
|
10712
10787
|
export declare const verticalScrollListItemClasses: {
|
|
@@ -10729,9 +10804,9 @@ export declare const warningTextClasses: {
|
|
|
10729
10804
|
topBorder: "HvWarningText-topBorder";
|
|
10730
10805
|
};
|
|
10731
10806
|
|
|
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) =>
|
|
10807
|
+
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
10808
|
|
|
10734
10809
|
/** @deprecated */
|
|
10735
|
-
export declare const wrapperTooltip: (hasTooltips: boolean, Component: any, label: any) => ((props: any) =>
|
|
10810
|
+
export declare const wrapperTooltip: (hasTooltips: boolean, Component: any, label: any) => ((props: any) => JSX_3.Element) | (() => any);
|
|
10736
10811
|
|
|
10737
10812
|
export { }
|