@hitachivantara/uikit-react-core 5.18.3 → 5.18.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/BreadCrumb/BreadCrumb.cjs +1 -3
- package/dist/cjs/components/BreadCrumb/BreadCrumb.cjs.map +1 -1
- package/dist/cjs/components/BreadCrumb/Page/Page.cjs +1 -4
- package/dist/cjs/components/BreadCrumb/Page/Page.cjs.map +1 -1
- package/dist/cjs/components/Drawer/Drawer.cjs +81 -0
- package/dist/cjs/components/Drawer/Drawer.cjs.map +1 -0
- package/dist/cjs/components/Drawer/Drawer.styles.cjs +27 -0
- package/dist/cjs/components/Drawer/Drawer.styles.cjs.map +1 -0
- package/dist/cjs/components/Snackbar/Snackbar.cjs.map +1 -1
- package/dist/cjs/components/Snackbar/SnackbarContentWrapper/SnackbarContentWrapper.cjs +12 -8
- package/dist/cjs/components/Snackbar/SnackbarContentWrapper/SnackbarContentWrapper.cjs.map +1 -1
- package/dist/cjs/components/Snackbar/SnackbarContentWrapper/SnackbarContentWrapper.styles.cjs +10 -1
- package/dist/cjs/components/Snackbar/SnackbarContentWrapper/SnackbarContentWrapper.styles.cjs.map +1 -1
- package/dist/cjs/components/Table/TableRow/TableRow.cjs +1 -1
- package/dist/cjs/index.cjs +4 -0
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/components/BreadCrumb/BreadCrumb.js +1 -2
- package/dist/esm/components/BreadCrumb/BreadCrumb.js.map +1 -1
- package/dist/esm/components/BreadCrumb/Page/Page.js +1 -2
- package/dist/esm/components/BreadCrumb/Page/Page.js.map +1 -1
- package/dist/esm/components/Drawer/Drawer.js +82 -0
- package/dist/esm/components/Drawer/Drawer.js.map +1 -0
- package/dist/esm/components/Drawer/Drawer.styles.js +27 -0
- package/dist/esm/components/Drawer/Drawer.styles.js.map +1 -0
- package/dist/esm/components/Snackbar/Snackbar.js.map +1 -1
- package/dist/esm/components/Snackbar/SnackbarContentWrapper/SnackbarContentWrapper.js +12 -8
- package/dist/esm/components/Snackbar/SnackbarContentWrapper/SnackbarContentWrapper.js.map +1 -1
- package/dist/esm/components/Snackbar/SnackbarContentWrapper/SnackbarContentWrapper.styles.js +10 -1
- package/dist/esm/components/Snackbar/SnackbarContentWrapper/SnackbarContentWrapper.styles.js.map +1 -1
- package/dist/esm/components/Table/TableRow/TableRow.js +1 -1
- package/dist/esm/index.js +50 -46
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +161 -93
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ import { DialogContentProps } from '@mui/material/DialogContent';
|
|
|
26
26
|
import { DialogProps } from '@mui/material/Dialog';
|
|
27
27
|
import { DialogTitleProps } from '@mui/material/DialogTitle';
|
|
28
28
|
import { DividerProps } from '@mui/material/Divider';
|
|
29
|
+
import { DrawerProps } from '@mui/material';
|
|
29
30
|
import { ds3 } from '@hitachivantara/uikit-styles';
|
|
30
31
|
import { ds5 } from '@hitachivantara/uikit-styles';
|
|
31
32
|
import { EmblaOptionsType } from 'embla-carousel-react';
|
|
@@ -603,7 +604,7 @@ declare interface DateTimeStrings {
|
|
|
603
604
|
export declare const decreaseSize: (size: string) => "XS" | "S" | "M" | "L";
|
|
604
605
|
|
|
605
606
|
/** This type allows to do a deep partial by applying the Partial type to each key recursively */
|
|
606
|
-
declare type DeepPartial<T> = Partial<{
|
|
607
|
+
export declare type DeepPartial<T> = Partial<{
|
|
607
608
|
[P in keyof T]: DeepPartial<T[P]>;
|
|
608
609
|
}>;
|
|
609
610
|
|
|
@@ -676,6 +677,13 @@ export declare const dotPaginationClasses: {
|
|
|
676
677
|
radioRoot: "HvDotPagination-radioRoot";
|
|
677
678
|
};
|
|
678
679
|
|
|
680
|
+
export declare const drawerClasses: {
|
|
681
|
+
background: "HvDrawer-background";
|
|
682
|
+
root: "HvDrawer-root";
|
|
683
|
+
closeButton: "HvDrawer-closeButton";
|
|
684
|
+
paper: "HvDrawer-paper";
|
|
685
|
+
};
|
|
686
|
+
|
|
679
687
|
export declare const dropdownClasses: {
|
|
680
688
|
placeholder: "HvDropdown-placeholder";
|
|
681
689
|
arrow: "HvDropdown-arrow";
|
|
@@ -1071,7 +1079,7 @@ export declare interface HvActionBarProps extends HvBaseProps {
|
|
|
1071
1079
|
classes?: HvActionBarClasses;
|
|
1072
1080
|
}
|
|
1073
1081
|
|
|
1074
|
-
declare type HvActionContainerClasses = ExtractNames<typeof
|
|
1082
|
+
declare type HvActionContainerClasses = ExtractNames<typeof useClasses_15>;
|
|
1075
1083
|
|
|
1076
1084
|
declare interface HvActionContainerProps extends HvBaseProps<HTMLButtonElement> {
|
|
1077
1085
|
/** onClose function. */
|
|
@@ -1379,11 +1387,11 @@ export declare const HvBanner: ({ id, classes: classesProp, className, open, onC
|
|
|
1379
1387
|
|
|
1380
1388
|
export declare type HvBannerActionPosition = "auto" | "inline" | "bottom-right";
|
|
1381
1389
|
|
|
1382
|
-
export declare type HvBannerClasses = ExtractNames<typeof
|
|
1390
|
+
export declare type HvBannerClasses = ExtractNames<typeof useClasses_14>;
|
|
1383
1391
|
|
|
1384
1392
|
export declare const HvBannerContent: ForwardRefExoticComponent<Omit<HvBannerContentProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
1385
1393
|
|
|
1386
|
-
export declare type HvBannerContentClasses = ExtractNames<typeof
|
|
1394
|
+
export declare type HvBannerContentClasses = ExtractNames<typeof useClasses_16>;
|
|
1387
1395
|
|
|
1388
1396
|
export declare interface HvBannerContentProps extends Omit<SnackbarContentProps, "variant" | "classes" | "onClose">, HvBaseProps {
|
|
1389
1397
|
/** The message to display. */
|
|
@@ -2262,7 +2270,7 @@ export declare interface HvCardProps extends HvBaseProps {
|
|
|
2262
2270
|
*/
|
|
2263
2271
|
export declare const HvCarousel: (props: HvCarouselProps) => JSX_2.Element;
|
|
2264
2272
|
|
|
2265
|
-
export declare type HvCarouselClasses = ExtractNames<typeof
|
|
2273
|
+
export declare type HvCarouselClasses = ExtractNames<typeof useClasses_33>;
|
|
2266
2274
|
|
|
2267
2275
|
export declare interface HvCarouselProps extends HvBaseProps<HTMLDivElement, "title" | "onChange"> {
|
|
2268
2276
|
/** A Jss Object used to override or extend the styles applied. */
|
|
@@ -2303,7 +2311,7 @@ export declare interface HvCarouselProps extends HvBaseProps<HTMLDivElement, "ti
|
|
|
2303
2311
|
*/
|
|
2304
2312
|
export declare const HvCarouselSlide: ({ classes: classesProp, children, size: flexBasis, src, alt, ...props }: HvCarouselSlideProps) => JSX_2.Element;
|
|
2305
2313
|
|
|
2306
|
-
export declare type HvCarouselSlideClasses = ExtractNames<typeof
|
|
2314
|
+
export declare type HvCarouselSlideClasses = ExtractNames<typeof useClasses_34>;
|
|
2307
2315
|
|
|
2308
2316
|
export declare interface HvCarouselSlideProps extends ImgHTMLAttributes<HTMLImageElement> {
|
|
2309
2317
|
/** A Jss Object used to override or extend the styles applied. */
|
|
@@ -2527,7 +2535,7 @@ export declare type HvClickOutsideEvent = MouseEvent | KeyboardEvent | TouchEven
|
|
|
2527
2535
|
*/
|
|
2528
2536
|
export declare const HvColorPicker: ({ id, name, required, disabled, label, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, description, "aria-describedby": ariaDescribedBy, className, classes: classesProp, value, onChange, defaultValue, expanded, defaultExpanded, recommendedColorsPosition, recommendedColors, showLabels, labels: labelsProp, dropdownIcon, placeholder, iconOnly, showSavedColors, showCustomColors, savedColorsValue, defaultSavedColorsValue, onSavedColorAdded, onSavedColorRemoved, deleteSavedColorButtonArialLabel, }: HvColorPickerProps) => JSX_2.Element;
|
|
2529
2537
|
|
|
2530
|
-
export declare type HvColorPickerClasses = ExtractNames<typeof
|
|
2538
|
+
export declare type HvColorPickerClasses = ExtractNames<typeof useClasses_32>;
|
|
2531
2539
|
|
|
2532
2540
|
export declare interface HvColorPickerProps {
|
|
2533
2541
|
"aria-label"?: string;
|
|
@@ -2770,7 +2778,7 @@ declare interface HvDateColumnCellProp {
|
|
|
2770
2778
|
*/
|
|
2771
2779
|
export declare const HvDatePicker: ({ classes: classesProp, className, id, name, required, disabled, readOnly, label, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, description, "aria-describedby": ariaDescribedBy, onChange, onCancel, onClear, status, statusMessage, "aria-errormessage": ariaErrorMessage, placeholder, labels: labelsProp, value, startValue, endValue, rangeMode, startAdornment, horizontalPlacement, locale: localeProp, showActions, showClear, disablePortal, escapeWithReference, dropdownProps, calendarProps, ...others }: HvDatePickerProps) => JSX_2.Element;
|
|
2772
2780
|
|
|
2773
|
-
export declare type HvDatePickerClasses = ExtractNames<typeof
|
|
2781
|
+
export declare type HvDatePickerClasses = ExtractNames<typeof useClasses_24>;
|
|
2774
2782
|
|
|
2775
2783
|
export declare interface HvDatePickerProps extends HvBaseProps<HTMLDivElement, "onChange"> {
|
|
2776
2784
|
/**
|
|
@@ -3027,7 +3035,7 @@ export declare type HvDialogTitleVariant = "success" | "warning" | "error" | "in
|
|
|
3027
3035
|
*/
|
|
3028
3036
|
export declare const HvDotPagination: ({ className, classes: classesProp, unselectedIcon, selectedIcon, pages, page, onPageChange, getItemAriaLabel, ...others }: HvDotPaginationProps) => JSX_2.Element;
|
|
3029
3037
|
|
|
3030
|
-
export declare type HvDotPaginationClasses = ExtractNames<typeof
|
|
3038
|
+
export declare type HvDotPaginationClasses = ExtractNames<typeof useClasses_13>;
|
|
3031
3039
|
|
|
3032
3040
|
export declare interface HvDotPaginationProps extends Omit<HvRadioGroupProps, "classes"> {
|
|
3033
3041
|
/**
|
|
@@ -3064,6 +3072,52 @@ export declare interface HvDotPaginationProps extends Omit<HvRadioGroupProps, "c
|
|
|
3064
3072
|
classes?: HvDotPaginationClasses;
|
|
3065
3073
|
}
|
|
3066
3074
|
|
|
3075
|
+
/**
|
|
3076
|
+
* The Drawer component provides a foundation to create a sliding pane.
|
|
3077
|
+
* It only provides the pane with a close button, the rest of the
|
|
3078
|
+
* content can be customized.
|
|
3079
|
+
*/
|
|
3080
|
+
export declare const HvDrawer: ({ className, classes: classesProp, id, children, open, onClose, anchor, buttonTitle, ...others }: HvDrawerProps) => JSX_2.Element;
|
|
3081
|
+
|
|
3082
|
+
export declare type HvDrawerClasses = ExtractNames<typeof useClasses_9>;
|
|
3083
|
+
|
|
3084
|
+
export declare interface HvDrawerProps extends DrawerProps, Omit<DrawerProps, "classes">, HvBaseProps<HTMLDivElement> {
|
|
3085
|
+
/**
|
|
3086
|
+
* Class names to be applied.
|
|
3087
|
+
*/
|
|
3088
|
+
className?: string;
|
|
3089
|
+
/**
|
|
3090
|
+
* Id to be applied to the root node.
|
|
3091
|
+
*/
|
|
3092
|
+
id?: string;
|
|
3093
|
+
/**
|
|
3094
|
+
* A Jss Object used to override or extend the styles applied.
|
|
3095
|
+
*/
|
|
3096
|
+
classes?: HvDrawerClasses;
|
|
3097
|
+
/**
|
|
3098
|
+
* Components of the Drawer.
|
|
3099
|
+
*/
|
|
3100
|
+
children?: React.ReactNode;
|
|
3101
|
+
/**
|
|
3102
|
+
* Current state of the Drawer.
|
|
3103
|
+
*/
|
|
3104
|
+
open?: boolean;
|
|
3105
|
+
/**
|
|
3106
|
+
* Function executed on close.
|
|
3107
|
+
* Extended from Modal from material-ui
|
|
3108
|
+
*
|
|
3109
|
+
*/
|
|
3110
|
+
onClose?: (event: React.SyntheticEvent, reason?: "escapeKeyDown" | "backdropClick") => void;
|
|
3111
|
+
/**
|
|
3112
|
+
* The side the drawer opens from.
|
|
3113
|
+
*/
|
|
3114
|
+
anchor?: "left" | "top" | "right" | "bottom";
|
|
3115
|
+
/**
|
|
3116
|
+
* Title for the button close.
|
|
3117
|
+
*/
|
|
3118
|
+
buttonTitle?: string;
|
|
3119
|
+
}
|
|
3120
|
+
|
|
3067
3121
|
/**
|
|
3068
3122
|
* A dropdown list is a graphical control element, similar to a list box, that allows the user to choose one value from a list.
|
|
3069
3123
|
*/
|
|
@@ -3214,7 +3268,7 @@ declare interface HvDropdownListProps {
|
|
|
3214
3268
|
*/
|
|
3215
3269
|
export declare const HvDropDownMenu: ({ id: idProp, classes: classesProp, className, icon, placement, dataList, disablePortal, onToggle, onClick, keepOpened, disabled, expanded, defaultExpanded, category, ...others }: HvDropDownMenuProps) => JSX_2.Element;
|
|
3216
3270
|
|
|
3217
|
-
export declare type HvDropDownMenuClasses = ExtractNames<typeof
|
|
3271
|
+
export declare type HvDropDownMenuClasses = ExtractNames<typeof useClasses_11>;
|
|
3218
3272
|
|
|
3219
3273
|
export declare interface HvDropDownMenuProps extends HvBaseProps<HTMLDivElement, "onClick"> {
|
|
3220
3274
|
/** Icon. */
|
|
@@ -3685,9 +3739,9 @@ export declare interface HvFileUploaderProps extends HvBaseProps {
|
|
|
3685
3739
|
*/
|
|
3686
3740
|
export declare const HvFilterGroup: ({ className, id, name, required, disabled, label, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, description, "aria-describedby": ariaDescribedBy, onChange, onCancel, onClear, status, statusMessage, labels: labelsProp, defaultValue, value, filters, horizontalPlacement, disablePortal, escapeWithReference, height, filterContentProps, classes: classesProp, ...others }: HvFilterGroupProps) => JSX_2.Element;
|
|
3687
3741
|
|
|
3688
|
-
export declare type HvFilterGroupClasses = ExtractNames<typeof
|
|
3742
|
+
export declare type HvFilterGroupClasses = ExtractNames<typeof useClasses_22>;
|
|
3689
3743
|
|
|
3690
|
-
declare type HvFilterGroupContentClasses = ExtractNames<typeof
|
|
3744
|
+
declare type HvFilterGroupContentClasses = ExtractNames<typeof useClasses_23>;
|
|
3691
3745
|
|
|
3692
3746
|
declare interface HvFilterGroupContentProps extends Omit<HvBaseDropdownProps, "onChange"> {
|
|
3693
3747
|
description?: React.ReactNode;
|
|
@@ -4235,7 +4289,7 @@ export declare interface HvHooks<D extends object = Record<string, unknown>, H e
|
|
|
4235
4289
|
useFinalInstance: Array<(instance: HvTableInstance<D, H>) => void>;
|
|
4236
4290
|
}
|
|
4237
4291
|
|
|
4238
|
-
export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof
|
|
4292
|
+
export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof useClasses_27>;
|
|
4239
4293
|
|
|
4240
4294
|
/**
|
|
4241
4295
|
* Provides the user with additional descriptive text for the form element.
|
|
@@ -4263,7 +4317,7 @@ export declare interface HvInfoMessageProps extends HvBaseProps {
|
|
|
4263
4317
|
*/
|
|
4264
4318
|
export declare const HvInlineEditor: ({ className, classes: classesProp, value: valueProp, defaultValue, showIcon, component: InputComponent, variant, placeholder, onBlur, onChange, onKeyDown, buttonProps, typographyProps, ...others }: HvInlineEditorProps) => JSX_2.Element;
|
|
4265
4319
|
|
|
4266
|
-
export declare type HvInlineEditorClasses = ExtractNames<typeof
|
|
4320
|
+
export declare type HvInlineEditorClasses = ExtractNames<typeof useClasses_29>;
|
|
4267
4321
|
|
|
4268
4322
|
export declare interface HvInlineEditorProps extends HvBaseProps<HTMLDivElement, "onBlur" | "onChange"> {
|
|
4269
4323
|
/** The value of the form element. */
|
|
@@ -4291,7 +4345,7 @@ export declare interface HvInlineEditorProps extends HvBaseProps<HTMLDivElement,
|
|
|
4291
4345
|
*/
|
|
4292
4346
|
export declare const HvInput: React_2.ForwardRefExoticComponent<HvInputProps & React_2.RefAttributes<InputElement>>;
|
|
4293
4347
|
|
|
4294
|
-
export declare type HvInputClasses = ExtractNames<typeof
|
|
4348
|
+
export declare type HvInputClasses = ExtractNames<typeof useClasses_10>;
|
|
4295
4349
|
|
|
4296
4350
|
export declare interface HvInputLabels {
|
|
4297
4351
|
/** The label of the clear button. */
|
|
@@ -4904,7 +4958,7 @@ export declare interface HvOverflowTooltipProps extends HvBaseProps {
|
|
|
4904
4958
|
*/
|
|
4905
4959
|
export declare const HvPagination: ({ classes: classesProp, className, id, pages, page, showPageSizeOptions, pageSizeOptions, pageSize, showPageJump, canPrevious, canNext, onPageChange, onPageSizeChange, labels: labelsProp, showPageProps, navigationProps, currentPageInputProps, ...others }: HvPaginationProps) => JSX_2.Element;
|
|
4906
4960
|
|
|
4907
|
-
export declare type HvPaginationClasses = ExtractNames<typeof
|
|
4961
|
+
export declare type HvPaginationClasses = ExtractNames<typeof useClasses_12>;
|
|
4908
4962
|
|
|
4909
4963
|
export declare interface HvPaginationLabels {
|
|
4910
4964
|
/** The show label. */
|
|
@@ -5103,7 +5157,7 @@ export declare interface HvProviderProps {
|
|
|
5103
5157
|
*/
|
|
5104
5158
|
export declare const HvQueryBuilder: ({ attributes, query, onChange, operators, combinators, maxDepth, labels, readOnly, classes, }: HvQueryBuilderProps) => JSX_2.Element;
|
|
5105
5159
|
|
|
5106
|
-
export declare type HvQueryBuilderClasses = Partial<ExtractNames<typeof
|
|
5160
|
+
export declare type HvQueryBuilderClasses = Partial<ExtractNames<typeof useClasses_31>>;
|
|
5107
5161
|
|
|
5108
5162
|
export declare interface HvQueryBuilderProps {
|
|
5109
5163
|
attributes?: Record<string, Attribute>;
|
|
@@ -5421,7 +5475,7 @@ declare type HvRowPropGetter<D extends object = Record<string, unknown>, H exten
|
|
|
5421
5475
|
*/
|
|
5422
5476
|
export declare const HvScrollToHorizontal: ({ id, defaultSelectedIndex, scrollElementId, href, onChange, onClick, onEnter, className, classes: classesProp, options, offset, position, tooltipPosition, ...others }: HvScrollToHorizontalProps) => JSX_2.Element;
|
|
5423
5477
|
|
|
5424
|
-
export declare type HvScrollToHorizontalClasses = ExtractNames<typeof
|
|
5478
|
+
export declare type HvScrollToHorizontalClasses = ExtractNames<typeof useClasses_28>;
|
|
5425
5479
|
|
|
5426
5480
|
export declare interface HvScrollToHorizontalOption {
|
|
5427
5481
|
key?: string;
|
|
@@ -5474,7 +5528,7 @@ export declare type HvScrollToTooltipPositions = "left" | "right" | "top" | "bot
|
|
|
5474
5528
|
*/
|
|
5475
5529
|
export declare const HvScrollToVertical: ({ id, defaultSelectedIndex, scrollElementId, href, onChange, onClick, onEnter, className, classes: classesProp, options, offset, position, tooltipPosition, style, ...others }: HvScrollToVerticalProps) => JSX_2.Element;
|
|
5476
5530
|
|
|
5477
|
-
export declare type HvScrollToVerticalClasses = ExtractNames<typeof
|
|
5531
|
+
export declare type HvScrollToVerticalClasses = ExtractNames<typeof useClasses_26>;
|
|
5478
5532
|
|
|
5479
5533
|
export declare interface HvScrollToVerticalOption {
|
|
5480
5534
|
key?: string;
|
|
@@ -5790,17 +5844,17 @@ export declare interface HvSliderProps extends HvBaseProps<HTMLDivElement, "onCh
|
|
|
5790
5844
|
*/
|
|
5791
5845
|
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;
|
|
5792
5846
|
|
|
5793
|
-
export declare type HvSnackbarClasses = ExtractNames<typeof
|
|
5847
|
+
export declare type HvSnackbarClasses = ExtractNames<typeof useClasses_17>;
|
|
5794
5848
|
|
|
5795
5849
|
export declare const HvSnackbarContent: ForwardRefExoticComponent<Omit<HvSnackbarContentProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
5796
5850
|
|
|
5797
|
-
export declare type HvSnackbarContentClasses = ExtractNames<typeof
|
|
5851
|
+
export declare type HvSnackbarContentClasses = ExtractNames<typeof useClasses_18>;
|
|
5798
5852
|
|
|
5799
5853
|
export declare interface HvSnackbarContentProps extends Omit<SnackbarContentProps, "variant" | "action" | "classes">, HvBaseProps {
|
|
5800
5854
|
/** The message to display. */
|
|
5801
5855
|
label?: React.ReactNode;
|
|
5802
5856
|
/** Variant of the snackbar. */
|
|
5803
|
-
variant
|
|
5857
|
+
variant?: HvSnackbarVariant;
|
|
5804
5858
|
/** Controls if the associated icon to the variant should be shown. */
|
|
5805
5859
|
showIcon?: boolean;
|
|
5806
5860
|
/** Custom icon to replace the variant default. */
|
|
@@ -5843,12 +5897,12 @@ export declare interface HvSnackbarProps extends Omit<SnackbarProps, "action" |
|
|
|
5843
5897
|
/** Others applied to the content of the snackbar. */
|
|
5844
5898
|
snackbarContentProps?: HvSnackbarContentProps;
|
|
5845
5899
|
/** A Jss Object used to override or extend the styles applied to the component. */
|
|
5846
|
-
classes?:
|
|
5900
|
+
classes?: HvSnackbarClasses;
|
|
5847
5901
|
}
|
|
5848
5902
|
|
|
5849
5903
|
export declare const HvSnackbarProvider: ({ children, notistackClassesOverride, maxSnack, autoHideDuration, anchorOrigin, classes: classesProp, className, ...others }: HvSnackbarProviderProps) => JSX_2.Element;
|
|
5850
5904
|
|
|
5851
|
-
export declare type HvSnackbarProviderClasses = ExtractNames<typeof
|
|
5905
|
+
export declare type HvSnackbarProviderClasses = ExtractNames<typeof useClasses_19>;
|
|
5852
5906
|
|
|
5853
5907
|
export declare interface HvSnackbarProviderProps {
|
|
5854
5908
|
/** Your component tree. */
|
|
@@ -6144,7 +6198,7 @@ export declare const HvTableCell: ForwardRefExoticComponent<HvTableCellProps & R
|
|
|
6144
6198
|
|
|
6145
6199
|
export declare type HvTableCellAlign = "center" | "inherit" | "justify" | "left" | "right";
|
|
6146
6200
|
|
|
6147
|
-
export declare type HvTableCellClasses = ExtractNames<typeof
|
|
6201
|
+
export declare type HvTableCellClasses = ExtractNames<typeof useClasses_21>;
|
|
6148
6202
|
|
|
6149
6203
|
export declare interface HvTableCellProps extends Omit<TdHTMLAttributes<HTMLTableCellElement>, "align"> {
|
|
6150
6204
|
/** The component used for the root node. Either a string to use a HTML element or a component. Defaults to td. */
|
|
@@ -6451,7 +6505,7 @@ export declare interface HvTableProps extends TableHTMLAttributes<HTMLTableEleme
|
|
|
6451
6505
|
*/
|
|
6452
6506
|
export declare const HvTableRow: ForwardRefExoticComponent<HvTableRowProps & RefAttributes<HTMLElement>>;
|
|
6453
6507
|
|
|
6454
|
-
export declare type HvTableRowClasses = ExtractNames<typeof
|
|
6508
|
+
export declare type HvTableRowClasses = ExtractNames<typeof useClasses_20>;
|
|
6455
6509
|
|
|
6456
6510
|
export declare interface HvTableRowProps extends HvBaseProps<HTMLTableRowElement, "children"> {
|
|
6457
6511
|
/** Content to be rendered */
|
|
@@ -6862,7 +6916,7 @@ declare interface HvThemeProviderProps {
|
|
|
6862
6916
|
*/
|
|
6863
6917
|
export declare const HvTimeAgo: ({ classes: classesProp, className, timestamp, locale: localeProp, component: Component, emptyElement, disableRefresh, showSeconds, justText, ...others }: HvTimeAgoProps) => JSX_2.Element;
|
|
6864
6918
|
|
|
6865
|
-
export declare type HvTimeAgoClasses = ExtractNames<typeof
|
|
6919
|
+
export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_30>;
|
|
6866
6920
|
|
|
6867
6921
|
export declare interface HvTimeAgoProps extends HvBaseProps<HTMLElement, "children"> {
|
|
6868
6922
|
/**
|
|
@@ -6907,7 +6961,7 @@ export declare interface HvTimeAgoProps extends HvBaseProps<HTMLElement, "childr
|
|
|
6907
6961
|
*/
|
|
6908
6962
|
export declare const HvTimePicker: (props: HvTimePickerProps) => JSX_2.Element;
|
|
6909
6963
|
|
|
6910
|
-
export declare type HvTimePickerClasses = ExtractNames<typeof
|
|
6964
|
+
export declare type HvTimePickerClasses = ExtractNames<typeof useClasses_35>;
|
|
6911
6965
|
|
|
6912
6966
|
export declare type HvTimePickerClassKey = "root" | "input" | "label" | "placeholder" | "timePopperContainer" | "separator" | "periodContainer" | "formElementRoot" | "dropdownPlaceholder" | "iconBaseRoot" | "error" | "labelContainer" | "description" | "dropdownHeaderInvalid" | "dropdownPlaceholderDisabled" | "dropdownHeaderOpen";
|
|
6913
6967
|
|
|
@@ -7614,7 +7668,7 @@ export declare interface HvVerticalNavigationTreeViewProps {
|
|
|
7614
7668
|
children?: React.ReactNode;
|
|
7615
7669
|
}
|
|
7616
7670
|
|
|
7617
|
-
export declare type HvVerticalScrollListItemClasses = ExtractNames<typeof
|
|
7671
|
+
export declare type HvVerticalScrollListItemClasses = ExtractNames<typeof useClasses_25>;
|
|
7618
7672
|
|
|
7619
7673
|
/**
|
|
7620
7674
|
* Provides the user with a descriptive text, signaling an error, for when the form element is in an invalid state.
|
|
@@ -8620,7 +8674,36 @@ declare const useClasses: (classesProp?: Partial<Record<"link" | "body" | "label
|
|
|
8620
8674
|
cx: (...args: any) => string;
|
|
8621
8675
|
};
|
|
8622
8676
|
|
|
8623
|
-
declare const useClasses_10: (classesProp?: Partial<Record<"
|
|
8677
|
+
declare const useClasses_10: (classesProp?: Partial<Record<"input" | "label" | "icon" | "error" | "root" | "inputBorderContainer" | "inputRoot" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "description" | "labelContainer" | "adornmentsBox" | "adornmentButton" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList" | "inputExtension", string>>) => {
|
|
8678
|
+
classes: {
|
|
8679
|
+
input: string;
|
|
8680
|
+
label: string;
|
|
8681
|
+
icon: string;
|
|
8682
|
+
error: string;
|
|
8683
|
+
root: string;
|
|
8684
|
+
inputBorderContainer: string;
|
|
8685
|
+
inputRoot: string;
|
|
8686
|
+
inputRootFocused: string;
|
|
8687
|
+
inputRootDisabled: string;
|
|
8688
|
+
inputRootMultiline: string;
|
|
8689
|
+
description: string;
|
|
8690
|
+
labelContainer: string;
|
|
8691
|
+
adornmentsBox: string;
|
|
8692
|
+
adornmentButton: string;
|
|
8693
|
+
iconClear: string;
|
|
8694
|
+
hasSuggestions: string;
|
|
8695
|
+
suggestionsContainer: string;
|
|
8696
|
+
suggestionList: string;
|
|
8697
|
+
inputExtension: string;
|
|
8698
|
+
};
|
|
8699
|
+
css: {
|
|
8700
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8701
|
+
(...args: CSSInterpolation[]): string;
|
|
8702
|
+
};
|
|
8703
|
+
cx: (...args: any) => string;
|
|
8704
|
+
};
|
|
8705
|
+
|
|
8706
|
+
declare const useClasses_11: (classesProp?: Partial<Record<"container" | "icon" | "root" | "baseContainer" | "iconSelected" | "menuListRoot" | "menuList", string>>) => {
|
|
8624
8707
|
classes: {
|
|
8625
8708
|
container: string;
|
|
8626
8709
|
icon: string;
|
|
@@ -8637,7 +8720,7 @@ declare const useClasses_10: (classesProp?: Partial<Record<"container" | "icon"
|
|
|
8637
8720
|
cx: (...args: any) => string;
|
|
8638
8721
|
};
|
|
8639
8722
|
|
|
8640
|
-
declare const
|
|
8723
|
+
declare const useClasses_12: (classesProp?: Partial<Record<"icon" | "root" | "iconContainer" | "pageSizeOptions" | "pageSizeTextContainer" | "pageSizeOptionsSelect" | "pageNavigator" | "pageInfo" | "pageJump" | "pageSizeInput" | "pageSizeInputRoot" | "pageSizeInputContainer", string>>) => {
|
|
8641
8724
|
classes: {
|
|
8642
8725
|
icon: string;
|
|
8643
8726
|
root: string;
|
|
@@ -8659,7 +8742,7 @@ declare const useClasses_11: (classesProp?: Partial<Record<"icon" | "root" | "ic
|
|
|
8659
8742
|
cx: (...args: any) => string;
|
|
8660
8743
|
};
|
|
8661
8744
|
|
|
8662
|
-
declare const
|
|
8745
|
+
declare const useClasses_13: (classesProp?: Partial<Record<"radio" | "horizontal" | "icon" | "root" | "radioRoot", string>>) => {
|
|
8663
8746
|
classes: {
|
|
8664
8747
|
radio: string;
|
|
8665
8748
|
horizontal: string;
|
|
@@ -8674,7 +8757,7 @@ declare const useClasses_12: (classesProp?: Partial<Record<"radio" | "horizontal
|
|
|
8674
8757
|
cx: (...args: any) => string;
|
|
8675
8758
|
};
|
|
8676
8759
|
|
|
8677
|
-
declare const
|
|
8760
|
+
declare const useClasses_14: (classesProp?: Partial<Record<"root" | "rootClosed" | "anchorOriginTopCenter" | "anchorOriginBottomCenter", string>>) => {
|
|
8678
8761
|
classes: {
|
|
8679
8762
|
root: string;
|
|
8680
8763
|
rootClosed: string;
|
|
@@ -8688,7 +8771,7 @@ declare const useClasses_13: (classesProp?: Partial<Record<"root" | "rootClosed"
|
|
|
8688
8771
|
cx: (...args: any) => string;
|
|
8689
8772
|
};
|
|
8690
8773
|
|
|
8691
|
-
declare const
|
|
8774
|
+
declare const useClasses_15: (classesProp?: Partial<Record<"actionContainer" | "iconContainer" | "actionsInnerContainer" | "closeAction", string>>) => {
|
|
8692
8775
|
classes: {
|
|
8693
8776
|
actionContainer: string;
|
|
8694
8777
|
iconContainer: string;
|
|
@@ -8702,7 +8785,7 @@ declare const useClasses_14: (classesProp?: Partial<Record<"actionContainer" | "
|
|
|
8702
8785
|
cx: (...args: any) => string;
|
|
8703
8786
|
};
|
|
8704
8787
|
|
|
8705
|
-
declare const
|
|
8788
|
+
declare const useClasses_16: (classesProp?: Partial<Record<"default" | "action" | "error" | "warning" | "success" | "root" | "message" | "baseVariant" | "outContainer", string>>) => {
|
|
8706
8789
|
classes: {
|
|
8707
8790
|
default: string;
|
|
8708
8791
|
action: string;
|
|
@@ -8721,7 +8804,7 @@ declare const useClasses_15: (classesProp?: Partial<Record<"default" | "action"
|
|
|
8721
8804
|
cx: (...args: any) => string;
|
|
8722
8805
|
};
|
|
8723
8806
|
|
|
8724
|
-
declare const
|
|
8807
|
+
declare const useClasses_17: (classesProp?: Partial<Record<"root" | "anchorOriginTopCenter" | "anchorOriginBottomCenter" | "anchorOriginTopRight" | "anchorOriginBottomRight" | "anchorOriginTopLeft" | "anchorOriginBottomLeft", string>>) => {
|
|
8725
8808
|
classes: {
|
|
8726
8809
|
root: string;
|
|
8727
8810
|
anchorOriginTopCenter: string;
|
|
@@ -8738,7 +8821,7 @@ declare const useClasses_16: (classesProp?: Partial<Record<"root" | "anchorOrigi
|
|
|
8738
8821
|
cx: (...args: any) => string;
|
|
8739
8822
|
};
|
|
8740
8823
|
|
|
8741
|
-
declare const
|
|
8824
|
+
declare const useClasses_18: (classesProp?: Partial<Record<"default" | "action" | "error" | "warning" | "success" | "root" | "message" | "messageSpan" | "messageText" | "iconVariant", string>>) => {
|
|
8742
8825
|
classes: {
|
|
8743
8826
|
default: string;
|
|
8744
8827
|
action: string;
|
|
@@ -8758,7 +8841,7 @@ declare const useClasses_17: (classesProp?: Partial<Record<"default" | "action"
|
|
|
8758
8841
|
cx: (...args: any) => string;
|
|
8759
8842
|
};
|
|
8760
8843
|
|
|
8761
|
-
declare const
|
|
8844
|
+
declare const useClasses_19: (classesProp?: Partial<Record<"snackItemRoot", string>>) => {
|
|
8762
8845
|
classes: {
|
|
8763
8846
|
snackItemRoot: string;
|
|
8764
8847
|
};
|
|
@@ -8769,26 +8852,6 @@ declare const useClasses_18: (classesProp?: Partial<Record<"snackItemRoot", stri
|
|
|
8769
8852
|
cx: (...args: any) => string;
|
|
8770
8853
|
};
|
|
8771
8854
|
|
|
8772
|
-
declare const useClasses_19: (classesProp?: Partial<Record<"body" | "footer" | "head" | "expanded" | "selected" | "root" | "hover" | "striped" | "variantList" | "variantListHead", string>>) => {
|
|
8773
|
-
classes: {
|
|
8774
|
-
body: string;
|
|
8775
|
-
footer: string;
|
|
8776
|
-
head: string;
|
|
8777
|
-
expanded: string;
|
|
8778
|
-
selected: string;
|
|
8779
|
-
root: string;
|
|
8780
|
-
hover: string;
|
|
8781
|
-
striped: string;
|
|
8782
|
-
variantList: string;
|
|
8783
|
-
variantListHead: string;
|
|
8784
|
-
};
|
|
8785
|
-
css: {
|
|
8786
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8787
|
-
(...args: CSSInterpolation[]): string;
|
|
8788
|
-
};
|
|
8789
|
-
cx: (...args: any) => string;
|
|
8790
|
-
};
|
|
8791
|
-
|
|
8792
8855
|
declare const useClasses_2: (classesProp?: Partial<Record<"input" | "disabled" | "readOnly" | "invalid" | "root" | "resizable" | "inputBorderContainer" | "inputRootInvalid" | "inputRootReadOnly" | "inputRoot" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "inputDisabled" | "inputReadOnly" | "inputResizable", string>>) => {
|
|
8793
8856
|
classes: {
|
|
8794
8857
|
input: string;
|
|
@@ -8815,7 +8878,27 @@ declare const useClasses_2: (classesProp?: Partial<Record<"input" | "disabled" |
|
|
|
8815
8878
|
cx: (...args: any) => string;
|
|
8816
8879
|
};
|
|
8817
8880
|
|
|
8818
|
-
declare const useClasses_20: (classesProp?: Partial<Record<"body" | "footer" | "head" | "
|
|
8881
|
+
declare const useClasses_20: (classesProp?: Partial<Record<"body" | "footer" | "head" | "expanded" | "selected" | "root" | "hover" | "striped" | "variantList" | "variantListHead", string>>) => {
|
|
8882
|
+
classes: {
|
|
8883
|
+
body: string;
|
|
8884
|
+
footer: string;
|
|
8885
|
+
head: string;
|
|
8886
|
+
expanded: string;
|
|
8887
|
+
selected: string;
|
|
8888
|
+
root: string;
|
|
8889
|
+
hover: string;
|
|
8890
|
+
striped: string;
|
|
8891
|
+
variantList: string;
|
|
8892
|
+
variantListHead: string;
|
|
8893
|
+
};
|
|
8894
|
+
css: {
|
|
8895
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8896
|
+
(...args: CSSInterpolation[]): string;
|
|
8897
|
+
};
|
|
8898
|
+
cx: (...args: any) => string;
|
|
8899
|
+
};
|
|
8900
|
+
|
|
8901
|
+
declare const useClasses_21: (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>>) => {
|
|
8819
8902
|
classes: {
|
|
8820
8903
|
body: string;
|
|
8821
8904
|
footer: string;
|
|
@@ -8849,7 +8932,7 @@ declare const useClasses_20: (classesProp?: Partial<Record<"body" | "footer" | "
|
|
|
8849
8932
|
cx: (...args: any) => string;
|
|
8850
8933
|
};
|
|
8851
8934
|
|
|
8852
|
-
declare const
|
|
8935
|
+
declare const useClasses_22: (classesProp?: Partial<Record<"label" | "error" | "root" | "description" | "labelContainer", string>>) => {
|
|
8853
8936
|
classes: {
|
|
8854
8937
|
label: string;
|
|
8855
8938
|
error: string;
|
|
@@ -8864,7 +8947,7 @@ declare const useClasses_21: (classesProp?: Partial<Record<"label" | "error" | "
|
|
|
8864
8947
|
cx: (...args: any) => string;
|
|
8865
8948
|
};
|
|
8866
8949
|
|
|
8867
|
-
declare const
|
|
8950
|
+
declare const useClasses_23: (classesProp?: Partial<Record<"header" | "space" | "actionBar" | "dropdown" | "root" | "panel" | "baseDropdownSelection" | "rightSidePanel" | "leftSidePanel" | "applyButton", string>>) => {
|
|
8868
8951
|
classes: {
|
|
8869
8952
|
header: string;
|
|
8870
8953
|
space: string;
|
|
@@ -8884,7 +8967,7 @@ declare const useClasses_22: (classesProp?: Partial<Record<"header" | "space" |
|
|
|
8884
8967
|
cx: (...args: any) => string;
|
|
8885
8968
|
};
|
|
8886
8969
|
|
|
8887
|
-
declare const
|
|
8970
|
+
declare const useClasses_24: (classesProp?: Partial<Record<"label" | "icon" | "action" | "error" | "dropdown" | "root" | "actionContainer" | "panel" | "description" | "labelContainer" | "leftContainer" | "rightContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen", string>>) => {
|
|
8888
8971
|
classes: {
|
|
8889
8972
|
label: string;
|
|
8890
8973
|
icon: string;
|
|
@@ -8908,7 +8991,7 @@ declare const useClasses_23: (classesProp?: Partial<Record<"label" | "icon" | "a
|
|
|
8908
8991
|
cx: (...args: any) => string;
|
|
8909
8992
|
};
|
|
8910
8993
|
|
|
8911
|
-
declare const
|
|
8994
|
+
declare const useClasses_25: (classesProp?: Partial<Record<"button" | "text" | "root" | "notSelected", string>>) => {
|
|
8912
8995
|
classes: {
|
|
8913
8996
|
button: string;
|
|
8914
8997
|
text: string;
|
|
@@ -8922,7 +9005,7 @@ declare const useClasses_24: (classesProp?: Partial<Record<"button" | "text" | "
|
|
|
8922
9005
|
cx: (...args: any) => string;
|
|
8923
9006
|
};
|
|
8924
9007
|
|
|
8925
|
-
declare const
|
|
9008
|
+
declare const useClasses_26: (classesProp?: Partial<Record<"root" | "positionFixed" | "positionAbsolute", string>>) => {
|
|
8926
9009
|
classes: {
|
|
8927
9010
|
root: string;
|
|
8928
9011
|
positionFixed: string;
|
|
@@ -8935,7 +9018,7 @@ declare const useClasses_25: (classesProp?: Partial<Record<"root" | "positionFix
|
|
|
8935
9018
|
cx: (...args: any) => string;
|
|
8936
9019
|
};
|
|
8937
9020
|
|
|
8938
|
-
declare const
|
|
9021
|
+
declare const useClasses_27: (classesProp?: Partial<Record<"button" | "text" | "selected" | "root", string>>) => {
|
|
8939
9022
|
classes: {
|
|
8940
9023
|
button: string;
|
|
8941
9024
|
text: string;
|
|
@@ -8949,7 +9032,7 @@ declare const useClasses_26: (classesProp?: Partial<Record<"button" | "text" | "
|
|
|
8949
9032
|
cx: (...args: any) => string;
|
|
8950
9033
|
};
|
|
8951
9034
|
|
|
8952
|
-
declare const
|
|
9035
|
+
declare const useClasses_28: (classesProp?: Partial<Record<"selected" | "root" | "positionFixed" | "positionSticky" | "notSelectedRoot" | "notSelected", string>>) => {
|
|
8953
9036
|
classes: {
|
|
8954
9037
|
selected: string;
|
|
8955
9038
|
root: string;
|
|
@@ -8965,7 +9048,7 @@ declare const useClasses_27: (classesProp?: Partial<Record<"selected" | "root" |
|
|
|
8965
9048
|
cx: (...args: any) => string;
|
|
8966
9049
|
};
|
|
8967
9050
|
|
|
8968
|
-
declare const
|
|
9051
|
+
declare const useClasses_29: (classesProp?: Partial<Record<"button" | "input" | "text" | "icon" | "root" | "inputBorderContainer" | "inputRoot" | "largeText" | "textEmpty" | "iconVisible", string>>) => {
|
|
8969
9052
|
classes: {
|
|
8970
9053
|
button: string;
|
|
8971
9054
|
input: string;
|
|
@@ -8985,7 +9068,7 @@ declare const useClasses_28: (classesProp?: Partial<Record<"button" | "input" |
|
|
|
8985
9068
|
cx: (...args: any) => string;
|
|
8986
9069
|
};
|
|
8987
9070
|
|
|
8988
|
-
declare const
|
|
9071
|
+
declare const useClasses_3: (classesProp?: Partial<Record<"root", string>>) => {
|
|
8989
9072
|
classes: {
|
|
8990
9073
|
root: string;
|
|
8991
9074
|
};
|
|
@@ -8996,7 +9079,7 @@ declare const useClasses_29: (classesProp?: Partial<Record<"root", string>>) =>
|
|
|
8996
9079
|
cx: (...args: any) => string;
|
|
8997
9080
|
};
|
|
8998
9081
|
|
|
8999
|
-
declare const
|
|
9082
|
+
declare const useClasses_30: (classesProp?: Partial<Record<"root", string>>) => {
|
|
9000
9083
|
classes: {
|
|
9001
9084
|
root: string;
|
|
9002
9085
|
};
|
|
@@ -9007,7 +9090,7 @@ declare const useClasses_3: (classesProp?: Partial<Record<"root", string>>) => {
|
|
|
9007
9090
|
cx: (...args: any) => string;
|
|
9008
9091
|
};
|
|
9009
9092
|
|
|
9010
|
-
declare const
|
|
9093
|
+
declare const useClasses_31: (classesProp?: Partial<Record<"root" | "removeButton" | "topGroup" | "subGroup" | "combinator" | "topCombinator" | "combinatorButton" | "topRemoveButton" | "topRemoveButtonDisabled" | "rulesContainer" | "subRulesContainer" | "actionButtonContainer" | "topActionButtonContainer" | "topRulesContainer" | "buttonBackground", string>>) => {
|
|
9011
9094
|
classes: {
|
|
9012
9095
|
root: string;
|
|
9013
9096
|
removeButton: string;
|
|
@@ -9032,7 +9115,7 @@ declare const useClasses_30: (classesProp?: Partial<Record<"root" | "removeButto
|
|
|
9032
9115
|
cx: (...args: any) => string;
|
|
9033
9116
|
};
|
|
9034
9117
|
|
|
9035
|
-
declare const
|
|
9118
|
+
declare const useClasses_32: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "panel" | "description" | "labelContainer" | "headerColorValue" | "headerColorIcon" | "colorPickerIcon" | "recommendedColorsRoot" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>) => {
|
|
9036
9119
|
classes: {
|
|
9037
9120
|
label: string;
|
|
9038
9121
|
colorPicker: string;
|
|
@@ -9055,7 +9138,7 @@ declare const useClasses_31: (classesProp?: Partial<Record<"label" | "colorPicke
|
|
|
9055
9138
|
cx: (...args: any) => string;
|
|
9056
9139
|
};
|
|
9057
9140
|
|
|
9058
|
-
declare const
|
|
9141
|
+
declare const useClasses_33: (classesProp?: Partial<Record<"title" | "main" | "dot" | "controls" | "xs" | "root" | "actions" | "panel" | "fullscreen" | "closeButton" | "mainContainer" | "pageCounter" | "mainXs" | "mainFullscreen" | "counterContainer" | "counter" | "slideControls" | "slidesViewport" | "slidesContainer" | "dots" | "dotsXs" | "dotSelected" | "thumbnail" | "thumbnailSelected", string>>) => {
|
|
9059
9142
|
classes: {
|
|
9060
9143
|
title: string;
|
|
9061
9144
|
main: string;
|
|
@@ -9089,7 +9172,7 @@ declare const useClasses_32: (classesProp?: Partial<Record<"title" | "main" | "d
|
|
|
9089
9172
|
cx: (...args: any) => string;
|
|
9090
9173
|
};
|
|
9091
9174
|
|
|
9092
|
-
declare const
|
|
9175
|
+
declare const useClasses_34: (classesProp?: Partial<Record<"image" | "slide", string>>) => {
|
|
9093
9176
|
classes: {
|
|
9094
9177
|
image: string;
|
|
9095
9178
|
slide: string;
|
|
@@ -9101,7 +9184,7 @@ declare const useClasses_33: (classesProp?: Partial<Record<"image" | "slide", st
|
|
|
9101
9184
|
cx: (...args: any) => string;
|
|
9102
9185
|
};
|
|
9103
9186
|
|
|
9104
|
-
declare const
|
|
9187
|
+
declare const useClasses_35: (classesProp?: Partial<Record<"placeholder" | "label" | "icon" | "error" | "root" | "description" | "labelContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "dropdownHeader" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>) => {
|
|
9105
9188
|
classes: {
|
|
9106
9189
|
placeholder: string;
|
|
9107
9190
|
label: string;
|
|
@@ -9194,27 +9277,12 @@ declare const useClasses_8: (classesProp?: Partial<Record<"background" | "root"
|
|
|
9194
9277
|
cx: (...args: any) => string;
|
|
9195
9278
|
};
|
|
9196
9279
|
|
|
9197
|
-
declare const useClasses_9: (classesProp?: Partial<Record<"
|
|
9280
|
+
declare const useClasses_9: (classesProp?: Partial<Record<"background" | "root" | "closeButton" | "paper", string>>) => {
|
|
9198
9281
|
classes: {
|
|
9199
|
-
|
|
9200
|
-
label: string;
|
|
9201
|
-
icon: string;
|
|
9202
|
-
error: string;
|
|
9282
|
+
background: string;
|
|
9203
9283
|
root: string;
|
|
9204
|
-
|
|
9205
|
-
|
|
9206
|
-
inputRootFocused: string;
|
|
9207
|
-
inputRootDisabled: string;
|
|
9208
|
-
inputRootMultiline: string;
|
|
9209
|
-
description: string;
|
|
9210
|
-
labelContainer: string;
|
|
9211
|
-
adornmentsBox: string;
|
|
9212
|
-
adornmentButton: string;
|
|
9213
|
-
iconClear: string;
|
|
9214
|
-
hasSuggestions: string;
|
|
9215
|
-
suggestionsContainer: string;
|
|
9216
|
-
suggestionList: string;
|
|
9217
|
-
inputExtension: string;
|
|
9284
|
+
closeButton: string;
|
|
9285
|
+
paper: string;
|
|
9218
9286
|
};
|
|
9219
9287
|
css: {
|
|
9220
9288
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|