@hitachivantara/uikit-react-core 5.26.3 → 5.26.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/BaseDropdown/BaseDropdown.cjs +29 -19
- package/dist/cjs/components/BaseDropdown/BaseDropdown.cjs.map +1 -1
- package/dist/cjs/components/Carousel/Carousel.cjs +8 -8
- package/dist/cjs/components/Carousel/Carousel.cjs.map +1 -1
- package/dist/cjs/components/Container/Container.cjs.map +1 -1
- package/dist/cjs/components/Dropdown/Dropdown.cjs +1 -0
- package/dist/cjs/components/Dropdown/Dropdown.cjs.map +1 -1
- package/dist/cjs/components/Dropdown/List/List.cjs +1 -0
- package/dist/cjs/components/Dropdown/List/List.cjs.map +1 -1
- package/dist/cjs/components/Grid/Grid.cjs.map +1 -1
- package/dist/cjs/components/MultiButton/MultiButton.styles.cjs +1 -1
- package/dist/cjs/components/MultiButton/MultiButton.styles.cjs.map +1 -1
- package/dist/cjs/components/SimpleGrid/SimpleGrid.cjs +5 -2
- package/dist/cjs/components/SimpleGrid/SimpleGrid.cjs.map +1 -1
- package/dist/cjs/components/SimpleGrid/SimpleGrid.styles.cjs +3 -1
- package/dist/cjs/components/SimpleGrid/SimpleGrid.styles.cjs.map +1 -1
- package/dist/cjs/components/Table/TableHeader/TableHeader.styles.cjs +1 -1
- package/dist/cjs/components/Table/TableHeader/TableHeader.styles.cjs.map +1 -1
- package/dist/cjs/components/TimePicker/TimePicker.cjs +5 -1
- package/dist/cjs/components/TimePicker/TimePicker.cjs.map +1 -1
- package/dist/cjs/components/VerticalNavigation/Actions/Action.cjs +3 -0
- package/dist/cjs/components/VerticalNavigation/Actions/Action.cjs.map +1 -1
- package/dist/cjs/index.cjs +2 -0
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/components/BaseDropdown/BaseDropdown.js +29 -19
- package/dist/esm/components/BaseDropdown/BaseDropdown.js.map +1 -1
- package/dist/esm/components/Carousel/Carousel.js +8 -8
- package/dist/esm/components/Carousel/Carousel.js.map +1 -1
- package/dist/esm/components/Container/Container.js.map +1 -1
- package/dist/esm/components/Dropdown/Dropdown.js +1 -0
- package/dist/esm/components/Dropdown/Dropdown.js.map +1 -1
- package/dist/esm/components/Dropdown/List/List.js +1 -0
- package/dist/esm/components/Dropdown/List/List.js.map +1 -1
- package/dist/esm/components/Grid/Grid.js.map +1 -1
- package/dist/esm/components/MultiButton/MultiButton.styles.js +1 -1
- package/dist/esm/components/MultiButton/MultiButton.styles.js.map +1 -1
- package/dist/esm/components/SimpleGrid/SimpleGrid.js +7 -3
- package/dist/esm/components/SimpleGrid/SimpleGrid.js.map +1 -1
- package/dist/esm/components/SimpleGrid/SimpleGrid.styles.js +3 -1
- package/dist/esm/components/SimpleGrid/SimpleGrid.styles.js.map +1 -1
- package/dist/esm/components/Table/TableHeader/TableHeader.styles.js +1 -1
- package/dist/esm/components/Table/TableHeader/TableHeader.styles.js.map +1 -1
- package/dist/esm/components/TimePicker/TimePicker.js +5 -1
- package/dist/esm/components/TimePicker/TimePicker.js.map +1 -1
- package/dist/esm/components/VerticalNavigation/Actions/Action.js +3 -0
- package/dist/esm/components/VerticalNavigation/Actions/Action.js.map +1 -1
- package/dist/esm/index.js +140 -138
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +255 -234
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -1047,7 +1047,7 @@ export declare interface HvActionBarProps extends HvBaseProps {
|
|
|
1047
1047
|
classes?: HvActionBarClasses;
|
|
1048
1048
|
}
|
|
1049
1049
|
|
|
1050
|
-
declare type HvActionContainerClasses = ExtractNames<typeof
|
|
1050
|
+
declare type HvActionContainerClasses = ExtractNames<typeof useClasses_73>;
|
|
1051
1051
|
|
|
1052
1052
|
declare interface HvActionContainerProps extends HvBaseProps<HTMLButtonElement> {
|
|
1053
1053
|
/** onClose function. */
|
|
@@ -1071,7 +1071,7 @@ export declare interface HvActionGeneric {
|
|
|
1071
1071
|
|
|
1072
1072
|
export declare const HvActionsGeneric: (props: HvActionsGenericProps) => JSX_2.Element | null;
|
|
1073
1073
|
|
|
1074
|
-
export declare type HvActionsGenericClasses = ExtractNames<typeof
|
|
1074
|
+
export declare type HvActionsGenericClasses = ExtractNames<typeof useClasses_69>;
|
|
1075
1075
|
|
|
1076
1076
|
export declare interface HvActionsGenericProps extends HvBaseProps {
|
|
1077
1077
|
/** Button category. */
|
|
@@ -1143,7 +1143,7 @@ export declare interface HvAppSwitcherActionApplication {
|
|
|
1143
1143
|
color?: string;
|
|
1144
1144
|
}
|
|
1145
1145
|
|
|
1146
|
-
export declare type HvAppSwitcherActionClasses = ExtractNames<typeof
|
|
1146
|
+
export declare type HvAppSwitcherActionClasses = ExtractNames<typeof useClasses_54>;
|
|
1147
1147
|
|
|
1148
1148
|
export declare interface HvAppSwitcherActionProps extends HvBaseProps {
|
|
1149
1149
|
/** The application data to be used to render the Action object. */
|
|
@@ -1156,7 +1156,7 @@ export declare interface HvAppSwitcherActionProps extends HvBaseProps {
|
|
|
1156
1156
|
classes?: HvAppSwitcherActionClasses;
|
|
1157
1157
|
}
|
|
1158
1158
|
|
|
1159
|
-
export declare type HvAppSwitcherClasses = ExtractNames<typeof
|
|
1159
|
+
export declare type HvAppSwitcherClasses = ExtractNames<typeof useClasses_53>;
|
|
1160
1160
|
|
|
1161
1161
|
export declare interface HvAppSwitcherProps extends HvBaseProps {
|
|
1162
1162
|
/** Number of columns to render. One, two, or whatever fits the component's width. */
|
|
@@ -1285,11 +1285,11 @@ export declare const HvBanner: (props: HvBannerProps) => JSX_2.Element;
|
|
|
1285
1285
|
|
|
1286
1286
|
export declare type HvBannerActionPosition = "auto" | "inline" | "bottom-right";
|
|
1287
1287
|
|
|
1288
|
-
export declare type HvBannerClasses = ExtractNames<typeof
|
|
1288
|
+
export declare type HvBannerClasses = ExtractNames<typeof useClasses_72>;
|
|
1289
1289
|
|
|
1290
1290
|
export declare const HvBannerContent: ForwardRefExoticComponent<Omit<HvBannerContentProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
1291
1291
|
|
|
1292
|
-
export declare type HvBannerContentClasses = ExtractNames<typeof
|
|
1292
|
+
export declare type HvBannerContentClasses = ExtractNames<typeof useClasses_74>;
|
|
1293
1293
|
|
|
1294
1294
|
export declare interface HvBannerContentProps extends Omit<SnackbarContentProps, "variant" | "classes" | "onClose">, HvBaseProps {
|
|
1295
1295
|
/** The message to display. */
|
|
@@ -1357,7 +1357,7 @@ export declare type HvBannerVariant = "success" | "warning" | "error" | "default
|
|
|
1357
1357
|
*/
|
|
1358
1358
|
export declare const HvBaseCheckBox: (props: HvBaseCheckBoxProps) => JSX_2.Element;
|
|
1359
1359
|
|
|
1360
|
-
export declare type HvBaseCheckBoxClasses = ExtractNames<typeof
|
|
1360
|
+
export declare type HvBaseCheckBoxClasses = ExtractNames<typeof useClasses_51>;
|
|
1361
1361
|
|
|
1362
1362
|
export declare interface HvBaseCheckBoxProps extends Omit<CheckboxProps, "onChange" | "classes">, HvBaseProps<HTMLButtonElement, "onChange" | "color"> {
|
|
1363
1363
|
/**
|
|
@@ -1572,7 +1572,7 @@ export declare type HvBaseProps<E extends HTMLElement = HTMLDivElement, K extend
|
|
|
1572
1572
|
*/
|
|
1573
1573
|
export declare const HvBaseRadio: (props: HvBaseRadioProps) => JSX_2.Element;
|
|
1574
1574
|
|
|
1575
|
-
export declare type HvBaseRadioClasses = ExtractNames<typeof
|
|
1575
|
+
export declare type HvBaseRadioClasses = ExtractNames<typeof useClasses_52>;
|
|
1576
1576
|
|
|
1577
1577
|
export declare interface HvBaseRadioProps extends Omit<RadioProps, "onChange" | "classes">, HvBaseProps<HTMLButtonElement, "onChange" | "color"> {
|
|
1578
1578
|
/**
|
|
@@ -1650,7 +1650,7 @@ export declare interface HvBaseRadioProps extends Omit<RadioProps, "onChange" |
|
|
|
1650
1650
|
*/
|
|
1651
1651
|
export declare const HvBaseSwitch: (props: HvBaseSwitchProps) => JSX_2.Element;
|
|
1652
1652
|
|
|
1653
|
-
export declare type HvBaseSwitchClasses = ExtractNames<typeof
|
|
1653
|
+
export declare type HvBaseSwitchClasses = ExtractNames<typeof useClasses_55>;
|
|
1654
1654
|
|
|
1655
1655
|
export declare interface HvBaseSwitchProps extends Omit<SwitchProps, "onChange" | "classes">, HvBaseProps<HTMLButtonElement, "onChange" | "color"> {
|
|
1656
1656
|
/**
|
|
@@ -1740,7 +1740,7 @@ export declare type HvBoxProps = <C extends React.ElementType = "div">(props: Hv
|
|
|
1740
1740
|
*/
|
|
1741
1741
|
export declare const HvBreadCrumb: (props: HvBreadCrumbProps) => JSX_2.Element;
|
|
1742
1742
|
|
|
1743
|
-
export declare type HvBreadCrumbClasses = ExtractNames<typeof
|
|
1743
|
+
export declare type HvBreadCrumbClasses = ExtractNames<typeof useClasses_70>;
|
|
1744
1744
|
|
|
1745
1745
|
export declare interface HvBreadCrumbPathElement extends Record<string, any> {
|
|
1746
1746
|
label: string;
|
|
@@ -1772,7 +1772,7 @@ export declare type HvBreakpoints = "xs" | "sm" | "md" | "lg" | "xl";
|
|
|
1772
1772
|
*/
|
|
1773
1773
|
export declare const HvBulkActions: (props: HvBulkActionsProps) => JSX_2.Element;
|
|
1774
1774
|
|
|
1775
|
-
export declare type HvBulkActionsClasses = ExtractNames<typeof
|
|
1775
|
+
export declare type HvBulkActionsClasses = ExtractNames<typeof useClasses_78>;
|
|
1776
1776
|
|
|
1777
1777
|
export declare type HvBulkActionsPropGetter<D extends object> = PropGetter<D, HvTAbleBulkActionsProps>;
|
|
1778
1778
|
|
|
@@ -1881,14 +1881,14 @@ export declare type HvButtonVariant = (typeof buttonVariant)[number];
|
|
|
1881
1881
|
|
|
1882
1882
|
export declare const HvCalendar: (props: HvCalendarProps) => JSX_2.Element;
|
|
1883
1883
|
|
|
1884
|
-
export declare type HvCalendarClasses = ExtractNames<typeof
|
|
1884
|
+
export declare type HvCalendarClasses = ExtractNames<typeof useClasses_93>;
|
|
1885
1885
|
|
|
1886
1886
|
export declare const HvCalendarHeader: {
|
|
1887
1887
|
({ id, value, locale, classes: classesProp, onChange, showEndDate, showDayOfWeek, onFocus, invalidDateLabel, ...others }: HvCalendarHeaderProps): JSX_2.Element;
|
|
1888
1888
|
formElementType: string;
|
|
1889
1889
|
};
|
|
1890
1890
|
|
|
1891
|
-
export declare type HvCalendarHeaderClasses = ExtractNames<typeof
|
|
1891
|
+
export declare type HvCalendarHeaderClasses = ExtractNames<typeof useClasses_94>;
|
|
1892
1892
|
|
|
1893
1893
|
export declare interface HvCalendarHeaderProps {
|
|
1894
1894
|
/**
|
|
@@ -2083,13 +2083,13 @@ export declare interface HvCardProps extends HvBaseProps {
|
|
|
2083
2083
|
*/
|
|
2084
2084
|
export declare const HvCarousel: (props: HvCarouselProps) => JSX_2.Element;
|
|
2085
2085
|
|
|
2086
|
-
export declare type HvCarouselClasses = ExtractNames<typeof
|
|
2086
|
+
export declare type HvCarouselClasses = ExtractNames<typeof useClasses_115>;
|
|
2087
2087
|
|
|
2088
2088
|
export declare const HvCarouselControls: (props: HvCarouselControlsProps) => JSX_2.Element;
|
|
2089
2089
|
|
|
2090
2090
|
declare interface HvCarouselControlsProps extends HvBaseProps<HTMLDivElement>, Pick<HvPaginationProps, "page" | "pages" | "canPrevious" | "canNext"> {
|
|
2091
2091
|
showDots?: boolean;
|
|
2092
|
-
classes?: ExtractNames<typeof
|
|
2092
|
+
classes?: ExtractNames<typeof useClasses_115>;
|
|
2093
2093
|
actions?: ReactNode;
|
|
2094
2094
|
onPreviousClick?: MouseEventHandler<HTMLButtonElement>;
|
|
2095
2095
|
onNextClick?: MouseEventHandler<HTMLButtonElement>;
|
|
@@ -2136,7 +2136,7 @@ export declare interface HvCarouselProps extends HvBaseProps<HTMLDivElement, "ti
|
|
|
2136
2136
|
*/
|
|
2137
2137
|
export declare const HvCarouselSlide: ({ classes: classesProp, className, children, size: flexBasis, src, alt, ...props }: HvCarouselSlideProps) => JSX_2.Element;
|
|
2138
2138
|
|
|
2139
|
-
export declare type HvCarouselSlideClasses = ExtractNames<typeof
|
|
2139
|
+
export declare type HvCarouselSlideClasses = ExtractNames<typeof useClasses_116>;
|
|
2140
2140
|
|
|
2141
2141
|
export declare interface HvCarouselSlideProps extends ImgHTMLAttributes<HTMLImageElement> {
|
|
2142
2142
|
/** A Jss Object used to override or extend the styles applied. */
|
|
@@ -2151,7 +2151,7 @@ export declare const HvCarouselThumbnails: ForwardRefExoticComponent<HvCarouselT
|
|
|
2151
2151
|
|
|
2152
2152
|
declare interface HvCarouselThumbnailsProps extends HvBaseProps<HTMLDivElement, "children">, Pick<HvPaginationProps, "page" | "pages" | "canPrevious" | "canNext"> {
|
|
2153
2153
|
width?: CSSProperties["width"];
|
|
2154
|
-
classes?: ExtractNames<typeof
|
|
2154
|
+
classes?: ExtractNames<typeof useClasses_115>;
|
|
2155
2155
|
onThumbnailClick?: (event: MouseEvent_2<HTMLButtonElement>, index: number) => void;
|
|
2156
2156
|
thumbnailProps?: Partial<HvButtonProps>;
|
|
2157
2157
|
showDots?: boolean;
|
|
@@ -2213,14 +2213,14 @@ export declare interface HvCharCounterProps extends HvBaseProps {
|
|
|
2213
2213
|
*/
|
|
2214
2214
|
export declare const HvCheckBox: (props: HvCheckBoxProps) => JSX_2.Element;
|
|
2215
2215
|
|
|
2216
|
-
export declare type HvCheckBoxClasses = ExtractNames<typeof
|
|
2216
|
+
export declare type HvCheckBoxClasses = ExtractNames<typeof useClasses_56>;
|
|
2217
2217
|
|
|
2218
2218
|
/**
|
|
2219
2219
|
* A checkbox group is a type of selection list that allows the user to select multiple options through the use of checkboxes.
|
|
2220
2220
|
*/
|
|
2221
2221
|
export declare const HvCheckBoxGroup: (props: HvCheckBoxGroupProps) => JSX_2.Element;
|
|
2222
2222
|
|
|
2223
|
-
export declare type HvCheckBoxGroupClasses = ExtractNames<typeof
|
|
2223
|
+
export declare type HvCheckBoxGroupClasses = ExtractNames<typeof useClasses_62>;
|
|
2224
2224
|
|
|
2225
2225
|
export declare interface HvCheckBoxGroupProps extends HvBaseProps<HTMLDivElement, "onChange"> {
|
|
2226
2226
|
/**
|
|
@@ -2348,7 +2348,7 @@ export declare type HvClickOutsideEvent = MouseEvent | KeyboardEvent | TouchEven
|
|
|
2348
2348
|
*/
|
|
2349
2349
|
export declare const HvColorPicker: (props: HvColorPickerProps) => JSX_2.Element;
|
|
2350
2350
|
|
|
2351
|
-
export declare type HvColorPickerClasses = ExtractNames<typeof
|
|
2351
|
+
export declare type HvColorPickerClasses = ExtractNames<typeof useClasses_114>;
|
|
2352
2352
|
|
|
2353
2353
|
export declare interface HvColorPickerProps {
|
|
2354
2354
|
"aria-label"?: string;
|
|
@@ -2465,6 +2465,7 @@ declare type HvColumnWithStrictAccessor<D extends object = Record<string, unknow
|
|
|
2465
2465
|
} & HvColumnInterfaceBasedOnValue<D, H, D[K]>;
|
|
2466
2466
|
}>;
|
|
2467
2467
|
|
|
2468
|
+
/** The container enables you to center your content horizontally and bound it to a specific breakpoint. */
|
|
2468
2469
|
export declare const HvContainer: ForwardRefExoticComponent<Omit<HvContainerProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
2469
2470
|
|
|
2470
2471
|
export declare type HvContainerClasses = ExtractNames<typeof useClasses_24>;
|
|
@@ -2496,7 +2497,7 @@ export declare interface HvContainerProps extends Omit<ContainerProps, "classes"
|
|
|
2496
2497
|
|
|
2497
2498
|
export declare const HvControls: (props: HvControlsProps) => JSX_2.Element;
|
|
2498
2499
|
|
|
2499
|
-
export declare type HvControlsClasses = ExtractNames<typeof
|
|
2500
|
+
export declare type HvControlsClasses = ExtractNames<typeof useClasses_90>;
|
|
2500
2501
|
|
|
2501
2502
|
export declare interface HvControlsProps extends HvBaseProps {
|
|
2502
2503
|
/**
|
|
@@ -2581,7 +2582,7 @@ export declare interface HvDateColumnCellProp {
|
|
|
2581
2582
|
*/
|
|
2582
2583
|
export declare const HvDatePicker: (props: HvDatePickerProps) => JSX_2.Element;
|
|
2583
2584
|
|
|
2584
|
-
export declare type HvDatePickerClasses = ExtractNames<typeof
|
|
2585
|
+
export declare type HvDatePickerClasses = ExtractNames<typeof useClasses_106>;
|
|
2585
2586
|
|
|
2586
2587
|
export declare interface HvDatePickerProps extends HvBaseProps<HTMLDivElement, "onChange"> {
|
|
2587
2588
|
/**
|
|
@@ -2831,7 +2832,7 @@ export declare type HvDialogTitleVariant = "success" | "warning" | "error" | "in
|
|
|
2831
2832
|
*/
|
|
2832
2833
|
export declare const HvDotPagination: (props: HvDotPaginationProps) => JSX_2.Element;
|
|
2833
2834
|
|
|
2834
|
-
export declare type HvDotPaginationClasses = ExtractNames<typeof
|
|
2835
|
+
export declare type HvDotPaginationClasses = ExtractNames<typeof useClasses_71>;
|
|
2835
2836
|
|
|
2836
2837
|
export declare interface HvDotPaginationProps extends Omit<HvRadioGroupProps, "classes"> {
|
|
2837
2838
|
/**
|
|
@@ -2919,7 +2920,7 @@ export declare interface HvDrawerProps extends DrawerProps, Omit<DrawerProps, "c
|
|
|
2919
2920
|
*/
|
|
2920
2921
|
export declare const HvDropdown: (props: HvDropdownProps) => JSX_2.Element;
|
|
2921
2922
|
|
|
2922
|
-
export declare type HvDropdownClasses = ExtractNames<typeof
|
|
2923
|
+
export declare type HvDropdownClasses = ExtractNames<typeof useClasses_80>;
|
|
2923
2924
|
|
|
2924
2925
|
export declare function hvDropdownColumn<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer>(col: HvTableColumnConfig<D, H>, id: string, placeholder: string, disabledPlaceholder: string, onChange?: (identifier: string, value: HvListValue) => void): HvTableColumnConfig<D, H>;
|
|
2925
2926
|
|
|
@@ -2965,7 +2966,7 @@ export declare interface HvDropdownLabelsProps {
|
|
|
2965
2966
|
searchPlaceholder?: string;
|
|
2966
2967
|
}
|
|
2967
2968
|
|
|
2968
|
-
declare type HvDropdownListClasses = ExtractNames<typeof
|
|
2969
|
+
declare type HvDropdownListClasses = ExtractNames<typeof useClasses_81>;
|
|
2969
2970
|
|
|
2970
2971
|
declare interface HvDropdownListProps {
|
|
2971
2972
|
/**
|
|
@@ -3040,7 +3041,7 @@ declare interface HvDropdownListProps {
|
|
|
3040
3041
|
*/
|
|
3041
3042
|
export declare const HvDropDownMenu: (props: HvDropDownMenuProps) => JSX_2.Element;
|
|
3042
3043
|
|
|
3043
|
-
export declare type HvDropDownMenuClasses = ExtractNames<typeof
|
|
3044
|
+
export declare type HvDropDownMenuClasses = ExtractNames<typeof useClasses_67>;
|
|
3044
3045
|
|
|
3045
3046
|
export declare interface HvDropDownMenuProps extends HvBaseProps<HTMLDivElement, "onClick"> {
|
|
3046
3047
|
/** Icon. */
|
|
@@ -3333,7 +3334,7 @@ export { HvExtraProps }
|
|
|
3333
3334
|
|
|
3334
3335
|
export declare const HvFile: ({ id, classes: classesProp, data, onFileRemoved, removeFileButtonLabel, }: HvFileProps) => JSX_2.Element;
|
|
3335
3336
|
|
|
3336
|
-
export declare type HvFileClasses = ExtractNames<typeof
|
|
3337
|
+
export declare type HvFileClasses = ExtractNames<typeof useClasses_66>;
|
|
3337
3338
|
|
|
3338
3339
|
export declare interface HvFileData extends Omit<File, "name" | "size"> {
|
|
3339
3340
|
/**
|
|
@@ -3414,7 +3415,7 @@ export declare interface HvFileUploaderLabels extends HvDropZoneLabels {
|
|
|
3414
3415
|
*/
|
|
3415
3416
|
export declare const HvFileUploaderPreview: ({ className, children, classes: classesProp, disableOverlay, onUnload, onClick, ...others }: HvFileUploaderPreviewProps) => JSX_2.Element;
|
|
3416
3417
|
|
|
3417
|
-
export declare type HvFileUploaderPreviewClasses = ExtractNames<typeof
|
|
3418
|
+
export declare type HvFileUploaderPreviewClasses = ExtractNames<typeof useClasses_65>;
|
|
3418
3419
|
|
|
3419
3420
|
export declare interface HvFileUploaderPreviewProps extends Omit<HvButtonProps, "children" | "classes"> {
|
|
3420
3421
|
/**
|
|
@@ -3489,9 +3490,9 @@ export declare interface HvFileUploaderProps extends HvBaseProps {
|
|
|
3489
3490
|
*/
|
|
3490
3491
|
export declare const HvFilterGroup: (props: HvFilterGroupProps) => JSX_2.Element;
|
|
3491
3492
|
|
|
3492
|
-
export declare type HvFilterGroupClasses = ExtractNames<typeof
|
|
3493
|
+
export declare type HvFilterGroupClasses = ExtractNames<typeof useClasses_104>;
|
|
3493
3494
|
|
|
3494
|
-
declare type HvFilterGroupContentClasses = ExtractNames<typeof
|
|
3495
|
+
declare type HvFilterGroupContentClasses = ExtractNames<typeof useClasses_105>;
|
|
3495
3496
|
|
|
3496
3497
|
declare interface HvFilterGroupContentProps extends Omit<HvBaseDropdownProps, "onChange"> {
|
|
3497
3498
|
description?: React.ReactNode;
|
|
@@ -3758,7 +3759,7 @@ export declare type HvFormStatus = "standBy" | "valid" | "invalid" | "empty";
|
|
|
3758
3759
|
*/
|
|
3759
3760
|
export declare const HvGlobalActions: (props: HvGlobalActionsProps) => JSX_2.Element;
|
|
3760
3761
|
|
|
3761
|
-
export declare type HvGlobalActionsClasses = ExtractNames<typeof
|
|
3762
|
+
export declare type HvGlobalActionsClasses = ExtractNames<typeof useClasses_79>;
|
|
3762
3763
|
|
|
3763
3764
|
export declare type HvGlobalActionsHeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
3764
3765
|
|
|
@@ -3786,19 +3787,19 @@ export declare type HvGlobalActionsVariant = "global" | "section";
|
|
|
3786
3787
|
|
|
3787
3788
|
/**
|
|
3788
3789
|
* The grid creates visual consistency between layouts while allowing flexibility
|
|
3789
|
-
* across a wide variety of designs. This component is based
|
|
3790
|
+
* across a wide variety of designs. This component is based on a 12-column grid layout.
|
|
3790
3791
|
*
|
|
3791
|
-
* It
|
|
3792
|
+
* It's based on the [Material UI Grid](https://mui.com/material-ui/react-grid/).
|
|
3792
3793
|
*
|
|
3793
3794
|
* The definitions were set following the Design System directives:
|
|
3794
3795
|
*
|
|
3795
3796
|
* | Breakpoint | Width (in px) | Gutters (in px) | Number of columns |
|
|
3796
3797
|
* | ---------- | ------------- | --------------- | ----------------- |
|
|
3797
|
-
* | xs | [0-
|
|
3798
|
-
* | sm | [
|
|
3799
|
-
* | md | [
|
|
3800
|
-
* | lg | [
|
|
3801
|
-
* | xl | [
|
|
3798
|
+
* | xs | [0-600[ | 16 | 4 |
|
|
3799
|
+
* | sm | [600-960[ | 16 | 8 |
|
|
3800
|
+
* | md | [960-1270[ | 32 | 12 |
|
|
3801
|
+
* | lg | [1270-1920[ | 32 | 12 |
|
|
3802
|
+
* | xl | [1920-...[ | 32 | 12 |
|
|
3802
3803
|
*
|
|
3803
3804
|
* However, the number of columns is set to 12 for all breakpoints, as it serves most
|
|
3804
3805
|
* of the use cases and simplifies the implementation.
|
|
@@ -4019,7 +4020,7 @@ export declare interface HvHooks<D extends object = Record<string, unknown>, H e
|
|
|
4019
4020
|
useFinalInstance: Array<(instance: HvTableInstance<D, H>) => void>;
|
|
4020
4021
|
}
|
|
4021
4022
|
|
|
4022
|
-
export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof
|
|
4023
|
+
export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof useClasses_109>;
|
|
4023
4024
|
|
|
4024
4025
|
/**
|
|
4025
4026
|
* Provides the user with additional descriptive text for the form element.
|
|
@@ -4043,7 +4044,7 @@ export declare interface HvInfoMessageProps extends HvTypographyProps<"label"> {
|
|
|
4043
4044
|
*/
|
|
4044
4045
|
export declare const HvInlineEditor: (props: HvInlineEditorProps) => JSX_2.Element;
|
|
4045
4046
|
|
|
4046
|
-
export declare type HvInlineEditorClasses = ExtractNames<typeof
|
|
4047
|
+
export declare type HvInlineEditorClasses = ExtractNames<typeof useClasses_111>;
|
|
4047
4048
|
|
|
4048
4049
|
export declare interface HvInlineEditorProps extends HvBaseProps<HTMLDivElement, "onBlur" | "onChange"> {
|
|
4049
4050
|
/** The value of the form element. */
|
|
@@ -4071,7 +4072,7 @@ export declare interface HvInlineEditorProps extends HvBaseProps<HTMLDivElement,
|
|
|
4071
4072
|
*/
|
|
4072
4073
|
export declare const HvInput: React_2.ForwardRefExoticComponent<HvInputProps & React_2.RefAttributes<InputElement>>;
|
|
4073
4074
|
|
|
4074
|
-
export declare type HvInputClasses = ExtractNames<typeof
|
|
4075
|
+
export declare type HvInputClasses = ExtractNames<typeof useClasses_57>;
|
|
4075
4076
|
|
|
4076
4077
|
export declare interface HvInputLabels {
|
|
4077
4078
|
/** The label of the clear button. */
|
|
@@ -4306,7 +4307,7 @@ export declare interface HvLabelProps extends HvTypographyProps<"label"> {
|
|
|
4306
4307
|
|
|
4307
4308
|
export declare const HvLeftControl: ({ id, classes: classesProp, className, children, placeholder, onSearch, hideSearch, searchProps, ...others }: HvLeftControlProps) => JSX_2.Element;
|
|
4308
4309
|
|
|
4309
|
-
export declare type HvLeftControlClasses = ExtractNames<typeof
|
|
4310
|
+
export declare type HvLeftControlClasses = ExtractNames<typeof useClasses_91>;
|
|
4310
4311
|
|
|
4311
4312
|
export declare interface HvLeftControlProps extends HvBaseProps {
|
|
4312
4313
|
/** if `true` the hide sort by dropdown is not rendered */
|
|
@@ -4339,7 +4340,7 @@ export declare interface HvLinkProps extends HvBaseProps<HTMLAnchorElement, "onC
|
|
|
4339
4340
|
*/
|
|
4340
4341
|
export declare const HvList: (props: HvListProps) => JSX_2.Element;
|
|
4341
4342
|
|
|
4342
|
-
export declare type HvListClasses = ExtractNames<typeof
|
|
4343
|
+
export declare type HvListClasses = ExtractNames<typeof useClasses_63>;
|
|
4343
4344
|
|
|
4344
4345
|
/**
|
|
4345
4346
|
* A <b>list</b> is any enumeration of a set of items.
|
|
@@ -4511,7 +4512,7 @@ export declare interface HvLoadingProps extends HvBaseProps {
|
|
|
4511
4512
|
*/
|
|
4512
4513
|
export declare const HvLogin: (props: HvLoginProps) => JSX_2.Element;
|
|
4513
4514
|
|
|
4514
|
-
export declare type HvLoginClasses = ExtractNames<typeof
|
|
4515
|
+
export declare type HvLoginClasses = ExtractNames<typeof useClasses_89>;
|
|
4515
4516
|
|
|
4516
4517
|
export declare interface HvLoginProps extends HvBaseProps {
|
|
4517
4518
|
/**
|
|
@@ -4575,7 +4576,7 @@ export declare const hvNumberFallback: (value: any) => number | "—";
|
|
|
4575
4576
|
*/
|
|
4576
4577
|
export declare const HvOverflowTooltip: (props: HvOverflowTooltipProps) => JSX_2.Element;
|
|
4577
4578
|
|
|
4578
|
-
export declare type HvOverflowTooltipClasses = ExtractNames<typeof
|
|
4579
|
+
export declare type HvOverflowTooltipClasses = ExtractNames<typeof useClasses_50>;
|
|
4579
4580
|
|
|
4580
4581
|
export declare interface HvOverflowTooltipProps extends HvBaseProps {
|
|
4581
4582
|
/** The node that will be rendered inside the tooltip. */
|
|
@@ -4598,7 +4599,7 @@ export declare interface HvOverflowTooltipProps extends HvBaseProps {
|
|
|
4598
4599
|
*/
|
|
4599
4600
|
export declare const HvPagination: (props: HvPaginationProps) => JSX_2.Element;
|
|
4600
4601
|
|
|
4601
|
-
export declare type HvPaginationClasses = ExtractNames<typeof
|
|
4602
|
+
export declare type HvPaginationClasses = ExtractNames<typeof useClasses_68>;
|
|
4602
4603
|
|
|
4603
4604
|
export declare interface HvPaginationLabels {
|
|
4604
4605
|
/** The show label. */
|
|
@@ -4785,7 +4786,7 @@ export declare interface HvProviderProps {
|
|
|
4785
4786
|
*/
|
|
4786
4787
|
export declare const HvQueryBuilder: (props: HvQueryBuilderProps) => JSX_2.Element;
|
|
4787
4788
|
|
|
4788
|
-
export declare type HvQueryBuilderClasses = ExtractNames<typeof
|
|
4789
|
+
export declare type HvQueryBuilderClasses = ExtractNames<typeof useClasses_113>;
|
|
4789
4790
|
|
|
4790
4791
|
export declare interface HvQueryBuilderProps {
|
|
4791
4792
|
attributes?: Record<string, Attribute>;
|
|
@@ -4836,7 +4837,7 @@ export declare interface HvQueryBuilderProps {
|
|
|
4836
4837
|
*/
|
|
4837
4838
|
export declare const HvRadio: (props: HvRadioProps) => JSX_2.Element;
|
|
4838
4839
|
|
|
4839
|
-
export declare type HvRadioClasses = ExtractNames<typeof
|
|
4840
|
+
export declare type HvRadioClasses = ExtractNames<typeof useClasses_59>;
|
|
4840
4841
|
|
|
4841
4842
|
/**
|
|
4842
4843
|
* A group of radio buttons.
|
|
@@ -4845,7 +4846,7 @@ export declare type HvRadioClasses = ExtractNames<typeof useClasses_58>;
|
|
|
4845
4846
|
*/
|
|
4846
4847
|
export declare const HvRadioGroup: (props: HvRadioGroupProps) => JSX_2.Element;
|
|
4847
4848
|
|
|
4848
|
-
export declare type HvRadioGroupClasses = ExtractNames<typeof
|
|
4849
|
+
export declare type HvRadioGroupClasses = ExtractNames<typeof useClasses_64>;
|
|
4849
4850
|
|
|
4850
4851
|
export declare interface HvRadioGroupProps extends HvBaseProps<HTMLDivElement, "onChange"> {
|
|
4851
4852
|
/**
|
|
@@ -5036,7 +5037,7 @@ export declare type HvRadioStatus = "standBy" | "valid" | "invalid";
|
|
|
5036
5037
|
|
|
5037
5038
|
export declare const HvRightControl: ({ id, classes: classesProp, className, children, values, onSort, hideSortBy, sortProps, ...others }: HvRightControlProps) => JSX_2.Element;
|
|
5038
5039
|
|
|
5039
|
-
export declare type HvRightControlClasses = ExtractNames<typeof
|
|
5040
|
+
export declare type HvRightControlClasses = ExtractNames<typeof useClasses_92>;
|
|
5040
5041
|
|
|
5041
5042
|
export declare interface HvRightControlProps extends HvBaseProps {
|
|
5042
5043
|
/** if `true` the hide sort by dropdown is not rendered */
|
|
@@ -5075,7 +5076,7 @@ declare type HvRowPropGetter<D extends object = Record<string, unknown>, H exten
|
|
|
5075
5076
|
*/
|
|
5076
5077
|
export declare const HvScrollToHorizontal: (props: HvScrollToHorizontalProps) => JSX_2.Element;
|
|
5077
5078
|
|
|
5078
|
-
export declare type HvScrollToHorizontalClasses = ExtractNames<typeof
|
|
5079
|
+
export declare type HvScrollToHorizontalClasses = ExtractNames<typeof useClasses_110>;
|
|
5079
5080
|
|
|
5080
5081
|
export declare interface HvScrollToHorizontalOption {
|
|
5081
5082
|
key?: string;
|
|
@@ -5128,7 +5129,7 @@ export declare type HvScrollToTooltipPositions = "left" | "right" | "top" | "bot
|
|
|
5128
5129
|
*/
|
|
5129
5130
|
export declare const HvScrollToVertical: (props: HvScrollToVerticalProps) => JSX_2.Element;
|
|
5130
5131
|
|
|
5131
|
-
export declare type HvScrollToVerticalClasses = ExtractNames<typeof
|
|
5132
|
+
export declare type HvScrollToVerticalClasses = ExtractNames<typeof useClasses_108>;
|
|
5132
5133
|
|
|
5133
5134
|
export declare interface HvScrollToVerticalOption {
|
|
5134
5135
|
key?: string;
|
|
@@ -5248,6 +5249,9 @@ export declare type HvSequentialColorKeys = "cat1" | "cat1_100" | "cat1_200" | "
|
|
|
5248
5249
|
|
|
5249
5250
|
export declare const HvSimpleGrid: (props: HvSimpleGridProps) => JSX_2.Element;
|
|
5250
5251
|
|
|
5252
|
+
export declare type HvSimpleGridClasses = ExtractNames<typeof useClasses_44>;
|
|
5253
|
+
|
|
5254
|
+
/** Grid component that enables you to create columns of equal width and define your own breakpoints and responsive behavior. */
|
|
5251
5255
|
export declare interface HvSimpleGridProps extends HvBaseProps {
|
|
5252
5256
|
/**
|
|
5253
5257
|
* Spacing with pre-defined values according the values defined in the theme
|
|
@@ -5267,6 +5271,8 @@ export declare interface HvSimpleGridProps extends HvBaseProps {
|
|
|
5267
5271
|
* Number of how many columns the content will be displayed
|
|
5268
5272
|
*/
|
|
5269
5273
|
cols?: number;
|
|
5274
|
+
/** A Jss Object used to override or extend the styles applied to the component. */
|
|
5275
|
+
classes?: HvSimpleGridClasses;
|
|
5270
5276
|
}
|
|
5271
5277
|
|
|
5272
5278
|
/**
|
|
@@ -5274,7 +5280,7 @@ export declare interface HvSimpleGridProps extends HvBaseProps {
|
|
|
5274
5280
|
*/
|
|
5275
5281
|
export declare const HvSlider: (props: HvSliderProps) => JSX_2.Element;
|
|
5276
5282
|
|
|
5277
|
-
export declare type HvSliderClasses = ExtractNames<typeof
|
|
5283
|
+
export declare type HvSliderClasses = ExtractNames<typeof useClasses_103>;
|
|
5278
5284
|
|
|
5279
5285
|
export declare interface HvSliderProps extends HvBaseProps<HTMLDivElement, "onChange" | "onBlur"> {
|
|
5280
5286
|
/**
|
|
@@ -5416,11 +5422,11 @@ export declare interface HvSliderProps extends HvBaseProps<HTMLDivElement, "onCh
|
|
|
5416
5422
|
*/
|
|
5417
5423
|
export declare const HvSnackbar: ({ classes: classesProp, className, id, open, onClose, label, anchorOrigin, autoHideDuration, variant, showIcon, customIcon, action, actionCallback, transitionDuration, transitionDirection, offset, snackbarContentProps, ...others }: HvSnackbarProps) => JSX_2.Element;
|
|
5418
5424
|
|
|
5419
|
-
export declare type HvSnackbarClasses = ExtractNames<typeof
|
|
5425
|
+
export declare type HvSnackbarClasses = ExtractNames<typeof useClasses_75>;
|
|
5420
5426
|
|
|
5421
5427
|
export declare const HvSnackbarContent: ForwardRefExoticComponent<Omit<HvSnackbarContentProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
5422
5428
|
|
|
5423
|
-
export declare type HvSnackbarContentClasses = ExtractNames<typeof
|
|
5429
|
+
export declare type HvSnackbarContentClasses = ExtractNames<typeof useClasses_76>;
|
|
5424
5430
|
|
|
5425
5431
|
export declare interface HvSnackbarContentProps extends Omit<SnackbarContentProps, "variant" | "action" | "classes">, HvBaseProps {
|
|
5426
5432
|
/** The message to display. */
|
|
@@ -5474,7 +5480,7 @@ export declare interface HvSnackbarProps extends Omit<SnackbarProps, "action" |
|
|
|
5474
5480
|
|
|
5475
5481
|
export declare const HvSnackbarProvider: ({ children, notistackClassesOverride, maxSnack, autoHideDuration, anchorOrigin, classes: classesProp, className, ...others }: HvSnackbarProviderProps) => JSX_2.Element;
|
|
5476
5482
|
|
|
5477
|
-
export declare type HvSnackbarProviderClasses = ExtractNames<typeof
|
|
5483
|
+
export declare type HvSnackbarProviderClasses = ExtractNames<typeof useClasses_77>;
|
|
5478
5484
|
|
|
5479
5485
|
export declare interface HvSnackbarProviderProps {
|
|
5480
5486
|
/** Your component tree. */
|
|
@@ -5504,7 +5510,7 @@ export declare const HvStack: (props: HvStackProps) => JSX_2.Element;
|
|
|
5504
5510
|
export declare interface HvStackBreakpoints extends Record<HvBreakpoints, string> {
|
|
5505
5511
|
}
|
|
5506
5512
|
|
|
5507
|
-
export declare type HvStackClasses = ExtractNames<typeof
|
|
5513
|
+
export declare type HvStackClasses = ExtractNames<typeof useClasses_45>;
|
|
5508
5514
|
|
|
5509
5515
|
export declare type HvStackDirection = "column" | "row" | Partial<HvStackBreakpoints>;
|
|
5510
5516
|
|
|
@@ -5566,7 +5572,7 @@ export declare type HvSupportColors = Record<HvSupportColorKeys, string>;
|
|
|
5566
5572
|
*/
|
|
5567
5573
|
export declare const HvSwitch: (props: HvSwitchProps) => JSX_2.Element;
|
|
5568
5574
|
|
|
5569
|
-
export declare type HvSwitchClasses = ExtractNames<typeof
|
|
5575
|
+
export declare type HvSwitchClasses = ExtractNames<typeof useClasses_58>;
|
|
5570
5576
|
|
|
5571
5577
|
export declare function hvSwitchColumn<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer>(col: HvTableColumnConfig<D, H>, switchLabel: string, falseLabel?: string, trueLabel?: string, switchProps?: HvBaseSwitchProps): HvTableColumnConfig<D, H>;
|
|
5572
5578
|
|
|
@@ -5691,7 +5697,7 @@ export declare interface HvSwitchProps extends Omit<SwitchProps_2, "onChange" |
|
|
|
5691
5697
|
|
|
5692
5698
|
export declare const HvTab: (props: HvTabProps) => JSX_2.Element;
|
|
5693
5699
|
|
|
5694
|
-
export declare type HvTabClasses = ExtractNames<typeof
|
|
5700
|
+
export declare type HvTabClasses = ExtractNames<typeof useClasses_46>;
|
|
5695
5701
|
|
|
5696
5702
|
/**
|
|
5697
5703
|
* A table gathers relational data. It displays values arranged to allow quick numerical analysis like comparison and sorting.
|
|
@@ -5711,7 +5717,7 @@ export declare const HvTable: ForwardRefExoticComponent<HvTableProps & RefAttrib
|
|
|
5711
5717
|
*/
|
|
5712
5718
|
export declare const HvTableBody: React_2.ForwardRefExoticComponent<HvTableBodyProps & React_2.RefAttributes<HTMLElement>>;
|
|
5713
5719
|
|
|
5714
|
-
export declare type HvTableBodyClasses = ExtractNames<typeof
|
|
5720
|
+
export declare type HvTableBodyClasses = ExtractNames<typeof useClasses_84>;
|
|
5715
5721
|
|
|
5716
5722
|
export declare interface HvTableBodyProps extends HvBaseProps<HTMLTableSectionElement, "children"> {
|
|
5717
5723
|
/**
|
|
@@ -5745,7 +5751,7 @@ export declare const HvTableCell: ForwardRefExoticComponent<HvTableCellProps & R
|
|
|
5745
5751
|
|
|
5746
5752
|
export declare type HvTableCellAlign = "center" | "inherit" | "justify" | "left" | "right";
|
|
5747
5753
|
|
|
5748
|
-
export declare type HvTableCellClasses = ExtractNames<typeof
|
|
5754
|
+
export declare type HvTableCellClasses = ExtractNames<typeof useClasses_88>;
|
|
5749
5755
|
|
|
5750
5756
|
export declare interface HvTableCellProps extends Omit<TdHTMLAttributes<HTMLTableCellElement>, "align"> {
|
|
5751
5757
|
/** The component used for the root node. Either a string to use a HTML element or a component. Defaults to td. */
|
|
@@ -5784,7 +5790,7 @@ export declare type HvTableCellType = "body" | "footer" | "head";
|
|
|
5784
5790
|
|
|
5785
5791
|
export declare type HvTableCellVariant = "checkbox" | "expand" | "actions" | "default" | "none";
|
|
5786
5792
|
|
|
5787
|
-
export declare type HvTableClasses = ExtractNames<typeof
|
|
5793
|
+
export declare type HvTableClasses = ExtractNames<typeof useClasses_82>;
|
|
5788
5794
|
|
|
5789
5795
|
export declare type HvTableColumnConfig<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer> = HvColumnGroup<D, H> | HvColumnWithLooseAccessor<D, H> | HvColumnWithStrictAccessor<D, H>;
|
|
5790
5796
|
|
|
@@ -5798,7 +5804,7 @@ export declare interface HvTableColumnOptions<D extends object = Record<string,
|
|
|
5798
5804
|
*/
|
|
5799
5805
|
export declare const HvTableContainer: ForwardRefExoticComponent<HvTableContainerProps & RefAttributes<HTMLElement>>;
|
|
5800
5806
|
|
|
5801
|
-
export declare type HvTableContainerClasses = ExtractNames<typeof
|
|
5807
|
+
export declare type HvTableContainerClasses = ExtractNames<typeof useClasses_83>;
|
|
5802
5808
|
|
|
5803
5809
|
export declare interface HvTableContainerProps extends HvBaseProps<HTMLDivElement, "children"> {
|
|
5804
5810
|
/**
|
|
@@ -5822,14 +5828,14 @@ export declare type HvTableDefinitionConfig<D extends object = Record<string, un
|
|
|
5822
5828
|
*/
|
|
5823
5829
|
export declare const HvTableHead: ForwardRefExoticComponent<HvTableHeadProps & RefAttributes<HTMLElement>>;
|
|
5824
5830
|
|
|
5825
|
-
export declare type HvTableHeadClasses = ExtractNames<typeof
|
|
5831
|
+
export declare type HvTableHeadClasses = ExtractNames<typeof useClasses_85>;
|
|
5826
5832
|
|
|
5827
5833
|
/**
|
|
5828
5834
|
* `HvTableHeader` acts as a `th` element and inherits styles from its context
|
|
5829
5835
|
*/
|
|
5830
5836
|
export declare const HvTableHeader: ForwardRefExoticComponent<HvTableHeaderProps & RefAttributes<HTMLElement>>;
|
|
5831
5837
|
|
|
5832
|
-
export declare type HvTableHeaderClasses = ExtractNames<typeof
|
|
5838
|
+
export declare type HvTableHeaderClasses = ExtractNames<typeof useClasses_86>;
|
|
5833
5839
|
|
|
5834
5840
|
export declare interface HvTableHeaderProps extends Omit<ThHTMLAttributes<HTMLTableCellElement>, "align"> {
|
|
5835
5841
|
/** The component used for the root node. Either a string to use a HTML element or a component. Defaults to th. */
|
|
@@ -5968,7 +5974,7 @@ export declare interface HvTableProps extends TableHTMLAttributes<HTMLTableEleme
|
|
|
5968
5974
|
*/
|
|
5969
5975
|
export declare const HvTableRow: ForwardRefExoticComponent<HvTableRowProps & RefAttributes<HTMLElement>>;
|
|
5970
5976
|
|
|
5971
|
-
export declare type HvTableRowClasses = ExtractNames<typeof
|
|
5977
|
+
export declare type HvTableRowClasses = ExtractNames<typeof useClasses_87>;
|
|
5972
5978
|
|
|
5973
5979
|
export declare interface HvTableRowProps extends HvBaseProps<HTMLTableRowElement, "children"> {
|
|
5974
5980
|
/** Content to be rendered */
|
|
@@ -6012,7 +6018,7 @@ export declare interface HvTabProps extends Omit<TabProps, "children">, HvBasePr
|
|
|
6012
6018
|
*/
|
|
6013
6019
|
export declare const HvTabs: (props: HvTabsProps) => JSX_2.Element;
|
|
6014
6020
|
|
|
6015
|
-
export declare type HvTabsClasses = ExtractNames<typeof
|
|
6021
|
+
export declare type HvTabsClasses = ExtractNames<typeof useClasses_47>;
|
|
6016
6022
|
|
|
6017
6023
|
export declare interface HvTabsProps extends TabsProps, HvBaseProps<HTMLButtonElement, "onChange"> {
|
|
6018
6024
|
/**
|
|
@@ -6039,7 +6045,7 @@ export declare interface HvTabsProps extends TabsProps, HvBaseProps<HTMLButtonEl
|
|
|
6039
6045
|
*/
|
|
6040
6046
|
export declare const HvTag: (props: HvTagProps) => JSX_2.Element;
|
|
6041
6047
|
|
|
6042
|
-
export declare type HvTagClasses = ExtractNames<typeof
|
|
6048
|
+
export declare type HvTagClasses = ExtractNames<typeof useClasses_48>;
|
|
6043
6049
|
|
|
6044
6050
|
export declare function hvTagColumn<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer, A extends object = Record<string, unknown>>(col: HvTableColumnConfig<D, H>, valueDataKey: keyof A, colorDataKey: keyof A, textColorDataKey: keyof A, fromRowData?: boolean, tagProps?: HvTagProps): HvTableColumnConfig<D, H>;
|
|
6045
6051
|
|
|
@@ -6078,7 +6084,7 @@ export declare interface HvTagProps extends Omit<ChipProps, "color" | "classes">
|
|
|
6078
6084
|
*/
|
|
6079
6085
|
export declare const HvTagsInput: (props: HvTagsInputProps) => JSX_2.Element;
|
|
6080
6086
|
|
|
6081
|
-
export declare type HvTagsInputClasses = ExtractNames<typeof
|
|
6087
|
+
export declare type HvTagsInputClasses = ExtractNames<typeof useClasses_61>;
|
|
6082
6088
|
|
|
6083
6089
|
export declare interface HvTagsInputProps extends HvBaseProps<HTMLElement, "onChange" | "onBlur" | "onFocus" | "onKeyDown" | "color" | "defaultValue"> {
|
|
6084
6090
|
/** The form element name. */
|
|
@@ -6153,7 +6159,7 @@ export declare interface HvTagSuggestion extends HvInputSuggestion {
|
|
|
6153
6159
|
*/
|
|
6154
6160
|
export declare const HvTextArea: ForwardRefExoticComponent<Omit<HvTextAreaProps, "ref"> & RefAttributes<any>>;
|
|
6155
6161
|
|
|
6156
|
-
export declare type HvTextAreaClasses = ExtractNames<typeof
|
|
6162
|
+
export declare type HvTextAreaClasses = ExtractNames<typeof useClasses_60>;
|
|
6157
6163
|
|
|
6158
6164
|
export declare interface HvTextAreaProps extends Omit<HvBaseInputProps, "onChange" | "onBlur" | "rows" | "classes" | "onFocus"> {
|
|
6159
6165
|
/**
|
|
@@ -6298,7 +6304,7 @@ declare interface HvThemeProviderProps {
|
|
|
6298
6304
|
*/
|
|
6299
6305
|
export declare const HvTimeAgo: <C extends React.ElementType = "p">(props: HvTimeAgoProps<C>) => React.ReactElement | null;
|
|
6300
6306
|
|
|
6301
|
-
export declare type HvTimeAgoClasses = ExtractNames<typeof
|
|
6307
|
+
export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_112>;
|
|
6302
6308
|
|
|
6303
6309
|
export declare type HvTimeAgoProps<C extends React.ElementType = "p"> = PolymorphicComponentRef<C, {
|
|
6304
6310
|
/**
|
|
@@ -6334,7 +6340,7 @@ export declare type HvTimeAgoProps<C extends React.ElementType = "p"> = Polymorp
|
|
|
6334
6340
|
*/
|
|
6335
6341
|
export declare const HvTimePicker: (props: HvTimePickerProps) => JSX_2.Element;
|
|
6336
6342
|
|
|
6337
|
-
export declare type HvTimePickerClasses = ExtractNames<typeof
|
|
6343
|
+
export declare type HvTimePickerClasses = ExtractNames<typeof useClasses_117>;
|
|
6338
6344
|
|
|
6339
6345
|
export declare type HvTimePickerClassKey = "root" | "input" | "label" | "placeholder" | "timePopperContainer" | "separator" | "periodContainer" | "formElementRoot" | "dropdownPlaceholder" | "iconBaseRoot" | "error" | "labelContainer" | "description" | "dropdownHeaderInvalid" | "dropdownPlaceholderDisabled" | "dropdownHeaderOpen";
|
|
6340
6346
|
|
|
@@ -6410,7 +6416,7 @@ export declare interface HvToggleButtonProps extends HvBaseProps<HTMLButtonEleme
|
|
|
6410
6416
|
*/
|
|
6411
6417
|
export declare const HvTooltip: ForwardRefExoticComponent<Omit<HvTooltipProps, "ref"> & RefAttributes<unknown>>;
|
|
6412
6418
|
|
|
6413
|
-
export declare type HvTooltipClasses = ExtractNames<typeof
|
|
6419
|
+
export declare type HvTooltipClasses = ExtractNames<typeof useClasses_49>;
|
|
6414
6420
|
|
|
6415
6421
|
export declare type HvTooltipPlacementType = TooltipProps["placement"];
|
|
6416
6422
|
|
|
@@ -6538,7 +6544,7 @@ export declare const HvVerticalNavigation: (props: HvVerticalNavigationProps) =>
|
|
|
6538
6544
|
|
|
6539
6545
|
export declare const HvVerticalNavigationAction: ({ className, classes: classesProp, id, label, icon, onClick, ...others }: HvVerticalNavigationActionProps) => JSX_2.Element;
|
|
6540
6546
|
|
|
6541
|
-
export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof
|
|
6547
|
+
export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof useClasses_98>;
|
|
6542
6548
|
|
|
6543
6549
|
export declare interface HvVerticalNavigationActionProps {
|
|
6544
6550
|
/**
|
|
@@ -6569,7 +6575,7 @@ export declare interface HvVerticalNavigationActionProps {
|
|
|
6569
6575
|
|
|
6570
6576
|
export declare const HvVerticalNavigationActions: ({ className, classes: classesProp, id, children, ...others }: HvVerticalNavigationActionsProps) => JSX_2.Element;
|
|
6571
6577
|
|
|
6572
|
-
export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof
|
|
6578
|
+
export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof useClasses_97>;
|
|
6573
6579
|
|
|
6574
6580
|
export declare interface HvVerticalNavigationActionsProps {
|
|
6575
6581
|
/**
|
|
@@ -6590,11 +6596,11 @@ export declare interface HvVerticalNavigationActionsProps {
|
|
|
6590
6596
|
children?: React.ReactNode;
|
|
6591
6597
|
}
|
|
6592
6598
|
|
|
6593
|
-
export declare type HvVerticalNavigationClasses = ExtractNames<typeof
|
|
6599
|
+
export declare type HvVerticalNavigationClasses = ExtractNames<typeof useClasses_95>;
|
|
6594
6600
|
|
|
6595
6601
|
export declare const HvVerticalNavigationHeader: ({ title, openIcon, closeIcon, collapseButtonProps, backButtonProps, className, classes: classesProp, onCollapseButtonClick, ...others }: HvVerticalNavigationHeaderProps) => JSX_2.Element | null;
|
|
6596
6602
|
|
|
6597
|
-
export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof
|
|
6603
|
+
export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof useClasses_96>;
|
|
6598
6604
|
|
|
6599
6605
|
export declare interface HvVerticalNavigationHeaderProps {
|
|
6600
6606
|
/**
|
|
@@ -6681,7 +6687,7 @@ export declare interface HvVerticalNavigationProps {
|
|
|
6681
6687
|
|
|
6682
6688
|
export declare const HvVerticalNavigationSlider: ({ id, classes: classesProp, data, selected, onNavigateToTarget, onNavigateToChild, forwardButtonAriaLabel, }: HvVerticalNavigationSliderProps) => JSX_2.Element;
|
|
6683
6689
|
|
|
6684
|
-
export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof
|
|
6690
|
+
export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof useClasses_100>;
|
|
6685
6691
|
|
|
6686
6692
|
export declare interface HvVerticalNavigationSliderProps {
|
|
6687
6693
|
/**
|
|
@@ -6721,7 +6727,7 @@ export declare interface HvVerticalNavigationSliderProps {
|
|
|
6721
6727
|
|
|
6722
6728
|
export declare const HvVerticalNavigationTree: ({ id, className, classes: classesProp, data, mode, collapsible, expanded: expandedProp, defaultExpanded, onToggle, selected: selectedProp, defaultSelected, onChange, sliderForwardButtonAriaLabel, ...others }: HvVerticalNavigationTreeProps) => JSX_2.Element;
|
|
6723
6729
|
|
|
6724
|
-
export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof
|
|
6730
|
+
export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof useClasses_99>;
|
|
6725
6731
|
|
|
6726
6732
|
export declare interface HvVerticalNavigationTreeProps extends HvBaseProps<HTMLDivElement, "onChange"> {
|
|
6727
6733
|
/**
|
|
@@ -6795,11 +6801,11 @@ export declare interface HvVerticalNavigationTreeProps extends HvBaseProps<HTMLD
|
|
|
6795
6801
|
|
|
6796
6802
|
export declare const HvVerticalNavigationTreeView: ForwardRefExoticComponent<HvVerticalNavigationTreeViewProps & RefAttributes<unknown>>;
|
|
6797
6803
|
|
|
6798
|
-
export declare type HvVerticalNavigationTreeViewClasses = ExtractNames<typeof
|
|
6804
|
+
export declare type HvVerticalNavigationTreeViewClasses = ExtractNames<typeof useClasses_101>;
|
|
6799
6805
|
|
|
6800
6806
|
export declare const HvVerticalNavigationTreeViewItem: ForwardRefExoticComponent<HvVerticalNavigationTreeViewItemProps & RefAttributes<unknown>>;
|
|
6801
6807
|
|
|
6802
|
-
export declare type HvVerticalNavigationTreeViewItemClasses = ExtractNames<typeof
|
|
6808
|
+
export declare type HvVerticalNavigationTreeViewItemClasses = ExtractNames<typeof useClasses_102>;
|
|
6803
6809
|
|
|
6804
6810
|
export declare interface HvVerticalNavigationTreeViewItemProps {
|
|
6805
6811
|
/**
|
|
@@ -6962,7 +6968,7 @@ export declare interface HvVerticalNavigationTreeViewProps {
|
|
|
6962
6968
|
children?: React.ReactNode;
|
|
6963
6969
|
}
|
|
6964
6970
|
|
|
6965
|
-
export declare type HvVerticalScrollListItemClasses = ExtractNames<typeof
|
|
6971
|
+
export declare type HvVerticalScrollListItemClasses = ExtractNames<typeof useClasses_107>;
|
|
6966
6972
|
|
|
6967
6973
|
/**
|
|
6968
6974
|
* Provides the user with a descriptive text, signaling an error, for when the form element is in an invalid state.
|
|
@@ -7151,10 +7157,10 @@ export declare const loginClasses: {
|
|
|
7151
7157
|
};
|
|
7152
7158
|
|
|
7153
7159
|
export declare const multiButtonClasses: {
|
|
7154
|
-
button: "
|
|
7155
|
-
root: "
|
|
7156
|
-
vertical: "
|
|
7157
|
-
selected: "
|
|
7160
|
+
button: "HvMultiButton-button";
|
|
7161
|
+
root: "HvMultiButton-root";
|
|
7162
|
+
vertical: "HvMultiButton-vertical";
|
|
7163
|
+
selected: "HvMultiButton-selected";
|
|
7158
7164
|
};
|
|
7159
7165
|
|
|
7160
7166
|
export declare const multiSelectionEventHandler: (evt: any, index: any, selectionAnchor: any, allValues: any, selectedState: any, selectionCheck: any) => any[];
|
|
@@ -7474,6 +7480,10 @@ export declare const setId: (...args: any[]) => string | undefined;
|
|
|
7474
7480
|
|
|
7475
7481
|
export declare const setUid: (id: any, suffix: any) => string | undefined;
|
|
7476
7482
|
|
|
7483
|
+
export declare const simpleGridClasses: {
|
|
7484
|
+
root: "HvSimpleGrid-root";
|
|
7485
|
+
};
|
|
7486
|
+
|
|
7477
7487
|
export declare const sliderClasses: {
|
|
7478
7488
|
label: "HvSlider-label";
|
|
7479
7489
|
root: "HvSlider-root";
|
|
@@ -7889,7 +7899,20 @@ declare const useClasses_10: (classesProp?: Partial<Record<"root" | "show" | "hi
|
|
|
7889
7899
|
cx: (...args: any) => string;
|
|
7890
7900
|
};
|
|
7891
7901
|
|
|
7892
|
-
declare const useClasses_100: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
7902
|
+
declare const useClasses_100: (classesProp?: Partial<Record<"root" | "listItemSelected" | "listItemFocus", string>>, addStatic?: boolean) => {
|
|
7903
|
+
classes: {
|
|
7904
|
+
root: string;
|
|
7905
|
+
listItemSelected: string;
|
|
7906
|
+
listItemFocus: string;
|
|
7907
|
+
};
|
|
7908
|
+
css: {
|
|
7909
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
7910
|
+
(...args: CSSInterpolation[]): string;
|
|
7911
|
+
};
|
|
7912
|
+
cx: (...args: any) => string;
|
|
7913
|
+
};
|
|
7914
|
+
|
|
7915
|
+
declare const useClasses_101: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
7893
7916
|
classes: {
|
|
7894
7917
|
root: string;
|
|
7895
7918
|
};
|
|
@@ -7900,7 +7923,7 @@ declare const useClasses_100: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
7900
7923
|
cx: (...args: any) => string;
|
|
7901
7924
|
};
|
|
7902
7925
|
|
|
7903
|
-
declare const
|
|
7926
|
+
declare const useClasses_102: (classesProp?: Partial<Record<"content" | "unselectable" | "link" | "label" | "group" | "hide" | "expanded" | "disabled" | "selected" | "node" | "focused" | "selectable" | "labelIcon" | "collapsed" | "minimized" | "expandable" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
|
|
7904
7927
|
classes: {
|
|
7905
7928
|
content: string;
|
|
7906
7929
|
unselectable: string;
|
|
@@ -7928,7 +7951,7 @@ declare const useClasses_101: (classesProp?: Partial<Record<"content" | "unselec
|
|
|
7928
7951
|
cx: (...args: any) => string;
|
|
7929
7952
|
};
|
|
7930
7953
|
|
|
7931
|
-
declare const
|
|
7954
|
+
declare const useClasses_103: (classesProp?: Partial<Record<"label" | "root" | "error" | "rootDisabled" | "labelContainer" | "sliderBase" | "sliderContainer" | "trackDragging" | "trackStandBy" | "sliderRoot" | "rootRange" | "handleContainer" | "handle" | "handleContainerDisabled" | "handleHiddenContainer" | "labelIncluded" | "onlyInput" | "sliderTooltip", string>>, addStatic?: boolean) => {
|
|
7932
7955
|
classes: {
|
|
7933
7956
|
label: string;
|
|
7934
7957
|
root: string;
|
|
@@ -7956,7 +7979,7 @@ declare const useClasses_102: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
7956
7979
|
cx: (...args: any) => string;
|
|
7957
7980
|
};
|
|
7958
7981
|
|
|
7959
|
-
declare const
|
|
7982
|
+
declare const useClasses_104: (classesProp?: Partial<Record<"label" | "root" | "error" | "description" | "labelContainer", string>>, addStatic?: boolean) => {
|
|
7960
7983
|
classes: {
|
|
7961
7984
|
label: string;
|
|
7962
7985
|
root: string;
|
|
@@ -7971,7 +7994,7 @@ declare const useClasses_103: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
7971
7994
|
cx: (...args: any) => string;
|
|
7972
7995
|
};
|
|
7973
7996
|
|
|
7974
|
-
declare const
|
|
7997
|
+
declare const useClasses_105: (classesProp?: Partial<Record<"header" | "root" | "space" | "actionBar" | "dropdown" | "panel" | "baseDropdownSelection" | "rightSidePanel" | "leftSidePanel" | "applyButton", string>>, addStatic?: boolean) => {
|
|
7975
7998
|
classes: {
|
|
7976
7999
|
header: string;
|
|
7977
8000
|
root: string;
|
|
@@ -7991,7 +8014,7 @@ declare const useClasses_104: (classesProp?: Partial<Record<"header" | "root" |
|
|
|
7991
8014
|
cx: (...args: any) => string;
|
|
7992
8015
|
};
|
|
7993
8016
|
|
|
7994
|
-
declare const
|
|
8017
|
+
declare const useClasses_106: (classesProp?: Partial<Record<"label" | "root" | "icon" | "dropdown" | "action" | "error" | "actionContainer" | "panel" | "description" | "labelContainer" | "leftContainer" | "rightContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen", string>>, addStatic?: boolean) => {
|
|
7995
8018
|
classes: {
|
|
7996
8019
|
label: string;
|
|
7997
8020
|
root: string;
|
|
@@ -8015,7 +8038,7 @@ declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8015
8038
|
cx: (...args: any) => string;
|
|
8016
8039
|
};
|
|
8017
8040
|
|
|
8018
|
-
declare const
|
|
8041
|
+
declare const useClasses_107: (classesProp?: Partial<Record<"button" | "text" | "root" | "notSelected", string>>, addStatic?: boolean) => {
|
|
8019
8042
|
classes: {
|
|
8020
8043
|
button: string;
|
|
8021
8044
|
text: string;
|
|
@@ -8029,7 +8052,7 @@ declare const useClasses_106: (classesProp?: Partial<Record<"button" | "text" |
|
|
|
8029
8052
|
cx: (...args: any) => string;
|
|
8030
8053
|
};
|
|
8031
8054
|
|
|
8032
|
-
declare const
|
|
8055
|
+
declare const useClasses_108: (classesProp?: Partial<Record<"root" | "positionFixed" | "positionAbsolute", string>>, addStatic?: boolean) => {
|
|
8033
8056
|
classes: {
|
|
8034
8057
|
root: string;
|
|
8035
8058
|
positionFixed: string;
|
|
@@ -8042,7 +8065,7 @@ declare const useClasses_107: (classesProp?: Partial<Record<"root" | "positionFi
|
|
|
8042
8065
|
cx: (...args: any) => string;
|
|
8043
8066
|
};
|
|
8044
8067
|
|
|
8045
|
-
declare const
|
|
8068
|
+
declare const useClasses_109: (classesProp?: Partial<Record<"button" | "text" | "root" | "selected", string>>, addStatic?: boolean) => {
|
|
8046
8069
|
classes: {
|
|
8047
8070
|
button: string;
|
|
8048
8071
|
text: string;
|
|
@@ -8056,14 +8079,16 @@ declare const useClasses_108: (classesProp?: Partial<Record<"button" | "text" |
|
|
|
8056
8079
|
cx: (...args: any) => string;
|
|
8057
8080
|
};
|
|
8058
8081
|
|
|
8059
|
-
declare const
|
|
8082
|
+
declare const useClasses_11: (classesProp?: Partial<Record<"label" | "root" | "listbox" | "horizontal" | "vertical" | "error" | "invalid" | "description", string>>, addStatic?: boolean) => {
|
|
8060
8083
|
classes: {
|
|
8084
|
+
label: string;
|
|
8061
8085
|
root: string;
|
|
8062
|
-
|
|
8063
|
-
|
|
8064
|
-
|
|
8065
|
-
|
|
8066
|
-
|
|
8086
|
+
listbox: string;
|
|
8087
|
+
horizontal: string;
|
|
8088
|
+
vertical: string;
|
|
8089
|
+
error: string;
|
|
8090
|
+
invalid: string;
|
|
8091
|
+
description: string;
|
|
8067
8092
|
};
|
|
8068
8093
|
css: {
|
|
8069
8094
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8072,16 +8097,14 @@ declare const useClasses_109: (classesProp?: Partial<Record<"root" | "selected"
|
|
|
8072
8097
|
cx: (...args: any) => string;
|
|
8073
8098
|
};
|
|
8074
8099
|
|
|
8075
|
-
declare const
|
|
8100
|
+
declare const useClasses_110: (classesProp?: Partial<Record<"root" | "selected" | "positionSticky" | "positionFixed" | "notSelectedRoot" | "notSelected", string>>, addStatic?: boolean) => {
|
|
8076
8101
|
classes: {
|
|
8077
|
-
label: string;
|
|
8078
8102
|
root: string;
|
|
8079
|
-
|
|
8080
|
-
|
|
8081
|
-
|
|
8082
|
-
|
|
8083
|
-
|
|
8084
|
-
description: string;
|
|
8103
|
+
selected: string;
|
|
8104
|
+
positionSticky: string;
|
|
8105
|
+
positionFixed: string;
|
|
8106
|
+
notSelectedRoot: string;
|
|
8107
|
+
notSelected: string;
|
|
8085
8108
|
};
|
|
8086
8109
|
css: {
|
|
8087
8110
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8090,7 +8113,7 @@ declare const useClasses_11: (classesProp?: Partial<Record<"label" | "root" | "l
|
|
|
8090
8113
|
cx: (...args: any) => string;
|
|
8091
8114
|
};
|
|
8092
8115
|
|
|
8093
|
-
declare const
|
|
8116
|
+
declare const useClasses_111: (classesProp?: Partial<Record<"button" | "input" | "text" | "root" | "icon" | "inputBorderContainer" | "inputRoot" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
|
|
8094
8117
|
classes: {
|
|
8095
8118
|
button: string;
|
|
8096
8119
|
input: string;
|
|
@@ -8110,7 +8133,7 @@ declare const useClasses_110: (classesProp?: Partial<Record<"button" | "input" |
|
|
|
8110
8133
|
cx: (...args: any) => string;
|
|
8111
8134
|
};
|
|
8112
8135
|
|
|
8113
|
-
declare const
|
|
8136
|
+
declare const useClasses_112: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
8114
8137
|
classes: {
|
|
8115
8138
|
root: string;
|
|
8116
8139
|
};
|
|
@@ -8121,7 +8144,7 @@ declare const useClasses_111: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8121
8144
|
cx: (...args: any) => string;
|
|
8122
8145
|
};
|
|
8123
8146
|
|
|
8124
|
-
declare const
|
|
8147
|
+
declare const useClasses_113: (classesProp?: Partial<Record<"root" | "removeButton" | "topGroup" | "subGroup" | "combinator" | "topCombinator" | "combinatorButton" | "topRemoveButton" | "topRemoveButtonDisabled" | "rulesContainer" | "subRulesContainer" | "actionButtonContainer" | "topActionButtonContainer" | "topRulesContainer" | "buttonBackground", string>>, addStatic?: boolean) => {
|
|
8125
8148
|
classes: {
|
|
8126
8149
|
root: string;
|
|
8127
8150
|
removeButton: string;
|
|
@@ -8146,7 +8169,7 @@ declare const useClasses_112: (classesProp?: Partial<Record<"root" | "removeButt
|
|
|
8146
8169
|
cx: (...args: any) => string;
|
|
8147
8170
|
};
|
|
8148
8171
|
|
|
8149
|
-
declare const
|
|
8172
|
+
declare const useClasses_114: (classesProp?: Partial<Record<"label" | "root" | "colorPicker" | "panel" | "description" | "labelContainer" | "headerColorValue" | "headerColorIcon" | "colorPickerIcon" | "recommendedColorsRoot" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
|
|
8150
8173
|
classes: {
|
|
8151
8174
|
label: string;
|
|
8152
8175
|
root: string;
|
|
@@ -8169,7 +8192,7 @@ declare const useClasses_113: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8169
8192
|
cx: (...args: any) => string;
|
|
8170
8193
|
};
|
|
8171
8194
|
|
|
8172
|
-
declare const
|
|
8195
|
+
declare const useClasses_115: (classesProp?: Partial<Record<"title" | "main" | "root" | "dot" | "controls" | "xs" | "actions" | "panel" | "fullscreen" | "closeButton" | "mainContainer" | "pageCounter" | "mainXs" | "mainFullscreen" | "counterContainer" | "counter" | "slideControls" | "slidesViewport" | "slidesContainer" | "dots" | "dotsXs" | "dotSelected" | "thumbnail" | "thumbnailSelected", string>>, addStatic?: boolean) => {
|
|
8173
8196
|
classes: {
|
|
8174
8197
|
title: string;
|
|
8175
8198
|
main: string;
|
|
@@ -8203,7 +8226,7 @@ declare const useClasses_114: (classesProp?: Partial<Record<"title" | "main" | "
|
|
|
8203
8226
|
cx: (...args: any) => string;
|
|
8204
8227
|
};
|
|
8205
8228
|
|
|
8206
|
-
declare const
|
|
8229
|
+
declare const useClasses_116: (classesProp?: Partial<Record<"image" | "slide", string>>, addStatic?: boolean) => {
|
|
8207
8230
|
classes: {
|
|
8208
8231
|
image: string;
|
|
8209
8232
|
slide: string;
|
|
@@ -8215,7 +8238,7 @@ declare const useClasses_115: (classesProp?: Partial<Record<"image" | "slide", s
|
|
|
8215
8238
|
cx: (...args: any) => string;
|
|
8216
8239
|
};
|
|
8217
8240
|
|
|
8218
|
-
declare const
|
|
8241
|
+
declare const useClasses_117: (classesProp?: Partial<Record<"placeholder" | "label" | "root" | "icon" | "error" | "description" | "labelContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "dropdownHeader" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
|
|
8219
8242
|
classes: {
|
|
8220
8243
|
placeholder: string;
|
|
8221
8244
|
label: string;
|
|
@@ -8824,7 +8847,18 @@ declare const useClasses_43: (classesProp?: Partial<Record<"progress" | "root" |
|
|
|
8824
8847
|
cx: (...args: any) => string;
|
|
8825
8848
|
};
|
|
8826
8849
|
|
|
8827
|
-
declare const useClasses_44: (classesProp?: Partial<Record<"root"
|
|
8850
|
+
declare const useClasses_44: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
8851
|
+
classes: {
|
|
8852
|
+
root: string;
|
|
8853
|
+
};
|
|
8854
|
+
css: {
|
|
8855
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8856
|
+
(...args: CSSInterpolation[]): string;
|
|
8857
|
+
};
|
|
8858
|
+
cx: (...args: any) => string;
|
|
8859
|
+
};
|
|
8860
|
+
|
|
8861
|
+
declare const useClasses_45: (classesProp?: Partial<Record<"root" | "row" | "column" | "xs" | "sm" | "md" | "lg" | "xl", string>>, addStatic?: boolean) => {
|
|
8828
8862
|
classes: {
|
|
8829
8863
|
root: string;
|
|
8830
8864
|
row: string;
|
|
@@ -8842,7 +8876,7 @@ declare const useClasses_44: (classesProp?: Partial<Record<"root" | "row" | "col
|
|
|
8842
8876
|
cx: (...args: any) => string;
|
|
8843
8877
|
};
|
|
8844
8878
|
|
|
8845
|
-
declare const
|
|
8879
|
+
declare const useClasses_46: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
8846
8880
|
classes: {
|
|
8847
8881
|
root: string;
|
|
8848
8882
|
disabled: string;
|
|
@@ -8856,7 +8890,7 @@ declare const useClasses_45: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
8856
8890
|
cx: (...args: any) => string;
|
|
8857
8891
|
};
|
|
8858
8892
|
|
|
8859
|
-
declare const
|
|
8893
|
+
declare const useClasses_47: (classesProp?: Partial<Record<"root" | "indicator" | "scroller" | "flexContainer", string>>, addStatic?: boolean) => {
|
|
8860
8894
|
classes: {
|
|
8861
8895
|
root: string;
|
|
8862
8896
|
indicator: string;
|
|
@@ -8870,7 +8904,7 @@ declare const useClasses_46: (classesProp?: Partial<Record<"root" | "indicator"
|
|
|
8870
8904
|
cx: (...args: any) => string;
|
|
8871
8905
|
};
|
|
8872
8906
|
|
|
8873
|
-
declare const
|
|
8907
|
+
declare const useClasses_48: (classesProp?: Partial<Record<"button" | "label" | "root" | "disabled" | "focusVisible" | "chipRoot" | "tagButton" | "deleteIcon" | "disabledDeleteIcon" | "categorical" | "clickable" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
|
|
8874
8908
|
classes: {
|
|
8875
8909
|
button: string;
|
|
8876
8910
|
label: string;
|
|
@@ -8893,7 +8927,7 @@ declare const useClasses_47: (classesProp?: Partial<Record<"button" | "label" |
|
|
|
8893
8927
|
cx: (...args: any) => string;
|
|
8894
8928
|
};
|
|
8895
8929
|
|
|
8896
|
-
declare const
|
|
8930
|
+
declare const useClasses_49: (classesProp?: Partial<Record<"title" | "color" | "root" | "tooltip" | "tooltipMulti" | "popper" | "valuesContainer" | "values" | "separatorColor" | "separator" | "valueWrapper", string>>, addStatic?: boolean) => {
|
|
8897
8931
|
classes: {
|
|
8898
8932
|
title: string;
|
|
8899
8933
|
color: string;
|
|
@@ -8914,11 +8948,12 @@ declare const useClasses_48: (classesProp?: Partial<Record<"title" | "color" | "
|
|
|
8914
8948
|
cx: (...args: any) => string;
|
|
8915
8949
|
};
|
|
8916
8950
|
|
|
8917
|
-
declare const
|
|
8951
|
+
declare const useClasses_5: (classesProp?: Partial<Record<"root" | "counterDisabled" | "gutter" | "overloaded", string>>, addStatic?: boolean) => {
|
|
8918
8952
|
classes: {
|
|
8919
|
-
|
|
8920
|
-
|
|
8921
|
-
|
|
8953
|
+
root: string;
|
|
8954
|
+
counterDisabled: string;
|
|
8955
|
+
gutter: string;
|
|
8956
|
+
overloaded: string;
|
|
8922
8957
|
};
|
|
8923
8958
|
css: {
|
|
8924
8959
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8927,12 +8962,11 @@ declare const useClasses_49: (classesProp?: Partial<Record<"tooltipData" | "tool
|
|
|
8927
8962
|
cx: (...args: any) => string;
|
|
8928
8963
|
};
|
|
8929
8964
|
|
|
8930
|
-
declare const
|
|
8965
|
+
declare const useClasses_50: (classesProp?: Partial<Record<"tooltipData" | "tooltipAnchor" | "tooltipAnchorParagraph", string>>, addStatic?: boolean) => {
|
|
8931
8966
|
classes: {
|
|
8932
|
-
|
|
8933
|
-
|
|
8934
|
-
|
|
8935
|
-
overloaded: string;
|
|
8967
|
+
tooltipData: string;
|
|
8968
|
+
tooltipAnchor: string;
|
|
8969
|
+
tooltipAnchorParagraph: string;
|
|
8936
8970
|
};
|
|
8937
8971
|
css: {
|
|
8938
8972
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8941,7 +8975,7 @@ declare const useClasses_5: (classesProp?: Partial<Record<"root" | "counterDisab
|
|
|
8941
8975
|
cx: (...args: any) => string;
|
|
8942
8976
|
};
|
|
8943
8977
|
|
|
8944
|
-
declare const
|
|
8978
|
+
declare const useClasses_51: (classesProp?: Partial<Record<"root" | "icon" | "disabled" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
8945
8979
|
classes: {
|
|
8946
8980
|
root: string;
|
|
8947
8981
|
icon: string;
|
|
@@ -8955,7 +8989,7 @@ declare const useClasses_50: (classesProp?: Partial<Record<"root" | "icon" | "di
|
|
|
8955
8989
|
cx: (...args: any) => string;
|
|
8956
8990
|
};
|
|
8957
8991
|
|
|
8958
|
-
declare const
|
|
8992
|
+
declare const useClasses_52: (classesProp?: Partial<Record<"root" | "icon" | "disabled" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
8959
8993
|
classes: {
|
|
8960
8994
|
root: string;
|
|
8961
8995
|
icon: string;
|
|
@@ -8969,7 +9003,7 @@ declare const useClasses_51: (classesProp?: Partial<Record<"root" | "icon" | "di
|
|
|
8969
9003
|
cx: (...args: any) => string;
|
|
8970
9004
|
};
|
|
8971
9005
|
|
|
8972
|
-
declare const
|
|
9006
|
+
declare const useClasses_53: (classesProp?: Partial<Record<"title" | "open" | "root" | "single" | "item" | "itemSelected" | "itemDisabled" | "itemTrigger" | "itemIcon" | "itemTitle" | "itemInfoIcon" | "actionsContainer" | "footerContainer" | "closed" | "dual" | "fluid", string>>, addStatic?: boolean) => {
|
|
8973
9007
|
classes: {
|
|
8974
9008
|
title: string;
|
|
8975
9009
|
open: string;
|
|
@@ -8995,7 +9029,7 @@ declare const useClasses_52: (classesProp?: Partial<Record<"title" | "open" | "r
|
|
|
8995
9029
|
cx: (...args: any) => string;
|
|
8996
9030
|
};
|
|
8997
9031
|
|
|
8998
|
-
declare const
|
|
9032
|
+
declare const useClasses_54: (classesProp?: Partial<Record<"title" | "root" | "typography" | "icon" | "disabled" | "selected" | "iconUrl" | "iconInfo", string>>, addStatic?: boolean) => {
|
|
8999
9033
|
classes: {
|
|
9000
9034
|
title: string;
|
|
9001
9035
|
root: string;
|
|
@@ -9013,7 +9047,7 @@ declare const useClasses_53: (classesProp?: Partial<Record<"title" | "root" | "t
|
|
|
9013
9047
|
cx: (...args: any) => string;
|
|
9014
9048
|
};
|
|
9015
9049
|
|
|
9016
|
-
declare const
|
|
9050
|
+
declare const useClasses_55: (classesProp?: Partial<Record<"track" | "switch" | "root" | "disabled" | "checked" | "readOnly" | "focusVisible" | "thumb" | "switchBase", string>>, addStatic?: boolean) => {
|
|
9017
9051
|
classes: {
|
|
9018
9052
|
track: string;
|
|
9019
9053
|
switch: string;
|
|
@@ -9032,7 +9066,7 @@ declare const useClasses_54: (classesProp?: Partial<Record<"track" | "switch" |
|
|
|
9032
9066
|
cx: (...args: any) => string;
|
|
9033
9067
|
};
|
|
9034
9068
|
|
|
9035
|
-
declare const
|
|
9069
|
+
declare const useClasses_56: (classesProp?: Partial<Record<"label" | "root" | "container" | "checkbox" | "disabled" | "focusVisible" | "invalidContainer" | "invalidCheckbox", string>>, addStatic?: boolean) => {
|
|
9036
9070
|
classes: {
|
|
9037
9071
|
label: string;
|
|
9038
9072
|
root: string;
|
|
@@ -9050,7 +9084,7 @@ declare const useClasses_55: (classesProp?: Partial<Record<"label" | "root" | "c
|
|
|
9050
9084
|
cx: (...args: any) => string;
|
|
9051
9085
|
};
|
|
9052
9086
|
|
|
9053
|
-
declare const
|
|
9087
|
+
declare const useClasses_57: (classesProp?: Partial<Record<"input" | "label" | "root" | "icon" | "error" | "inputBorderContainer" | "inputRoot" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "description" | "labelContainer" | "adornmentsBox" | "adornmentButton" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList" | "inputExtension", string>>, addStatic?: boolean) => {
|
|
9054
9088
|
classes: {
|
|
9055
9089
|
input: string;
|
|
9056
9090
|
label: string;
|
|
@@ -9079,7 +9113,7 @@ declare const useClasses_56: (classesProp?: Partial<Record<"input" | "label" | "
|
|
|
9079
9113
|
cx: (...args: any) => string;
|
|
9080
9114
|
};
|
|
9081
9115
|
|
|
9082
|
-
declare const
|
|
9116
|
+
declare const useClasses_58: (classesProp?: Partial<Record<"label" | "root" | "error" | "switchContainer" | "invalidSwitch", string>>, addStatic?: boolean) => {
|
|
9083
9117
|
classes: {
|
|
9084
9118
|
label: string;
|
|
9085
9119
|
root: string;
|
|
@@ -9094,7 +9128,7 @@ declare const useClasses_57: (classesProp?: Partial<Record<"label" | "root" | "e
|
|
|
9094
9128
|
cx: (...args: any) => string;
|
|
9095
9129
|
};
|
|
9096
9130
|
|
|
9097
|
-
declare const
|
|
9131
|
+
declare const useClasses_59: (classesProp?: Partial<Record<"label" | "root" | "container" | "radio" | "disabled" | "focusVisible" | "invalidContainer" | "invalidRadio", string>>, addStatic?: boolean) => {
|
|
9098
9132
|
classes: {
|
|
9099
9133
|
label: string;
|
|
9100
9134
|
root: string;
|
|
@@ -9112,7 +9146,23 @@ declare const useClasses_58: (classesProp?: Partial<Record<"label" | "root" | "c
|
|
|
9112
9146
|
cx: (...args: any) => string;
|
|
9113
9147
|
};
|
|
9114
9148
|
|
|
9115
|
-
declare const
|
|
9149
|
+
declare const useClasses_6: (classesProp?: Partial<Record<"root" | "icon" | "adornment" | "adornmentButton" | "adornmentIcon" | "hideIcon", string>>, addStatic?: boolean) => {
|
|
9150
|
+
classes: {
|
|
9151
|
+
root: string;
|
|
9152
|
+
icon: string;
|
|
9153
|
+
adornment: string;
|
|
9154
|
+
adornmentButton: string;
|
|
9155
|
+
adornmentIcon: string;
|
|
9156
|
+
hideIcon: string;
|
|
9157
|
+
};
|
|
9158
|
+
css: {
|
|
9159
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9160
|
+
(...args: CSSInterpolation[]): string;
|
|
9161
|
+
};
|
|
9162
|
+
cx: (...args: any) => string;
|
|
9163
|
+
};
|
|
9164
|
+
|
|
9165
|
+
declare const useClasses_60: (classesProp?: Partial<Record<"input" | "label" | "root" | "disabled" | "baseInput" | "error" | "invalid" | "resizable" | "inputResizable" | "description" | "labelContainer" | "characterCounter", string>>, addStatic?: boolean) => {
|
|
9116
9166
|
classes: {
|
|
9117
9167
|
input: string;
|
|
9118
9168
|
label: string;
|
|
@@ -9134,23 +9184,7 @@ declare const useClasses_59: (classesProp?: Partial<Record<"input" | "label" | "
|
|
|
9134
9184
|
cx: (...args: any) => string;
|
|
9135
9185
|
};
|
|
9136
9186
|
|
|
9137
|
-
declare const
|
|
9138
|
-
classes: {
|
|
9139
|
-
root: string;
|
|
9140
|
-
icon: string;
|
|
9141
|
-
adornment: string;
|
|
9142
|
-
adornmentButton: string;
|
|
9143
|
-
adornmentIcon: string;
|
|
9144
|
-
hideIcon: string;
|
|
9145
|
-
};
|
|
9146
|
-
css: {
|
|
9147
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9148
|
-
(...args: CSSInterpolation[]): string;
|
|
9149
|
-
};
|
|
9150
|
-
cx: (...args: any) => string;
|
|
9151
|
-
};
|
|
9152
|
-
|
|
9153
|
-
declare const useClasses_60: (classesProp?: Partial<Record<"input" | "label" | "root" | "disabled" | "readOnly" | "error" | "invalid" | "resizable" | "description" | "labelContainer" | "suggestionsContainer" | "suggestionList" | "inputExtension" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagsList" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty" | "singleLine", string>>, addStatic?: boolean) => {
|
|
9187
|
+
declare const useClasses_61: (classesProp?: Partial<Record<"input" | "label" | "root" | "disabled" | "readOnly" | "error" | "invalid" | "resizable" | "description" | "labelContainer" | "suggestionsContainer" | "suggestionList" | "inputExtension" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagsList" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty" | "singleLine", string>>, addStatic?: boolean) => {
|
|
9154
9188
|
classes: {
|
|
9155
9189
|
input: string;
|
|
9156
9190
|
label: string;
|
|
@@ -9185,7 +9219,7 @@ declare const useClasses_60: (classesProp?: Partial<Record<"input" | "label" | "
|
|
|
9185
9219
|
cx: (...args: any) => string;
|
|
9186
9220
|
};
|
|
9187
9221
|
|
|
9188
|
-
declare const
|
|
9222
|
+
declare const useClasses_62: (classesProp?: Partial<Record<"label" | "root" | "group" | "horizontal" | "vertical" | "error" | "invalid" | "selectAll", string>>, addStatic?: boolean) => {
|
|
9189
9223
|
classes: {
|
|
9190
9224
|
label: string;
|
|
9191
9225
|
root: string;
|
|
@@ -9203,7 +9237,7 @@ declare const useClasses_61: (classesProp?: Partial<Record<"label" | "root" | "g
|
|
|
9203
9237
|
cx: (...args: any) => string;
|
|
9204
9238
|
};
|
|
9205
9239
|
|
|
9206
|
-
declare const
|
|
9240
|
+
declare const useClasses_63: (classesProp?: Partial<Record<"link" | "root" | "item" | "virtualizedRoot" | "selectorRoot" | "selectorContainer" | "box" | "truncate" | "itemSelector" | "selectAllSelector", string>>, addStatic?: boolean) => {
|
|
9207
9241
|
classes: {
|
|
9208
9242
|
link: string;
|
|
9209
9243
|
root: string;
|
|
@@ -9223,7 +9257,7 @@ declare const useClasses_62: (classesProp?: Partial<Record<"link" | "root" | "it
|
|
|
9223
9257
|
cx: (...args: any) => string;
|
|
9224
9258
|
};
|
|
9225
9259
|
|
|
9226
|
-
declare const
|
|
9260
|
+
declare const useClasses_64: (classesProp?: Partial<Record<"label" | "root" | "group" | "horizontal" | "vertical" | "error" | "invalid", string>>, addStatic?: boolean) => {
|
|
9227
9261
|
classes: {
|
|
9228
9262
|
label: string;
|
|
9229
9263
|
root: string;
|
|
@@ -9240,7 +9274,7 @@ declare const useClasses_63: (classesProp?: Partial<Record<"label" | "root" | "g
|
|
|
9240
9274
|
cx: (...args: any) => string;
|
|
9241
9275
|
};
|
|
9242
9276
|
|
|
9243
|
-
declare const
|
|
9277
|
+
declare const useClasses_65: (classesProp?: Partial<Record<"overlay" | "previewButton", string>>, addStatic?: boolean) => {
|
|
9244
9278
|
classes: {
|
|
9245
9279
|
overlay: string;
|
|
9246
9280
|
previewButton: string;
|
|
@@ -9252,7 +9286,7 @@ declare const useClasses_64: (classesProp?: Partial<Record<"overlay" | "previewB
|
|
|
9252
9286
|
cx: (...args: any) => string;
|
|
9253
9287
|
};
|
|
9254
9288
|
|
|
9255
|
-
declare const
|
|
9289
|
+
declare const useClasses_66: (classesProp?: Partial<Record<"root" | "progressbar" | "icon" | "removeButton" | "fail" | "progressbarBack" | "nameText" | "progressTextContainer" | "previewContainer", string>>, addStatic?: boolean) => {
|
|
9256
9290
|
classes: {
|
|
9257
9291
|
root: string;
|
|
9258
9292
|
progressbar: string;
|
|
@@ -9271,7 +9305,7 @@ declare const useClasses_65: (classesProp?: Partial<Record<"root" | "progressbar
|
|
|
9271
9305
|
cx: (...args: any) => string;
|
|
9272
9306
|
};
|
|
9273
9307
|
|
|
9274
|
-
declare const
|
|
9308
|
+
declare const useClasses_67: (classesProp?: Partial<Record<"root" | "container" | "icon" | "baseContainer" | "iconSelected" | "menuListRoot" | "menuList", string>>, addStatic?: boolean) => {
|
|
9275
9309
|
classes: {
|
|
9276
9310
|
root: string;
|
|
9277
9311
|
container: string;
|
|
@@ -9288,7 +9322,7 @@ declare const useClasses_66: (classesProp?: Partial<Record<"root" | "container"
|
|
|
9288
9322
|
cx: (...args: any) => string;
|
|
9289
9323
|
};
|
|
9290
9324
|
|
|
9291
|
-
declare const
|
|
9325
|
+
declare const useClasses_68: (classesProp?: Partial<Record<"root" | "icon" | "pageSizeOptions" | "iconContainer" | "pageSizeTextContainer" | "pageSizeOptionsSelect" | "pageNavigator" | "pageInfo" | "pageJump" | "pageSizeInput" | "pageSizeInputRoot" | "pageSizeInputContainer", string>>, addStatic?: boolean) => {
|
|
9292
9326
|
classes: {
|
|
9293
9327
|
root: string;
|
|
9294
9328
|
icon: string;
|
|
@@ -9310,7 +9344,7 @@ declare const useClasses_67: (classesProp?: Partial<Record<"root" | "icon" | "pa
|
|
|
9310
9344
|
cx: (...args: any) => string;
|
|
9311
9345
|
};
|
|
9312
9346
|
|
|
9313
|
-
declare const
|
|
9347
|
+
declare const useClasses_69: (classesProp?: Partial<Record<"button" | "root" | "dropDownMenu" | "actionContainer" | "dropDownMenuButton" | "dropDownMenuButtonSelected", string>>, addStatic?: boolean) => {
|
|
9314
9348
|
classes: {
|
|
9315
9349
|
button: string;
|
|
9316
9350
|
root: string;
|
|
@@ -9326,15 +9360,9 @@ declare const useClasses_68: (classesProp?: Partial<Record<"button" | "root" | "
|
|
|
9326
9360
|
cx: (...args: any) => string;
|
|
9327
9361
|
};
|
|
9328
9362
|
|
|
9329
|
-
declare const
|
|
9363
|
+
declare const useClasses_7: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
9330
9364
|
classes: {
|
|
9331
|
-
link: string;
|
|
9332
|
-
a: string;
|
|
9333
9365
|
root: string;
|
|
9334
|
-
orderedList: string;
|
|
9335
|
-
currentPage: string;
|
|
9336
|
-
centerContainer: string;
|
|
9337
|
-
separatorContainer: string;
|
|
9338
9366
|
};
|
|
9339
9367
|
css: {
|
|
9340
9368
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9343,9 +9371,15 @@ declare const useClasses_69: (classesProp?: Partial<Record<"link" | "a" | "root"
|
|
|
9343
9371
|
cx: (...args: any) => string;
|
|
9344
9372
|
};
|
|
9345
9373
|
|
|
9346
|
-
declare const
|
|
9374
|
+
declare const useClasses_70: (classesProp?: Partial<Record<"link" | "a" | "root" | "orderedList" | "currentPage" | "centerContainer" | "separatorContainer", string>>, addStatic?: boolean) => {
|
|
9347
9375
|
classes: {
|
|
9376
|
+
link: string;
|
|
9377
|
+
a: string;
|
|
9348
9378
|
root: string;
|
|
9379
|
+
orderedList: string;
|
|
9380
|
+
currentPage: string;
|
|
9381
|
+
centerContainer: string;
|
|
9382
|
+
separatorContainer: string;
|
|
9349
9383
|
};
|
|
9350
9384
|
css: {
|
|
9351
9385
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9354,7 +9388,7 @@ declare const useClasses_7: (classesProp?: Partial<Record<"root", string>>, addS
|
|
|
9354
9388
|
cx: (...args: any) => string;
|
|
9355
9389
|
};
|
|
9356
9390
|
|
|
9357
|
-
declare const
|
|
9391
|
+
declare const useClasses_71: (classesProp?: Partial<Record<"root" | "radio" | "horizontal" | "icon" | "radioRoot", string>>, addStatic?: boolean) => {
|
|
9358
9392
|
classes: {
|
|
9359
9393
|
root: string;
|
|
9360
9394
|
radio: string;
|
|
@@ -9369,7 +9403,7 @@ declare const useClasses_70: (classesProp?: Partial<Record<"root" | "radio" | "h
|
|
|
9369
9403
|
cx: (...args: any) => string;
|
|
9370
9404
|
};
|
|
9371
9405
|
|
|
9372
|
-
declare const
|
|
9406
|
+
declare const useClasses_72: (classesProp?: Partial<Record<"root" | "rootClosed" | "anchorOriginTopCenter" | "anchorOriginBottomCenter", string>>, addStatic?: boolean) => {
|
|
9373
9407
|
classes: {
|
|
9374
9408
|
root: string;
|
|
9375
9409
|
rootClosed: string;
|
|
@@ -9383,7 +9417,7 @@ declare const useClasses_71: (classesProp?: Partial<Record<"root" | "rootClosed"
|
|
|
9383
9417
|
cx: (...args: any) => string;
|
|
9384
9418
|
};
|
|
9385
9419
|
|
|
9386
|
-
declare const
|
|
9420
|
+
declare const useClasses_73: (classesProp?: Partial<Record<"actionContainer" | "iconContainer" | "actionsInnerContainer" | "closeAction", string>>, addStatic?: boolean) => {
|
|
9387
9421
|
classes: {
|
|
9388
9422
|
actionContainer: string;
|
|
9389
9423
|
iconContainer: string;
|
|
@@ -9397,7 +9431,7 @@ declare const useClasses_72: (classesProp?: Partial<Record<"actionContainer" | "
|
|
|
9397
9431
|
cx: (...args: any) => string;
|
|
9398
9432
|
};
|
|
9399
9433
|
|
|
9400
|
-
declare const
|
|
9434
|
+
declare const useClasses_74: (classesProp?: Partial<Record<"root" | "default" | "warning" | "action" | "error" | "success" | "message" | "baseVariant" | "outContainer", string>>, addStatic?: boolean) => {
|
|
9401
9435
|
classes: {
|
|
9402
9436
|
root: string;
|
|
9403
9437
|
default: string;
|
|
@@ -9416,7 +9450,7 @@ declare const useClasses_73: (classesProp?: Partial<Record<"root" | "default" |
|
|
|
9416
9450
|
cx: (...args: any) => string;
|
|
9417
9451
|
};
|
|
9418
9452
|
|
|
9419
|
-
declare const
|
|
9453
|
+
declare const useClasses_75: (classesProp?: Partial<Record<"root" | "anchorOriginTopCenter" | "anchorOriginBottomCenter" | "anchorOriginTopRight" | "anchorOriginBottomRight" | "anchorOriginTopLeft" | "anchorOriginBottomLeft", string>>, addStatic?: boolean) => {
|
|
9420
9454
|
classes: {
|
|
9421
9455
|
root: string;
|
|
9422
9456
|
anchorOriginTopCenter: string;
|
|
@@ -9433,7 +9467,7 @@ declare const useClasses_74: (classesProp?: Partial<Record<"root" | "anchorOrigi
|
|
|
9433
9467
|
cx: (...args: any) => string;
|
|
9434
9468
|
};
|
|
9435
9469
|
|
|
9436
|
-
declare const
|
|
9470
|
+
declare const useClasses_76: (classesProp?: Partial<Record<"root" | "default" | "warning" | "action" | "error" | "success" | "message" | "messageSpan" | "messageText" | "iconVariant", string>>, addStatic?: boolean) => {
|
|
9437
9471
|
classes: {
|
|
9438
9472
|
root: string;
|
|
9439
9473
|
default: string;
|
|
@@ -9453,7 +9487,7 @@ declare const useClasses_75: (classesProp?: Partial<Record<"root" | "default" |
|
|
|
9453
9487
|
cx: (...args: any) => string;
|
|
9454
9488
|
};
|
|
9455
9489
|
|
|
9456
|
-
declare const
|
|
9490
|
+
declare const useClasses_77: (classesProp?: Partial<Record<"snackItemRoot", string>>, addStatic?: boolean) => {
|
|
9457
9491
|
classes: {
|
|
9458
9492
|
snackItemRoot: string;
|
|
9459
9493
|
};
|
|
@@ -9464,7 +9498,7 @@ declare const useClasses_76: (classesProp?: Partial<Record<"snackItemRoot", stri
|
|
|
9464
9498
|
cx: (...args: any) => string;
|
|
9465
9499
|
};
|
|
9466
9500
|
|
|
9467
|
-
declare const
|
|
9501
|
+
declare const useClasses_78: (classesProp?: Partial<Record<"root" | "semantic" | "actions" | "selectAllContainer" | "selectAll" | "selectAllPages" | "divider", string>>, addStatic?: boolean) => {
|
|
9468
9502
|
classes: {
|
|
9469
9503
|
root: string;
|
|
9470
9504
|
semantic: string;
|
|
@@ -9481,7 +9515,7 @@ declare const useClasses_77: (classesProp?: Partial<Record<"root" | "semantic" |
|
|
|
9481
9515
|
cx: (...args: any) => string;
|
|
9482
9516
|
};
|
|
9483
9517
|
|
|
9484
|
-
declare const
|
|
9518
|
+
declare const useClasses_79: (classesProp?: Partial<Record<"root" | "name" | "global" | "wrapper" | "actions" | "positionSticky" | "positionFixed" | "globalWrapperComplement" | "globalSectionArea" | "backButton", string>>, addStatic?: boolean) => {
|
|
9485
9519
|
classes: {
|
|
9486
9520
|
root: string;
|
|
9487
9521
|
name: string;
|
|
@@ -9501,7 +9535,20 @@ declare const useClasses_78: (classesProp?: Partial<Record<"root" | "name" | "gl
|
|
|
9501
9535
|
cx: (...args: any) => string;
|
|
9502
9536
|
};
|
|
9503
9537
|
|
|
9504
|
-
declare const
|
|
9538
|
+
declare const useClasses_8: (classesProp?: Partial<Record<"root" | "labelDisabled" | "childGutter", string>>, addStatic?: boolean) => {
|
|
9539
|
+
classes: {
|
|
9540
|
+
root: string;
|
|
9541
|
+
labelDisabled: string;
|
|
9542
|
+
childGutter: string;
|
|
9543
|
+
};
|
|
9544
|
+
css: {
|
|
9545
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9546
|
+
(...args: CSSInterpolation[]): string;
|
|
9547
|
+
};
|
|
9548
|
+
cx: (...args: any) => string;
|
|
9549
|
+
};
|
|
9550
|
+
|
|
9551
|
+
declare const useClasses_80: (classesProp?: Partial<Record<"placeholder" | "arrow" | "label" | "root" | "dropdown" | "error" | "selectionDisabled" | "description" | "labelContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "dropdownHeader" | "dropdownListContainer" | "rootList", string>>, addStatic?: boolean) => {
|
|
9505
9552
|
classes: {
|
|
9506
9553
|
placeholder: string;
|
|
9507
9554
|
arrow: string;
|
|
@@ -9525,20 +9572,7 @@ declare const useClasses_79: (classesProp?: Partial<Record<"placeholder" | "arro
|
|
|
9525
9572
|
cx: (...args: any) => string;
|
|
9526
9573
|
};
|
|
9527
9574
|
|
|
9528
|
-
declare const
|
|
9529
|
-
classes: {
|
|
9530
|
-
root: string;
|
|
9531
|
-
labelDisabled: string;
|
|
9532
|
-
childGutter: string;
|
|
9533
|
-
};
|
|
9534
|
-
css: {
|
|
9535
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9536
|
-
(...args: CSSInterpolation[]): string;
|
|
9537
|
-
};
|
|
9538
|
-
cx: (...args: any) => string;
|
|
9539
|
-
};
|
|
9540
|
-
|
|
9541
|
-
declare const useClasses_80: (classesProp?: Partial<Record<"selection" | "selectAllContainer" | "selectAll" | "dropdownListContainer" | "rootList" | "searchContainer" | "listBorderDown" | "listContainer", string>>, addStatic?: boolean) => {
|
|
9575
|
+
declare const useClasses_81: (classesProp?: Partial<Record<"selection" | "selectAllContainer" | "selectAll" | "dropdownListContainer" | "rootList" | "searchContainer" | "listBorderDown" | "listContainer", string>>, addStatic?: boolean) => {
|
|
9542
9576
|
classes: {
|
|
9543
9577
|
selection: string;
|
|
9544
9578
|
selectAllContainer: string;
|
|
@@ -9556,7 +9590,7 @@ declare const useClasses_80: (classesProp?: Partial<Record<"selection" | "select
|
|
|
9556
9590
|
cx: (...args: any) => string;
|
|
9557
9591
|
};
|
|
9558
9592
|
|
|
9559
|
-
declare const
|
|
9593
|
+
declare const useClasses_82: (classesProp?: Partial<Record<"root" | "stickyHeader" | "stickyColumns" | "listRow", string>>, addStatic?: boolean) => {
|
|
9560
9594
|
classes: {
|
|
9561
9595
|
root: string;
|
|
9562
9596
|
stickyHeader: string;
|
|
@@ -9570,7 +9604,7 @@ declare const useClasses_81: (classesProp?: Partial<Record<"root" | "stickyHeade
|
|
|
9570
9604
|
cx: (...args: any) => string;
|
|
9571
9605
|
};
|
|
9572
9606
|
|
|
9573
|
-
declare const
|
|
9607
|
+
declare const useClasses_83: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
9574
9608
|
classes: {
|
|
9575
9609
|
root: string;
|
|
9576
9610
|
};
|
|
@@ -9581,7 +9615,7 @@ declare const useClasses_82: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
9581
9615
|
cx: (...args: any) => string;
|
|
9582
9616
|
};
|
|
9583
9617
|
|
|
9584
|
-
declare const
|
|
9618
|
+
declare const useClasses_84: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
9585
9619
|
classes: {
|
|
9586
9620
|
root: string;
|
|
9587
9621
|
};
|
|
@@ -9592,7 +9626,7 @@ declare const useClasses_83: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
9592
9626
|
cx: (...args: any) => string;
|
|
9593
9627
|
};
|
|
9594
9628
|
|
|
9595
|
-
declare const
|
|
9629
|
+
declare const useClasses_85: (classesProp?: Partial<Record<"root" | "stickyHeader", string>>, addStatic?: boolean) => {
|
|
9596
9630
|
classes: {
|
|
9597
9631
|
root: string;
|
|
9598
9632
|
stickyHeader: string;
|
|
@@ -9604,7 +9638,7 @@ declare const useClasses_84: (classesProp?: Partial<Record<"root" | "stickyHeade
|
|
|
9604
9638
|
cx: (...args: any) => string;
|
|
9605
9639
|
};
|
|
9606
9640
|
|
|
9607
|
-
declare const
|
|
9641
|
+
declare const useClasses_86: (classesProp?: Partial<Record<"body" | "footer" | "head" | "root" | "resizer" | "resizable" | "sortable" | "sorted" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "variantList" | "headerContent" | "headerText" | "headerParagraph" | "sortableHeaderText" | "sortButton" | "sortIcon" | "alignFlexLeft" | "alignFlexRight" | "alignFlexCenter" | "alignFlexJustify", string>>, addStatic?: boolean) => {
|
|
9608
9642
|
classes: {
|
|
9609
9643
|
body: string;
|
|
9610
9644
|
footer: string;
|
|
@@ -9647,7 +9681,7 @@ declare const useClasses_85: (classesProp?: Partial<Record<"body" | "footer" | "
|
|
|
9647
9681
|
cx: (...args: any) => string;
|
|
9648
9682
|
};
|
|
9649
9683
|
|
|
9650
|
-
declare const
|
|
9684
|
+
declare const useClasses_87: (classesProp?: Partial<Record<"body" | "footer" | "head" | "root" | "expanded" | "selected" | "hover" | "striped" | "variantList" | "variantListHead", string>>, addStatic?: boolean) => {
|
|
9651
9685
|
classes: {
|
|
9652
9686
|
body: string;
|
|
9653
9687
|
footer: string;
|
|
@@ -9667,7 +9701,7 @@ declare const useClasses_86: (classesProp?: Partial<Record<"body" | "footer" | "
|
|
|
9667
9701
|
cx: (...args: any) => string;
|
|
9668
9702
|
};
|
|
9669
9703
|
|
|
9670
|
-
declare const
|
|
9704
|
+
declare const useClasses_88: (classesProp?: Partial<Record<"body" | "footer" | "head" | "root" | "resizable" | "sorted" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "variantList" | "variantListHead" | "variantListactions" | "variantListcheckbox", string>>, addStatic?: boolean) => {
|
|
9671
9705
|
classes: {
|
|
9672
9706
|
body: string;
|
|
9673
9707
|
footer: string;
|
|
@@ -9701,7 +9735,7 @@ declare const useClasses_87: (classesProp?: Partial<Record<"body" | "footer" | "
|
|
|
9701
9735
|
cx: (...args: any) => string;
|
|
9702
9736
|
};
|
|
9703
9737
|
|
|
9704
|
-
declare const
|
|
9738
|
+
declare const useClasses_89: (classesProp?: Partial<Record<"root" | "formContainer", string>>, addStatic?: boolean) => {
|
|
9705
9739
|
classes: {
|
|
9706
9740
|
root: string;
|
|
9707
9741
|
formContainer: string;
|
|
@@ -9713,12 +9747,11 @@ declare const useClasses_88: (classesProp?: Partial<Record<"root" | "formContain
|
|
|
9713
9747
|
cx: (...args: any) => string;
|
|
9714
9748
|
};
|
|
9715
9749
|
|
|
9716
|
-
declare const
|
|
9750
|
+
declare const useClasses_9: (classesProp?: Partial<Record<"root" | "gutter" | "infoDisabled", string>>, addStatic?: boolean) => {
|
|
9717
9751
|
classes: {
|
|
9718
|
-
section: string;
|
|
9719
9752
|
root: string;
|
|
9720
|
-
|
|
9721
|
-
|
|
9753
|
+
gutter: string;
|
|
9754
|
+
infoDisabled: string;
|
|
9722
9755
|
};
|
|
9723
9756
|
css: {
|
|
9724
9757
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9727,11 +9760,12 @@ declare const useClasses_89: (classesProp?: Partial<Record<"section" | "root" |
|
|
|
9727
9760
|
cx: (...args: any) => string;
|
|
9728
9761
|
};
|
|
9729
9762
|
|
|
9730
|
-
declare const
|
|
9763
|
+
declare const useClasses_90: (classesProp?: Partial<Record<"section" | "root" | "rightSection" | "leftSection", string>>, addStatic?: boolean) => {
|
|
9731
9764
|
classes: {
|
|
9765
|
+
section: string;
|
|
9732
9766
|
root: string;
|
|
9733
|
-
|
|
9734
|
-
|
|
9767
|
+
rightSection: string;
|
|
9768
|
+
leftSection: string;
|
|
9735
9769
|
};
|
|
9736
9770
|
css: {
|
|
9737
9771
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9740,7 +9774,7 @@ declare const useClasses_9: (classesProp?: Partial<Record<"root" | "gutter" | "i
|
|
|
9740
9774
|
cx: (...args: any) => string;
|
|
9741
9775
|
};
|
|
9742
9776
|
|
|
9743
|
-
declare const
|
|
9777
|
+
declare const useClasses_91: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
9744
9778
|
classes: {
|
|
9745
9779
|
root: string;
|
|
9746
9780
|
};
|
|
@@ -9751,7 +9785,7 @@ declare const useClasses_90: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
9751
9785
|
cx: (...args: any) => string;
|
|
9752
9786
|
};
|
|
9753
9787
|
|
|
9754
|
-
declare const
|
|
9788
|
+
declare const useClasses_92: (classesProp?: Partial<Record<"root" | "sortDropdown", string>>, addStatic?: boolean) => {
|
|
9755
9789
|
classes: {
|
|
9756
9790
|
root: string;
|
|
9757
9791
|
sortDropdown: string;
|
|
@@ -9763,7 +9797,7 @@ declare const useClasses_91: (classesProp?: Partial<Record<"root" | "sortDropdow
|
|
|
9763
9797
|
cx: (...args: any) => string;
|
|
9764
9798
|
};
|
|
9765
9799
|
|
|
9766
|
-
declare const
|
|
9800
|
+
declare const useClasses_93: (classesProp?: Partial<Record<"root" | "rangeCalendarContainer" | "singleCalendar" | "focusSelection" | "calendarMonthlyCell" | "calendarMonthlyCellSelected", string>>, addStatic?: boolean) => {
|
|
9767
9801
|
classes: {
|
|
9768
9802
|
root: string;
|
|
9769
9803
|
rangeCalendarContainer: string;
|
|
@@ -9779,7 +9813,7 @@ declare const useClasses_92: (classesProp?: Partial<Record<"root" | "rangeCalend
|
|
|
9779
9813
|
cx: (...args: any) => string;
|
|
9780
9814
|
};
|
|
9781
9815
|
|
|
9782
|
-
declare const
|
|
9816
|
+
declare const useClasses_94: (classesProp?: Partial<Record<"input" | "root" | "invalid" | "inputBorderContainer" | "headerDayOfWeek" | "headerDate" | "invalidMessageStyling", string>>, addStatic?: boolean) => {
|
|
9783
9817
|
classes: {
|
|
9784
9818
|
input: string;
|
|
9785
9819
|
root: string;
|
|
@@ -9796,7 +9830,7 @@ declare const useClasses_93: (classesProp?: Partial<Record<"input" | "root" | "i
|
|
|
9796
9830
|
cx: (...args: any) => string;
|
|
9797
9831
|
};
|
|
9798
9832
|
|
|
9799
|
-
declare const
|
|
9833
|
+
declare const useClasses_95: (classesProp?: Partial<Record<"root" | "slider" | "collapsed" | "childData", string>>, addStatic?: boolean) => {
|
|
9800
9834
|
classes: {
|
|
9801
9835
|
root: string;
|
|
9802
9836
|
slider: string;
|
|
@@ -9810,7 +9844,7 @@ declare const useClasses_94: (classesProp?: Partial<Record<"root" | "slider" | "
|
|
|
9810
9844
|
cx: (...args: any) => string;
|
|
9811
9845
|
};
|
|
9812
9846
|
|
|
9813
|
-
declare const
|
|
9847
|
+
declare const useClasses_96: (classesProp?: Partial<Record<"root" | "minimized" | "collapseButton", string>>, addStatic?: boolean) => {
|
|
9814
9848
|
classes: {
|
|
9815
9849
|
root: string;
|
|
9816
9850
|
minimized: string;
|
|
@@ -9823,7 +9857,7 @@ declare const useClasses_95: (classesProp?: Partial<Record<"root" | "minimized"
|
|
|
9823
9857
|
cx: (...args: any) => string;
|
|
9824
9858
|
};
|
|
9825
9859
|
|
|
9826
|
-
declare const
|
|
9860
|
+
declare const useClasses_97: (classesProp?: Partial<Record<"root" | "hide", string>>, addStatic?: boolean) => {
|
|
9827
9861
|
classes: {
|
|
9828
9862
|
root: string;
|
|
9829
9863
|
hide: string;
|
|
@@ -9835,7 +9869,7 @@ declare const useClasses_96: (classesProp?: Partial<Record<"root" | "hide", stri
|
|
|
9835
9869
|
cx: (...args: any) => string;
|
|
9836
9870
|
};
|
|
9837
9871
|
|
|
9838
|
-
declare const
|
|
9872
|
+
declare const useClasses_98: (classesProp?: Partial<Record<"action" | "noIcon" | "minimized", string>>, addStatic?: boolean) => {
|
|
9839
9873
|
classes: {
|
|
9840
9874
|
action: string;
|
|
9841
9875
|
noIcon: string;
|
|
@@ -9848,7 +9882,7 @@ declare const useClasses_97: (classesProp?: Partial<Record<"action" | "noIcon" |
|
|
|
9848
9882
|
cx: (...args: any) => string;
|
|
9849
9883
|
};
|
|
9850
9884
|
|
|
9851
|
-
declare const
|
|
9885
|
+
declare const useClasses_99: (classesProp?: Partial<Record<"root" | "list" | "popup" | "listItem" | "collapsed" | "navigationPopup", string>>, addStatic?: boolean) => {
|
|
9852
9886
|
classes: {
|
|
9853
9887
|
root: string;
|
|
9854
9888
|
list: string;
|
|
@@ -9864,19 +9898,6 @@ declare const useClasses_98: (classesProp?: Partial<Record<"root" | "list" | "po
|
|
|
9864
9898
|
cx: (...args: any) => string;
|
|
9865
9899
|
};
|
|
9866
9900
|
|
|
9867
|
-
declare const useClasses_99: (classesProp?: Partial<Record<"root" | "listItemSelected" | "listItemFocus", string>>, addStatic?: boolean) => {
|
|
9868
|
-
classes: {
|
|
9869
|
-
root: string;
|
|
9870
|
-
listItemSelected: string;
|
|
9871
|
-
listItemFocus: string;
|
|
9872
|
-
};
|
|
9873
|
-
css: {
|
|
9874
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9875
|
-
(...args: CSSInterpolation[]): string;
|
|
9876
|
-
};
|
|
9877
|
-
cx: (...args: any) => string;
|
|
9878
|
-
};
|
|
9879
|
-
|
|
9880
9901
|
export declare const useClickOutside: <T extends HTMLElement = HTMLElement>(ref: RefObject<T>, handler: (event: HvClickOutsideEvent) => void) => void;
|
|
9881
9902
|
|
|
9882
9903
|
export declare const useComputation: (valueFn: any, valueFallback?: any) => any[];
|