@hitachivantara/uikit-react-core 5.100.0 → 5.101.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/Dropdown/Dropdown.cjs +1 -0
- package/dist/cjs/Header/Navigation/MenuBar/Bar.cjs +1 -2
- package/dist/cjs/Header/Navigation/MenuBar/Bar.styles.cjs +2 -2
- package/dist/cjs/Pagination/Pagination.styles.cjs +8 -1
- package/dist/cjs/StatusIcon/StatusIcon.styles.cjs +1 -1
- package/dist/cjs/Table/TableHeader/TableHeader.styles.cjs +2 -0
- package/dist/cjs/Table/renderers/renderers.cjs +1 -2
- package/dist/cjs/Tag/Tag.cjs +9 -1
- package/dist/cjs/Tag/Tag.styles.cjs +4 -3
- package/dist/cjs/icons.cjs +1 -1
- package/dist/cjs/themes/ds3.cjs +0 -3
- package/dist/cjs/themes/ds5.cjs +96 -14
- package/dist/cjs/themes/pentahoPlus.cjs +1 -3
- package/dist/esm/Dropdown/Dropdown.js +1 -0
- package/dist/esm/Header/Navigation/MenuBar/Bar.js +1 -2
- package/dist/esm/Header/Navigation/MenuBar/Bar.styles.js +2 -2
- package/dist/esm/Pagination/Pagination.styles.js +8 -1
- package/dist/esm/StatusIcon/StatusIcon.styles.js +1 -1
- package/dist/esm/Table/TableHeader/TableHeader.styles.js +2 -0
- package/dist/esm/Table/renderers/renderers.js +1 -2
- package/dist/esm/Tag/Tag.js +10 -2
- package/dist/esm/Tag/Tag.styles.js +4 -3
- package/dist/esm/icons.js +1 -1
- package/dist/esm/themes/ds3.js +0 -3
- package/dist/esm/themes/ds5.js +96 -14
- package/dist/esm/themes/pentahoPlus.js +1 -3
- package/dist/types/index.d.ts +75 -73
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -2025,7 +2025,7 @@ export declare const HvButton: <C extends React.ElementType = "button">(props: {
|
|
|
2025
2025
|
component?: C | undefined;
|
|
2026
2026
|
} & {
|
|
2027
2027
|
children?: ReactNode | undefined;
|
|
2028
|
-
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "
|
|
2028
|
+
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "component" | "className" | "radius" | "selected" | "variant" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "component" | "className" | "radius" | "selected" | "variant" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> ? T extends any ? T : never : never : never) & {
|
|
2029
2029
|
ref?: PolymorphicRef<C> | undefined;
|
|
2030
2030
|
} & RefAttributes<unknown>) => React.ReactElement<any> | null;
|
|
2031
2031
|
|
|
@@ -4031,7 +4031,7 @@ export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof useC
|
|
|
4031
4031
|
* As defined by Design System, a tooltip with the button’s label should always be displayed when hovering an icon only button.
|
|
4032
4032
|
* This component provides this behavior out of the box.
|
|
4033
4033
|
*/
|
|
4034
|
-
export declare const HvIconButton: <C extends React.ElementType = "button">(props: Omit<HvButtonProps<C>, "children" | "ref" | "icon" | "title" | "component" | "
|
|
4034
|
+
export declare const HvIconButton: <C extends React.ElementType = "button">(props: Omit<HvButtonProps<C>, "children" | "ref" | "icon" | "title" | "component" | "focusableWhenDisabled" | "startIcon" | "endIcon"> & {
|
|
4035
4035
|
/** Label to be displayed in the tooltip when hovered. This label will be used as the button's `aria-label`. */
|
|
4036
4036
|
title: React.ReactNode;
|
|
4037
4037
|
/** Number of milliseconds to wait before showing the tooltip. @default 500 */
|
|
@@ -4044,7 +4044,7 @@ export declare const HvIconButton: <C extends React.ElementType = "button">(prop
|
|
|
4044
4044
|
component?: C | undefined;
|
|
4045
4045
|
} & {
|
|
4046
4046
|
children?: ReactNode | undefined;
|
|
4047
|
-
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "disabled" | "
|
|
4047
|
+
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "disabled" | "title" | "component" | "className" | "radius" | "selected" | "variant" | "placement" | "enterDelay" | "overrideIconColors" | "tooltipProps" | Exclude<keyof (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "component" | "className" | "radius" | "selected" | "variant" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "component" | "className" | "radius" | "selected" | "variant" | "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" | "title" | "component" | "className" | "radius" | "selected" | "variant" | "placement" | "enterDelay" | "overrideIconColors" | "tooltipProps" | Exclude<keyof (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "component" | "className" | "radius" | "selected" | "variant" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T_2 ? T_2 extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "component" | "className" | "radius" | "selected" | "variant" | "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) & {
|
|
4048
4048
|
ref?: PolymorphicRef<C> | undefined;
|
|
4049
4049
|
} & RefAttributes<unknown>) => React.ReactElement<any> | null;
|
|
4050
4050
|
|
|
@@ -4159,7 +4159,7 @@ export declare const HvInlineEditor: <C extends React.ElementType = <InputElemen
|
|
|
4159
4159
|
component?: C | undefined;
|
|
4160
4160
|
} & {
|
|
4161
4161
|
children?: ReactNode | undefined;
|
|
4162
|
-
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "disabled" | "component" | "onBlur" | "onChange" | "onKeyDown" | "defaultValue" | "placeholder" | "variant" | "
|
|
4162
|
+
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "disabled" | "component" | "onBlur" | "onChange" | "onKeyDown" | "defaultValue" | "placeholder" | "variant" | "showIcon" | "buttonProps" | "typographyProps"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "disabled" | "component" | "onBlur" | "onChange" | "onKeyDown" | "defaultValue" | "placeholder" | "variant" | "showIcon" | "buttonProps" | "typographyProps"> ? T extends any ? T : never : never : never) & {
|
|
4163
4163
|
ref?: PolymorphicRef<C> | undefined;
|
|
4164
4164
|
} & RefAttributes<unknown>) => React.ReactElement<any> | null;
|
|
4165
4165
|
|
|
@@ -6597,7 +6597,9 @@ export declare interface HvTagProps extends Omit<HvButtonBaseProps, "type" | "co
|
|
|
6597
6597
|
type?: "semantic" | "categorical";
|
|
6598
6598
|
/** @deprecated */
|
|
6599
6599
|
variant?: "filled" | "outlined";
|
|
6600
|
+
/** The size of the tag element. */
|
|
6600
6601
|
size?: Extract<HvSize, "xs" | "sm" | "md">;
|
|
6602
|
+
/** The icon to use in the tag. */
|
|
6601
6603
|
icon?: React.ReactNode;
|
|
6602
6604
|
/** Whether to show the select icon checkbox. */
|
|
6603
6605
|
showSelectIcon?: boolean;
|
|
@@ -8399,7 +8401,7 @@ declare const useClasses_10: (classesProp?: Partial<Record<"root" | "labelDisabl
|
|
|
8399
8401
|
readonly cx: (...args: any) => string;
|
|
8400
8402
|
};
|
|
8401
8403
|
|
|
8402
|
-
declare const useClasses_100: (classesProp?: Partial<Record<"
|
|
8404
|
+
declare const useClasses_100: (classesProp?: Partial<Record<"selected" | "root" | "positionSticky" | "positionFixed" | "notSelectedRoot" | "notSelected", string>>, addStatic?: boolean) => {
|
|
8403
8405
|
readonly classes: {
|
|
8404
8406
|
root: string;
|
|
8405
8407
|
positionSticky: string;
|
|
@@ -8434,7 +8436,7 @@ declare const useClasses_102: (classesProp?: Partial<Record<"root" | "positionFi
|
|
|
8434
8436
|
readonly cx: (...args: any) => string;
|
|
8435
8437
|
};
|
|
8436
8438
|
|
|
8437
|
-
declare const useClasses_103: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "
|
|
8439
|
+
declare const useClasses_103: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "actions" | "headerExpandable" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
|
|
8438
8440
|
readonly classes: {
|
|
8439
8441
|
root: string;
|
|
8440
8442
|
hidden: string;
|
|
@@ -8458,7 +8460,7 @@ declare const useClasses_104: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8458
8460
|
readonly cx: (...args: any) => string;
|
|
8459
8461
|
};
|
|
8460
8462
|
|
|
8461
|
-
declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "error" | "
|
|
8463
|
+
declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "error" | "rootDisabled" | "labelContainer" | "sliderBase" | "sliderContainer" | "trackDragging" | "trackStandBy" | "sliderRoot" | "rootRange" | "handleContainer" | "handle" | "handleContainerDisabled" | "handleHiddenContainer" | "labelIncluded" | "onlyInput" | "sliderTooltip", string>>, addStatic?: boolean) => {
|
|
8462
8464
|
readonly classes: {
|
|
8463
8465
|
sliderBase: string;
|
|
8464
8466
|
rootDisabled: string;
|
|
@@ -8483,7 +8485,7 @@ declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8483
8485
|
readonly cx: (...args: any) => string;
|
|
8484
8486
|
};
|
|
8485
8487
|
|
|
8486
|
-
declare const useClasses_106: (classesProp?: Partial<Record<"root" | "
|
|
8488
|
+
declare const useClasses_106: (classesProp?: Partial<Record<"root" | "anchorOriginTopRight" | "anchorOriginTopLeft" | "anchorOriginTopCenter" | "anchorOriginBottomCenter" | "anchorOriginBottomLeft" | "anchorOriginBottomRight", string>>, addStatic?: boolean) => {
|
|
8487
8489
|
readonly classes: {
|
|
8488
8490
|
root: string;
|
|
8489
8491
|
anchorOriginTopRight: string;
|
|
@@ -8497,7 +8499,7 @@ declare const useClasses_106: (classesProp?: Partial<Record<"root" | "anchorOrig
|
|
|
8497
8499
|
readonly cx: (...args: any) => string;
|
|
8498
8500
|
};
|
|
8499
8501
|
|
|
8500
|
-
declare const useClasses_107: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "
|
|
8502
|
+
declare const useClasses_107: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "action" | "root" | "error" | "success" | "message" | "messageText" | "iconVariant" | "messageSpan", string>>, addStatic?: boolean) => {
|
|
8501
8503
|
readonly classes: {
|
|
8502
8504
|
root: string;
|
|
8503
8505
|
success: string;
|
|
@@ -8579,7 +8581,7 @@ declare const useClasses_112: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8579
8581
|
readonly cx: (...args: any) => string;
|
|
8580
8582
|
};
|
|
8581
8583
|
|
|
8582
|
-
declare const useClasses_113: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "
|
|
8584
|
+
declare const useClasses_113: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
|
|
8583
8585
|
readonly classes: {
|
|
8584
8586
|
root: string;
|
|
8585
8587
|
header: string;
|
|
@@ -8611,7 +8613,7 @@ declare const useClasses_115: (classesProp?: Partial<Record<"root" | "stickyHead
|
|
|
8611
8613
|
readonly cx: (...args: any) => string;
|
|
8612
8614
|
};
|
|
8613
8615
|
|
|
8614
|
-
declare const useClasses_116: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "label" | "button" | "icon" | "disabled" | "
|
|
8616
|
+
declare const useClasses_116: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "label" | "button" | "icon" | "disabled" | "selected" | "root" | "focusVisible" | "hasIcon" | "outlined" | "categorical" | "deleteIcon" | "clickable" | "chipRoot" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
|
|
8615
8617
|
readonly classes: {
|
|
8616
8618
|
root: string;
|
|
8617
8619
|
hasIcon: string;
|
|
@@ -8638,7 +8640,7 @@ declare const useClasses_116: (classesProp?: Partial<Record<"xs" | "sm" | "md" |
|
|
|
8638
8640
|
readonly cx: (...args: any) => string;
|
|
8639
8641
|
};
|
|
8640
8642
|
|
|
8641
|
-
declare const useClasses_117: (classesProp?: Partial<Record<"root" | "
|
|
8643
|
+
declare const useClasses_117: (classesProp?: Partial<Record<"root" | "indicator" | "scroller" | "flexContainer" | "floating", string>>, addStatic?: boolean) => {
|
|
8642
8644
|
readonly classes: {
|
|
8643
8645
|
root: string;
|
|
8644
8646
|
indicator: string;
|
|
@@ -8650,7 +8652,7 @@ declare const useClasses_117: (classesProp?: Partial<Record<"root" | "floating"
|
|
|
8650
8652
|
readonly cx: (...args: any) => string;
|
|
8651
8653
|
};
|
|
8652
8654
|
|
|
8653
|
-
declare const useClasses_118: (classesProp?: Partial<Record<"disabled" | "
|
|
8655
|
+
declare const useClasses_118: (classesProp?: Partial<Record<"disabled" | "selected" | "root" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
8654
8656
|
readonly classes: {
|
|
8655
8657
|
root: string;
|
|
8656
8658
|
focusVisible: string;
|
|
@@ -8661,7 +8663,7 @@ declare const useClasses_118: (classesProp?: Partial<Record<"disabled" | "root"
|
|
|
8661
8663
|
readonly cx: (...args: any) => string;
|
|
8662
8664
|
};
|
|
8663
8665
|
|
|
8664
|
-
declare const useClasses_119: (classesProp?: Partial<Record<"label" | "disabled" | "
|
|
8666
|
+
declare const useClasses_119: (classesProp?: Partial<Record<"label" | "disabled" | "input" | "readOnly" | "root" | "error" | "description" | "invalid" | "resizable" | "labelContainer" | "suggestionsContainer" | "suggestionList" | "inputExtension" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagsList" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty" | "singleLine", string>>, addStatic?: boolean) => {
|
|
8665
8667
|
readonly classes: {
|
|
8666
8668
|
listItemGutters: string;
|
|
8667
8669
|
listItemRoot: string;
|
|
@@ -8707,7 +8709,7 @@ declare const useClasses_12: (classesProp?: Partial<Record<"show" | "root" | "de
|
|
|
8707
8709
|
readonly cx: (...args: any) => string;
|
|
8708
8710
|
};
|
|
8709
8711
|
|
|
8710
|
-
declare const useClasses_120: (classesProp?: Partial<Record<"label" | "disabled" | "
|
|
8712
|
+
declare const useClasses_120: (classesProp?: Partial<Record<"label" | "disabled" | "input" | "root" | "error" | "description" | "invalid" | "resizable" | "inputResizable" | "labelContainer" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
|
|
8711
8713
|
readonly classes: {
|
|
8712
8714
|
root: string;
|
|
8713
8715
|
disabled: string;
|
|
@@ -8734,7 +8736,7 @@ declare const useClasses_121: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8734
8736
|
readonly cx: (...args: any) => string;
|
|
8735
8737
|
};
|
|
8736
8738
|
|
|
8737
|
-
declare const useClasses_122: (classesProp?: Partial<Record<"label" | "icon" | "
|
|
8739
|
+
declare const useClasses_122: (classesProp?: Partial<Record<"label" | "icon" | "placeholder" | "root" | "error" | "description" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
|
|
8738
8740
|
readonly classes: {
|
|
8739
8741
|
root: string;
|
|
8740
8742
|
labelContainer: string;
|
|
@@ -8762,7 +8764,7 @@ declare const useClasses_123: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8762
8764
|
readonly cx: (...args: any) => string;
|
|
8763
8765
|
};
|
|
8764
8766
|
|
|
8765
|
-
declare const useClasses_124: (classesProp?: Partial<Record<"content" | "label" | "expanded" | "disabled" | "
|
|
8767
|
+
declare const useClasses_124: (classesProp?: Partial<Record<"content" | "label" | "expanded" | "disabled" | "selected" | "root" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
|
|
8766
8768
|
readonly classes: {
|
|
8767
8769
|
root: string;
|
|
8768
8770
|
group: string;
|
|
@@ -8778,7 +8780,7 @@ declare const useClasses_124: (classesProp?: Partial<Record<"content" | "label"
|
|
|
8778
8780
|
readonly cx: (...args: any) => string;
|
|
8779
8781
|
};
|
|
8780
8782
|
|
|
8781
|
-
declare const useClasses_125: (classesProp?: Partial<Record<"label" | "expanded" | "disabled" | "
|
|
8783
|
+
declare const useClasses_125: (classesProp?: Partial<Record<"label" | "expanded" | "disabled" | "selected" | "root" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
|
|
8782
8784
|
readonly classes: {
|
|
8783
8785
|
root: string;
|
|
8784
8786
|
expanded: string;
|
|
@@ -8803,7 +8805,7 @@ declare const useClasses_126: (classesProp?: Partial<Record<"root" | "slider" |
|
|
|
8803
8805
|
readonly cx: (...args: any) => string;
|
|
8804
8806
|
};
|
|
8805
8807
|
|
|
8806
|
-
declare const useClasses_127: (classesProp?: Partial<Record<"
|
|
8808
|
+
declare const useClasses_127: (classesProp?: Partial<Record<"title" | "root" | "backButton" | "minimized" | "collapseButton", string>>, addStatic?: boolean) => {
|
|
8807
8809
|
readonly classes: {
|
|
8808
8810
|
root: string;
|
|
8809
8811
|
minimized: string;
|
|
@@ -8834,7 +8836,7 @@ declare const useClasses_129: (classesProp?: Partial<Record<"action" | "minimize
|
|
|
8834
8836
|
readonly cx: (...args: any) => string;
|
|
8835
8837
|
};
|
|
8836
8838
|
|
|
8837
|
-
declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled" | "
|
|
8839
|
+
declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled" | "select" | "readOnly" | "root" | "error" | "description" | "invalid" | "panel" | "panelOpenedUp" | "panelOpenedDown" | "popper" | "labelContainer", string>>, addStatic?: boolean) => {
|
|
8838
8840
|
readonly classes: {
|
|
8839
8841
|
root: string;
|
|
8840
8842
|
disabled: string;
|
|
@@ -8854,7 +8856,7 @@ declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled"
|
|
|
8854
8856
|
readonly cx: (...args: any) => string;
|
|
8855
8857
|
};
|
|
8856
8858
|
|
|
8857
|
-
declare const useClasses_130: (classesProp?: Partial<Record<"
|
|
8859
|
+
declare const useClasses_130: (classesProp?: Partial<Record<"list" | "root" | "popup" | "listItem" | "collapsed" | "navigationPopup", string>>, addStatic?: boolean) => {
|
|
8858
8860
|
readonly classes: {
|
|
8859
8861
|
root: string;
|
|
8860
8862
|
list: string;
|
|
@@ -8867,7 +8869,7 @@ declare const useClasses_130: (classesProp?: Partial<Record<"root" | "list" | "p
|
|
|
8867
8869
|
readonly cx: (...args: any) => string;
|
|
8868
8870
|
};
|
|
8869
8871
|
|
|
8870
|
-
declare const useClasses_131: (classesProp?: Partial<Record<"root" | "
|
|
8872
|
+
declare const useClasses_131: (classesProp?: Partial<Record<"root" | "listContainer" | "listItemSelected" | "listItemFocus" | "forwardButton" | "listItemDisabled", string>>, addStatic?: boolean) => {
|
|
8871
8873
|
readonly classes: {
|
|
8872
8874
|
root: string;
|
|
8873
8875
|
listItemSelected: string;
|
|
@@ -8888,7 +8890,7 @@ declare const useClasses_132: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8888
8890
|
readonly cx: (...args: any) => string;
|
|
8889
8891
|
};
|
|
8890
8892
|
|
|
8891
|
-
declare const useClasses_133: (classesProp?: Partial<Record<"hide" | "content" | "label" | "link" | "expanded" | "icon" | "disabled" | "unselectable" | "selected" | "group" | "
|
|
8893
|
+
declare const useClasses_133: (classesProp?: Partial<Record<"hide" | "content" | "label" | "link" | "expanded" | "icon" | "disabled" | "unselectable" | "selected" | "group" | "focused" | "selectable" | "node" | "expandable" | "labelIcon" | "collapsed" | "minimized" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
|
|
8892
8894
|
readonly classes: {
|
|
8893
8895
|
node: string;
|
|
8894
8896
|
content: string;
|
|
@@ -8928,7 +8930,7 @@ declare const useClasses_134: (classesProp?: Partial<Record<"text" | "circle" |
|
|
|
8928
8930
|
readonly cx: (...args: any) => string;
|
|
8929
8931
|
};
|
|
8930
8932
|
|
|
8931
|
-
declare const useClasses_14: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "semantic" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "icon" | "disabled" | "root" | "
|
|
8933
|
+
declare const useClasses_14: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "semantic" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "icon" | "disabled" | "root" | "focusVisible" | "startIcon" | "endIcon" | "contained" | "subtle" | "ghost", string>>, addStatic?: boolean) => {
|
|
8932
8934
|
readonly classes: {
|
|
8933
8935
|
root: string;
|
|
8934
8936
|
startIcon: string;
|
|
@@ -8968,7 +8970,7 @@ declare const useClasses_16: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
8968
8970
|
readonly cx: (...args: any) => string;
|
|
8969
8971
|
};
|
|
8970
8972
|
|
|
8971
|
-
declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "listbox" | "root" | "
|
|
8973
|
+
declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "listbox" | "root" | "error" | "description" | "invalid", string>>, addStatic?: boolean) => {
|
|
8972
8974
|
readonly classes: {
|
|
8973
8975
|
root: string;
|
|
8974
8976
|
error: string;
|
|
@@ -8983,7 +8985,7 @@ declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizon
|
|
|
8983
8985
|
readonly cx: (...args: any) => string;
|
|
8984
8986
|
};
|
|
8985
8987
|
|
|
8986
|
-
declare const useClasses_18: (classesProp?: Partial<Record<"
|
|
8988
|
+
declare const useClasses_18: (classesProp?: Partial<Record<"list" | "root" | "popper" | "portal", string>>, addStatic?: boolean) => {
|
|
8987
8989
|
readonly classes: {
|
|
8988
8990
|
root: string;
|
|
8989
8991
|
list: string;
|
|
@@ -8994,7 +8996,7 @@ declare const useClasses_18: (classesProp?: Partial<Record<"root" | "popper" | "
|
|
|
8994
8996
|
readonly cx: (...args: any) => string;
|
|
8995
8997
|
};
|
|
8996
8998
|
|
|
8997
|
-
declare const useClasses_19: (classesProp?: Partial<Record<"disabled" | "
|
|
8999
|
+
declare const useClasses_19: (classesProp?: Partial<Record<"disabled" | "input" | "readOnly" | "root" | "invalid" | "multiline" | "resizable" | "focused" | "inputBorderContainer" | "inputRootInvalid" | "inputRootReadOnly" | "inputRoot" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "inputDisabled" | "inputReadOnly" | "inputResizable", string>>, addStatic?: boolean) => {
|
|
8998
9000
|
readonly classes: {
|
|
8999
9001
|
root: string;
|
|
9000
9002
|
disabled: string;
|
|
@@ -9060,7 +9062,7 @@ declare const useClasses_2: (classesProp?: Partial<Record<"display" | "title1" |
|
|
|
9060
9062
|
readonly cx: (...args: any) => string;
|
|
9061
9063
|
};
|
|
9062
9064
|
|
|
9063
|
-
declare const useClasses_20: (classesProp?: Partial<Record<"container" | "header" | "anchor" | "
|
|
9065
|
+
declare const useClasses_20: (classesProp?: Partial<Record<"container" | "header" | "anchor" | "placeholder" | "root" | "rootDisabled" | "headerOpen" | "headerOpenUp" | "headerOpenDown" | "headerDisabled" | "headerReadOnly" | "arrowContainer" | "arrow" | "selection" | "selectionDisabled" | "panel" | "panelOpenedUp" | "panelOpenedDown" | "inputExtensionOpen" | "inputExtensionLeftPosition" | "inputExtensionOpenShadow" | "inputExtensionFloatRight" | "inputExtensionFloatLeft", string>>, addStatic?: boolean) => {
|
|
9064
9066
|
readonly classes: {
|
|
9065
9067
|
root: string;
|
|
9066
9068
|
rootDisabled: string;
|
|
@@ -9123,7 +9125,7 @@ declare const useClasses_23: (classesProp?: Partial<Record<"button" | "root" | "
|
|
|
9123
9125
|
readonly cx: (...args: any) => string;
|
|
9124
9126
|
};
|
|
9125
9127
|
|
|
9126
|
-
declare const useClasses_24: (classesProp?: Partial<Record<"container" | "icon" | "root" | "
|
|
9128
|
+
declare const useClasses_24: (classesProp?: Partial<Record<"container" | "icon" | "root" | "baseContainer" | "iconSelected" | "menuListRoot" | "menuList", string>>, addStatic?: boolean) => {
|
|
9127
9129
|
readonly classes: {
|
|
9128
9130
|
root: string;
|
|
9129
9131
|
container: string;
|
|
@@ -9137,7 +9139,7 @@ declare const useClasses_24: (classesProp?: Partial<Record<"container" | "icon"
|
|
|
9137
9139
|
readonly cx: (...args: any) => string;
|
|
9138
9140
|
};
|
|
9139
9141
|
|
|
9140
|
-
declare const useClasses_25: (classesProp?: Partial<Record<"open" | "single" | "
|
|
9142
|
+
declare const useClasses_25: (classesProp?: Partial<Record<"open" | "single" | "title" | "root" | "item" | "actionsContainer" | "titleAnchor" | "itemSelected" | "itemDisabled" | "itemTrigger" | "itemIcon" | "itemTitle" | "itemInfoIcon" | "footerContainer" | "closed" | "dual" | "fluid", string>>, addStatic?: boolean) => {
|
|
9141
9143
|
readonly classes: {
|
|
9142
9144
|
root: string;
|
|
9143
9145
|
item: string;
|
|
@@ -9161,7 +9163,7 @@ declare const useClasses_25: (classesProp?: Partial<Record<"open" | "single" | "
|
|
|
9161
9163
|
readonly cx: (...args: any) => string;
|
|
9162
9164
|
};
|
|
9163
9165
|
|
|
9164
|
-
declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "icon" | "disabled" | "
|
|
9166
|
+
declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "icon" | "disabled" | "title" | "selected" | "root" | "iconUrl" | "iconInfo" | "titleAnchor", string>>, addStatic?: boolean) => {
|
|
9165
9167
|
readonly classes: {
|
|
9166
9168
|
root: string;
|
|
9167
9169
|
icon: string;
|
|
@@ -9177,7 +9179,7 @@ declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "icon"
|
|
|
9177
9179
|
readonly cx: (...args: any) => string;
|
|
9178
9180
|
};
|
|
9179
9181
|
|
|
9180
|
-
declare const useClasses_27: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "container" | "square" | "
|
|
9182
|
+
declare const useClasses_27: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "container" | "square" | "img" | "root" | "status" | "avatar" | "fallback" | "badge" | "circular", string>>, addStatic?: boolean) => {
|
|
9181
9183
|
readonly classes: {
|
|
9182
9184
|
root: string;
|
|
9183
9185
|
img: string;
|
|
@@ -9210,7 +9212,7 @@ declare const useClasses_28: (classesProp?: Partial<Record<"column" | "row" | "r
|
|
|
9210
9212
|
readonly cx: (...args: any) => string;
|
|
9211
9213
|
};
|
|
9212
9214
|
|
|
9213
|
-
declare const useClasses_29: (classesProp?: Partial<Record<"root" | "
|
|
9215
|
+
declare const useClasses_29: (classesProp?: Partial<Record<"root" | "badge" | "badgeContainer" | "badgePosition" | "badgeHidden" | "showCount" | "showLabel" | "badgeIcon" | "badgeOneDigit", string>>, addStatic?: boolean) => {
|
|
9214
9216
|
readonly classes: {
|
|
9215
9217
|
root: string;
|
|
9216
9218
|
badgeContainer: string;
|
|
@@ -9235,7 +9237,7 @@ declare const useClasses_3: (classesProp?: Partial<Record<"disabled" | "root", s
|
|
|
9235
9237
|
readonly cx: (...args: any) => string;
|
|
9236
9238
|
};
|
|
9237
9239
|
|
|
9238
|
-
declare const useClasses_30: (classesProp?: Partial<Record<"root" | "
|
|
9240
|
+
declare const useClasses_30: (classesProp?: Partial<Record<"root" | "anchorOriginTopCenter" | "anchorOriginBottomCenter" | "rootClosed", string>>, addStatic?: boolean) => {
|
|
9239
9241
|
readonly classes: {
|
|
9240
9242
|
rootClosed: string;
|
|
9241
9243
|
root: string;
|
|
@@ -9246,7 +9248,7 @@ declare const useClasses_30: (classesProp?: Partial<Record<"root" | "rootClosed"
|
|
|
9246
9248
|
readonly cx: (...args: any) => string;
|
|
9247
9249
|
};
|
|
9248
9250
|
|
|
9249
|
-
declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "
|
|
9251
|
+
declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "action" | "root" | "error" | "success" | "actionContainer" | "message" | "iconContainer" | "messageContainer" | "messageActions" | "closeAction" | "baseVariant" | "outContainer" | "actionsInnerContainer", string>>, addStatic?: boolean) => {
|
|
9250
9252
|
readonly classes: {
|
|
9251
9253
|
root: string;
|
|
9252
9254
|
success: string;
|
|
@@ -9270,7 +9272,7 @@ declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning"
|
|
|
9270
9272
|
readonly cx: (...args: any) => string;
|
|
9271
9273
|
};
|
|
9272
9274
|
|
|
9273
|
-
declare const useClasses_32: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "
|
|
9275
|
+
declare const useClasses_32: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "checked" | "root" | "focusVisible" | "indeterminate", string>>, addStatic?: boolean) => {
|
|
9274
9276
|
readonly classes: {
|
|
9275
9277
|
root: string;
|
|
9276
9278
|
disabled: string;
|
|
@@ -9284,7 +9286,7 @@ declare const useClasses_32: (classesProp?: Partial<Record<"semantic" | "icon" |
|
|
|
9284
9286
|
readonly cx: (...args: any) => string;
|
|
9285
9287
|
};
|
|
9286
9288
|
|
|
9287
|
-
declare const useClasses_33: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "
|
|
9289
|
+
declare const useClasses_33: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "checked" | "root" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
9288
9290
|
readonly classes: {
|
|
9289
9291
|
root: string;
|
|
9290
9292
|
disabled: string;
|
|
@@ -9297,7 +9299,7 @@ declare const useClasses_33: (classesProp?: Partial<Record<"semantic" | "icon" |
|
|
|
9297
9299
|
readonly cx: (...args: any) => string;
|
|
9298
9300
|
};
|
|
9299
9301
|
|
|
9300
|
-
declare const useClasses_34: (classesProp?: Partial<Record<"disabled" | "
|
|
9302
|
+
declare const useClasses_34: (classesProp?: Partial<Record<"disabled" | "track" | "switch" | "readOnly" | "checked" | "root" | "focusVisible" | "switchBase" | "thumb", string>>, addStatic?: boolean) => {
|
|
9301
9303
|
readonly classes: {
|
|
9302
9304
|
root: string;
|
|
9303
9305
|
switch: string;
|
|
@@ -9313,7 +9315,7 @@ declare const useClasses_34: (classesProp?: Partial<Record<"disabled" | "root" |
|
|
|
9313
9315
|
readonly cx: (...args: any) => string;
|
|
9314
9316
|
};
|
|
9315
9317
|
|
|
9316
|
-
declare const useClasses_35: (classesProp?: Partial<Record<"link" | "
|
|
9318
|
+
declare const useClasses_35: (classesProp?: Partial<Record<"link" | "a" | "root" | "currentPage" | "orderedList" | "centerContainer" | "separatorContainer", string>>, addStatic?: boolean) => {
|
|
9317
9319
|
readonly classes: {
|
|
9318
9320
|
root: string;
|
|
9319
9321
|
link: string;
|
|
@@ -9327,7 +9329,7 @@ declare const useClasses_35: (classesProp?: Partial<Record<"link" | "root" | "a"
|
|
|
9327
9329
|
readonly cx: (...args: any) => string;
|
|
9328
9330
|
};
|
|
9329
9331
|
|
|
9330
|
-
declare const useClasses_36: (classesProp?: Partial<Record<"semantic" | "root" | "
|
|
9332
|
+
declare const useClasses_36: (classesProp?: Partial<Record<"semantic" | "root" | "selectAll" | "actions" | "selectAllContainer" | "selectAllPages" | "divider", string>>, addStatic?: boolean) => {
|
|
9331
9333
|
readonly classes: {
|
|
9332
9334
|
root: string;
|
|
9333
9335
|
semantic: string;
|
|
@@ -9341,7 +9343,7 @@ declare const useClasses_36: (classesProp?: Partial<Record<"semantic" | "root" |
|
|
|
9341
9343
|
readonly cx: (...args: any) => string;
|
|
9342
9344
|
};
|
|
9343
9345
|
|
|
9344
|
-
declare const useClasses_37: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "checkbox" | "disabled" | "
|
|
9346
|
+
declare const useClasses_37: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "checkbox" | "disabled" | "checked" | "root" | "focusVisible" | "indeterminate" | "invalidContainer" | "invalidCheckbox", string>>, addStatic?: boolean) => {
|
|
9345
9347
|
readonly classes: {
|
|
9346
9348
|
root: string;
|
|
9347
9349
|
container: string;
|
|
@@ -9382,7 +9384,7 @@ declare const useClasses_39: (classesProp?: Partial<Record<"root" | "invalid" |
|
|
|
9382
9384
|
readonly cx: (...args: any) => string;
|
|
9383
9385
|
};
|
|
9384
9386
|
|
|
9385
|
-
declare const useClasses_4: (classesProp?: Partial<Record<"disabled" | "
|
|
9387
|
+
declare const useClasses_4: (classesProp?: Partial<Record<"disabled" | "selected" | "root" | "focus" | "focused" | "focusDisabled", string>>, addStatic?: boolean) => {
|
|
9386
9388
|
readonly classes: {
|
|
9387
9389
|
root: string;
|
|
9388
9390
|
selected: string;
|
|
@@ -9418,7 +9420,7 @@ declare const useClasses_40: (classesProp?: Partial<Record<"root" | "focusSelect
|
|
|
9418
9420
|
readonly cx: (...args: any) => string;
|
|
9419
9421
|
};
|
|
9420
9422
|
|
|
9421
|
-
declare const useClasses_41: (classesProp?: Partial<Record<"icon" | "
|
|
9423
|
+
declare const useClasses_41: (classesProp?: Partial<Record<"icon" | "selected" | "root" | "selectable" | "semanticContainer" | "semanticBar", string>>, addStatic?: boolean) => {
|
|
9422
9424
|
readonly classes: {
|
|
9423
9425
|
root: string;
|
|
9424
9426
|
selected: string;
|
|
@@ -9431,7 +9433,7 @@ declare const useClasses_41: (classesProp?: Partial<Record<"icon" | "root" | "se
|
|
|
9431
9433
|
readonly cx: (...args: any) => string;
|
|
9432
9434
|
};
|
|
9433
9435
|
|
|
9434
|
-
declare const useClasses_42: (classesProp?: Partial<Record<"content" | "
|
|
9436
|
+
declare const useClasses_42: (classesProp?: Partial<Record<"content" | "title" | "action" | "root" | "titleShort" | "subheader", string>>, addStatic?: boolean) => {
|
|
9435
9437
|
readonly classes: {
|
|
9436
9438
|
root: string;
|
|
9437
9439
|
titleShort: string;
|
|
@@ -9452,7 +9454,7 @@ declare const useClasses_43: (classesProp?: Partial<Record<"content", string>>,
|
|
|
9452
9454
|
readonly cx: (...args: any) => string;
|
|
9453
9455
|
};
|
|
9454
9456
|
|
|
9455
|
-
declare const useClasses_44: (classesProp?: Partial<Record<"
|
|
9457
|
+
declare const useClasses_44: (classesProp?: Partial<Record<"media" | "root", string>>, addStatic?: boolean) => {
|
|
9456
9458
|
readonly classes: {
|
|
9457
9459
|
root: string;
|
|
9458
9460
|
media: string;
|
|
@@ -9461,7 +9463,7 @@ declare const useClasses_44: (classesProp?: Partial<Record<"root" | "media", str
|
|
|
9461
9463
|
readonly cx: (...args: any) => string;
|
|
9462
9464
|
};
|
|
9463
9465
|
|
|
9464
|
-
declare const useClasses_45: (classesProp?: Partial<Record<"xs" | "dot" | "
|
|
9466
|
+
declare const useClasses_45: (classesProp?: Partial<Record<"xs" | "dot" | "main" | "title" | "controls" | "root" | "panel" | "counter" | "actions" | "fullscreen" | "closeButton" | "mainContainer" | "pageCounter" | "mainXs" | "mainFullscreen" | "counterContainer" | "slideControls" | "slidesViewport" | "slidesContainer" | "dots" | "dotsXs" | "dotSelected" | "thumbnail" | "thumbnailSelected", string>>, addStatic?: boolean) => {
|
|
9465
9467
|
readonly classes: {
|
|
9466
9468
|
root: string;
|
|
9467
9469
|
xs: string;
|
|
@@ -9501,7 +9503,7 @@ declare const useClasses_46: (classesProp?: Partial<Record<"image" | "slide", st
|
|
|
9501
9503
|
readonly cx: (...args: any) => string;
|
|
9502
9504
|
};
|
|
9503
9505
|
|
|
9504
|
-
declare const useClasses_47: (classesProp?: Partial<Record<"label" | "icon" | "
|
|
9506
|
+
declare const useClasses_47: (classesProp?: Partial<Record<"label" | "icon" | "input" | "root" | "error" | "description" | "adornmentButton" | "inputBorderContainer" | "inputRoot" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "labelContainer" | "adornmentsBox" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList" | "inputExtension", string>>, addStatic?: boolean) => {
|
|
9505
9507
|
readonly classes: {
|
|
9506
9508
|
root: string;
|
|
9507
9509
|
labelContainer: string;
|
|
@@ -9527,7 +9529,7 @@ declare const useClasses_47: (classesProp?: Partial<Record<"label" | "icon" | "r
|
|
|
9527
9529
|
readonly cx: (...args: any) => string;
|
|
9528
9530
|
};
|
|
9529
9531
|
|
|
9530
|
-
declare const useClasses_48: (classesProp?: Partial<Record<"icon" | "root" | "
|
|
9532
|
+
declare const useClasses_48: (classesProp?: Partial<Record<"icon" | "root" | "pageSizeOptions" | "pageSizeHeader" | "pageSizeRoot" | "pageSizeTextContainer" | "totalPagesTextContainer" | "pageSizeOptionsSelect" | "pageNavigator" | "iconContainer" | "pageInfo" | "pageJump" | "pageSizeInput" | "pageSizeInputRoot" | "pageSizeInputContainer", string>>, addStatic?: boolean) => {
|
|
9531
9533
|
readonly classes: {
|
|
9532
9534
|
root: string;
|
|
9533
9535
|
pageSizeOptions: string;
|
|
@@ -9572,7 +9574,7 @@ declare const useClasses_5: (classesProp?: Partial<Record<"root", string>>, addS
|
|
|
9572
9574
|
readonly cx: (...args: any) => string;
|
|
9573
9575
|
};
|
|
9574
9576
|
|
|
9575
|
-
declare const useClasses_50: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "
|
|
9577
|
+
declare const useClasses_50: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "description" | "panel" | "labelContainer" | "headerColorValue" | "headerColorIcon" | "colorPickerIcon" | "recommendedColorsRoot" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
|
|
9576
9578
|
readonly classes: {
|
|
9577
9579
|
root: string;
|
|
9578
9580
|
labelContainer: string;
|
|
@@ -9607,7 +9609,7 @@ declare const useClasses_51: (classesProp?: Partial<Record<"fixed" | "root" | "d
|
|
|
9607
9609
|
readonly cx: (...args: any) => string;
|
|
9608
9610
|
};
|
|
9609
9611
|
|
|
9610
|
-
declare const useClasses_52: (classesProp?: Partial<Record<"
|
|
9612
|
+
declare const useClasses_52: (classesProp?: Partial<Record<"section" | "root" | "rightSection" | "leftSection", string>>, addStatic?: boolean) => {
|
|
9611
9613
|
readonly classes: {
|
|
9612
9614
|
root: string;
|
|
9613
9615
|
section: string;
|
|
@@ -9618,7 +9620,7 @@ declare const useClasses_52: (classesProp?: Partial<Record<"root" | "section" |
|
|
|
9618
9620
|
readonly cx: (...args: any) => string;
|
|
9619
9621
|
};
|
|
9620
9622
|
|
|
9621
|
-
declare const useClasses_53: (classesProp?: Partial<Record<"body" | "
|
|
9623
|
+
declare const useClasses_53: (classesProp?: Partial<Record<"body" | "footer" | "head" | "root" | "resizable" | "sorted" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "variantList" | "variantListHead" | "variantListactions" | "variantListcheckbox" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing", string>>, addStatic?: boolean) => {
|
|
9622
9624
|
readonly classes: {
|
|
9623
9625
|
root: string;
|
|
9624
9626
|
head: string;
|
|
@@ -9649,7 +9651,7 @@ declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "fo
|
|
|
9649
9651
|
readonly cx: (...args: any) => string;
|
|
9650
9652
|
};
|
|
9651
9653
|
|
|
9652
|
-
declare const useClasses_54: (classesProp?: Partial<Record<"body" | "expanded" | "
|
|
9654
|
+
declare const useClasses_54: (classesProp?: Partial<Record<"body" | "expanded" | "footer" | "head" | "selected" | "root" | "variantList" | "variantListHead" | "striped" | "hover", string>>, addStatic?: boolean) => {
|
|
9653
9655
|
readonly classes: {
|
|
9654
9656
|
root: string;
|
|
9655
9657
|
head: string;
|
|
@@ -9666,7 +9668,7 @@ declare const useClasses_54: (classesProp?: Partial<Record<"body" | "expanded" |
|
|
|
9666
9668
|
readonly cx: (...args: any) => string;
|
|
9667
9669
|
};
|
|
9668
9670
|
|
|
9669
|
-
declare const useClasses_55: (classesProp?: Partial<Record<"body" | "resizer" | "
|
|
9671
|
+
declare const useClasses_55: (classesProp?: Partial<Record<"body" | "resizer" | "footer" | "head" | "root" | "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) => {
|
|
9670
9672
|
readonly classes: {
|
|
9671
9673
|
root: string;
|
|
9672
9674
|
head: string;
|
|
@@ -9734,7 +9736,7 @@ declare const useClasses_58: (classesProp?: Partial<Record<"root" | "sortDropdow
|
|
|
9734
9736
|
readonly cx: (...args: any) => string;
|
|
9735
9737
|
};
|
|
9736
9738
|
|
|
9737
|
-
declare const useClasses_59: (classesProp?: Partial<Record<"dropdown" | "label" | "disabled" | "
|
|
9739
|
+
declare const useClasses_59: (classesProp?: Partial<Record<"dropdown" | "label" | "disabled" | "placeholder" | "readOnly" | "root" | "error" | "description" | "arrow" | "selectionDisabled" | "labelContainer" | "placeholderClosed" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "dropdownListContainer" | "rootList", string>>, addStatic?: boolean) => {
|
|
9738
9740
|
readonly classes: {
|
|
9739
9741
|
root: string;
|
|
9740
9742
|
labelContainer: string;
|
|
@@ -9758,7 +9760,7 @@ declare const useClasses_59: (classesProp?: Partial<Record<"dropdown" | "label"
|
|
|
9758
9760
|
readonly cx: (...args: any) => string;
|
|
9759
9761
|
};
|
|
9760
9762
|
|
|
9761
|
-
declare const useClasses_6: (classesProp?: Partial<Record<"condensed" | "disabled" | "
|
|
9763
|
+
declare const useClasses_6: (classesProp?: Partial<Record<"condensed" | "disabled" | "selected" | "root" | "focus" | "endAdornment" | "startAdornment" | "interactive" | "gutters" | "withStartAdornment" | "withEndAdornment", string>>, addStatic?: boolean) => {
|
|
9762
9764
|
readonly classes: {
|
|
9763
9765
|
root: string;
|
|
9764
9766
|
focus: string;
|
|
@@ -9776,7 +9778,7 @@ declare const useClasses_6: (classesProp?: Partial<Record<"condensed" | "disable
|
|
|
9776
9778
|
readonly cx: (...args: any) => string;
|
|
9777
9779
|
};
|
|
9778
9780
|
|
|
9779
|
-
declare const useClasses_60: (classesProp?: Partial<Record<"
|
|
9781
|
+
declare const useClasses_60: (classesProp?: Partial<Record<"virtualized" | "selectAll" | "dropdownListContainer" | "rootList" | "searchContainer" | "listBorderDown" | "listContainer", string>>, addStatic?: boolean) => {
|
|
9780
9782
|
readonly classes: {
|
|
9781
9783
|
rootList: string;
|
|
9782
9784
|
dropdownListContainer: string;
|
|
@@ -9790,7 +9792,7 @@ declare const useClasses_60: (classesProp?: Partial<Record<"listContainer" | "vi
|
|
|
9790
9792
|
readonly cx: (...args: any) => string;
|
|
9791
9793
|
};
|
|
9792
9794
|
|
|
9793
|
-
declare const useClasses_61: (classesProp?: Partial<Record<"dropdown" | "container" | "label" | "icon" | "
|
|
9795
|
+
declare const useClasses_61: (classesProp?: Partial<Record<"dropdown" | "container" | "label" | "icon" | "action" | "root" | "error" | "description" | "panel" | "actionContainer" | "labelContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "leftContainer" | "rightContainer" | "inputText" | "dateText", string>>, addStatic?: boolean) => {
|
|
9794
9796
|
readonly classes: {
|
|
9795
9797
|
root: string;
|
|
9796
9798
|
actionContainer: string;
|
|
@@ -9814,7 +9816,7 @@ declare const useClasses_61: (classesProp?: Partial<Record<"dropdown" | "contain
|
|
|
9814
9816
|
readonly cx: (...args: any) => string;
|
|
9815
9817
|
};
|
|
9816
9818
|
|
|
9817
|
-
declare const useClasses_62: (classesProp?: Partial<Record<"root" | "
|
|
9819
|
+
declare const useClasses_62: (classesProp?: Partial<Record<"root" | "fullscreen" | "messageContainer" | "textWithIcon" | "titleText", string>>, addStatic?: boolean) => {
|
|
9818
9820
|
readonly classes: {
|
|
9819
9821
|
root: string;
|
|
9820
9822
|
fullscreen: string;
|
|
@@ -9835,7 +9837,7 @@ declare const useClasses_63: (classesProp?: Partial<Record<"root" | "textContent
|
|
|
9835
9837
|
readonly cx: (...args: any) => string;
|
|
9836
9838
|
};
|
|
9837
9839
|
|
|
9838
|
-
declare const useClasses_64: (classesProp?: Partial<Record<"
|
|
9840
|
+
declare const useClasses_64: (classesProp?: Partial<Record<"spacing" | "root" | "fullscreen", string>>, addStatic?: boolean) => {
|
|
9839
9841
|
readonly classes: {
|
|
9840
9842
|
root: string;
|
|
9841
9843
|
fullscreen: string;
|
|
@@ -9845,7 +9847,7 @@ declare const useClasses_64: (classesProp?: Partial<Record<"root" | "spacing" |
|
|
|
9845
9847
|
readonly cx: (...args: any) => string;
|
|
9846
9848
|
};
|
|
9847
9849
|
|
|
9848
|
-
declare const useClasses_65: (classesProp?: Partial<Record<"warning" | "background" | "root" | "error" | "success" | "
|
|
9850
|
+
declare const useClasses_65: (classesProp?: Partial<Record<"warning" | "background" | "root" | "error" | "success" | "fullscreen" | "closeButton" | "paper" | "fullHeight" | "statusBar", string>>, addStatic?: boolean) => {
|
|
9849
9851
|
readonly classes: {
|
|
9850
9852
|
root: string;
|
|
9851
9853
|
background: string;
|
|
@@ -9888,7 +9890,7 @@ declare const useClasses_67: (classesProp?: Partial<Record<"vertical" | "horizon
|
|
|
9888
9890
|
readonly cx: (...args: any) => string;
|
|
9889
9891
|
};
|
|
9890
9892
|
|
|
9891
|
-
declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root" | "
|
|
9893
|
+
declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root" | "closeButton" | "paper", string>>, addStatic?: boolean) => {
|
|
9892
9894
|
readonly classes: {
|
|
9893
9895
|
root: string;
|
|
9894
9896
|
paper: string;
|
|
@@ -9899,7 +9901,7 @@ declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root"
|
|
|
9899
9901
|
readonly cx: (...args: any) => string;
|
|
9900
9902
|
};
|
|
9901
9903
|
|
|
9902
|
-
declare const useClasses_69: (classesProp?: Partial<Record<"container" | "root" | "actionContainer" | "
|
|
9904
|
+
declare const useClasses_69: (classesProp?: Partial<Record<"container" | "root" | "actionContainer" | "iconContainer" | "messageContainer" | "containerMessageOnly" | "titleContainer" | "textContainer", string>>, addStatic?: boolean) => {
|
|
9903
9905
|
readonly classes: {
|
|
9904
9906
|
root: string;
|
|
9905
9907
|
container: string;
|
|
@@ -9977,7 +9979,7 @@ declare const useClasses_73: (classesProp?: Partial<Record<"dropZoneContainer" |
|
|
|
9977
9979
|
readonly cx: (...args: any) => string;
|
|
9978
9980
|
};
|
|
9979
9981
|
|
|
9980
|
-
declare const useClasses_74: (classesProp?: Partial<Record<"label" | "root" | "
|
|
9982
|
+
declare const useClasses_74: (classesProp?: Partial<Record<"label" | "root" | "error" | "description" | "labelContainer", string>>, addStatic?: boolean) => {
|
|
9981
9983
|
readonly classes: {
|
|
9982
9984
|
root: string;
|
|
9983
9985
|
label: string;
|
|
@@ -10019,7 +10021,7 @@ declare const useClasses_76: (classesProp?: Partial<Record<"name" | "small" | "s
|
|
|
10019
10021
|
readonly cx: (...args: any) => string;
|
|
10020
10022
|
};
|
|
10021
10023
|
|
|
10022
|
-
declare const useClasses_77: (classesProp?: Partial<Record<"name" | "
|
|
10024
|
+
declare const useClasses_77: (classesProp?: Partial<Record<"name" | "section" | "root" | "actions" | "wrapper" | "positionSticky" | "positionFixed" | "global" | "globalSectionArea" | "globalWrapperComplement" | "backButton" | "sectionName", string>>, addStatic?: boolean) => {
|
|
10023
10025
|
readonly classes: {
|
|
10024
10026
|
root: string;
|
|
10025
10027
|
positionSticky: string;
|
|
@@ -10121,7 +10123,7 @@ declare const useClasses_81: (classesProp?: Partial<Record<"separator" | "root"
|
|
|
10121
10123
|
readonly cx: (...args: any) => string;
|
|
10122
10124
|
};
|
|
10123
10125
|
|
|
10124
|
-
declare const useClasses_82: (classesProp?: Partial<Record<"hidden" | "menu" | "menubar" | "active" | "
|
|
10126
|
+
declare const useClasses_82: (classesProp?: Partial<Record<"hidden" | "menu" | "menubar" | "active" | "list" | "root", string>>, addStatic?: boolean) => {
|
|
10125
10127
|
readonly classes: {
|
|
10126
10128
|
root: string;
|
|
10127
10129
|
menu: string;
|
|
@@ -10134,7 +10136,7 @@ declare const useClasses_82: (classesProp?: Partial<Record<"hidden" | "menu" | "
|
|
|
10134
10136
|
readonly cx: (...args: any) => string;
|
|
10135
10137
|
};
|
|
10136
10138
|
|
|
10137
|
-
declare const useClasses_83: (classesProp?: Partial<Record<"link" | "button" | "menu" | "menubar" | "
|
|
10139
|
+
declare const useClasses_83: (classesProp?: Partial<Record<"link" | "button" | "menu" | "menubar" | "selected" | "root" | "item", string>>, addStatic?: boolean) => {
|
|
10138
10140
|
readonly classes: {
|
|
10139
10141
|
root: string;
|
|
10140
10142
|
menu: string;
|
|
@@ -10156,7 +10158,7 @@ declare const useClasses_84: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
10156
10158
|
readonly cx: (...args: any) => string;
|
|
10157
10159
|
};
|
|
10158
10160
|
|
|
10159
|
-
declare const useClasses_85: (classesProp?: Partial<Record<"text" | "button" | "icon" | "
|
|
10161
|
+
declare const useClasses_85: (classesProp?: Partial<Record<"text" | "button" | "icon" | "input" | "root" | "inputBorderContainer" | "inputRoot" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
|
|
10160
10162
|
readonly classes: {
|
|
10161
10163
|
root: string;
|
|
10162
10164
|
inputBorderContainer: string;
|
|
@@ -10215,7 +10217,7 @@ declare const useClasses_88: (classesProp?: Partial<Record<"link" | "root" | "it
|
|
|
10215
10217
|
readonly cx: (...args: any) => string;
|
|
10216
10218
|
};
|
|
10217
10219
|
|
|
10218
|
-
declare const useClasses_89: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "hidden" | "root" | "blur" | "
|
|
10220
|
+
declare const useClasses_89: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "hidden" | "root" | "blur" | "barContainer" | "loadingBar" | "regular" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
|
|
10219
10221
|
readonly classes: {
|
|
10220
10222
|
root: string;
|
|
10221
10223
|
barContainer: string;
|
|
@@ -10241,7 +10243,7 @@ declare const useClasses_9: (classesProp?: Partial<Record<"root", string>>, addS
|
|
|
10241
10243
|
readonly cx: (...args: any) => string;
|
|
10242
10244
|
};
|
|
10243
10245
|
|
|
10244
|
-
declare const useClasses_90: (classesProp?: Partial<Record<"
|
|
10246
|
+
declare const useClasses_90: (classesProp?: Partial<Record<"loading" | "root", string>>, addStatic?: boolean) => {
|
|
10245
10247
|
readonly classes: {
|
|
10246
10248
|
root: string;
|
|
10247
10249
|
loading: string;
|
|
@@ -10259,7 +10261,7 @@ declare const useClasses_91: (classesProp?: Partial<Record<"root" | "formContain
|
|
|
10259
10261
|
readonly cx: (...args: any) => string;
|
|
10260
10262
|
};
|
|
10261
10263
|
|
|
10262
|
-
declare const useClasses_92: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "vertical" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "button" | "multiple" | "
|
|
10264
|
+
declare const useClasses_92: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "vertical" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "button" | "multiple" | "selected" | "root" | "splitGroup" | "splitGroupDisabled" | "firstButton" | "lastButton", string>>, addStatic?: boolean) => {
|
|
10263
10265
|
readonly classes: {
|
|
10264
10266
|
root: string;
|
|
10265
10267
|
multiple: string;
|
|
@@ -10291,7 +10293,7 @@ declare const useClasses_93: (classesProp?: Partial<Record<"tooltipData" | "tool
|
|
|
10291
10293
|
readonly cx: (...args: any) => string;
|
|
10292
10294
|
};
|
|
10293
10295
|
|
|
10294
|
-
declare const useClasses_94: (classesProp?: Partial<Record<"tooltip" | "color" | "values" | "separator" | "
|
|
10296
|
+
declare const useClasses_94: (classesProp?: Partial<Record<"tooltip" | "color" | "values" | "separator" | "title" | "root" | "popper" | "tooltipMulti" | "valuesContainer" | "separatorColor" | "valueWrapper", string>>, addStatic?: boolean) => {
|
|
10295
10297
|
readonly classes: {
|
|
10296
10298
|
root: string;
|
|
10297
10299
|
tooltip: string;
|
|
@@ -10356,7 +10358,7 @@ declare const useClasses_97: (classesProp?: Partial<Record<"root" | "removeButto
|
|
|
10356
10358
|
readonly cx: (...args: any) => string;
|
|
10357
10359
|
};
|
|
10358
10360
|
|
|
10359
|
-
declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "radio" | "disabled" | "
|
|
10361
|
+
declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "radio" | "disabled" | "checked" | "root" | "focusVisible" | "invalidContainer" | "invalidRadio", string>>, addStatic?: boolean) => {
|
|
10360
10362
|
readonly classes: {
|
|
10361
10363
|
root: string;
|
|
10362
10364
|
container: string;
|
|
@@ -10373,7 +10375,7 @@ declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label"
|
|
|
10373
10375
|
readonly cx: (...args: any) => string;
|
|
10374
10376
|
};
|
|
10375
10377
|
|
|
10376
|
-
declare const useClasses_99: (classesProp?: Partial<Record<"text" | "button" | "
|
|
10378
|
+
declare const useClasses_99: (classesProp?: Partial<Record<"text" | "button" | "selected" | "root" | "bullet" | "bulletSelected", string>>, addStatic?: boolean) => {
|
|
10377
10379
|
readonly classes: {
|
|
10378
10380
|
root: string;
|
|
10379
10381
|
button: string;
|