@hitachivantara/uikit-react-core 5.22.0 → 5.22.1
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/Avatar/Avatar.cjs +20 -16
- package/dist/cjs/components/Avatar/Avatar.cjs.map +1 -1
- package/dist/cjs/components/Avatar/Avatar.styles.cjs +92 -134
- package/dist/cjs/components/Avatar/Avatar.styles.cjs.map +1 -1
- package/dist/cjs/components/Badge/Badge.cjs +18 -15
- package/dist/cjs/components/Badge/Badge.cjs.map +1 -1
- package/dist/cjs/components/Badge/Badge.styles.cjs +23 -69
- package/dist/cjs/components/Badge/Badge.styles.cjs.map +1 -1
- package/dist/cjs/components/VerticalNavigation/TreeView/TreeViewItem.cjs +1 -0
- package/dist/cjs/components/VerticalNavigation/TreeView/TreeViewItem.cjs.map +1 -1
- package/dist/cjs/components/VerticalNavigation/TreeView/TreeViewItem.styles.cjs +10 -6
- package/dist/cjs/components/VerticalNavigation/TreeView/TreeViewItem.styles.cjs.map +1 -1
- package/dist/cjs/index.cjs +4 -4
- package/dist/cjs/utils/classes.cjs +1 -1
- package/dist/cjs/utils/classes.cjs.map +1 -1
- package/dist/esm/components/Avatar/Avatar.js +21 -18
- package/dist/esm/components/Avatar/Avatar.js.map +1 -1
- package/dist/esm/components/Avatar/Avatar.styles.js +92 -132
- package/dist/esm/components/Avatar/Avatar.styles.js.map +1 -1
- package/dist/esm/components/Badge/Badge.js +21 -17
- package/dist/esm/components/Badge/Badge.js.map +1 -1
- package/dist/esm/components/Badge/Badge.styles.js +23 -67
- package/dist/esm/components/Badge/Badge.styles.js.map +1 -1
- package/dist/esm/components/VerticalNavigation/TreeView/TreeViewItem.js +1 -0
- package/dist/esm/components/VerticalNavigation/TreeView/TreeViewItem.js.map +1 -1
- package/dist/esm/components/VerticalNavigation/TreeView/TreeViewItem.styles.js +10 -6
- package/dist/esm/components/VerticalNavigation/TreeView/TreeViewItem.styles.js.map +1 -1
- package/dist/esm/index.js +208 -208
- package/dist/esm/utils/classes.js +1 -1
- package/dist/esm/utils/classes.js.map +1 -1
- package/dist/types/index.d.ts +204 -186
- package/package.json +2 -2
- package/dist/cjs/components/Avatar/avatarClasses.cjs +0 -8
- package/dist/cjs/components/Avatar/avatarClasses.cjs.map +0 -1
- package/dist/cjs/components/Badge/badgeClasses.cjs +0 -8
- package/dist/cjs/components/Badge/badgeClasses.cjs.map +0 -1
- package/dist/esm/components/Avatar/avatarClasses.js +0 -8
- package/dist/esm/components/Avatar/avatarClasses.js.map +0 -1
- package/dist/esm/components/Badge/badgeClasses.js +0 -8
- package/dist/esm/components/Badge/badgeClasses.js.map +0 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -243,21 +243,21 @@ export declare const avatarClasses: {
|
|
|
243
243
|
lg: "HvAvatar-lg";
|
|
244
244
|
xl: "HvAvatar-xl";
|
|
245
245
|
root: "HvAvatar-root";
|
|
246
|
-
circular: "HvAvatar-circular";
|
|
247
246
|
fallback: "HvAvatar-fallback";
|
|
248
|
-
badge: "HvAvatar-badge";
|
|
249
247
|
avatar: "HvAvatar-avatar";
|
|
248
|
+
badge: "HvAvatar-badge";
|
|
249
|
+
circular: "HvAvatar-circular";
|
|
250
250
|
};
|
|
251
251
|
|
|
252
252
|
export declare const badgeClasses: {
|
|
253
|
-
root: "
|
|
254
|
-
badge: "
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
showLabel: "
|
|
259
|
-
badgeIcon: "
|
|
260
|
-
badgeOneDigit: "
|
|
253
|
+
root: "HvBadge-root";
|
|
254
|
+
badge: "HvBadge-badge";
|
|
255
|
+
badgeContainer: "HvBadge-badgeContainer";
|
|
256
|
+
badgePosition: "HvBadge-badgePosition";
|
|
257
|
+
showCount: "HvBadge-showCount";
|
|
258
|
+
showLabel: "HvBadge-showLabel";
|
|
259
|
+
badgeIcon: "HvBadge-badgeIcon";
|
|
260
|
+
badgeOneDigit: "HvBadge-badgeOneDigit";
|
|
261
261
|
};
|
|
262
262
|
|
|
263
263
|
export declare const bannerClasses: {
|
|
@@ -1064,7 +1064,7 @@ export declare interface HvActionBarProps extends HvBaseProps {
|
|
|
1064
1064
|
classes?: HvActionBarClasses;
|
|
1065
1065
|
}
|
|
1066
1066
|
|
|
1067
|
-
declare type HvActionContainerClasses = ExtractNames<typeof
|
|
1067
|
+
declare type HvActionContainerClasses = ExtractNames<typeof useClasses_25>;
|
|
1068
1068
|
|
|
1069
1069
|
declare interface HvActionContainerProps extends HvBaseProps<HTMLButtonElement> {
|
|
1070
1070
|
/** onClose function. */
|
|
@@ -1088,7 +1088,7 @@ export declare interface HvActionGeneric {
|
|
|
1088
1088
|
|
|
1089
1089
|
export declare const HvActionsGeneric: ({ id, classes: classesProp, className, category, disabled, actions, actionsCallback, maxVisibleActions, ...others }: HvActionsGenericProps) => JSX_2.Element | null;
|
|
1090
1090
|
|
|
1091
|
-
export declare type HvActionsGenericClasses = ExtractNames<typeof
|
|
1091
|
+
export declare type HvActionsGenericClasses = ExtractNames<typeof useClasses_22>;
|
|
1092
1092
|
|
|
1093
1093
|
export declare interface HvActionsGenericProps extends HvBaseProps {
|
|
1094
1094
|
/** Button category. */
|
|
@@ -1167,7 +1167,7 @@ export declare interface HvAppSwitcherActionApplication {
|
|
|
1167
1167
|
color?: string;
|
|
1168
1168
|
}
|
|
1169
1169
|
|
|
1170
|
-
export declare type HvAppSwitcherActionClasses = ExtractNames<typeof
|
|
1170
|
+
export declare type HvAppSwitcherActionClasses = ExtractNames<typeof useClasses_18>;
|
|
1171
1171
|
|
|
1172
1172
|
export declare interface HvAppSwitcherActionProps extends HvBaseProps {
|
|
1173
1173
|
/** The application data to be used to render the Action object. */
|
|
@@ -1180,7 +1180,7 @@ export declare interface HvAppSwitcherActionProps extends HvBaseProps {
|
|
|
1180
1180
|
classes?: HvAppSwitcherActionClasses;
|
|
1181
1181
|
}
|
|
1182
1182
|
|
|
1183
|
-
export declare type HvAppSwitcherClasses = ExtractNames<typeof
|
|
1183
|
+
export declare type HvAppSwitcherClasses = ExtractNames<typeof useClasses_17>;
|
|
1184
1184
|
|
|
1185
1185
|
export declare interface HvAppSwitcherProps extends HvBaseProps {
|
|
1186
1186
|
/** Number of columns to render. One, two, or whatever fits the component's width. */
|
|
@@ -1215,24 +1215,9 @@ export declare type HvAtmosphereColors = Record<HvAtmosphereColorKeys, string>;
|
|
|
1215
1215
|
* Avatars can be used to represent a user or a brand.
|
|
1216
1216
|
* They can show an image, an icon or the initial letters of a name, for example.
|
|
1217
1217
|
*/
|
|
1218
|
-
export declare const HvAvatar: ({ className, style, classes, children: childrenProp, component, size, backgroundColor, color, src, srcSet, sizes, alt, imgProps, status, badge, variant, avatarProps, ...others }: HvAvatarProps) => JSX_2.Element;
|
|
1218
|
+
export declare const HvAvatar: ({ className, style, classes: classesProp, children: childrenProp, component, size, backgroundColor, color, src, srcSet, sizes, alt, imgProps, status, badge, variant, avatarProps, ...others }: HvAvatarProps) => JSX_2.Element;
|
|
1219
1219
|
|
|
1220
|
-
export declare
|
|
1221
|
-
root?: string;
|
|
1222
|
-
container?: string;
|
|
1223
|
-
img?: string;
|
|
1224
|
-
fallback?: string;
|
|
1225
|
-
badge?: string;
|
|
1226
|
-
avatar?: string;
|
|
1227
|
-
status?: string;
|
|
1228
|
-
xs?: string;
|
|
1229
|
-
sm?: string;
|
|
1230
|
-
md?: string;
|
|
1231
|
-
lg?: string;
|
|
1232
|
-
xl?: string;
|
|
1233
|
-
circular?: string;
|
|
1234
|
-
square?: string;
|
|
1235
|
-
}
|
|
1220
|
+
export declare type HvAvatarClasses = ExtractNames<typeof useClasses_5>;
|
|
1236
1221
|
|
|
1237
1222
|
export declare interface HvAvatarProps extends HvBaseProps {
|
|
1238
1223
|
/** Inline styles to be applied to the root element. */
|
|
@@ -1283,16 +1268,7 @@ export declare type HvAvatarVariant = "circular" | "square";
|
|
|
1283
1268
|
*/
|
|
1284
1269
|
export declare const HvBadge: (props: HvBadgeProps) => JSX_2.Element;
|
|
1285
1270
|
|
|
1286
|
-
export declare
|
|
1287
|
-
root?: string;
|
|
1288
|
-
badgeContainer?: string;
|
|
1289
|
-
badgePosition?: string;
|
|
1290
|
-
badge?: string;
|
|
1291
|
-
showCount?: string;
|
|
1292
|
-
showLabel?: string;
|
|
1293
|
-
badgeIcon?: string;
|
|
1294
|
-
badgeOneDigit?: string;
|
|
1295
|
-
}
|
|
1271
|
+
export declare type HvBadgeClasses = ExtractNames<typeof useClasses_6>;
|
|
1296
1272
|
|
|
1297
1273
|
export declare interface HvBadgeProps extends HvBaseProps {
|
|
1298
1274
|
/**
|
|
@@ -1333,11 +1309,11 @@ export declare const HvBanner: ({ id, classes: classesProp, className, open, onC
|
|
|
1333
1309
|
|
|
1334
1310
|
export declare type HvBannerActionPosition = "auto" | "inline" | "bottom-right";
|
|
1335
1311
|
|
|
1336
|
-
export declare type HvBannerClasses = ExtractNames<typeof
|
|
1312
|
+
export declare type HvBannerClasses = ExtractNames<typeof useClasses_24>;
|
|
1337
1313
|
|
|
1338
1314
|
export declare const HvBannerContent: ForwardRefExoticComponent<Omit<HvBannerContentProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
1339
1315
|
|
|
1340
|
-
export declare type HvBannerContentClasses = ExtractNames<typeof
|
|
1316
|
+
export declare type HvBannerContentClasses = ExtractNames<typeof useClasses_26>;
|
|
1341
1317
|
|
|
1342
1318
|
export declare interface HvBannerContentProps extends Omit<SnackbarContentProps, "variant" | "classes" | "onClose">, HvBaseProps {
|
|
1343
1319
|
/** The message to display. */
|
|
@@ -1959,7 +1935,7 @@ export declare interface HvBulkActionsProps extends HvBaseProps {
|
|
|
1959
1935
|
*/
|
|
1960
1936
|
export declare const HvButton: <C extends React_2.ElementType = "button">(props: HvButtonProps<C>) => React_2.ReactElement | null;
|
|
1961
1937
|
|
|
1962
|
-
export declare type HvButtonClasses = ExtractNames<typeof
|
|
1938
|
+
export declare type HvButtonClasses = ExtractNames<typeof useClasses_7>;
|
|
1963
1939
|
|
|
1964
1940
|
export declare type HvButtonProps<C extends React_2.ElementType = "button"> = PolymorphicComponentRef<C, {
|
|
1965
1941
|
/** Use the variant prop to change the visual style of the Button. */
|
|
@@ -2136,11 +2112,11 @@ export declare interface HvCalendarProps {
|
|
|
2136
2112
|
*/
|
|
2137
2113
|
export declare const HvCard: ({ classes: classesProp, className, children, icon, selectable, selected, statusColor, bgcolor, ...others }: HvCardProps) => JSX_2.Element;
|
|
2138
2114
|
|
|
2139
|
-
export declare type HvCardClasses = ExtractNames<typeof
|
|
2115
|
+
export declare type HvCardClasses = ExtractNames<typeof useClasses_8>;
|
|
2140
2116
|
|
|
2141
2117
|
export declare const HvCardContent: ({ id, classes: classesProp, className, children, onClick, ...others }: HvCardContentProps) => JSX_2.Element;
|
|
2142
2118
|
|
|
2143
|
-
export declare type HvCardContentClasses = ExtractNames<typeof
|
|
2119
|
+
export declare type HvCardContentClasses = ExtractNames<typeof useClasses_10>;
|
|
2144
2120
|
|
|
2145
2121
|
export declare interface HvCardContentProps extends Omit<CardContentProps, "classes">, HvBaseProps {
|
|
2146
2122
|
/** Id to be applied to the root node. */
|
|
@@ -2153,7 +2129,7 @@ export declare interface HvCardContentProps extends Omit<CardContentProps, "clas
|
|
|
2153
2129
|
|
|
2154
2130
|
export declare const HvCardHeader: ({ classes: classesProp, className, title, subheader, icon, onClick, ...others }: HvCardHeaderProps) => JSX_2.Element;
|
|
2155
2131
|
|
|
2156
|
-
export declare type HvCardHeaderClasses = ExtractNames<typeof
|
|
2132
|
+
export declare type HvCardHeaderClasses = ExtractNames<typeof useClasses_9>;
|
|
2157
2133
|
|
|
2158
2134
|
export declare interface HvCardHeaderProps extends Omit<CardHeaderProps, "classes">, HvBaseProps<HTMLDivElement, "title"> {
|
|
2159
2135
|
/** The renderable content inside the title slot of the header. */
|
|
@@ -2170,7 +2146,7 @@ export declare interface HvCardHeaderProps extends Omit<CardHeaderProps, "classe
|
|
|
2170
2146
|
|
|
2171
2147
|
export declare const HvCardMedia: ({ id, classes: classesProp, className, children, title, onClick, ...others }: HvCardMediaProps) => JSX_2.Element;
|
|
2172
2148
|
|
|
2173
|
-
export declare type HvCardMediaClasses = ExtractNames<typeof
|
|
2149
|
+
export declare type HvCardMediaClasses = ExtractNames<typeof useClasses_11>;
|
|
2174
2150
|
|
|
2175
2151
|
export declare interface HvCardMediaProps extends Omit<CardMediaProps, "classes">, ImgHTMLAttributes<HTMLDivElement>, HvBaseProps<HTMLDivElement, "onClick" | "title"> {
|
|
2176
2152
|
/** Id to be applied to the root node. */
|
|
@@ -2211,13 +2187,13 @@ export declare interface HvCardProps extends HvBaseProps {
|
|
|
2211
2187
|
*/
|
|
2212
2188
|
export declare const HvCarousel: (props: HvCarouselProps) => JSX_2.Element;
|
|
2213
2189
|
|
|
2214
|
-
export declare type HvCarouselClasses = ExtractNames<typeof
|
|
2190
|
+
export declare type HvCarouselClasses = ExtractNames<typeof useClasses_43>;
|
|
2215
2191
|
|
|
2216
2192
|
export declare const HvCarouselControls: (props: HvCarouselControlsProps) => JSX_2.Element;
|
|
2217
2193
|
|
|
2218
2194
|
declare interface HvCarouselControlsProps extends HvBaseProps<HTMLDivElement>, Pick<HvPaginationProps, "page" | "pages" | "canPrevious" | "canNext"> {
|
|
2219
2195
|
showDots?: boolean;
|
|
2220
|
-
classes?: ExtractNames<typeof
|
|
2196
|
+
classes?: ExtractNames<typeof useClasses_43>;
|
|
2221
2197
|
actions?: ReactNode;
|
|
2222
2198
|
onPreviousClick?: MouseEventHandler<HTMLButtonElement>;
|
|
2223
2199
|
onNextClick?: MouseEventHandler<HTMLButtonElement>;
|
|
@@ -2264,7 +2240,7 @@ export declare interface HvCarouselProps extends HvBaseProps<HTMLDivElement, "ti
|
|
|
2264
2240
|
*/
|
|
2265
2241
|
export declare const HvCarouselSlide: ({ classes: classesProp, className, children, size: flexBasis, src, alt, ...props }: HvCarouselSlideProps) => JSX_2.Element;
|
|
2266
2242
|
|
|
2267
|
-
export declare type HvCarouselSlideClasses = ExtractNames<typeof
|
|
2243
|
+
export declare type HvCarouselSlideClasses = ExtractNames<typeof useClasses_44>;
|
|
2268
2244
|
|
|
2269
2245
|
export declare interface HvCarouselSlideProps extends ImgHTMLAttributes<HTMLImageElement> {
|
|
2270
2246
|
/** A Jss Object used to override or extend the styles applied. */
|
|
@@ -2279,7 +2255,7 @@ export declare const HvCarouselThumbnails: ForwardRefExoticComponent<HvCarouselT
|
|
|
2279
2255
|
|
|
2280
2256
|
declare interface HvCarouselThumbnailsProps extends HvBaseProps<HTMLDivElement, "children">, Pick<HvPaginationProps, "page" | "pages" | "canPrevious" | "canNext"> {
|
|
2281
2257
|
width?: CSSProperties["width"];
|
|
2282
|
-
classes?: ExtractNames<typeof
|
|
2258
|
+
classes?: ExtractNames<typeof useClasses_43>;
|
|
2283
2259
|
onThumbnailClick?: (event: MouseEvent_2<HTMLButtonElement>, index: number) => void;
|
|
2284
2260
|
thumbnailProps?: Partial<HvButtonProps>;
|
|
2285
2261
|
showDots?: boolean;
|
|
@@ -2499,7 +2475,7 @@ export declare type HvClickOutsideEvent = MouseEvent | KeyboardEvent | TouchEven
|
|
|
2499
2475
|
*/
|
|
2500
2476
|
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;
|
|
2501
2477
|
|
|
2502
|
-
export declare type HvColorPickerClasses = ExtractNames<typeof
|
|
2478
|
+
export declare type HvColorPickerClasses = ExtractNames<typeof useClasses_42>;
|
|
2503
2479
|
|
|
2504
2480
|
export declare interface HvColorPickerProps {
|
|
2505
2481
|
"aria-label"?: string;
|
|
@@ -2742,7 +2718,7 @@ export declare interface HvDateColumnCellProp {
|
|
|
2742
2718
|
*/
|
|
2743
2719
|
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;
|
|
2744
2720
|
|
|
2745
|
-
export declare type HvDatePickerClasses = ExtractNames<typeof
|
|
2721
|
+
export declare type HvDatePickerClasses = ExtractNames<typeof useClasses_34>;
|
|
2746
2722
|
|
|
2747
2723
|
export declare interface HvDatePickerProps extends HvBaseProps<HTMLDivElement, "onChange"> {
|
|
2748
2724
|
/**
|
|
@@ -2916,7 +2892,7 @@ export declare type HvDatePickerStatus = HvFormStatus;
|
|
|
2916
2892
|
|
|
2917
2893
|
export declare const HvDialog: ({ variant, classes: classesProp, className, id, children, open, onClose, firstFocusable, buttonTitle, fullscreen, disableBackdropClick, ...others }: HvDialogProps) => JSX_2.Element;
|
|
2918
2894
|
|
|
2919
|
-
export declare type HvDialogActionClasses = ExtractNames<typeof
|
|
2895
|
+
export declare type HvDialogActionClasses = ExtractNames<typeof useClasses_14>;
|
|
2920
2896
|
|
|
2921
2897
|
export declare const HvDialogActions: ({ classes: classesProp, className, children, fullscreen, ...others }: HvDialogActionsProps) => JSX_2.Element;
|
|
2922
2898
|
|
|
@@ -2927,11 +2903,11 @@ export declare interface HvDialogActionsProps extends Omit<DialogActionsProps, "
|
|
|
2927
2903
|
classes?: HvDialogActionClasses;
|
|
2928
2904
|
}
|
|
2929
2905
|
|
|
2930
|
-
export declare type HvDialogClasses = ExtractNames<typeof
|
|
2906
|
+
export declare type HvDialogClasses = ExtractNames<typeof useClasses_15>;
|
|
2931
2907
|
|
|
2932
2908
|
export declare const HvDialogContent: ({ classes: classesProp, className, children, indentContent, }: HvDialogContentProps) => JSX_2.Element;
|
|
2933
2909
|
|
|
2934
|
-
export declare type HvDialogContentClasses = ExtractNames<typeof
|
|
2910
|
+
export declare type HvDialogContentClasses = ExtractNames<typeof useClasses_13>;
|
|
2935
2911
|
|
|
2936
2912
|
export declare interface HvDialogContentProps extends Omit<DialogContentProps, "classes">, HvBaseProps {
|
|
2937
2913
|
/** Content should be indented in relationship to the Dialog title. */
|
|
@@ -2971,7 +2947,7 @@ export declare interface HvDialogProps extends Omit<DialogProps, "fullScreen" |
|
|
|
2971
2947
|
|
|
2972
2948
|
export declare const HvDialogTitle: ({ classes: classesProp, className, children, variant, showIcon, customIcon, ...others }: HvDialogTitleProps) => JSX_2.Element;
|
|
2973
2949
|
|
|
2974
|
-
export declare type HvDialogTitleClasses = ExtractNames<typeof
|
|
2950
|
+
export declare type HvDialogTitleClasses = ExtractNames<typeof useClasses_12>;
|
|
2975
2951
|
|
|
2976
2952
|
export declare interface HvDialogTitleProps extends Omit<DialogTitleProps, "variant" | "classes">, HvBaseProps<HTMLSpanElement, "color"> {
|
|
2977
2953
|
/** Variant of the dialog title. */
|
|
@@ -2992,7 +2968,7 @@ export declare type HvDialogTitleVariant = "success" | "warning" | "error" | "in
|
|
|
2992
2968
|
*/
|
|
2993
2969
|
export declare const HvDotPagination: ({ className, classes: classesProp, unselectedIcon, selectedIcon, pages, page, onPageChange, getItemAriaLabel, ...others }: HvDotPaginationProps) => JSX_2.Element;
|
|
2994
2970
|
|
|
2995
|
-
export declare type HvDotPaginationClasses = ExtractNames<typeof
|
|
2971
|
+
export declare type HvDotPaginationClasses = ExtractNames<typeof useClasses_23>;
|
|
2996
2972
|
|
|
2997
2973
|
export declare interface HvDotPaginationProps extends Omit<HvRadioGroupProps, "classes"> {
|
|
2998
2974
|
/**
|
|
@@ -3036,7 +3012,7 @@ export declare interface HvDotPaginationProps extends Omit<HvRadioGroupProps, "c
|
|
|
3036
3012
|
*/
|
|
3037
3013
|
export declare const HvDrawer: ({ className, classes: classesProp, id, children, open, onClose, anchor, buttonTitle, ...others }: HvDrawerProps) => JSX_2.Element;
|
|
3038
3014
|
|
|
3039
|
-
export declare type HvDrawerClasses = ExtractNames<typeof
|
|
3015
|
+
export declare type HvDrawerClasses = ExtractNames<typeof useClasses_16>;
|
|
3040
3016
|
|
|
3041
3017
|
export declare interface HvDrawerProps extends DrawerProps, Omit<DrawerProps, "classes">, HvBaseProps<HTMLDivElement> {
|
|
3042
3018
|
/**
|
|
@@ -3225,7 +3201,7 @@ declare interface HvDropdownListProps {
|
|
|
3225
3201
|
*/
|
|
3226
3202
|
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;
|
|
3227
3203
|
|
|
3228
|
-
export declare type HvDropDownMenuClasses = ExtractNames<typeof
|
|
3204
|
+
export declare type HvDropDownMenuClasses = ExtractNames<typeof useClasses_20>;
|
|
3229
3205
|
|
|
3230
3206
|
export declare interface HvDropDownMenuProps extends HvBaseProps<HTMLDivElement, "onClick"> {
|
|
3231
3207
|
/** Icon. */
|
|
@@ -3696,9 +3672,9 @@ export declare interface HvFileUploaderProps extends HvBaseProps {
|
|
|
3696
3672
|
*/
|
|
3697
3673
|
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;
|
|
3698
3674
|
|
|
3699
|
-
export declare type HvFilterGroupClasses = ExtractNames<typeof
|
|
3675
|
+
export declare type HvFilterGroupClasses = ExtractNames<typeof useClasses_32>;
|
|
3700
3676
|
|
|
3701
|
-
declare type HvFilterGroupContentClasses = ExtractNames<typeof
|
|
3677
|
+
declare type HvFilterGroupContentClasses = ExtractNames<typeof useClasses_33>;
|
|
3702
3678
|
|
|
3703
3679
|
declare interface HvFilterGroupContentProps extends Omit<HvBaseDropdownProps, "onChange"> {
|
|
3704
3680
|
description?: React.ReactNode;
|
|
@@ -4291,7 +4267,7 @@ export declare interface HvHooks<D extends object = Record<string, unknown>, H e
|
|
|
4291
4267
|
useFinalInstance: Array<(instance: HvTableInstance<D, H>) => void>;
|
|
4292
4268
|
}
|
|
4293
4269
|
|
|
4294
|
-
export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof
|
|
4270
|
+
export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof useClasses_37>;
|
|
4295
4271
|
|
|
4296
4272
|
/**
|
|
4297
4273
|
* Provides the user with additional descriptive text for the form element.
|
|
@@ -4319,7 +4295,7 @@ export declare interface HvInfoMessageProps extends HvBaseProps {
|
|
|
4319
4295
|
*/
|
|
4320
4296
|
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;
|
|
4321
4297
|
|
|
4322
|
-
export declare type HvInlineEditorClasses = ExtractNames<typeof
|
|
4298
|
+
export declare type HvInlineEditorClasses = ExtractNames<typeof useClasses_39>;
|
|
4323
4299
|
|
|
4324
4300
|
export declare interface HvInlineEditorProps extends HvBaseProps<HTMLDivElement, "onBlur" | "onChange"> {
|
|
4325
4301
|
/** The value of the form element. */
|
|
@@ -4347,7 +4323,7 @@ export declare interface HvInlineEditorProps extends HvBaseProps<HTMLDivElement,
|
|
|
4347
4323
|
*/
|
|
4348
4324
|
export declare const HvInput: React_2.ForwardRefExoticComponent<HvInputProps & React_2.RefAttributes<InputElement>>;
|
|
4349
4325
|
|
|
4350
|
-
export declare type HvInputClasses = ExtractNames<typeof
|
|
4326
|
+
export declare type HvInputClasses = ExtractNames<typeof useClasses_19>;
|
|
4351
4327
|
|
|
4352
4328
|
export declare interface HvInputLabels {
|
|
4353
4329
|
/** The label of the clear button. */
|
|
@@ -4954,7 +4930,7 @@ export declare interface HvOverflowTooltipProps extends HvBaseProps {
|
|
|
4954
4930
|
*/
|
|
4955
4931
|
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;
|
|
4956
4932
|
|
|
4957
|
-
export declare type HvPaginationClasses = ExtractNames<typeof
|
|
4933
|
+
export declare type HvPaginationClasses = ExtractNames<typeof useClasses_21>;
|
|
4958
4934
|
|
|
4959
4935
|
export declare interface HvPaginationLabels {
|
|
4960
4936
|
/** The show label. */
|
|
@@ -5153,7 +5129,7 @@ export declare interface HvProviderProps {
|
|
|
5153
5129
|
*/
|
|
5154
5130
|
export declare const HvQueryBuilder: ({ attributes, query, onChange, operators, combinators, maxDepth, labels, readOnly, classes, }: HvQueryBuilderProps) => JSX_2.Element;
|
|
5155
5131
|
|
|
5156
|
-
export declare type HvQueryBuilderClasses = ExtractNames<typeof
|
|
5132
|
+
export declare type HvQueryBuilderClasses = ExtractNames<typeof useClasses_41>;
|
|
5157
5133
|
|
|
5158
5134
|
export declare interface HvQueryBuilderProps {
|
|
5159
5135
|
attributes?: Record<string, Attribute>;
|
|
@@ -5471,7 +5447,7 @@ declare type HvRowPropGetter<D extends object = Record<string, unknown>, H exten
|
|
|
5471
5447
|
*/
|
|
5472
5448
|
export declare const HvScrollToHorizontal: ({ id, defaultSelectedIndex, scrollElementId, href, onChange, onClick, onEnter, className, classes: classesProp, options, offset, position, tooltipPosition, ...others }: HvScrollToHorizontalProps) => JSX_2.Element;
|
|
5473
5449
|
|
|
5474
|
-
export declare type HvScrollToHorizontalClasses = ExtractNames<typeof
|
|
5450
|
+
export declare type HvScrollToHorizontalClasses = ExtractNames<typeof useClasses_38>;
|
|
5475
5451
|
|
|
5476
5452
|
export declare interface HvScrollToHorizontalOption {
|
|
5477
5453
|
key?: string;
|
|
@@ -5524,7 +5500,7 @@ export declare type HvScrollToTooltipPositions = "left" | "right" | "top" | "bot
|
|
|
5524
5500
|
*/
|
|
5525
5501
|
export declare const HvScrollToVertical: ({ id, defaultSelectedIndex, scrollElementId, href, onChange, onClick, onEnter, className, classes: classesProp, options, offset, position, tooltipPosition, style, ...others }: HvScrollToVerticalProps) => JSX_2.Element;
|
|
5526
5502
|
|
|
5527
|
-
export declare type HvScrollToVerticalClasses = ExtractNames<typeof
|
|
5503
|
+
export declare type HvScrollToVerticalClasses = ExtractNames<typeof useClasses_36>;
|
|
5528
5504
|
|
|
5529
5505
|
export declare interface HvScrollToVerticalOption {
|
|
5530
5506
|
key?: string;
|
|
@@ -5840,11 +5816,11 @@ export declare interface HvSliderProps extends HvBaseProps<HTMLDivElement, "onCh
|
|
|
5840
5816
|
*/
|
|
5841
5817
|
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;
|
|
5842
5818
|
|
|
5843
|
-
export declare type HvSnackbarClasses = ExtractNames<typeof
|
|
5819
|
+
export declare type HvSnackbarClasses = ExtractNames<typeof useClasses_27>;
|
|
5844
5820
|
|
|
5845
5821
|
export declare const HvSnackbarContent: ForwardRefExoticComponent<Omit<HvSnackbarContentProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
5846
5822
|
|
|
5847
|
-
export declare type HvSnackbarContentClasses = ExtractNames<typeof
|
|
5823
|
+
export declare type HvSnackbarContentClasses = ExtractNames<typeof useClasses_28>;
|
|
5848
5824
|
|
|
5849
5825
|
export declare interface HvSnackbarContentProps extends Omit<SnackbarContentProps, "variant" | "action" | "classes">, HvBaseProps {
|
|
5850
5826
|
/** The message to display. */
|
|
@@ -5898,7 +5874,7 @@ export declare interface HvSnackbarProps extends Omit<SnackbarProps, "action" |
|
|
|
5898
5874
|
|
|
5899
5875
|
export declare const HvSnackbarProvider: ({ children, notistackClassesOverride, maxSnack, autoHideDuration, anchorOrigin, classes: classesProp, className, ...others }: HvSnackbarProviderProps) => JSX_2.Element;
|
|
5900
5876
|
|
|
5901
|
-
export declare type HvSnackbarProviderClasses = ExtractNames<typeof
|
|
5877
|
+
export declare type HvSnackbarProviderClasses = ExtractNames<typeof useClasses_29>;
|
|
5902
5878
|
|
|
5903
5879
|
export declare interface HvSnackbarProviderProps {
|
|
5904
5880
|
/** Your component tree. */
|
|
@@ -6194,7 +6170,7 @@ export declare const HvTableCell: ForwardRefExoticComponent<HvTableCellProps & R
|
|
|
6194
6170
|
|
|
6195
6171
|
export declare type HvTableCellAlign = "center" | "inherit" | "justify" | "left" | "right";
|
|
6196
6172
|
|
|
6197
|
-
export declare type HvTableCellClasses = ExtractNames<typeof
|
|
6173
|
+
export declare type HvTableCellClasses = ExtractNames<typeof useClasses_31>;
|
|
6198
6174
|
|
|
6199
6175
|
export declare interface HvTableCellProps extends Omit<TdHTMLAttributes<HTMLTableCellElement>, "align"> {
|
|
6200
6176
|
/** The component used for the root node. Either a string to use a HTML element or a component. Defaults to td. */
|
|
@@ -6501,7 +6477,7 @@ export declare interface HvTableProps extends TableHTMLAttributes<HTMLTableEleme
|
|
|
6501
6477
|
*/
|
|
6502
6478
|
export declare const HvTableRow: ForwardRefExoticComponent<HvTableRowProps & RefAttributes<HTMLElement>>;
|
|
6503
6479
|
|
|
6504
|
-
export declare type HvTableRowClasses = ExtractNames<typeof
|
|
6480
|
+
export declare type HvTableRowClasses = ExtractNames<typeof useClasses_30>;
|
|
6505
6481
|
|
|
6506
6482
|
export declare interface HvTableRowProps extends HvBaseProps<HTMLTableRowElement, "children"> {
|
|
6507
6483
|
/** Content to be rendered */
|
|
@@ -6912,7 +6888,7 @@ declare interface HvThemeProviderProps {
|
|
|
6912
6888
|
*/
|
|
6913
6889
|
export declare const HvTimeAgo: ({ classes: classesProp, className, timestamp, locale: localeProp, component: Component, emptyElement, disableRefresh, showSeconds, justText, ...others }: HvTimeAgoProps) => JSX_2.Element;
|
|
6914
6890
|
|
|
6915
|
-
export declare type HvTimeAgoClasses = ExtractNames<typeof
|
|
6891
|
+
export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_40>;
|
|
6916
6892
|
|
|
6917
6893
|
export declare interface HvTimeAgoProps extends HvBaseProps<HTMLElement, "children"> {
|
|
6918
6894
|
/**
|
|
@@ -6957,7 +6933,7 @@ export declare interface HvTimeAgoProps extends HvBaseProps<HTMLElement, "childr
|
|
|
6957
6933
|
*/
|
|
6958
6934
|
export declare const HvTimePicker: (props: HvTimePickerProps) => JSX_2.Element;
|
|
6959
6935
|
|
|
6960
|
-
export declare type HvTimePickerClasses = ExtractNames<typeof
|
|
6936
|
+
export declare type HvTimePickerClasses = ExtractNames<typeof useClasses_45>;
|
|
6961
6937
|
|
|
6962
6938
|
export declare type HvTimePickerClassKey = "root" | "input" | "label" | "placeholder" | "timePopperContainer" | "separator" | "periodContainer" | "formElementRoot" | "dropdownPlaceholder" | "iconBaseRoot" | "error" | "labelContainer" | "description" | "dropdownHeaderInvalid" | "dropdownPlaceholderDisabled" | "dropdownHeaderOpen";
|
|
6963
6939
|
|
|
@@ -7664,7 +7640,7 @@ export declare interface HvVerticalNavigationTreeViewProps {
|
|
|
7664
7640
|
children?: React.ReactNode;
|
|
7665
7641
|
}
|
|
7666
7642
|
|
|
7667
|
-
export declare type HvVerticalScrollListItemClasses = ExtractNames<typeof
|
|
7643
|
+
export declare type HvVerticalScrollListItemClasses = ExtractNames<typeof useClasses_35>;
|
|
7668
7644
|
|
|
7669
7645
|
/**
|
|
7670
7646
|
* Provides the user with a descriptive text, signaling an error, for when the form element is in an invalid state.
|
|
@@ -8572,7 +8548,30 @@ declare const useClasses: (classesProp?: Partial<Record<"link" | "body" | "label
|
|
|
8572
8548
|
cx: (...args: any) => string;
|
|
8573
8549
|
};
|
|
8574
8550
|
|
|
8575
|
-
declare const useClasses_10: (classesProp?: Partial<Record<"
|
|
8551
|
+
declare const useClasses_10: (classesProp?: Partial<Record<"content", string>>, addStatic?: boolean) => {
|
|
8552
|
+
classes: {
|
|
8553
|
+
content: string;
|
|
8554
|
+
};
|
|
8555
|
+
css: {
|
|
8556
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8557
|
+
(...args: CSSInterpolation[]): string;
|
|
8558
|
+
};
|
|
8559
|
+
cx: (...args: any) => string;
|
|
8560
|
+
};
|
|
8561
|
+
|
|
8562
|
+
declare const useClasses_11: (classesProp?: Partial<Record<"media" | "root", string>>, addStatic?: boolean) => {
|
|
8563
|
+
classes: {
|
|
8564
|
+
media: string;
|
|
8565
|
+
root: string;
|
|
8566
|
+
};
|
|
8567
|
+
css: {
|
|
8568
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8569
|
+
(...args: CSSInterpolation[]): string;
|
|
8570
|
+
};
|
|
8571
|
+
cx: (...args: any) => string;
|
|
8572
|
+
};
|
|
8573
|
+
|
|
8574
|
+
declare const useClasses_12: (classesProp?: Partial<Record<"root" | "fullscreen" | "messageContainer" | "textWithIcon", string>>, addStatic?: boolean) => {
|
|
8576
8575
|
classes: {
|
|
8577
8576
|
root: string;
|
|
8578
8577
|
fullscreen: string;
|
|
@@ -8586,7 +8585,7 @@ declare const useClasses_10: (classesProp?: Partial<Record<"root" | "fullscreen"
|
|
|
8586
8585
|
cx: (...args: any) => string;
|
|
8587
8586
|
};
|
|
8588
8587
|
|
|
8589
|
-
declare const
|
|
8588
|
+
declare const useClasses_13: (classesProp?: Partial<Record<"root" | "textContent", string>>, addStatic?: boolean) => {
|
|
8590
8589
|
classes: {
|
|
8591
8590
|
root: string;
|
|
8592
8591
|
textContent: string;
|
|
@@ -8598,7 +8597,7 @@ declare const useClasses_11: (classesProp?: Partial<Record<"root" | "textContent
|
|
|
8598
8597
|
cx: (...args: any) => string;
|
|
8599
8598
|
};
|
|
8600
8599
|
|
|
8601
|
-
declare const
|
|
8600
|
+
declare const useClasses_14: (classesProp?: Partial<Record<"spacing" | "root" | "fullscreen", string>>, addStatic?: boolean) => {
|
|
8602
8601
|
classes: {
|
|
8603
8602
|
spacing: string;
|
|
8604
8603
|
root: string;
|
|
@@ -8611,7 +8610,7 @@ declare const useClasses_12: (classesProp?: Partial<Record<"spacing" | "root" |
|
|
|
8611
8610
|
cx: (...args: any) => string;
|
|
8612
8611
|
};
|
|
8613
8612
|
|
|
8614
|
-
declare const
|
|
8613
|
+
declare const useClasses_15: (classesProp?: Partial<Record<"background" | "error" | "warning" | "success" | "root" | "fullscreen" | "closeButton" | "paper" | "statusBar", string>>, addStatic?: boolean) => {
|
|
8615
8614
|
classes: {
|
|
8616
8615
|
background: string;
|
|
8617
8616
|
error: string;
|
|
@@ -8630,7 +8629,7 @@ declare const useClasses_13: (classesProp?: Partial<Record<"background" | "error
|
|
|
8630
8629
|
cx: (...args: any) => string;
|
|
8631
8630
|
};
|
|
8632
8631
|
|
|
8633
|
-
declare const
|
|
8632
|
+
declare const useClasses_16: (classesProp?: Partial<Record<"background" | "root" | "closeButton" | "paper", string>>, addStatic?: boolean) => {
|
|
8634
8633
|
classes: {
|
|
8635
8634
|
background: string;
|
|
8636
8635
|
root: string;
|
|
@@ -8644,7 +8643,7 @@ declare const useClasses_14: (classesProp?: Partial<Record<"background" | "root"
|
|
|
8644
8643
|
cx: (...args: any) => string;
|
|
8645
8644
|
};
|
|
8646
8645
|
|
|
8647
|
-
declare const
|
|
8646
|
+
declare const useClasses_17: (classesProp?: Partial<Record<"title" | "open" | "single" | "root" | "item" | "itemSelected" | "itemDisabled" | "itemTrigger" | "itemIcon" | "itemTitle" | "itemInfoIcon" | "actionsContainer" | "footerContainer" | "closed" | "dual" | "fluid", string>>, addStatic?: boolean) => {
|
|
8648
8647
|
classes: {
|
|
8649
8648
|
title: string;
|
|
8650
8649
|
open: string;
|
|
@@ -8670,7 +8669,7 @@ declare const useClasses_15: (classesProp?: Partial<Record<"title" | "open" | "s
|
|
|
8670
8669
|
cx: (...args: any) => string;
|
|
8671
8670
|
};
|
|
8672
8671
|
|
|
8673
|
-
declare const
|
|
8672
|
+
declare const useClasses_18: (classesProp?: Partial<Record<"title" | "typography" | "icon" | "disabled" | "selected" | "root" | "iconUrl" | "iconInfo", string>>, addStatic?: boolean) => {
|
|
8674
8673
|
classes: {
|
|
8675
8674
|
title: string;
|
|
8676
8675
|
typography: string;
|
|
@@ -8688,7 +8687,7 @@ declare const useClasses_16: (classesProp?: Partial<Record<"title" | "typography
|
|
|
8688
8687
|
cx: (...args: any) => string;
|
|
8689
8688
|
};
|
|
8690
8689
|
|
|
8691
|
-
declare const
|
|
8690
|
+
declare const useClasses_19: (classesProp?: Partial<Record<"input" | "label" | "icon" | "error" | "root" | "inputBorderContainer" | "inputRoot" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "description" | "labelContainer" | "adornmentsBox" | "adornmentButton" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList" | "inputExtension", string>>, addStatic?: boolean) => {
|
|
8692
8691
|
classes: {
|
|
8693
8692
|
input: string;
|
|
8694
8693
|
label: string;
|
|
@@ -8717,7 +8716,33 @@ declare const useClasses_17: (classesProp?: Partial<Record<"input" | "label" | "
|
|
|
8717
8716
|
cx: (...args: any) => string;
|
|
8718
8717
|
};
|
|
8719
8718
|
|
|
8720
|
-
declare const
|
|
8719
|
+
declare const useClasses_2: (classesProp?: Partial<Record<"input" | "disabled" | "readOnly" | "invalid" | "root" | "resizable" | "inputBorderContainer" | "inputRootInvalid" | "inputRootReadOnly" | "inputRoot" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "inputDisabled" | "inputReadOnly" | "inputResizable", string>>, addStatic?: boolean) => {
|
|
8720
|
+
classes: {
|
|
8721
|
+
input: string;
|
|
8722
|
+
disabled: string;
|
|
8723
|
+
readOnly: string;
|
|
8724
|
+
invalid: string;
|
|
8725
|
+
root: string;
|
|
8726
|
+
resizable: string;
|
|
8727
|
+
inputBorderContainer: string;
|
|
8728
|
+
inputRootInvalid: string;
|
|
8729
|
+
inputRootReadOnly: string;
|
|
8730
|
+
inputRoot: string;
|
|
8731
|
+
inputRootFocused: string;
|
|
8732
|
+
inputRootDisabled: string;
|
|
8733
|
+
inputRootMultiline: string;
|
|
8734
|
+
inputDisabled: string;
|
|
8735
|
+
inputReadOnly: string;
|
|
8736
|
+
inputResizable: string;
|
|
8737
|
+
};
|
|
8738
|
+
css: {
|
|
8739
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8740
|
+
(...args: CSSInterpolation[]): string;
|
|
8741
|
+
};
|
|
8742
|
+
cx: (...args: any) => string;
|
|
8743
|
+
};
|
|
8744
|
+
|
|
8745
|
+
declare const useClasses_20: (classesProp?: Partial<Record<"container" | "icon" | "root" | "baseContainer" | "iconSelected" | "menuListRoot" | "menuList", string>>, addStatic?: boolean) => {
|
|
8721
8746
|
classes: {
|
|
8722
8747
|
container: string;
|
|
8723
8748
|
icon: string;
|
|
@@ -8734,7 +8759,7 @@ declare const useClasses_18: (classesProp?: Partial<Record<"container" | "icon"
|
|
|
8734
8759
|
cx: (...args: any) => string;
|
|
8735
8760
|
};
|
|
8736
8761
|
|
|
8737
|
-
declare const
|
|
8762
|
+
declare const useClasses_21: (classesProp?: Partial<Record<"icon" | "root" | "pageSizeOptions" | "iconContainer" | "pageSizeTextContainer" | "pageSizeOptionsSelect" | "pageNavigator" | "pageInfo" | "pageJump" | "pageSizeInput" | "pageSizeInputRoot" | "pageSizeInputContainer", string>>, addStatic?: boolean) => {
|
|
8738
8763
|
classes: {
|
|
8739
8764
|
icon: string;
|
|
8740
8765
|
root: string;
|
|
@@ -8756,33 +8781,7 @@ declare const useClasses_19: (classesProp?: Partial<Record<"icon" | "root" | "pa
|
|
|
8756
8781
|
cx: (...args: any) => string;
|
|
8757
8782
|
};
|
|
8758
8783
|
|
|
8759
|
-
declare const
|
|
8760
|
-
classes: {
|
|
8761
|
-
input: string;
|
|
8762
|
-
disabled: string;
|
|
8763
|
-
readOnly: string;
|
|
8764
|
-
invalid: string;
|
|
8765
|
-
root: string;
|
|
8766
|
-
resizable: string;
|
|
8767
|
-
inputBorderContainer: string;
|
|
8768
|
-
inputRootInvalid: string;
|
|
8769
|
-
inputRootReadOnly: string;
|
|
8770
|
-
inputRoot: string;
|
|
8771
|
-
inputRootFocused: string;
|
|
8772
|
-
inputRootDisabled: string;
|
|
8773
|
-
inputRootMultiline: string;
|
|
8774
|
-
inputDisabled: string;
|
|
8775
|
-
inputReadOnly: string;
|
|
8776
|
-
inputResizable: string;
|
|
8777
|
-
};
|
|
8778
|
-
css: {
|
|
8779
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8780
|
-
(...args: CSSInterpolation[]): string;
|
|
8781
|
-
};
|
|
8782
|
-
cx: (...args: any) => string;
|
|
8783
|
-
};
|
|
8784
|
-
|
|
8785
|
-
declare const useClasses_20: (classesProp?: Partial<Record<"button" | "dropDownMenu" | "root" | "actionContainer" | "dropDownMenuButton" | "dropDownMenuButtonSelected", string>>, addStatic?: boolean) => {
|
|
8784
|
+
declare const useClasses_22: (classesProp?: Partial<Record<"button" | "dropDownMenu" | "root" | "actionContainer" | "dropDownMenuButton" | "dropDownMenuButtonSelected", string>>, addStatic?: boolean) => {
|
|
8786
8785
|
classes: {
|
|
8787
8786
|
button: string;
|
|
8788
8787
|
dropDownMenu: string;
|
|
@@ -8798,7 +8797,7 @@ declare const useClasses_20: (classesProp?: Partial<Record<"button" | "dropDownM
|
|
|
8798
8797
|
cx: (...args: any) => string;
|
|
8799
8798
|
};
|
|
8800
8799
|
|
|
8801
|
-
declare const
|
|
8800
|
+
declare const useClasses_23: (classesProp?: Partial<Record<"radio" | "horizontal" | "icon" | "root" | "radioRoot", string>>, addStatic?: boolean) => {
|
|
8802
8801
|
classes: {
|
|
8803
8802
|
radio: string;
|
|
8804
8803
|
horizontal: string;
|
|
@@ -8813,7 +8812,7 @@ declare const useClasses_21: (classesProp?: Partial<Record<"radio" | "horizontal
|
|
|
8813
8812
|
cx: (...args: any) => string;
|
|
8814
8813
|
};
|
|
8815
8814
|
|
|
8816
|
-
declare const
|
|
8815
|
+
declare const useClasses_24: (classesProp?: Partial<Record<"root" | "rootClosed" | "anchorOriginTopCenter" | "anchorOriginBottomCenter", string>>, addStatic?: boolean) => {
|
|
8817
8816
|
classes: {
|
|
8818
8817
|
root: string;
|
|
8819
8818
|
rootClosed: string;
|
|
@@ -8827,7 +8826,7 @@ declare const useClasses_22: (classesProp?: Partial<Record<"root" | "rootClosed"
|
|
|
8827
8826
|
cx: (...args: any) => string;
|
|
8828
8827
|
};
|
|
8829
8828
|
|
|
8830
|
-
declare const
|
|
8829
|
+
declare const useClasses_25: (classesProp?: Partial<Record<"actionContainer" | "iconContainer" | "actionsInnerContainer" | "closeAction", string>>, addStatic?: boolean) => {
|
|
8831
8830
|
classes: {
|
|
8832
8831
|
actionContainer: string;
|
|
8833
8832
|
iconContainer: string;
|
|
@@ -8841,7 +8840,7 @@ declare const useClasses_23: (classesProp?: Partial<Record<"actionContainer" | "
|
|
|
8841
8840
|
cx: (...args: any) => string;
|
|
8842
8841
|
};
|
|
8843
8842
|
|
|
8844
|
-
declare const
|
|
8843
|
+
declare const useClasses_26: (classesProp?: Partial<Record<"default" | "action" | "error" | "warning" | "success" | "root" | "message" | "baseVariant" | "outContainer", string>>, addStatic?: boolean) => {
|
|
8845
8844
|
classes: {
|
|
8846
8845
|
default: string;
|
|
8847
8846
|
action: string;
|
|
@@ -8860,7 +8859,7 @@ declare const useClasses_24: (classesProp?: Partial<Record<"default" | "action"
|
|
|
8860
8859
|
cx: (...args: any) => string;
|
|
8861
8860
|
};
|
|
8862
8861
|
|
|
8863
|
-
declare const
|
|
8862
|
+
declare const useClasses_27: (classesProp?: Partial<Record<"root" | "anchorOriginTopCenter" | "anchorOriginBottomCenter" | "anchorOriginTopRight" | "anchorOriginBottomRight" | "anchorOriginTopLeft" | "anchorOriginBottomLeft", string>>, addStatic?: boolean) => {
|
|
8864
8863
|
classes: {
|
|
8865
8864
|
root: string;
|
|
8866
8865
|
anchorOriginTopCenter: string;
|
|
@@ -8877,7 +8876,7 @@ declare const useClasses_25: (classesProp?: Partial<Record<"root" | "anchorOrigi
|
|
|
8877
8876
|
cx: (...args: any) => string;
|
|
8878
8877
|
};
|
|
8879
8878
|
|
|
8880
|
-
declare const
|
|
8879
|
+
declare const useClasses_28: (classesProp?: Partial<Record<"default" | "action" | "error" | "warning" | "success" | "root" | "message" | "messageSpan" | "messageText" | "iconVariant", string>>, addStatic?: boolean) => {
|
|
8881
8880
|
classes: {
|
|
8882
8881
|
default: string;
|
|
8883
8882
|
action: string;
|
|
@@ -8897,7 +8896,7 @@ declare const useClasses_26: (classesProp?: Partial<Record<"default" | "action"
|
|
|
8897
8896
|
cx: (...args: any) => string;
|
|
8898
8897
|
};
|
|
8899
8898
|
|
|
8900
|
-
declare const
|
|
8899
|
+
declare const useClasses_29: (classesProp?: Partial<Record<"snackItemRoot", string>>, addStatic?: boolean) => {
|
|
8901
8900
|
classes: {
|
|
8902
8901
|
snackItemRoot: string;
|
|
8903
8902
|
};
|
|
@@ -8908,7 +8907,18 @@ declare const useClasses_27: (classesProp?: Partial<Record<"snackItemRoot", stri
|
|
|
8908
8907
|
cx: (...args: any) => string;
|
|
8909
8908
|
};
|
|
8910
8909
|
|
|
8911
|
-
declare const
|
|
8910
|
+
declare const useClasses_3: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
8911
|
+
classes: {
|
|
8912
|
+
root: string;
|
|
8913
|
+
};
|
|
8914
|
+
css: {
|
|
8915
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8916
|
+
(...args: CSSInterpolation[]): string;
|
|
8917
|
+
};
|
|
8918
|
+
cx: (...args: any) => string;
|
|
8919
|
+
};
|
|
8920
|
+
|
|
8921
|
+
declare const useClasses_30: (classesProp?: Partial<Record<"body" | "footer" | "head" | "expanded" | "selected" | "root" | "hover" | "striped" | "variantList" | "variantListHead", string>>, addStatic?: boolean) => {
|
|
8912
8922
|
classes: {
|
|
8913
8923
|
body: string;
|
|
8914
8924
|
footer: string;
|
|
@@ -8928,7 +8938,7 @@ declare const useClasses_28: (classesProp?: Partial<Record<"body" | "footer" | "
|
|
|
8928
8938
|
cx: (...args: any) => string;
|
|
8929
8939
|
};
|
|
8930
8940
|
|
|
8931
|
-
declare const
|
|
8941
|
+
declare const useClasses_31: (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) => {
|
|
8932
8942
|
classes: {
|
|
8933
8943
|
body: string;
|
|
8934
8944
|
footer: string;
|
|
@@ -8962,18 +8972,7 @@ declare const useClasses_29: (classesProp?: Partial<Record<"body" | "footer" | "
|
|
|
8962
8972
|
cx: (...args: any) => string;
|
|
8963
8973
|
};
|
|
8964
8974
|
|
|
8965
|
-
declare const
|
|
8966
|
-
classes: {
|
|
8967
|
-
root: string;
|
|
8968
|
-
};
|
|
8969
|
-
css: {
|
|
8970
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8971
|
-
(...args: CSSInterpolation[]): string;
|
|
8972
|
-
};
|
|
8973
|
-
cx: (...args: any) => string;
|
|
8974
|
-
};
|
|
8975
|
-
|
|
8976
|
-
declare const useClasses_30: (classesProp?: Partial<Record<"label" | "error" | "root" | "description" | "labelContainer", string>>, addStatic?: boolean) => {
|
|
8975
|
+
declare const useClasses_32: (classesProp?: Partial<Record<"label" | "error" | "root" | "description" | "labelContainer", string>>, addStatic?: boolean) => {
|
|
8977
8976
|
classes: {
|
|
8978
8977
|
label: string;
|
|
8979
8978
|
error: string;
|
|
@@ -8988,7 +8987,7 @@ declare const useClasses_30: (classesProp?: Partial<Record<"label" | "error" | "
|
|
|
8988
8987
|
cx: (...args: any) => string;
|
|
8989
8988
|
};
|
|
8990
8989
|
|
|
8991
|
-
declare const
|
|
8990
|
+
declare const useClasses_33: (classesProp?: Partial<Record<"header" | "space" | "actionBar" | "dropdown" | "root" | "panel" | "baseDropdownSelection" | "rightSidePanel" | "leftSidePanel" | "applyButton", string>>, addStatic?: boolean) => {
|
|
8992
8991
|
classes: {
|
|
8993
8992
|
header: string;
|
|
8994
8993
|
space: string;
|
|
@@ -9008,7 +9007,7 @@ declare const useClasses_31: (classesProp?: Partial<Record<"header" | "space" |
|
|
|
9008
9007
|
cx: (...args: any) => string;
|
|
9009
9008
|
};
|
|
9010
9009
|
|
|
9011
|
-
declare const
|
|
9010
|
+
declare const useClasses_34: (classesProp?: Partial<Record<"label" | "icon" | "action" | "error" | "dropdown" | "root" | "actionContainer" | "panel" | "description" | "labelContainer" | "leftContainer" | "rightContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen", string>>, addStatic?: boolean) => {
|
|
9012
9011
|
classes: {
|
|
9013
9012
|
label: string;
|
|
9014
9013
|
icon: string;
|
|
@@ -9032,7 +9031,7 @@ declare const useClasses_32: (classesProp?: Partial<Record<"label" | "icon" | "a
|
|
|
9032
9031
|
cx: (...args: any) => string;
|
|
9033
9032
|
};
|
|
9034
9033
|
|
|
9035
|
-
declare const
|
|
9034
|
+
declare const useClasses_35: (classesProp?: Partial<Record<"button" | "text" | "root" | "notSelected", string>>, addStatic?: boolean) => {
|
|
9036
9035
|
classes: {
|
|
9037
9036
|
button: string;
|
|
9038
9037
|
text: string;
|
|
@@ -9046,7 +9045,7 @@ declare const useClasses_33: (classesProp?: Partial<Record<"button" | "text" | "
|
|
|
9046
9045
|
cx: (...args: any) => string;
|
|
9047
9046
|
};
|
|
9048
9047
|
|
|
9049
|
-
declare const
|
|
9048
|
+
declare const useClasses_36: (classesProp?: Partial<Record<"root" | "positionFixed" | "positionAbsolute", string>>, addStatic?: boolean) => {
|
|
9050
9049
|
classes: {
|
|
9051
9050
|
root: string;
|
|
9052
9051
|
positionFixed: string;
|
|
@@ -9059,7 +9058,7 @@ declare const useClasses_34: (classesProp?: Partial<Record<"root" | "positionFix
|
|
|
9059
9058
|
cx: (...args: any) => string;
|
|
9060
9059
|
};
|
|
9061
9060
|
|
|
9062
|
-
declare const
|
|
9061
|
+
declare const useClasses_37: (classesProp?: Partial<Record<"button" | "text" | "selected" | "root", string>>, addStatic?: boolean) => {
|
|
9063
9062
|
classes: {
|
|
9064
9063
|
button: string;
|
|
9065
9064
|
text: string;
|
|
@@ -9073,7 +9072,7 @@ declare const useClasses_35: (classesProp?: Partial<Record<"button" | "text" | "
|
|
|
9073
9072
|
cx: (...args: any) => string;
|
|
9074
9073
|
};
|
|
9075
9074
|
|
|
9076
|
-
declare const
|
|
9075
|
+
declare const useClasses_38: (classesProp?: Partial<Record<"selected" | "root" | "positionFixed" | "positionSticky" | "notSelectedRoot" | "notSelected", string>>, addStatic?: boolean) => {
|
|
9077
9076
|
classes: {
|
|
9078
9077
|
selected: string;
|
|
9079
9078
|
root: string;
|
|
@@ -9089,7 +9088,7 @@ declare const useClasses_36: (classesProp?: Partial<Record<"selected" | "root" |
|
|
|
9089
9088
|
cx: (...args: any) => string;
|
|
9090
9089
|
};
|
|
9091
9090
|
|
|
9092
|
-
declare const
|
|
9091
|
+
declare const useClasses_39: (classesProp?: Partial<Record<"button" | "input" | "text" | "icon" | "root" | "inputBorderContainer" | "inputRoot" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
|
|
9093
9092
|
classes: {
|
|
9094
9093
|
button: string;
|
|
9095
9094
|
input: string;
|
|
@@ -9109,8 +9108,12 @@ declare const useClasses_37: (classesProp?: Partial<Record<"button" | "input" |
|
|
|
9109
9108
|
cx: (...args: any) => string;
|
|
9110
9109
|
};
|
|
9111
9110
|
|
|
9112
|
-
declare const
|
|
9111
|
+
declare const useClasses_4: (classesProp?: Partial<Record<"hidden" | "label" | "container" | "disabled" | "root", string>>, addStatic?: boolean) => {
|
|
9113
9112
|
classes: {
|
|
9113
|
+
hidden: string;
|
|
9114
|
+
label: string;
|
|
9115
|
+
container: string;
|
|
9116
|
+
disabled: string;
|
|
9114
9117
|
root: string;
|
|
9115
9118
|
};
|
|
9116
9119
|
css: {
|
|
@@ -9120,7 +9123,18 @@ declare const useClasses_38: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
9120
9123
|
cx: (...args: any) => string;
|
|
9121
9124
|
};
|
|
9122
9125
|
|
|
9123
|
-
declare const
|
|
9126
|
+
declare const useClasses_40: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
9127
|
+
classes: {
|
|
9128
|
+
root: string;
|
|
9129
|
+
};
|
|
9130
|
+
css: {
|
|
9131
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9132
|
+
(...args: CSSInterpolation[]): string;
|
|
9133
|
+
};
|
|
9134
|
+
cx: (...args: any) => string;
|
|
9135
|
+
};
|
|
9136
|
+
|
|
9137
|
+
declare const useClasses_41: (classesProp?: Partial<Record<"root" | "removeButton" | "topGroup" | "subGroup" | "combinator" | "topCombinator" | "combinatorButton" | "topRemoveButton" | "topRemoveButtonDisabled" | "rulesContainer" | "subRulesContainer" | "actionButtonContainer" | "topActionButtonContainer" | "topRulesContainer" | "buttonBackground", string>>, addStatic?: boolean) => {
|
|
9124
9138
|
classes: {
|
|
9125
9139
|
root: string;
|
|
9126
9140
|
removeButton: string;
|
|
@@ -9145,22 +9159,7 @@ declare const useClasses_39: (classesProp?: Partial<Record<"root" | "removeButto
|
|
|
9145
9159
|
cx: (...args: any) => string;
|
|
9146
9160
|
};
|
|
9147
9161
|
|
|
9148
|
-
declare const
|
|
9149
|
-
classes: {
|
|
9150
|
-
hidden: string;
|
|
9151
|
-
label: string;
|
|
9152
|
-
container: string;
|
|
9153
|
-
disabled: string;
|
|
9154
|
-
root: string;
|
|
9155
|
-
};
|
|
9156
|
-
css: {
|
|
9157
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9158
|
-
(...args: CSSInterpolation[]): string;
|
|
9159
|
-
};
|
|
9160
|
-
cx: (...args: any) => string;
|
|
9161
|
-
};
|
|
9162
|
-
|
|
9163
|
-
declare const useClasses_40: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "panel" | "description" | "labelContainer" | "headerColorValue" | "headerColorIcon" | "colorPickerIcon" | "recommendedColorsRoot" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
|
|
9162
|
+
declare const useClasses_42: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "panel" | "description" | "labelContainer" | "headerColorValue" | "headerColorIcon" | "colorPickerIcon" | "recommendedColorsRoot" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
|
|
9164
9163
|
classes: {
|
|
9165
9164
|
label: string;
|
|
9166
9165
|
colorPicker: string;
|
|
@@ -9183,7 +9182,7 @@ declare const useClasses_40: (classesProp?: Partial<Record<"label" | "colorPicke
|
|
|
9183
9182
|
cx: (...args: any) => string;
|
|
9184
9183
|
};
|
|
9185
9184
|
|
|
9186
|
-
declare const
|
|
9185
|
+
declare const useClasses_43: (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>>, addStatic?: boolean) => {
|
|
9187
9186
|
classes: {
|
|
9188
9187
|
title: string;
|
|
9189
9188
|
main: string;
|
|
@@ -9217,7 +9216,7 @@ declare const useClasses_41: (classesProp?: Partial<Record<"title" | "main" | "d
|
|
|
9217
9216
|
cx: (...args: any) => string;
|
|
9218
9217
|
};
|
|
9219
9218
|
|
|
9220
|
-
declare const
|
|
9219
|
+
declare const useClasses_44: (classesProp?: Partial<Record<"image" | "slide", string>>, addStatic?: boolean) => {
|
|
9221
9220
|
classes: {
|
|
9222
9221
|
image: string;
|
|
9223
9222
|
slide: string;
|
|
@@ -9229,7 +9228,7 @@ declare const useClasses_42: (classesProp?: Partial<Record<"image" | "slide", st
|
|
|
9229
9228
|
cx: (...args: any) => string;
|
|
9230
9229
|
};
|
|
9231
9230
|
|
|
9232
|
-
declare const
|
|
9231
|
+
declare const useClasses_45: (classesProp?: Partial<Record<"placeholder" | "label" | "icon" | "error" | "root" | "description" | "labelContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "dropdownHeader" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
|
|
9233
9232
|
classes: {
|
|
9234
9233
|
placeholder: string;
|
|
9235
9234
|
label: string;
|
|
@@ -9252,14 +9251,22 @@ declare const useClasses_43: (classesProp?: Partial<Record<"placeholder" | "labe
|
|
|
9252
9251
|
cx: (...args: any) => string;
|
|
9253
9252
|
};
|
|
9254
9253
|
|
|
9255
|
-
declare const useClasses_5: (classesProp?: Partial<Record<"
|
|
9254
|
+
declare const useClasses_5: (classesProp?: Partial<Record<"img" | "status" | "container" | "square" | "xs" | "sm" | "md" | "lg" | "xl" | "root" | "fallback" | "avatar" | "badge" | "circular", string>>, addStatic?: boolean) => {
|
|
9256
9255
|
classes: {
|
|
9257
|
-
|
|
9258
|
-
|
|
9256
|
+
img: string;
|
|
9257
|
+
status: string;
|
|
9258
|
+
container: string;
|
|
9259
|
+
square: string;
|
|
9260
|
+
xs: string;
|
|
9261
|
+
sm: string;
|
|
9262
|
+
md: string;
|
|
9263
|
+
lg: string;
|
|
9264
|
+
xl: string;
|
|
9259
9265
|
root: string;
|
|
9260
|
-
|
|
9261
|
-
|
|
9262
|
-
|
|
9266
|
+
fallback: string;
|
|
9267
|
+
avatar: string;
|
|
9268
|
+
badge: string;
|
|
9269
|
+
circular: string;
|
|
9263
9270
|
};
|
|
9264
9271
|
css: {
|
|
9265
9272
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9268,14 +9275,16 @@ declare const useClasses_5: (classesProp?: Partial<Record<"icon" | "disabled" |
|
|
|
9268
9275
|
cx: (...args: any) => string;
|
|
9269
9276
|
};
|
|
9270
9277
|
|
|
9271
|
-
declare const useClasses_6: (classesProp?: Partial<Record<"
|
|
9278
|
+
declare const useClasses_6: (classesProp?: Partial<Record<"root" | "badge" | "badgeContainer" | "badgePosition" | "showCount" | "showLabel" | "badgeIcon" | "badgeOneDigit", string>>, addStatic?: boolean) => {
|
|
9272
9279
|
classes: {
|
|
9273
|
-
icon: string;
|
|
9274
|
-
selected: string;
|
|
9275
9280
|
root: string;
|
|
9276
|
-
|
|
9277
|
-
|
|
9278
|
-
|
|
9281
|
+
badge: string;
|
|
9282
|
+
badgeContainer: string;
|
|
9283
|
+
badgePosition: string;
|
|
9284
|
+
showCount: string;
|
|
9285
|
+
showLabel: string;
|
|
9286
|
+
badgeIcon: string;
|
|
9287
|
+
badgeOneDigit: string;
|
|
9279
9288
|
};
|
|
9280
9289
|
css: {
|
|
9281
9290
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9284,14 +9293,14 @@ declare const useClasses_6: (classesProp?: Partial<Record<"icon" | "selected" |
|
|
|
9284
9293
|
cx: (...args: any) => string;
|
|
9285
9294
|
};
|
|
9286
9295
|
|
|
9287
|
-
declare const useClasses_7: (classesProp?: Partial<Record<"
|
|
9296
|
+
declare const useClasses_7: (classesProp?: Partial<Record<"icon" | "disabled" | "root" | "startIcon" | "endIcon" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
9288
9297
|
classes: {
|
|
9289
|
-
|
|
9290
|
-
|
|
9291
|
-
action: string;
|
|
9298
|
+
icon: string;
|
|
9299
|
+
disabled: string;
|
|
9292
9300
|
root: string;
|
|
9293
|
-
|
|
9294
|
-
|
|
9301
|
+
startIcon: string;
|
|
9302
|
+
endIcon: string;
|
|
9303
|
+
focusVisible: string;
|
|
9295
9304
|
};
|
|
9296
9305
|
css: {
|
|
9297
9306
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9300,9 +9309,14 @@ declare const useClasses_7: (classesProp?: Partial<Record<"title" | "content" |
|
|
|
9300
9309
|
cx: (...args: any) => string;
|
|
9301
9310
|
};
|
|
9302
9311
|
|
|
9303
|
-
declare const useClasses_8: (classesProp?: Partial<Record<"
|
|
9312
|
+
declare const useClasses_8: (classesProp?: Partial<Record<"icon" | "selected" | "root" | "selectable" | "semanticContainer" | "semanticBar", string>>, addStatic?: boolean) => {
|
|
9304
9313
|
classes: {
|
|
9305
|
-
|
|
9314
|
+
icon: string;
|
|
9315
|
+
selected: string;
|
|
9316
|
+
root: string;
|
|
9317
|
+
selectable: string;
|
|
9318
|
+
semanticContainer: string;
|
|
9319
|
+
semanticBar: string;
|
|
9306
9320
|
};
|
|
9307
9321
|
css: {
|
|
9308
9322
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9311,10 +9325,14 @@ declare const useClasses_8: (classesProp?: Partial<Record<"content", string>>, a
|
|
|
9311
9325
|
cx: (...args: any) => string;
|
|
9312
9326
|
};
|
|
9313
9327
|
|
|
9314
|
-
declare const useClasses_9: (classesProp?: Partial<Record<"
|
|
9328
|
+
declare const useClasses_9: (classesProp?: Partial<Record<"title" | "content" | "action" | "root" | "titleShort" | "subheader", string>>, addStatic?: boolean) => {
|
|
9315
9329
|
classes: {
|
|
9316
|
-
|
|
9330
|
+
title: string;
|
|
9331
|
+
content: string;
|
|
9332
|
+
action: string;
|
|
9317
9333
|
root: string;
|
|
9334
|
+
titleShort: string;
|
|
9335
|
+
subheader: string;
|
|
9318
9336
|
};
|
|
9319
9337
|
css: {
|
|
9320
9338
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|