@hitachivantara/uikit-react-core 5.100.0 → 5.100.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/Header/Navigation/MenuBar/Bar.cjs +1 -2
- package/dist/cjs/Header/Navigation/MenuBar/Bar.styles.cjs +2 -2
- package/dist/cjs/StatusIcon/StatusIcon.styles.cjs +1 -1
- package/dist/cjs/Tag/Tag.cjs +9 -1
- package/dist/cjs/themes/ds3.cjs +0 -3
- package/dist/cjs/themes/ds5.cjs +14 -14
- package/dist/cjs/themes/pentahoPlus.cjs +1 -2
- package/dist/esm/Header/Navigation/MenuBar/Bar.js +1 -2
- package/dist/esm/Header/Navigation/MenuBar/Bar.styles.js +2 -2
- package/dist/esm/StatusIcon/StatusIcon.styles.js +1 -1
- package/dist/esm/Tag/Tag.js +10 -2
- package/dist/esm/themes/ds3.js +0 -3
- package/dist/esm/themes/ds5.js +14 -14
- package/dist/esm/themes/pentahoPlus.js +1 -2
- package/dist/types/index.d.ts +73 -73
- package/package.json +5 -5
|
@@ -7,7 +7,6 @@ const SelectionContext = require("../utils/SelectionContext.cjs");
|
|
|
7
7
|
const Bar_styles = require("./Bar.styles.cjs");
|
|
8
8
|
const Bar = (props) => {
|
|
9
9
|
const {
|
|
10
|
-
id,
|
|
11
10
|
data = [],
|
|
12
11
|
type = "menubar",
|
|
13
12
|
className,
|
|
@@ -30,7 +29,7 @@ const Bar = (props) => {
|
|
|
30
29
|
},
|
|
31
30
|
className
|
|
32
31
|
),
|
|
33
|
-
children: /* @__PURE__ */ jsxRuntime.jsx("ul", { className: classes.list,
|
|
32
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("ul", { className: classes.list, onFocus: () => {
|
|
34
33
|
}, children })
|
|
35
34
|
}
|
|
36
35
|
);
|
|
@@ -4,14 +4,14 @@ const uikitReactUtils = require("@hitachivantara/uikit-react-utils");
|
|
|
4
4
|
const uikitStyles = require("@hitachivantara/uikit-styles");
|
|
5
5
|
const show = {
|
|
6
6
|
top: uikitStyles.theme.header.height,
|
|
7
|
-
|
|
7
|
+
transitionProperty: "top",
|
|
8
8
|
boxShadow: uikitStyles.theme.colors.shadow,
|
|
9
9
|
transitionDuration: "500ms",
|
|
10
10
|
backgroundColor: uikitStyles.theme.colors.bgPage
|
|
11
11
|
};
|
|
12
12
|
const hide = {
|
|
13
13
|
top: 0,
|
|
14
|
-
|
|
14
|
+
transitionProperty: "top",
|
|
15
15
|
boxShadow: "none",
|
|
16
16
|
transitionDuration: "300ms"
|
|
17
17
|
};
|
|
@@ -41,7 +41,7 @@ const { staticClasses, useClasses } = uikitReactUtils.createClasses("HvStatusIco
|
|
|
41
41
|
),
|
|
42
42
|
[`&[data-variant="default"]`]: {
|
|
43
43
|
color: uikitStyles.theme.colors.text,
|
|
44
|
-
backgroundColor: uikitStyles.theme.colors.
|
|
44
|
+
backgroundColor: uikitStyles.theme.colors.bgPage,
|
|
45
45
|
outline: `1px solid ${uikitStyles.theme.colors.borderSubtle}`,
|
|
46
46
|
[`&[data-type="simple"]`]: {
|
|
47
47
|
outline: "none",
|
package/dist/cjs/Tag/Tag.cjs
CHANGED
|
@@ -11,6 +11,12 @@ const keyboardUtils = require("../utils/keyboardUtils.cjs");
|
|
|
11
11
|
const Tag_styles = require("./Tag.styles.cjs");
|
|
12
12
|
const ButtonBase = require("../ButtonBase/ButtonBase.cjs");
|
|
13
13
|
const Typography = require("../Typography/Typography.cjs");
|
|
14
|
+
const colorMap = {
|
|
15
|
+
positive_20: "positive",
|
|
16
|
+
negative_20: "negative",
|
|
17
|
+
warning_20: "warning",
|
|
18
|
+
neutral_20: "info"
|
|
19
|
+
};
|
|
14
20
|
const HvTag = React.forwardRef(function HvTag2(props, ref) {
|
|
15
21
|
const {
|
|
16
22
|
classes: classesProp,
|
|
@@ -26,7 +32,7 @@ const HvTag = React.forwardRef(function HvTag2(props, ref) {
|
|
|
26
32
|
selected,
|
|
27
33
|
defaultSelected = false,
|
|
28
34
|
showSelectIcon = selectable,
|
|
29
|
-
color,
|
|
35
|
+
color: colorProp,
|
|
30
36
|
icon: iconProp,
|
|
31
37
|
deleteIcon: deleteIconProp,
|
|
32
38
|
onDelete,
|
|
@@ -38,6 +44,7 @@ const HvTag = React.forwardRef(function HvTag2(props, ref) {
|
|
|
38
44
|
...others
|
|
39
45
|
} = uikitReactUtils.useDefaultProps("HvTag", props);
|
|
40
46
|
const { classes, cx } = Tag_styles.useClasses(classesProp);
|
|
47
|
+
const { activeTheme } = uikitReactUtils.useTheme();
|
|
41
48
|
const [isSelected, setIsSelected] = useControlled.useControlled(
|
|
42
49
|
selected,
|
|
43
50
|
Boolean(defaultSelected)
|
|
@@ -46,6 +53,7 @@ const HvTag = React.forwardRef(function HvTag2(props, ref) {
|
|
|
46
53
|
event.stopPropagation();
|
|
47
54
|
onDelete?.(event);
|
|
48
55
|
};
|
|
56
|
+
const color = activeTheme?.name === "pentahoPlus" && colorMap[colorProp] || colorProp;
|
|
49
57
|
const tagColor = (
|
|
50
58
|
// backwards-compatibility for `type` prop
|
|
51
59
|
type === "categorical" && uikitStyles.theme.alpha(color || "cat1", 0.2) || // use the palette color if it matches
|
package/dist/cjs/themes/ds3.cjs
CHANGED
|
@@ -1153,9 +1153,6 @@ const ds3 = uikitStyles.mergeTheme(uikitStyles.ds3, {
|
|
|
1153
1153
|
"& button&.HvMultiButton-button&.HvMultiButton-selected": {
|
|
1154
1154
|
height: 32
|
|
1155
1155
|
}
|
|
1156
|
-
},
|
|
1157
|
-
splitDisabled: {
|
|
1158
|
-
backgroundColor: uikitStyles.theme.colors.atmo3
|
|
1159
1156
|
}
|
|
1160
1157
|
}
|
|
1161
1158
|
},
|
package/dist/cjs/themes/ds5.cjs
CHANGED
|
@@ -46,33 +46,33 @@ const ds5 = uikitStyles.mergeTheme(uikitStyles.ds5, {
|
|
|
46
46
|
classes: {
|
|
47
47
|
root: {
|
|
48
48
|
":where(:not(.HvButton-disabled,.HvButton-contained))": {
|
|
49
|
-
"&[data-color=warning]": { color: uikitStyles.theme.colors.
|
|
49
|
+
"&[data-color=warning]": { color: uikitStyles.theme.colors.warningDeep }
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
contained: {
|
|
53
53
|
":where([data-color=primary]:not(.HvButton-disabled))": {
|
|
54
54
|
":hover, &:focus-visible": {
|
|
55
|
-
backgroundColor: uikitStyles.theme.colors.
|
|
56
|
-
borderColor: uikitStyles.theme.colors.
|
|
55
|
+
backgroundColor: uikitStyles.theme.colors.primaryStrong,
|
|
56
|
+
borderColor: uikitStyles.theme.colors.primaryStrong
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
":where([data-color=positive]:not(.HvButton-disabled))": {
|
|
60
60
|
":hover, &:focus-visible": {
|
|
61
|
-
backgroundColor: uikitStyles.theme.colors.
|
|
62
|
-
borderColor: uikitStyles.theme.colors.
|
|
61
|
+
backgroundColor: uikitStyles.theme.colors.positiveStrong,
|
|
62
|
+
borderColor: uikitStyles.theme.colors.positiveStrong
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
65
|
":where([data-color=warning]:not(.HvButton-disabled))": {
|
|
66
|
-
backgroundColor: uikitStyles.theme.colors.
|
|
66
|
+
backgroundColor: uikitStyles.theme.colors.warningStrong,
|
|
67
67
|
":hover, &:focus-visible": {
|
|
68
|
-
backgroundColor: uikitStyles.theme.colors.
|
|
69
|
-
borderColor: uikitStyles.theme.colors.
|
|
68
|
+
backgroundColor: uikitStyles.theme.colors.warningDeep,
|
|
69
|
+
borderColor: uikitStyles.theme.colors.warningDeep
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
72
|
":where([data-color=negative]:not(.HvButton-disabled))": {
|
|
73
73
|
":hover, &:focus-visible": {
|
|
74
|
-
backgroundColor: uikitStyles.theme.colors.
|
|
75
|
-
borderColor: uikitStyles.theme.colors.
|
|
74
|
+
backgroundColor: uikitStyles.theme.colors.negativeStrong,
|
|
75
|
+
borderColor: uikitStyles.theme.colors.negativeStrong
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
}
|
|
@@ -105,10 +105,10 @@ const ds5 = uikitStyles.mergeTheme(uikitStyles.ds5, {
|
|
|
105
105
|
splitGroup: {
|
|
106
106
|
// NEXT5 subtle multi-buttons have a custom background
|
|
107
107
|
"& .HvButton-subtle": {
|
|
108
|
-
backgroundColor: uikitStyles.theme.colors.
|
|
108
|
+
backgroundColor: uikitStyles.theme.colors.bgContainer
|
|
109
109
|
},
|
|
110
110
|
"&& .HvButton-disabled": {
|
|
111
|
-
backgroundColor: uikitStyles.theme.colors.
|
|
111
|
+
backgroundColor: uikitStyles.theme.colors.bgDisabled
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
}
|
|
@@ -133,7 +133,7 @@ const ds5 = uikitStyles.mergeTheme(uikitStyles.ds5, {
|
|
|
133
133
|
classes: {
|
|
134
134
|
root: {
|
|
135
135
|
"&.HvTab-selected": {
|
|
136
|
-
color: uikitStyles.theme.colors.
|
|
136
|
+
color: uikitStyles.theme.colors.text
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
139
|
}
|
|
@@ -155,7 +155,7 @@ const ds5 = uikitStyles.mergeTheme(uikitStyles.ds5, {
|
|
|
155
155
|
padding: 0
|
|
156
156
|
},
|
|
157
157
|
"& .HvIconContainer-root": {
|
|
158
|
-
color: `${uikitStyles.theme.colors.
|
|
158
|
+
color: `${uikitStyles.theme.colors.text}!important`
|
|
159
159
|
}
|
|
160
160
|
}
|
|
161
161
|
}
|
|
@@ -186,7 +186,6 @@ const pentahoPlus = uikitStyles.mergeTheme(uikitStyles.pentahoPlus, {
|
|
|
186
186
|
classes: {
|
|
187
187
|
content: {
|
|
188
188
|
backgroundColor: uikitStyles.theme.colors.bgPage
|
|
189
|
-
// = bgContainerSecondary
|
|
190
189
|
}
|
|
191
190
|
}
|
|
192
191
|
},
|
|
@@ -394,7 +393,7 @@ const pentahoPlus = uikitStyles.mergeTheme(uikitStyles.pentahoPlus, {
|
|
|
394
393
|
},
|
|
395
394
|
"&[data-color=secondary]": {
|
|
396
395
|
borderColor: uikitStyles.theme.colors.border,
|
|
397
|
-
backgroundColor: uikitStyles.theme.colors.
|
|
396
|
+
backgroundColor: uikitStyles.theme.colors.bgPage
|
|
398
397
|
},
|
|
399
398
|
":hover": {
|
|
400
399
|
backgroundColor: uikitStyles.theme.colors.primaryDimmed
|
|
@@ -6,7 +6,6 @@ import { useClasses } from "./Bar.styles.js";
|
|
|
6
6
|
import { staticClasses } from "./Bar.styles.js";
|
|
7
7
|
const Bar = (props) => {
|
|
8
8
|
const {
|
|
9
|
-
id,
|
|
10
9
|
data = [],
|
|
11
10
|
type = "menubar",
|
|
12
11
|
className,
|
|
@@ -29,7 +28,7 @@ const Bar = (props) => {
|
|
|
29
28
|
},
|
|
30
29
|
className
|
|
31
30
|
),
|
|
32
|
-
children: /* @__PURE__ */ jsx("ul", { className: classes.list,
|
|
31
|
+
children: /* @__PURE__ */ jsx("ul", { className: classes.list, onFocus: () => {
|
|
33
32
|
}, children })
|
|
34
33
|
}
|
|
35
34
|
);
|
|
@@ -2,14 +2,14 @@ import { createClasses } from "@hitachivantara/uikit-react-utils";
|
|
|
2
2
|
import { theme } from "@hitachivantara/uikit-styles";
|
|
3
3
|
const show = {
|
|
4
4
|
top: theme.header.height,
|
|
5
|
-
|
|
5
|
+
transitionProperty: "top",
|
|
6
6
|
boxShadow: theme.colors.shadow,
|
|
7
7
|
transitionDuration: "500ms",
|
|
8
8
|
backgroundColor: theme.colors.bgPage
|
|
9
9
|
};
|
|
10
10
|
const hide = {
|
|
11
11
|
top: 0,
|
|
12
|
-
|
|
12
|
+
transitionProperty: "top",
|
|
13
13
|
boxShadow: "none",
|
|
14
14
|
transitionDuration: "300ms"
|
|
15
15
|
};
|
|
@@ -39,7 +39,7 @@ const { staticClasses, useClasses } = createClasses("HvStatusIcon", {
|
|
|
39
39
|
),
|
|
40
40
|
[`&[data-variant="default"]`]: {
|
|
41
41
|
color: theme.colors.text,
|
|
42
|
-
backgroundColor: theme.colors.
|
|
42
|
+
backgroundColor: theme.colors.bgPage,
|
|
43
43
|
outline: `1px solid ${theme.colors.borderSubtle}`,
|
|
44
44
|
[`&[data-type="simple"]`]: {
|
|
45
45
|
outline: "none",
|
package/dist/esm/Tag/Tag.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef, isValidElement, cloneElement } from "react";
|
|
3
|
-
import { useDefaultProps, mergeStyles } from "@hitachivantara/uikit-react-utils";
|
|
3
|
+
import { useDefaultProps, useTheme, mergeStyles } from "@hitachivantara/uikit-react-utils";
|
|
4
4
|
import { theme, getColor } from "@hitachivantara/uikit-styles";
|
|
5
5
|
import { HvCheckBoxIcon } from "../BaseCheckBox/CheckBoxIcon.js";
|
|
6
6
|
import { useControlled } from "../hooks/useControlled.js";
|
|
@@ -10,6 +10,12 @@ import { useClasses } from "./Tag.styles.js";
|
|
|
10
10
|
import { staticClasses } from "./Tag.styles.js";
|
|
11
11
|
import { HvButtonBase } from "../ButtonBase/ButtonBase.js";
|
|
12
12
|
import { HvTypography } from "../Typography/Typography.js";
|
|
13
|
+
const colorMap = {
|
|
14
|
+
positive_20: "positive",
|
|
15
|
+
negative_20: "negative",
|
|
16
|
+
warning_20: "warning",
|
|
17
|
+
neutral_20: "info"
|
|
18
|
+
};
|
|
13
19
|
const HvTag = forwardRef(function HvTag2(props, ref) {
|
|
14
20
|
const {
|
|
15
21
|
classes: classesProp,
|
|
@@ -25,7 +31,7 @@ const HvTag = forwardRef(function HvTag2(props, ref) {
|
|
|
25
31
|
selected,
|
|
26
32
|
defaultSelected = false,
|
|
27
33
|
showSelectIcon = selectable,
|
|
28
|
-
color,
|
|
34
|
+
color: colorProp,
|
|
29
35
|
icon: iconProp,
|
|
30
36
|
deleteIcon: deleteIconProp,
|
|
31
37
|
onDelete,
|
|
@@ -37,6 +43,7 @@ const HvTag = forwardRef(function HvTag2(props, ref) {
|
|
|
37
43
|
...others
|
|
38
44
|
} = useDefaultProps("HvTag", props);
|
|
39
45
|
const { classes, cx } = useClasses(classesProp);
|
|
46
|
+
const { activeTheme } = useTheme();
|
|
40
47
|
const [isSelected, setIsSelected] = useControlled(
|
|
41
48
|
selected,
|
|
42
49
|
Boolean(defaultSelected)
|
|
@@ -45,6 +52,7 @@ const HvTag = forwardRef(function HvTag2(props, ref) {
|
|
|
45
52
|
event.stopPropagation();
|
|
46
53
|
onDelete?.(event);
|
|
47
54
|
};
|
|
55
|
+
const color = activeTheme?.name === "pentahoPlus" && colorMap[colorProp] || colorProp;
|
|
48
56
|
const tagColor = (
|
|
49
57
|
// backwards-compatibility for `type` prop
|
|
50
58
|
type === "categorical" && theme.alpha(color || "cat1", 0.2) || // use the palette color if it matches
|
package/dist/esm/themes/ds3.js
CHANGED
package/dist/esm/themes/ds5.js
CHANGED
|
@@ -44,33 +44,33 @@ const ds5 = mergeTheme(ds5$1, {
|
|
|
44
44
|
classes: {
|
|
45
45
|
root: {
|
|
46
46
|
":where(:not(.HvButton-disabled,.HvButton-contained))": {
|
|
47
|
-
"&[data-color=warning]": { color: theme.colors.
|
|
47
|
+
"&[data-color=warning]": { color: theme.colors.warningDeep }
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
contained: {
|
|
51
51
|
":where([data-color=primary]:not(.HvButton-disabled))": {
|
|
52
52
|
":hover, &:focus-visible": {
|
|
53
|
-
backgroundColor: theme.colors.
|
|
54
|
-
borderColor: theme.colors.
|
|
53
|
+
backgroundColor: theme.colors.primaryStrong,
|
|
54
|
+
borderColor: theme.colors.primaryStrong
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
":where([data-color=positive]:not(.HvButton-disabled))": {
|
|
58
58
|
":hover, &:focus-visible": {
|
|
59
|
-
backgroundColor: theme.colors.
|
|
60
|
-
borderColor: theme.colors.
|
|
59
|
+
backgroundColor: theme.colors.positiveStrong,
|
|
60
|
+
borderColor: theme.colors.positiveStrong
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
":where([data-color=warning]:not(.HvButton-disabled))": {
|
|
64
|
-
backgroundColor: theme.colors.
|
|
64
|
+
backgroundColor: theme.colors.warningStrong,
|
|
65
65
|
":hover, &:focus-visible": {
|
|
66
|
-
backgroundColor: theme.colors.
|
|
67
|
-
borderColor: theme.colors.
|
|
66
|
+
backgroundColor: theme.colors.warningDeep,
|
|
67
|
+
borderColor: theme.colors.warningDeep
|
|
68
68
|
}
|
|
69
69
|
},
|
|
70
70
|
":where([data-color=negative]:not(.HvButton-disabled))": {
|
|
71
71
|
":hover, &:focus-visible": {
|
|
72
|
-
backgroundColor: theme.colors.
|
|
73
|
-
borderColor: theme.colors.
|
|
72
|
+
backgroundColor: theme.colors.negativeStrong,
|
|
73
|
+
borderColor: theme.colors.negativeStrong
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
}
|
|
@@ -103,10 +103,10 @@ const ds5 = mergeTheme(ds5$1, {
|
|
|
103
103
|
splitGroup: {
|
|
104
104
|
// NEXT5 subtle multi-buttons have a custom background
|
|
105
105
|
"& .HvButton-subtle": {
|
|
106
|
-
backgroundColor: theme.colors.
|
|
106
|
+
backgroundColor: theme.colors.bgContainer
|
|
107
107
|
},
|
|
108
108
|
"&& .HvButton-disabled": {
|
|
109
|
-
backgroundColor: theme.colors.
|
|
109
|
+
backgroundColor: theme.colors.bgDisabled
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
}
|
|
@@ -131,7 +131,7 @@ const ds5 = mergeTheme(ds5$1, {
|
|
|
131
131
|
classes: {
|
|
132
132
|
root: {
|
|
133
133
|
"&.HvTab-selected": {
|
|
134
|
-
color: theme.colors.
|
|
134
|
+
color: theme.colors.text
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
137
|
}
|
|
@@ -153,7 +153,7 @@ const ds5 = mergeTheme(ds5$1, {
|
|
|
153
153
|
padding: 0
|
|
154
154
|
},
|
|
155
155
|
"& .HvIconContainer-root": {
|
|
156
|
-
color: `${theme.colors.
|
|
156
|
+
color: `${theme.colors.text}!important`
|
|
157
157
|
}
|
|
158
158
|
}
|
|
159
159
|
}
|
|
@@ -184,7 +184,6 @@ const pentahoPlus = mergeTheme(pentahoPlus$1, {
|
|
|
184
184
|
classes: {
|
|
185
185
|
content: {
|
|
186
186
|
backgroundColor: theme.colors.bgPage
|
|
187
|
-
// = bgContainerSecondary
|
|
188
187
|
}
|
|
189
188
|
}
|
|
190
189
|
},
|
|
@@ -392,7 +391,7 @@ const pentahoPlus = mergeTheme(pentahoPlus$1, {
|
|
|
392
391
|
},
|
|
393
392
|
"&[data-color=secondary]": {
|
|
394
393
|
borderColor: theme.colors.border,
|
|
395
|
-
backgroundColor: theme.colors.
|
|
394
|
+
backgroundColor: theme.colors.bgPage
|
|
396
395
|
},
|
|
397
396
|
":hover": {
|
|
398
397
|
backgroundColor: theme.colors.primaryDimmed
|
package/dist/types/index.d.ts
CHANGED
|
@@ -2025,7 +2025,7 @@ export declare const HvButton: <C extends React.ElementType = "button">(props: {
|
|
|
2025
2025
|
component?: C | undefined;
|
|
2026
2026
|
} & {
|
|
2027
2027
|
children?: ReactNode | undefined;
|
|
2028
|
-
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "
|
|
2028
|
+
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "component" | "className" | "radius" | "selected" | "variant" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "component" | "className" | "radius" | "selected" | "variant" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> ? T extends any ? T : never : never : never) & {
|
|
2029
2029
|
ref?: PolymorphicRef<C> | undefined;
|
|
2030
2030
|
} & RefAttributes<unknown>) => React.ReactElement<any> | null;
|
|
2031
2031
|
|
|
@@ -4031,7 +4031,7 @@ export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof useC
|
|
|
4031
4031
|
* As defined by Design System, a tooltip with the button’s label should always be displayed when hovering an icon only button.
|
|
4032
4032
|
* This component provides this behavior out of the box.
|
|
4033
4033
|
*/
|
|
4034
|
-
export declare const HvIconButton: <C extends React.ElementType = "button">(props: Omit<HvButtonProps<C>, "children" | "ref" | "icon" | "title" | "component" | "
|
|
4034
|
+
export declare const HvIconButton: <C extends React.ElementType = "button">(props: Omit<HvButtonProps<C>, "children" | "ref" | "icon" | "title" | "component" | "focusableWhenDisabled" | "startIcon" | "endIcon"> & {
|
|
4035
4035
|
/** Label to be displayed in the tooltip when hovered. This label will be used as the button's `aria-label`. */
|
|
4036
4036
|
title: React.ReactNode;
|
|
4037
4037
|
/** Number of milliseconds to wait before showing the tooltip. @default 500 */
|
|
@@ -4044,7 +4044,7 @@ export declare const HvIconButton: <C extends React.ElementType = "button">(prop
|
|
|
4044
4044
|
component?: C | undefined;
|
|
4045
4045
|
} & {
|
|
4046
4046
|
children?: ReactNode | undefined;
|
|
4047
|
-
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "disabled" | "
|
|
4047
|
+
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "disabled" | "title" | "component" | "className" | "radius" | "selected" | "variant" | "placement" | "enterDelay" | "overrideIconColors" | "tooltipProps" | Exclude<keyof (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "component" | "className" | "radius" | "selected" | "variant" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "component" | "className" | "radius" | "selected" | "variant" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> ? T extends any ? T : never : never : never), "children" | "ref" | "icon" | "title" | "component" | "focusableWhenDisabled" | "startIcon" | "endIcon">> extends infer T_1 ? T_1 extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "disabled" | "title" | "component" | "className" | "radius" | "selected" | "variant" | "placement" | "enterDelay" | "overrideIconColors" | "tooltipProps" | Exclude<keyof (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "component" | "className" | "radius" | "selected" | "variant" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T_2 ? T_2 extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "component" | "className" | "radius" | "selected" | "variant" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> ? T_2 extends any ? T_2 : never : never : never), "children" | "ref" | "icon" | "title" | "component" | "focusableWhenDisabled" | "startIcon" | "endIcon">> ? T_1 extends any ? T_1 : never : never : never) & {
|
|
4048
4048
|
ref?: PolymorphicRef<C> | undefined;
|
|
4049
4049
|
} & RefAttributes<unknown>) => React.ReactElement<any> | null;
|
|
4050
4050
|
|
|
@@ -4159,7 +4159,7 @@ export declare const HvInlineEditor: <C extends React.ElementType = <InputElemen
|
|
|
4159
4159
|
component?: C | undefined;
|
|
4160
4160
|
} & {
|
|
4161
4161
|
children?: ReactNode | undefined;
|
|
4162
|
-
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "disabled" | "component" | "onBlur" | "onChange" | "onKeyDown" | "defaultValue" | "placeholder" | "variant" | "
|
|
4162
|
+
} & (Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "disabled" | "component" | "onBlur" | "onChange" | "onKeyDown" | "defaultValue" | "placeholder" | "variant" | "showIcon" | "buttonProps" | "typographyProps"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "disabled" | "component" | "onBlur" | "onChange" | "onKeyDown" | "defaultValue" | "placeholder" | "variant" | "showIcon" | "buttonProps" | "typographyProps"> ? T extends any ? T : never : never : never) & {
|
|
4163
4163
|
ref?: PolymorphicRef<C> | undefined;
|
|
4164
4164
|
} & RefAttributes<unknown>) => React.ReactElement<any> | null;
|
|
4165
4165
|
|
|
@@ -8399,7 +8399,7 @@ declare const useClasses_10: (classesProp?: Partial<Record<"root" | "labelDisabl
|
|
|
8399
8399
|
readonly cx: (...args: any) => string;
|
|
8400
8400
|
};
|
|
8401
8401
|
|
|
8402
|
-
declare const useClasses_100: (classesProp?: Partial<Record<"
|
|
8402
|
+
declare const useClasses_100: (classesProp?: Partial<Record<"selected" | "root" | "positionSticky" | "positionFixed" | "notSelectedRoot" | "notSelected", string>>, addStatic?: boolean) => {
|
|
8403
8403
|
readonly classes: {
|
|
8404
8404
|
root: string;
|
|
8405
8405
|
positionSticky: string;
|
|
@@ -8434,7 +8434,7 @@ declare const useClasses_102: (classesProp?: Partial<Record<"root" | "positionFi
|
|
|
8434
8434
|
readonly cx: (...args: any) => string;
|
|
8435
8435
|
};
|
|
8436
8436
|
|
|
8437
|
-
declare const useClasses_103: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "
|
|
8437
|
+
declare const useClasses_103: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "actions" | "headerExpandable" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
|
|
8438
8438
|
readonly classes: {
|
|
8439
8439
|
root: string;
|
|
8440
8440
|
hidden: string;
|
|
@@ -8458,7 +8458,7 @@ declare const useClasses_104: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8458
8458
|
readonly cx: (...args: any) => string;
|
|
8459
8459
|
};
|
|
8460
8460
|
|
|
8461
|
-
declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "error" | "
|
|
8461
|
+
declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "error" | "rootDisabled" | "labelContainer" | "sliderBase" | "sliderContainer" | "trackDragging" | "trackStandBy" | "sliderRoot" | "rootRange" | "handleContainer" | "handle" | "handleContainerDisabled" | "handleHiddenContainer" | "labelIncluded" | "onlyInput" | "sliderTooltip", string>>, addStatic?: boolean) => {
|
|
8462
8462
|
readonly classes: {
|
|
8463
8463
|
sliderBase: string;
|
|
8464
8464
|
rootDisabled: string;
|
|
@@ -8483,7 +8483,7 @@ declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "
|
|
|
8483
8483
|
readonly cx: (...args: any) => string;
|
|
8484
8484
|
};
|
|
8485
8485
|
|
|
8486
|
-
declare const useClasses_106: (classesProp?: Partial<Record<"root" | "
|
|
8486
|
+
declare const useClasses_106: (classesProp?: Partial<Record<"root" | "anchorOriginTopRight" | "anchorOriginTopLeft" | "anchorOriginTopCenter" | "anchorOriginBottomCenter" | "anchorOriginBottomLeft" | "anchorOriginBottomRight", string>>, addStatic?: boolean) => {
|
|
8487
8487
|
readonly classes: {
|
|
8488
8488
|
root: string;
|
|
8489
8489
|
anchorOriginTopRight: string;
|
|
@@ -8497,7 +8497,7 @@ declare const useClasses_106: (classesProp?: Partial<Record<"root" | "anchorOrig
|
|
|
8497
8497
|
readonly cx: (...args: any) => string;
|
|
8498
8498
|
};
|
|
8499
8499
|
|
|
8500
|
-
declare const useClasses_107: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "
|
|
8500
|
+
declare const useClasses_107: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "action" | "root" | "error" | "success" | "message" | "messageText" | "iconVariant" | "messageSpan", string>>, addStatic?: boolean) => {
|
|
8501
8501
|
readonly classes: {
|
|
8502
8502
|
root: string;
|
|
8503
8503
|
success: string;
|
|
@@ -8579,7 +8579,7 @@ declare const useClasses_112: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8579
8579
|
readonly cx: (...args: any) => string;
|
|
8580
8580
|
};
|
|
8581
8581
|
|
|
8582
|
-
declare const useClasses_113: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "
|
|
8582
|
+
declare const useClasses_113: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
|
|
8583
8583
|
readonly classes: {
|
|
8584
8584
|
root: string;
|
|
8585
8585
|
header: string;
|
|
@@ -8611,7 +8611,7 @@ declare const useClasses_115: (classesProp?: Partial<Record<"root" | "stickyHead
|
|
|
8611
8611
|
readonly cx: (...args: any) => string;
|
|
8612
8612
|
};
|
|
8613
8613
|
|
|
8614
|
-
declare const useClasses_116: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "label" | "button" | "icon" | "disabled" | "
|
|
8614
|
+
declare const useClasses_116: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "label" | "button" | "icon" | "disabled" | "selected" | "root" | "focusVisible" | "hasIcon" | "outlined" | "categorical" | "deleteIcon" | "clickable" | "chipRoot" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
|
|
8615
8615
|
readonly classes: {
|
|
8616
8616
|
root: string;
|
|
8617
8617
|
hasIcon: string;
|
|
@@ -8638,7 +8638,7 @@ declare const useClasses_116: (classesProp?: Partial<Record<"xs" | "sm" | "md" |
|
|
|
8638
8638
|
readonly cx: (...args: any) => string;
|
|
8639
8639
|
};
|
|
8640
8640
|
|
|
8641
|
-
declare const useClasses_117: (classesProp?: Partial<Record<"root" | "
|
|
8641
|
+
declare const useClasses_117: (classesProp?: Partial<Record<"root" | "indicator" | "scroller" | "flexContainer" | "floating", string>>, addStatic?: boolean) => {
|
|
8642
8642
|
readonly classes: {
|
|
8643
8643
|
root: string;
|
|
8644
8644
|
indicator: string;
|
|
@@ -8650,7 +8650,7 @@ declare const useClasses_117: (classesProp?: Partial<Record<"root" | "floating"
|
|
|
8650
8650
|
readonly cx: (...args: any) => string;
|
|
8651
8651
|
};
|
|
8652
8652
|
|
|
8653
|
-
declare const useClasses_118: (classesProp?: Partial<Record<"disabled" | "
|
|
8653
|
+
declare const useClasses_118: (classesProp?: Partial<Record<"disabled" | "selected" | "root" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
8654
8654
|
readonly classes: {
|
|
8655
8655
|
root: string;
|
|
8656
8656
|
focusVisible: string;
|
|
@@ -8661,7 +8661,7 @@ declare const useClasses_118: (classesProp?: Partial<Record<"disabled" | "root"
|
|
|
8661
8661
|
readonly cx: (...args: any) => string;
|
|
8662
8662
|
};
|
|
8663
8663
|
|
|
8664
|
-
declare const useClasses_119: (classesProp?: Partial<Record<"label" | "disabled" | "
|
|
8664
|
+
declare const useClasses_119: (classesProp?: Partial<Record<"label" | "disabled" | "input" | "readOnly" | "root" | "error" | "description" | "invalid" | "resizable" | "labelContainer" | "suggestionsContainer" | "suggestionList" | "inputExtension" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagsList" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty" | "singleLine", string>>, addStatic?: boolean) => {
|
|
8665
8665
|
readonly classes: {
|
|
8666
8666
|
listItemGutters: string;
|
|
8667
8667
|
listItemRoot: string;
|
|
@@ -8707,7 +8707,7 @@ declare const useClasses_12: (classesProp?: Partial<Record<"show" | "root" | "de
|
|
|
8707
8707
|
readonly cx: (...args: any) => string;
|
|
8708
8708
|
};
|
|
8709
8709
|
|
|
8710
|
-
declare const useClasses_120: (classesProp?: Partial<Record<"label" | "disabled" | "
|
|
8710
|
+
declare const useClasses_120: (classesProp?: Partial<Record<"label" | "disabled" | "input" | "root" | "error" | "description" | "invalid" | "resizable" | "inputResizable" | "labelContainer" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
|
|
8711
8711
|
readonly classes: {
|
|
8712
8712
|
root: string;
|
|
8713
8713
|
disabled: string;
|
|
@@ -8734,7 +8734,7 @@ declare const useClasses_121: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8734
8734
|
readonly cx: (...args: any) => string;
|
|
8735
8735
|
};
|
|
8736
8736
|
|
|
8737
|
-
declare const useClasses_122: (classesProp?: Partial<Record<"label" | "icon" | "
|
|
8737
|
+
declare const useClasses_122: (classesProp?: Partial<Record<"label" | "icon" | "placeholder" | "root" | "error" | "description" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
|
|
8738
8738
|
readonly classes: {
|
|
8739
8739
|
root: string;
|
|
8740
8740
|
labelContainer: string;
|
|
@@ -8762,7 +8762,7 @@ declare const useClasses_123: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8762
8762
|
readonly cx: (...args: any) => string;
|
|
8763
8763
|
};
|
|
8764
8764
|
|
|
8765
|
-
declare const useClasses_124: (classesProp?: Partial<Record<"content" | "label" | "expanded" | "disabled" | "
|
|
8765
|
+
declare const useClasses_124: (classesProp?: Partial<Record<"content" | "label" | "expanded" | "disabled" | "selected" | "root" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
|
|
8766
8766
|
readonly classes: {
|
|
8767
8767
|
root: string;
|
|
8768
8768
|
group: string;
|
|
@@ -8778,7 +8778,7 @@ declare const useClasses_124: (classesProp?: Partial<Record<"content" | "label"
|
|
|
8778
8778
|
readonly cx: (...args: any) => string;
|
|
8779
8779
|
};
|
|
8780
8780
|
|
|
8781
|
-
declare const useClasses_125: (classesProp?: Partial<Record<"label" | "expanded" | "disabled" | "
|
|
8781
|
+
declare const useClasses_125: (classesProp?: Partial<Record<"label" | "expanded" | "disabled" | "selected" | "root" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
|
|
8782
8782
|
readonly classes: {
|
|
8783
8783
|
root: string;
|
|
8784
8784
|
expanded: string;
|
|
@@ -8803,7 +8803,7 @@ declare const useClasses_126: (classesProp?: Partial<Record<"root" | "slider" |
|
|
|
8803
8803
|
readonly cx: (...args: any) => string;
|
|
8804
8804
|
};
|
|
8805
8805
|
|
|
8806
|
-
declare const useClasses_127: (classesProp?: Partial<Record<"
|
|
8806
|
+
declare const useClasses_127: (classesProp?: Partial<Record<"title" | "root" | "backButton" | "minimized" | "collapseButton", string>>, addStatic?: boolean) => {
|
|
8807
8807
|
readonly classes: {
|
|
8808
8808
|
root: string;
|
|
8809
8809
|
minimized: string;
|
|
@@ -8834,7 +8834,7 @@ declare const useClasses_129: (classesProp?: Partial<Record<"action" | "minimize
|
|
|
8834
8834
|
readonly cx: (...args: any) => string;
|
|
8835
8835
|
};
|
|
8836
8836
|
|
|
8837
|
-
declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled" | "
|
|
8837
|
+
declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled" | "select" | "readOnly" | "root" | "error" | "description" | "invalid" | "panel" | "panelOpenedUp" | "panelOpenedDown" | "popper" | "labelContainer", string>>, addStatic?: boolean) => {
|
|
8838
8838
|
readonly classes: {
|
|
8839
8839
|
root: string;
|
|
8840
8840
|
disabled: string;
|
|
@@ -8854,7 +8854,7 @@ declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled"
|
|
|
8854
8854
|
readonly cx: (...args: any) => string;
|
|
8855
8855
|
};
|
|
8856
8856
|
|
|
8857
|
-
declare const useClasses_130: (classesProp?: Partial<Record<"
|
|
8857
|
+
declare const useClasses_130: (classesProp?: Partial<Record<"list" | "root" | "popup" | "listItem" | "collapsed" | "navigationPopup", string>>, addStatic?: boolean) => {
|
|
8858
8858
|
readonly classes: {
|
|
8859
8859
|
root: string;
|
|
8860
8860
|
list: string;
|
|
@@ -8867,7 +8867,7 @@ declare const useClasses_130: (classesProp?: Partial<Record<"root" | "list" | "p
|
|
|
8867
8867
|
readonly cx: (...args: any) => string;
|
|
8868
8868
|
};
|
|
8869
8869
|
|
|
8870
|
-
declare const useClasses_131: (classesProp?: Partial<Record<"root" | "
|
|
8870
|
+
declare const useClasses_131: (classesProp?: Partial<Record<"root" | "listContainer" | "listItemSelected" | "listItemFocus" | "forwardButton" | "listItemDisabled", string>>, addStatic?: boolean) => {
|
|
8871
8871
|
readonly classes: {
|
|
8872
8872
|
root: string;
|
|
8873
8873
|
listItemSelected: string;
|
|
@@ -8888,7 +8888,7 @@ declare const useClasses_132: (classesProp?: Partial<Record<"root", string>>, ad
|
|
|
8888
8888
|
readonly cx: (...args: any) => string;
|
|
8889
8889
|
};
|
|
8890
8890
|
|
|
8891
|
-
declare const useClasses_133: (classesProp?: Partial<Record<"hide" | "content" | "label" | "link" | "expanded" | "icon" | "disabled" | "unselectable" | "selected" | "group" | "
|
|
8891
|
+
declare const useClasses_133: (classesProp?: Partial<Record<"hide" | "content" | "label" | "link" | "expanded" | "icon" | "disabled" | "unselectable" | "selected" | "group" | "focused" | "selectable" | "node" | "expandable" | "labelIcon" | "collapsed" | "minimized" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
|
|
8892
8892
|
readonly classes: {
|
|
8893
8893
|
node: string;
|
|
8894
8894
|
content: string;
|
|
@@ -8928,7 +8928,7 @@ declare const useClasses_134: (classesProp?: Partial<Record<"text" | "circle" |
|
|
|
8928
8928
|
readonly cx: (...args: any) => string;
|
|
8929
8929
|
};
|
|
8930
8930
|
|
|
8931
|
-
declare const useClasses_14: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "semantic" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "icon" | "disabled" | "root" | "
|
|
8931
|
+
declare const useClasses_14: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "semantic" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "icon" | "disabled" | "root" | "focusVisible" | "startIcon" | "endIcon" | "contained" | "subtle" | "ghost", string>>, addStatic?: boolean) => {
|
|
8932
8932
|
readonly classes: {
|
|
8933
8933
|
root: string;
|
|
8934
8934
|
startIcon: string;
|
|
@@ -8968,7 +8968,7 @@ declare const useClasses_16: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
8968
8968
|
readonly cx: (...args: any) => string;
|
|
8969
8969
|
};
|
|
8970
8970
|
|
|
8971
|
-
declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "listbox" | "root" | "
|
|
8971
|
+
declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "listbox" | "root" | "error" | "description" | "invalid", string>>, addStatic?: boolean) => {
|
|
8972
8972
|
readonly classes: {
|
|
8973
8973
|
root: string;
|
|
8974
8974
|
error: string;
|
|
@@ -8983,7 +8983,7 @@ declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizon
|
|
|
8983
8983
|
readonly cx: (...args: any) => string;
|
|
8984
8984
|
};
|
|
8985
8985
|
|
|
8986
|
-
declare const useClasses_18: (classesProp?: Partial<Record<"
|
|
8986
|
+
declare const useClasses_18: (classesProp?: Partial<Record<"list" | "root" | "popper" | "portal", string>>, addStatic?: boolean) => {
|
|
8987
8987
|
readonly classes: {
|
|
8988
8988
|
root: string;
|
|
8989
8989
|
list: string;
|
|
@@ -8994,7 +8994,7 @@ declare const useClasses_18: (classesProp?: Partial<Record<"root" | "popper" | "
|
|
|
8994
8994
|
readonly cx: (...args: any) => string;
|
|
8995
8995
|
};
|
|
8996
8996
|
|
|
8997
|
-
declare const useClasses_19: (classesProp?: Partial<Record<"disabled" | "
|
|
8997
|
+
declare const useClasses_19: (classesProp?: Partial<Record<"disabled" | "input" | "readOnly" | "root" | "invalid" | "multiline" | "resizable" | "focused" | "inputBorderContainer" | "inputRootInvalid" | "inputRootReadOnly" | "inputRoot" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "inputDisabled" | "inputReadOnly" | "inputResizable", string>>, addStatic?: boolean) => {
|
|
8998
8998
|
readonly classes: {
|
|
8999
8999
|
root: string;
|
|
9000
9000
|
disabled: string;
|
|
@@ -9060,7 +9060,7 @@ declare const useClasses_2: (classesProp?: Partial<Record<"display" | "title1" |
|
|
|
9060
9060
|
readonly cx: (...args: any) => string;
|
|
9061
9061
|
};
|
|
9062
9062
|
|
|
9063
|
-
declare const useClasses_20: (classesProp?: Partial<Record<"container" | "header" | "anchor" | "
|
|
9063
|
+
declare const useClasses_20: (classesProp?: Partial<Record<"container" | "header" | "anchor" | "placeholder" | "root" | "rootDisabled" | "headerOpen" | "headerOpenUp" | "headerOpenDown" | "headerDisabled" | "headerReadOnly" | "arrowContainer" | "arrow" | "selection" | "selectionDisabled" | "panel" | "panelOpenedUp" | "panelOpenedDown" | "inputExtensionOpen" | "inputExtensionLeftPosition" | "inputExtensionOpenShadow" | "inputExtensionFloatRight" | "inputExtensionFloatLeft", string>>, addStatic?: boolean) => {
|
|
9064
9064
|
readonly classes: {
|
|
9065
9065
|
root: string;
|
|
9066
9066
|
rootDisabled: string;
|
|
@@ -9123,7 +9123,7 @@ declare const useClasses_23: (classesProp?: Partial<Record<"button" | "root" | "
|
|
|
9123
9123
|
readonly cx: (...args: any) => string;
|
|
9124
9124
|
};
|
|
9125
9125
|
|
|
9126
|
-
declare const useClasses_24: (classesProp?: Partial<Record<"container" | "icon" | "root" | "
|
|
9126
|
+
declare const useClasses_24: (classesProp?: Partial<Record<"container" | "icon" | "root" | "baseContainer" | "iconSelected" | "menuListRoot" | "menuList", string>>, addStatic?: boolean) => {
|
|
9127
9127
|
readonly classes: {
|
|
9128
9128
|
root: string;
|
|
9129
9129
|
container: string;
|
|
@@ -9137,7 +9137,7 @@ declare const useClasses_24: (classesProp?: Partial<Record<"container" | "icon"
|
|
|
9137
9137
|
readonly cx: (...args: any) => string;
|
|
9138
9138
|
};
|
|
9139
9139
|
|
|
9140
|
-
declare const useClasses_25: (classesProp?: Partial<Record<"open" | "single" | "
|
|
9140
|
+
declare const useClasses_25: (classesProp?: Partial<Record<"open" | "single" | "title" | "root" | "item" | "actionsContainer" | "titleAnchor" | "itemSelected" | "itemDisabled" | "itemTrigger" | "itemIcon" | "itemTitle" | "itemInfoIcon" | "footerContainer" | "closed" | "dual" | "fluid", string>>, addStatic?: boolean) => {
|
|
9141
9141
|
readonly classes: {
|
|
9142
9142
|
root: string;
|
|
9143
9143
|
item: string;
|
|
@@ -9161,7 +9161,7 @@ declare const useClasses_25: (classesProp?: Partial<Record<"open" | "single" | "
|
|
|
9161
9161
|
readonly cx: (...args: any) => string;
|
|
9162
9162
|
};
|
|
9163
9163
|
|
|
9164
|
-
declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "icon" | "disabled" | "
|
|
9164
|
+
declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "icon" | "disabled" | "title" | "selected" | "root" | "iconUrl" | "iconInfo" | "titleAnchor", string>>, addStatic?: boolean) => {
|
|
9165
9165
|
readonly classes: {
|
|
9166
9166
|
root: string;
|
|
9167
9167
|
icon: string;
|
|
@@ -9177,7 +9177,7 @@ declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "icon"
|
|
|
9177
9177
|
readonly cx: (...args: any) => string;
|
|
9178
9178
|
};
|
|
9179
9179
|
|
|
9180
|
-
declare const useClasses_27: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "container" | "square" | "
|
|
9180
|
+
declare const useClasses_27: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "container" | "square" | "img" | "root" | "status" | "avatar" | "fallback" | "badge" | "circular", string>>, addStatic?: boolean) => {
|
|
9181
9181
|
readonly classes: {
|
|
9182
9182
|
root: string;
|
|
9183
9183
|
img: string;
|
|
@@ -9210,7 +9210,7 @@ declare const useClasses_28: (classesProp?: Partial<Record<"column" | "row" | "r
|
|
|
9210
9210
|
readonly cx: (...args: any) => string;
|
|
9211
9211
|
};
|
|
9212
9212
|
|
|
9213
|
-
declare const useClasses_29: (classesProp?: Partial<Record<"root" | "
|
|
9213
|
+
declare const useClasses_29: (classesProp?: Partial<Record<"root" | "badge" | "badgeContainer" | "badgePosition" | "badgeHidden" | "showCount" | "showLabel" | "badgeIcon" | "badgeOneDigit", string>>, addStatic?: boolean) => {
|
|
9214
9214
|
readonly classes: {
|
|
9215
9215
|
root: string;
|
|
9216
9216
|
badgeContainer: string;
|
|
@@ -9235,7 +9235,7 @@ declare const useClasses_3: (classesProp?: Partial<Record<"disabled" | "root", s
|
|
|
9235
9235
|
readonly cx: (...args: any) => string;
|
|
9236
9236
|
};
|
|
9237
9237
|
|
|
9238
|
-
declare const useClasses_30: (classesProp?: Partial<Record<"root" | "
|
|
9238
|
+
declare const useClasses_30: (classesProp?: Partial<Record<"root" | "anchorOriginTopCenter" | "anchorOriginBottomCenter" | "rootClosed", string>>, addStatic?: boolean) => {
|
|
9239
9239
|
readonly classes: {
|
|
9240
9240
|
rootClosed: string;
|
|
9241
9241
|
root: string;
|
|
@@ -9246,7 +9246,7 @@ declare const useClasses_30: (classesProp?: Partial<Record<"root" | "rootClosed"
|
|
|
9246
9246
|
readonly cx: (...args: any) => string;
|
|
9247
9247
|
};
|
|
9248
9248
|
|
|
9249
|
-
declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "
|
|
9249
|
+
declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "action" | "root" | "error" | "success" | "actionContainer" | "message" | "iconContainer" | "messageContainer" | "messageActions" | "closeAction" | "baseVariant" | "outContainer" | "actionsInnerContainer", string>>, addStatic?: boolean) => {
|
|
9250
9250
|
readonly classes: {
|
|
9251
9251
|
root: string;
|
|
9252
9252
|
success: string;
|
|
@@ -9270,7 +9270,7 @@ declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning"
|
|
|
9270
9270
|
readonly cx: (...args: any) => string;
|
|
9271
9271
|
};
|
|
9272
9272
|
|
|
9273
|
-
declare const useClasses_32: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "
|
|
9273
|
+
declare const useClasses_32: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "checked" | "root" | "focusVisible" | "indeterminate", string>>, addStatic?: boolean) => {
|
|
9274
9274
|
readonly classes: {
|
|
9275
9275
|
root: string;
|
|
9276
9276
|
disabled: string;
|
|
@@ -9284,7 +9284,7 @@ declare const useClasses_32: (classesProp?: Partial<Record<"semantic" | "icon" |
|
|
|
9284
9284
|
readonly cx: (...args: any) => string;
|
|
9285
9285
|
};
|
|
9286
9286
|
|
|
9287
|
-
declare const useClasses_33: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "
|
|
9287
|
+
declare const useClasses_33: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "checked" | "root" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
9288
9288
|
readonly classes: {
|
|
9289
9289
|
root: string;
|
|
9290
9290
|
disabled: string;
|
|
@@ -9297,7 +9297,7 @@ declare const useClasses_33: (classesProp?: Partial<Record<"semantic" | "icon" |
|
|
|
9297
9297
|
readonly cx: (...args: any) => string;
|
|
9298
9298
|
};
|
|
9299
9299
|
|
|
9300
|
-
declare const useClasses_34: (classesProp?: Partial<Record<"disabled" | "
|
|
9300
|
+
declare const useClasses_34: (classesProp?: Partial<Record<"disabled" | "track" | "switch" | "readOnly" | "checked" | "root" | "focusVisible" | "switchBase" | "thumb", string>>, addStatic?: boolean) => {
|
|
9301
9301
|
readonly classes: {
|
|
9302
9302
|
root: string;
|
|
9303
9303
|
switch: string;
|
|
@@ -9313,7 +9313,7 @@ declare const useClasses_34: (classesProp?: Partial<Record<"disabled" | "root" |
|
|
|
9313
9313
|
readonly cx: (...args: any) => string;
|
|
9314
9314
|
};
|
|
9315
9315
|
|
|
9316
|
-
declare const useClasses_35: (classesProp?: Partial<Record<"link" | "
|
|
9316
|
+
declare const useClasses_35: (classesProp?: Partial<Record<"link" | "a" | "root" | "currentPage" | "orderedList" | "centerContainer" | "separatorContainer", string>>, addStatic?: boolean) => {
|
|
9317
9317
|
readonly classes: {
|
|
9318
9318
|
root: string;
|
|
9319
9319
|
link: string;
|
|
@@ -9327,7 +9327,7 @@ declare const useClasses_35: (classesProp?: Partial<Record<"link" | "root" | "a"
|
|
|
9327
9327
|
readonly cx: (...args: any) => string;
|
|
9328
9328
|
};
|
|
9329
9329
|
|
|
9330
|
-
declare const useClasses_36: (classesProp?: Partial<Record<"semantic" | "root" | "
|
|
9330
|
+
declare const useClasses_36: (classesProp?: Partial<Record<"semantic" | "root" | "selectAll" | "actions" | "selectAllContainer" | "selectAllPages" | "divider", string>>, addStatic?: boolean) => {
|
|
9331
9331
|
readonly classes: {
|
|
9332
9332
|
root: string;
|
|
9333
9333
|
semantic: string;
|
|
@@ -9341,7 +9341,7 @@ declare const useClasses_36: (classesProp?: Partial<Record<"semantic" | "root" |
|
|
|
9341
9341
|
readonly cx: (...args: any) => string;
|
|
9342
9342
|
};
|
|
9343
9343
|
|
|
9344
|
-
declare const useClasses_37: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "checkbox" | "disabled" | "
|
|
9344
|
+
declare const useClasses_37: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "checkbox" | "disabled" | "checked" | "root" | "focusVisible" | "indeterminate" | "invalidContainer" | "invalidCheckbox", string>>, addStatic?: boolean) => {
|
|
9345
9345
|
readonly classes: {
|
|
9346
9346
|
root: string;
|
|
9347
9347
|
container: string;
|
|
@@ -9382,7 +9382,7 @@ declare const useClasses_39: (classesProp?: Partial<Record<"root" | "invalid" |
|
|
|
9382
9382
|
readonly cx: (...args: any) => string;
|
|
9383
9383
|
};
|
|
9384
9384
|
|
|
9385
|
-
declare const useClasses_4: (classesProp?: Partial<Record<"disabled" | "
|
|
9385
|
+
declare const useClasses_4: (classesProp?: Partial<Record<"disabled" | "selected" | "root" | "focus" | "focused" | "focusDisabled", string>>, addStatic?: boolean) => {
|
|
9386
9386
|
readonly classes: {
|
|
9387
9387
|
root: string;
|
|
9388
9388
|
selected: string;
|
|
@@ -9418,7 +9418,7 @@ declare const useClasses_40: (classesProp?: Partial<Record<"root" | "focusSelect
|
|
|
9418
9418
|
readonly cx: (...args: any) => string;
|
|
9419
9419
|
};
|
|
9420
9420
|
|
|
9421
|
-
declare const useClasses_41: (classesProp?: Partial<Record<"icon" | "
|
|
9421
|
+
declare const useClasses_41: (classesProp?: Partial<Record<"icon" | "selected" | "root" | "selectable" | "semanticContainer" | "semanticBar", string>>, addStatic?: boolean) => {
|
|
9422
9422
|
readonly classes: {
|
|
9423
9423
|
root: string;
|
|
9424
9424
|
selected: string;
|
|
@@ -9431,7 +9431,7 @@ declare const useClasses_41: (classesProp?: Partial<Record<"icon" | "root" | "se
|
|
|
9431
9431
|
readonly cx: (...args: any) => string;
|
|
9432
9432
|
};
|
|
9433
9433
|
|
|
9434
|
-
declare const useClasses_42: (classesProp?: Partial<Record<"content" | "
|
|
9434
|
+
declare const useClasses_42: (classesProp?: Partial<Record<"content" | "title" | "action" | "root" | "titleShort" | "subheader", string>>, addStatic?: boolean) => {
|
|
9435
9435
|
readonly classes: {
|
|
9436
9436
|
root: string;
|
|
9437
9437
|
titleShort: string;
|
|
@@ -9452,7 +9452,7 @@ declare const useClasses_43: (classesProp?: Partial<Record<"content", string>>,
|
|
|
9452
9452
|
readonly cx: (...args: any) => string;
|
|
9453
9453
|
};
|
|
9454
9454
|
|
|
9455
|
-
declare const useClasses_44: (classesProp?: Partial<Record<"
|
|
9455
|
+
declare const useClasses_44: (classesProp?: Partial<Record<"media" | "root", string>>, addStatic?: boolean) => {
|
|
9456
9456
|
readonly classes: {
|
|
9457
9457
|
root: string;
|
|
9458
9458
|
media: string;
|
|
@@ -9461,7 +9461,7 @@ declare const useClasses_44: (classesProp?: Partial<Record<"root" | "media", str
|
|
|
9461
9461
|
readonly cx: (...args: any) => string;
|
|
9462
9462
|
};
|
|
9463
9463
|
|
|
9464
|
-
declare const useClasses_45: (classesProp?: Partial<Record<"xs" | "dot" | "
|
|
9464
|
+
declare const useClasses_45: (classesProp?: Partial<Record<"xs" | "dot" | "main" | "title" | "controls" | "root" | "panel" | "counter" | "actions" | "fullscreen" | "closeButton" | "mainContainer" | "pageCounter" | "mainXs" | "mainFullscreen" | "counterContainer" | "slideControls" | "slidesViewport" | "slidesContainer" | "dots" | "dotsXs" | "dotSelected" | "thumbnail" | "thumbnailSelected", string>>, addStatic?: boolean) => {
|
|
9465
9465
|
readonly classes: {
|
|
9466
9466
|
root: string;
|
|
9467
9467
|
xs: string;
|
|
@@ -9501,7 +9501,7 @@ declare const useClasses_46: (classesProp?: Partial<Record<"image" | "slide", st
|
|
|
9501
9501
|
readonly cx: (...args: any) => string;
|
|
9502
9502
|
};
|
|
9503
9503
|
|
|
9504
|
-
declare const useClasses_47: (classesProp?: Partial<Record<"label" | "icon" | "
|
|
9504
|
+
declare const useClasses_47: (classesProp?: Partial<Record<"label" | "icon" | "input" | "root" | "error" | "description" | "adornmentButton" | "inputBorderContainer" | "inputRoot" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "labelContainer" | "adornmentsBox" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList" | "inputExtension", string>>, addStatic?: boolean) => {
|
|
9505
9505
|
readonly classes: {
|
|
9506
9506
|
root: string;
|
|
9507
9507
|
labelContainer: string;
|
|
@@ -9527,7 +9527,7 @@ declare const useClasses_47: (classesProp?: Partial<Record<"label" | "icon" | "r
|
|
|
9527
9527
|
readonly cx: (...args: any) => string;
|
|
9528
9528
|
};
|
|
9529
9529
|
|
|
9530
|
-
declare const useClasses_48: (classesProp?: Partial<Record<"icon" | "root" | "
|
|
9530
|
+
declare const useClasses_48: (classesProp?: Partial<Record<"icon" | "root" | "pageSizeOptions" | "pageSizeHeader" | "pageSizeRoot" | "pageSizeTextContainer" | "totalPagesTextContainer" | "pageSizeOptionsSelect" | "pageNavigator" | "iconContainer" | "pageInfo" | "pageJump" | "pageSizeInput" | "pageSizeInputRoot" | "pageSizeInputContainer", string>>, addStatic?: boolean) => {
|
|
9531
9531
|
readonly classes: {
|
|
9532
9532
|
root: string;
|
|
9533
9533
|
pageSizeOptions: string;
|
|
@@ -9572,7 +9572,7 @@ declare const useClasses_5: (classesProp?: Partial<Record<"root", string>>, addS
|
|
|
9572
9572
|
readonly cx: (...args: any) => string;
|
|
9573
9573
|
};
|
|
9574
9574
|
|
|
9575
|
-
declare const useClasses_50: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "
|
|
9575
|
+
declare const useClasses_50: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "description" | "panel" | "labelContainer" | "headerColorValue" | "headerColorIcon" | "colorPickerIcon" | "recommendedColorsRoot" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
|
|
9576
9576
|
readonly classes: {
|
|
9577
9577
|
root: string;
|
|
9578
9578
|
labelContainer: string;
|
|
@@ -9607,7 +9607,7 @@ declare const useClasses_51: (classesProp?: Partial<Record<"fixed" | "root" | "d
|
|
|
9607
9607
|
readonly cx: (...args: any) => string;
|
|
9608
9608
|
};
|
|
9609
9609
|
|
|
9610
|
-
declare const useClasses_52: (classesProp?: Partial<Record<"
|
|
9610
|
+
declare const useClasses_52: (classesProp?: Partial<Record<"section" | "root" | "rightSection" | "leftSection", string>>, addStatic?: boolean) => {
|
|
9611
9611
|
readonly classes: {
|
|
9612
9612
|
root: string;
|
|
9613
9613
|
section: string;
|
|
@@ -9618,7 +9618,7 @@ declare const useClasses_52: (classesProp?: Partial<Record<"root" | "section" |
|
|
|
9618
9618
|
readonly cx: (...args: any) => string;
|
|
9619
9619
|
};
|
|
9620
9620
|
|
|
9621
|
-
declare const useClasses_53: (classesProp?: Partial<Record<"body" | "
|
|
9621
|
+
declare const useClasses_53: (classesProp?: Partial<Record<"body" | "footer" | "head" | "root" | "resizable" | "sorted" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "variantList" | "variantListHead" | "variantListactions" | "variantListcheckbox" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing", string>>, addStatic?: boolean) => {
|
|
9622
9622
|
readonly classes: {
|
|
9623
9623
|
root: string;
|
|
9624
9624
|
head: string;
|
|
@@ -9649,7 +9649,7 @@ declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "fo
|
|
|
9649
9649
|
readonly cx: (...args: any) => string;
|
|
9650
9650
|
};
|
|
9651
9651
|
|
|
9652
|
-
declare const useClasses_54: (classesProp?: Partial<Record<"body" | "expanded" | "
|
|
9652
|
+
declare const useClasses_54: (classesProp?: Partial<Record<"body" | "expanded" | "footer" | "head" | "selected" | "root" | "variantList" | "variantListHead" | "striped" | "hover", string>>, addStatic?: boolean) => {
|
|
9653
9653
|
readonly classes: {
|
|
9654
9654
|
root: string;
|
|
9655
9655
|
head: string;
|
|
@@ -9666,7 +9666,7 @@ declare const useClasses_54: (classesProp?: Partial<Record<"body" | "expanded" |
|
|
|
9666
9666
|
readonly cx: (...args: any) => string;
|
|
9667
9667
|
};
|
|
9668
9668
|
|
|
9669
|
-
declare const useClasses_55: (classesProp?: Partial<Record<"body" | "resizer" | "
|
|
9669
|
+
declare const useClasses_55: (classesProp?: Partial<Record<"body" | "resizer" | "footer" | "head" | "root" | "resizable" | "sorted" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "variantList" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing" | "headerContent" | "headerText" | "headerParagraph" | "sortableHeaderText" | "sortable" | "sortButton" | "sortIcon" | "alignFlexLeft" | "alignFlexRight" | "alignFlexCenter" | "alignFlexJustify", string>>, addStatic?: boolean) => {
|
|
9670
9670
|
readonly classes: {
|
|
9671
9671
|
root: string;
|
|
9672
9672
|
head: string;
|
|
@@ -9734,7 +9734,7 @@ declare const useClasses_58: (classesProp?: Partial<Record<"root" | "sortDropdow
|
|
|
9734
9734
|
readonly cx: (...args: any) => string;
|
|
9735
9735
|
};
|
|
9736
9736
|
|
|
9737
|
-
declare const useClasses_59: (classesProp?: Partial<Record<"dropdown" | "label" | "disabled" | "
|
|
9737
|
+
declare const useClasses_59: (classesProp?: Partial<Record<"dropdown" | "label" | "disabled" | "placeholder" | "readOnly" | "root" | "error" | "description" | "arrow" | "selectionDisabled" | "labelContainer" | "placeholderClosed" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "dropdownListContainer" | "rootList", string>>, addStatic?: boolean) => {
|
|
9738
9738
|
readonly classes: {
|
|
9739
9739
|
root: string;
|
|
9740
9740
|
labelContainer: string;
|
|
@@ -9758,7 +9758,7 @@ declare const useClasses_59: (classesProp?: Partial<Record<"dropdown" | "label"
|
|
|
9758
9758
|
readonly cx: (...args: any) => string;
|
|
9759
9759
|
};
|
|
9760
9760
|
|
|
9761
|
-
declare const useClasses_6: (classesProp?: Partial<Record<"condensed" | "disabled" | "
|
|
9761
|
+
declare const useClasses_6: (classesProp?: Partial<Record<"condensed" | "disabled" | "selected" | "root" | "focus" | "endAdornment" | "startAdornment" | "interactive" | "gutters" | "withStartAdornment" | "withEndAdornment", string>>, addStatic?: boolean) => {
|
|
9762
9762
|
readonly classes: {
|
|
9763
9763
|
root: string;
|
|
9764
9764
|
focus: string;
|
|
@@ -9776,7 +9776,7 @@ declare const useClasses_6: (classesProp?: Partial<Record<"condensed" | "disable
|
|
|
9776
9776
|
readonly cx: (...args: any) => string;
|
|
9777
9777
|
};
|
|
9778
9778
|
|
|
9779
|
-
declare const useClasses_60: (classesProp?: Partial<Record<"
|
|
9779
|
+
declare const useClasses_60: (classesProp?: Partial<Record<"virtualized" | "selectAll" | "dropdownListContainer" | "rootList" | "searchContainer" | "listBorderDown" | "listContainer", string>>, addStatic?: boolean) => {
|
|
9780
9780
|
readonly classes: {
|
|
9781
9781
|
rootList: string;
|
|
9782
9782
|
dropdownListContainer: string;
|
|
@@ -9790,7 +9790,7 @@ declare const useClasses_60: (classesProp?: Partial<Record<"listContainer" | "vi
|
|
|
9790
9790
|
readonly cx: (...args: any) => string;
|
|
9791
9791
|
};
|
|
9792
9792
|
|
|
9793
|
-
declare const useClasses_61: (classesProp?: Partial<Record<"dropdown" | "container" | "label" | "icon" | "
|
|
9793
|
+
declare const useClasses_61: (classesProp?: Partial<Record<"dropdown" | "container" | "label" | "icon" | "action" | "root" | "error" | "description" | "panel" | "actionContainer" | "labelContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "leftContainer" | "rightContainer" | "inputText" | "dateText", string>>, addStatic?: boolean) => {
|
|
9794
9794
|
readonly classes: {
|
|
9795
9795
|
root: string;
|
|
9796
9796
|
actionContainer: string;
|
|
@@ -9814,7 +9814,7 @@ declare const useClasses_61: (classesProp?: Partial<Record<"dropdown" | "contain
|
|
|
9814
9814
|
readonly cx: (...args: any) => string;
|
|
9815
9815
|
};
|
|
9816
9816
|
|
|
9817
|
-
declare const useClasses_62: (classesProp?: Partial<Record<"root" | "
|
|
9817
|
+
declare const useClasses_62: (classesProp?: Partial<Record<"root" | "fullscreen" | "messageContainer" | "textWithIcon" | "titleText", string>>, addStatic?: boolean) => {
|
|
9818
9818
|
readonly classes: {
|
|
9819
9819
|
root: string;
|
|
9820
9820
|
fullscreen: string;
|
|
@@ -9835,7 +9835,7 @@ declare const useClasses_63: (classesProp?: Partial<Record<"root" | "textContent
|
|
|
9835
9835
|
readonly cx: (...args: any) => string;
|
|
9836
9836
|
};
|
|
9837
9837
|
|
|
9838
|
-
declare const useClasses_64: (classesProp?: Partial<Record<"
|
|
9838
|
+
declare const useClasses_64: (classesProp?: Partial<Record<"spacing" | "root" | "fullscreen", string>>, addStatic?: boolean) => {
|
|
9839
9839
|
readonly classes: {
|
|
9840
9840
|
root: string;
|
|
9841
9841
|
fullscreen: string;
|
|
@@ -9845,7 +9845,7 @@ declare const useClasses_64: (classesProp?: Partial<Record<"root" | "spacing" |
|
|
|
9845
9845
|
readonly cx: (...args: any) => string;
|
|
9846
9846
|
};
|
|
9847
9847
|
|
|
9848
|
-
declare const useClasses_65: (classesProp?: Partial<Record<"warning" | "background" | "root" | "error" | "success" | "
|
|
9848
|
+
declare const useClasses_65: (classesProp?: Partial<Record<"warning" | "background" | "root" | "error" | "success" | "fullscreen" | "closeButton" | "paper" | "fullHeight" | "statusBar", string>>, addStatic?: boolean) => {
|
|
9849
9849
|
readonly classes: {
|
|
9850
9850
|
root: string;
|
|
9851
9851
|
background: string;
|
|
@@ -9888,7 +9888,7 @@ declare const useClasses_67: (classesProp?: Partial<Record<"vertical" | "horizon
|
|
|
9888
9888
|
readonly cx: (...args: any) => string;
|
|
9889
9889
|
};
|
|
9890
9890
|
|
|
9891
|
-
declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root" | "
|
|
9891
|
+
declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root" | "closeButton" | "paper", string>>, addStatic?: boolean) => {
|
|
9892
9892
|
readonly classes: {
|
|
9893
9893
|
root: string;
|
|
9894
9894
|
paper: string;
|
|
@@ -9899,7 +9899,7 @@ declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root"
|
|
|
9899
9899
|
readonly cx: (...args: any) => string;
|
|
9900
9900
|
};
|
|
9901
9901
|
|
|
9902
|
-
declare const useClasses_69: (classesProp?: Partial<Record<"container" | "root" | "actionContainer" | "
|
|
9902
|
+
declare const useClasses_69: (classesProp?: Partial<Record<"container" | "root" | "actionContainer" | "iconContainer" | "messageContainer" | "containerMessageOnly" | "titleContainer" | "textContainer", string>>, addStatic?: boolean) => {
|
|
9903
9903
|
readonly classes: {
|
|
9904
9904
|
root: string;
|
|
9905
9905
|
container: string;
|
|
@@ -9977,7 +9977,7 @@ declare const useClasses_73: (classesProp?: Partial<Record<"dropZoneContainer" |
|
|
|
9977
9977
|
readonly cx: (...args: any) => string;
|
|
9978
9978
|
};
|
|
9979
9979
|
|
|
9980
|
-
declare const useClasses_74: (classesProp?: Partial<Record<"label" | "root" | "
|
|
9980
|
+
declare const useClasses_74: (classesProp?: Partial<Record<"label" | "root" | "error" | "description" | "labelContainer", string>>, addStatic?: boolean) => {
|
|
9981
9981
|
readonly classes: {
|
|
9982
9982
|
root: string;
|
|
9983
9983
|
label: string;
|
|
@@ -10019,7 +10019,7 @@ declare const useClasses_76: (classesProp?: Partial<Record<"name" | "small" | "s
|
|
|
10019
10019
|
readonly cx: (...args: any) => string;
|
|
10020
10020
|
};
|
|
10021
10021
|
|
|
10022
|
-
declare const useClasses_77: (classesProp?: Partial<Record<"name" | "
|
|
10022
|
+
declare const useClasses_77: (classesProp?: Partial<Record<"name" | "section" | "root" | "actions" | "wrapper" | "positionSticky" | "positionFixed" | "global" | "globalSectionArea" | "globalWrapperComplement" | "backButton" | "sectionName", string>>, addStatic?: boolean) => {
|
|
10023
10023
|
readonly classes: {
|
|
10024
10024
|
root: string;
|
|
10025
10025
|
positionSticky: string;
|
|
@@ -10121,7 +10121,7 @@ declare const useClasses_81: (classesProp?: Partial<Record<"separator" | "root"
|
|
|
10121
10121
|
readonly cx: (...args: any) => string;
|
|
10122
10122
|
};
|
|
10123
10123
|
|
|
10124
|
-
declare const useClasses_82: (classesProp?: Partial<Record<"hidden" | "menu" | "menubar" | "active" | "
|
|
10124
|
+
declare const useClasses_82: (classesProp?: Partial<Record<"hidden" | "menu" | "menubar" | "active" | "list" | "root", string>>, addStatic?: boolean) => {
|
|
10125
10125
|
readonly classes: {
|
|
10126
10126
|
root: string;
|
|
10127
10127
|
menu: string;
|
|
@@ -10134,7 +10134,7 @@ declare const useClasses_82: (classesProp?: Partial<Record<"hidden" | "menu" | "
|
|
|
10134
10134
|
readonly cx: (...args: any) => string;
|
|
10135
10135
|
};
|
|
10136
10136
|
|
|
10137
|
-
declare const useClasses_83: (classesProp?: Partial<Record<"link" | "button" | "menu" | "menubar" | "
|
|
10137
|
+
declare const useClasses_83: (classesProp?: Partial<Record<"link" | "button" | "menu" | "menubar" | "selected" | "root" | "item", string>>, addStatic?: boolean) => {
|
|
10138
10138
|
readonly classes: {
|
|
10139
10139
|
root: string;
|
|
10140
10140
|
menu: string;
|
|
@@ -10156,7 +10156,7 @@ declare const useClasses_84: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
10156
10156
|
readonly cx: (...args: any) => string;
|
|
10157
10157
|
};
|
|
10158
10158
|
|
|
10159
|
-
declare const useClasses_85: (classesProp?: Partial<Record<"text" | "button" | "icon" | "
|
|
10159
|
+
declare const useClasses_85: (classesProp?: Partial<Record<"text" | "button" | "icon" | "input" | "root" | "inputBorderContainer" | "inputRoot" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
|
|
10160
10160
|
readonly classes: {
|
|
10161
10161
|
root: string;
|
|
10162
10162
|
inputBorderContainer: string;
|
|
@@ -10215,7 +10215,7 @@ declare const useClasses_88: (classesProp?: Partial<Record<"link" | "root" | "it
|
|
|
10215
10215
|
readonly cx: (...args: any) => string;
|
|
10216
10216
|
};
|
|
10217
10217
|
|
|
10218
|
-
declare const useClasses_89: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "hidden" | "root" | "blur" | "
|
|
10218
|
+
declare const useClasses_89: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "hidden" | "root" | "blur" | "barContainer" | "loadingBar" | "regular" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
|
|
10219
10219
|
readonly classes: {
|
|
10220
10220
|
root: string;
|
|
10221
10221
|
barContainer: string;
|
|
@@ -10241,7 +10241,7 @@ declare const useClasses_9: (classesProp?: Partial<Record<"root", string>>, addS
|
|
|
10241
10241
|
readonly cx: (...args: any) => string;
|
|
10242
10242
|
};
|
|
10243
10243
|
|
|
10244
|
-
declare const useClasses_90: (classesProp?: Partial<Record<"
|
|
10244
|
+
declare const useClasses_90: (classesProp?: Partial<Record<"loading" | "root", string>>, addStatic?: boolean) => {
|
|
10245
10245
|
readonly classes: {
|
|
10246
10246
|
root: string;
|
|
10247
10247
|
loading: string;
|
|
@@ -10259,7 +10259,7 @@ declare const useClasses_91: (classesProp?: Partial<Record<"root" | "formContain
|
|
|
10259
10259
|
readonly cx: (...args: any) => string;
|
|
10260
10260
|
};
|
|
10261
10261
|
|
|
10262
|
-
declare const useClasses_92: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "vertical" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "button" | "multiple" | "
|
|
10262
|
+
declare const useClasses_92: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "vertical" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "button" | "multiple" | "selected" | "root" | "splitGroup" | "splitGroupDisabled" | "firstButton" | "lastButton", string>>, addStatic?: boolean) => {
|
|
10263
10263
|
readonly classes: {
|
|
10264
10264
|
root: string;
|
|
10265
10265
|
multiple: string;
|
|
@@ -10291,7 +10291,7 @@ declare const useClasses_93: (classesProp?: Partial<Record<"tooltipData" | "tool
|
|
|
10291
10291
|
readonly cx: (...args: any) => string;
|
|
10292
10292
|
};
|
|
10293
10293
|
|
|
10294
|
-
declare const useClasses_94: (classesProp?: Partial<Record<"tooltip" | "color" | "values" | "separator" | "
|
|
10294
|
+
declare const useClasses_94: (classesProp?: Partial<Record<"tooltip" | "color" | "values" | "separator" | "title" | "root" | "popper" | "tooltipMulti" | "valuesContainer" | "separatorColor" | "valueWrapper", string>>, addStatic?: boolean) => {
|
|
10295
10295
|
readonly classes: {
|
|
10296
10296
|
root: string;
|
|
10297
10297
|
tooltip: string;
|
|
@@ -10356,7 +10356,7 @@ declare const useClasses_97: (classesProp?: Partial<Record<"root" | "removeButto
|
|
|
10356
10356
|
readonly cx: (...args: any) => string;
|
|
10357
10357
|
};
|
|
10358
10358
|
|
|
10359
|
-
declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "radio" | "disabled" | "
|
|
10359
|
+
declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "radio" | "disabled" | "checked" | "root" | "focusVisible" | "invalidContainer" | "invalidRadio", string>>, addStatic?: boolean) => {
|
|
10360
10360
|
readonly classes: {
|
|
10361
10361
|
root: string;
|
|
10362
10362
|
container: string;
|
|
@@ -10373,7 +10373,7 @@ declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label"
|
|
|
10373
10373
|
readonly cx: (...args: any) => string;
|
|
10374
10374
|
};
|
|
10375
10375
|
|
|
10376
|
-
declare const useClasses_99: (classesProp?: Partial<Record<"text" | "button" | "
|
|
10376
|
+
declare const useClasses_99: (classesProp?: Partial<Record<"text" | "button" | "selected" | "root" | "bullet" | "bulletSelected", string>>, addStatic?: boolean) => {
|
|
10377
10377
|
readonly classes: {
|
|
10378
10378
|
root: string;
|
|
10379
10379
|
button: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitachivantara/uikit-react-core",
|
|
3
|
-
"version": "5.100.
|
|
3
|
+
"version": "5.100.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Hitachi Vantara UI Kit Team",
|
|
6
6
|
"description": "UI Kit Core React components.",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@emotion/cache": "^11.11.0",
|
|
34
34
|
"@emotion/serialize": "^1.1.2",
|
|
35
|
-
"@hitachivantara/uikit-react-shared": "^5.5.
|
|
36
|
-
"@hitachivantara/uikit-react-utils": "^0.2.
|
|
37
|
-
"@hitachivantara/uikit-styles": "^5.50.
|
|
35
|
+
"@hitachivantara/uikit-react-shared": "^5.5.4",
|
|
36
|
+
"@hitachivantara/uikit-react-utils": "^0.2.44",
|
|
37
|
+
"@hitachivantara/uikit-styles": "^5.50.2",
|
|
38
38
|
"@internationalized/date": "^3.2.0",
|
|
39
39
|
"@mui/base": "5.0.0-beta.68",
|
|
40
40
|
"@popperjs/core": "^2.11.8",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"access": "public",
|
|
62
62
|
"directory": "package"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "597165cf787bef63a0f77d391d7333f608269aca",
|
|
65
65
|
"exports": {
|
|
66
66
|
".": {
|
|
67
67
|
"types": "./dist/types/index.d.ts",
|