@hitachivantara/uikit-react-core 5.50.0 → 5.51.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/DropDownMenu/DropDownMenu.cjs +1 -1
- package/dist/cjs/Select/Option.cjs +53 -0
- package/dist/cjs/Select/Option.cjs.map +1 -0
- package/dist/cjs/Select/OptionGroup.cjs +34 -0
- package/dist/cjs/Select/OptionGroup.cjs.map +1 -0
- package/dist/cjs/Select/Select.cjs +214 -0
- package/dist/cjs/Select/Select.cjs.map +1 -0
- package/dist/cjs/Select/Select.styles.cjs +44 -0
- package/dist/cjs/Select/Select.styles.cjs.map +1 -0
- package/dist/cjs/Select/SelectButton.cjs +92 -0
- package/dist/cjs/Select/SelectButton.cjs.map +1 -0
- package/dist/cjs/index.cjs +10 -0
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/DropDownMenu/DropDownMenu.js +1 -1
- package/dist/esm/Select/Option.js +53 -0
- package/dist/esm/Select/Option.js.map +1 -0
- package/dist/esm/Select/OptionGroup.js +34 -0
- package/dist/esm/Select/OptionGroup.js.map +1 -0
- package/dist/esm/Select/Select.js +213 -0
- package/dist/esm/Select/Select.js.map +1 -0
- package/dist/esm/Select/Select.styles.js +44 -0
- package/dist/esm/Select/Select.styles.js.map +1 -0
- package/dist/esm/Select/SelectButton.js +92 -0
- package/dist/esm/Select/SelectButton.js.map +1 -0
- package/dist/esm/index.js +224 -214
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +563 -450
- package/package.json +6 -6
package/dist/types/index.d.ts
CHANGED
|
@@ -68,6 +68,8 @@ import { JSX as JSX_3 } from '@emotion/react/jsx-runtime';
|
|
|
68
68
|
import { JSXElementConstructor } from 'react';
|
|
69
69
|
import { MouseEvent as MouseEvent_2 } from 'react';
|
|
70
70
|
import { MouseEventHandler } from 'react';
|
|
71
|
+
import { OptionGroupProps } from '@mui/base/OptionGroup';
|
|
72
|
+
import { OptionOwnProps } from '@mui/base/Option';
|
|
71
73
|
import { OptionsObject } from 'notistack';
|
|
72
74
|
import { PopperProps } from 'react-popper';
|
|
73
75
|
import { PropGetter } from 'react-table';
|
|
@@ -149,6 +151,7 @@ import { UseRowStateInstanceProps } from 'react-table';
|
|
|
149
151
|
import { UseRowStateOptions } from 'react-table';
|
|
150
152
|
import { UseRowStateRowProps } from 'react-table';
|
|
151
153
|
import { UseRowStateState } from 'react-table';
|
|
154
|
+
import { UseSelectParameters } from '@mui/base/useSelect';
|
|
152
155
|
import { UseSortByColumnOptions } from 'react-table';
|
|
153
156
|
import { UseSortByColumnProps } from 'react-table';
|
|
154
157
|
import { UseSortByHooks } from 'react-table';
|
|
@@ -332,15 +335,15 @@ export declare const baseDropdownClasses: {
|
|
|
332
335
|
placeholder: "HvBaseDropdown-placeholder";
|
|
333
336
|
panel: "HvBaseDropdown-panel";
|
|
334
337
|
inputExtensionOpen: "HvBaseDropdown-inputExtensionOpen";
|
|
338
|
+
panelOpenedUp: "HvBaseDropdown-panelOpenedUp";
|
|
339
|
+
panelOpenedDown: "HvBaseDropdown-panelOpenedDown";
|
|
340
|
+
selection: "HvBaseDropdown-selection";
|
|
341
|
+
arrowContainer: "HvBaseDropdown-arrowContainer";
|
|
342
|
+
arrow: "HvBaseDropdown-arrow";
|
|
335
343
|
rootDisabled: "HvBaseDropdown-rootDisabled";
|
|
336
344
|
headerOpenUp: "HvBaseDropdown-headerOpenUp";
|
|
337
345
|
headerOpenDown: "HvBaseDropdown-headerOpenDown";
|
|
338
|
-
arrowContainer: "HvBaseDropdown-arrowContainer";
|
|
339
|
-
arrow: "HvBaseDropdown-arrow";
|
|
340
|
-
selection: "HvBaseDropdown-selection";
|
|
341
346
|
selectionDisabled: "HvBaseDropdown-selectionDisabled";
|
|
342
|
-
panelOpenedUp: "HvBaseDropdown-panelOpenedUp";
|
|
343
|
-
panelOpenedDown: "HvBaseDropdown-panelOpenedDown";
|
|
344
347
|
inputExtensionLeftPosition: "HvBaseDropdown-inputExtensionLeftPosition";
|
|
345
348
|
inputExtensionOpenShadow: "HvBaseDropdown-inputExtensionOpenShadow";
|
|
346
349
|
inputExtensionFloatRight: "HvBaseDropdown-inputExtensionFloatRight";
|
|
@@ -627,8 +630,8 @@ export declare const datePickerClasses: {
|
|
|
627
630
|
action: "HvDatePicker-action";
|
|
628
631
|
error: "HvDatePicker-error";
|
|
629
632
|
dropdown: "HvDatePicker-dropdown";
|
|
630
|
-
actionContainer: "HvDatePicker-actionContainer";
|
|
631
633
|
labelContainer: "HvDatePicker-labelContainer";
|
|
634
|
+
actionContainer: "HvDatePicker-actionContainer";
|
|
632
635
|
dropdownHeaderInvalid: "HvDatePicker-dropdownHeaderInvalid";
|
|
633
636
|
dropdownHeaderOpen: "HvDatePicker-dropdownHeaderOpen";
|
|
634
637
|
leftContainer: "HvDatePicker-leftContainer";
|
|
@@ -847,9 +850,9 @@ export declare const dropdownClasses: {
|
|
|
847
850
|
placeholderClosed: "HvDropdown-placeholderClosed";
|
|
848
851
|
error: "HvDropdown-error";
|
|
849
852
|
dropdown: "HvDropdown-dropdown";
|
|
853
|
+
labelContainer: "HvDropdown-labelContainer";
|
|
850
854
|
arrow: "HvDropdown-arrow";
|
|
851
855
|
selectionDisabled: "HvDropdown-selectionDisabled";
|
|
852
|
-
labelContainer: "HvDropdown-labelContainer";
|
|
853
856
|
rootList: "HvDropdown-rootList";
|
|
854
857
|
dropdownListContainer: "HvDropdown-dropdownListContainer";
|
|
855
858
|
dropdownHeader: "HvDropdown-dropdownHeader";
|
|
@@ -1123,7 +1126,7 @@ export declare type HvAccentColors = Record<HvAccentColorKeys, string>;
|
|
|
1123
1126
|
*/
|
|
1124
1127
|
export declare const HvAccordion: (props: HvAccordionProps) => JSX_3.Element;
|
|
1125
1128
|
|
|
1126
|
-
export declare type HvAccordionClasses = ExtractNames<typeof
|
|
1129
|
+
export declare type HvAccordionClasses = ExtractNames<typeof useClasses_18>;
|
|
1127
1130
|
|
|
1128
1131
|
export declare interface HvAccordionProps extends HvBaseProps<HTMLDivElement, "onChange" | "children"> {
|
|
1129
1132
|
/**
|
|
@@ -1170,14 +1173,14 @@ export declare interface HvAccordionProps extends HvBaseProps<HTMLDivElement, "o
|
|
|
1170
1173
|
|
|
1171
1174
|
export declare const HvActionBar: (props: HvActionBarProps) => JSX_3.Element;
|
|
1172
1175
|
|
|
1173
|
-
export declare type HvActionBarClasses = ExtractNames<typeof
|
|
1176
|
+
export declare type HvActionBarClasses = ExtractNames<typeof useClasses_19>;
|
|
1174
1177
|
|
|
1175
1178
|
export declare interface HvActionBarProps extends HvBaseProps {
|
|
1176
1179
|
/** A Jss Object used to override or extend the styles applied to the component. */
|
|
1177
1180
|
classes?: HvActionBarClasses;
|
|
1178
1181
|
}
|
|
1179
1182
|
|
|
1180
|
-
declare type HvActionContainerClasses = ExtractNames<typeof
|
|
1183
|
+
declare type HvActionContainerClasses = ExtractNames<typeof useClasses_27>;
|
|
1181
1184
|
|
|
1182
1185
|
declare interface HvActionContainerProps extends HvBaseProps<HTMLButtonElement> {
|
|
1183
1186
|
/** onClose function. */
|
|
@@ -1201,7 +1204,7 @@ export declare interface HvActionGeneric {
|
|
|
1201
1204
|
|
|
1202
1205
|
export declare const HvActionsGeneric: (props: HvActionsGenericProps) => JSX_3.Element | null;
|
|
1203
1206
|
|
|
1204
|
-
export declare type HvActionsGenericClasses = ExtractNames<typeof
|
|
1207
|
+
export declare type HvActionsGenericClasses = ExtractNames<typeof useClasses_20>;
|
|
1205
1208
|
|
|
1206
1209
|
export declare interface HvActionsGenericProps extends HvBaseProps {
|
|
1207
1210
|
/** Button category. */
|
|
@@ -1273,7 +1276,7 @@ export declare interface HvAppSwitcherActionApplication {
|
|
|
1273
1276
|
color?: HvColorAny;
|
|
1274
1277
|
}
|
|
1275
1278
|
|
|
1276
|
-
export declare type HvAppSwitcherActionClasses = ExtractNames<typeof
|
|
1279
|
+
export declare type HvAppSwitcherActionClasses = ExtractNames<typeof useClasses_22>;
|
|
1277
1280
|
|
|
1278
1281
|
export declare interface HvAppSwitcherActionProps extends HvBaseProps {
|
|
1279
1282
|
/** The application data to be used to render the Action object. */
|
|
@@ -1286,7 +1289,7 @@ export declare interface HvAppSwitcherActionProps extends HvBaseProps {
|
|
|
1286
1289
|
classes?: HvAppSwitcherActionClasses;
|
|
1287
1290
|
}
|
|
1288
1291
|
|
|
1289
|
-
export declare type HvAppSwitcherClasses = ExtractNames<typeof
|
|
1292
|
+
export declare type HvAppSwitcherClasses = ExtractNames<typeof useClasses_21>;
|
|
1290
1293
|
|
|
1291
1294
|
export declare interface HvAppSwitcherProps extends HvBaseProps {
|
|
1292
1295
|
/** Number of columns to render. One, two, or whatever fits the component's width. */
|
|
@@ -1325,14 +1328,14 @@ export declare type HvAtmosphereColors = Record<HvAtmosphereColorKeys, string>;
|
|
|
1325
1328
|
*/
|
|
1326
1329
|
export declare const HvAvatar: ForwardRefExoticComponent<HvAvatarProps & RefAttributes<any>>;
|
|
1327
1330
|
|
|
1328
|
-
export declare type HvAvatarClasses = ExtractNames<typeof
|
|
1331
|
+
export declare type HvAvatarClasses = ExtractNames<typeof useClasses_23>;
|
|
1329
1332
|
|
|
1330
1333
|
/**
|
|
1331
1334
|
* The AvatarGroup component is used to group multiple avatars.
|
|
1332
1335
|
*/
|
|
1333
1336
|
export declare const HvAvatarGroup: ForwardRefExoticComponent<HvAvatarGroupProps & RefAttributes<HTMLDivElement>>;
|
|
1334
1337
|
|
|
1335
|
-
export declare type HvAvatarGroupClasses = ExtractNames<typeof
|
|
1338
|
+
export declare type HvAvatarGroupClasses = ExtractNames<typeof useClasses_24>;
|
|
1336
1339
|
|
|
1337
1340
|
export declare interface HvAvatarGroupProps extends HvBaseProps {
|
|
1338
1341
|
/** A Jss Object used to override or extend the styles applied to the component. */
|
|
@@ -1402,7 +1405,7 @@ export declare type HvAvatarVariant = "circular" | "square";
|
|
|
1402
1405
|
*/
|
|
1403
1406
|
export declare const HvBadge: (props: HvBadgeProps) => JSX_3.Element;
|
|
1404
1407
|
|
|
1405
|
-
export declare type HvBadgeClasses = ExtractNames<typeof
|
|
1408
|
+
export declare type HvBadgeClasses = ExtractNames<typeof useClasses_25>;
|
|
1406
1409
|
|
|
1407
1410
|
export declare interface HvBadgeProps extends HvBaseProps {
|
|
1408
1411
|
/**
|
|
@@ -1443,11 +1446,11 @@ export declare const HvBanner: (props: HvBannerProps) => JSX_3.Element;
|
|
|
1443
1446
|
|
|
1444
1447
|
export declare type HvBannerActionPosition = "auto" | "inline" | "bottom-right";
|
|
1445
1448
|
|
|
1446
|
-
export declare type HvBannerClasses = ExtractNames<typeof
|
|
1449
|
+
export declare type HvBannerClasses = ExtractNames<typeof useClasses_26>;
|
|
1447
1450
|
|
|
1448
1451
|
export declare const HvBannerContent: ForwardRefExoticComponent<Omit<HvBannerContentProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
1449
1452
|
|
|
1450
|
-
export declare type HvBannerContentClasses = ExtractNames<typeof
|
|
1453
|
+
export declare type HvBannerContentClasses = ExtractNames<typeof useClasses_28>;
|
|
1451
1454
|
|
|
1452
1455
|
export declare interface HvBannerContentProps extends Omit<SnackbarContentProps, "variant" | "classes" | "onClose"> {
|
|
1453
1456
|
/** The message to display. */
|
|
@@ -1519,7 +1522,7 @@ export declare type HvBannerVariant = "success" | "warning" | "error" | "default
|
|
|
1519
1522
|
*/
|
|
1520
1523
|
export declare const HvBaseCheckBox: React_2.ForwardRefExoticComponent<Omit<HvBaseCheckBoxProps, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
|
|
1521
1524
|
|
|
1522
|
-
export declare type HvBaseCheckBoxClasses = ExtractNames<typeof
|
|
1525
|
+
export declare type HvBaseCheckBoxClasses = ExtractNames<typeof useClasses_29>;
|
|
1523
1526
|
|
|
1524
1527
|
export declare interface HvBaseCheckBoxProps extends Omit<CheckboxProps, "onChange" | "classes"> {
|
|
1525
1528
|
/**
|
|
@@ -1596,7 +1599,7 @@ export declare type HvBaseColors = Record<HvBaseColorKeys, string>;
|
|
|
1596
1599
|
|
|
1597
1600
|
export declare const HvBaseDropdown: React_2.ForwardRefExoticComponent<Omit<HvBaseDropdownProps, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
1598
1601
|
|
|
1599
|
-
export declare type HvBaseDropdownClasses = ExtractNames<typeof
|
|
1602
|
+
export declare type HvBaseDropdownClasses = ExtractNames<typeof useClasses_17>;
|
|
1600
1603
|
|
|
1601
1604
|
export declare interface HvBaseDropdownProps extends HvBaseProps {
|
|
1602
1605
|
/**
|
|
@@ -1691,7 +1694,7 @@ export declare interface HvBaseDropdownProps extends HvBaseProps {
|
|
|
1691
1694
|
*/
|
|
1692
1695
|
export declare const HvBaseInput: (props: HvBaseInputProps) => JSX_3.Element;
|
|
1693
1696
|
|
|
1694
|
-
export declare type HvBaseInputClasses = ExtractNames<typeof
|
|
1697
|
+
export declare type HvBaseInputClasses = ExtractNames<typeof useClasses_16>;
|
|
1695
1698
|
|
|
1696
1699
|
export declare interface HvBaseInputProps extends Omit<InputProps, "onChange" | "classes"> {
|
|
1697
1700
|
/** The input name. */
|
|
@@ -1738,7 +1741,7 @@ export declare type HvBaseProps<E extends HTMLElement = HTMLDivElement, K extend
|
|
|
1738
1741
|
*/
|
|
1739
1742
|
export declare const HvBaseRadio: React_2.ForwardRefExoticComponent<Omit<HvBaseRadioProps, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
|
|
1740
1743
|
|
|
1741
|
-
export declare type HvBaseRadioClasses = ExtractNames<typeof
|
|
1744
|
+
export declare type HvBaseRadioClasses = ExtractNames<typeof useClasses_30>;
|
|
1742
1745
|
|
|
1743
1746
|
export declare interface HvBaseRadioProps extends Omit<RadioProps, "onChange" | "classes"> {
|
|
1744
1747
|
/**
|
|
@@ -1816,7 +1819,7 @@ export declare interface HvBaseRadioProps extends Omit<RadioProps, "onChange" |
|
|
|
1816
1819
|
*/
|
|
1817
1820
|
export declare const HvBaseSwitch: React_2.ForwardRefExoticComponent<Omit<HvBaseSwitchProps, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
|
|
1818
1821
|
|
|
1819
|
-
export declare type HvBaseSwitchClasses = ExtractNames<typeof
|
|
1822
|
+
export declare type HvBaseSwitchClasses = ExtractNames<typeof useClasses_31>;
|
|
1820
1823
|
|
|
1821
1824
|
export declare interface HvBaseSwitchProps extends Omit<SwitchProps, "onChange" | "classes"> {
|
|
1822
1825
|
/**
|
|
@@ -1906,7 +1909,7 @@ export declare type HvBoxProps = <C extends React.ElementType = "div">(props: Hv
|
|
|
1906
1909
|
*/
|
|
1907
1910
|
export declare const HvBreadCrumb: (props: HvBreadCrumbProps) => JSX_3.Element;
|
|
1908
1911
|
|
|
1909
|
-
export declare type HvBreadCrumbClasses = ExtractNames<typeof
|
|
1912
|
+
export declare type HvBreadCrumbClasses = ExtractNames<typeof useClasses_32>;
|
|
1910
1913
|
|
|
1911
1914
|
export declare interface HvBreadCrumbPathElement extends Record<string, any> {
|
|
1912
1915
|
label: string;
|
|
@@ -1938,7 +1941,7 @@ export { HvBreakpoints }
|
|
|
1938
1941
|
*/
|
|
1939
1942
|
export declare const HvBulkActions: (props: HvBulkActionsProps) => JSX_3.Element;
|
|
1940
1943
|
|
|
1941
|
-
export declare type HvBulkActionsClasses = ExtractNames<typeof
|
|
1944
|
+
export declare type HvBulkActionsClasses = ExtractNames<typeof useClasses_34>;
|
|
1942
1945
|
|
|
1943
1946
|
export declare type HvBulkActionsPropGetter<D extends object> = PropGetter<D, HvTAbleBulkActionsProps>;
|
|
1944
1947
|
|
|
@@ -2062,7 +2065,7 @@ export declare const HvButton: <C extends ElementType<any, keyof JSX_2.Intrinsic
|
|
|
2062
2065
|
ref?: PolymorphicRef<C> | undefined;
|
|
2063
2066
|
} & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
2064
2067
|
|
|
2065
|
-
export declare type HvButtonClasses = ExtractNames<typeof
|
|
2068
|
+
export declare type HvButtonClasses = ExtractNames<typeof useClasses_36>;
|
|
2066
2069
|
|
|
2067
2070
|
export declare type HvButtonProps<C extends React.ElementType = "button"> = PolymorphicComponentRef<C, {
|
|
2068
2071
|
/** Use the variant prop to change the visual style of the button. */
|
|
@@ -2103,14 +2106,14 @@ export declare type HvButtonVariant = (typeof buttonVariant)[number];
|
|
|
2103
2106
|
|
|
2104
2107
|
export declare const HvCalendar: (props: HvCalendarProps) => JSX_3.Element;
|
|
2105
2108
|
|
|
2106
|
-
export declare type HvCalendarClasses = ExtractNames<typeof
|
|
2109
|
+
export declare type HvCalendarClasses = ExtractNames<typeof useClasses_37>;
|
|
2107
2110
|
|
|
2108
2111
|
export declare const HvCalendarHeader: {
|
|
2109
2112
|
(props: HvCalendarHeaderProps): JSX_3.Element;
|
|
2110
2113
|
formElementType: string;
|
|
2111
2114
|
};
|
|
2112
2115
|
|
|
2113
|
-
export declare type HvCalendarHeaderClasses = ExtractNames<typeof
|
|
2116
|
+
export declare type HvCalendarHeaderClasses = ExtractNames<typeof useClasses_38>;
|
|
2114
2117
|
|
|
2115
2118
|
export declare interface HvCalendarHeaderProps {
|
|
2116
2119
|
/**
|
|
@@ -2230,11 +2233,11 @@ export declare interface HvCalendarProps {
|
|
|
2230
2233
|
*/
|
|
2231
2234
|
export declare const HvCard: (props: HvCardProps) => JSX_3.Element;
|
|
2232
2235
|
|
|
2233
|
-
export declare type HvCardClasses = ExtractNames<typeof
|
|
2236
|
+
export declare type HvCardClasses = ExtractNames<typeof useClasses_39>;
|
|
2234
2237
|
|
|
2235
2238
|
export declare const HvCardContent: ({ id, classes: classesProp, className, children, onClick, ...others }: HvCardContentProps) => JSX_3.Element;
|
|
2236
2239
|
|
|
2237
|
-
export declare type HvCardContentClasses = ExtractNames<typeof
|
|
2240
|
+
export declare type HvCardContentClasses = ExtractNames<typeof useClasses_41>;
|
|
2238
2241
|
|
|
2239
2242
|
export declare interface HvCardContentProps extends Omit<CardContentProps, "classes"> {
|
|
2240
2243
|
/** The function that will be executed when this section is clicked. */
|
|
@@ -2245,7 +2248,7 @@ export declare interface HvCardContentProps extends Omit<CardContentProps, "clas
|
|
|
2245
2248
|
|
|
2246
2249
|
export declare const HvCardHeader: (props: HvCardHeaderProps) => JSX_3.Element;
|
|
2247
2250
|
|
|
2248
|
-
export declare type HvCardHeaderClasses = ExtractNames<typeof
|
|
2251
|
+
export declare type HvCardHeaderClasses = ExtractNames<typeof useClasses_40>;
|
|
2249
2252
|
|
|
2250
2253
|
export declare interface HvCardHeaderProps extends Omit<CardHeaderProps, "classes"> {
|
|
2251
2254
|
/** The renderable content inside the title slot of the header. */
|
|
@@ -2262,7 +2265,7 @@ export declare interface HvCardHeaderProps extends Omit<CardHeaderProps, "classe
|
|
|
2262
2265
|
|
|
2263
2266
|
export declare const HvCardMedia: ({ id, classes: classesProp, className, children, title, onClick, ...others }: HvCardMediaProps) => JSX_3.Element;
|
|
2264
2267
|
|
|
2265
|
-
export declare type HvCardMediaClasses = ExtractNames<typeof
|
|
2268
|
+
export declare type HvCardMediaClasses = ExtractNames<typeof useClasses_42>;
|
|
2266
2269
|
|
|
2267
2270
|
export declare interface HvCardMediaProps extends Omit<CardMediaProps, "classes">, ImgHTMLAttributes<HTMLDivElement>, HvBaseProps<HTMLDivElement, "onClick" | "title"> {
|
|
2268
2271
|
/** Id to be applied to the root node. */
|
|
@@ -2303,13 +2306,13 @@ export declare interface HvCardProps extends HvBaseProps {
|
|
|
2303
2306
|
*/
|
|
2304
2307
|
export declare const HvCarousel: (props: HvCarouselProps) => JSX_3.Element;
|
|
2305
2308
|
|
|
2306
|
-
export declare type HvCarouselClasses = ExtractNames<typeof
|
|
2309
|
+
export declare type HvCarouselClasses = ExtractNames<typeof useClasses_43>;
|
|
2307
2310
|
|
|
2308
2311
|
export declare const HvCarouselControls: (props: HvCarouselControlsProps) => JSX_3.Element;
|
|
2309
2312
|
|
|
2310
2313
|
declare interface HvCarouselControlsProps extends HvBaseProps<HTMLDivElement>, Pick<HvPaginationProps, "page" | "pages" | "canPrevious" | "canNext"> {
|
|
2311
2314
|
showDots?: boolean;
|
|
2312
|
-
classes?: ExtractNames<typeof
|
|
2315
|
+
classes?: ExtractNames<typeof useClasses_43>;
|
|
2313
2316
|
actions?: ReactNode;
|
|
2314
2317
|
onPreviousClick?: MouseEventHandler<HTMLButtonElement>;
|
|
2315
2318
|
onNextClick?: MouseEventHandler<HTMLButtonElement>;
|
|
@@ -2358,7 +2361,7 @@ export declare interface HvCarouselProps extends HvBaseProps<HTMLDivElement, "ti
|
|
|
2358
2361
|
*/
|
|
2359
2362
|
export declare const HvCarouselSlide: ({ classes: classesProp, className, children, size: flexBasis, src, alt, ...props }: HvCarouselSlideProps) => JSX_3.Element;
|
|
2360
2363
|
|
|
2361
|
-
export declare type HvCarouselSlideClasses = ExtractNames<typeof
|
|
2364
|
+
export declare type HvCarouselSlideClasses = ExtractNames<typeof useClasses_44>;
|
|
2362
2365
|
|
|
2363
2366
|
export declare interface HvCarouselSlideProps extends ImgHTMLAttributes<HTMLImageElement> {
|
|
2364
2367
|
/** A Jss Object used to override or extend the styles applied. */
|
|
@@ -2373,7 +2376,7 @@ export declare const HvCarouselThumbnails: ForwardRefExoticComponent<HvCarouselT
|
|
|
2373
2376
|
|
|
2374
2377
|
declare interface HvCarouselThumbnailsProps extends HvBaseProps<HTMLDivElement, "children">, Pick<HvPaginationProps, "page" | "pages" | "canPrevious" | "canNext"> {
|
|
2375
2378
|
width?: CSSProperties["width"];
|
|
2376
|
-
classes?: ExtractNames<typeof
|
|
2379
|
+
classes?: ExtractNames<typeof useClasses_43>;
|
|
2377
2380
|
onThumbnailClick?: (event: MouseEvent_2<HTMLButtonElement>, index: number) => void;
|
|
2378
2381
|
thumbnailProps?: Partial<HvButtonProps>;
|
|
2379
2382
|
showDots?: boolean;
|
|
@@ -2437,14 +2440,14 @@ export declare interface HvCharCounterProps extends HvBaseProps {
|
|
|
2437
2440
|
*/
|
|
2438
2441
|
export declare const HvCheckBox: ForwardRefExoticComponent<Omit<HvCheckBoxProps, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
2439
2442
|
|
|
2440
|
-
export declare type HvCheckBoxClasses = ExtractNames<typeof
|
|
2443
|
+
export declare type HvCheckBoxClasses = ExtractNames<typeof useClasses_35>;
|
|
2441
2444
|
|
|
2442
2445
|
/**
|
|
2443
2446
|
* A checkbox group is a type of selection list that allows the user to select multiple options through the use of checkboxes.
|
|
2444
2447
|
*/
|
|
2445
2448
|
export declare const HvCheckBoxGroup: ForwardRefExoticComponent<HvCheckBoxGroupProps & RefAttributes<HTMLDivElement>>;
|
|
2446
2449
|
|
|
2447
|
-
export declare type HvCheckBoxGroupClasses = ExtractNames<typeof
|
|
2450
|
+
export declare type HvCheckBoxGroupClasses = ExtractNames<typeof useClasses_47>;
|
|
2448
2451
|
|
|
2449
2452
|
export declare interface HvCheckBoxGroupProps extends HvBaseProps<HTMLDivElement, "onChange"> {
|
|
2450
2453
|
/**
|
|
@@ -2576,7 +2579,7 @@ export { HvColorAny }
|
|
|
2576
2579
|
*/
|
|
2577
2580
|
export declare const HvColorPicker: ForwardRefExoticComponent<HvColorPickerProps & RefAttributes<HTMLDivElement>>;
|
|
2578
2581
|
|
|
2579
|
-
export declare type HvColorPickerClasses = ExtractNames<typeof
|
|
2582
|
+
export declare type HvColorPickerClasses = ExtractNames<typeof useClasses_48>;
|
|
2580
2583
|
|
|
2581
2584
|
export declare interface HvColorPickerProps {
|
|
2582
2585
|
"aria-label"?: string;
|
|
@@ -2693,7 +2696,7 @@ declare type HvColumnWithStrictAccessor<D extends object = Record<string, unknow
|
|
|
2693
2696
|
/** The container enables you to center your content horizontally and bound it to a specific breakpoint. */
|
|
2694
2697
|
export declare const HvContainer: ForwardRefExoticComponent<Omit<HvContainerProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
2695
2698
|
|
|
2696
|
-
export declare type HvContainerClasses = ExtractNames<typeof
|
|
2699
|
+
export declare type HvContainerClasses = ExtractNames<typeof useClasses_49>;
|
|
2697
2700
|
|
|
2698
2701
|
export declare interface HvContainerProps extends Omit<ContainerProps, "classes"> {
|
|
2699
2702
|
/**
|
|
@@ -2722,7 +2725,7 @@ export declare interface HvContainerProps extends Omit<ContainerProps, "classes"
|
|
|
2722
2725
|
|
|
2723
2726
|
export declare const HvControls: (props: HvControlsProps) => JSX_3.Element;
|
|
2724
2727
|
|
|
2725
|
-
export declare type HvControlsClasses = ExtractNames<typeof
|
|
2728
|
+
export declare type HvControlsClasses = ExtractNames<typeof useClasses_50>;
|
|
2726
2729
|
|
|
2727
2730
|
export declare interface HvControlsProps extends HvBaseProps {
|
|
2728
2731
|
/**
|
|
@@ -2807,7 +2810,7 @@ export declare interface HvDateColumnCellProp {
|
|
|
2807
2810
|
*/
|
|
2808
2811
|
export declare const HvDatePicker: ForwardRefExoticComponent<HvDatePickerProps & RefAttributes<HTMLDivElement>>;
|
|
2809
2812
|
|
|
2810
|
-
export declare type HvDatePickerClasses = ExtractNames<typeof
|
|
2813
|
+
export declare type HvDatePickerClasses = ExtractNames<typeof useClasses_59>;
|
|
2811
2814
|
|
|
2812
2815
|
export declare interface HvDatePickerProps extends Omit<HvFormElementProps, "onChange">, Pick<HvBaseDropdownProps, "disablePortal" | "expanded" | "defaultExpanded" | "onToggle" | "placeholder"> {
|
|
2813
2816
|
/**
|
|
@@ -2893,7 +2896,7 @@ export declare type HvDatePickerStatus = HvFormStatus;
|
|
|
2893
2896
|
|
|
2894
2897
|
export declare const HvDialog: (props: HvDialogProps) => JSX_3.Element;
|
|
2895
2898
|
|
|
2896
|
-
export declare type HvDialogActionClasses = ExtractNames<typeof
|
|
2899
|
+
export declare type HvDialogActionClasses = ExtractNames<typeof useClasses_62>;
|
|
2897
2900
|
|
|
2898
2901
|
export declare const HvDialogActions: (props: HvDialogActionsProps) => JSX_3.Element;
|
|
2899
2902
|
|
|
@@ -2904,11 +2907,11 @@ export declare interface HvDialogActionsProps extends Omit<DialogActionsProps, "
|
|
|
2904
2907
|
classes?: HvDialogActionClasses;
|
|
2905
2908
|
}
|
|
2906
2909
|
|
|
2907
|
-
export declare type HvDialogClasses = ExtractNames<typeof
|
|
2910
|
+
export declare type HvDialogClasses = ExtractNames<typeof useClasses_63>;
|
|
2908
2911
|
|
|
2909
2912
|
export declare const HvDialogContent: (props: HvDialogContentProps) => JSX_3.Element;
|
|
2910
2913
|
|
|
2911
|
-
export declare type HvDialogContentClasses = ExtractNames<typeof
|
|
2914
|
+
export declare type HvDialogContentClasses = ExtractNames<typeof useClasses_61>;
|
|
2912
2915
|
|
|
2913
2916
|
export declare interface HvDialogContentProps extends Omit<DialogContentProps, "classes"> {
|
|
2914
2917
|
/** Content should be indented in relationship to the Dialog title. */
|
|
@@ -2950,7 +2953,7 @@ export declare interface HvDialogProps extends Omit<DialogProps, "fullScreen" |
|
|
|
2950
2953
|
|
|
2951
2954
|
export declare const HvDialogTitle: (props: HvDialogTitleProps) => JSX_3.Element;
|
|
2952
2955
|
|
|
2953
|
-
export declare type HvDialogTitleClasses = ExtractNames<typeof
|
|
2956
|
+
export declare type HvDialogTitleClasses = ExtractNames<typeof useClasses_60>;
|
|
2954
2957
|
|
|
2955
2958
|
export declare interface HvDialogTitleProps extends Omit<DialogTitleProps, "variant" | "classes"> {
|
|
2956
2959
|
/** Variant of the dialog title. */
|
|
@@ -2971,7 +2974,7 @@ export declare type HvDialogTitleVariant = "success" | "warning" | "error" | "in
|
|
|
2971
2974
|
*/
|
|
2972
2975
|
export declare const HvDotPagination: (props: HvDotPaginationProps) => JSX_3.Element;
|
|
2973
2976
|
|
|
2974
|
-
export declare type HvDotPaginationClasses = ExtractNames<typeof
|
|
2977
|
+
export declare type HvDotPaginationClasses = ExtractNames<typeof useClasses_64>;
|
|
2975
2978
|
|
|
2976
2979
|
export declare interface HvDotPaginationProps extends Omit<HvRadioGroupProps, "classes"> {
|
|
2977
2980
|
/**
|
|
@@ -3015,7 +3018,7 @@ export declare interface HvDotPaginationProps extends Omit<HvRadioGroupProps, "c
|
|
|
3015
3018
|
*/
|
|
3016
3019
|
export declare const HvDrawer: (props: HvDrawerProps) => JSX_3.Element;
|
|
3017
3020
|
|
|
3018
|
-
export declare type HvDrawerClasses = ExtractNames<typeof
|
|
3021
|
+
export declare type HvDrawerClasses = ExtractNames<typeof useClasses_66>;
|
|
3019
3022
|
|
|
3020
3023
|
export declare interface HvDrawerProps extends Omit<DrawerProps, "classes"> {
|
|
3021
3024
|
/**
|
|
@@ -3072,7 +3075,7 @@ export declare interface HvDrawerProps extends Omit<DrawerProps, "classes"> {
|
|
|
3072
3075
|
*/
|
|
3073
3076
|
export declare const HvDropdown: ForwardRefExoticComponent<HvDropdownProps & RefAttributes<HTMLDivElement>>;
|
|
3074
3077
|
|
|
3075
|
-
export declare type HvDropdownClasses = ExtractNames<typeof
|
|
3078
|
+
export declare type HvDropdownClasses = ExtractNames<typeof useClasses_57>;
|
|
3076
3079
|
|
|
3077
3080
|
export declare function hvDropdownColumn<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer>(col: HvTableColumnConfig<D, H>, id: string | undefined, placeholder: string, disabledPlaceholder: string, onChange?: (identifier: string, value: HvListValue) => void, dropdownProps?: HvDropdownProps): HvTableColumnConfig<D, H>;
|
|
3078
3081
|
|
|
@@ -3096,7 +3099,7 @@ export declare type HvDropdownLabels = Partial<typeof DEFAULT_LABELS_4>;
|
|
|
3096
3099
|
/** @deprecated use `HvDropdownLabels` instead */
|
|
3097
3100
|
export declare type HvDropdownLabelsProps = HvDropdownLabels;
|
|
3098
3101
|
|
|
3099
|
-
declare type HvDropdownListClasses = ExtractNames<typeof
|
|
3102
|
+
declare type HvDropdownListClasses = ExtractNames<typeof useClasses_58>;
|
|
3100
3103
|
|
|
3101
3104
|
declare interface HvDropdownListProps {
|
|
3102
3105
|
/**
|
|
@@ -3171,7 +3174,7 @@ declare interface HvDropdownListProps {
|
|
|
3171
3174
|
*/
|
|
3172
3175
|
export declare const HvDropDownMenu: (props: HvDropDownMenuProps) => JSX_3.Element;
|
|
3173
3176
|
|
|
3174
|
-
export declare type HvDropDownMenuClasses = ExtractNames<typeof
|
|
3177
|
+
export declare type HvDropDownMenuClasses = ExtractNames<typeof useClasses_33>;
|
|
3175
3178
|
|
|
3176
3179
|
export declare interface HvDropDownMenuProps extends HvBaseProps<HTMLDivElement, "onClick"> {
|
|
3177
3180
|
/** Icon. */
|
|
@@ -3368,7 +3371,7 @@ declare interface HvDropZoneLabels {
|
|
|
3368
3371
|
*/
|
|
3369
3372
|
export declare const HvEmptyState: (props: HvEmptyStateProps) => JSX_3.Element;
|
|
3370
3373
|
|
|
3371
|
-
export declare type HvEmptyStateClasses = ExtractNames<typeof
|
|
3374
|
+
export declare type HvEmptyStateClasses = ExtractNames<typeof useClasses_67>;
|
|
3372
3375
|
|
|
3373
3376
|
export declare interface HvEmptyStateProps extends HvBaseProps<HTMLDivElement, "title"> {
|
|
3374
3377
|
/** Icon to be presented. */
|
|
@@ -3396,7 +3399,7 @@ export { HvExtraProps }
|
|
|
3396
3399
|
|
|
3397
3400
|
export declare const HvFile: (props: HvFileProps) => JSX_3.Element;
|
|
3398
3401
|
|
|
3399
|
-
export declare type HvFileClasses = ExtractNames<typeof
|
|
3402
|
+
export declare type HvFileClasses = ExtractNames<typeof useClasses_69>;
|
|
3400
3403
|
|
|
3401
3404
|
export declare interface HvFileData extends Omit<File, "name" | "size"> {
|
|
3402
3405
|
/**
|
|
@@ -3477,7 +3480,7 @@ export declare interface HvFileUploaderLabels extends HvDropZoneLabels {
|
|
|
3477
3480
|
*/
|
|
3478
3481
|
export declare const HvFileUploaderPreview: (props: HvFileUploaderPreviewProps) => JSX_3.Element;
|
|
3479
3482
|
|
|
3480
|
-
export declare type HvFileUploaderPreviewClasses = ExtractNames<typeof
|
|
3483
|
+
export declare type HvFileUploaderPreviewClasses = ExtractNames<typeof useClasses_68>;
|
|
3481
3484
|
|
|
3482
3485
|
export declare interface HvFileUploaderPreviewProps extends Omit<HvButtonProps, "children" | "classes"> {
|
|
3483
3486
|
/**
|
|
@@ -3552,9 +3555,9 @@ export declare interface HvFileUploaderProps extends HvBaseProps {
|
|
|
3552
3555
|
*/
|
|
3553
3556
|
export declare const HvFilterGroup: ForwardRefExoticComponent<HvFilterGroupProps & RefAttributes<HTMLDivElement>>;
|
|
3554
3557
|
|
|
3555
|
-
export declare type HvFilterGroupClasses = ExtractNames<typeof
|
|
3558
|
+
export declare type HvFilterGroupClasses = ExtractNames<typeof useClasses_70>;
|
|
3556
3559
|
|
|
3557
|
-
declare type HvFilterGroupContentClasses = ExtractNames<typeof
|
|
3560
|
+
declare type HvFilterGroupContentClasses = ExtractNames<typeof useClasses_71>;
|
|
3558
3561
|
|
|
3559
3562
|
declare interface HvFilterGroupContentProps extends Omit<HvBaseDropdownProps, "onChange"> {
|
|
3560
3563
|
description?: React.ReactNode;
|
|
@@ -3686,7 +3689,7 @@ export declare type HvFocusStrategies = "listbox" | "menu" | "card" | "grid";
|
|
|
3686
3689
|
*/
|
|
3687
3690
|
export declare const HvFooter: (props: HvFooterProps) => JSX_3.Element;
|
|
3688
3691
|
|
|
3689
|
-
export declare type HvFooterClasses = ExtractNames<typeof
|
|
3692
|
+
export declare type HvFooterClasses = ExtractNames<typeof useClasses_72>;
|
|
3690
3693
|
|
|
3691
3694
|
declare type HvFooterPropGetter<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer> = HvPropGetter<D, H, HvUseTableFooterProps, {
|
|
3692
3695
|
column: HvHeaderGroup<D, H>;
|
|
@@ -3809,7 +3812,7 @@ export declare type HvFormStatus = "standBy" | "valid" | "invalid" | "empty";
|
|
|
3809
3812
|
*/
|
|
3810
3813
|
export declare const HvGlobalActions: (props: HvGlobalActionsProps) => JSX_3.Element;
|
|
3811
3814
|
|
|
3812
|
-
export declare type HvGlobalActionsClasses = ExtractNames<typeof
|
|
3815
|
+
export declare type HvGlobalActionsClasses = ExtractNames<typeof useClasses_73>;
|
|
3813
3816
|
|
|
3814
3817
|
export declare type HvGlobalActionsHeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
3815
3818
|
|
|
@@ -3861,7 +3864,7 @@ export declare type HvGlobalActionsVariant = "global" | "section";
|
|
|
3861
3864
|
*/
|
|
3862
3865
|
export declare const HvGrid: ForwardRefExoticComponent<Omit<HvGridProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
3863
3866
|
|
|
3864
|
-
export declare type HvGridClasses = ExtractNames<typeof
|
|
3867
|
+
export declare type HvGridClasses = ExtractNames<typeof useClasses_74>;
|
|
3865
3868
|
|
|
3866
3869
|
export declare type HvGridDirection = "row" | "row-reverse" | "column" | "column-reverse";
|
|
3867
3870
|
|
|
@@ -3961,7 +3964,7 @@ export declare const HvHeader: (props: HvHeaderProps) => JSX_3.Element;
|
|
|
3961
3964
|
|
|
3962
3965
|
export declare const HvHeaderActions: (props: HvHeaderActionsProps) => JSX_3.Element;
|
|
3963
3966
|
|
|
3964
|
-
export declare type HvHeaderActionsClasses = ExtractNames<typeof
|
|
3967
|
+
export declare type HvHeaderActionsClasses = ExtractNames<typeof useClasses_76>;
|
|
3965
3968
|
|
|
3966
3969
|
export declare interface HvHeaderActionsProps extends HvBaseProps {
|
|
3967
3970
|
classes?: HvHeaderActionsClasses;
|
|
@@ -3972,7 +3975,7 @@ export declare interface HvHeaderActionsProps extends HvBaseProps {
|
|
|
3972
3975
|
*/
|
|
3973
3976
|
export declare const HvHeaderBrand: (props: HvHeaderBrandProps) => JSX_3.Element;
|
|
3974
3977
|
|
|
3975
|
-
export declare type HvHeaderBrandClasses = ExtractNames<typeof
|
|
3978
|
+
export declare type HvHeaderBrandClasses = ExtractNames<typeof useClasses_77>;
|
|
3976
3979
|
|
|
3977
3980
|
export declare interface HvHeaderBrandProps extends HvBaseProps {
|
|
3978
3981
|
logo?: React.ReactNode;
|
|
@@ -3980,7 +3983,7 @@ export declare interface HvHeaderBrandProps extends HvBaseProps {
|
|
|
3980
3983
|
classes?: HvHeaderBrandClasses;
|
|
3981
3984
|
}
|
|
3982
3985
|
|
|
3983
|
-
export declare type HvHeaderClasses = ExtractNames<typeof
|
|
3986
|
+
export declare type HvHeaderClasses = ExtractNames<typeof useClasses_75>;
|
|
3984
3987
|
|
|
3985
3988
|
declare interface HvHeaderGroup<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer> extends HvColumnInstance<D, H>, Omit<UseTableHeaderGroupProps<D>, "headers"> {
|
|
3986
3989
|
headers: Array<HvHeaderGroup<D, H>>;
|
|
@@ -3988,7 +3991,7 @@ declare interface HvHeaderGroup<D extends object = Record<string, unknown>, H ex
|
|
|
3988
3991
|
|
|
3989
3992
|
export declare const HvHeaderMenuBar: (props: HvHeaderMenuBarProps) => JSX_3.Element;
|
|
3990
3993
|
|
|
3991
|
-
declare type HvHeaderMenuBarClasses = ExtractNames<typeof
|
|
3994
|
+
declare type HvHeaderMenuBarClasses = ExtractNames<typeof useClasses_78>;
|
|
3992
3995
|
|
|
3993
3996
|
declare interface HvHeaderMenuBarProps extends HvBaseProps<HTMLDivElement, "onClick"> {
|
|
3994
3997
|
data: HvHeaderNavigationItemProp[];
|
|
@@ -4001,7 +4004,7 @@ declare interface HvHeaderMenuBarProps extends HvBaseProps<HTMLDivElement, "onCl
|
|
|
4001
4004
|
|
|
4002
4005
|
export declare const HvHeaderMenuItem: (props: HvHeaderMenuItemProps) => JSX_3.Element;
|
|
4003
4006
|
|
|
4004
|
-
declare type HvHeaderMenuItemClasses = ExtractNames<typeof
|
|
4007
|
+
declare type HvHeaderMenuItemClasses = ExtractNames<typeof useClasses_79>;
|
|
4005
4008
|
|
|
4006
4009
|
declare interface HvHeaderMenuItemProps extends HvBaseProps<HTMLDivElement, "onClick"> {
|
|
4007
4010
|
item: HvHeaderNavigationItemProp;
|
|
@@ -4014,7 +4017,7 @@ declare interface HvHeaderMenuItemProps extends HvBaseProps<HTMLDivElement, "onC
|
|
|
4014
4017
|
|
|
4015
4018
|
export declare const HvHeaderNavigation: (props: HvHeaderNavigationProps) => JSX_3.Element;
|
|
4016
4019
|
|
|
4017
|
-
export declare type HvHeaderNavigationClasses = ExtractNames<typeof
|
|
4020
|
+
export declare type HvHeaderNavigationClasses = ExtractNames<typeof useClasses_80>;
|
|
4018
4021
|
|
|
4019
4022
|
export declare interface HvHeaderNavigationItemProp {
|
|
4020
4023
|
id: string;
|
|
@@ -4073,7 +4076,7 @@ export declare interface HvHooks<D extends object = Record<string, unknown>, H e
|
|
|
4073
4076
|
useFinalInstance: Array<(instance: HvTableInstance<D, H>) => void>;
|
|
4074
4077
|
}
|
|
4075
4078
|
|
|
4076
|
-
export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof
|
|
4079
|
+
export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof useClasses_96>;
|
|
4077
4080
|
|
|
4078
4081
|
/**
|
|
4079
4082
|
* Provides the user with additional descriptive text for the form element.
|
|
@@ -4097,7 +4100,7 @@ export declare interface HvInfoMessageProps extends HvTypographyProps<"label"> {
|
|
|
4097
4100
|
*/
|
|
4098
4101
|
export declare const HvInlineEditor: (props: HvInlineEditorProps) => JSX_3.Element;
|
|
4099
4102
|
|
|
4100
|
-
export declare type HvInlineEditorClasses = ExtractNames<typeof
|
|
4103
|
+
export declare type HvInlineEditorClasses = ExtractNames<typeof useClasses_81>;
|
|
4101
4104
|
|
|
4102
4105
|
export declare interface HvInlineEditorProps extends HvBaseProps<HTMLDivElement, "onBlur" | "onChange"> {
|
|
4103
4106
|
/** The value of the form element. */
|
|
@@ -4129,7 +4132,7 @@ export declare interface HvInlineEditorProps extends HvBaseProps<HTMLDivElement,
|
|
|
4129
4132
|
*/
|
|
4130
4133
|
export declare const HvInput: React_2.ForwardRefExoticComponent<HvInputProps & React_2.RefAttributes<InputElement>>;
|
|
4131
4134
|
|
|
4132
|
-
export declare type HvInputClasses = ExtractNames<typeof
|
|
4135
|
+
export declare type HvInputClasses = ExtractNames<typeof useClasses_45>;
|
|
4133
4136
|
|
|
4134
4137
|
export declare type HvInputLabels = Partial<typeof DEFAULT_LABELS_2>;
|
|
4135
4138
|
|
|
@@ -4277,7 +4280,7 @@ export declare interface HvKnobProperty {
|
|
|
4277
4280
|
*/
|
|
4278
4281
|
export declare const HvKpi: (props: HvKpiProps) => JSX_3.Element;
|
|
4279
4282
|
|
|
4280
|
-
export declare type HvKpiClasses = ExtractNames<typeof
|
|
4283
|
+
export declare type HvKpiClasses = ExtractNames<typeof useClasses_82>;
|
|
4281
4284
|
|
|
4282
4285
|
export declare type HvKpiLabelProps = Partial<typeof DEFAULT_LABELS_7>;
|
|
4283
4286
|
|
|
@@ -4336,7 +4339,7 @@ export declare interface HvLabelProps extends HvTypographyProps<"label"> {
|
|
|
4336
4339
|
|
|
4337
4340
|
export declare const HvLeftControl: ({ id, classes: classesProp, className, children, placeholder, onSearch, hideSearch, searchProps, ...others }: HvLeftControlProps) => JSX_3.Element;
|
|
4338
4341
|
|
|
4339
|
-
export declare type HvLeftControlClasses = ExtractNames<typeof
|
|
4342
|
+
export declare type HvLeftControlClasses = ExtractNames<typeof useClasses_55>;
|
|
4340
4343
|
|
|
4341
4344
|
export declare interface HvLeftControlProps extends HvBaseProps {
|
|
4342
4345
|
/** if `true` the hide sort by dropdown is not rendered */
|
|
@@ -4353,7 +4356,7 @@ export declare interface HvLeftControlProps extends HvBaseProps {
|
|
|
4353
4356
|
|
|
4354
4357
|
export declare const HvLink: (props: HvLinkProps) => JSX_3.Element;
|
|
4355
4358
|
|
|
4356
|
-
export declare type HvLinkClasses = ExtractNames<typeof
|
|
4359
|
+
export declare type HvLinkClasses = ExtractNames<typeof useClasses_83>;
|
|
4357
4360
|
|
|
4358
4361
|
export declare interface HvLinkProps extends HvBaseProps<HTMLAnchorElement, "onClick"> {
|
|
4359
4362
|
onClick?: (event: React.MouseEvent<HTMLAnchorElement>, data: any) => void | undefined;
|
|
@@ -4369,7 +4372,7 @@ export declare interface HvLinkProps extends HvBaseProps<HTMLAnchorElement, "onC
|
|
|
4369
4372
|
*/
|
|
4370
4373
|
export declare const HvList: (props: HvListProps) => JSX_3.Element | null;
|
|
4371
4374
|
|
|
4372
|
-
export declare type HvListClasses = ExtractNames<typeof
|
|
4375
|
+
export declare type HvListClasses = ExtractNames<typeof useClasses_84>;
|
|
4373
4376
|
|
|
4374
4377
|
/**
|
|
4375
4378
|
* A <b>list</b> is any enumeration of a set of items.
|
|
@@ -4522,7 +4525,7 @@ export declare interface HvListValue extends HvExtraProps {
|
|
|
4522
4525
|
*/
|
|
4523
4526
|
export declare const HvLoading: (props: HvLoadingProps) => JSX_3.Element;
|
|
4524
4527
|
|
|
4525
|
-
export declare type HvLoadingClasses = ExtractNames<typeof
|
|
4528
|
+
export declare type HvLoadingClasses = ExtractNames<typeof useClasses_85>;
|
|
4526
4529
|
|
|
4527
4530
|
export declare interface HvLoadingProps extends HvBaseProps {
|
|
4528
4531
|
/** Indicates if the component should be render in a small size. */
|
|
@@ -4542,7 +4545,7 @@ export declare interface HvLoadingProps extends HvBaseProps {
|
|
|
4542
4545
|
*/
|
|
4543
4546
|
export declare const HvLogin: (props: HvLoginProps) => JSX_3.Element;
|
|
4544
4547
|
|
|
4545
|
-
export declare type HvLoginClasses = ExtractNames<typeof
|
|
4548
|
+
export declare type HvLoginClasses = ExtractNames<typeof useClasses_86>;
|
|
4546
4549
|
|
|
4547
4550
|
export declare interface HvLoginProps extends HvBaseProps {
|
|
4548
4551
|
/**
|
|
@@ -4569,7 +4572,7 @@ declare interface HvMetaBase<D extends object = Record<string, unknown>, H exten
|
|
|
4569
4572
|
|
|
4570
4573
|
export declare const HvMultiButton: (props: HvMultiButtonProps) => JSX_3.Element;
|
|
4571
4574
|
|
|
4572
|
-
export declare type HvMultiButtonClasses = ExtractNames<typeof
|
|
4575
|
+
export declare type HvMultiButtonClasses = ExtractNames<typeof useClasses_87>;
|
|
4573
4576
|
|
|
4574
4577
|
export declare interface HvMultiButtonProps extends HvBaseProps {
|
|
4575
4578
|
/** If all the buttons are disabled. */
|
|
@@ -4601,12 +4604,28 @@ export declare function hvNumberColumn<D extends object = Record<string, unknown
|
|
|
4601
4604
|
|
|
4602
4605
|
export declare const hvNumberFallback: (value: any) => number | "—";
|
|
4603
4606
|
|
|
4607
|
+
export declare const HvOption: <OptionValue extends {}>(props: HvOptionProps<OptionValue> & RefAttributes<HTMLLIElement>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
4608
|
+
|
|
4609
|
+
export declare type HvOptionClasses = ExtractNames<typeof useClasses_12>;
|
|
4610
|
+
|
|
4611
|
+
export declare const HvOptionGroup: ForwardRefExoticComponent<Omit<HvOptionGroupProps, "ref"> & RefAttributes<HTMLLIElement>>;
|
|
4612
|
+
|
|
4613
|
+
export declare type HvOptionGroupClasses = ExtractNames<typeof useClasses_13>;
|
|
4614
|
+
|
|
4615
|
+
export declare interface HvOptionGroupProps extends OptionGroupProps {
|
|
4616
|
+
classes?: HvOptionGroupClasses;
|
|
4617
|
+
}
|
|
4618
|
+
|
|
4619
|
+
export declare interface HvOptionProps<OptionValue extends {}> extends Omit<HvListItemProps, "value" | "disabled">, Pick<OptionOwnProps<OptionValue>, "disabled" | "label" | "value"> {
|
|
4620
|
+
classes?: HvOptionClasses;
|
|
4621
|
+
}
|
|
4622
|
+
|
|
4604
4623
|
/**
|
|
4605
4624
|
* This component generates a tooltip whenever the text is overflowed.
|
|
4606
4625
|
*/
|
|
4607
4626
|
export declare const HvOverflowTooltip: (props: HvOverflowTooltipProps) => JSX_3.Element;
|
|
4608
4627
|
|
|
4609
|
-
export declare type HvOverflowTooltipClasses = ExtractNames<typeof
|
|
4628
|
+
export declare type HvOverflowTooltipClasses = ExtractNames<typeof useClasses_88>;
|
|
4610
4629
|
|
|
4611
4630
|
export declare interface HvOverflowTooltipProps extends HvBaseProps {
|
|
4612
4631
|
/** The node that will be rendered inside the tooltip. */
|
|
@@ -4629,7 +4648,7 @@ export declare interface HvOverflowTooltipProps extends HvBaseProps {
|
|
|
4629
4648
|
*/
|
|
4630
4649
|
export declare const HvPagination: (props: HvPaginationProps) => JSX_3.Element;
|
|
4631
4650
|
|
|
4632
|
-
export declare type HvPaginationClasses = ExtractNames<typeof
|
|
4651
|
+
export declare type HvPaginationClasses = ExtractNames<typeof useClasses_46>;
|
|
4633
4652
|
|
|
4634
4653
|
export declare type HvPaginationLabels = Partial<typeof DEFAULT_LABELS>;
|
|
4635
4654
|
|
|
@@ -4675,7 +4694,7 @@ export declare interface HvPaginationProps extends HvBaseProps {
|
|
|
4675
4694
|
*/
|
|
4676
4695
|
export declare const HvPanel: ForwardRefExoticComponent<HvPanelProps & RefAttributes<HTMLDivElement>>;
|
|
4677
4696
|
|
|
4678
|
-
export declare type HvPanelClasses = ExtractNames<typeof
|
|
4697
|
+
export declare type HvPanelClasses = ExtractNames<typeof useClasses_90>;
|
|
4679
4698
|
|
|
4680
4699
|
export declare interface HvPanelProps extends HvBaseProps {
|
|
4681
4700
|
/** A Jss Object used to override or extend the styles applied. */
|
|
@@ -4686,7 +4705,7 @@ export declare type HvPolarizedColorKeys = "positive" | "positive_120" | "positi
|
|
|
4686
4705
|
|
|
4687
4706
|
export declare const HvProgressBar: (props: HvProgressBarProps) => JSX_3.Element;
|
|
4688
4707
|
|
|
4689
|
-
export declare type HvProgressBarClasses = ExtractNames<typeof
|
|
4708
|
+
export declare type HvProgressBarClasses = ExtractNames<typeof useClasses_91>;
|
|
4690
4709
|
|
|
4691
4710
|
/**
|
|
4692
4711
|
* ProgressBar provides feedback about a process that is taking place in the application.
|
|
@@ -4806,7 +4825,7 @@ export declare interface HvQueryBuilderChangedQuery extends Omit<HvQueryBuilderQ
|
|
|
4806
4825
|
rules: Array<Omit<HvQueryBuilderQueryRule, "id"> | HvQueryBuilderChangedQuery>;
|
|
4807
4826
|
}
|
|
4808
4827
|
|
|
4809
|
-
export declare type HvQueryBuilderClasses = ExtractNames<typeof
|
|
4828
|
+
export declare type HvQueryBuilderClasses = ExtractNames<typeof useClasses_92>;
|
|
4810
4829
|
|
|
4811
4830
|
declare interface HvQueryBuilderContextValue {
|
|
4812
4831
|
dispatchAction: React.Dispatch<QueryAction>;
|
|
@@ -5174,7 +5193,7 @@ export declare type HvQueryBuilderRenderers = Record<string, ValueRenderer>;
|
|
|
5174
5193
|
*/
|
|
5175
5194
|
export declare const HvRadio: React_2.ForwardRefExoticComponent<Omit<HvRadioProps, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
|
|
5176
5195
|
|
|
5177
|
-
export declare type HvRadioClasses = ExtractNames<typeof
|
|
5196
|
+
export declare type HvRadioClasses = ExtractNames<typeof useClasses_93>;
|
|
5178
5197
|
|
|
5179
5198
|
/**
|
|
5180
5199
|
* A group of radio buttons.
|
|
@@ -5183,7 +5202,7 @@ export declare type HvRadioClasses = ExtractNames<typeof useClasses_90>;
|
|
|
5183
5202
|
*/
|
|
5184
5203
|
export declare const HvRadioGroup: ForwardRefExoticComponent<HvRadioGroupProps & RefAttributes<HTMLDivElement>>;
|
|
5185
5204
|
|
|
5186
|
-
export declare type HvRadioGroupClasses = ExtractNames<typeof
|
|
5205
|
+
export declare type HvRadioGroupClasses = ExtractNames<typeof useClasses_65>;
|
|
5187
5206
|
|
|
5188
5207
|
export declare interface HvRadioGroupProps extends HvBaseProps<HTMLDivElement, "onChange"> {
|
|
5189
5208
|
/**
|
|
@@ -5354,7 +5373,7 @@ export declare type HvRadioStatus = "standBy" | "valid" | "invalid";
|
|
|
5354
5373
|
|
|
5355
5374
|
export declare const HvRightControl: ({ id, classes: classesProp, className, children, values, onSort, hideSortBy, sortProps, ...others }: HvRightControlProps) => JSX_3.Element;
|
|
5356
5375
|
|
|
5357
|
-
export declare type HvRightControlClasses = ExtractNames<typeof
|
|
5376
|
+
export declare type HvRightControlClasses = ExtractNames<typeof useClasses_56>;
|
|
5358
5377
|
|
|
5359
5378
|
export declare interface HvRightControlProps extends HvBaseProps {
|
|
5360
5379
|
/** if `true` the hide sort by dropdown is not rendered */
|
|
@@ -5393,7 +5412,7 @@ declare type HvRowPropGetter<D extends object = Record<string, unknown>, H exten
|
|
|
5393
5412
|
*/
|
|
5394
5413
|
export declare const HvScrollToHorizontal: (props: HvScrollToHorizontalProps) => JSX_3.Element;
|
|
5395
5414
|
|
|
5396
|
-
export declare type HvScrollToHorizontalClasses = ExtractNames<typeof
|
|
5415
|
+
export declare type HvScrollToHorizontalClasses = ExtractNames<typeof useClasses_97>;
|
|
5397
5416
|
|
|
5398
5417
|
export declare interface HvScrollToHorizontalOption {
|
|
5399
5418
|
key?: string;
|
|
@@ -5482,7 +5501,7 @@ export declare type HvScrollToTooltipPositions = "left" | "right" | "top" | "bot
|
|
|
5482
5501
|
*/
|
|
5483
5502
|
export declare const HvScrollToVertical: (props: HvScrollToVerticalProps) => JSX_3.Element;
|
|
5484
5503
|
|
|
5485
|
-
export declare type HvScrollToVerticalClasses = ExtractNames<typeof
|
|
5504
|
+
export declare type HvScrollToVerticalClasses = ExtractNames<typeof useClasses_95>;
|
|
5486
5505
|
|
|
5487
5506
|
export declare type HvScrollToVerticalOption = HvScrollToOption;
|
|
5488
5507
|
|
|
@@ -5557,7 +5576,7 @@ export declare interface HvScrollToVerticalProps extends HvBaseProps<HTMLOListEl
|
|
|
5557
5576
|
*/
|
|
5558
5577
|
export declare const HvSection: ForwardRefExoticComponent<HvSectionProps & RefAttributes<HTMLDivElement>>;
|
|
5559
5578
|
|
|
5560
|
-
export declare type HvSectionClasses = ExtractNames<typeof
|
|
5579
|
+
export declare type HvSectionClasses = ExtractNames<typeof useClasses_98>;
|
|
5561
5580
|
|
|
5562
5581
|
export declare interface HvSectionProps extends Omit<HvBaseProps<HTMLDivElement>, "title"> {
|
|
5563
5582
|
/** The title of the section */
|
|
@@ -5582,6 +5601,21 @@ export declare interface HvSectionProps extends Omit<HvBaseProps<HTMLDivElement>
|
|
|
5582
5601
|
contentRef?: React.Ref<HTMLDivElement>;
|
|
5583
5602
|
}
|
|
5584
5603
|
|
|
5604
|
+
/**
|
|
5605
|
+
* The `HvSelect` component is a form control element that allows selection from a list of options.
|
|
5606
|
+
*
|
|
5607
|
+
* It aims to be aligned with the native HTML `<select>` and `<option>` APIs and be easily integrated with forms.
|
|
5608
|
+
*
|
|
5609
|
+
* @example
|
|
5610
|
+
* <HvSelect name="pets">
|
|
5611
|
+
* <HvOption value="dog">Dog</HvOption>
|
|
5612
|
+
* <HvOption value="cat">Cat</HvOption>
|
|
5613
|
+
* </HvSelect>
|
|
5614
|
+
* */
|
|
5615
|
+
export declare const HvSelect: <OptionValue extends {}, Multiple extends boolean>(props: HvSelectProps<OptionValue, Multiple> & React_2.RefAttributes<HTMLButtonElement>) => React_2.ReactElement<any, string | React_2.JSXElementConstructor<any>> | null;
|
|
5616
|
+
|
|
5617
|
+
export declare type HvSelectClasses = ExtractNames<typeof useClasses_11>;
|
|
5618
|
+
|
|
5585
5619
|
/**
|
|
5586
5620
|
* Allows the user to select one or more items from a list of choices.
|
|
5587
5621
|
*
|
|
@@ -5590,7 +5624,7 @@ export declare interface HvSectionProps extends Omit<HvBaseProps<HTMLDivElement>
|
|
|
5590
5624
|
*/
|
|
5591
5625
|
export declare const HvSelectionList: React_2.ForwardRefExoticComponent<HvSelectionListProps & React_2.RefAttributes<HTMLUListElement>>;
|
|
5592
5626
|
|
|
5593
|
-
export declare type HvSelectionListClasses = ExtractNames<typeof
|
|
5627
|
+
export declare type HvSelectionListClasses = ExtractNames<typeof useClasses_14>;
|
|
5594
5628
|
|
|
5595
5629
|
export declare interface HvSelectionListProps extends HvBaseProps<HTMLUListElement, "onChange"> {
|
|
5596
5630
|
/** The form element name. */
|
|
@@ -5648,6 +5682,14 @@ export declare interface HvSelectionListProps extends HvBaseProps<HTMLUListEleme
|
|
|
5648
5682
|
classes?: HvSelectionListClasses;
|
|
5649
5683
|
}
|
|
5650
5684
|
|
|
5685
|
+
export declare interface HvSelectProps<OptionValue extends {}, Multiple extends boolean = false> extends Omit<HvFormElementProps, "value" | "defaultValue" | "onChange">, Pick<UseSelectParameters<OptionValue, Multiple>, "name" | "required" | "disabled" | "multiple" | "open" | "defaultOpen" | "value" | "defaultValue" | "buttonRef" | "options" | "getSerializedValue" | "onChange" | "onOpenChange"> {
|
|
5686
|
+
classes?: HvSelectClasses;
|
|
5687
|
+
placeholder?: React_2.ReactNode;
|
|
5688
|
+
autoComplete?: string;
|
|
5689
|
+
/** Whether the width of the select panel can vary independently. */
|
|
5690
|
+
variableWidth?: boolean;
|
|
5691
|
+
}
|
|
5692
|
+
|
|
5651
5693
|
export { HvSemanticColor }
|
|
5652
5694
|
|
|
5653
5695
|
export declare type HvSemanticColorKeys = HvSemanticColor;
|
|
@@ -5658,7 +5700,7 @@ export declare type HvSequentialColorKeys = "cat1" | "cat1_100" | "cat1_200" | "
|
|
|
5658
5700
|
|
|
5659
5701
|
export declare const HvSimpleGrid: (props: HvSimpleGridProps) => JSX_3.Element;
|
|
5660
5702
|
|
|
5661
|
-
export declare type HvSimpleGridClasses = ExtractNames<typeof
|
|
5703
|
+
export declare type HvSimpleGridClasses = ExtractNames<typeof useClasses_99>;
|
|
5662
5704
|
|
|
5663
5705
|
/** Grid component that enables you to create columns of equal width and define your own breakpoints and responsive behavior. */
|
|
5664
5706
|
export declare interface HvSimpleGridProps extends HvBaseProps {
|
|
@@ -5691,7 +5733,7 @@ export { HvSize }
|
|
|
5691
5733
|
*/
|
|
5692
5734
|
export declare const HvSlider: React_2.ForwardRefExoticComponent<HvSliderProps & React_2.RefAttributes<SliderRef>>;
|
|
5693
5735
|
|
|
5694
|
-
export declare type HvSliderClasses = ExtractNames<typeof
|
|
5736
|
+
export declare type HvSliderClasses = ExtractNames<typeof useClasses_100>;
|
|
5695
5737
|
|
|
5696
5738
|
export declare interface HvSliderProps extends HvBaseProps<HTMLDivElement, "onChange" | "onBlur"> {
|
|
5697
5739
|
/**
|
|
@@ -5835,11 +5877,11 @@ export declare interface HvSliderProps extends HvBaseProps<HTMLDivElement, "onCh
|
|
|
5835
5877
|
*/
|
|
5836
5878
|
export declare const HvSnackbar: ({ classes: classesProp, className, id, open, onClose, label, anchorOrigin, autoHideDuration, variant, showIcon, customIcon, action, actionCallback, transitionDuration, transitionDirection, container, offset, snackbarContentProps, ...others }: HvSnackbarProps) => JSX_3.Element;
|
|
5837
5879
|
|
|
5838
|
-
export declare type HvSnackbarClasses = ExtractNames<typeof
|
|
5880
|
+
export declare type HvSnackbarClasses = ExtractNames<typeof useClasses_101>;
|
|
5839
5881
|
|
|
5840
5882
|
export declare const HvSnackbarContent: ForwardRefExoticComponent<Omit<HvSnackbarContentProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
5841
5883
|
|
|
5842
|
-
export declare type HvSnackbarContentClasses = ExtractNames<typeof
|
|
5884
|
+
export declare type HvSnackbarContentClasses = ExtractNames<typeof useClasses_102>;
|
|
5843
5885
|
|
|
5844
5886
|
export declare interface HvSnackbarContentProps extends Omit<SnackbarContentProps, "variant" | "action" | "classes"> {
|
|
5845
5887
|
/** The message to display. */
|
|
@@ -5897,7 +5939,7 @@ export declare interface HvSnackbarProps extends Omit<SnackbarProps, "action" |
|
|
|
5897
5939
|
|
|
5898
5940
|
export declare const HvSnackbarProvider: ({ children, notistackClassesOverride, maxSnack, autoHideDuration, anchorOrigin, classes: classesProp, className, container, ...others }: HvSnackbarProviderProps) => JSX_3.Element;
|
|
5899
5941
|
|
|
5900
|
-
export declare type HvSnackbarProviderClasses = ExtractNames<typeof
|
|
5942
|
+
export declare type HvSnackbarProviderClasses = ExtractNames<typeof useClasses_103>;
|
|
5901
5943
|
|
|
5902
5944
|
export declare interface HvSnackbarProviderProps {
|
|
5903
5945
|
/** Your component tree. */
|
|
@@ -5930,7 +5972,7 @@ export declare const HvStack: (props: HvStackProps) => JSX_3.Element;
|
|
|
5930
5972
|
export declare interface HvStackBreakpoints extends Record<HvBreakpoints, string> {
|
|
5931
5973
|
}
|
|
5932
5974
|
|
|
5933
|
-
export declare type HvStackClasses = ExtractNames<typeof
|
|
5975
|
+
export declare type HvStackClasses = ExtractNames<typeof useClasses_104>;
|
|
5934
5976
|
|
|
5935
5977
|
export declare type HvStackDirection = "column" | "row" | Partial<HvStackBreakpoints>;
|
|
5936
5978
|
|
|
@@ -5963,7 +6005,7 @@ export declare interface HvSuggestion {
|
|
|
5963
6005
|
|
|
5964
6006
|
export declare const HvSuggestions: React_2.ForwardRefExoticComponent<HvSuggestionsProps & React_2.RefAttributes<unknown>>;
|
|
5965
6007
|
|
|
5966
|
-
export declare type HvSuggestionsClasses = ExtractNames<typeof
|
|
6008
|
+
export declare type HvSuggestionsClasses = ExtractNames<typeof useClasses_15>;
|
|
5967
6009
|
|
|
5968
6010
|
export declare interface HvSuggestionsProps extends HvBaseProps {
|
|
5969
6011
|
/** Whether suggestions is visible. */
|
|
@@ -5994,7 +6036,7 @@ export declare type HvSupportColors = Record<HvSupportColorKeys, string>;
|
|
|
5994
6036
|
*/
|
|
5995
6037
|
export declare const HvSwitch: React_2.ForwardRefExoticComponent<Omit<HvSwitchProps, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
|
|
5996
6038
|
|
|
5997
|
-
export declare type HvSwitchClasses = ExtractNames<typeof
|
|
6039
|
+
export declare type HvSwitchClasses = ExtractNames<typeof useClasses_105>;
|
|
5998
6040
|
|
|
5999
6041
|
export declare function hvSwitchColumn<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer>(col: HvTableColumnConfig<D, H>, switchLabel: string, falseLabel?: string, trueLabel?: string, switchProps?: HvBaseSwitchProps): HvTableColumnConfig<D, H>;
|
|
6000
6042
|
|
|
@@ -6103,7 +6145,7 @@ export declare interface HvSwitchProps extends Omit<SwitchProps, "onChange" | "c
|
|
|
6103
6145
|
|
|
6104
6146
|
export declare const HvTab: (props: HvTabProps) => JSX_3.Element;
|
|
6105
6147
|
|
|
6106
|
-
export declare type HvTabClasses = ExtractNames<typeof
|
|
6148
|
+
export declare type HvTabClasses = ExtractNames<typeof useClasses_106>;
|
|
6107
6149
|
|
|
6108
6150
|
/**
|
|
6109
6151
|
* A table gathers relational data. It displays values arranged to allow quick numerical analysis like comparison and sorting.
|
|
@@ -6123,7 +6165,7 @@ export declare const HvTable: ForwardRefExoticComponent<HvTableProps & RefAttrib
|
|
|
6123
6165
|
*/
|
|
6124
6166
|
export declare const HvTableBody: React_2.ForwardRefExoticComponent<HvTableBodyProps & React_2.RefAttributes<HTMLElement>>;
|
|
6125
6167
|
|
|
6126
|
-
export declare type HvTableBodyClasses = ExtractNames<typeof
|
|
6168
|
+
export declare type HvTableBodyClasses = ExtractNames<typeof useClasses_108>;
|
|
6127
6169
|
|
|
6128
6170
|
export declare interface HvTableBodyProps extends HvBaseProps<HTMLTableSectionElement, "children"> {
|
|
6129
6171
|
/**
|
|
@@ -6157,7 +6199,7 @@ export declare const HvTableCell: ForwardRefExoticComponent<HvTableCellProps & R
|
|
|
6157
6199
|
|
|
6158
6200
|
export declare type HvTableCellAlign = "center" | "inherit" | "justify" | "left" | "right";
|
|
6159
6201
|
|
|
6160
|
-
export declare type HvTableCellClasses = ExtractNames<typeof
|
|
6202
|
+
export declare type HvTableCellClasses = ExtractNames<typeof useClasses_51>;
|
|
6161
6203
|
|
|
6162
6204
|
export declare interface HvTableCellProps extends Omit<TdHTMLAttributes<HTMLTableCellElement>, "align"> {
|
|
6163
6205
|
/** The component used for the root node. Either a string to use a HTML element or a component. Defaults to td. */
|
|
@@ -6196,7 +6238,7 @@ export declare type HvTableCellType = "body" | "footer" | "head";
|
|
|
6196
6238
|
|
|
6197
6239
|
export declare type HvTableCellVariant = "checkbox" | "expand" | "actions" | "default" | "none";
|
|
6198
6240
|
|
|
6199
|
-
export declare type HvTableClasses = ExtractNames<typeof
|
|
6241
|
+
export declare type HvTableClasses = ExtractNames<typeof useClasses_54>;
|
|
6200
6242
|
|
|
6201
6243
|
export declare type HvTableColumnConfig<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer> = HvColumnGroup<D, H> | HvColumnWithLooseAccessor<D, H> | HvColumnWithStrictAccessor<D, H>;
|
|
6202
6244
|
|
|
@@ -6211,7 +6253,7 @@ export declare interface HvTableColumnOptions<D extends object = Record<string,
|
|
|
6211
6253
|
*/
|
|
6212
6254
|
export declare const HvTableContainer: ForwardRefExoticComponent<HvTableContainerProps & RefAttributes<HTMLElement>>;
|
|
6213
6255
|
|
|
6214
|
-
export declare type HvTableContainerClasses = ExtractNames<typeof
|
|
6256
|
+
export declare type HvTableContainerClasses = ExtractNames<typeof useClasses_107>;
|
|
6215
6257
|
|
|
6216
6258
|
export declare interface HvTableContainerProps extends HvBaseProps<HTMLDivElement, "children"> {
|
|
6217
6259
|
/**
|
|
@@ -6235,14 +6277,14 @@ export declare type HvTableDefinitionConfig<D extends object = Record<string, un
|
|
|
6235
6277
|
*/
|
|
6236
6278
|
export declare const HvTableHead: ForwardRefExoticComponent<HvTableHeadProps & RefAttributes<HTMLElement>>;
|
|
6237
6279
|
|
|
6238
|
-
export declare type HvTableHeadClasses = ExtractNames<typeof
|
|
6280
|
+
export declare type HvTableHeadClasses = ExtractNames<typeof useClasses_109>;
|
|
6239
6281
|
|
|
6240
6282
|
/**
|
|
6241
6283
|
* `HvTableHeader` acts as a `th` element and inherits styles from its context
|
|
6242
6284
|
*/
|
|
6243
6285
|
export declare const HvTableHeader: ForwardRefExoticComponent<HvTableHeaderProps & RefAttributes<HTMLElement>>;
|
|
6244
6286
|
|
|
6245
|
-
export declare type HvTableHeaderClasses = ExtractNames<typeof
|
|
6287
|
+
export declare type HvTableHeaderClasses = ExtractNames<typeof useClasses_53>;
|
|
6246
6288
|
|
|
6247
6289
|
export declare interface HvTableHeaderProps extends Omit<ThHTMLAttributes<HTMLTableCellElement>, "align"> {
|
|
6248
6290
|
/** The component used for the root node. Either a string to use a HTML element or a component. Defaults to th. */
|
|
@@ -6383,7 +6425,7 @@ export declare interface HvTableProps extends TableHTMLAttributes<HTMLTableEleme
|
|
|
6383
6425
|
*/
|
|
6384
6426
|
export declare const HvTableRow: ForwardRefExoticComponent<HvTableRowProps & RefAttributes<HTMLElement>>;
|
|
6385
6427
|
|
|
6386
|
-
export declare type HvTableRowClasses = ExtractNames<typeof
|
|
6428
|
+
export declare type HvTableRowClasses = ExtractNames<typeof useClasses_52>;
|
|
6387
6429
|
|
|
6388
6430
|
export declare interface HvTableRowProps extends HvBaseProps<HTMLTableRowElement, "children"> {
|
|
6389
6431
|
/** Content to be rendered */
|
|
@@ -6408,7 +6450,7 @@ export declare interface HvTableRowProps extends HvBaseProps<HTMLTableRowElement
|
|
|
6408
6450
|
*/
|
|
6409
6451
|
export declare const HvTableSection: ForwardRefExoticComponent<HvTableSectionProps & RefAttributes<HTMLDivElement>>;
|
|
6410
6452
|
|
|
6411
|
-
export declare type HvTableSectionClasses = ExtractNames<typeof
|
|
6453
|
+
export declare type HvTableSectionClasses = ExtractNames<typeof useClasses_127>;
|
|
6412
6454
|
|
|
6413
6455
|
export declare interface HvTableSectionProps extends HvSectionProps {
|
|
6414
6456
|
}
|
|
@@ -6438,7 +6480,7 @@ export declare interface HvTabProps extends Omit<TabProps, "children"> {
|
|
|
6438
6480
|
*/
|
|
6439
6481
|
export declare const HvTabs: (props: HvTabsProps) => JSX_3.Element;
|
|
6440
6482
|
|
|
6441
|
-
export declare type HvTabsClasses = ExtractNames<typeof
|
|
6483
|
+
export declare type HvTabsClasses = ExtractNames<typeof useClasses_111>;
|
|
6442
6484
|
|
|
6443
6485
|
export declare interface HvTabsProps extends Omit<TabsProps, "onChange"> {
|
|
6444
6486
|
/**
|
|
@@ -6469,7 +6511,7 @@ export declare interface HvTabsProps extends Omit<TabsProps, "onChange"> {
|
|
|
6469
6511
|
*/
|
|
6470
6512
|
export declare const HvTag: React_2.ForwardRefExoticComponent<Omit<HvTagProps, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
6471
6513
|
|
|
6472
|
-
export declare type HvTagClasses = ExtractNames<typeof
|
|
6514
|
+
export declare type HvTagClasses = ExtractNames<typeof useClasses_110>;
|
|
6473
6515
|
|
|
6474
6516
|
export declare function hvTagColumn<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer, A extends object = Record<string, unknown>>(col: HvTableColumnConfig<D, H>, valueDataKey: keyof A, colorDataKey: keyof A, textColorDataKey: keyof A, fromRowData?: boolean, tagProps?: HvTagProps): HvTableColumnConfig<D, H>;
|
|
6475
6517
|
|
|
@@ -6516,7 +6558,7 @@ export declare interface HvTagProps extends Omit<ChipProps, "color" | "classes"
|
|
|
6516
6558
|
*/
|
|
6517
6559
|
export declare const HvTagsInput: React_2.ForwardRefExoticComponent<HvTagsInputProps & React_2.RefAttributes<HTMLUListElement>>;
|
|
6518
6560
|
|
|
6519
|
-
export declare type HvTagsInputClasses = ExtractNames<typeof
|
|
6561
|
+
export declare type HvTagsInputClasses = ExtractNames<typeof useClasses_112>;
|
|
6520
6562
|
|
|
6521
6563
|
export declare interface HvTagsInputProps extends HvBaseProps<HTMLElement, "onChange" | "onBlur" | "onFocus" | "onKeyDown" | "color" | "defaultValue"> {
|
|
6522
6564
|
/** The form element name. */
|
|
@@ -6595,7 +6637,7 @@ export declare interface HvTagSuggestion extends HvInputSuggestion {
|
|
|
6595
6637
|
*/
|
|
6596
6638
|
export declare const HvTextArea: ForwardRefExoticComponent<Omit<HvTextAreaProps, "ref"> & RefAttributes<any>>;
|
|
6597
6639
|
|
|
6598
|
-
export declare type HvTextAreaClasses = ExtractNames<typeof
|
|
6640
|
+
export declare type HvTextAreaClasses = ExtractNames<typeof useClasses_113>;
|
|
6599
6641
|
|
|
6600
6642
|
export declare interface HvTextAreaProps extends Omit<HvBaseInputProps, "onChange" | "onBlur" | "rows" | "classes" | "onFocus" | "placeholder"> {
|
|
6601
6643
|
/** The placeholder value of the text area. */
|
|
@@ -6777,7 +6819,7 @@ export declare const HvTimeAgo: <C extends ElementType<any, keyof JSX_2.Intrinsi
|
|
|
6777
6819
|
ref?: PolymorphicRef<C> | undefined;
|
|
6778
6820
|
} & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
6779
6821
|
|
|
6780
|
-
export declare type HvTimeAgoClasses = ExtractNames<typeof
|
|
6822
|
+
export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_114>;
|
|
6781
6823
|
|
|
6782
6824
|
export declare type HvTimeAgoProps<C extends React.ElementType = "p"> = PolymorphicComponentRef<C, {
|
|
6783
6825
|
/**
|
|
@@ -6813,7 +6855,7 @@ export declare type HvTimeAgoProps<C extends React.ElementType = "p"> = Polymorp
|
|
|
6813
6855
|
*/
|
|
6814
6856
|
export declare const HvTimePicker: ForwardRefExoticComponent<HvTimePickerProps & RefAttributes<HTMLDivElement>>;
|
|
6815
6857
|
|
|
6816
|
-
export declare type HvTimePickerClasses = ExtractNames<typeof
|
|
6858
|
+
export declare type HvTimePickerClasses = ExtractNames<typeof useClasses_115>;
|
|
6817
6859
|
|
|
6818
6860
|
export declare type HvTimePickerClassKey = "root" | "input" | "label" | "placeholder" | "timePopperContainer" | "separator" | "periodContainer" | "formElementRoot" | "dropdownPlaceholder" | "iconBaseRoot" | "error" | "labelContainer" | "description" | "dropdownHeaderInvalid" | "dropdownPlaceholderDisabled" | "dropdownHeaderOpen";
|
|
6819
6861
|
|
|
@@ -6898,7 +6940,7 @@ export declare interface HvToggleButtonProps extends HvBaseProps<HTMLButtonEleme
|
|
|
6898
6940
|
*/
|
|
6899
6941
|
export declare const HvTooltip: ForwardRefExoticComponent<Omit<HvTooltipProps, "ref"> & RefAttributes<unknown>>;
|
|
6900
6942
|
|
|
6901
|
-
export declare type HvTooltipClasses = ExtractNames<typeof
|
|
6943
|
+
export declare type HvTooltipClasses = ExtractNames<typeof useClasses_89>;
|
|
6902
6944
|
|
|
6903
6945
|
export declare type HvTooltipPlacementType = TooltipProps["placement"];
|
|
6904
6946
|
|
|
@@ -6944,7 +6986,7 @@ export declare interface HvTooltipProps extends Omit<TooltipProps, "classes"> {
|
|
|
6944
6986
|
containerId?: string;
|
|
6945
6987
|
}
|
|
6946
6988
|
|
|
6947
|
-
declare type HvTreeContentClasses = ExtractNames<typeof
|
|
6989
|
+
declare type HvTreeContentClasses = ExtractNames<typeof useClasses_118>;
|
|
6948
6990
|
|
|
6949
6991
|
export declare interface HvTreeContentProps extends HTMLAttributes<HTMLElement> {
|
|
6950
6992
|
/** className applied to the root element. */
|
|
@@ -6965,7 +7007,7 @@ export declare interface HvTreeContentProps extends HTMLAttributes<HTMLElement>
|
|
|
6965
7007
|
|
|
6966
7008
|
export declare const HvTreeItem: ForwardRefExoticComponent<HvTreeItemProps & RefAttributes<HTMLLIElement>>;
|
|
6967
7009
|
|
|
6968
|
-
export declare type HvTreeItemClasses = ExtractNames<typeof
|
|
7010
|
+
export declare type HvTreeItemClasses = ExtractNames<typeof useClasses_117>;
|
|
6969
7011
|
|
|
6970
7012
|
export declare interface HvTreeItemProps extends HTMLAttributes<HTMLElement> {
|
|
6971
7013
|
/** The element id */
|
|
@@ -7018,7 +7060,7 @@ export declare interface HvTreeItemProps extends HTMLAttributes<HTMLElement> {
|
|
|
7018
7060
|
*/
|
|
7019
7061
|
export declare const HvTreeView: <Multiple extends boolean | undefined>(props: HvTreeViewProps<Multiple> & RefAttributes<HTMLUListElement>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
7020
7062
|
|
|
7021
|
-
export declare type HvTreeViewClasses = ExtractNames<typeof
|
|
7063
|
+
export declare type HvTreeViewClasses = ExtractNames<typeof useClasses_116>;
|
|
7022
7064
|
|
|
7023
7065
|
export declare interface HvTreeViewProps<Multiple extends boolean | undefined> extends HvBaseProps<HTMLUListElement>, DefaultTreeViewPluginParameters<Multiple> {
|
|
7024
7066
|
/** A Jss Object used to override or extend the styles applied. */
|
|
@@ -7173,7 +7215,7 @@ export declare const HvVerticalNavigation: (props: HvVerticalNavigationProps) =>
|
|
|
7173
7215
|
|
|
7174
7216
|
export declare const HvVerticalNavigationAction: ({ className, classes: classesProp, id, label, icon, onClick, ...others }: HvVerticalNavigationActionProps) => JSX_3.Element;
|
|
7175
7217
|
|
|
7176
|
-
export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof
|
|
7218
|
+
export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof useClasses_122>;
|
|
7177
7219
|
|
|
7178
7220
|
export declare interface HvVerticalNavigationActionProps {
|
|
7179
7221
|
/**
|
|
@@ -7204,7 +7246,7 @@ export declare interface HvVerticalNavigationActionProps {
|
|
|
7204
7246
|
|
|
7205
7247
|
export declare const HvVerticalNavigationActions: ({ className, classes: classesProp, id, children, ...others }: HvVerticalNavigationActionsProps) => JSX_3.Element;
|
|
7206
7248
|
|
|
7207
|
-
export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof
|
|
7249
|
+
export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof useClasses_121>;
|
|
7208
7250
|
|
|
7209
7251
|
export declare interface HvVerticalNavigationActionsProps {
|
|
7210
7252
|
/**
|
|
@@ -7225,11 +7267,11 @@ export declare interface HvVerticalNavigationActionsProps {
|
|
|
7225
7267
|
children?: React.ReactNode;
|
|
7226
7268
|
}
|
|
7227
7269
|
|
|
7228
|
-
export declare type HvVerticalNavigationClasses = ExtractNames<typeof
|
|
7270
|
+
export declare type HvVerticalNavigationClasses = ExtractNames<typeof useClasses_119>;
|
|
7229
7271
|
|
|
7230
7272
|
export declare const HvVerticalNavigationHeader: ({ title, openIcon: openIconProp, closeIcon: closeIconProp, collapseButtonProps, backButtonProps, className, classes: classesProp, onCollapseButtonClick, ...others }: HvVerticalNavigationHeaderProps) => JSX_3.Element | null;
|
|
7231
7273
|
|
|
7232
|
-
export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof
|
|
7274
|
+
export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof useClasses_120>;
|
|
7233
7275
|
|
|
7234
7276
|
export declare interface HvVerticalNavigationHeaderProps {
|
|
7235
7277
|
/**
|
|
@@ -7316,7 +7358,7 @@ export declare interface HvVerticalNavigationProps {
|
|
|
7316
7358
|
|
|
7317
7359
|
export declare const HvVerticalNavigationSlider: (props: HvVerticalNavigationSliderProps) => JSX_3.Element;
|
|
7318
7360
|
|
|
7319
|
-
export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof
|
|
7361
|
+
export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof useClasses_124>;
|
|
7320
7362
|
|
|
7321
7363
|
export declare interface HvVerticalNavigationSliderProps {
|
|
7322
7364
|
/**
|
|
@@ -7356,7 +7398,7 @@ export declare interface HvVerticalNavigationSliderProps {
|
|
|
7356
7398
|
|
|
7357
7399
|
export declare const HvVerticalNavigationTree: ({ id, className, classes: classesProp, data, mode, collapsible, expanded: expandedProp, defaultExpanded, onToggle, selected: selectedProp, defaultSelected, onChange, sliderForwardButtonAriaLabel, ...others }: HvVerticalNavigationTreeProps) => JSX_3.Element;
|
|
7358
7400
|
|
|
7359
|
-
export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof
|
|
7401
|
+
export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof useClasses_123>;
|
|
7360
7402
|
|
|
7361
7403
|
export declare interface HvVerticalNavigationTreeProps extends HvBaseProps<HTMLDivElement, "onChange"> {
|
|
7362
7404
|
/**
|
|
@@ -7430,11 +7472,11 @@ export declare interface HvVerticalNavigationTreeProps extends HvBaseProps<HTMLD
|
|
|
7430
7472
|
|
|
7431
7473
|
export declare const HvVerticalNavigationTreeView: ForwardRefExoticComponent<HvVerticalNavigationTreeViewProps & RefAttributes<unknown>>;
|
|
7432
7474
|
|
|
7433
|
-
export declare type HvVerticalNavigationTreeViewClasses = ExtractNames<typeof
|
|
7475
|
+
export declare type HvVerticalNavigationTreeViewClasses = ExtractNames<typeof useClasses_125>;
|
|
7434
7476
|
|
|
7435
7477
|
export declare const HvVerticalNavigationTreeViewItem: ForwardRefExoticComponent<HvVerticalNavigationTreeViewItemProps & RefAttributes<unknown>>;
|
|
7436
7478
|
|
|
7437
|
-
export declare type HvVerticalNavigationTreeViewItemClasses = ExtractNames<typeof
|
|
7479
|
+
export declare type HvVerticalNavigationTreeViewItemClasses = ExtractNames<typeof useClasses_126>;
|
|
7438
7480
|
|
|
7439
7481
|
export declare interface HvVerticalNavigationTreeViewItemProps {
|
|
7440
7482
|
/**
|
|
@@ -7597,7 +7639,7 @@ export declare interface HvVerticalNavigationTreeViewProps {
|
|
|
7597
7639
|
children?: React.ReactNode;
|
|
7598
7640
|
}
|
|
7599
7641
|
|
|
7600
|
-
export declare type HvVerticalScrollListItemClasses = ExtractNames<typeof
|
|
7642
|
+
export declare type HvVerticalScrollListItemClasses = ExtractNames<typeof useClasses_94>;
|
|
7601
7643
|
|
|
7602
7644
|
/**
|
|
7603
7645
|
* Provides the user with a descriptive text, signaling an error, for when the form element is in an invalid state.
|
|
@@ -7662,8 +7704,8 @@ export declare const inputClasses: {
|
|
|
7662
7704
|
icon: "HvInput-icon";
|
|
7663
7705
|
error: "HvInput-error";
|
|
7664
7706
|
adornmentButton: "HvInput-adornmentButton";
|
|
7665
|
-
inputRootDisabled: "HvInput-inputRootDisabled";
|
|
7666
7707
|
labelContainer: "HvInput-labelContainer";
|
|
7708
|
+
inputRootDisabled: "HvInput-inputRootDisabled";
|
|
7667
7709
|
adornmentsBox: "HvInput-adornmentsBox";
|
|
7668
7710
|
iconClear: "HvInput-iconClear";
|
|
7669
7711
|
hasSuggestions: "HvInput-hasSuggestions";
|
|
@@ -7813,6 +7855,15 @@ export declare type NavigationMode = "treeview" | "navigation" | "slider";
|
|
|
7813
7855
|
|
|
7814
7856
|
export declare const normalizeProgressBar: (value: number, max: number) => number;
|
|
7815
7857
|
|
|
7858
|
+
export declare const optionClasses: {
|
|
7859
|
+
root: "HvOption-root";
|
|
7860
|
+
highlighted: "HvOption-highlighted";
|
|
7861
|
+
};
|
|
7862
|
+
|
|
7863
|
+
export declare const optionGroupClasses: {
|
|
7864
|
+
root: "HvOptionGroup-root";
|
|
7865
|
+
};
|
|
7866
|
+
|
|
7816
7867
|
export declare const outlineStyles: {
|
|
7817
7868
|
outlineColor: string;
|
|
7818
7869
|
outlineStyle: string;
|
|
@@ -7993,6 +8044,22 @@ export declare const sectionClasses: {
|
|
|
7993
8044
|
raisedHeader: "HvSection-raisedHeader";
|
|
7994
8045
|
};
|
|
7995
8046
|
|
|
8047
|
+
export declare const selectClasses: {
|
|
8048
|
+
label: "HvSelect-label";
|
|
8049
|
+
description: "HvSelect-description";
|
|
8050
|
+
root: "HvSelect-root";
|
|
8051
|
+
panel: "HvSelect-panel";
|
|
8052
|
+
disabled: "HvSelect-disabled";
|
|
8053
|
+
readOnly: "HvSelect-readOnly";
|
|
8054
|
+
select: "HvSelect-select";
|
|
8055
|
+
popper: "HvSelect-popper";
|
|
8056
|
+
error: "HvSelect-error";
|
|
8057
|
+
invalid: "HvSelect-invalid";
|
|
8058
|
+
labelContainer: "HvSelect-labelContainer";
|
|
8059
|
+
panelOpenedUp: "HvSelect-panelOpenedUp";
|
|
8060
|
+
panelOpenedDown: "HvSelect-panelOpenedDown";
|
|
8061
|
+
};
|
|
8062
|
+
|
|
7996
8063
|
export declare const selectionListClasses: {
|
|
7997
8064
|
vertical: "HvSelectionList-vertical";
|
|
7998
8065
|
horizontal: "HvSelectionList-horizontal";
|
|
@@ -8024,8 +8091,8 @@ export declare const sliderClasses: {
|
|
|
8024
8091
|
trackStandBy: "HvSlider-trackStandBy";
|
|
8025
8092
|
handleContainer: "HvSlider-handleContainer";
|
|
8026
8093
|
error: "HvSlider-error";
|
|
8027
|
-
rootDisabled: "HvSlider-rootDisabled";
|
|
8028
8094
|
labelContainer: "HvSlider-labelContainer";
|
|
8095
|
+
rootDisabled: "HvSlider-rootDisabled";
|
|
8029
8096
|
sliderBase: "HvSlider-sliderBase";
|
|
8030
8097
|
sliderContainer: "HvSlider-sliderContainer";
|
|
8031
8098
|
sliderRoot: "HvSlider-sliderRoot";
|
|
@@ -8242,8 +8309,8 @@ export declare const tagsInputClasses: {
|
|
|
8242
8309
|
tagsList: "HvTagsInput-tagsList";
|
|
8243
8310
|
error: "HvTagsInput-error";
|
|
8244
8311
|
invalid: "HvTagsInput-invalid";
|
|
8245
|
-
resizable: "HvTagsInput-resizable";
|
|
8246
8312
|
labelContainer: "HvTagsInput-labelContainer";
|
|
8313
|
+
resizable: "HvTagsInput-resizable";
|
|
8247
8314
|
suggestionsContainer: "HvTagsInput-suggestionsContainer";
|
|
8248
8315
|
suggestionList: "HvTagsInput-suggestionList";
|
|
8249
8316
|
inputExtension: "HvTagsInput-inputExtension";
|
|
@@ -8268,9 +8335,9 @@ export declare const textAreaClasses: {
|
|
|
8268
8335
|
input: "HvTextArea-input";
|
|
8269
8336
|
error: "HvTextArea-error";
|
|
8270
8337
|
invalid: "HvTextArea-invalid";
|
|
8338
|
+
labelContainer: "HvTextArea-labelContainer";
|
|
8271
8339
|
resizable: "HvTextArea-resizable";
|
|
8272
8340
|
inputResizable: "HvTextArea-inputResizable";
|
|
8273
|
-
labelContainer: "HvTextArea-labelContainer";
|
|
8274
8341
|
characterCounter: "HvTextArea-characterCounter";
|
|
8275
8342
|
baseInput: "HvTextArea-baseInput";
|
|
8276
8343
|
};
|
|
@@ -8476,7 +8543,72 @@ declare const useClasses_10: (classesProp?: Partial<Record<"root" | "warningText
|
|
|
8476
8543
|
cx: (...args: any) => string;
|
|
8477
8544
|
};
|
|
8478
8545
|
|
|
8479
|
-
declare const useClasses_100: (classesProp?: Partial<Record<"
|
|
8546
|
+
declare const useClasses_100: (classesProp?: Partial<Record<"label" | "root" | "trackDragging" | "trackStandBy" | "handleContainer" | "error" | "labelContainer" | "rootDisabled" | "sliderBase" | "sliderContainer" | "sliderRoot" | "rootRange" | "handle" | "handleContainerDisabled" | "handleHiddenContainer" | "labelIncluded" | "onlyInput" | "sliderTooltip", string>>, addStatic?: boolean) => {
|
|
8547
|
+
classes: {
|
|
8548
|
+
label: string;
|
|
8549
|
+
root: string;
|
|
8550
|
+
trackDragging: string;
|
|
8551
|
+
trackStandBy: string;
|
|
8552
|
+
handleContainer: string;
|
|
8553
|
+
error: string;
|
|
8554
|
+
labelContainer: string;
|
|
8555
|
+
rootDisabled: string;
|
|
8556
|
+
sliderBase: string;
|
|
8557
|
+
sliderContainer: string;
|
|
8558
|
+
sliderRoot: string;
|
|
8559
|
+
rootRange: string;
|
|
8560
|
+
handle: string;
|
|
8561
|
+
handleContainerDisabled: string;
|
|
8562
|
+
handleHiddenContainer: string;
|
|
8563
|
+
labelIncluded: string;
|
|
8564
|
+
onlyInput: string;
|
|
8565
|
+
sliderTooltip: string;
|
|
8566
|
+
};
|
|
8567
|
+
css: {
|
|
8568
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8569
|
+
(...args: CSSInterpolation[]): string;
|
|
8570
|
+
};
|
|
8571
|
+
cx: (...args: any) => string;
|
|
8572
|
+
};
|
|
8573
|
+
|
|
8574
|
+
declare const useClasses_101: (classesProp?: Partial<Record<"root" | "anchorOriginTopCenter" | "anchorOriginBottomCenter" | "anchorOriginTopRight" | "anchorOriginBottomRight" | "anchorOriginTopLeft" | "anchorOriginBottomLeft", string>>, addStatic?: boolean) => {
|
|
8575
|
+
classes: {
|
|
8576
|
+
root: string;
|
|
8577
|
+
anchorOriginTopCenter: string;
|
|
8578
|
+
anchorOriginBottomCenter: string;
|
|
8579
|
+
anchorOriginTopRight: string;
|
|
8580
|
+
anchorOriginBottomRight: string;
|
|
8581
|
+
anchorOriginTopLeft: string;
|
|
8582
|
+
anchorOriginBottomLeft: string;
|
|
8583
|
+
};
|
|
8584
|
+
css: {
|
|
8585
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8586
|
+
(...args: CSSInterpolation[]): string;
|
|
8587
|
+
};
|
|
8588
|
+
cx: (...args: any) => string;
|
|
8589
|
+
};
|
|
8590
|
+
|
|
8591
|
+
declare const useClasses_102: (classesProp?: Partial<Record<"warning" | "root" | "action" | "default" | "error" | "message" | "success" | "messageSpan" | "messageText" | "iconVariant", string>>, addStatic?: boolean) => {
|
|
8592
|
+
classes: {
|
|
8593
|
+
warning: string;
|
|
8594
|
+
root: string;
|
|
8595
|
+
action: string;
|
|
8596
|
+
default: string;
|
|
8597
|
+
error: string;
|
|
8598
|
+
message: string;
|
|
8599
|
+
success: string;
|
|
8600
|
+
messageSpan: string;
|
|
8601
|
+
messageText: string;
|
|
8602
|
+
iconVariant: string;
|
|
8603
|
+
};
|
|
8604
|
+
css: {
|
|
8605
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8606
|
+
(...args: CSSInterpolation[]): string;
|
|
8607
|
+
};
|
|
8608
|
+
cx: (...args: any) => string;
|
|
8609
|
+
};
|
|
8610
|
+
|
|
8611
|
+
declare const useClasses_103: (classesProp?: Partial<Record<"snackItemRoot", string>>, addStatic?: boolean) => {
|
|
8480
8612
|
classes: {
|
|
8481
8613
|
snackItemRoot: string;
|
|
8482
8614
|
};
|
|
@@ -8487,7 +8619,7 @@ declare const useClasses_100: (classesProp?: Partial<Record<"snackItemRoot", str
|
|
|
8487
8619
|
cx: (...args: any) => string;
|
|
8488
8620
|
};
|
|
8489
8621
|
|
|
8490
|
-
declare const
|
|
8622
|
+
declare const useClasses_104: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "root" | "row" | "column", string>>, addStatic?: boolean) => {
|
|
8491
8623
|
classes: {
|
|
8492
8624
|
xs: string;
|
|
8493
8625
|
sm: string;
|
|
@@ -8505,7 +8637,7 @@ declare const useClasses_101: (classesProp?: Partial<Record<"xs" | "sm" | "md" |
|
|
|
8505
8637
|
cx: (...args: any) => string;
|
|
8506
8638
|
};
|
|
8507
8639
|
|
|
8508
|
-
declare const
|
|
8640
|
+
declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "invalidSwitch" | "error" | "switchContainer", string>>, addStatic?: boolean) => {
|
|
8509
8641
|
classes: {
|
|
8510
8642
|
label: string;
|
|
8511
8643
|
root: string;
|
|
@@ -8520,7 +8652,7 @@ declare const useClasses_102: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8520
8652
|
cx: (...args: any) => string;
|
|
8521
8653
|
};
|
|
8522
8654
|
|
|
8523
|
-
declare const
|
|
8655
|
+
declare const useClasses_106: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
8524
8656
|
classes: {
|
|
8525
8657
|
root: string;
|
|
8526
8658
|
disabled: string;
|
|
@@ -8534,7 +8666,7 @@ declare const useClasses_103: (classesProp?: Partial<Record<"root" | "disabled"
|
|
|
8534
8666
|
cx: (...args: any) => string;
|
|
8535
8667
|
};
|
|
8536
8668
|
|
|
8537
|
-
declare const
|
|
8669
|
+
declare const useClasses_107: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
8538
8670
|
classes: {
|
|
8539
8671
|
root: string;
|
|
8540
8672
|
};
|
|
@@ -8545,7 +8677,7 @@ declare const useClasses_104: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8545
8677
|
cx: (...args: any) => string;
|
|
8546
8678
|
};
|
|
8547
8679
|
|
|
8548
|
-
declare const
|
|
8680
|
+
declare const useClasses_108: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
8549
8681
|
classes: {
|
|
8550
8682
|
root: string;
|
|
8551
8683
|
};
|
|
@@ -8556,7 +8688,7 @@ declare const useClasses_105: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8556
8688
|
cx: (...args: any) => string;
|
|
8557
8689
|
};
|
|
8558
8690
|
|
|
8559
|
-
declare const
|
|
8691
|
+
declare const useClasses_109: (classesProp?: Partial<Record<"root" | "stickyHeader", string>>, addStatic?: boolean) => {
|
|
8560
8692
|
classes: {
|
|
8561
8693
|
root: string;
|
|
8562
8694
|
stickyHeader: string;
|
|
@@ -8568,7 +8700,30 @@ declare const useClasses_106: (classesProp?: Partial<Record<"root" | "stickyHead
|
|
|
8568
8700
|
cx: (...args: any) => string;
|
|
8569
8701
|
};
|
|
8570
8702
|
|
|
8571
|
-
declare const
|
|
8703
|
+
declare const useClasses_11: (classesProp?: Partial<Record<"label" | "description" | "root" | "panel" | "disabled" | "readOnly" | "select" | "popper" | "error" | "invalid" | "labelContainer" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
|
|
8704
|
+
classes: {
|
|
8705
|
+
label: string;
|
|
8706
|
+
description: string;
|
|
8707
|
+
root: string;
|
|
8708
|
+
panel: string;
|
|
8709
|
+
disabled: string;
|
|
8710
|
+
readOnly: string;
|
|
8711
|
+
select: string;
|
|
8712
|
+
popper: string;
|
|
8713
|
+
error: string;
|
|
8714
|
+
invalid: string;
|
|
8715
|
+
labelContainer: string;
|
|
8716
|
+
panelOpenedUp: string;
|
|
8717
|
+
panelOpenedDown: string;
|
|
8718
|
+
};
|
|
8719
|
+
css: {
|
|
8720
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8721
|
+
(...args: CSSInterpolation[]): string;
|
|
8722
|
+
};
|
|
8723
|
+
cx: (...args: any) => string;
|
|
8724
|
+
};
|
|
8725
|
+
|
|
8726
|
+
declare const useClasses_110: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "button" | "focusVisible" | "chipRoot" | "clickable" | "categorical" | "deleteIcon" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
|
|
8572
8727
|
classes: {
|
|
8573
8728
|
label: string;
|
|
8574
8729
|
root: string;
|
|
@@ -8591,7 +8746,7 @@ declare const useClasses_107: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8591
8746
|
cx: (...args: any) => string;
|
|
8592
8747
|
};
|
|
8593
8748
|
|
|
8594
|
-
declare const
|
|
8749
|
+
declare const useClasses_111: (classesProp?: Partial<Record<"root" | "indicator" | "scroller" | "flexContainer", string>>, addStatic?: boolean) => {
|
|
8595
8750
|
classes: {
|
|
8596
8751
|
root: string;
|
|
8597
8752
|
indicator: string;
|
|
@@ -8605,7 +8760,7 @@ declare const useClasses_108: (classesProp?: Partial<Record<"root" | "indicator"
|
|
|
8605
8760
|
cx: (...args: any) => string;
|
|
8606
8761
|
};
|
|
8607
8762
|
|
|
8608
|
-
declare const
|
|
8763
|
+
declare const useClasses_112: (classesProp?: Partial<Record<"label" | "description" | "root" | "disabled" | "readOnly" | "input" | "tagsList" | "error" | "invalid" | "labelContainer" | "resizable" | "suggestionsContainer" | "suggestionList" | "inputExtension" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty" | "singleLine", string>>, addStatic?: boolean) => {
|
|
8609
8764
|
classes: {
|
|
8610
8765
|
label: string;
|
|
8611
8766
|
description: string;
|
|
@@ -8616,8 +8771,8 @@ declare const useClasses_109: (classesProp?: Partial<Record<"label" | "descripti
|
|
|
8616
8771
|
tagsList: string;
|
|
8617
8772
|
error: string;
|
|
8618
8773
|
invalid: string;
|
|
8619
|
-
resizable: string;
|
|
8620
8774
|
labelContainer: string;
|
|
8775
|
+
resizable: string;
|
|
8621
8776
|
suggestionsContainer: string;
|
|
8622
8777
|
suggestionList: string;
|
|
8623
8778
|
inputExtension: string;
|
|
@@ -8640,25 +8795,7 @@ declare const useClasses_109: (classesProp?: Partial<Record<"label" | "descripti
|
|
|
8640
8795
|
cx: (...args: any) => string;
|
|
8641
8796
|
};
|
|
8642
8797
|
|
|
8643
|
-
declare const
|
|
8644
|
-
classes: {
|
|
8645
|
-
vertical: string;
|
|
8646
|
-
horizontal: string;
|
|
8647
|
-
label: string;
|
|
8648
|
-
description: string;
|
|
8649
|
-
root: string;
|
|
8650
|
-
listbox: string;
|
|
8651
|
-
error: string;
|
|
8652
|
-
invalid: string;
|
|
8653
|
-
};
|
|
8654
|
-
css: {
|
|
8655
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
8656
|
-
(...args: CSSInterpolation[]): string;
|
|
8657
|
-
};
|
|
8658
|
-
cx: (...args: any) => string;
|
|
8659
|
-
};
|
|
8660
|
-
|
|
8661
|
-
declare const useClasses_110: (classesProp?: Partial<Record<"label" | "description" | "root" | "disabled" | "input" | "error" | "invalid" | "resizable" | "inputResizable" | "labelContainer" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
|
|
8798
|
+
declare const useClasses_113: (classesProp?: Partial<Record<"label" | "description" | "root" | "disabled" | "input" | "error" | "invalid" | "labelContainer" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
|
|
8662
8799
|
classes: {
|
|
8663
8800
|
label: string;
|
|
8664
8801
|
description: string;
|
|
@@ -8667,9 +8804,9 @@ declare const useClasses_110: (classesProp?: Partial<Record<"label" | "descripti
|
|
|
8667
8804
|
input: string;
|
|
8668
8805
|
error: string;
|
|
8669
8806
|
invalid: string;
|
|
8807
|
+
labelContainer: string;
|
|
8670
8808
|
resizable: string;
|
|
8671
8809
|
inputResizable: string;
|
|
8672
|
-
labelContainer: string;
|
|
8673
8810
|
characterCounter: string;
|
|
8674
8811
|
baseInput: string;
|
|
8675
8812
|
};
|
|
@@ -8680,7 +8817,7 @@ declare const useClasses_110: (classesProp?: Partial<Record<"label" | "descripti
|
|
|
8680
8817
|
cx: (...args: any) => string;
|
|
8681
8818
|
};
|
|
8682
8819
|
|
|
8683
|
-
declare const
|
|
8820
|
+
declare const useClasses_114: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
8684
8821
|
classes: {
|
|
8685
8822
|
root: string;
|
|
8686
8823
|
};
|
|
@@ -8691,7 +8828,7 @@ declare const useClasses_111: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8691
8828
|
cx: (...args: any) => string;
|
|
8692
8829
|
};
|
|
8693
8830
|
|
|
8694
|
-
declare const
|
|
8831
|
+
declare const useClasses_115: (classesProp?: Partial<Record<"label" | "description" | "root" | "placeholder" | "icon" | "error" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
|
|
8695
8832
|
classes: {
|
|
8696
8833
|
label: string;
|
|
8697
8834
|
description: string;
|
|
@@ -8714,7 +8851,7 @@ declare const useClasses_112: (classesProp?: Partial<Record<"label" | "descripti
|
|
|
8714
8851
|
cx: (...args: any) => string;
|
|
8715
8852
|
};
|
|
8716
8853
|
|
|
8717
|
-
declare const
|
|
8854
|
+
declare const useClasses_116: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
8718
8855
|
classes: {
|
|
8719
8856
|
root: string;
|
|
8720
8857
|
};
|
|
@@ -8725,7 +8862,7 @@ declare const useClasses_113: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8725
8862
|
cx: (...args: any) => string;
|
|
8726
8863
|
};
|
|
8727
8864
|
|
|
8728
|
-
declare const
|
|
8865
|
+
declare const useClasses_117: (classesProp?: Partial<Record<"content" | "label" | "root" | "disabled" | "selected" | "expanded" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
|
|
8729
8866
|
classes: {
|
|
8730
8867
|
content: string;
|
|
8731
8868
|
label: string;
|
|
@@ -8744,7 +8881,7 @@ declare const useClasses_114: (classesProp?: Partial<Record<"content" | "label"
|
|
|
8744
8881
|
cx: (...args: any) => string;
|
|
8745
8882
|
};
|
|
8746
8883
|
|
|
8747
|
-
declare const
|
|
8884
|
+
declare const useClasses_118: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "selected" | "expanded" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
|
|
8748
8885
|
classes: {
|
|
8749
8886
|
label: string;
|
|
8750
8887
|
root: string;
|
|
@@ -8761,7 +8898,7 @@ declare const useClasses_115: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8761
8898
|
cx: (...args: any) => string;
|
|
8762
8899
|
};
|
|
8763
8900
|
|
|
8764
|
-
declare const
|
|
8901
|
+
declare const useClasses_119: (classesProp?: Partial<Record<"root" | "slider" | "collapsed" | "childData", string>>, addStatic?: boolean) => {
|
|
8765
8902
|
classes: {
|
|
8766
8903
|
root: string;
|
|
8767
8904
|
slider: string;
|
|
@@ -8775,11 +8912,10 @@ declare const useClasses_116: (classesProp?: Partial<Record<"root" | "slider" |
|
|
|
8775
8912
|
cx: (...args: any) => string;
|
|
8776
8913
|
};
|
|
8777
8914
|
|
|
8778
|
-
declare const
|
|
8915
|
+
declare const useClasses_12: (classesProp?: Partial<Record<"root" | "highlighted", string>>, addStatic?: boolean) => {
|
|
8779
8916
|
classes: {
|
|
8780
8917
|
root: string;
|
|
8781
|
-
|
|
8782
|
-
collapseButton: string;
|
|
8918
|
+
highlighted: string;
|
|
8783
8919
|
};
|
|
8784
8920
|
css: {
|
|
8785
8921
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8788,10 +8924,11 @@ declare const useClasses_117: (classesProp?: Partial<Record<"root" | "minimized"
|
|
|
8788
8924
|
cx: (...args: any) => string;
|
|
8789
8925
|
};
|
|
8790
8926
|
|
|
8791
|
-
declare const
|
|
8927
|
+
declare const useClasses_120: (classesProp?: Partial<Record<"root" | "minimized" | "collapseButton", string>>, addStatic?: boolean) => {
|
|
8792
8928
|
classes: {
|
|
8793
8929
|
root: string;
|
|
8794
|
-
|
|
8930
|
+
minimized: string;
|
|
8931
|
+
collapseButton: string;
|
|
8795
8932
|
};
|
|
8796
8933
|
css: {
|
|
8797
8934
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8800,11 +8937,10 @@ declare const useClasses_118: (classesProp?: Partial<Record<"root" | "hide", str
|
|
|
8800
8937
|
cx: (...args: any) => string;
|
|
8801
8938
|
};
|
|
8802
8939
|
|
|
8803
|
-
declare const
|
|
8940
|
+
declare const useClasses_121: (classesProp?: Partial<Record<"root" | "hide", string>>, addStatic?: boolean) => {
|
|
8804
8941
|
classes: {
|
|
8805
|
-
|
|
8806
|
-
|
|
8807
|
-
noIcon: string;
|
|
8942
|
+
root: string;
|
|
8943
|
+
hide: string;
|
|
8808
8944
|
};
|
|
8809
8945
|
css: {
|
|
8810
8946
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8813,11 +8949,11 @@ declare const useClasses_119: (classesProp?: Partial<Record<"action" | "minimize
|
|
|
8813
8949
|
cx: (...args: any) => string;
|
|
8814
8950
|
};
|
|
8815
8951
|
|
|
8816
|
-
declare const
|
|
8952
|
+
declare const useClasses_122: (classesProp?: Partial<Record<"action" | "minimized" | "noIcon", string>>, addStatic?: boolean) => {
|
|
8817
8953
|
classes: {
|
|
8818
|
-
|
|
8819
|
-
|
|
8820
|
-
|
|
8954
|
+
action: string;
|
|
8955
|
+
minimized: string;
|
|
8956
|
+
noIcon: string;
|
|
8821
8957
|
};
|
|
8822
8958
|
css: {
|
|
8823
8959
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -8826,7 +8962,7 @@ declare const useClasses_12: (classesProp?: Partial<Record<"root" | "list" | "po
|
|
|
8826
8962
|
cx: (...args: any) => string;
|
|
8827
8963
|
};
|
|
8828
8964
|
|
|
8829
|
-
declare const
|
|
8965
|
+
declare const useClasses_123: (classesProp?: Partial<Record<"root" | "listItem" | "list" | "popup" | "collapsed" | "navigationPopup", string>>, addStatic?: boolean) => {
|
|
8830
8966
|
classes: {
|
|
8831
8967
|
root: string;
|
|
8832
8968
|
listItem: string;
|
|
@@ -8842,7 +8978,7 @@ declare const useClasses_120: (classesProp?: Partial<Record<"root" | "listItem"
|
|
|
8842
8978
|
cx: (...args: any) => string;
|
|
8843
8979
|
};
|
|
8844
8980
|
|
|
8845
|
-
declare const
|
|
8981
|
+
declare const useClasses_124: (classesProp?: Partial<Record<"root" | "listItemSelected" | "listItemFocus", string>>, addStatic?: boolean) => {
|
|
8846
8982
|
classes: {
|
|
8847
8983
|
root: string;
|
|
8848
8984
|
listItemSelected: string;
|
|
@@ -8855,7 +8991,7 @@ declare const useClasses_121: (classesProp?: Partial<Record<"root" | "listItemSe
|
|
|
8855
8991
|
cx: (...args: any) => string;
|
|
8856
8992
|
};
|
|
8857
8993
|
|
|
8858
|
-
declare const
|
|
8994
|
+
declare const useClasses_125: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
8859
8995
|
classes: {
|
|
8860
8996
|
root: string;
|
|
8861
8997
|
};
|
|
@@ -8866,7 +9002,7 @@ declare const useClasses_122: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8866
9002
|
cx: (...args: any) => string;
|
|
8867
9003
|
};
|
|
8868
9004
|
|
|
8869
|
-
declare const
|
|
9005
|
+
declare const useClasses_126: (classesProp?: Partial<Record<"content" | "label" | "link" | "disabled" | "selectable" | "selected" | "hide" | "expanded" | "unselectable" | "group" | "node" | "focused" | "expandable" | "labelIcon" | "collapsed" | "minimized" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
|
|
8870
9006
|
classes: {
|
|
8871
9007
|
content: string;
|
|
8872
9008
|
label: string;
|
|
@@ -8894,7 +9030,7 @@ declare const useClasses_123: (classesProp?: Partial<Record<"content" | "label"
|
|
|
8894
9030
|
cx: (...args: any) => string;
|
|
8895
9031
|
};
|
|
8896
9032
|
|
|
8897
|
-
declare const
|
|
9033
|
+
declare const useClasses_127: (classesProp?: Partial<Record<"content" | "header" | "root" | "hidden" | "actions" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
|
|
8898
9034
|
classes: {
|
|
8899
9035
|
content: string;
|
|
8900
9036
|
header: string;
|
|
@@ -8911,7 +9047,49 @@ declare const useClasses_124: (classesProp?: Partial<Record<"content" | "header"
|
|
|
8911
9047
|
cx: (...args: any) => string;
|
|
8912
9048
|
};
|
|
8913
9049
|
|
|
8914
|
-
declare const useClasses_13: (classesProp?: Partial<Record<"root"
|
|
9050
|
+
declare const useClasses_13: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
9051
|
+
classes: {
|
|
9052
|
+
root: string;
|
|
9053
|
+
};
|
|
9054
|
+
css: {
|
|
9055
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9056
|
+
(...args: CSSInterpolation[]): string;
|
|
9057
|
+
};
|
|
9058
|
+
cx: (...args: any) => string;
|
|
9059
|
+
};
|
|
9060
|
+
|
|
9061
|
+
declare const useClasses_14: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "description" | "root" | "listbox" | "error" | "invalid", string>>, addStatic?: boolean) => {
|
|
9062
|
+
classes: {
|
|
9063
|
+
vertical: string;
|
|
9064
|
+
horizontal: string;
|
|
9065
|
+
label: string;
|
|
9066
|
+
description: string;
|
|
9067
|
+
root: string;
|
|
9068
|
+
listbox: string;
|
|
9069
|
+
error: string;
|
|
9070
|
+
invalid: string;
|
|
9071
|
+
};
|
|
9072
|
+
css: {
|
|
9073
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9074
|
+
(...args: CSSInterpolation[]): string;
|
|
9075
|
+
};
|
|
9076
|
+
cx: (...args: any) => string;
|
|
9077
|
+
};
|
|
9078
|
+
|
|
9079
|
+
declare const useClasses_15: (classesProp?: Partial<Record<"root" | "list" | "popper", string>>, addStatic?: boolean) => {
|
|
9080
|
+
classes: {
|
|
9081
|
+
root: string;
|
|
9082
|
+
list: string;
|
|
9083
|
+
popper: string;
|
|
9084
|
+
};
|
|
9085
|
+
css: {
|
|
9086
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9087
|
+
(...args: CSSInterpolation[]): string;
|
|
9088
|
+
};
|
|
9089
|
+
cx: (...args: any) => string;
|
|
9090
|
+
};
|
|
9091
|
+
|
|
9092
|
+
declare const useClasses_16: (classesProp?: Partial<Record<"root" | "disabled" | "readOnly" | "inputBorderContainer" | "inputRootReadOnly" | "inputRoot" | "inputRootFocused" | "inputRootMultiline" | "input" | "inputReadOnly" | "invalid" | "resizable" | "inputRootInvalid" | "inputRootDisabled" | "inputDisabled" | "inputResizable", string>>, addStatic?: boolean) => {
|
|
8915
9093
|
classes: {
|
|
8916
9094
|
root: string;
|
|
8917
9095
|
disabled: string;
|
|
@@ -8937,7 +9115,7 @@ declare const useClasses_13: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
8937
9115
|
cx: (...args: any) => string;
|
|
8938
9116
|
};
|
|
8939
9117
|
|
|
8940
|
-
declare const
|
|
9118
|
+
declare const useClasses_17: (classesProp?: Partial<Record<"container" | "header" | "anchor" | "root" | "headerOpen" | "headerDisabled" | "headerReadOnly" | "placeholder" | "panel" | "inputExtensionOpen" | "panelOpenedUp" | "panelOpenedDown" | "selection" | "arrowContainer" | "arrow" | "rootDisabled" | "headerOpenUp" | "headerOpenDown" | "selectionDisabled" | "inputExtensionLeftPosition" | "inputExtensionOpenShadow" | "inputExtensionFloatRight" | "inputExtensionFloatLeft", string>>, addStatic?: boolean) => {
|
|
8941
9119
|
classes: {
|
|
8942
9120
|
container: string;
|
|
8943
9121
|
header: string;
|
|
@@ -8949,15 +9127,15 @@ declare const useClasses_14: (classesProp?: Partial<Record<"container" | "header
|
|
|
8949
9127
|
placeholder: string;
|
|
8950
9128
|
panel: string;
|
|
8951
9129
|
inputExtensionOpen: string;
|
|
9130
|
+
panelOpenedUp: string;
|
|
9131
|
+
panelOpenedDown: string;
|
|
9132
|
+
selection: string;
|
|
9133
|
+
arrowContainer: string;
|
|
9134
|
+
arrow: string;
|
|
8952
9135
|
rootDisabled: string;
|
|
8953
9136
|
headerOpenUp: string;
|
|
8954
9137
|
headerOpenDown: string;
|
|
8955
|
-
arrowContainer: string;
|
|
8956
|
-
arrow: string;
|
|
8957
|
-
selection: string;
|
|
8958
9138
|
selectionDisabled: string;
|
|
8959
|
-
panelOpenedUp: string;
|
|
8960
|
-
panelOpenedDown: string;
|
|
8961
9139
|
inputExtensionLeftPosition: string;
|
|
8962
9140
|
inputExtensionOpenShadow: string;
|
|
8963
9141
|
inputExtensionFloatRight: string;
|
|
@@ -8970,7 +9148,7 @@ declare const useClasses_14: (classesProp?: Partial<Record<"container" | "header
|
|
|
8970
9148
|
cx: (...args: any) => string;
|
|
8971
9149
|
};
|
|
8972
9150
|
|
|
8973
|
-
declare const
|
|
9151
|
+
declare const useClasses_18: (classesProp?: Partial<Record<"container" | "label" | "root" | "disabled" | "hidden", string>>, addStatic?: boolean) => {
|
|
8974
9152
|
classes: {
|
|
8975
9153
|
container: string;
|
|
8976
9154
|
label: string;
|
|
@@ -8985,7 +9163,7 @@ declare const useClasses_15: (classesProp?: Partial<Record<"container" | "label"
|
|
|
8985
9163
|
cx: (...args: any) => string;
|
|
8986
9164
|
};
|
|
8987
9165
|
|
|
8988
|
-
declare const
|
|
9166
|
+
declare const useClasses_19: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
8989
9167
|
classes: {
|
|
8990
9168
|
root: string;
|
|
8991
9169
|
};
|
|
@@ -8996,7 +9174,25 @@ declare const useClasses_16: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
8996
9174
|
cx: (...args: any) => string;
|
|
8997
9175
|
};
|
|
8998
9176
|
|
|
8999
|
-
declare const
|
|
9177
|
+
declare const useClasses_2: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "focus" | "focusDisabled" | "focused" | "externalReference" | "falseFocus", string>>, addStatic?: boolean) => {
|
|
9178
|
+
classes: {
|
|
9179
|
+
root: string;
|
|
9180
|
+
disabled: string;
|
|
9181
|
+
selected: string;
|
|
9182
|
+
focus: string;
|
|
9183
|
+
focusDisabled: string;
|
|
9184
|
+
focused: string;
|
|
9185
|
+
externalReference: string;
|
|
9186
|
+
falseFocus: string;
|
|
9187
|
+
};
|
|
9188
|
+
css: {
|
|
9189
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9190
|
+
(...args: CSSInterpolation[]): string;
|
|
9191
|
+
};
|
|
9192
|
+
cx: (...args: any) => string;
|
|
9193
|
+
};
|
|
9194
|
+
|
|
9195
|
+
declare const useClasses_20: (classesProp?: Partial<Record<"root" | "button" | "actionContainer" | "dropDownMenu" | "dropDownMenuButton" | "dropDownMenuButtonSelected", string>>, addStatic?: boolean) => {
|
|
9000
9196
|
classes: {
|
|
9001
9197
|
root: string;
|
|
9002
9198
|
button: string;
|
|
@@ -9012,7 +9208,7 @@ declare const useClasses_17: (classesProp?: Partial<Record<"root" | "button" | "
|
|
|
9012
9208
|
cx: (...args: any) => string;
|
|
9013
9209
|
};
|
|
9014
9210
|
|
|
9015
|
-
declare const
|
|
9211
|
+
declare const useClasses_21: (classesProp?: Partial<Record<"root" | "title" | "single" | "actionsContainer" | "open" | "item" | "titleAnchor" | "itemSelected" | "itemDisabled" | "itemTrigger" | "itemIcon" | "itemTitle" | "itemInfoIcon" | "footerContainer" | "closed" | "dual" | "fluid", string>>, addStatic?: boolean) => {
|
|
9016
9212
|
classes: {
|
|
9017
9213
|
root: string;
|
|
9018
9214
|
title: string;
|
|
@@ -9039,7 +9235,7 @@ declare const useClasses_18: (classesProp?: Partial<Record<"root" | "title" | "s
|
|
|
9039
9235
|
cx: (...args: any) => string;
|
|
9040
9236
|
};
|
|
9041
9237
|
|
|
9042
|
-
declare const
|
|
9238
|
+
declare const useClasses_22: (classesProp?: Partial<Record<"typography" | "root" | "disabled" | "icon" | "title" | "selected" | "iconUrl" | "iconInfo" | "titleAnchor", string>>, addStatic?: boolean) => {
|
|
9043
9239
|
classes: {
|
|
9044
9240
|
typography: string;
|
|
9045
9241
|
root: string;
|
|
@@ -9058,25 +9254,7 @@ declare const useClasses_19: (classesProp?: Partial<Record<"typography" | "root"
|
|
|
9058
9254
|
cx: (...args: any) => string;
|
|
9059
9255
|
};
|
|
9060
9256
|
|
|
9061
|
-
declare const
|
|
9062
|
-
classes: {
|
|
9063
|
-
root: string;
|
|
9064
|
-
disabled: string;
|
|
9065
|
-
selected: string;
|
|
9066
|
-
focus: string;
|
|
9067
|
-
focusDisabled: string;
|
|
9068
|
-
focused: string;
|
|
9069
|
-
externalReference: string;
|
|
9070
|
-
falseFocus: string;
|
|
9071
|
-
};
|
|
9072
|
-
css: {
|
|
9073
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9074
|
-
(...args: CSSInterpolation[]): string;
|
|
9075
|
-
};
|
|
9076
|
-
cx: (...args: any) => string;
|
|
9077
|
-
};
|
|
9078
|
-
|
|
9079
|
-
declare const useClasses_20: (classesProp?: Partial<Record<"container" | "xs" | "sm" | "md" | "lg" | "xl" | "root" | "square" | "img" | "status" | "fallback" | "avatar" | "badge" | "circular", string>>, addStatic?: boolean) => {
|
|
9257
|
+
declare const useClasses_23: (classesProp?: Partial<Record<"container" | "xs" | "sm" | "md" | "lg" | "xl" | "root" | "square" | "img" | "status" | "fallback" | "avatar" | "badge" | "circular", string>>, addStatic?: boolean) => {
|
|
9080
9258
|
classes: {
|
|
9081
9259
|
container: string;
|
|
9082
9260
|
xs: string;
|
|
@@ -9100,7 +9278,7 @@ declare const useClasses_20: (classesProp?: Partial<Record<"container" | "xs" |
|
|
|
9100
9278
|
cx: (...args: any) => string;
|
|
9101
9279
|
};
|
|
9102
9280
|
|
|
9103
|
-
declare const
|
|
9281
|
+
declare const useClasses_24: (classesProp?: Partial<Record<"root" | "row" | "column", string>>, addStatic?: boolean) => {
|
|
9104
9282
|
classes: {
|
|
9105
9283
|
root: string;
|
|
9106
9284
|
row: string;
|
|
@@ -9113,7 +9291,7 @@ declare const useClasses_21: (classesProp?: Partial<Record<"root" | "row" | "col
|
|
|
9113
9291
|
cx: (...args: any) => string;
|
|
9114
9292
|
};
|
|
9115
9293
|
|
|
9116
|
-
declare const
|
|
9294
|
+
declare const useClasses_25: (classesProp?: Partial<Record<"root" | "badge" | "badgeContainer" | "badgePosition" | "showCount" | "showLabel" | "badgeIcon" | "badgeOneDigit", string>>, addStatic?: boolean) => {
|
|
9117
9295
|
classes: {
|
|
9118
9296
|
root: string;
|
|
9119
9297
|
badge: string;
|
|
@@ -9131,7 +9309,7 @@ declare const useClasses_22: (classesProp?: Partial<Record<"root" | "badge" | "b
|
|
|
9131
9309
|
cx: (...args: any) => string;
|
|
9132
9310
|
};
|
|
9133
9311
|
|
|
9134
|
-
declare const
|
|
9312
|
+
declare const useClasses_26: (classesProp?: Partial<Record<"root" | "rootClosed" | "anchorOriginTopCenter" | "anchorOriginBottomCenter", string>>, addStatic?: boolean) => {
|
|
9135
9313
|
classes: {
|
|
9136
9314
|
root: string;
|
|
9137
9315
|
rootClosed: string;
|
|
@@ -9145,7 +9323,7 @@ declare const useClasses_23: (classesProp?: Partial<Record<"root" | "rootClosed"
|
|
|
9145
9323
|
cx: (...args: any) => string;
|
|
9146
9324
|
};
|
|
9147
9325
|
|
|
9148
|
-
declare const
|
|
9326
|
+
declare const useClasses_27: (classesProp?: Partial<Record<"actionContainer" | "actionsInnerContainer" | "closeAction" | "iconContainer", string>>, addStatic?: boolean) => {
|
|
9149
9327
|
classes: {
|
|
9150
9328
|
actionContainer: string;
|
|
9151
9329
|
actionsInnerContainer: string;
|
|
@@ -9159,7 +9337,7 @@ declare const useClasses_24: (classesProp?: Partial<Record<"actionContainer" | "
|
|
|
9159
9337
|
cx: (...args: any) => string;
|
|
9160
9338
|
};
|
|
9161
9339
|
|
|
9162
|
-
declare const
|
|
9340
|
+
declare const useClasses_28: (classesProp?: Partial<Record<"warning" | "root" | "action" | "default" | "error" | "message" | "success" | "baseVariant" | "outContainer", string>>, addStatic?: boolean) => {
|
|
9163
9341
|
classes: {
|
|
9164
9342
|
warning: string;
|
|
9165
9343
|
root: string;
|
|
@@ -9178,7 +9356,7 @@ declare const useClasses_25: (classesProp?: Partial<Record<"warning" | "root" |
|
|
|
9178
9356
|
cx: (...args: any) => string;
|
|
9179
9357
|
};
|
|
9180
9358
|
|
|
9181
|
-
declare const
|
|
9359
|
+
declare const useClasses_29: (classesProp?: Partial<Record<"root" | "disabled" | "icon" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
9182
9360
|
classes: {
|
|
9183
9361
|
root: string;
|
|
9184
9362
|
disabled: string;
|
|
@@ -9192,7 +9370,18 @@ declare const useClasses_26: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
9192
9370
|
cx: (...args: any) => string;
|
|
9193
9371
|
};
|
|
9194
9372
|
|
|
9195
|
-
declare const
|
|
9373
|
+
declare const useClasses_3: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
9374
|
+
classes: {
|
|
9375
|
+
root: string;
|
|
9376
|
+
};
|
|
9377
|
+
css: {
|
|
9378
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9379
|
+
(...args: CSSInterpolation[]): string;
|
|
9380
|
+
};
|
|
9381
|
+
cx: (...args: any) => string;
|
|
9382
|
+
};
|
|
9383
|
+
|
|
9384
|
+
declare const useClasses_30: (classesProp?: Partial<Record<"root" | "disabled" | "icon" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
9196
9385
|
classes: {
|
|
9197
9386
|
root: string;
|
|
9198
9387
|
disabled: string;
|
|
@@ -9206,7 +9395,7 @@ declare const useClasses_27: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
9206
9395
|
cx: (...args: any) => string;
|
|
9207
9396
|
};
|
|
9208
9397
|
|
|
9209
|
-
declare const
|
|
9398
|
+
declare const useClasses_31: (classesProp?: Partial<Record<"root" | "disabled" | "readOnly" | "switch" | "switchBase" | "track" | "checked" | "focusVisible" | "thumb", string>>, addStatic?: boolean) => {
|
|
9210
9399
|
classes: {
|
|
9211
9400
|
root: string;
|
|
9212
9401
|
disabled: string;
|
|
@@ -9225,7 +9414,7 @@ declare const useClasses_28: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
9225
9414
|
cx: (...args: any) => string;
|
|
9226
9415
|
};
|
|
9227
9416
|
|
|
9228
|
-
declare const
|
|
9417
|
+
declare const useClasses_32: (classesProp?: Partial<Record<"link" | "root" | "a" | "centerContainer" | "separatorContainer" | "orderedList" | "currentPage", string>>, addStatic?: boolean) => {
|
|
9229
9418
|
classes: {
|
|
9230
9419
|
link: string;
|
|
9231
9420
|
root: string;
|
|
@@ -9242,18 +9431,7 @@ declare const useClasses_29: (classesProp?: Partial<Record<"link" | "root" | "a"
|
|
|
9242
9431
|
cx: (...args: any) => string;
|
|
9243
9432
|
};
|
|
9244
9433
|
|
|
9245
|
-
declare const
|
|
9246
|
-
classes: {
|
|
9247
|
-
root: string;
|
|
9248
|
-
};
|
|
9249
|
-
css: {
|
|
9250
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9251
|
-
(...args: CSSInterpolation[]): string;
|
|
9252
|
-
};
|
|
9253
|
-
cx: (...args: any) => string;
|
|
9254
|
-
};
|
|
9255
|
-
|
|
9256
|
-
declare const useClasses_30: (classesProp?: Partial<Record<"container" | "root" | "icon" | "iconSelected" | "baseContainer" | "menuListRoot" | "menuList", string>>, addStatic?: boolean) => {
|
|
9434
|
+
declare const useClasses_33: (classesProp?: Partial<Record<"container" | "root" | "icon" | "iconSelected" | "baseContainer" | "menuListRoot" | "menuList", string>>, addStatic?: boolean) => {
|
|
9257
9435
|
classes: {
|
|
9258
9436
|
container: string;
|
|
9259
9437
|
root: string;
|
|
@@ -9270,7 +9448,7 @@ declare const useClasses_30: (classesProp?: Partial<Record<"container" | "root"
|
|
|
9270
9448
|
cx: (...args: any) => string;
|
|
9271
9449
|
};
|
|
9272
9450
|
|
|
9273
|
-
declare const
|
|
9451
|
+
declare const useClasses_34: (classesProp?: Partial<Record<"root" | "semantic" | "divider" | "selectAll" | "actions" | "selectAllContainer" | "selectAllPages", string>>, addStatic?: boolean) => {
|
|
9274
9452
|
classes: {
|
|
9275
9453
|
root: string;
|
|
9276
9454
|
semantic: string;
|
|
@@ -9287,7 +9465,7 @@ declare const useClasses_31: (classesProp?: Partial<Record<"root" | "semantic" |
|
|
|
9287
9465
|
cx: (...args: any) => string;
|
|
9288
9466
|
};
|
|
9289
9467
|
|
|
9290
|
-
declare const
|
|
9468
|
+
declare const useClasses_35: (classesProp?: Partial<Record<"container" | "label" | "root" | "disabled" | "checkbox" | "focusVisible" | "invalidContainer" | "invalidCheckbox", string>>, addStatic?: boolean) => {
|
|
9291
9469
|
classes: {
|
|
9292
9470
|
container: string;
|
|
9293
9471
|
label: string;
|
|
@@ -9305,7 +9483,7 @@ declare const useClasses_32: (classesProp?: Partial<Record<"container" | "label"
|
|
|
9305
9483
|
cx: (...args: any) => string;
|
|
9306
9484
|
};
|
|
9307
9485
|
|
|
9308
|
-
declare const
|
|
9486
|
+
declare const useClasses_36: (classesProp?: Partial<Record<"secondary" | "primary" | "root" | "disabled" | "semantic" | "secondarySubtle" | "icon" | "secondaryGhost" | "primaryGhost" | "primarySubtle" | "ghost" | "startIcon" | "endIcon" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
9309
9487
|
classes: {
|
|
9310
9488
|
secondary: string;
|
|
9311
9489
|
primary: string;
|
|
@@ -9329,7 +9507,7 @@ declare const useClasses_33: (classesProp?: Partial<Record<"secondary" | "primar
|
|
|
9329
9507
|
cx: (...args: any) => string;
|
|
9330
9508
|
};
|
|
9331
9509
|
|
|
9332
|
-
declare const
|
|
9510
|
+
declare const useClasses_37: (classesProp?: Partial<Record<"root" | "focusSelection" | "calendarMonthlyCell" | "calendarMonthlyCellSelected" | "rangeCalendarContainer" | "singleCalendar", string>>, addStatic?: boolean) => {
|
|
9333
9511
|
classes: {
|
|
9334
9512
|
root: string;
|
|
9335
9513
|
focusSelection: string;
|
|
@@ -9345,7 +9523,7 @@ declare const useClasses_34: (classesProp?: Partial<Record<"root" | "focusSelect
|
|
|
9345
9523
|
cx: (...args: any) => string;
|
|
9346
9524
|
};
|
|
9347
9525
|
|
|
9348
|
-
declare const
|
|
9526
|
+
declare const useClasses_38: (classesProp?: Partial<Record<"root" | "inputBorderContainer" | "input" | "headerDate" | "headerDayOfWeek" | "invalid" | "invalidMessageStyling", string>>, addStatic?: boolean) => {
|
|
9349
9527
|
classes: {
|
|
9350
9528
|
root: string;
|
|
9351
9529
|
inputBorderContainer: string;
|
|
@@ -9362,7 +9540,7 @@ declare const useClasses_35: (classesProp?: Partial<Record<"root" | "inputBorder
|
|
|
9362
9540
|
cx: (...args: any) => string;
|
|
9363
9541
|
};
|
|
9364
9542
|
|
|
9365
|
-
declare const
|
|
9543
|
+
declare const useClasses_39: (classesProp?: Partial<Record<"root" | "selectable" | "icon" | "selected" | "semanticContainer" | "semanticBar", string>>, addStatic?: boolean) => {
|
|
9366
9544
|
classes: {
|
|
9367
9545
|
root: string;
|
|
9368
9546
|
selectable: string;
|
|
@@ -9378,14 +9556,19 @@ declare const useClasses_36: (classesProp?: Partial<Record<"root" | "selectable"
|
|
|
9378
9556
|
cx: (...args: any) => string;
|
|
9379
9557
|
};
|
|
9380
9558
|
|
|
9381
|
-
declare const
|
|
9559
|
+
declare const useClasses_4: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "condensed" | "focus" | "interactive" | "startAdornment" | "endAdornment" | "gutters" | "withStartAdornment" | "withEndAdornment", string>>, addStatic?: boolean) => {
|
|
9382
9560
|
classes: {
|
|
9383
|
-
content: string;
|
|
9384
9561
|
root: string;
|
|
9385
|
-
|
|
9386
|
-
|
|
9387
|
-
|
|
9388
|
-
|
|
9562
|
+
disabled: string;
|
|
9563
|
+
selected: string;
|
|
9564
|
+
condensed: string;
|
|
9565
|
+
focus: string;
|
|
9566
|
+
interactive: string;
|
|
9567
|
+
startAdornment: string;
|
|
9568
|
+
endAdornment: string;
|
|
9569
|
+
gutters: string;
|
|
9570
|
+
withStartAdornment: string;
|
|
9571
|
+
withEndAdornment: string;
|
|
9389
9572
|
};
|
|
9390
9573
|
css: {
|
|
9391
9574
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9394,9 +9577,14 @@ declare const useClasses_37: (classesProp?: Partial<Record<"content" | "root" |
|
|
|
9394
9577
|
cx: (...args: any) => string;
|
|
9395
9578
|
};
|
|
9396
9579
|
|
|
9397
|
-
declare const
|
|
9580
|
+
declare const useClasses_40: (classesProp?: Partial<Record<"content" | "root" | "title" | "titleShort" | "subheader" | "action", string>>, addStatic?: boolean) => {
|
|
9398
9581
|
classes: {
|
|
9399
9582
|
content: string;
|
|
9583
|
+
root: string;
|
|
9584
|
+
title: string;
|
|
9585
|
+
titleShort: string;
|
|
9586
|
+
subheader: string;
|
|
9587
|
+
action: string;
|
|
9400
9588
|
};
|
|
9401
9589
|
css: {
|
|
9402
9590
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9405,10 +9593,9 @@ declare const useClasses_38: (classesProp?: Partial<Record<"content", string>>,
|
|
|
9405
9593
|
cx: (...args: any) => string;
|
|
9406
9594
|
};
|
|
9407
9595
|
|
|
9408
|
-
declare const
|
|
9596
|
+
declare const useClasses_41: (classesProp?: Partial<Record<"content", string>>, addStatic?: boolean) => {
|
|
9409
9597
|
classes: {
|
|
9410
|
-
|
|
9411
|
-
media: string;
|
|
9598
|
+
content: string;
|
|
9412
9599
|
};
|
|
9413
9600
|
css: {
|
|
9414
9601
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9417,19 +9604,10 @@ declare const useClasses_39: (classesProp?: Partial<Record<"root" | "media", str
|
|
|
9417
9604
|
cx: (...args: any) => string;
|
|
9418
9605
|
};
|
|
9419
9606
|
|
|
9420
|
-
declare const
|
|
9607
|
+
declare const useClasses_42: (classesProp?: Partial<Record<"root" | "media", string>>, addStatic?: boolean) => {
|
|
9421
9608
|
classes: {
|
|
9422
9609
|
root: string;
|
|
9423
|
-
|
|
9424
|
-
selected: string;
|
|
9425
|
-
condensed: string;
|
|
9426
|
-
focus: string;
|
|
9427
|
-
interactive: string;
|
|
9428
|
-
startAdornment: string;
|
|
9429
|
-
endAdornment: string;
|
|
9430
|
-
gutters: string;
|
|
9431
|
-
withStartAdornment: string;
|
|
9432
|
-
withEndAdornment: string;
|
|
9610
|
+
media: string;
|
|
9433
9611
|
};
|
|
9434
9612
|
css: {
|
|
9435
9613
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9438,7 +9616,7 @@ declare const useClasses_4: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
9438
9616
|
cx: (...args: any) => string;
|
|
9439
9617
|
};
|
|
9440
9618
|
|
|
9441
|
-
declare const
|
|
9619
|
+
declare const useClasses_43: (classesProp?: Partial<Record<"xs" | "root" | "panel" | "title" | "controls" | "counterContainer" | "thumbnail" | "thumbnailSelected" | "dot" | "main" | "counter" | "actions" | "fullscreen" | "closeButton" | "mainContainer" | "pageCounter" | "mainXs" | "mainFullscreen" | "slideControls" | "slidesViewport" | "slidesContainer" | "dots" | "dotsXs" | "dotSelected", string>>, addStatic?: boolean) => {
|
|
9442
9620
|
classes: {
|
|
9443
9621
|
xs: string;
|
|
9444
9622
|
root: string;
|
|
@@ -9472,7 +9650,7 @@ declare const useClasses_40: (classesProp?: Partial<Record<"xs" | "root" | "pane
|
|
|
9472
9650
|
cx: (...args: any) => string;
|
|
9473
9651
|
};
|
|
9474
9652
|
|
|
9475
|
-
declare const
|
|
9653
|
+
declare const useClasses_44: (classesProp?: Partial<Record<"image" | "slide", string>>, addStatic?: boolean) => {
|
|
9476
9654
|
classes: {
|
|
9477
9655
|
image: string;
|
|
9478
9656
|
slide: string;
|
|
@@ -9484,7 +9662,7 @@ declare const useClasses_41: (classesProp?: Partial<Record<"image" | "slide", st
|
|
|
9484
9662
|
cx: (...args: any) => string;
|
|
9485
9663
|
};
|
|
9486
9664
|
|
|
9487
|
-
declare const
|
|
9665
|
+
declare const useClasses_45: (classesProp?: Partial<Record<"label" | "description" | "root" | "inputBorderContainer" | "inputRoot" | "inputRootFocused" | "inputRootMultiline" | "input" | "icon" | "error" | "adornmentButton" | "labelContainer" | "inputRootDisabled" | "adornmentsBox" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList" | "inputExtension", string>>, addStatic?: boolean) => {
|
|
9488
9666
|
classes: {
|
|
9489
9667
|
label: string;
|
|
9490
9668
|
description: string;
|
|
@@ -9497,8 +9675,8 @@ declare const useClasses_42: (classesProp?: Partial<Record<"label" | "descriptio
|
|
|
9497
9675
|
icon: string;
|
|
9498
9676
|
error: string;
|
|
9499
9677
|
adornmentButton: string;
|
|
9500
|
-
inputRootDisabled: string;
|
|
9501
9678
|
labelContainer: string;
|
|
9679
|
+
inputRootDisabled: string;
|
|
9502
9680
|
adornmentsBox: string;
|
|
9503
9681
|
iconClear: string;
|
|
9504
9682
|
hasSuggestions: string;
|
|
@@ -9513,7 +9691,7 @@ declare const useClasses_42: (classesProp?: Partial<Record<"label" | "descriptio
|
|
|
9513
9691
|
cx: (...args: any) => string;
|
|
9514
9692
|
};
|
|
9515
9693
|
|
|
9516
|
-
declare const
|
|
9694
|
+
declare const useClasses_46: (classesProp?: Partial<Record<"root" | "icon" | "pageSizeOptions" | "pageSizeHeader" | "pageSizeTextContainer" | "pageSizeOptionsSelect" | "totalPagesTextContainer" | "pageNavigator" | "iconContainer" | "pageInfo" | "pageJump" | "pageSizeInput" | "pageSizeInputRoot" | "pageSizeInputContainer", string>>, addStatic?: boolean) => {
|
|
9517
9695
|
classes: {
|
|
9518
9696
|
root: string;
|
|
9519
9697
|
icon: string;
|
|
@@ -9537,7 +9715,7 @@ declare const useClasses_43: (classesProp?: Partial<Record<"root" | "icon" | "pa
|
|
|
9537
9715
|
cx: (...args: any) => string;
|
|
9538
9716
|
};
|
|
9539
9717
|
|
|
9540
|
-
declare const
|
|
9718
|
+
declare const useClasses_47: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "group" | "error" | "invalid" | "selectAll", string>>, addStatic?: boolean) => {
|
|
9541
9719
|
classes: {
|
|
9542
9720
|
vertical: string;
|
|
9543
9721
|
horizontal: string;
|
|
@@ -9555,7 +9733,7 @@ declare const useClasses_44: (classesProp?: Partial<Record<"vertical" | "horizon
|
|
|
9555
9733
|
cx: (...args: any) => string;
|
|
9556
9734
|
};
|
|
9557
9735
|
|
|
9558
|
-
declare const
|
|
9736
|
+
declare const useClasses_48: (classesProp?: Partial<Record<"colorPicker" | "label" | "description" | "root" | "panel" | "headerColorValue" | "recommendedColorsRoot" | "labelContainer" | "headerColorIcon" | "colorPickerIcon" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
|
|
9559
9737
|
classes: {
|
|
9560
9738
|
colorPicker: string;
|
|
9561
9739
|
label: string;
|
|
@@ -9578,7 +9756,7 @@ declare const useClasses_45: (classesProp?: Partial<Record<"colorPicker" | "labe
|
|
|
9578
9756
|
cx: (...args: any) => string;
|
|
9579
9757
|
};
|
|
9580
9758
|
|
|
9581
|
-
declare const
|
|
9759
|
+
declare const useClasses_49: (classesProp?: Partial<Record<"fixed" | "root" | "disableGutters" | "maxWidthXs" | "maxWidthSm" | "maxWidthMd" | "maxWidthLg" | "maxWidthXl", string>>, addStatic?: boolean) => {
|
|
9582
9760
|
classes: {
|
|
9583
9761
|
fixed: string;
|
|
9584
9762
|
root: string;
|
|
@@ -9596,7 +9774,21 @@ declare const useClasses_46: (classesProp?: Partial<Record<"fixed" | "root" | "d
|
|
|
9596
9774
|
cx: (...args: any) => string;
|
|
9597
9775
|
};
|
|
9598
9776
|
|
|
9599
|
-
declare const
|
|
9777
|
+
declare const useClasses_5: (classesProp?: Partial<Record<"root" | "counterDisabled" | "gutter" | "overloaded", string>>, addStatic?: boolean) => {
|
|
9778
|
+
classes: {
|
|
9779
|
+
root: string;
|
|
9780
|
+
counterDisabled: string;
|
|
9781
|
+
gutter: string;
|
|
9782
|
+
overloaded: string;
|
|
9783
|
+
};
|
|
9784
|
+
css: {
|
|
9785
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9786
|
+
(...args: CSSInterpolation[]): string;
|
|
9787
|
+
};
|
|
9788
|
+
cx: (...args: any) => string;
|
|
9789
|
+
};
|
|
9790
|
+
|
|
9791
|
+
declare const useClasses_50: (classesProp?: Partial<Record<"root" | "section" | "rightSection" | "leftSection", string>>, addStatic?: boolean) => {
|
|
9600
9792
|
classes: {
|
|
9601
9793
|
root: string;
|
|
9602
9794
|
section: string;
|
|
@@ -9610,7 +9802,7 @@ declare const useClasses_47: (classesProp?: Partial<Record<"root" | "section" |
|
|
|
9610
9802
|
cx: (...args: any) => string;
|
|
9611
9803
|
};
|
|
9612
9804
|
|
|
9613
|
-
declare const
|
|
9805
|
+
declare const useClasses_51: (classesProp?: Partial<Record<"body" | "root" | "head" | "variantListactions" | "variantListcheckbox" | "variantList" | "footer" | "resizable" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "variantListHead" | "sorted" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing", string>>, addStatic?: boolean) => {
|
|
9614
9806
|
classes: {
|
|
9615
9807
|
body: string;
|
|
9616
9808
|
root: string;
|
|
@@ -9644,7 +9836,7 @@ declare const useClasses_48: (classesProp?: Partial<Record<"body" | "root" | "he
|
|
|
9644
9836
|
cx: (...args: any) => string;
|
|
9645
9837
|
};
|
|
9646
9838
|
|
|
9647
|
-
declare const
|
|
9839
|
+
declare const useClasses_52: (classesProp?: Partial<Record<"body" | "root" | "selected" | "head" | "variantList" | "expanded" | "footer" | "striped" | "hover" | "variantListHead", string>>, addStatic?: boolean) => {
|
|
9648
9840
|
classes: {
|
|
9649
9841
|
body: string;
|
|
9650
9842
|
root: string;
|
|
@@ -9664,21 +9856,7 @@ declare const useClasses_49: (classesProp?: Partial<Record<"body" | "root" | "se
|
|
|
9664
9856
|
cx: (...args: any) => string;
|
|
9665
9857
|
};
|
|
9666
9858
|
|
|
9667
|
-
declare const
|
|
9668
|
-
classes: {
|
|
9669
|
-
root: string;
|
|
9670
|
-
counterDisabled: string;
|
|
9671
|
-
gutter: string;
|
|
9672
|
-
overloaded: string;
|
|
9673
|
-
};
|
|
9674
|
-
css: {
|
|
9675
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9676
|
-
(...args: CSSInterpolation[]): string;
|
|
9677
|
-
};
|
|
9678
|
-
cx: (...args: any) => string;
|
|
9679
|
-
};
|
|
9680
|
-
|
|
9681
|
-
declare const useClasses_50: (classesProp?: Partial<Record<"body" | "root" | "head" | "sortButton" | "variantList" | "resizer" | "footer" | "resizable" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "sorted" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing" | "headerContent" | "headerText" | "headerParagraph" | "sortableHeaderText" | "sortable" | "sortIcon" | "alignFlexLeft" | "alignFlexRight" | "alignFlexCenter" | "alignFlexJustify", string>>, addStatic?: boolean) => {
|
|
9859
|
+
declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "head" | "sortButton" | "variantList" | "resizer" | "footer" | "resizable" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "sorted" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing" | "headerContent" | "headerText" | "headerParagraph" | "sortableHeaderText" | "sortable" | "sortIcon" | "alignFlexLeft" | "alignFlexRight" | "alignFlexCenter" | "alignFlexJustify", string>>, addStatic?: boolean) => {
|
|
9682
9860
|
classes: {
|
|
9683
9861
|
body: string;
|
|
9684
9862
|
root: string;
|
|
@@ -9721,7 +9899,7 @@ declare const useClasses_50: (classesProp?: Partial<Record<"body" | "root" | "he
|
|
|
9721
9899
|
cx: (...args: any) => string;
|
|
9722
9900
|
};
|
|
9723
9901
|
|
|
9724
|
-
declare const
|
|
9902
|
+
declare const useClasses_54: (classesProp?: Partial<Record<"root" | "stickyHeader" | "stickyColumns" | "listRow", string>>, addStatic?: boolean) => {
|
|
9725
9903
|
classes: {
|
|
9726
9904
|
root: string;
|
|
9727
9905
|
stickyHeader: string;
|
|
@@ -9735,7 +9913,7 @@ declare const useClasses_51: (classesProp?: Partial<Record<"root" | "stickyHeade
|
|
|
9735
9913
|
cx: (...args: any) => string;
|
|
9736
9914
|
};
|
|
9737
9915
|
|
|
9738
|
-
declare const
|
|
9916
|
+
declare const useClasses_55: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
9739
9917
|
classes: {
|
|
9740
9918
|
root: string;
|
|
9741
9919
|
};
|
|
@@ -9746,7 +9924,7 @@ declare const useClasses_52: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
9746
9924
|
cx: (...args: any) => string;
|
|
9747
9925
|
};
|
|
9748
9926
|
|
|
9749
|
-
declare const
|
|
9927
|
+
declare const useClasses_56: (classesProp?: Partial<Record<"root" | "sortDropdown", string>>, addStatic?: boolean) => {
|
|
9750
9928
|
classes: {
|
|
9751
9929
|
root: string;
|
|
9752
9930
|
sortDropdown: string;
|
|
@@ -9758,7 +9936,7 @@ declare const useClasses_53: (classesProp?: Partial<Record<"root" | "sortDropdow
|
|
|
9758
9936
|
cx: (...args: any) => string;
|
|
9759
9937
|
};
|
|
9760
9938
|
|
|
9761
|
-
declare const
|
|
9939
|
+
declare const useClasses_57: (classesProp?: Partial<Record<"label" | "description" | "root" | "placeholder" | "disabled" | "readOnly" | "placeholderClosed" | "error" | "dropdown" | "labelContainer" | "arrow" | "selectionDisabled" | "rootList" | "dropdownListContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen", string>>, addStatic?: boolean) => {
|
|
9762
9940
|
classes: {
|
|
9763
9941
|
label: string;
|
|
9764
9942
|
description: string;
|
|
@@ -9769,9 +9947,9 @@ declare const useClasses_54: (classesProp?: Partial<Record<"label" | "descriptio
|
|
|
9769
9947
|
placeholderClosed: string;
|
|
9770
9948
|
error: string;
|
|
9771
9949
|
dropdown: string;
|
|
9950
|
+
labelContainer: string;
|
|
9772
9951
|
arrow: string;
|
|
9773
9952
|
selectionDisabled: string;
|
|
9774
|
-
labelContainer: string;
|
|
9775
9953
|
rootList: string;
|
|
9776
9954
|
dropdownListContainer: string;
|
|
9777
9955
|
dropdownHeader: string;
|
|
@@ -9785,7 +9963,7 @@ declare const useClasses_54: (classesProp?: Partial<Record<"label" | "descriptio
|
|
|
9785
9963
|
cx: (...args: any) => string;
|
|
9786
9964
|
};
|
|
9787
9965
|
|
|
9788
|
-
declare const
|
|
9966
|
+
declare const useClasses_58: (classesProp?: Partial<Record<"selection" | "selectAll" | "selectAllContainer" | "rootList" | "dropdownListContainer" | "searchContainer" | "listBorderDown" | "listContainer", string>>, addStatic?: boolean) => {
|
|
9789
9967
|
classes: {
|
|
9790
9968
|
selection: string;
|
|
9791
9969
|
selectAll: string;
|
|
@@ -9803,7 +9981,7 @@ declare const useClasses_55: (classesProp?: Partial<Record<"selection" | "select
|
|
|
9803
9981
|
cx: (...args: any) => string;
|
|
9804
9982
|
};
|
|
9805
9983
|
|
|
9806
|
-
declare const
|
|
9984
|
+
declare const useClasses_59: (classesProp?: Partial<Record<"label" | "description" | "root" | "panel" | "icon" | "inputText" | "action" | "error" | "dropdown" | "labelContainer" | "actionContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "leftContainer" | "rightContainer" | "dateText", string>>, addStatic?: boolean) => {
|
|
9807
9985
|
classes: {
|
|
9808
9986
|
label: string;
|
|
9809
9987
|
description: string;
|
|
@@ -9814,8 +9992,8 @@ declare const useClasses_56: (classesProp?: Partial<Record<"label" | "descriptio
|
|
|
9814
9992
|
action: string;
|
|
9815
9993
|
error: string;
|
|
9816
9994
|
dropdown: string;
|
|
9817
|
-
actionContainer: string;
|
|
9818
9995
|
labelContainer: string;
|
|
9996
|
+
actionContainer: string;
|
|
9819
9997
|
dropdownHeaderInvalid: string;
|
|
9820
9998
|
dropdownHeaderOpen: string;
|
|
9821
9999
|
leftContainer: string;
|
|
@@ -9829,13 +10007,14 @@ declare const useClasses_56: (classesProp?: Partial<Record<"label" | "descriptio
|
|
|
9829
10007
|
cx: (...args: any) => string;
|
|
9830
10008
|
};
|
|
9831
10009
|
|
|
9832
|
-
declare const
|
|
10010
|
+
declare const useClasses_6: (classesProp?: Partial<Record<"root" | "icon" | "adornment" | "adornmentIcon" | "hideIcon" | "adornmentButton", string>>, addStatic?: boolean) => {
|
|
9833
10011
|
classes: {
|
|
9834
10012
|
root: string;
|
|
9835
|
-
|
|
9836
|
-
|
|
9837
|
-
|
|
9838
|
-
|
|
10013
|
+
icon: string;
|
|
10014
|
+
adornment: string;
|
|
10015
|
+
adornmentIcon: string;
|
|
10016
|
+
hideIcon: string;
|
|
10017
|
+
adornmentButton: string;
|
|
9839
10018
|
};
|
|
9840
10019
|
css: {
|
|
9841
10020
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9844,10 +10023,13 @@ declare const useClasses_57: (classesProp?: Partial<Record<"root" | "titleText"
|
|
|
9844
10023
|
cx: (...args: any) => string;
|
|
9845
10024
|
};
|
|
9846
10025
|
|
|
9847
|
-
declare const
|
|
10026
|
+
declare const useClasses_60: (classesProp?: Partial<Record<"root" | "titleText" | "fullscreen" | "messageContainer" | "textWithIcon", string>>, addStatic?: boolean) => {
|
|
9848
10027
|
classes: {
|
|
9849
10028
|
root: string;
|
|
9850
|
-
|
|
10029
|
+
titleText: string;
|
|
10030
|
+
fullscreen: string;
|
|
10031
|
+
messageContainer: string;
|
|
10032
|
+
textWithIcon: string;
|
|
9851
10033
|
};
|
|
9852
10034
|
css: {
|
|
9853
10035
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9856,11 +10038,10 @@ declare const useClasses_58: (classesProp?: Partial<Record<"root" | "textContent
|
|
|
9856
10038
|
cx: (...args: any) => string;
|
|
9857
10039
|
};
|
|
9858
10040
|
|
|
9859
|
-
declare const
|
|
10041
|
+
declare const useClasses_61: (classesProp?: Partial<Record<"root" | "textContent", string>>, addStatic?: boolean) => {
|
|
9860
10042
|
classes: {
|
|
9861
|
-
spacing: string;
|
|
9862
10043
|
root: string;
|
|
9863
|
-
|
|
10044
|
+
textContent: string;
|
|
9864
10045
|
};
|
|
9865
10046
|
css: {
|
|
9866
10047
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9869,14 +10050,11 @@ declare const useClasses_59: (classesProp?: Partial<Record<"spacing" | "root" |
|
|
|
9869
10050
|
cx: (...args: any) => string;
|
|
9870
10051
|
};
|
|
9871
10052
|
|
|
9872
|
-
declare const
|
|
10053
|
+
declare const useClasses_62: (classesProp?: Partial<Record<"spacing" | "root" | "fullscreen", string>>, addStatic?: boolean) => {
|
|
9873
10054
|
classes: {
|
|
10055
|
+
spacing: string;
|
|
9874
10056
|
root: string;
|
|
9875
|
-
|
|
9876
|
-
adornment: string;
|
|
9877
|
-
adornmentIcon: string;
|
|
9878
|
-
hideIcon: string;
|
|
9879
|
-
adornmentButton: string;
|
|
10057
|
+
fullscreen: string;
|
|
9880
10058
|
};
|
|
9881
10059
|
css: {
|
|
9882
10060
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9885,7 +10063,7 @@ declare const useClasses_6: (classesProp?: Partial<Record<"root" | "icon" | "ado
|
|
|
9885
10063
|
cx: (...args: any) => string;
|
|
9886
10064
|
};
|
|
9887
10065
|
|
|
9888
|
-
declare const
|
|
10066
|
+
declare const useClasses_63: (classesProp?: Partial<Record<"warning" | "background" | "root" | "paper" | "error" | "success" | "fullscreen" | "closeButton" | "statusBar", string>>, addStatic?: boolean) => {
|
|
9889
10067
|
classes: {
|
|
9890
10068
|
warning: string;
|
|
9891
10069
|
background: string;
|
|
@@ -9904,7 +10082,7 @@ declare const useClasses_60: (classesProp?: Partial<Record<"warning" | "backgrou
|
|
|
9904
10082
|
cx: (...args: any) => string;
|
|
9905
10083
|
};
|
|
9906
10084
|
|
|
9907
|
-
declare const
|
|
10085
|
+
declare const useClasses_64: (classesProp?: Partial<Record<"horizontal" | "root" | "icon" | "radio" | "radioRoot", string>>, addStatic?: boolean) => {
|
|
9908
10086
|
classes: {
|
|
9909
10087
|
horizontal: string;
|
|
9910
10088
|
root: string;
|
|
@@ -9919,7 +10097,7 @@ declare const useClasses_61: (classesProp?: Partial<Record<"horizontal" | "root"
|
|
|
9919
10097
|
cx: (...args: any) => string;
|
|
9920
10098
|
};
|
|
9921
10099
|
|
|
9922
|
-
declare const
|
|
10100
|
+
declare const useClasses_65: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "group" | "error" | "invalid", string>>, addStatic?: boolean) => {
|
|
9923
10101
|
classes: {
|
|
9924
10102
|
vertical: string;
|
|
9925
10103
|
horizontal: string;
|
|
@@ -9936,7 +10114,7 @@ declare const useClasses_62: (classesProp?: Partial<Record<"vertical" | "horizon
|
|
|
9936
10114
|
cx: (...args: any) => string;
|
|
9937
10115
|
};
|
|
9938
10116
|
|
|
9939
|
-
declare const
|
|
10117
|
+
declare const useClasses_66: (classesProp?: Partial<Record<"background" | "root" | "paper" | "closeButton", string>>, addStatic?: boolean) => {
|
|
9940
10118
|
classes: {
|
|
9941
10119
|
background: string;
|
|
9942
10120
|
root: string;
|
|
@@ -9950,7 +10128,7 @@ declare const useClasses_63: (classesProp?: Partial<Record<"background" | "root"
|
|
|
9950
10128
|
cx: (...args: any) => string;
|
|
9951
10129
|
};
|
|
9952
10130
|
|
|
9953
|
-
declare const
|
|
10131
|
+
declare const useClasses_67: (classesProp?: Partial<Record<"container" | "root" | "titleContainer" | "actionContainer" | "iconContainer" | "messageContainer" | "containerMessageOnly" | "textContainer", string>>, addStatic?: boolean) => {
|
|
9954
10132
|
classes: {
|
|
9955
10133
|
container: string;
|
|
9956
10134
|
root: string;
|
|
@@ -9968,7 +10146,7 @@ declare const useClasses_64: (classesProp?: Partial<Record<"container" | "root"
|
|
|
9968
10146
|
cx: (...args: any) => string;
|
|
9969
10147
|
};
|
|
9970
10148
|
|
|
9971
|
-
declare const
|
|
10149
|
+
declare const useClasses_68: (classesProp?: Partial<Record<"overlay" | "previewButton", string>>, addStatic?: boolean) => {
|
|
9972
10150
|
classes: {
|
|
9973
10151
|
overlay: string;
|
|
9974
10152
|
previewButton: string;
|
|
@@ -9980,7 +10158,7 @@ declare const useClasses_65: (classesProp?: Partial<Record<"overlay" | "previewB
|
|
|
9980
10158
|
cx: (...args: any) => string;
|
|
9981
10159
|
};
|
|
9982
10160
|
|
|
9983
|
-
declare const
|
|
10161
|
+
declare const useClasses_69: (classesProp?: Partial<Record<"root" | "icon" | "progressbarContainer" | "previewContainer" | "progressbar" | "removeButton" | "progressbarBack" | "nameText" | "progressTextContainer" | "fail", string>>, addStatic?: boolean) => {
|
|
9984
10162
|
classes: {
|
|
9985
10163
|
root: string;
|
|
9986
10164
|
icon: string;
|
|
@@ -10000,7 +10178,18 @@ declare const useClasses_66: (classesProp?: Partial<Record<"root" | "icon" | "pr
|
|
|
10000
10178
|
cx: (...args: any) => string;
|
|
10001
10179
|
};
|
|
10002
10180
|
|
|
10003
|
-
declare const
|
|
10181
|
+
declare const useClasses_7: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
10182
|
+
classes: {
|
|
10183
|
+
root: string;
|
|
10184
|
+
};
|
|
10185
|
+
css: {
|
|
10186
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
10187
|
+
(...args: CSSInterpolation[]): string;
|
|
10188
|
+
};
|
|
10189
|
+
cx: (...args: any) => string;
|
|
10190
|
+
};
|
|
10191
|
+
|
|
10192
|
+
declare const useClasses_70: (classesProp?: Partial<Record<"label" | "description" | "root" | "error" | "labelContainer", string>>, addStatic?: boolean) => {
|
|
10004
10193
|
classes: {
|
|
10005
10194
|
label: string;
|
|
10006
10195
|
description: string;
|
|
@@ -10015,7 +10204,7 @@ declare const useClasses_67: (classesProp?: Partial<Record<"label" | "descriptio
|
|
|
10015
10204
|
cx: (...args: any) => string;
|
|
10016
10205
|
};
|
|
10017
10206
|
|
|
10018
|
-
declare const
|
|
10207
|
+
declare const useClasses_71: (classesProp?: Partial<Record<"space" | "header" | "root" | "panel" | "rightSidePanel" | "applyButton" | "dropdown" | "baseDropdownSelection" | "leftSidePanel" | "actionBar", string>>, addStatic?: boolean) => {
|
|
10019
10208
|
classes: {
|
|
10020
10209
|
space: string;
|
|
10021
10210
|
header: string;
|
|
@@ -10035,7 +10224,7 @@ declare const useClasses_68: (classesProp?: Partial<Record<"space" | "header" |
|
|
|
10035
10224
|
cx: (...args: any) => string;
|
|
10036
10225
|
};
|
|
10037
10226
|
|
|
10038
|
-
declare const
|
|
10227
|
+
declare const useClasses_72: (classesProp?: Partial<Record<"name" | "small" | "root" | "separator" | "rightContainer" | "copyright", string>>, addStatic?: boolean) => {
|
|
10039
10228
|
classes: {
|
|
10040
10229
|
name: string;
|
|
10041
10230
|
small: string;
|
|
@@ -10051,18 +10240,7 @@ declare const useClasses_69: (classesProp?: Partial<Record<"name" | "small" | "r
|
|
|
10051
10240
|
cx: (...args: any) => string;
|
|
10052
10241
|
};
|
|
10053
10242
|
|
|
10054
|
-
declare const
|
|
10055
|
-
classes: {
|
|
10056
|
-
root: string;
|
|
10057
|
-
};
|
|
10058
|
-
css: {
|
|
10059
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
10060
|
-
(...args: CSSInterpolation[]): string;
|
|
10061
|
-
};
|
|
10062
|
-
cx: (...args: any) => string;
|
|
10063
|
-
};
|
|
10064
|
-
|
|
10065
|
-
declare const useClasses_70: (classesProp?: Partial<Record<"name" | "root" | "section" | "wrapper" | "sectionName" | "actions" | "positionSticky" | "positionFixed" | "global" | "globalSectionArea" | "globalWrapperComplement" | "backButton", string>>, addStatic?: boolean) => {
|
|
10243
|
+
declare const useClasses_73: (classesProp?: Partial<Record<"name" | "root" | "section" | "wrapper" | "sectionName" | "actions" | "positionSticky" | "positionFixed" | "global" | "globalSectionArea" | "globalWrapperComplement" | "backButton", string>>, addStatic?: boolean) => {
|
|
10066
10244
|
classes: {
|
|
10067
10245
|
name: string;
|
|
10068
10246
|
root: string;
|
|
@@ -10084,7 +10262,7 @@ declare const useClasses_70: (classesProp?: Partial<Record<"name" | "root" | "se
|
|
|
10084
10262
|
cx: (...args: any) => string;
|
|
10085
10263
|
};
|
|
10086
10264
|
|
|
10087
|
-
declare const
|
|
10265
|
+
declare const useClasses_74: (classesProp?: Partial<Record<"container" | "root" | "item" | "zeroMinWidth" | "direction-xs-column" | "direction-xs-reverse" | "direction-xs-row-reverse" | "wrap-xs-nowrap" | "wrap-xs-wrap-reverse" | "spacing-xs-1" | "spacing-xs-2" | "spacing-xs-3" | "spacing-xs-4" | "spacing-xs-5" | "spacing-xs-6" | "spacing-xs-7" | "spacing-xs-8" | "spacing-xs-9" | "spacing-xs-10" | "grid-xs-auto" | "grid-xs-true" | "grid-xs-1" | "grid-xs-2" | "grid-xs-3" | "grid-xs-4" | "grid-xs-5" | "grid-xs-6" | "grid-xs-7" | "grid-xs-8" | "grid-xs-9" | "grid-xs-10" | "grid-xs-11" | "grid-xs-12", string>>, addStatic?: boolean) => {
|
|
10088
10266
|
classes: {
|
|
10089
10267
|
container: string;
|
|
10090
10268
|
root: string;
|
|
@@ -10127,7 +10305,7 @@ declare const useClasses_71: (classesProp?: Partial<Record<"container" | "root"
|
|
|
10127
10305
|
cx: (...args: any) => string;
|
|
10128
10306
|
};
|
|
10129
10307
|
|
|
10130
|
-
declare const
|
|
10308
|
+
declare const useClasses_75: (classesProp?: Partial<Record<"backgroundColor" | "header" | "root", string>>, addStatic?: boolean) => {
|
|
10131
10309
|
classes: {
|
|
10132
10310
|
backgroundColor: string;
|
|
10133
10311
|
header: string;
|
|
@@ -10140,7 +10318,7 @@ declare const useClasses_72: (classesProp?: Partial<Record<"backgroundColor" | "
|
|
|
10140
10318
|
cx: (...args: any) => string;
|
|
10141
10319
|
};
|
|
10142
10320
|
|
|
10143
|
-
declare const
|
|
10321
|
+
declare const useClasses_76: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
10144
10322
|
classes: {
|
|
10145
10323
|
root: string;
|
|
10146
10324
|
};
|
|
@@ -10151,7 +10329,7 @@ declare const useClasses_73: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
10151
10329
|
cx: (...args: any) => string;
|
|
10152
10330
|
};
|
|
10153
10331
|
|
|
10154
|
-
declare const
|
|
10332
|
+
declare const useClasses_77: (classesProp?: Partial<Record<"root" | "separator" | "brandName", string>>, addStatic?: boolean) => {
|
|
10155
10333
|
classes: {
|
|
10156
10334
|
root: string;
|
|
10157
10335
|
separator: string;
|
|
@@ -10164,7 +10342,7 @@ declare const useClasses_74: (classesProp?: Partial<Record<"root" | "separator"
|
|
|
10164
10342
|
cx: (...args: any) => string;
|
|
10165
10343
|
};
|
|
10166
10344
|
|
|
10167
|
-
declare const
|
|
10345
|
+
declare const useClasses_78: (classesProp?: Partial<Record<"root" | "active" | "list" | "menu" | "menubar" | "hidden", string>>, addStatic?: boolean) => {
|
|
10168
10346
|
classes: {
|
|
10169
10347
|
root: string;
|
|
10170
10348
|
active: string;
|
|
@@ -10180,7 +10358,7 @@ declare const useClasses_75: (classesProp?: Partial<Record<"root" | "active" | "
|
|
|
10180
10358
|
cx: (...args: any) => string;
|
|
10181
10359
|
};
|
|
10182
10360
|
|
|
10183
|
-
declare const
|
|
10361
|
+
declare const useClasses_79: (classesProp?: Partial<Record<"link" | "root" | "menu" | "menubar" | "selected" | "button", string>>, addStatic?: boolean) => {
|
|
10184
10362
|
classes: {
|
|
10185
10363
|
link: string;
|
|
10186
10364
|
root: string;
|
|
@@ -10196,7 +10374,20 @@ declare const useClasses_76: (classesProp?: Partial<Record<"link" | "root" | "me
|
|
|
10196
10374
|
cx: (...args: any) => string;
|
|
10197
10375
|
};
|
|
10198
10376
|
|
|
10199
|
-
declare const
|
|
10377
|
+
declare const useClasses_8: (classesProp?: Partial<Record<"root" | "labelDisabled" | "childGutter", string>>, addStatic?: boolean) => {
|
|
10378
|
+
classes: {
|
|
10379
|
+
root: string;
|
|
10380
|
+
labelDisabled: string;
|
|
10381
|
+
childGutter: string;
|
|
10382
|
+
};
|
|
10383
|
+
css: {
|
|
10384
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
10385
|
+
(...args: CSSInterpolation[]): string;
|
|
10386
|
+
};
|
|
10387
|
+
cx: (...args: any) => string;
|
|
10388
|
+
};
|
|
10389
|
+
|
|
10390
|
+
declare const useClasses_80: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
10200
10391
|
classes: {
|
|
10201
10392
|
root: string;
|
|
10202
10393
|
};
|
|
@@ -10207,7 +10398,7 @@ declare const useClasses_77: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
10207
10398
|
cx: (...args: any) => string;
|
|
10208
10399
|
};
|
|
10209
10400
|
|
|
10210
|
-
declare const
|
|
10401
|
+
declare const useClasses_81: (classesProp?: Partial<Record<"root" | "inputBorderContainer" | "inputRoot" | "input" | "icon" | "button" | "text" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
|
|
10211
10402
|
classes: {
|
|
10212
10403
|
root: string;
|
|
10213
10404
|
inputBorderContainer: string;
|
|
@@ -10227,7 +10418,7 @@ declare const useClasses_78: (classesProp?: Partial<Record<"root" | "inputBorder
|
|
|
10227
10418
|
cx: (...args: any) => string;
|
|
10228
10419
|
};
|
|
10229
10420
|
|
|
10230
|
-
declare const
|
|
10421
|
+
declare const useClasses_82: (classesProp?: Partial<Record<"root" | "visualIndicatorContainer" | "comparisons" | "comparisonContainer" | "comparisonComposition" | "indicatorsContainer" | "indicatorText" | "indicatorUnit" | "spacingToTheRight" | "trendLine", string>>, addStatic?: boolean) => {
|
|
10231
10422
|
classes: {
|
|
10232
10423
|
root: string;
|
|
10233
10424
|
visualIndicatorContainer: string;
|
|
@@ -10247,20 +10438,7 @@ declare const useClasses_79: (classesProp?: Partial<Record<"root" | "visualIndic
|
|
|
10247
10438
|
cx: (...args: any) => string;
|
|
10248
10439
|
};
|
|
10249
10440
|
|
|
10250
|
-
declare const
|
|
10251
|
-
classes: {
|
|
10252
|
-
root: string;
|
|
10253
|
-
labelDisabled: string;
|
|
10254
|
-
childGutter: string;
|
|
10255
|
-
};
|
|
10256
|
-
css: {
|
|
10257
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
10258
|
-
(...args: CSSInterpolation[]): string;
|
|
10259
|
-
};
|
|
10260
|
-
cx: (...args: any) => string;
|
|
10261
|
-
};
|
|
10262
|
-
|
|
10263
|
-
declare const useClasses_80: (classesProp?: Partial<Record<"a", string>>, addStatic?: boolean) => {
|
|
10441
|
+
declare const useClasses_83: (classesProp?: Partial<Record<"a", string>>, addStatic?: boolean) => {
|
|
10264
10442
|
classes: {
|
|
10265
10443
|
a: string;
|
|
10266
10444
|
};
|
|
@@ -10271,7 +10449,7 @@ declare const useClasses_80: (classesProp?: Partial<Record<"a", string>>, addSta
|
|
|
10271
10449
|
cx: (...args: any) => string;
|
|
10272
10450
|
};
|
|
10273
10451
|
|
|
10274
|
-
declare const
|
|
10452
|
+
declare const useClasses_84: (classesProp?: Partial<Record<"link" | "root" | "itemSelector" | "item" | "virtualizedRoot" | "selectorRoot" | "selectorContainer" | "box" | "truncate" | "selectAllSelector", string>>, addStatic?: boolean) => {
|
|
10275
10453
|
classes: {
|
|
10276
10454
|
link: string;
|
|
10277
10455
|
root: string;
|
|
@@ -10291,7 +10469,7 @@ declare const useClasses_81: (classesProp?: Partial<Record<"link" | "root" | "it
|
|
|
10291
10469
|
cx: (...args: any) => string;
|
|
10292
10470
|
};
|
|
10293
10471
|
|
|
10294
|
-
declare const
|
|
10472
|
+
declare const useClasses_85: (classesProp?: Partial<Record<"overlay" | "small" | "label" | "root" | "hidden" | "blur" | "barContainer" | "loadingBar" | "regular" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
|
|
10295
10473
|
classes: {
|
|
10296
10474
|
overlay: string;
|
|
10297
10475
|
small: string;
|
|
@@ -10312,7 +10490,7 @@ declare const useClasses_82: (classesProp?: Partial<Record<"overlay" | "small" |
|
|
|
10312
10490
|
cx: (...args: any) => string;
|
|
10313
10491
|
};
|
|
10314
10492
|
|
|
10315
|
-
declare const
|
|
10493
|
+
declare const useClasses_86: (classesProp?: Partial<Record<"root" | "formContainer", string>>, addStatic?: boolean) => {
|
|
10316
10494
|
classes: {
|
|
10317
10495
|
root: string;
|
|
10318
10496
|
formContainer: string;
|
|
@@ -10324,7 +10502,7 @@ declare const useClasses_83: (classesProp?: Partial<Record<"root" | "formContain
|
|
|
10324
10502
|
cx: (...args: any) => string;
|
|
10325
10503
|
};
|
|
10326
10504
|
|
|
10327
|
-
declare const
|
|
10505
|
+
declare const useClasses_87: (classesProp?: Partial<Record<"vertical" | "root" | "selected" | "button", string>>, addStatic?: boolean) => {
|
|
10328
10506
|
classes: {
|
|
10329
10507
|
vertical: string;
|
|
10330
10508
|
root: string;
|
|
@@ -10338,7 +10516,7 @@ declare const useClasses_84: (classesProp?: Partial<Record<"vertical" | "root" |
|
|
|
10338
10516
|
cx: (...args: any) => string;
|
|
10339
10517
|
};
|
|
10340
10518
|
|
|
10341
|
-
declare const
|
|
10519
|
+
declare const useClasses_88: (classesProp?: Partial<Record<"tooltipData" | "tooltipAnchor" | "tooltipAnchorParagraph", string>>, addStatic?: boolean) => {
|
|
10342
10520
|
classes: {
|
|
10343
10521
|
tooltipData: string;
|
|
10344
10522
|
tooltipAnchor: string;
|
|
@@ -10351,7 +10529,7 @@ declare const useClasses_85: (classesProp?: Partial<Record<"tooltipData" | "tool
|
|
|
10351
10529
|
cx: (...args: any) => string;
|
|
10352
10530
|
};
|
|
10353
10531
|
|
|
10354
|
-
declare const
|
|
10532
|
+
declare const useClasses_89: (classesProp?: Partial<Record<"color" | "root" | "title" | "popper" | "separator" | "tooltip" | "values" | "tooltipMulti" | "valuesContainer" | "separatorColor" | "valueWrapper", string>>, addStatic?: boolean) => {
|
|
10355
10533
|
classes: {
|
|
10356
10534
|
color: string;
|
|
10357
10535
|
root: string;
|
|
@@ -10372,9 +10550,11 @@ declare const useClasses_86: (classesProp?: Partial<Record<"color" | "root" | "t
|
|
|
10372
10550
|
cx: (...args: any) => string;
|
|
10373
10551
|
};
|
|
10374
10552
|
|
|
10375
|
-
declare const
|
|
10553
|
+
declare const useClasses_9: (classesProp?: Partial<Record<"root" | "gutter" | "infoDisabled", string>>, addStatic?: boolean) => {
|
|
10376
10554
|
classes: {
|
|
10377
10555
|
root: string;
|
|
10556
|
+
gutter: string;
|
|
10557
|
+
infoDisabled: string;
|
|
10378
10558
|
};
|
|
10379
10559
|
css: {
|
|
10380
10560
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -10383,7 +10563,18 @@ declare const useClasses_87: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
10383
10563
|
cx: (...args: any) => string;
|
|
10384
10564
|
};
|
|
10385
10565
|
|
|
10386
|
-
declare const
|
|
10566
|
+
declare const useClasses_90: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
10567
|
+
classes: {
|
|
10568
|
+
root: string;
|
|
10569
|
+
};
|
|
10570
|
+
css: {
|
|
10571
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
10572
|
+
(...args: CSSInterpolation[]): string;
|
|
10573
|
+
};
|
|
10574
|
+
cx: (...args: any) => string;
|
|
10575
|
+
};
|
|
10576
|
+
|
|
10577
|
+
declare const useClasses_91: (classesProp?: Partial<Record<"root" | "progress" | "progressBar" | "progressBarLabel" | "progressContainer" | "progressDone" | "progressBarContainer" | "progressError", string>>, addStatic?: boolean) => {
|
|
10387
10578
|
classes: {
|
|
10388
10579
|
root: string;
|
|
10389
10580
|
progress: string;
|
|
@@ -10401,7 +10592,7 @@ declare const useClasses_88: (classesProp?: Partial<Record<"root" | "progress" |
|
|
|
10401
10592
|
cx: (...args: any) => string;
|
|
10402
10593
|
};
|
|
10403
10594
|
|
|
10404
|
-
declare const
|
|
10595
|
+
declare const useClasses_92: (classesProp?: Partial<Record<"root" | "topGroup" | "subGroup" | "subRulesContainer" | "topActionButtonContainer" | "createConditionButton" | "createGroupButton" | "removeButton" | "combinator" | "topCombinator" | "combinatorButton" | "topRemoveButton" | "topRemoveButtonDisabled" | "rulesContainer" | "actionButtonContainer" | "topRulesContainer" | "buttonBackground", string>>, addStatic?: boolean) => {
|
|
10405
10596
|
classes: {
|
|
10406
10597
|
root: string;
|
|
10407
10598
|
topGroup: string;
|
|
@@ -10428,20 +10619,7 @@ declare const useClasses_89: (classesProp?: Partial<Record<"root" | "topGroup" |
|
|
|
10428
10619
|
cx: (...args: any) => string;
|
|
10429
10620
|
};
|
|
10430
10621
|
|
|
10431
|
-
declare const
|
|
10432
|
-
classes: {
|
|
10433
|
-
root: string;
|
|
10434
|
-
gutter: string;
|
|
10435
|
-
infoDisabled: string;
|
|
10436
|
-
};
|
|
10437
|
-
css: {
|
|
10438
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
10439
|
-
(...args: CSSInterpolation[]): string;
|
|
10440
|
-
};
|
|
10441
|
-
cx: (...args: any) => string;
|
|
10442
|
-
};
|
|
10443
|
-
|
|
10444
|
-
declare const useClasses_90: (classesProp?: Partial<Record<"container" | "label" | "root" | "disabled" | "radio" | "focusVisible" | "invalidContainer" | "invalidRadio", string>>, addStatic?: boolean) => {
|
|
10622
|
+
declare const useClasses_93: (classesProp?: Partial<Record<"container" | "label" | "root" | "disabled" | "radio" | "focusVisible" | "invalidContainer" | "invalidRadio", string>>, addStatic?: boolean) => {
|
|
10445
10623
|
classes: {
|
|
10446
10624
|
container: string;
|
|
10447
10625
|
label: string;
|
|
@@ -10459,7 +10637,7 @@ declare const useClasses_90: (classesProp?: Partial<Record<"container" | "label"
|
|
|
10459
10637
|
cx: (...args: any) => string;
|
|
10460
10638
|
};
|
|
10461
10639
|
|
|
10462
|
-
declare const
|
|
10640
|
+
declare const useClasses_94: (classesProp?: Partial<Record<"root" | "button" | "text" | "notSelected", string>>, addStatic?: boolean) => {
|
|
10463
10641
|
classes: {
|
|
10464
10642
|
root: string;
|
|
10465
10643
|
button: string;
|
|
@@ -10473,7 +10651,7 @@ declare const useClasses_91: (classesProp?: Partial<Record<"root" | "button" | "
|
|
|
10473
10651
|
cx: (...args: any) => string;
|
|
10474
10652
|
};
|
|
10475
10653
|
|
|
10476
|
-
declare const
|
|
10654
|
+
declare const useClasses_95: (classesProp?: Partial<Record<"root" | "positionFixed" | "positionAbsolute", string>>, addStatic?: boolean) => {
|
|
10477
10655
|
classes: {
|
|
10478
10656
|
root: string;
|
|
10479
10657
|
positionFixed: string;
|
|
@@ -10486,7 +10664,7 @@ declare const useClasses_92: (classesProp?: Partial<Record<"root" | "positionFix
|
|
|
10486
10664
|
cx: (...args: any) => string;
|
|
10487
10665
|
};
|
|
10488
10666
|
|
|
10489
|
-
declare const
|
|
10667
|
+
declare const useClasses_96: (classesProp?: Partial<Record<"root" | "selected" | "button" | "text", string>>, addStatic?: boolean) => {
|
|
10490
10668
|
classes: {
|
|
10491
10669
|
root: string;
|
|
10492
10670
|
selected: string;
|
|
@@ -10500,7 +10678,7 @@ declare const useClasses_93: (classesProp?: Partial<Record<"root" | "selected" |
|
|
|
10500
10678
|
cx: (...args: any) => string;
|
|
10501
10679
|
};
|
|
10502
10680
|
|
|
10503
|
-
declare const
|
|
10681
|
+
declare const useClasses_97: (classesProp?: Partial<Record<"root" | "selected" | "notSelected" | "notSelectedRoot" | "positionSticky" | "positionFixed", string>>, addStatic?: boolean) => {
|
|
10504
10682
|
classes: {
|
|
10505
10683
|
root: string;
|
|
10506
10684
|
selected: string;
|
|
@@ -10516,7 +10694,7 @@ declare const useClasses_94: (classesProp?: Partial<Record<"root" | "selected" |
|
|
|
10516
10694
|
cx: (...args: any) => string;
|
|
10517
10695
|
};
|
|
10518
10696
|
|
|
10519
|
-
declare const
|
|
10697
|
+
declare const useClasses_98: (classesProp?: Partial<Record<"content" | "header" | "root" | "hidden" | "actions" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
|
|
10520
10698
|
classes: {
|
|
10521
10699
|
content: string;
|
|
10522
10700
|
header: string;
|
|
@@ -10533,74 +10711,9 @@ declare const useClasses_95: (classesProp?: Partial<Record<"content" | "header"
|
|
|
10533
10711
|
cx: (...args: any) => string;
|
|
10534
10712
|
};
|
|
10535
10713
|
|
|
10536
|
-
declare const
|
|
10537
|
-
classes: {
|
|
10538
|
-
root: string;
|
|
10539
|
-
};
|
|
10540
|
-
css: {
|
|
10541
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
10542
|
-
(...args: CSSInterpolation[]): string;
|
|
10543
|
-
};
|
|
10544
|
-
cx: (...args: any) => string;
|
|
10545
|
-
};
|
|
10546
|
-
|
|
10547
|
-
declare const useClasses_97: (classesProp?: Partial<Record<"label" | "root" | "trackDragging" | "trackStandBy" | "handleContainer" | "error" | "rootDisabled" | "labelContainer" | "sliderBase" | "sliderContainer" | "sliderRoot" | "rootRange" | "handle" | "handleContainerDisabled" | "handleHiddenContainer" | "labelIncluded" | "onlyInput" | "sliderTooltip", string>>, addStatic?: boolean) => {
|
|
10714
|
+
declare const useClasses_99: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
10548
10715
|
classes: {
|
|
10549
|
-
label: string;
|
|
10550
10716
|
root: string;
|
|
10551
|
-
trackDragging: string;
|
|
10552
|
-
trackStandBy: string;
|
|
10553
|
-
handleContainer: string;
|
|
10554
|
-
error: string;
|
|
10555
|
-
rootDisabled: string;
|
|
10556
|
-
labelContainer: string;
|
|
10557
|
-
sliderBase: string;
|
|
10558
|
-
sliderContainer: string;
|
|
10559
|
-
sliderRoot: string;
|
|
10560
|
-
rootRange: string;
|
|
10561
|
-
handle: string;
|
|
10562
|
-
handleContainerDisabled: string;
|
|
10563
|
-
handleHiddenContainer: string;
|
|
10564
|
-
labelIncluded: string;
|
|
10565
|
-
onlyInput: string;
|
|
10566
|
-
sliderTooltip: string;
|
|
10567
|
-
};
|
|
10568
|
-
css: {
|
|
10569
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
10570
|
-
(...args: CSSInterpolation[]): string;
|
|
10571
|
-
};
|
|
10572
|
-
cx: (...args: any) => string;
|
|
10573
|
-
};
|
|
10574
|
-
|
|
10575
|
-
declare const useClasses_98: (classesProp?: Partial<Record<"root" | "anchorOriginTopCenter" | "anchorOriginBottomCenter" | "anchorOriginTopRight" | "anchorOriginBottomRight" | "anchorOriginTopLeft" | "anchorOriginBottomLeft", string>>, addStatic?: boolean) => {
|
|
10576
|
-
classes: {
|
|
10577
|
-
root: string;
|
|
10578
|
-
anchorOriginTopCenter: string;
|
|
10579
|
-
anchorOriginBottomCenter: string;
|
|
10580
|
-
anchorOriginTopRight: string;
|
|
10581
|
-
anchorOriginBottomRight: string;
|
|
10582
|
-
anchorOriginTopLeft: string;
|
|
10583
|
-
anchorOriginBottomLeft: string;
|
|
10584
|
-
};
|
|
10585
|
-
css: {
|
|
10586
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
10587
|
-
(...args: CSSInterpolation[]): string;
|
|
10588
|
-
};
|
|
10589
|
-
cx: (...args: any) => string;
|
|
10590
|
-
};
|
|
10591
|
-
|
|
10592
|
-
declare const useClasses_99: (classesProp?: Partial<Record<"warning" | "root" | "action" | "default" | "error" | "message" | "success" | "messageSpan" | "messageText" | "iconVariant", string>>, addStatic?: boolean) => {
|
|
10593
|
-
classes: {
|
|
10594
|
-
warning: string;
|
|
10595
|
-
root: string;
|
|
10596
|
-
action: string;
|
|
10597
|
-
default: string;
|
|
10598
|
-
error: string;
|
|
10599
|
-
message: string;
|
|
10600
|
-
success: string;
|
|
10601
|
-
messageSpan: string;
|
|
10602
|
-
messageText: string;
|
|
10603
|
-
iconVariant: string;
|
|
10604
10717
|
};
|
|
10605
10718
|
css: {
|
|
10606
10719
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|