@hitachivantara/uikit-react-core 5.95.1 → 5.96.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/ListContainer/ListItem/ListItem.cjs +27 -47
- package/dist/cjs/ListContainer/ListItem/ListItem.styles.cjs +11 -19
- package/dist/cjs/Typography/Typography.cjs +3 -3
- package/dist/cjs/index.cjs +8 -16
- package/dist/cjs/themes/ds3.cjs +1208 -0
- package/dist/cjs/themes/ds5.cjs +142 -0
- package/dist/cjs/themes/index.cjs +10 -0
- package/dist/cjs/themes/pentahoPlus.cjs +761 -0
- package/dist/cjs/utils/theme.cjs +5 -5
- package/dist/esm/ListContainer/ListItem/ListItem.js +27 -47
- package/dist/esm/ListContainer/ListItem/ListItem.styles.js +11 -19
- package/dist/esm/Typography/Typography.js +3 -3
- package/dist/esm/index.js +5 -1
- package/dist/esm/themes/ds3.js +1208 -0
- package/dist/esm/themes/ds5.js +142 -0
- package/dist/esm/themes/index.js +10 -0
- package/dist/esm/themes/pentahoPlus.js +761 -0
- package/dist/esm/utils/theme.js +1 -1
- package/dist/types/index.d.ts +110 -114
- package/package.json +6 -6
package/dist/types/index.d.ts
CHANGED
|
@@ -22,8 +22,6 @@ import { DialogProps } from '@mui/material/Dialog';
|
|
|
22
22
|
import { DialogTitleProps } from '@mui/material/DialogTitle';
|
|
23
23
|
import { DividerProps } from '@mui/material/Divider';
|
|
24
24
|
import { DrawerProps } from '@mui/material/Drawer';
|
|
25
|
-
import { ds3 } from '@hitachivantara/uikit-styles';
|
|
26
|
-
import { ds5 } from '@hitachivantara/uikit-styles';
|
|
27
25
|
import { EmotionCache } from '@emotion/cache';
|
|
28
26
|
import { EmotionContext } from '@hitachivantara/uikit-react-shared';
|
|
29
27
|
import { ExtractNames } from '@hitachivantara/uikit-react-utils';
|
|
@@ -61,7 +59,6 @@ import { MutableRefObject } from 'react';
|
|
|
61
59
|
import { OptionGroupProps } from '@mui/base/OptionGroup';
|
|
62
60
|
import { OptionOwnProps } from '@mui/base/Option';
|
|
63
61
|
import { OptionsObject } from 'notistack';
|
|
64
|
-
import { pentahoPlus } from '@hitachivantara/uikit-styles';
|
|
65
62
|
import { PopperProps } from '@mui/base/Popper';
|
|
66
63
|
import { PopperProps as PopperProps_2 } from 'react-popper';
|
|
67
64
|
import { PropGetter } from 'react-table';
|
|
@@ -97,7 +94,6 @@ import { TableState } from 'react-table';
|
|
|
97
94
|
import { TabProps } from '@mui/material/Tab';
|
|
98
95
|
import { TabsProps } from '@mui/material/Tabs';
|
|
99
96
|
import { theme } from '@hitachivantara/uikit-styles';
|
|
100
|
-
import { themes } from '@hitachivantara/uikit-styles';
|
|
101
97
|
import { TooltipProps } from '@mui/material/Tooltip';
|
|
102
98
|
import { TransitionProps } from '@mui/material/transitions';
|
|
103
99
|
import { UseColumnOrderInstanceProps } from 'react-table';
|
|
@@ -867,9 +863,9 @@ export declare const dropDownMenuClasses: {
|
|
|
867
863
|
menuList: string;
|
|
868
864
|
};
|
|
869
865
|
|
|
870
|
-
export
|
|
866
|
+
export declare const ds3: any;
|
|
871
867
|
|
|
872
|
-
export
|
|
868
|
+
export declare const ds5: any;
|
|
873
869
|
|
|
874
870
|
export { EmotionContext }
|
|
875
871
|
|
|
@@ -960,6 +956,7 @@ export declare const getPrevNextFocus: (nodeId?: string) => {
|
|
|
960
956
|
prevFocus: any;
|
|
961
957
|
};
|
|
962
958
|
|
|
959
|
+
/** @deprecated */
|
|
963
960
|
export declare const getVarValue: (cssVar: string, rootElementId?: string) => string | undefined;
|
|
964
961
|
|
|
965
962
|
export declare const globalActionsClasses: {
|
|
@@ -2009,7 +2006,7 @@ export declare const HvButton: <C extends React.ElementType = "button">(props: {
|
|
|
2009
2006
|
component?: C | undefined;
|
|
2010
2007
|
} & {
|
|
2011
2008
|
children?: ReactNode | undefined;
|
|
2012
|
-
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "
|
|
2009
|
+
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "variant" | "selected" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "variant" | "selected" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> ? T extends any ? T : never : never : never) & {
|
|
2013
2010
|
ref?: PolymorphicRef<C> | undefined;
|
|
2014
2011
|
} & RefAttributes<unknown>) => React.ReactElement<any> | null;
|
|
2015
2012
|
|
|
@@ -4015,7 +4012,7 @@ export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof useC
|
|
|
4015
4012
|
* As defined by Design System, a tooltip with the button’s label should always be displayed when hovering an icon only button.
|
|
4016
4013
|
* This component provides this behavior out of the box.
|
|
4017
4014
|
*/
|
|
4018
|
-
export declare const HvIconButton: <C extends React.ElementType = "button">(props: Omit<HvButtonProps<C>, "
|
|
4015
|
+
export declare const HvIconButton: <C extends React.ElementType = "button">(props: Omit<HvButtonProps<C>, "children" | "ref" | "icon" | "title" | "component" | "focusableWhenDisabled" | "startIcon" | "endIcon"> & {
|
|
4019
4016
|
/** Label to be displayed in the tooltip when hovered. This label will be used as the button's `aria-label`. */
|
|
4020
4017
|
title: React.ReactNode;
|
|
4021
4018
|
/** Number of milliseconds to wait before showing the tooltip. @default 500 */
|
|
@@ -4028,7 +4025,7 @@ export declare const HvIconButton: <C extends React.ElementType = "button">(prop
|
|
|
4028
4025
|
component?: C | undefined;
|
|
4029
4026
|
} & {
|
|
4030
4027
|
children?: ReactNode | undefined;
|
|
4031
|
-
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "
|
|
4028
|
+
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "disabled" | "radius" | "variant" | "selected" | "title" | "component" | "className" | "overrideIconColors" | "placement" | "enterDelay" | "tooltipProps" | Exclude<keyof (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "variant" | "selected" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "variant" | "selected" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> ? T extends any ? T : never : never : never), "children" | "ref" | "icon" | "title" | "component" | "focusableWhenDisabled" | "startIcon" | "endIcon">> extends infer T_1 ? T_1 extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "disabled" | "radius" | "variant" | "selected" | "title" | "component" | "className" | "overrideIconColors" | "placement" | "enterDelay" | "tooltipProps" | Exclude<keyof (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "variant" | "selected" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T_2 ? T_2 extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "variant" | "selected" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> ? T_2 extends any ? T_2 : never : never : never), "children" | "ref" | "icon" | "title" | "component" | "focusableWhenDisabled" | "startIcon" | "endIcon">> ? T_1 extends any ? T_1 : never : never : never) & {
|
|
4032
4029
|
ref?: PolymorphicRef<C> | undefined;
|
|
4033
4030
|
} & RefAttributes<unknown>) => React.ReactElement<any> | null;
|
|
4034
4031
|
|
|
@@ -4103,7 +4100,7 @@ export declare interface HvInfoMessageProps extends HvTypographyProps<"label"> {
|
|
|
4103
4100
|
* An Inline Editor allows the user to edit a record without making a major switch
|
|
4104
4101
|
* between viewing and editing, making it an efficient method of updating a record.
|
|
4105
4102
|
*/
|
|
4106
|
-
export declare const HvInlineEditor: <C extends React.ElementType = <InputElement extends HTMLElement =
|
|
4103
|
+
export declare const HvInlineEditor: <C extends React.ElementType = <InputElement extends HTMLElement = HTMLTextAreaElement | HTMLInputElement>(props: HvInputProps<InputElement> & RefAttributes<InputElement>) => React.ReactElement<any> | null>(props: {
|
|
4107
4104
|
/** The value of the form element. */
|
|
4108
4105
|
value?: string;
|
|
4109
4106
|
/** The default value of the form element. */
|
|
@@ -4143,7 +4140,7 @@ export declare const HvInlineEditor: <C extends React.ElementType = <InputElemen
|
|
|
4143
4140
|
component?: C | undefined;
|
|
4144
4141
|
} & {
|
|
4145
4142
|
children?: ReactNode | undefined;
|
|
4146
|
-
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "
|
|
4143
|
+
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "disabled" | "variant" | "component" | "onBlur" | "onChange" | "onKeyDown" | "defaultValue" | "placeholder" | "buttonProps" | "showIcon" | "typographyProps"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "disabled" | "variant" | "component" | "onBlur" | "onChange" | "onKeyDown" | "defaultValue" | "placeholder" | "buttonProps" | "showIcon" | "typographyProps"> ? T extends any ? T : never : never : never) & {
|
|
4147
4144
|
ref?: PolymorphicRef<C> | undefined;
|
|
4148
4145
|
} & RefAttributes<unknown>) => React.ReactElement<any> | null;
|
|
4149
4146
|
|
|
@@ -4179,7 +4176,7 @@ export declare type HvInlineEditorProps<C extends React.ElementType = typeof HvI
|
|
|
4179
4176
|
/**
|
|
4180
4177
|
The Input is a UI control that allows users to enter and edit text, typically used for collecting user-provided information.
|
|
4181
4178
|
*/
|
|
4182
|
-
export declare const HvInput: <InputElement extends HTMLElement =
|
|
4179
|
+
export declare const HvInput: <InputElement extends HTMLElement = HTMLTextAreaElement | HTMLInputElement>(props: HvInputProps<InputElement> & RefAttributes<InputElement>) => React.ReactElement<any> | null;
|
|
4183
4180
|
|
|
4184
4181
|
export declare type HvInputClasses = ExtractNames<typeof useClasses_47>;
|
|
4185
4182
|
|
|
@@ -5948,7 +5945,7 @@ export declare interface HvSnackbarProps extends Omit<SnackbarProps, "action" |
|
|
|
5948
5945
|
* A snackbar provider to control the stacking of multiple snackbars in the app.
|
|
5949
5946
|
*
|
|
5950
5947
|
* This component uses of the [Notistack](https://github.com/iamhosseindhv/notistack) library.
|
|
5951
|
-
* Please refer to its [API Reference](https://notistack.com/
|
|
5948
|
+
* Please refer to its [API Reference](https://notistack.com/api-reference) for more complex usage scenarios.
|
|
5952
5949
|
*/
|
|
5953
5950
|
export declare const HvSnackbarProvider: (props: HvSnackbarProviderProps) => JSX_2.Element;
|
|
5954
5951
|
|
|
@@ -7602,13 +7599,13 @@ export declare const listContainerClasses: {
|
|
|
7602
7599
|
export declare const listItemClasses: {
|
|
7603
7600
|
root: string;
|
|
7604
7601
|
focus: string;
|
|
7605
|
-
startAdornment: string;
|
|
7606
|
-
endAdornment: string;
|
|
7607
7602
|
gutters: string;
|
|
7608
7603
|
condensed: string;
|
|
7609
7604
|
interactive: string;
|
|
7610
7605
|
selected: string;
|
|
7611
7606
|
disabled: string;
|
|
7607
|
+
startAdornment: string;
|
|
7608
|
+
endAdornment: string;
|
|
7612
7609
|
withStartAdornment: string;
|
|
7613
7610
|
withEndAdornment: string;
|
|
7614
7611
|
};
|
|
@@ -7720,7 +7717,7 @@ export declare const panelClasses: {
|
|
|
7720
7717
|
root: string;
|
|
7721
7718
|
};
|
|
7722
7719
|
|
|
7723
|
-
export
|
|
7720
|
+
export declare const pentahoPlus: any;
|
|
7724
7721
|
|
|
7725
7722
|
declare type PolymorphicComponent<C extends React.ElementType, Props = {}> = React.PropsWithChildren<Props & AsProp<C>> & FixComponentProps<Omit<React.ComponentPropsWithoutRef<C>, PropsToOmit<C, Props>>>;
|
|
7726
7723
|
|
|
@@ -8205,7 +8202,11 @@ export declare const textAreaClasses: {
|
|
|
8205
8202
|
|
|
8206
8203
|
export { theme }
|
|
8207
8204
|
|
|
8208
|
-
export
|
|
8205
|
+
export declare const themes: {
|
|
8206
|
+
ds3: any;
|
|
8207
|
+
ds5: any;
|
|
8208
|
+
pentahoPlus: any;
|
|
8209
|
+
};
|
|
8209
8210
|
|
|
8210
8211
|
export declare const timeAgoClasses: {
|
|
8211
8212
|
root: string;
|
|
@@ -8347,7 +8348,7 @@ export declare const useClasses: (classesProp?: Partial<Record<"xs" | "sm" | "md
|
|
|
8347
8348
|
readonly cx: (...args: any) => string;
|
|
8348
8349
|
};
|
|
8349
8350
|
|
|
8350
|
-
declare const useClasses_10: (classesProp?: Partial<Record<"root" | "
|
|
8351
|
+
declare const useClasses_10: (classesProp?: Partial<Record<"root" | "labelDisabled" | "childGutter", string>>, addStatic?: boolean) => {
|
|
8351
8352
|
readonly classes: {
|
|
8352
8353
|
root: string;
|
|
8353
8354
|
labelDisabled: string;
|
|
@@ -8357,7 +8358,7 @@ declare const useClasses_10: (classesProp?: Partial<Record<"root" | "childGutter
|
|
|
8357
8358
|
readonly cx: (...args: any) => string;
|
|
8358
8359
|
};
|
|
8359
8360
|
|
|
8360
|
-
declare const useClasses_100: (classesProp?: Partial<Record<"root" | "selected" | "
|
|
8361
|
+
declare const useClasses_100: (classesProp?: Partial<Record<"root" | "selected" | "positionSticky" | "positionFixed" | "notSelectedRoot" | "notSelected", string>>, addStatic?: boolean) => {
|
|
8361
8362
|
readonly classes: {
|
|
8362
8363
|
root: string;
|
|
8363
8364
|
positionSticky: string;
|
|
@@ -8370,7 +8371,7 @@ declare const useClasses_100: (classesProp?: Partial<Record<"root" | "selected"
|
|
|
8370
8371
|
readonly cx: (...args: any) => string;
|
|
8371
8372
|
};
|
|
8372
8373
|
|
|
8373
|
-
declare const useClasses_101: (classesProp?: Partial<Record<"text" | "
|
|
8374
|
+
declare const useClasses_101: (classesProp?: Partial<Record<"text" | "button" | "icon" | "root" | "notSelected", string>>, addStatic?: boolean) => {
|
|
8374
8375
|
readonly classes: {
|
|
8375
8376
|
root: string;
|
|
8376
8377
|
icon: string;
|
|
@@ -8392,7 +8393,7 @@ declare const useClasses_102: (classesProp?: Partial<Record<"root" | "positionFi
|
|
|
8392
8393
|
readonly cx: (...args: any) => string;
|
|
8393
8394
|
};
|
|
8394
8395
|
|
|
8395
|
-
declare const useClasses_103: (classesProp?: Partial<Record<"content" | "header" | "
|
|
8396
|
+
declare const useClasses_103: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
|
|
8396
8397
|
readonly classes: {
|
|
8397
8398
|
root: string;
|
|
8398
8399
|
hidden: string;
|
|
@@ -8415,7 +8416,7 @@ declare const useClasses_104: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8415
8416
|
readonly cx: (...args: any) => string;
|
|
8416
8417
|
};
|
|
8417
8418
|
|
|
8418
|
-
declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "
|
|
8419
|
+
declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "error" | "labelContainer" | "rootDisabled" | "sliderBase" | "sliderContainer" | "trackDragging" | "trackStandBy" | "sliderRoot" | "rootRange" | "handleContainer" | "handle" | "handleContainerDisabled" | "handleHiddenContainer" | "labelIncluded" | "onlyInput" | "sliderTooltip", string>>, addStatic?: boolean) => {
|
|
8419
8420
|
readonly classes: {
|
|
8420
8421
|
sliderBase: string;
|
|
8421
8422
|
rootDisabled: string;
|
|
@@ -8454,7 +8455,7 @@ declare const useClasses_106: (classesProp?: Partial<Record<"root" | "anchorOrig
|
|
|
8454
8455
|
readonly cx: (...args: any) => string;
|
|
8455
8456
|
};
|
|
8456
8457
|
|
|
8457
|
-
declare const useClasses_107: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "
|
|
8458
|
+
declare const useClasses_107: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "root" | "success" | "error" | "message" | "action" | "messageText" | "iconVariant" | "messageSpan", string>>, addStatic?: boolean) => {
|
|
8458
8459
|
readonly classes: {
|
|
8459
8460
|
root: string;
|
|
8460
8461
|
success: string;
|
|
@@ -8481,7 +8482,7 @@ declare const useClasses_108: (classesProp?: Partial<Record<"snackItemRoot", str
|
|
|
8481
8482
|
readonly cx: (...args: any) => string;
|
|
8482
8483
|
};
|
|
8483
8484
|
|
|
8484
|
-
declare const useClasses_109: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "
|
|
8485
|
+
declare const useClasses_109: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "column" | "row" | "root" | "divider", string>>, addStatic?: boolean) => {
|
|
8485
8486
|
readonly classes: {
|
|
8486
8487
|
root: string;
|
|
8487
8488
|
column: string;
|
|
@@ -8507,7 +8508,7 @@ declare const useClasses_11: (classesProp?: Partial<Record<"root" | "gutter" | "
|
|
|
8507
8508
|
readonly cx: (...args: any) => string;
|
|
8508
8509
|
};
|
|
8509
8510
|
|
|
8510
|
-
declare const useClasses_110: (classesProp?: Partial<Record<"label" | "root" | "
|
|
8511
|
+
declare const useClasses_110: (classesProp?: Partial<Record<"label" | "root" | "error" | "switchContainer" | "invalidSwitch", string>>, addStatic?: boolean) => {
|
|
8511
8512
|
readonly classes: {
|
|
8512
8513
|
root: string;
|
|
8513
8514
|
label: string;
|
|
@@ -8527,7 +8528,7 @@ declare const useClasses_111: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8527
8528
|
readonly cx: (...args: any) => string;
|
|
8528
8529
|
};
|
|
8529
8530
|
|
|
8530
|
-
declare const useClasses_112: (classesProp?: Partial<Record<"content" | "header" | "
|
|
8531
|
+
declare const useClasses_112: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
|
|
8531
8532
|
readonly classes: {
|
|
8532
8533
|
root: string;
|
|
8533
8534
|
header: string;
|
|
@@ -8559,7 +8560,7 @@ declare const useClasses_114: (classesProp?: Partial<Record<"root" | "stickyHead
|
|
|
8559
8560
|
readonly cx: (...args: any) => string;
|
|
8560
8561
|
};
|
|
8561
8562
|
|
|
8562
|
-
declare const useClasses_115: (classesProp?: Partial<Record<"label" | "xs" | "sm" | "md" | "
|
|
8563
|
+
declare const useClasses_115: (classesProp?: Partial<Record<"label" | "xs" | "sm" | "md" | "button" | "icon" | "disabled" | "root" | "categorical" | "hasIcon" | "deleteIcon" | "clickable" | "selected" | "focusVisible" | "outlined" | "chipRoot" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
|
|
8563
8564
|
readonly classes: {
|
|
8564
8565
|
root: string;
|
|
8565
8566
|
hasIcon: string;
|
|
@@ -8598,7 +8599,7 @@ declare const useClasses_116: (classesProp?: Partial<Record<"root" | "floating"
|
|
|
8598
8599
|
readonly cx: (...args: any) => string;
|
|
8599
8600
|
};
|
|
8600
8601
|
|
|
8601
|
-
declare const useClasses_117: (classesProp?: Partial<Record<"
|
|
8602
|
+
declare const useClasses_117: (classesProp?: Partial<Record<"disabled" | "root" | "selected" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
8602
8603
|
readonly classes: {
|
|
8603
8604
|
root: string;
|
|
8604
8605
|
focusVisible: string;
|
|
@@ -8609,7 +8610,7 @@ declare const useClasses_117: (classesProp?: Partial<Record<"root" | "disabled"
|
|
|
8609
8610
|
readonly cx: (...args: any) => string;
|
|
8610
8611
|
};
|
|
8611
8612
|
|
|
8612
|
-
declare const useClasses_118: (classesProp?: Partial<Record<"label" | "
|
|
8613
|
+
declare const useClasses_118: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "error" | "tagsList" | "singleLine" | "inputExtension" | "input" | "readOnly" | "description" | "invalid" | "labelContainer" | "resizable" | "suggestionsContainer" | "suggestionList" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty", string>>, addStatic?: boolean) => {
|
|
8613
8614
|
readonly classes: {
|
|
8614
8615
|
listItemGutters: string;
|
|
8615
8616
|
listItemRoot: string;
|
|
@@ -8641,7 +8642,7 @@ declare const useClasses_118: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8641
8642
|
readonly cx: (...args: any) => string;
|
|
8642
8643
|
};
|
|
8643
8644
|
|
|
8644
|
-
declare const useClasses_119: (classesProp?: Partial<Record<"label" | "
|
|
8645
|
+
declare const useClasses_119: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "error" | "input" | "description" | "invalid" | "labelContainer" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
|
|
8645
8646
|
readonly classes: {
|
|
8646
8647
|
root: string;
|
|
8647
8648
|
disabled: string;
|
|
@@ -8660,7 +8661,7 @@ declare const useClasses_119: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8660
8661
|
readonly cx: (...args: any) => string;
|
|
8661
8662
|
};
|
|
8662
8663
|
|
|
8663
|
-
declare const useClasses_12: (classesProp?: Partial<Record<"
|
|
8664
|
+
declare const useClasses_12: (classesProp?: Partial<Record<"show" | "root" | "defaultIcon" | "warningText" | "topGutter" | "hideText" | "topBorder", string>>, addStatic?: boolean) => {
|
|
8664
8665
|
readonly classes: {
|
|
8665
8666
|
root: string;
|
|
8666
8667
|
defaultIcon: string;
|
|
@@ -8682,7 +8683,7 @@ declare const useClasses_120: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8682
8683
|
readonly cx: (...args: any) => string;
|
|
8683
8684
|
};
|
|
8684
8685
|
|
|
8685
|
-
declare const useClasses_121: (classesProp?: Partial<Record<"label" | "
|
|
8686
|
+
declare const useClasses_121: (classesProp?: Partial<Record<"label" | "icon" | "root" | "error" | "placeholder" | "description" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
|
|
8686
8687
|
readonly classes: {
|
|
8687
8688
|
root: string;
|
|
8688
8689
|
labelContainer: string;
|
|
@@ -8710,7 +8711,7 @@ declare const useClasses_122: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8710
8711
|
readonly cx: (...args: any) => string;
|
|
8711
8712
|
};
|
|
8712
8713
|
|
|
8713
|
-
declare const useClasses_123: (classesProp?: Partial<Record<"content" | "label" | "
|
|
8714
|
+
declare const useClasses_123: (classesProp?: Partial<Record<"content" | "label" | "expanded" | "disabled" | "root" | "selected" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
|
|
8714
8715
|
readonly classes: {
|
|
8715
8716
|
root: string;
|
|
8716
8717
|
group: string;
|
|
@@ -8726,7 +8727,7 @@ declare const useClasses_123: (classesProp?: Partial<Record<"content" | "label"
|
|
|
8726
8727
|
readonly cx: (...args: any) => string;
|
|
8727
8728
|
};
|
|
8728
8729
|
|
|
8729
|
-
declare const useClasses_124: (classesProp?: Partial<Record<"label" | "
|
|
8730
|
+
declare const useClasses_124: (classesProp?: Partial<Record<"label" | "expanded" | "disabled" | "root" | "selected" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
|
|
8730
8731
|
readonly classes: {
|
|
8731
8732
|
root: string;
|
|
8732
8733
|
expanded: string;
|
|
@@ -8763,7 +8764,7 @@ declare const useClasses_126: (classesProp?: Partial<Record<"root" | "title" | "
|
|
|
8763
8764
|
readonly cx: (...args: any) => string;
|
|
8764
8765
|
};
|
|
8765
8766
|
|
|
8766
|
-
declare const useClasses_127: (classesProp?: Partial<Record<"
|
|
8767
|
+
declare const useClasses_127: (classesProp?: Partial<Record<"hide" | "root", string>>, addStatic?: boolean) => {
|
|
8767
8768
|
readonly classes: {
|
|
8768
8769
|
root: string;
|
|
8769
8770
|
hide: string;
|
|
@@ -8795,7 +8796,7 @@ declare const useClasses_129: (classesProp?: Partial<Record<"root" | "list" | "p
|
|
|
8795
8796
|
readonly cx: (...args: any) => string;
|
|
8796
8797
|
};
|
|
8797
8798
|
|
|
8798
|
-
declare const useClasses_13: (classesProp?: Partial<Record<"label" | "
|
|
8799
|
+
declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "panel" | "popper" | "error" | "select" | "readOnly" | "description" | "invalid" | "labelContainer" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
|
|
8799
8800
|
readonly classes: {
|
|
8800
8801
|
root: string;
|
|
8801
8802
|
disabled: string;
|
|
@@ -8815,7 +8816,7 @@ declare const useClasses_13: (classesProp?: Partial<Record<"label" | "root" | "p
|
|
|
8815
8816
|
readonly cx: (...args: any) => string;
|
|
8816
8817
|
};
|
|
8817
8818
|
|
|
8818
|
-
declare const useClasses_130: (classesProp?: Partial<Record<"root" | "
|
|
8819
|
+
declare const useClasses_130: (classesProp?: Partial<Record<"root" | "listItemDisabled" | "listItemSelected" | "listItemFocus" | "listContainer" | "forwardButton", string>>, addStatic?: boolean) => {
|
|
8819
8820
|
readonly classes: {
|
|
8820
8821
|
root: string;
|
|
8821
8822
|
listItemSelected: string;
|
|
@@ -8836,7 +8837,7 @@ declare const useClasses_131: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8836
8837
|
readonly cx: (...args: any) => string;
|
|
8837
8838
|
};
|
|
8838
8839
|
|
|
8839
|
-
declare const useClasses_132: (classesProp?: Partial<Record<"content" | "label" | "link" | "
|
|
8840
|
+
declare const useClasses_132: (classesProp?: Partial<Record<"content" | "label" | "link" | "hide" | "expanded" | "icon" | "disabled" | "selected" | "selectable" | "unselectable" | "group" | "node" | "focused" | "expandable" | "labelIcon" | "collapsed" | "minimized" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
|
|
8840
8841
|
readonly classes: {
|
|
8841
8842
|
node: string;
|
|
8842
8843
|
content: string;
|
|
@@ -8862,7 +8863,7 @@ declare const useClasses_132: (classesProp?: Partial<Record<"content" | "label"
|
|
|
8862
8863
|
readonly cx: (...args: any) => string;
|
|
8863
8864
|
};
|
|
8864
8865
|
|
|
8865
|
-
declare const useClasses_133: (classesProp?: Partial<Record<"text" | "content" | "
|
|
8866
|
+
declare const useClasses_133: (classesProp?: Partial<Record<"text" | "content" | "circle" | "square" | "root" | "pulse" | "wave", string>>, addStatic?: boolean) => {
|
|
8866
8867
|
readonly classes: {
|
|
8867
8868
|
root: string;
|
|
8868
8869
|
content: string;
|
|
@@ -8876,7 +8877,7 @@ declare const useClasses_133: (classesProp?: Partial<Record<"text" | "content" |
|
|
|
8876
8877
|
readonly cx: (...args: any) => string;
|
|
8877
8878
|
};
|
|
8878
8879
|
|
|
8879
|
-
declare const useClasses_14: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "
|
|
8880
|
+
declare const useClasses_14: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "semantic" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "icon" | "disabled" | "root" | "contained" | "subtle" | "ghost" | "startIcon" | "endIcon" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
8880
8881
|
readonly classes: {
|
|
8881
8882
|
root: string;
|
|
8882
8883
|
startIcon: string;
|
|
@@ -8916,7 +8917,7 @@ declare const useClasses_16: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
8916
8917
|
readonly cx: (...args: any) => string;
|
|
8917
8918
|
};
|
|
8918
8919
|
|
|
8919
|
-
declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "
|
|
8920
|
+
declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "listbox" | "root" | "error" | "description" | "invalid", string>>, addStatic?: boolean) => {
|
|
8920
8921
|
readonly classes: {
|
|
8921
8922
|
root: string;
|
|
8922
8923
|
error: string;
|
|
@@ -8931,7 +8932,7 @@ declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizon
|
|
|
8931
8932
|
readonly cx: (...args: any) => string;
|
|
8932
8933
|
};
|
|
8933
8934
|
|
|
8934
|
-
declare const useClasses_18: (classesProp?: Partial<Record<"root" | "
|
|
8935
|
+
declare const useClasses_18: (classesProp?: Partial<Record<"root" | "popper" | "list" | "portal", string>>, addStatic?: boolean) => {
|
|
8935
8936
|
readonly classes: {
|
|
8936
8937
|
root: string;
|
|
8937
8938
|
list: string;
|
|
@@ -8942,7 +8943,7 @@ declare const useClasses_18: (classesProp?: Partial<Record<"root" | "list" | "po
|
|
|
8942
8943
|
readonly cx: (...args: any) => string;
|
|
8943
8944
|
};
|
|
8944
8945
|
|
|
8945
|
-
declare const useClasses_19: (classesProp?: Partial<Record<"
|
|
8946
|
+
declare const useClasses_19: (classesProp?: Partial<Record<"disabled" | "root" | "inputRoot" | "input" | "readOnly" | "invalid" | "focused" | "multiline" | "resizable" | "inputBorderContainer" | "inputRootInvalid" | "inputRootReadOnly" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "inputDisabled" | "inputReadOnly" | "inputResizable", string>>, addStatic?: boolean) => {
|
|
8946
8947
|
readonly classes: {
|
|
8947
8948
|
root: string;
|
|
8948
8949
|
disabled: string;
|
|
@@ -8967,7 +8968,7 @@ declare const useClasses_19: (classesProp?: Partial<Record<"root" | "invalid" |
|
|
|
8967
8968
|
readonly cx: (...args: any) => string;
|
|
8968
8969
|
};
|
|
8969
8970
|
|
|
8970
|
-
declare const useClasses_2: (classesProp?: Partial<Record<"display" | "title1" | "title2" | "title3" | "title4" | "label" | "body" | "captionLabel" | "caption1" | "caption2" | "5xlTitle" | "4xlTitle" | "xxlTitle" | "lTitle" | "sTitle" | "xxsTitle" | "sectionTitle" | "placeholderText" | "link" | "disabledText" | "selectedNavText" | "vizTextDisabled" | "xsInlineLink" | "
|
|
8971
|
+
declare const useClasses_2: (classesProp?: Partial<Record<"display" | "title1" | "title2" | "title3" | "title4" | "label" | "body" | "captionLabel" | "caption1" | "caption2" | "5xlTitle" | "4xlTitle" | "xxlTitle" | "lTitle" | "sTitle" | "xxsTitle" | "sectionTitle" | "placeholderText" | "link" | "disabledText" | "selectedNavText" | "vizTextDisabled" | "xsInlineLink" | "disabled" | "root" | "isLink" | "noWrap" | "3xlTitle" | "xlTitle" | "mTitle" | "xsTitle" | "highlightText" | "normalText" | "vizText", string>>, addStatic?: boolean) => {
|
|
8971
8972
|
readonly classes: {
|
|
8972
8973
|
root: string;
|
|
8973
8974
|
disabled: string;
|
|
@@ -9008,7 +9009,7 @@ declare const useClasses_2: (classesProp?: Partial<Record<"display" | "title1" |
|
|
|
9008
9009
|
readonly cx: (...args: any) => string;
|
|
9009
9010
|
};
|
|
9010
9011
|
|
|
9011
|
-
declare const useClasses_20: (classesProp?: Partial<Record<"container" | "header" | "
|
|
9012
|
+
declare const useClasses_20: (classesProp?: Partial<Record<"container" | "header" | "anchor" | "root" | "headerOpen" | "panel" | "placeholder" | "selection" | "arrowContainer" | "panelOpenedUp" | "panelOpenedDown" | "rootDisabled" | "headerOpenUp" | "headerOpenDown" | "headerDisabled" | "headerReadOnly" | "arrow" | "selectionDisabled" | "inputExtensionOpen" | "inputExtensionLeftPosition" | "inputExtensionOpenShadow" | "inputExtensionFloatRight" | "inputExtensionFloatLeft", string>>, addStatic?: boolean) => {
|
|
9012
9013
|
readonly classes: {
|
|
9013
9014
|
root: string;
|
|
9014
9015
|
rootDisabled: string;
|
|
@@ -9038,7 +9039,7 @@ declare const useClasses_20: (classesProp?: Partial<Record<"container" | "header
|
|
|
9038
9039
|
readonly cx: (...args: any) => string;
|
|
9039
9040
|
};
|
|
9040
9041
|
|
|
9041
|
-
declare const useClasses_21: (classesProp?: Partial<Record<"container" | "label" | "
|
|
9042
|
+
declare const useClasses_21: (classesProp?: Partial<Record<"container" | "label" | "hidden" | "disabled" | "root", string>>, addStatic?: boolean) => {
|
|
9042
9043
|
readonly classes: {
|
|
9043
9044
|
root: string;
|
|
9044
9045
|
hidden: string;
|
|
@@ -9058,7 +9059,7 @@ declare const useClasses_22: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
9058
9059
|
readonly cx: (...args: any) => string;
|
|
9059
9060
|
};
|
|
9060
9061
|
|
|
9061
|
-
declare const useClasses_23: (classesProp?: Partial<Record<"
|
|
9062
|
+
declare const useClasses_23: (classesProp?: Partial<Record<"button" | "root" | "actionContainer" | "dropDownMenu" | "dropDownMenuButton" | "dropDownMenuButtonSelected", string>>, addStatic?: boolean) => {
|
|
9062
9063
|
readonly classes: {
|
|
9063
9064
|
root: string;
|
|
9064
9065
|
button: string;
|
|
@@ -9071,7 +9072,7 @@ declare const useClasses_23: (classesProp?: Partial<Record<"root" | "button" | "
|
|
|
9071
9072
|
readonly cx: (...args: any) => string;
|
|
9072
9073
|
};
|
|
9073
9074
|
|
|
9074
|
-
declare const useClasses_24: (classesProp?: Partial<Record<"container" | "
|
|
9075
|
+
declare const useClasses_24: (classesProp?: Partial<Record<"container" | "icon" | "root" | "iconSelected" | "baseContainer" | "menuListRoot" | "menuList", string>>, addStatic?: boolean) => {
|
|
9075
9076
|
readonly classes: {
|
|
9076
9077
|
root: string;
|
|
9077
9078
|
container: string;
|
|
@@ -9085,7 +9086,7 @@ declare const useClasses_24: (classesProp?: Partial<Record<"container" | "root"
|
|
|
9085
9086
|
readonly cx: (...args: any) => string;
|
|
9086
9087
|
};
|
|
9087
9088
|
|
|
9088
|
-
declare const useClasses_25: (classesProp?: Partial<Record<"
|
|
9089
|
+
declare const useClasses_25: (classesProp?: Partial<Record<"open" | "single" | "root" | "title" | "item" | "titleAnchor" | "itemSelected" | "itemDisabled" | "itemTrigger" | "itemIcon" | "itemTitle" | "itemInfoIcon" | "actionsContainer" | "footerContainer" | "closed" | "dual" | "fluid", string>>, addStatic?: boolean) => {
|
|
9089
9090
|
readonly classes: {
|
|
9090
9091
|
root: string;
|
|
9091
9092
|
item: string;
|
|
@@ -9109,7 +9110,7 @@ declare const useClasses_25: (classesProp?: Partial<Record<"root" | "title" | "s
|
|
|
9109
9110
|
readonly cx: (...args: any) => string;
|
|
9110
9111
|
};
|
|
9111
9112
|
|
|
9112
|
-
declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "
|
|
9113
|
+
declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "icon" | "disabled" | "root" | "selected" | "title" | "iconUrl" | "iconInfo" | "titleAnchor", string>>, addStatic?: boolean) => {
|
|
9113
9114
|
readonly classes: {
|
|
9114
9115
|
root: string;
|
|
9115
9116
|
icon: string;
|
|
@@ -9125,7 +9126,7 @@ declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "root"
|
|
|
9125
9126
|
readonly cx: (...args: any) => string;
|
|
9126
9127
|
};
|
|
9127
9128
|
|
|
9128
|
-
declare const useClasses_27: (classesProp?: Partial<Record<"container" | "xs" | "sm" | "md" | "lg" | "xl" | "
|
|
9129
|
+
declare const useClasses_27: (classesProp?: Partial<Record<"container" | "xs" | "sm" | "md" | "lg" | "xl" | "square" | "root" | "img" | "status" | "fallback" | "avatar" | "badge" | "circular", string>>, addStatic?: boolean) => {
|
|
9129
9130
|
readonly classes: {
|
|
9130
9131
|
root: string;
|
|
9131
9132
|
img: string;
|
|
@@ -9146,7 +9147,7 @@ declare const useClasses_27: (classesProp?: Partial<Record<"container" | "xs" |
|
|
|
9146
9147
|
readonly cx: (...args: any) => string;
|
|
9147
9148
|
};
|
|
9148
9149
|
|
|
9149
|
-
declare const useClasses_28: (classesProp?: Partial<Record<"
|
|
9150
|
+
declare const useClasses_28: (classesProp?: Partial<Record<"column" | "row" | "root" | "highlight" | "toBack", string>>, addStatic?: boolean) => {
|
|
9150
9151
|
readonly classes: {
|
|
9151
9152
|
root: string;
|
|
9152
9153
|
row: string;
|
|
@@ -9174,7 +9175,7 @@ declare const useClasses_29: (classesProp?: Partial<Record<"root" | "badgePositi
|
|
|
9174
9175
|
readonly cx: (...args: any) => string;
|
|
9175
9176
|
};
|
|
9176
9177
|
|
|
9177
|
-
declare const useClasses_3: (classesProp?: Partial<Record<"
|
|
9178
|
+
declare const useClasses_3: (classesProp?: Partial<Record<"disabled" | "root", string>>, addStatic?: boolean) => {
|
|
9178
9179
|
readonly classes: {
|
|
9179
9180
|
root: string;
|
|
9180
9181
|
disabled: string;
|
|
@@ -9194,7 +9195,7 @@ declare const useClasses_30: (classesProp?: Partial<Record<"root" | "rootClosed"
|
|
|
9194
9195
|
readonly cx: (...args: any) => string;
|
|
9195
9196
|
};
|
|
9196
9197
|
|
|
9197
|
-
declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "
|
|
9198
|
+
declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "root" | "success" | "error" | "message" | "action" | "actionContainer" | "messageContainer" | "iconContainer" | "messageActions" | "closeAction" | "baseVariant" | "outContainer" | "actionsInnerContainer", string>>, addStatic?: boolean) => {
|
|
9198
9199
|
readonly classes: {
|
|
9199
9200
|
root: string;
|
|
9200
9201
|
success: string;
|
|
@@ -9218,7 +9219,7 @@ declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning"
|
|
|
9218
9219
|
readonly cx: (...args: any) => string;
|
|
9219
9220
|
};
|
|
9220
9221
|
|
|
9221
|
-
declare const useClasses_32: (classesProp?: Partial<Record<"
|
|
9222
|
+
declare const useClasses_32: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "root" | "checked" | "focusVisible" | "indeterminate", string>>, addStatic?: boolean) => {
|
|
9222
9223
|
readonly classes: {
|
|
9223
9224
|
root: string;
|
|
9224
9225
|
disabled: string;
|
|
@@ -9232,7 +9233,7 @@ declare const useClasses_32: (classesProp?: Partial<Record<"root" | "checked" |
|
|
|
9232
9233
|
readonly cx: (...args: any) => string;
|
|
9233
9234
|
};
|
|
9234
9235
|
|
|
9235
|
-
declare const useClasses_33: (classesProp?: Partial<Record<"
|
|
9236
|
+
declare const useClasses_33: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "root" | "checked" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
9236
9237
|
readonly classes: {
|
|
9237
9238
|
root: string;
|
|
9238
9239
|
disabled: string;
|
|
@@ -9245,7 +9246,7 @@ declare const useClasses_33: (classesProp?: Partial<Record<"root" | "checked" |
|
|
|
9245
9246
|
readonly cx: (...args: any) => string;
|
|
9246
9247
|
};
|
|
9247
9248
|
|
|
9248
|
-
declare const useClasses_34: (classesProp?: Partial<Record<"
|
|
9249
|
+
declare const useClasses_34: (classesProp?: Partial<Record<"disabled" | "root" | "checked" | "track" | "switch" | "readOnly" | "focusVisible" | "switchBase" | "thumb", string>>, addStatic?: boolean) => {
|
|
9249
9250
|
readonly classes: {
|
|
9250
9251
|
root: string;
|
|
9251
9252
|
switch: string;
|
|
@@ -9275,7 +9276,7 @@ declare const useClasses_35: (classesProp?: Partial<Record<"link" | "root" | "a"
|
|
|
9275
9276
|
readonly cx: (...args: any) => string;
|
|
9276
9277
|
};
|
|
9277
9278
|
|
|
9278
|
-
declare const useClasses_36: (classesProp?: Partial<Record<"
|
|
9279
|
+
declare const useClasses_36: (classesProp?: Partial<Record<"semantic" | "root" | "selectAll" | "actions" | "selectAllContainer" | "selectAllPages" | "divider", string>>, addStatic?: boolean) => {
|
|
9279
9280
|
readonly classes: {
|
|
9280
9281
|
root: string;
|
|
9281
9282
|
semantic: string;
|
|
@@ -9289,7 +9290,7 @@ declare const useClasses_36: (classesProp?: Partial<Record<"root" | "semantic" |
|
|
|
9289
9290
|
readonly cx: (...args: any) => string;
|
|
9290
9291
|
};
|
|
9291
9292
|
|
|
9292
|
-
declare const useClasses_37: (classesProp?: Partial<Record<"container" | "label" | "
|
|
9293
|
+
declare const useClasses_37: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "checkbox" | "disabled" | "root" | "checked" | "focusVisible" | "indeterminate" | "invalidContainer" | "invalidCheckbox", string>>, addStatic?: boolean) => {
|
|
9293
9294
|
readonly classes: {
|
|
9294
9295
|
root: string;
|
|
9295
9296
|
container: string;
|
|
@@ -9330,7 +9331,7 @@ declare const useClasses_39: (classesProp?: Partial<Record<"root" | "invalid" |
|
|
|
9330
9331
|
readonly cx: (...args: any) => string;
|
|
9331
9332
|
};
|
|
9332
9333
|
|
|
9333
|
-
declare const useClasses_4: (classesProp?: Partial<Record<"
|
|
9334
|
+
declare const useClasses_4: (classesProp?: Partial<Record<"disabled" | "root" | "selected" | "focus" | "focusDisabled" | "focused", string>>, addStatic?: boolean) => {
|
|
9334
9335
|
readonly classes: {
|
|
9335
9336
|
root: string;
|
|
9336
9337
|
selected: string;
|
|
@@ -9366,7 +9367,7 @@ declare const useClasses_40: (classesProp?: Partial<Record<"root" | "focusSelect
|
|
|
9366
9367
|
readonly cx: (...args: any) => string;
|
|
9367
9368
|
};
|
|
9368
9369
|
|
|
9369
|
-
declare const useClasses_41: (classesProp?: Partial<Record<"
|
|
9370
|
+
declare const useClasses_41: (classesProp?: Partial<Record<"icon" | "root" | "selected" | "selectable" | "semanticBar" | "semanticContainer", string>>, addStatic?: boolean) => {
|
|
9370
9371
|
readonly classes: {
|
|
9371
9372
|
root: string;
|
|
9372
9373
|
selected: string;
|
|
@@ -9379,7 +9380,7 @@ declare const useClasses_41: (classesProp?: Partial<Record<"root" | "icon" | "se
|
|
|
9379
9380
|
readonly cx: (...args: any) => string;
|
|
9380
9381
|
};
|
|
9381
9382
|
|
|
9382
|
-
declare const useClasses_42: (classesProp?: Partial<Record<"content" | "root" | "
|
|
9383
|
+
declare const useClasses_42: (classesProp?: Partial<Record<"content" | "root" | "action" | "title" | "titleShort" | "subheader", string>>, addStatic?: boolean) => {
|
|
9383
9384
|
readonly classes: {
|
|
9384
9385
|
root: string;
|
|
9385
9386
|
titleShort: string;
|
|
@@ -9409,7 +9410,7 @@ declare const useClasses_44: (classesProp?: Partial<Record<"root" | "media", str
|
|
|
9409
9410
|
readonly cx: (...args: any) => string;
|
|
9410
9411
|
};
|
|
9411
9412
|
|
|
9412
|
-
declare const useClasses_45: (classesProp?: Partial<Record<"xs" | "
|
|
9413
|
+
declare const useClasses_45: (classesProp?: Partial<Record<"xs" | "dot" | "root" | "panel" | "main" | "title" | "controls" | "counter" | "actions" | "fullscreen" | "closeButton" | "mainContainer" | "pageCounter" | "mainXs" | "mainFullscreen" | "counterContainer" | "slideControls" | "slidesViewport" | "slidesContainer" | "dots" | "dotsXs" | "dotSelected" | "thumbnail" | "thumbnailSelected", string>>, addStatic?: boolean) => {
|
|
9413
9414
|
readonly classes: {
|
|
9414
9415
|
root: string;
|
|
9415
9416
|
xs: string;
|
|
@@ -9449,7 +9450,7 @@ declare const useClasses_46: (classesProp?: Partial<Record<"image" | "slide", st
|
|
|
9449
9450
|
readonly cx: (...args: any) => string;
|
|
9450
9451
|
};
|
|
9451
9452
|
|
|
9452
|
-
declare const useClasses_47: (classesProp?: Partial<Record<"label" | "
|
|
9453
|
+
declare const useClasses_47: (classesProp?: Partial<Record<"label" | "icon" | "root" | "error" | "inputRoot" | "inputExtension" | "adornmentsBox" | "input" | "description" | "adornmentButton" | "labelContainer" | "inputBorderContainer" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList", string>>, addStatic?: boolean) => {
|
|
9453
9454
|
readonly classes: {
|
|
9454
9455
|
root: string;
|
|
9455
9456
|
labelContainer: string;
|
|
@@ -9475,7 +9476,7 @@ declare const useClasses_47: (classesProp?: Partial<Record<"label" | "root" | "i
|
|
|
9475
9476
|
readonly cx: (...args: any) => string;
|
|
9476
9477
|
};
|
|
9477
9478
|
|
|
9478
|
-
declare const useClasses_48: (classesProp?: Partial<Record<"
|
|
9479
|
+
declare const useClasses_48: (classesProp?: Partial<Record<"icon" | "root" | "iconContainer" | "pageSizeOptions" | "pageSizeHeader" | "pageSizeRoot" | "pageSizeTextContainer" | "totalPagesTextContainer" | "pageSizeOptionsSelect" | "pageNavigator" | "pageInfo" | "pageJump" | "pageSizeInput" | "pageSizeInputRoot" | "pageSizeInputContainer", string>>, addStatic?: boolean) => {
|
|
9479
9480
|
readonly classes: {
|
|
9480
9481
|
root: string;
|
|
9481
9482
|
pageSizeOptions: string;
|
|
@@ -9497,7 +9498,7 @@ declare const useClasses_48: (classesProp?: Partial<Record<"root" | "icon" | "pa
|
|
|
9497
9498
|
readonly cx: (...args: any) => string;
|
|
9498
9499
|
};
|
|
9499
9500
|
|
|
9500
|
-
declare const useClasses_49: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "
|
|
9501
|
+
declare const useClasses_49: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "error" | "group" | "invalid" | "selectAll", string>>, addStatic?: boolean) => {
|
|
9501
9502
|
readonly classes: {
|
|
9502
9503
|
root: string;
|
|
9503
9504
|
label: string;
|
|
@@ -9520,7 +9521,7 @@ declare const useClasses_5: (classesProp?: Partial<Record<"root", string>>, addS
|
|
|
9520
9521
|
readonly cx: (...args: any) => string;
|
|
9521
9522
|
};
|
|
9522
9523
|
|
|
9523
|
-
declare const useClasses_50: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "panel" | "
|
|
9524
|
+
declare const useClasses_50: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "panel" | "description" | "labelContainer" | "headerColorValue" | "headerColorIcon" | "colorPickerIcon" | "recommendedColorsRoot" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
|
|
9524
9525
|
readonly classes: {
|
|
9525
9526
|
root: string;
|
|
9526
9527
|
labelContainer: string;
|
|
@@ -9540,7 +9541,7 @@ declare const useClasses_50: (classesProp?: Partial<Record<"label" | "colorPicke
|
|
|
9540
9541
|
readonly cx: (...args: any) => string;
|
|
9541
9542
|
};
|
|
9542
9543
|
|
|
9543
|
-
declare const useClasses_51: (classesProp?: Partial<Record<"
|
|
9544
|
+
declare const useClasses_51: (classesProp?: Partial<Record<"fixed" | "root" | "disableGutters" | "maxWidthXs" | "maxWidthSm" | "maxWidthMd" | "maxWidthLg" | "maxWidthXl", string>>, addStatic?: boolean) => {
|
|
9544
9545
|
readonly classes: {
|
|
9545
9546
|
root: string;
|
|
9546
9547
|
disableGutters: string;
|
|
@@ -9566,7 +9567,7 @@ declare const useClasses_52: (classesProp?: Partial<Record<"root" | "section" |
|
|
|
9566
9567
|
readonly cx: (...args: any) => string;
|
|
9567
9568
|
};
|
|
9568
9569
|
|
|
9569
|
-
declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "
|
|
9570
|
+
declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "footer" | "head" | "resizable" | "sorted" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "variantList" | "variantListHead" | "variantListactions" | "variantListcheckbox" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing", string>>, addStatic?: boolean) => {
|
|
9570
9571
|
readonly classes: {
|
|
9571
9572
|
root: string;
|
|
9572
9573
|
head: string;
|
|
@@ -9597,7 +9598,7 @@ declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "he
|
|
|
9597
9598
|
readonly cx: (...args: any) => string;
|
|
9598
9599
|
};
|
|
9599
9600
|
|
|
9600
|
-
declare const useClasses_54: (classesProp?: Partial<Record<"body" | "
|
|
9601
|
+
declare const useClasses_54: (classesProp?: Partial<Record<"body" | "expanded" | "root" | "selected" | "footer" | "head" | "variantList" | "variantListHead" | "striped" | "hover", string>>, addStatic?: boolean) => {
|
|
9601
9602
|
readonly classes: {
|
|
9602
9603
|
root: string;
|
|
9603
9604
|
head: string;
|
|
@@ -9614,7 +9615,7 @@ declare const useClasses_54: (classesProp?: Partial<Record<"body" | "root" | "se
|
|
|
9614
9615
|
readonly cx: (...args: any) => string;
|
|
9615
9616
|
};
|
|
9616
9617
|
|
|
9617
|
-
declare const useClasses_55: (classesProp?: Partial<Record<"body" | "
|
|
9618
|
+
declare const useClasses_55: (classesProp?: Partial<Record<"body" | "resizer" | "root" | "footer" | "head" | "resizable" | "sorted" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "variantList" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing" | "headerContent" | "headerText" | "headerParagraph" | "sortableHeaderText" | "sortable" | "sortButton" | "sortIcon" | "alignFlexLeft" | "alignFlexRight" | "alignFlexCenter" | "alignFlexJustify", string>>, addStatic?: boolean) => {
|
|
9618
9619
|
readonly classes: {
|
|
9619
9620
|
root: string;
|
|
9620
9621
|
head: string;
|
|
@@ -9682,7 +9683,7 @@ declare const useClasses_58: (classesProp?: Partial<Record<"root" | "sortDropdow
|
|
|
9682
9683
|
readonly cx: (...args: any) => string;
|
|
9683
9684
|
};
|
|
9684
9685
|
|
|
9685
|
-
declare const useClasses_59: (classesProp?: Partial<Record<"label" | "
|
|
9686
|
+
declare const useClasses_59: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "error" | "placeholder" | "readOnly" | "description" | "labelContainer" | "dropdown" | "arrow" | "selectionDisabled" | "placeholderClosed" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "dropdownListContainer" | "rootList", string>>, addStatic?: boolean) => {
|
|
9686
9687
|
readonly classes: {
|
|
9687
9688
|
root: string;
|
|
9688
9689
|
labelContainer: string;
|
|
@@ -9706,17 +9707,17 @@ declare const useClasses_59: (classesProp?: Partial<Record<"label" | "root" | "p
|
|
|
9706
9707
|
readonly cx: (...args: any) => string;
|
|
9707
9708
|
};
|
|
9708
9709
|
|
|
9709
|
-
declare const useClasses_6: (classesProp?: Partial<Record<"
|
|
9710
|
+
declare const useClasses_6: (classesProp?: Partial<Record<"condensed" | "disabled" | "root" | "selected" | "focus" | "interactive" | "gutters" | "startAdornment" | "endAdornment" | "withStartAdornment" | "withEndAdornment", string>>, addStatic?: boolean) => {
|
|
9710
9711
|
readonly classes: {
|
|
9711
9712
|
root: string;
|
|
9712
9713
|
focus: string;
|
|
9713
|
-
startAdornment: string;
|
|
9714
|
-
endAdornment: string;
|
|
9715
9714
|
gutters: string;
|
|
9716
9715
|
condensed: string;
|
|
9717
9716
|
interactive: string;
|
|
9718
9717
|
selected: string;
|
|
9719
9718
|
disabled: string;
|
|
9719
|
+
startAdornment: string;
|
|
9720
|
+
endAdornment: string;
|
|
9720
9721
|
withStartAdornment: string;
|
|
9721
9722
|
withEndAdornment: string;
|
|
9722
9723
|
};
|
|
@@ -9738,7 +9739,7 @@ declare const useClasses_60: (classesProp?: Partial<Record<"listContainer" | "vi
|
|
|
9738
9739
|
readonly cx: (...args: any) => string;
|
|
9739
9740
|
};
|
|
9740
9741
|
|
|
9741
|
-
declare const useClasses_61: (classesProp?: Partial<Record<"container" | "label" | "
|
|
9742
|
+
declare const useClasses_61: (classesProp?: Partial<Record<"container" | "label" | "icon" | "root" | "panel" | "error" | "action" | "description" | "labelContainer" | "dropdown" | "actionContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "leftContainer" | "rightContainer" | "inputText" | "dateText", string>>, addStatic?: boolean) => {
|
|
9742
9743
|
readonly classes: {
|
|
9743
9744
|
root: string;
|
|
9744
9745
|
actionContainer: string;
|
|
@@ -9762,7 +9763,7 @@ declare const useClasses_61: (classesProp?: Partial<Record<"container" | "label"
|
|
|
9762
9763
|
readonly cx: (...args: any) => string;
|
|
9763
9764
|
};
|
|
9764
9765
|
|
|
9765
|
-
declare const useClasses_62: (classesProp?: Partial<Record<"root" | "
|
|
9766
|
+
declare const useClasses_62: (classesProp?: Partial<Record<"root" | "messageContainer" | "fullscreen" | "textWithIcon" | "titleText", string>>, addStatic?: boolean) => {
|
|
9766
9767
|
readonly classes: {
|
|
9767
9768
|
root: string;
|
|
9768
9769
|
fullscreen: string;
|
|
@@ -9793,7 +9794,7 @@ declare const useClasses_64: (classesProp?: Partial<Record<"root" | "spacing" |
|
|
|
9793
9794
|
readonly cx: (...args: any) => string;
|
|
9794
9795
|
};
|
|
9795
9796
|
|
|
9796
|
-
declare const useClasses_65: (classesProp?: Partial<Record<"warning" | "background" | "root" | "
|
|
9797
|
+
declare const useClasses_65: (classesProp?: Partial<Record<"warning" | "background" | "root" | "success" | "error" | "fullscreen" | "closeButton" | "paper" | "fullHeight" | "statusBar", string>>, addStatic?: boolean) => {
|
|
9797
9798
|
readonly classes: {
|
|
9798
9799
|
root: string;
|
|
9799
9800
|
background: string;
|
|
@@ -9810,7 +9811,7 @@ declare const useClasses_65: (classesProp?: Partial<Record<"warning" | "backgrou
|
|
|
9810
9811
|
readonly cx: (...args: any) => string;
|
|
9811
9812
|
};
|
|
9812
9813
|
|
|
9813
|
-
declare const useClasses_66: (classesProp?: Partial<Record<"horizontal" | "
|
|
9814
|
+
declare const useClasses_66: (classesProp?: Partial<Record<"horizontal" | "radio" | "icon" | "root" | "radioRoot", string>>, addStatic?: boolean) => {
|
|
9814
9815
|
readonly classes: {
|
|
9815
9816
|
root: string;
|
|
9816
9817
|
horizontal: string;
|
|
@@ -9822,7 +9823,7 @@ declare const useClasses_66: (classesProp?: Partial<Record<"horizontal" | "root"
|
|
|
9822
9823
|
readonly cx: (...args: any) => string;
|
|
9823
9824
|
};
|
|
9824
9825
|
|
|
9825
|
-
declare const useClasses_67: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "
|
|
9826
|
+
declare const useClasses_67: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "error" | "group" | "invalid", string>>, addStatic?: boolean) => {
|
|
9826
9827
|
readonly classes: {
|
|
9827
9828
|
root: string;
|
|
9828
9829
|
label: string;
|
|
@@ -9836,7 +9837,7 @@ declare const useClasses_67: (classesProp?: Partial<Record<"vertical" | "horizon
|
|
|
9836
9837
|
readonly cx: (...args: any) => string;
|
|
9837
9838
|
};
|
|
9838
9839
|
|
|
9839
|
-
declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root" | "
|
|
9840
|
+
declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root" | "closeButton" | "paper", string>>, addStatic?: boolean) => {
|
|
9840
9841
|
readonly classes: {
|
|
9841
9842
|
root: string;
|
|
9842
9843
|
paper: string;
|
|
@@ -9847,7 +9848,7 @@ declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root"
|
|
|
9847
9848
|
readonly cx: (...args: any) => string;
|
|
9848
9849
|
};
|
|
9849
9850
|
|
|
9850
|
-
declare const useClasses_69: (classesProp?: Partial<Record<"container" | "root" | "
|
|
9851
|
+
declare const useClasses_69: (classesProp?: Partial<Record<"container" | "root" | "actionContainer" | "messageContainer" | "iconContainer" | "containerMessageOnly" | "titleContainer" | "textContainer", string>>, addStatic?: boolean) => {
|
|
9851
9852
|
readonly classes: {
|
|
9852
9853
|
root: string;
|
|
9853
9854
|
container: string;
|
|
@@ -9882,7 +9883,7 @@ declare const useClasses_70: (classesProp?: Partial<Record<"overlay" | "previewB
|
|
|
9882
9883
|
readonly cx: (...args: any) => string;
|
|
9883
9884
|
};
|
|
9884
9885
|
|
|
9885
|
-
declare const useClasses_71: (classesProp?: Partial<Record<"
|
|
9886
|
+
declare const useClasses_71: (classesProp?: Partial<Record<"icon" | "progressbar" | "root" | "removeButton" | "progressbarContainer" | "progressbarBack" | "nameText" | "progressTextContainer" | "previewContainer" | "fail", string>>, addStatic?: boolean) => {
|
|
9886
9887
|
readonly classes: {
|
|
9887
9888
|
root: string;
|
|
9888
9889
|
progressbar: string;
|
|
@@ -9907,7 +9908,7 @@ declare const useClasses_72: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
9907
9908
|
readonly cx: (...args: any) => string;
|
|
9908
9909
|
};
|
|
9909
9910
|
|
|
9910
|
-
declare const useClasses_73: (classesProp?: Partial<Record<"dropZoneContainer" | "
|
|
9911
|
+
declare const useClasses_73: (classesProp?: Partial<Record<"dropZoneContainer" | "dropZoneLabelsGroup" | "dragAction" | "dropZoneContainerDisabled" | "inputArea" | "dropArea" | "dropZoneAreaLabels" | "dropZoneAreaIcon" | "dropZoneLabel" | "dragText" | "selectFilesText", string>>, addStatic?: boolean) => {
|
|
9911
9912
|
readonly classes: {
|
|
9912
9913
|
dropZoneContainer: string;
|
|
9913
9914
|
dropZoneLabelsGroup: string;
|
|
@@ -9937,7 +9938,7 @@ declare const useClasses_74: (classesProp?: Partial<Record<"label" | "root" | "e
|
|
|
9937
9938
|
readonly cx: (...args: any) => string;
|
|
9938
9939
|
};
|
|
9939
9940
|
|
|
9940
|
-
declare const useClasses_75: (classesProp?: Partial<Record<"space" | "header" | "root" | "panel" | "
|
|
9941
|
+
declare const useClasses_75: (classesProp?: Partial<Record<"space" | "header" | "root" | "panel" | "dropdown" | "baseDropdownSelection" | "rightSidePanel" | "leftSidePanel" | "actionBar" | "applyButton", string>>, addStatic?: boolean) => {
|
|
9941
9942
|
readonly classes: {
|
|
9942
9943
|
dropdown: string;
|
|
9943
9944
|
panel: string;
|
|
@@ -9954,7 +9955,7 @@ declare const useClasses_75: (classesProp?: Partial<Record<"space" | "header" |
|
|
|
9954
9955
|
readonly cx: (...args: any) => string;
|
|
9955
9956
|
};
|
|
9956
9957
|
|
|
9957
|
-
declare const useClasses_76: (classesProp?: Partial<Record<"name" | "small" | "
|
|
9958
|
+
declare const useClasses_76: (classesProp?: Partial<Record<"name" | "small" | "separator" | "root" | "rightContainer" | "copyright", string>>, addStatic?: boolean) => {
|
|
9958
9959
|
readonly classes: {
|
|
9959
9960
|
root: string;
|
|
9960
9961
|
name: string;
|
|
@@ -9967,7 +9968,7 @@ declare const useClasses_76: (classesProp?: Partial<Record<"name" | "small" | "r
|
|
|
9967
9968
|
readonly cx: (...args: any) => string;
|
|
9968
9969
|
};
|
|
9969
9970
|
|
|
9970
|
-
declare const useClasses_77: (classesProp?: Partial<Record<"name" | "root" | "section" | "
|
|
9971
|
+
declare const useClasses_77: (classesProp?: Partial<Record<"name" | "root" | "section" | "actions" | "wrapper" | "positionSticky" | "positionFixed" | "global" | "globalSectionArea" | "globalWrapperComplement" | "backButton" | "sectionName", string>>, addStatic?: boolean) => {
|
|
9971
9972
|
readonly classes: {
|
|
9972
9973
|
root: string;
|
|
9973
9974
|
positionSticky: string;
|
|
@@ -10026,7 +10027,7 @@ declare const useClasses_78: (classesProp?: Partial<Record<"container" | "root"
|
|
|
10026
10027
|
readonly cx: (...args: any) => string;
|
|
10027
10028
|
};
|
|
10028
10029
|
|
|
10029
|
-
declare const useClasses_79: (classesProp?: Partial<Record<"backgroundColor" | "header" | "
|
|
10030
|
+
declare const useClasses_79: (classesProp?: Partial<Record<"backgroundColor" | "header" | "fixed" | "root", string>>, addStatic?: boolean) => {
|
|
10030
10031
|
readonly classes: {
|
|
10031
10032
|
root: string;
|
|
10032
10033
|
header: string;
|
|
@@ -10037,7 +10038,7 @@ declare const useClasses_79: (classesProp?: Partial<Record<"backgroundColor" | "
|
|
|
10037
10038
|
readonly cx: (...args: any) => string;
|
|
10038
10039
|
};
|
|
10039
10040
|
|
|
10040
|
-
declare const useClasses_8: (classesProp?: Partial<Record<"
|
|
10041
|
+
declare const useClasses_8: (classesProp?: Partial<Record<"icon" | "disabled" | "root" | "adornment" | "adornmentIcon" | "hideIcon" | "adornmentButton", string>>, addStatic?: boolean) => {
|
|
10041
10042
|
readonly classes: {
|
|
10042
10043
|
root: string;
|
|
10043
10044
|
icon: string;
|
|
@@ -10059,7 +10060,7 @@ declare const useClasses_80: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
10059
10060
|
readonly cx: (...args: any) => string;
|
|
10060
10061
|
};
|
|
10061
10062
|
|
|
10062
|
-
declare const useClasses_81: (classesProp?: Partial<Record<"
|
|
10063
|
+
declare const useClasses_81: (classesProp?: Partial<Record<"separator" | "root" | "brandName", string>>, addStatic?: boolean) => {
|
|
10063
10064
|
readonly classes: {
|
|
10064
10065
|
root: string;
|
|
10065
10066
|
separator: string;
|
|
@@ -10069,7 +10070,7 @@ declare const useClasses_81: (classesProp?: Partial<Record<"root" | "separator"
|
|
|
10069
10070
|
readonly cx: (...args: any) => string;
|
|
10070
10071
|
};
|
|
10071
10072
|
|
|
10072
|
-
declare const useClasses_82: (classesProp?: Partial<Record<"
|
|
10073
|
+
declare const useClasses_82: (classesProp?: Partial<Record<"hidden" | "menu" | "menubar" | "active" | "root" | "list", string>>, addStatic?: boolean) => {
|
|
10073
10074
|
readonly classes: {
|
|
10074
10075
|
root: string;
|
|
10075
10076
|
menu: string;
|
|
@@ -10082,7 +10083,7 @@ declare const useClasses_82: (classesProp?: Partial<Record<"root" | "active" | "
|
|
|
10082
10083
|
readonly cx: (...args: any) => string;
|
|
10083
10084
|
};
|
|
10084
10085
|
|
|
10085
|
-
declare const useClasses_83: (classesProp?: Partial<Record<"link" | "
|
|
10086
|
+
declare const useClasses_83: (classesProp?: Partial<Record<"link" | "button" | "menu" | "menubar" | "root" | "selected" | "item", string>>, addStatic?: boolean) => {
|
|
10086
10087
|
readonly classes: {
|
|
10087
10088
|
root: string;
|
|
10088
10089
|
menu: string;
|
|
@@ -10104,7 +10105,7 @@ declare const useClasses_84: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
10104
10105
|
readonly cx: (...args: any) => string;
|
|
10105
10106
|
};
|
|
10106
10107
|
|
|
10107
|
-
declare const useClasses_85: (classesProp?: Partial<Record<"text" | "
|
|
10108
|
+
declare const useClasses_85: (classesProp?: Partial<Record<"text" | "button" | "icon" | "root" | "inputRoot" | "input" | "inputBorderContainer" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
|
|
10108
10109
|
readonly classes: {
|
|
10109
10110
|
root: string;
|
|
10110
10111
|
inputBorderContainer: string;
|
|
@@ -10146,7 +10147,7 @@ declare const useClasses_87: (classesProp?: Partial<Record<"a", string>>, addSta
|
|
|
10146
10147
|
readonly cx: (...args: any) => string;
|
|
10147
10148
|
};
|
|
10148
10149
|
|
|
10149
|
-
declare const useClasses_88: (classesProp?: Partial<Record<"link" | "root" | "
|
|
10150
|
+
declare const useClasses_88: (classesProp?: Partial<Record<"link" | "root" | "item" | "virtualizedRoot" | "selectorRoot" | "selectorContainer" | "box" | "truncate" | "itemSelector" | "selectAllSelector", string>>, addStatic?: boolean) => {
|
|
10150
10151
|
readonly classes: {
|
|
10151
10152
|
root: string;
|
|
10152
10153
|
virtualizedRoot: string;
|
|
@@ -10163,7 +10164,7 @@ declare const useClasses_88: (classesProp?: Partial<Record<"link" | "root" | "it
|
|
|
10163
10164
|
readonly cx: (...args: any) => string;
|
|
10164
10165
|
};
|
|
10165
10166
|
|
|
10166
|
-
declare const useClasses_89: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "
|
|
10167
|
+
declare const useClasses_89: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "hidden" | "root" | "loadingBar" | "blur" | "barContainer" | "regular" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
|
|
10167
10168
|
readonly classes: {
|
|
10168
10169
|
root: string;
|
|
10169
10170
|
barContainer: string;
|
|
@@ -10207,7 +10208,7 @@ declare const useClasses_91: (classesProp?: Partial<Record<"root" | "formContain
|
|
|
10207
10208
|
readonly cx: (...args: any) => string;
|
|
10208
10209
|
};
|
|
10209
10210
|
|
|
10210
|
-
declare const useClasses_92: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "vertical" | "
|
|
10211
|
+
declare const useClasses_92: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "vertical" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "button" | "multiple" | "root" | "splitGroup" | "selected" | "splitGroupDisabled" | "firstButton" | "lastButton", string>>, addStatic?: boolean) => {
|
|
10211
10212
|
readonly classes: {
|
|
10212
10213
|
root: string;
|
|
10213
10214
|
multiple: string;
|
|
@@ -10239,7 +10240,7 @@ declare const useClasses_93: (classesProp?: Partial<Record<"tooltipData" | "tool
|
|
|
10239
10240
|
readonly cx: (...args: any) => string;
|
|
10240
10241
|
};
|
|
10241
10242
|
|
|
10242
|
-
declare const useClasses_94: (classesProp?: Partial<Record<"color" | "
|
|
10243
|
+
declare const useClasses_94: (classesProp?: Partial<Record<"color" | "separator" | "tooltip" | "root" | "popper" | "values" | "title" | "tooltipMulti" | "valuesContainer" | "separatorColor" | "valueWrapper", string>>, addStatic?: boolean) => {
|
|
10243
10244
|
readonly classes: {
|
|
10244
10245
|
root: string;
|
|
10245
10246
|
tooltip: string;
|
|
@@ -10265,7 +10266,7 @@ declare const useClasses_95: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
10265
10266
|
readonly cx: (...args: any) => string;
|
|
10266
10267
|
};
|
|
10267
10268
|
|
|
10268
|
-
declare const useClasses_96: (classesProp?: Partial<Record<"
|
|
10269
|
+
declare const useClasses_96: (classesProp?: Partial<Record<"progress" | "root" | "progressBar" | "progressBarLabel" | "progressContainer" | "progressDone" | "progressBarContainer" | "progressError", string>>, addStatic?: boolean) => {
|
|
10269
10270
|
readonly classes: {
|
|
10270
10271
|
root: string;
|
|
10271
10272
|
progress: string;
|
|
@@ -10280,7 +10281,7 @@ declare const useClasses_96: (classesProp?: Partial<Record<"root" | "progress" |
|
|
|
10280
10281
|
readonly cx: (...args: any) => string;
|
|
10281
10282
|
};
|
|
10282
10283
|
|
|
10283
|
-
declare const useClasses_97: (classesProp?: Partial<Record<"root" | "
|
|
10284
|
+
declare const useClasses_97: (classesProp?: Partial<Record<"root" | "removeButton" | "combinator" | "topGroup" | "subGroup" | "topCombinator" | "combinatorButton" | "topRemoveButton" | "topRemoveButtonDisabled" | "rulesContainer" | "subRulesContainer" | "actionButtonContainer" | "topActionButtonContainer" | "topRulesContainer" | "buttonBackground" | "createConditionButton" | "createGroupButton", string>>, addStatic?: boolean) => {
|
|
10284
10285
|
readonly classes: {
|
|
10285
10286
|
root: string;
|
|
10286
10287
|
topGroup: string;
|
|
@@ -10304,7 +10305,7 @@ declare const useClasses_97: (classesProp?: Partial<Record<"root" | "topGroup" |
|
|
|
10304
10305
|
readonly cx: (...args: any) => string;
|
|
10305
10306
|
};
|
|
10306
10307
|
|
|
10307
|
-
declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label" | "
|
|
10308
|
+
declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "radio" | "disabled" | "root" | "checked" | "focusVisible" | "invalidContainer" | "invalidRadio", string>>, addStatic?: boolean) => {
|
|
10308
10309
|
readonly classes: {
|
|
10309
10310
|
root: string;
|
|
10310
10311
|
container: string;
|
|
@@ -10321,7 +10322,7 @@ declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label"
|
|
|
10321
10322
|
readonly cx: (...args: any) => string;
|
|
10322
10323
|
};
|
|
10323
10324
|
|
|
10324
|
-
declare const useClasses_99: (classesProp?: Partial<Record<"text" | "
|
|
10325
|
+
declare const useClasses_99: (classesProp?: Partial<Record<"text" | "button" | "root" | "selected" | "bullet" | "bulletSelected", string>>, addStatic?: boolean) => {
|
|
10325
10326
|
readonly classes: {
|
|
10326
10327
|
root: string;
|
|
10327
10328
|
button: string;
|
|
@@ -10761,7 +10762,14 @@ declare interface UseTreeViewSelectionParameters<Multiple extends boolean | unde
|
|
|
10761
10762
|
onNodeSelect?: (event: React_2.SyntheticEvent, nodeIds: Exclude<TreeViewSelectionValue<Multiple>, null>) => void;
|
|
10762
10763
|
}
|
|
10763
10764
|
|
|
10764
|
-
export declare const useUniqueId: (deterministicId?: string,
|
|
10765
|
+
export declare const useUniqueId: (deterministicId?: string,
|
|
10766
|
+
/**
|
|
10767
|
+
* @deprecated
|
|
10768
|
+
* Users should pick between a fully deterministic or fully generated id
|
|
10769
|
+
* @example
|
|
10770
|
+
* useUniqueId(setId(idPrefix, deterministicId))
|
|
10771
|
+
* */
|
|
10772
|
+
idPrefix?: string) => string;
|
|
10765
10773
|
|
|
10766
10774
|
export declare const useWidth: () => Breakpoint_2;
|
|
10767
10775
|
|
|
@@ -10842,15 +10850,3 @@ export declare const warningTextClasses: {
|
|
|
10842
10850
|
};
|
|
10843
10851
|
|
|
10844
10852
|
export { }
|
|
10845
|
-
|
|
10846
|
-
declare namespace _default {
|
|
10847
|
-
function process(sourceText: any, sourcePath: any): {
|
|
10848
|
-
code: string;
|
|
10849
|
-
};
|
|
10850
|
-
}
|
|
10851
|
-
|
|
10852
|
-
declare namespace _default {
|
|
10853
|
-
function process(sourceText: any, sourcePath: any): {
|
|
10854
|
-
code: string;
|
|
10855
|
-
};
|
|
10856
|
-
}
|