@hitachivantara/uikit-react-core 5.99.1 → 5.100.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/BaseSwitch/BaseSwitch.cjs +19 -5
- package/dist/cjs/BaseSwitch/BaseSwitch.styles.cjs +22 -6
- package/dist/cjs/Header/Navigation/MenuBar/Bar.cjs +1 -2
- package/dist/cjs/Header/Navigation/MenuBar/Bar.styles.cjs +2 -2
- package/dist/cjs/Loading/Loading.cjs +1 -0
- package/dist/cjs/Loading/Loading.styles.cjs +16 -17
- package/dist/cjs/ScrollToVertical/VerticalScrollListItem/VerticalScrollListItem.styles.cjs +1 -1
- package/dist/cjs/StatusIcon/StatusIcon.styles.cjs +1 -1
- package/dist/cjs/Switch/Switch.cjs +1 -14
- package/dist/cjs/Tag/Tag.cjs +9 -1
- package/dist/cjs/themes/ds3.cjs +3 -7
- package/dist/cjs/themes/ds5.cjs +14 -14
- package/dist/cjs/themes/pentahoPlus.cjs +45 -14
- package/dist/esm/BaseSwitch/BaseSwitch.js +19 -5
- package/dist/esm/BaseSwitch/BaseSwitch.styles.js +22 -6
- package/dist/esm/Header/Navigation/MenuBar/Bar.js +1 -2
- package/dist/esm/Header/Navigation/MenuBar/Bar.styles.js +2 -2
- package/dist/esm/Loading/Loading.js +1 -0
- package/dist/esm/Loading/Loading.styles.js +16 -17
- package/dist/esm/ScrollToVertical/VerticalScrollListItem/VerticalScrollListItem.styles.js +1 -1
- package/dist/esm/StatusIcon/StatusIcon.styles.js +1 -1
- package/dist/esm/Switch/Switch.js +1 -14
- package/dist/esm/Tag/Tag.js +10 -2
- package/dist/esm/themes/ds3.js +3 -7
- package/dist/esm/themes/ds5.js +14 -14
- package/dist/esm/themes/pentahoPlus.js +45 -14
- package/dist/types/index.d.ts +83 -75
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -1794,7 +1794,7 @@ export declare const HvBaseSwitch: ForwardRefExoticComponent<Omit<HvBaseSwitchPr
|
|
|
1794
1794
|
|
|
1795
1795
|
export declare type HvBaseSwitchClasses = ExtractNames<typeof useClasses_34>;
|
|
1796
1796
|
|
|
1797
|
-
export declare interface HvBaseSwitchProps extends Omit<SwitchProps, "onChange" | "classes"> {
|
|
1797
|
+
export declare interface HvBaseSwitchProps extends Omit<SwitchProps, "onChange" | "classes" | "color"> {
|
|
1798
1798
|
/**
|
|
1799
1799
|
* Class names to be applied.
|
|
1800
1800
|
*/
|
|
@@ -1859,6 +1859,12 @@ export declare interface HvBaseSwitchProps extends Omit<SwitchProps, "onChange"
|
|
|
1859
1859
|
* @ignore
|
|
1860
1860
|
*/
|
|
1861
1861
|
onBlur?: (event: React.FocusEvent<any>) => void;
|
|
1862
|
+
/**
|
|
1863
|
+
* The size of the switch.
|
|
1864
|
+
*/
|
|
1865
|
+
size?: SwitchProps["size"];
|
|
1866
|
+
/** Color applied to the switch. */
|
|
1867
|
+
color?: HvColorAny;
|
|
1862
1868
|
}
|
|
1863
1869
|
|
|
1864
1870
|
export { HvBaseTheme }
|
|
@@ -2019,7 +2025,7 @@ export declare const HvButton: <C extends React.ElementType = "button">(props: {
|
|
|
2019
2025
|
component?: C | undefined;
|
|
2020
2026
|
} & {
|
|
2021
2027
|
children?: ReactNode | undefined;
|
|
2022
|
-
} & (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) & {
|
|
2023
2029
|
ref?: PolymorphicRef<C> | undefined;
|
|
2024
2030
|
} & RefAttributes<unknown>) => React.ReactElement<any> | null;
|
|
2025
2031
|
|
|
@@ -4025,7 +4031,7 @@ export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof useC
|
|
|
4025
4031
|
* As defined by Design System, a tooltip with the button’s label should always be displayed when hovering an icon only button.
|
|
4026
4032
|
* This component provides this behavior out of the box.
|
|
4027
4033
|
*/
|
|
4028
|
-
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"> & {
|
|
4029
4035
|
/** Label to be displayed in the tooltip when hovered. This label will be used as the button's `aria-label`. */
|
|
4030
4036
|
title: React.ReactNode;
|
|
4031
4037
|
/** Number of milliseconds to wait before showing the tooltip. @default 500 */
|
|
@@ -4038,7 +4044,7 @@ export declare const HvIconButton: <C extends React.ElementType = "button">(prop
|
|
|
4038
4044
|
component?: C | undefined;
|
|
4039
4045
|
} & {
|
|
4040
4046
|
children?: ReactNode | undefined;
|
|
4041
|
-
} & (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) & {
|
|
4042
4048
|
ref?: PolymorphicRef<C> | undefined;
|
|
4043
4049
|
} & RefAttributes<unknown>) => React.ReactElement<any> | null;
|
|
4044
4050
|
|
|
@@ -4153,7 +4159,7 @@ export declare const HvInlineEditor: <C extends React.ElementType = <InputElemen
|
|
|
4153
4159
|
component?: C | undefined;
|
|
4154
4160
|
} & {
|
|
4155
4161
|
children?: ReactNode | undefined;
|
|
4156
|
-
} & (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) & {
|
|
4157
4163
|
ref?: PolymorphicRef<C> | undefined;
|
|
4158
4164
|
} & RefAttributes<unknown>) => React.ReactElement<any> | null;
|
|
4159
4165
|
|
|
@@ -6122,7 +6128,7 @@ export declare interface HvSwitchColumnCellProp {
|
|
|
6122
6128
|
switchProps?: HvBaseSwitchProps;
|
|
6123
6129
|
}
|
|
6124
6130
|
|
|
6125
|
-
export declare interface HvSwitchProps extends Omit<SwitchProps, "color" | "onChange" | "classes"> {
|
|
6131
|
+
export declare interface HvSwitchProps extends Omit<SwitchProps, "color" | "onChange" | "classes" | "size"> {
|
|
6126
6132
|
/**
|
|
6127
6133
|
* A Jss Object used to override or extend the styles applied to the switch.
|
|
6128
6134
|
*/
|
|
@@ -6208,6 +6214,8 @@ export declare interface HvSwitchProps extends Omit<SwitchProps, "color" | "onCh
|
|
|
6208
6214
|
component?: SwitchProps["component"];
|
|
6209
6215
|
/** Color applied to the switch. */
|
|
6210
6216
|
color?: HvColorAny;
|
|
6217
|
+
/** The size of the switch. */
|
|
6218
|
+
size?: HvBaseSwitchProps["size"];
|
|
6211
6219
|
}
|
|
6212
6220
|
|
|
6213
6221
|
export declare const HvTab: ForwardRefExoticComponent<Omit<HvTabProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
@@ -8391,7 +8399,7 @@ declare const useClasses_10: (classesProp?: Partial<Record<"root" | "labelDisabl
|
|
|
8391
8399
|
readonly cx: (...args: any) => string;
|
|
8392
8400
|
};
|
|
8393
8401
|
|
|
8394
|
-
declare const useClasses_100: (classesProp?: Partial<Record<"
|
|
8402
|
+
declare const useClasses_100: (classesProp?: Partial<Record<"selected" | "root" | "positionSticky" | "positionFixed" | "notSelectedRoot" | "notSelected", string>>, addStatic?: boolean) => {
|
|
8395
8403
|
readonly classes: {
|
|
8396
8404
|
root: string;
|
|
8397
8405
|
positionSticky: string;
|
|
@@ -8426,7 +8434,7 @@ declare const useClasses_102: (classesProp?: Partial<Record<"root" | "positionFi
|
|
|
8426
8434
|
readonly cx: (...args: any) => string;
|
|
8427
8435
|
};
|
|
8428
8436
|
|
|
8429
|
-
declare const useClasses_103: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "
|
|
8437
|
+
declare const useClasses_103: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "actions" | "headerExpandable" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
|
|
8430
8438
|
readonly classes: {
|
|
8431
8439
|
root: string;
|
|
8432
8440
|
hidden: string;
|
|
@@ -8450,7 +8458,7 @@ declare const useClasses_104: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8450
8458
|
readonly cx: (...args: any) => string;
|
|
8451
8459
|
};
|
|
8452
8460
|
|
|
8453
|
-
declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "error" | "
|
|
8461
|
+
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) => {
|
|
8454
8462
|
readonly classes: {
|
|
8455
8463
|
sliderBase: string;
|
|
8456
8464
|
rootDisabled: string;
|
|
@@ -8475,7 +8483,7 @@ declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8475
8483
|
readonly cx: (...args: any) => string;
|
|
8476
8484
|
};
|
|
8477
8485
|
|
|
8478
|
-
declare const useClasses_106: (classesProp?: Partial<Record<"root" | "
|
|
8486
|
+
declare const useClasses_106: (classesProp?: Partial<Record<"root" | "anchorOriginTopRight" | "anchorOriginTopLeft" | "anchorOriginTopCenter" | "anchorOriginBottomCenter" | "anchorOriginBottomLeft" | "anchorOriginBottomRight", string>>, addStatic?: boolean) => {
|
|
8479
8487
|
readonly classes: {
|
|
8480
8488
|
root: string;
|
|
8481
8489
|
anchorOriginTopRight: string;
|
|
@@ -8489,7 +8497,7 @@ declare const useClasses_106: (classesProp?: Partial<Record<"root" | "anchorOrig
|
|
|
8489
8497
|
readonly cx: (...args: any) => string;
|
|
8490
8498
|
};
|
|
8491
8499
|
|
|
8492
|
-
declare const useClasses_107: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "
|
|
8500
|
+
declare const useClasses_107: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "action" | "root" | "error" | "success" | "message" | "messageText" | "iconVariant" | "messageSpan", string>>, addStatic?: boolean) => {
|
|
8493
8501
|
readonly classes: {
|
|
8494
8502
|
root: string;
|
|
8495
8503
|
success: string;
|
|
@@ -8571,7 +8579,7 @@ declare const useClasses_112: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8571
8579
|
readonly cx: (...args: any) => string;
|
|
8572
8580
|
};
|
|
8573
8581
|
|
|
8574
|
-
declare const useClasses_113: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "
|
|
8582
|
+
declare const useClasses_113: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
|
|
8575
8583
|
readonly classes: {
|
|
8576
8584
|
root: string;
|
|
8577
8585
|
header: string;
|
|
@@ -8603,7 +8611,7 @@ declare const useClasses_115: (classesProp?: Partial<Record<"root" | "stickyHead
|
|
|
8603
8611
|
readonly cx: (...args: any) => string;
|
|
8604
8612
|
};
|
|
8605
8613
|
|
|
8606
|
-
declare const useClasses_116: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "label" | "button" | "icon" | "disabled" | "
|
|
8614
|
+
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) => {
|
|
8607
8615
|
readonly classes: {
|
|
8608
8616
|
root: string;
|
|
8609
8617
|
hasIcon: string;
|
|
@@ -8630,7 +8638,7 @@ declare const useClasses_116: (classesProp?: Partial<Record<"xs" | "sm" | "md" |
|
|
|
8630
8638
|
readonly cx: (...args: any) => string;
|
|
8631
8639
|
};
|
|
8632
8640
|
|
|
8633
|
-
declare const useClasses_117: (classesProp?: Partial<Record<"root" | "
|
|
8641
|
+
declare const useClasses_117: (classesProp?: Partial<Record<"root" | "indicator" | "scroller" | "flexContainer" | "floating", string>>, addStatic?: boolean) => {
|
|
8634
8642
|
readonly classes: {
|
|
8635
8643
|
root: string;
|
|
8636
8644
|
indicator: string;
|
|
@@ -8642,7 +8650,7 @@ declare const useClasses_117: (classesProp?: Partial<Record<"root" | "floating"
|
|
|
8642
8650
|
readonly cx: (...args: any) => string;
|
|
8643
8651
|
};
|
|
8644
8652
|
|
|
8645
|
-
declare const useClasses_118: (classesProp?: Partial<Record<"disabled" | "
|
|
8653
|
+
declare const useClasses_118: (classesProp?: Partial<Record<"disabled" | "selected" | "root" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
8646
8654
|
readonly classes: {
|
|
8647
8655
|
root: string;
|
|
8648
8656
|
focusVisible: string;
|
|
@@ -8653,7 +8661,7 @@ declare const useClasses_118: (classesProp?: Partial<Record<"disabled" | "root"
|
|
|
8653
8661
|
readonly cx: (...args: any) => string;
|
|
8654
8662
|
};
|
|
8655
8663
|
|
|
8656
|
-
declare const useClasses_119: (classesProp?: Partial<Record<"label" | "disabled" | "
|
|
8664
|
+
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) => {
|
|
8657
8665
|
readonly classes: {
|
|
8658
8666
|
listItemGutters: string;
|
|
8659
8667
|
listItemRoot: string;
|
|
@@ -8699,7 +8707,7 @@ declare const useClasses_12: (classesProp?: Partial<Record<"show" | "root" | "de
|
|
|
8699
8707
|
readonly cx: (...args: any) => string;
|
|
8700
8708
|
};
|
|
8701
8709
|
|
|
8702
|
-
declare const useClasses_120: (classesProp?: Partial<Record<"label" | "disabled" | "
|
|
8710
|
+
declare const useClasses_120: (classesProp?: Partial<Record<"label" | "disabled" | "input" | "root" | "error" | "description" | "invalid" | "resizable" | "inputResizable" | "labelContainer" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
|
|
8703
8711
|
readonly classes: {
|
|
8704
8712
|
root: string;
|
|
8705
8713
|
disabled: string;
|
|
@@ -8726,7 +8734,7 @@ declare const useClasses_121: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8726
8734
|
readonly cx: (...args: any) => string;
|
|
8727
8735
|
};
|
|
8728
8736
|
|
|
8729
|
-
declare const useClasses_122: (classesProp?: Partial<Record<"label" | "icon" | "
|
|
8737
|
+
declare const useClasses_122: (classesProp?: Partial<Record<"label" | "icon" | "placeholder" | "root" | "error" | "description" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
|
|
8730
8738
|
readonly classes: {
|
|
8731
8739
|
root: string;
|
|
8732
8740
|
labelContainer: string;
|
|
@@ -8754,7 +8762,7 @@ declare const useClasses_123: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8754
8762
|
readonly cx: (...args: any) => string;
|
|
8755
8763
|
};
|
|
8756
8764
|
|
|
8757
|
-
declare const useClasses_124: (classesProp?: Partial<Record<"content" | "label" | "expanded" | "disabled" | "
|
|
8765
|
+
declare const useClasses_124: (classesProp?: Partial<Record<"content" | "label" | "expanded" | "disabled" | "selected" | "root" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
|
|
8758
8766
|
readonly classes: {
|
|
8759
8767
|
root: string;
|
|
8760
8768
|
group: string;
|
|
@@ -8770,7 +8778,7 @@ declare const useClasses_124: (classesProp?: Partial<Record<"content" | "label"
|
|
|
8770
8778
|
readonly cx: (...args: any) => string;
|
|
8771
8779
|
};
|
|
8772
8780
|
|
|
8773
|
-
declare const useClasses_125: (classesProp?: Partial<Record<"label" | "expanded" | "disabled" | "
|
|
8781
|
+
declare const useClasses_125: (classesProp?: Partial<Record<"label" | "expanded" | "disabled" | "selected" | "root" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
|
|
8774
8782
|
readonly classes: {
|
|
8775
8783
|
root: string;
|
|
8776
8784
|
expanded: string;
|
|
@@ -8795,7 +8803,7 @@ declare const useClasses_126: (classesProp?: Partial<Record<"root" | "slider" |
|
|
|
8795
8803
|
readonly cx: (...args: any) => string;
|
|
8796
8804
|
};
|
|
8797
8805
|
|
|
8798
|
-
declare const useClasses_127: (classesProp?: Partial<Record<"
|
|
8806
|
+
declare const useClasses_127: (classesProp?: Partial<Record<"title" | "root" | "backButton" | "minimized" | "collapseButton", string>>, addStatic?: boolean) => {
|
|
8799
8807
|
readonly classes: {
|
|
8800
8808
|
root: string;
|
|
8801
8809
|
minimized: string;
|
|
@@ -8826,7 +8834,7 @@ declare const useClasses_129: (classesProp?: Partial<Record<"action" | "minimize
|
|
|
8826
8834
|
readonly cx: (...args: any) => string;
|
|
8827
8835
|
};
|
|
8828
8836
|
|
|
8829
|
-
declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled" | "
|
|
8837
|
+
declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled" | "select" | "readOnly" | "root" | "error" | "description" | "invalid" | "panel" | "panelOpenedUp" | "panelOpenedDown" | "popper" | "labelContainer", string>>, addStatic?: boolean) => {
|
|
8830
8838
|
readonly classes: {
|
|
8831
8839
|
root: string;
|
|
8832
8840
|
disabled: string;
|
|
@@ -8846,7 +8854,7 @@ declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled"
|
|
|
8846
8854
|
readonly cx: (...args: any) => string;
|
|
8847
8855
|
};
|
|
8848
8856
|
|
|
8849
|
-
declare const useClasses_130: (classesProp?: Partial<Record<"
|
|
8857
|
+
declare const useClasses_130: (classesProp?: Partial<Record<"list" | "root" | "popup" | "listItem" | "collapsed" | "navigationPopup", string>>, addStatic?: boolean) => {
|
|
8850
8858
|
readonly classes: {
|
|
8851
8859
|
root: string;
|
|
8852
8860
|
list: string;
|
|
@@ -8859,7 +8867,7 @@ declare const useClasses_130: (classesProp?: Partial<Record<"root" | "list" | "p
|
|
|
8859
8867
|
readonly cx: (...args: any) => string;
|
|
8860
8868
|
};
|
|
8861
8869
|
|
|
8862
|
-
declare const useClasses_131: (classesProp?: Partial<Record<"root" | "
|
|
8870
|
+
declare const useClasses_131: (classesProp?: Partial<Record<"root" | "listContainer" | "listItemSelected" | "listItemFocus" | "forwardButton" | "listItemDisabled", string>>, addStatic?: boolean) => {
|
|
8863
8871
|
readonly classes: {
|
|
8864
8872
|
root: string;
|
|
8865
8873
|
listItemSelected: string;
|
|
@@ -8880,7 +8888,7 @@ declare const useClasses_132: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8880
8888
|
readonly cx: (...args: any) => string;
|
|
8881
8889
|
};
|
|
8882
8890
|
|
|
8883
|
-
declare const useClasses_133: (classesProp?: Partial<Record<"hide" | "content" | "label" | "link" | "expanded" | "icon" | "disabled" | "unselectable" | "selected" | "group" | "
|
|
8891
|
+
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) => {
|
|
8884
8892
|
readonly classes: {
|
|
8885
8893
|
node: string;
|
|
8886
8894
|
content: string;
|
|
@@ -8920,7 +8928,7 @@ declare const useClasses_134: (classesProp?: Partial<Record<"text" | "circle" |
|
|
|
8920
8928
|
readonly cx: (...args: any) => string;
|
|
8921
8929
|
};
|
|
8922
8930
|
|
|
8923
|
-
declare const useClasses_14: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "semantic" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "icon" | "disabled" | "root" | "
|
|
8931
|
+
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) => {
|
|
8924
8932
|
readonly classes: {
|
|
8925
8933
|
root: string;
|
|
8926
8934
|
startIcon: string;
|
|
@@ -8960,7 +8968,7 @@ declare const useClasses_16: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
8960
8968
|
readonly cx: (...args: any) => string;
|
|
8961
8969
|
};
|
|
8962
8970
|
|
|
8963
|
-
declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "listbox" | "root" | "
|
|
8971
|
+
declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "listbox" | "root" | "error" | "description" | "invalid", string>>, addStatic?: boolean) => {
|
|
8964
8972
|
readonly classes: {
|
|
8965
8973
|
root: string;
|
|
8966
8974
|
error: string;
|
|
@@ -8975,7 +8983,7 @@ declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizon
|
|
|
8975
8983
|
readonly cx: (...args: any) => string;
|
|
8976
8984
|
};
|
|
8977
8985
|
|
|
8978
|
-
declare const useClasses_18: (classesProp?: Partial<Record<"
|
|
8986
|
+
declare const useClasses_18: (classesProp?: Partial<Record<"list" | "root" | "popper" | "portal", string>>, addStatic?: boolean) => {
|
|
8979
8987
|
readonly classes: {
|
|
8980
8988
|
root: string;
|
|
8981
8989
|
list: string;
|
|
@@ -8986,7 +8994,7 @@ declare const useClasses_18: (classesProp?: Partial<Record<"root" | "popper" | "
|
|
|
8986
8994
|
readonly cx: (...args: any) => string;
|
|
8987
8995
|
};
|
|
8988
8996
|
|
|
8989
|
-
declare const useClasses_19: (classesProp?: Partial<Record<"disabled" | "
|
|
8997
|
+
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) => {
|
|
8990
8998
|
readonly classes: {
|
|
8991
8999
|
root: string;
|
|
8992
9000
|
disabled: string;
|
|
@@ -9052,7 +9060,7 @@ declare const useClasses_2: (classesProp?: Partial<Record<"display" | "title1" |
|
|
|
9052
9060
|
readonly cx: (...args: any) => string;
|
|
9053
9061
|
};
|
|
9054
9062
|
|
|
9055
|
-
declare const useClasses_20: (classesProp?: Partial<Record<"container" | "header" | "anchor" | "
|
|
9063
|
+
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) => {
|
|
9056
9064
|
readonly classes: {
|
|
9057
9065
|
root: string;
|
|
9058
9066
|
rootDisabled: string;
|
|
@@ -9115,7 +9123,7 @@ declare const useClasses_23: (classesProp?: Partial<Record<"button" | "root" | "
|
|
|
9115
9123
|
readonly cx: (...args: any) => string;
|
|
9116
9124
|
};
|
|
9117
9125
|
|
|
9118
|
-
declare const useClasses_24: (classesProp?: Partial<Record<"container" | "icon" | "root" | "
|
|
9126
|
+
declare const useClasses_24: (classesProp?: Partial<Record<"container" | "icon" | "root" | "baseContainer" | "iconSelected" | "menuListRoot" | "menuList", string>>, addStatic?: boolean) => {
|
|
9119
9127
|
readonly classes: {
|
|
9120
9128
|
root: string;
|
|
9121
9129
|
container: string;
|
|
@@ -9129,7 +9137,7 @@ declare const useClasses_24: (classesProp?: Partial<Record<"container" | "icon"
|
|
|
9129
9137
|
readonly cx: (...args: any) => string;
|
|
9130
9138
|
};
|
|
9131
9139
|
|
|
9132
|
-
declare const useClasses_25: (classesProp?: Partial<Record<"open" | "single" | "
|
|
9140
|
+
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) => {
|
|
9133
9141
|
readonly classes: {
|
|
9134
9142
|
root: string;
|
|
9135
9143
|
item: string;
|
|
@@ -9153,7 +9161,7 @@ declare const useClasses_25: (classesProp?: Partial<Record<"open" | "single" | "
|
|
|
9153
9161
|
readonly cx: (...args: any) => string;
|
|
9154
9162
|
};
|
|
9155
9163
|
|
|
9156
|
-
declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "icon" | "disabled" | "
|
|
9164
|
+
declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "icon" | "disabled" | "title" | "selected" | "root" | "iconUrl" | "iconInfo" | "titleAnchor", string>>, addStatic?: boolean) => {
|
|
9157
9165
|
readonly classes: {
|
|
9158
9166
|
root: string;
|
|
9159
9167
|
icon: string;
|
|
@@ -9169,7 +9177,7 @@ declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "icon"
|
|
|
9169
9177
|
readonly cx: (...args: any) => string;
|
|
9170
9178
|
};
|
|
9171
9179
|
|
|
9172
|
-
declare const useClasses_27: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "container" | "square" | "
|
|
9180
|
+
declare const useClasses_27: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "container" | "square" | "img" | "root" | "status" | "avatar" | "fallback" | "badge" | "circular", string>>, addStatic?: boolean) => {
|
|
9173
9181
|
readonly classes: {
|
|
9174
9182
|
root: string;
|
|
9175
9183
|
img: string;
|
|
@@ -9202,7 +9210,7 @@ declare const useClasses_28: (classesProp?: Partial<Record<"column" | "row" | "r
|
|
|
9202
9210
|
readonly cx: (...args: any) => string;
|
|
9203
9211
|
};
|
|
9204
9212
|
|
|
9205
|
-
declare const useClasses_29: (classesProp?: Partial<Record<"root" | "
|
|
9213
|
+
declare const useClasses_29: (classesProp?: Partial<Record<"root" | "badge" | "badgeContainer" | "badgePosition" | "badgeHidden" | "showCount" | "showLabel" | "badgeIcon" | "badgeOneDigit", string>>, addStatic?: boolean) => {
|
|
9206
9214
|
readonly classes: {
|
|
9207
9215
|
root: string;
|
|
9208
9216
|
badgeContainer: string;
|
|
@@ -9227,7 +9235,7 @@ declare const useClasses_3: (classesProp?: Partial<Record<"disabled" | "root", s
|
|
|
9227
9235
|
readonly cx: (...args: any) => string;
|
|
9228
9236
|
};
|
|
9229
9237
|
|
|
9230
|
-
declare const useClasses_30: (classesProp?: Partial<Record<"root" | "
|
|
9238
|
+
declare const useClasses_30: (classesProp?: Partial<Record<"root" | "anchorOriginTopCenter" | "anchorOriginBottomCenter" | "rootClosed", string>>, addStatic?: boolean) => {
|
|
9231
9239
|
readonly classes: {
|
|
9232
9240
|
rootClosed: string;
|
|
9233
9241
|
root: string;
|
|
@@ -9238,7 +9246,7 @@ declare const useClasses_30: (classesProp?: Partial<Record<"root" | "rootClosed"
|
|
|
9238
9246
|
readonly cx: (...args: any) => string;
|
|
9239
9247
|
};
|
|
9240
9248
|
|
|
9241
|
-
declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "
|
|
9249
|
+
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) => {
|
|
9242
9250
|
readonly classes: {
|
|
9243
9251
|
root: string;
|
|
9244
9252
|
success: string;
|
|
@@ -9262,7 +9270,7 @@ declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning"
|
|
|
9262
9270
|
readonly cx: (...args: any) => string;
|
|
9263
9271
|
};
|
|
9264
9272
|
|
|
9265
|
-
declare const useClasses_32: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "
|
|
9273
|
+
declare const useClasses_32: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "checked" | "root" | "focusVisible" | "indeterminate", string>>, addStatic?: boolean) => {
|
|
9266
9274
|
readonly classes: {
|
|
9267
9275
|
root: string;
|
|
9268
9276
|
disabled: string;
|
|
@@ -9276,7 +9284,7 @@ declare const useClasses_32: (classesProp?: Partial<Record<"semantic" | "icon" |
|
|
|
9276
9284
|
readonly cx: (...args: any) => string;
|
|
9277
9285
|
};
|
|
9278
9286
|
|
|
9279
|
-
declare const useClasses_33: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "
|
|
9287
|
+
declare const useClasses_33: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "checked" | "root" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
9280
9288
|
readonly classes: {
|
|
9281
9289
|
root: string;
|
|
9282
9290
|
disabled: string;
|
|
@@ -9289,7 +9297,7 @@ declare const useClasses_33: (classesProp?: Partial<Record<"semantic" | "icon" |
|
|
|
9289
9297
|
readonly cx: (...args: any) => string;
|
|
9290
9298
|
};
|
|
9291
9299
|
|
|
9292
|
-
declare const useClasses_34: (classesProp?: Partial<Record<"disabled" | "
|
|
9300
|
+
declare const useClasses_34: (classesProp?: Partial<Record<"disabled" | "track" | "switch" | "readOnly" | "checked" | "root" | "focusVisible" | "switchBase" | "thumb", string>>, addStatic?: boolean) => {
|
|
9293
9301
|
readonly classes: {
|
|
9294
9302
|
root: string;
|
|
9295
9303
|
switch: string;
|
|
@@ -9305,7 +9313,7 @@ declare const useClasses_34: (classesProp?: Partial<Record<"disabled" | "root" |
|
|
|
9305
9313
|
readonly cx: (...args: any) => string;
|
|
9306
9314
|
};
|
|
9307
9315
|
|
|
9308
|
-
declare const useClasses_35: (classesProp?: Partial<Record<"link" | "
|
|
9316
|
+
declare const useClasses_35: (classesProp?: Partial<Record<"link" | "a" | "root" | "currentPage" | "orderedList" | "centerContainer" | "separatorContainer", string>>, addStatic?: boolean) => {
|
|
9309
9317
|
readonly classes: {
|
|
9310
9318
|
root: string;
|
|
9311
9319
|
link: string;
|
|
@@ -9319,7 +9327,7 @@ declare const useClasses_35: (classesProp?: Partial<Record<"link" | "root" | "a"
|
|
|
9319
9327
|
readonly cx: (...args: any) => string;
|
|
9320
9328
|
};
|
|
9321
9329
|
|
|
9322
|
-
declare const useClasses_36: (classesProp?: Partial<Record<"semantic" | "root" | "
|
|
9330
|
+
declare const useClasses_36: (classesProp?: Partial<Record<"semantic" | "root" | "selectAll" | "actions" | "selectAllContainer" | "selectAllPages" | "divider", string>>, addStatic?: boolean) => {
|
|
9323
9331
|
readonly classes: {
|
|
9324
9332
|
root: string;
|
|
9325
9333
|
semantic: string;
|
|
@@ -9333,7 +9341,7 @@ declare const useClasses_36: (classesProp?: Partial<Record<"semantic" | "root" |
|
|
|
9333
9341
|
readonly cx: (...args: any) => string;
|
|
9334
9342
|
};
|
|
9335
9343
|
|
|
9336
|
-
declare const useClasses_37: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "checkbox" | "disabled" | "
|
|
9344
|
+
declare const useClasses_37: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "checkbox" | "disabled" | "checked" | "root" | "focusVisible" | "indeterminate" | "invalidContainer" | "invalidCheckbox", string>>, addStatic?: boolean) => {
|
|
9337
9345
|
readonly classes: {
|
|
9338
9346
|
root: string;
|
|
9339
9347
|
container: string;
|
|
@@ -9374,7 +9382,7 @@ declare const useClasses_39: (classesProp?: Partial<Record<"root" | "invalid" |
|
|
|
9374
9382
|
readonly cx: (...args: any) => string;
|
|
9375
9383
|
};
|
|
9376
9384
|
|
|
9377
|
-
declare const useClasses_4: (classesProp?: Partial<Record<"disabled" | "
|
|
9385
|
+
declare const useClasses_4: (classesProp?: Partial<Record<"disabled" | "selected" | "root" | "focus" | "focused" | "focusDisabled", string>>, addStatic?: boolean) => {
|
|
9378
9386
|
readonly classes: {
|
|
9379
9387
|
root: string;
|
|
9380
9388
|
selected: string;
|
|
@@ -9410,7 +9418,7 @@ declare const useClasses_40: (classesProp?: Partial<Record<"root" | "focusSelect
|
|
|
9410
9418
|
readonly cx: (...args: any) => string;
|
|
9411
9419
|
};
|
|
9412
9420
|
|
|
9413
|
-
declare const useClasses_41: (classesProp?: Partial<Record<"icon" | "
|
|
9421
|
+
declare const useClasses_41: (classesProp?: Partial<Record<"icon" | "selected" | "root" | "selectable" | "semanticContainer" | "semanticBar", string>>, addStatic?: boolean) => {
|
|
9414
9422
|
readonly classes: {
|
|
9415
9423
|
root: string;
|
|
9416
9424
|
selected: string;
|
|
@@ -9423,7 +9431,7 @@ declare const useClasses_41: (classesProp?: Partial<Record<"icon" | "root" | "se
|
|
|
9423
9431
|
readonly cx: (...args: any) => string;
|
|
9424
9432
|
};
|
|
9425
9433
|
|
|
9426
|
-
declare const useClasses_42: (classesProp?: Partial<Record<"content" | "
|
|
9434
|
+
declare const useClasses_42: (classesProp?: Partial<Record<"content" | "title" | "action" | "root" | "titleShort" | "subheader", string>>, addStatic?: boolean) => {
|
|
9427
9435
|
readonly classes: {
|
|
9428
9436
|
root: string;
|
|
9429
9437
|
titleShort: string;
|
|
@@ -9444,7 +9452,7 @@ declare const useClasses_43: (classesProp?: Partial<Record<"content", string>>,
|
|
|
9444
9452
|
readonly cx: (...args: any) => string;
|
|
9445
9453
|
};
|
|
9446
9454
|
|
|
9447
|
-
declare const useClasses_44: (classesProp?: Partial<Record<"
|
|
9455
|
+
declare const useClasses_44: (classesProp?: Partial<Record<"media" | "root", string>>, addStatic?: boolean) => {
|
|
9448
9456
|
readonly classes: {
|
|
9449
9457
|
root: string;
|
|
9450
9458
|
media: string;
|
|
@@ -9453,7 +9461,7 @@ declare const useClasses_44: (classesProp?: Partial<Record<"root" | "media", str
|
|
|
9453
9461
|
readonly cx: (...args: any) => string;
|
|
9454
9462
|
};
|
|
9455
9463
|
|
|
9456
|
-
declare const useClasses_45: (classesProp?: Partial<Record<"xs" | "dot" | "
|
|
9464
|
+
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) => {
|
|
9457
9465
|
readonly classes: {
|
|
9458
9466
|
root: string;
|
|
9459
9467
|
xs: string;
|
|
@@ -9493,7 +9501,7 @@ declare const useClasses_46: (classesProp?: Partial<Record<"image" | "slide", st
|
|
|
9493
9501
|
readonly cx: (...args: any) => string;
|
|
9494
9502
|
};
|
|
9495
9503
|
|
|
9496
|
-
declare const useClasses_47: (classesProp?: Partial<Record<"label" | "icon" | "
|
|
9504
|
+
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) => {
|
|
9497
9505
|
readonly classes: {
|
|
9498
9506
|
root: string;
|
|
9499
9507
|
labelContainer: string;
|
|
@@ -9519,7 +9527,7 @@ declare const useClasses_47: (classesProp?: Partial<Record<"label" | "icon" | "r
|
|
|
9519
9527
|
readonly cx: (...args: any) => string;
|
|
9520
9528
|
};
|
|
9521
9529
|
|
|
9522
|
-
declare const useClasses_48: (classesProp?: Partial<Record<"icon" | "root" | "
|
|
9530
|
+
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) => {
|
|
9523
9531
|
readonly classes: {
|
|
9524
9532
|
root: string;
|
|
9525
9533
|
pageSizeOptions: string;
|
|
@@ -9564,7 +9572,7 @@ declare const useClasses_5: (classesProp?: Partial<Record<"root", string>>, addS
|
|
|
9564
9572
|
readonly cx: (...args: any) => string;
|
|
9565
9573
|
};
|
|
9566
9574
|
|
|
9567
|
-
declare const useClasses_50: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "
|
|
9575
|
+
declare const useClasses_50: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "description" | "panel" | "labelContainer" | "headerColorValue" | "headerColorIcon" | "colorPickerIcon" | "recommendedColorsRoot" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
|
|
9568
9576
|
readonly classes: {
|
|
9569
9577
|
root: string;
|
|
9570
9578
|
labelContainer: string;
|
|
@@ -9599,7 +9607,7 @@ declare const useClasses_51: (classesProp?: Partial<Record<"fixed" | "root" | "d
|
|
|
9599
9607
|
readonly cx: (...args: any) => string;
|
|
9600
9608
|
};
|
|
9601
9609
|
|
|
9602
|
-
declare const useClasses_52: (classesProp?: Partial<Record<"
|
|
9610
|
+
declare const useClasses_52: (classesProp?: Partial<Record<"section" | "root" | "rightSection" | "leftSection", string>>, addStatic?: boolean) => {
|
|
9603
9611
|
readonly classes: {
|
|
9604
9612
|
root: string;
|
|
9605
9613
|
section: string;
|
|
@@ -9610,7 +9618,7 @@ declare const useClasses_52: (classesProp?: Partial<Record<"root" | "section" |
|
|
|
9610
9618
|
readonly cx: (...args: any) => string;
|
|
9611
9619
|
};
|
|
9612
9620
|
|
|
9613
|
-
declare const useClasses_53: (classesProp?: Partial<Record<"body" | "
|
|
9621
|
+
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) => {
|
|
9614
9622
|
readonly classes: {
|
|
9615
9623
|
root: string;
|
|
9616
9624
|
head: string;
|
|
@@ -9641,7 +9649,7 @@ declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "fo
|
|
|
9641
9649
|
readonly cx: (...args: any) => string;
|
|
9642
9650
|
};
|
|
9643
9651
|
|
|
9644
|
-
declare const useClasses_54: (classesProp?: Partial<Record<"body" | "expanded" | "
|
|
9652
|
+
declare const useClasses_54: (classesProp?: Partial<Record<"body" | "expanded" | "footer" | "head" | "selected" | "root" | "variantList" | "variantListHead" | "striped" | "hover", string>>, addStatic?: boolean) => {
|
|
9645
9653
|
readonly classes: {
|
|
9646
9654
|
root: string;
|
|
9647
9655
|
head: string;
|
|
@@ -9658,7 +9666,7 @@ declare const useClasses_54: (classesProp?: Partial<Record<"body" | "expanded" |
|
|
|
9658
9666
|
readonly cx: (...args: any) => string;
|
|
9659
9667
|
};
|
|
9660
9668
|
|
|
9661
|
-
declare const useClasses_55: (classesProp?: Partial<Record<"body" | "resizer" | "
|
|
9669
|
+
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) => {
|
|
9662
9670
|
readonly classes: {
|
|
9663
9671
|
root: string;
|
|
9664
9672
|
head: string;
|
|
@@ -9726,7 +9734,7 @@ declare const useClasses_58: (classesProp?: Partial<Record<"root" | "sortDropdow
|
|
|
9726
9734
|
readonly cx: (...args: any) => string;
|
|
9727
9735
|
};
|
|
9728
9736
|
|
|
9729
|
-
declare const useClasses_59: (classesProp?: Partial<Record<"dropdown" | "label" | "disabled" | "
|
|
9737
|
+
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) => {
|
|
9730
9738
|
readonly classes: {
|
|
9731
9739
|
root: string;
|
|
9732
9740
|
labelContainer: string;
|
|
@@ -9750,7 +9758,7 @@ declare const useClasses_59: (classesProp?: Partial<Record<"dropdown" | "label"
|
|
|
9750
9758
|
readonly cx: (...args: any) => string;
|
|
9751
9759
|
};
|
|
9752
9760
|
|
|
9753
|
-
declare const useClasses_6: (classesProp?: Partial<Record<"condensed" | "disabled" | "
|
|
9761
|
+
declare const useClasses_6: (classesProp?: Partial<Record<"condensed" | "disabled" | "selected" | "root" | "focus" | "endAdornment" | "startAdornment" | "interactive" | "gutters" | "withStartAdornment" | "withEndAdornment", string>>, addStatic?: boolean) => {
|
|
9754
9762
|
readonly classes: {
|
|
9755
9763
|
root: string;
|
|
9756
9764
|
focus: string;
|
|
@@ -9768,7 +9776,7 @@ declare const useClasses_6: (classesProp?: Partial<Record<"condensed" | "disable
|
|
|
9768
9776
|
readonly cx: (...args: any) => string;
|
|
9769
9777
|
};
|
|
9770
9778
|
|
|
9771
|
-
declare const useClasses_60: (classesProp?: Partial<Record<"
|
|
9779
|
+
declare const useClasses_60: (classesProp?: Partial<Record<"virtualized" | "selectAll" | "dropdownListContainer" | "rootList" | "searchContainer" | "listBorderDown" | "listContainer", string>>, addStatic?: boolean) => {
|
|
9772
9780
|
readonly classes: {
|
|
9773
9781
|
rootList: string;
|
|
9774
9782
|
dropdownListContainer: string;
|
|
@@ -9782,7 +9790,7 @@ declare const useClasses_60: (classesProp?: Partial<Record<"listContainer" | "vi
|
|
|
9782
9790
|
readonly cx: (...args: any) => string;
|
|
9783
9791
|
};
|
|
9784
9792
|
|
|
9785
|
-
declare const useClasses_61: (classesProp?: Partial<Record<"dropdown" | "container" | "label" | "icon" | "
|
|
9793
|
+
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) => {
|
|
9786
9794
|
readonly classes: {
|
|
9787
9795
|
root: string;
|
|
9788
9796
|
actionContainer: string;
|
|
@@ -9806,7 +9814,7 @@ declare const useClasses_61: (classesProp?: Partial<Record<"dropdown" | "contain
|
|
|
9806
9814
|
readonly cx: (...args: any) => string;
|
|
9807
9815
|
};
|
|
9808
9816
|
|
|
9809
|
-
declare const useClasses_62: (classesProp?: Partial<Record<"root" | "
|
|
9817
|
+
declare const useClasses_62: (classesProp?: Partial<Record<"root" | "fullscreen" | "messageContainer" | "textWithIcon" | "titleText", string>>, addStatic?: boolean) => {
|
|
9810
9818
|
readonly classes: {
|
|
9811
9819
|
root: string;
|
|
9812
9820
|
fullscreen: string;
|
|
@@ -9827,7 +9835,7 @@ declare const useClasses_63: (classesProp?: Partial<Record<"root" | "textContent
|
|
|
9827
9835
|
readonly cx: (...args: any) => string;
|
|
9828
9836
|
};
|
|
9829
9837
|
|
|
9830
|
-
declare const useClasses_64: (classesProp?: Partial<Record<"
|
|
9838
|
+
declare const useClasses_64: (classesProp?: Partial<Record<"spacing" | "root" | "fullscreen", string>>, addStatic?: boolean) => {
|
|
9831
9839
|
readonly classes: {
|
|
9832
9840
|
root: string;
|
|
9833
9841
|
fullscreen: string;
|
|
@@ -9837,7 +9845,7 @@ declare const useClasses_64: (classesProp?: Partial<Record<"root" | "spacing" |
|
|
|
9837
9845
|
readonly cx: (...args: any) => string;
|
|
9838
9846
|
};
|
|
9839
9847
|
|
|
9840
|
-
declare const useClasses_65: (classesProp?: Partial<Record<"warning" | "background" | "root" | "error" | "success" | "
|
|
9848
|
+
declare const useClasses_65: (classesProp?: Partial<Record<"warning" | "background" | "root" | "error" | "success" | "fullscreen" | "closeButton" | "paper" | "fullHeight" | "statusBar", string>>, addStatic?: boolean) => {
|
|
9841
9849
|
readonly classes: {
|
|
9842
9850
|
root: string;
|
|
9843
9851
|
background: string;
|
|
@@ -9880,7 +9888,7 @@ declare const useClasses_67: (classesProp?: Partial<Record<"vertical" | "horizon
|
|
|
9880
9888
|
readonly cx: (...args: any) => string;
|
|
9881
9889
|
};
|
|
9882
9890
|
|
|
9883
|
-
declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root" | "
|
|
9891
|
+
declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root" | "closeButton" | "paper", string>>, addStatic?: boolean) => {
|
|
9884
9892
|
readonly classes: {
|
|
9885
9893
|
root: string;
|
|
9886
9894
|
paper: string;
|
|
@@ -9891,7 +9899,7 @@ declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root"
|
|
|
9891
9899
|
readonly cx: (...args: any) => string;
|
|
9892
9900
|
};
|
|
9893
9901
|
|
|
9894
|
-
declare const useClasses_69: (classesProp?: Partial<Record<"container" | "root" | "actionContainer" | "
|
|
9902
|
+
declare const useClasses_69: (classesProp?: Partial<Record<"container" | "root" | "actionContainer" | "iconContainer" | "messageContainer" | "containerMessageOnly" | "titleContainer" | "textContainer", string>>, addStatic?: boolean) => {
|
|
9895
9903
|
readonly classes: {
|
|
9896
9904
|
root: string;
|
|
9897
9905
|
container: string;
|
|
@@ -9969,7 +9977,7 @@ declare const useClasses_73: (classesProp?: Partial<Record<"dropZoneContainer" |
|
|
|
9969
9977
|
readonly cx: (...args: any) => string;
|
|
9970
9978
|
};
|
|
9971
9979
|
|
|
9972
|
-
declare const useClasses_74: (classesProp?: Partial<Record<"label" | "root" | "
|
|
9980
|
+
declare const useClasses_74: (classesProp?: Partial<Record<"label" | "root" | "error" | "description" | "labelContainer", string>>, addStatic?: boolean) => {
|
|
9973
9981
|
readonly classes: {
|
|
9974
9982
|
root: string;
|
|
9975
9983
|
label: string;
|
|
@@ -10011,7 +10019,7 @@ declare const useClasses_76: (classesProp?: Partial<Record<"name" | "small" | "s
|
|
|
10011
10019
|
readonly cx: (...args: any) => string;
|
|
10012
10020
|
};
|
|
10013
10021
|
|
|
10014
|
-
declare const useClasses_77: (classesProp?: Partial<Record<"name" | "
|
|
10022
|
+
declare const useClasses_77: (classesProp?: Partial<Record<"name" | "section" | "root" | "actions" | "wrapper" | "positionSticky" | "positionFixed" | "global" | "globalSectionArea" | "globalWrapperComplement" | "backButton" | "sectionName", string>>, addStatic?: boolean) => {
|
|
10015
10023
|
readonly classes: {
|
|
10016
10024
|
root: string;
|
|
10017
10025
|
positionSticky: string;
|
|
@@ -10113,7 +10121,7 @@ declare const useClasses_81: (classesProp?: Partial<Record<"separator" | "root"
|
|
|
10113
10121
|
readonly cx: (...args: any) => string;
|
|
10114
10122
|
};
|
|
10115
10123
|
|
|
10116
|
-
declare const useClasses_82: (classesProp?: Partial<Record<"hidden" | "menu" | "menubar" | "active" | "
|
|
10124
|
+
declare const useClasses_82: (classesProp?: Partial<Record<"hidden" | "menu" | "menubar" | "active" | "list" | "root", string>>, addStatic?: boolean) => {
|
|
10117
10125
|
readonly classes: {
|
|
10118
10126
|
root: string;
|
|
10119
10127
|
menu: string;
|
|
@@ -10126,7 +10134,7 @@ declare const useClasses_82: (classesProp?: Partial<Record<"hidden" | "menu" | "
|
|
|
10126
10134
|
readonly cx: (...args: any) => string;
|
|
10127
10135
|
};
|
|
10128
10136
|
|
|
10129
|
-
declare const useClasses_83: (classesProp?: Partial<Record<"link" | "button" | "menu" | "menubar" | "
|
|
10137
|
+
declare const useClasses_83: (classesProp?: Partial<Record<"link" | "button" | "menu" | "menubar" | "selected" | "root" | "item", string>>, addStatic?: boolean) => {
|
|
10130
10138
|
readonly classes: {
|
|
10131
10139
|
root: string;
|
|
10132
10140
|
menu: string;
|
|
@@ -10148,7 +10156,7 @@ declare const useClasses_84: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
10148
10156
|
readonly cx: (...args: any) => string;
|
|
10149
10157
|
};
|
|
10150
10158
|
|
|
10151
|
-
declare const useClasses_85: (classesProp?: Partial<Record<"text" | "button" | "icon" | "
|
|
10159
|
+
declare const useClasses_85: (classesProp?: Partial<Record<"text" | "button" | "icon" | "input" | "root" | "inputBorderContainer" | "inputRoot" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
|
|
10152
10160
|
readonly classes: {
|
|
10153
10161
|
root: string;
|
|
10154
10162
|
inputBorderContainer: string;
|
|
@@ -10207,7 +10215,7 @@ declare const useClasses_88: (classesProp?: Partial<Record<"link" | "root" | "it
|
|
|
10207
10215
|
readonly cx: (...args: any) => string;
|
|
10208
10216
|
};
|
|
10209
10217
|
|
|
10210
|
-
declare const useClasses_89: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "hidden" | "root" | "blur" | "
|
|
10218
|
+
declare const useClasses_89: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "hidden" | "root" | "blur" | "barContainer" | "loadingBar" | "regular" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
|
|
10211
10219
|
readonly classes: {
|
|
10212
10220
|
root: string;
|
|
10213
10221
|
barContainer: string;
|
|
@@ -10233,7 +10241,7 @@ declare const useClasses_9: (classesProp?: Partial<Record<"root", string>>, addS
|
|
|
10233
10241
|
readonly cx: (...args: any) => string;
|
|
10234
10242
|
};
|
|
10235
10243
|
|
|
10236
|
-
declare const useClasses_90: (classesProp?: Partial<Record<"
|
|
10244
|
+
declare const useClasses_90: (classesProp?: Partial<Record<"loading" | "root", string>>, addStatic?: boolean) => {
|
|
10237
10245
|
readonly classes: {
|
|
10238
10246
|
root: string;
|
|
10239
10247
|
loading: string;
|
|
@@ -10251,7 +10259,7 @@ declare const useClasses_91: (classesProp?: Partial<Record<"root" | "formContain
|
|
|
10251
10259
|
readonly cx: (...args: any) => string;
|
|
10252
10260
|
};
|
|
10253
10261
|
|
|
10254
|
-
declare const useClasses_92: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "vertical" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "button" | "multiple" | "
|
|
10262
|
+
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) => {
|
|
10255
10263
|
readonly classes: {
|
|
10256
10264
|
root: string;
|
|
10257
10265
|
multiple: string;
|
|
@@ -10283,7 +10291,7 @@ declare const useClasses_93: (classesProp?: Partial<Record<"tooltipData" | "tool
|
|
|
10283
10291
|
readonly cx: (...args: any) => string;
|
|
10284
10292
|
};
|
|
10285
10293
|
|
|
10286
|
-
declare const useClasses_94: (classesProp?: Partial<Record<"tooltip" | "color" | "values" | "separator" | "
|
|
10294
|
+
declare const useClasses_94: (classesProp?: Partial<Record<"tooltip" | "color" | "values" | "separator" | "title" | "root" | "popper" | "tooltipMulti" | "valuesContainer" | "separatorColor" | "valueWrapper", string>>, addStatic?: boolean) => {
|
|
10287
10295
|
readonly classes: {
|
|
10288
10296
|
root: string;
|
|
10289
10297
|
tooltip: string;
|
|
@@ -10348,7 +10356,7 @@ declare const useClasses_97: (classesProp?: Partial<Record<"root" | "removeButto
|
|
|
10348
10356
|
readonly cx: (...args: any) => string;
|
|
10349
10357
|
};
|
|
10350
10358
|
|
|
10351
|
-
declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "radio" | "disabled" | "
|
|
10359
|
+
declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "radio" | "disabled" | "checked" | "root" | "focusVisible" | "invalidContainer" | "invalidRadio", string>>, addStatic?: boolean) => {
|
|
10352
10360
|
readonly classes: {
|
|
10353
10361
|
root: string;
|
|
10354
10362
|
container: string;
|
|
@@ -10365,7 +10373,7 @@ declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label"
|
|
|
10365
10373
|
readonly cx: (...args: any) => string;
|
|
10366
10374
|
};
|
|
10367
10375
|
|
|
10368
|
-
declare const useClasses_99: (classesProp?: Partial<Record<"text" | "button" | "
|
|
10376
|
+
declare const useClasses_99: (classesProp?: Partial<Record<"text" | "button" | "selected" | "root" | "bullet" | "bulletSelected", string>>, addStatic?: boolean) => {
|
|
10369
10377
|
readonly classes: {
|
|
10370
10378
|
root: string;
|
|
10371
10379
|
button: string;
|