@itcase/ui 1.9.7 → 1.9.9
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/components/Warning.js +36 -10
- package/dist/components/Warning.js +36 -10
- package/dist/css/styles/bundles.css +1 -0
- package/dist/types/components/Avatar/Avatar.appearance.d.ts +44 -44
- package/dist/types/components/Badge/Badge.appearance.d.ts +55 -55
- package/dist/types/components/Button/Button.appearance.d.ts +55 -55
- package/dist/types/components/Divider/Divider.appearance.d.ts +55 -55
- package/dist/types/components/Label/Label.appearance.d.ts +55 -55
- package/dist/types/components/Loader/Loader.appearance.d.ts +55 -55
- package/dist/types/components/MenuItem/MenuItem.appearance.d.ts +55 -55
- package/dist/types/components/Modal/Modal.appearance.d.ts +55 -55
- package/dist/types/components/Overlay/Overlay.appearance.d.ts +2 -2
- package/dist/types/components/Text/Text.appearance.d.ts +55 -55
- package/dist/types/components/Tile/Tile.appearance.d.ts +36 -36
- package/dist/types/components/Title/Title.appearance.d.ts +57 -57
- package/dist/types/components/Tooltip/Tooltip.appearance.d.ts +37 -37
- package/dist/types/components/Warning/Warning.appearance.d.ts +22 -0
- package/dist/types/components/Warning/appearance/warningShape.d.ts +25 -0
- package/package.json +5 -5
|
@@ -3,22 +3,18 @@
|
|
|
3
3
|
var jsxRuntime = require('react/jsx-runtime');
|
|
4
4
|
var React = require('react');
|
|
5
5
|
var clsx = require('clsx');
|
|
6
|
-
var Icon = require('../../Icon_cjs_NpWSQezS.js');
|
|
7
|
-
var Text = require('../../Text_cjs_BhnGHF2T.js');
|
|
8
6
|
var useAppearanceConfig = require('../hooks/useAppearanceConfig/useAppearanceConfig.js');
|
|
9
7
|
var useDevicePropsGenerator = require('../hooks/useDevicePropsGenerator/useDevicePropsGenerator.js');
|
|
10
8
|
var useStyles = require('../hooks/useStyles/useStyles.js');
|
|
9
|
+
var Icon = require('../../Icon_cjs_NpWSQezS.js');
|
|
10
|
+
var Text = require('../../Text_cjs_BhnGHF2T.js');
|
|
11
11
|
var _default = require('@itcase/icons/default');
|
|
12
|
-
require('react-inlinesvg');
|
|
13
|
-
require('../hoc/urlWithAssetPrefix.js');
|
|
14
|
-
require('@itcase/common');
|
|
15
|
-
require('../context/UrlAssetPrefix.js');
|
|
16
|
-
require('../../Link_cjs_qKXVfU8e.js');
|
|
17
12
|
require('lodash/camelCase');
|
|
18
13
|
require('lodash/castArray');
|
|
19
14
|
require('lodash/upperFirst');
|
|
20
15
|
require('../context/Notifications.js');
|
|
21
16
|
require('uuid');
|
|
17
|
+
require('@itcase/common');
|
|
22
18
|
require('../context/UIContext.js');
|
|
23
19
|
require('../hooks/useMediaQueries/useMediaQueries.js');
|
|
24
20
|
require('react-responsive');
|
|
@@ -26,6 +22,10 @@ require('../utils/setViewportProperty.js');
|
|
|
26
22
|
require('../hooks.js');
|
|
27
23
|
require('../hooks/useStyles/styleAttributes.js');
|
|
28
24
|
require('lodash/maxBy');
|
|
25
|
+
require('react-inlinesvg');
|
|
26
|
+
require('../hoc/urlWithAssetPrefix.js');
|
|
27
|
+
require('../context/UrlAssetPrefix.js');
|
|
28
|
+
require('../../Link_cjs_qKXVfU8e.js');
|
|
29
29
|
|
|
30
30
|
const warningAppearanceAccent = {
|
|
31
31
|
accentMutedPrimary: {
|
|
@@ -96,6 +96,31 @@ const warningAppearanceInfo = {
|
|
|
96
96
|
},
|
|
97
97
|
};
|
|
98
98
|
|
|
99
|
+
const warningAppearanceShape = {
|
|
100
|
+
circular: {
|
|
101
|
+
shape: 'circular',
|
|
102
|
+
},
|
|
103
|
+
rounded: {
|
|
104
|
+
shape: 'rounded',
|
|
105
|
+
},
|
|
106
|
+
roundedXL: {
|
|
107
|
+
shape: 'rounded',
|
|
108
|
+
shapeStrength: '2m',
|
|
109
|
+
},
|
|
110
|
+
roundedL: {
|
|
111
|
+
shape: 'rounded',
|
|
112
|
+
shapeStrength: '1_5m',
|
|
113
|
+
},
|
|
114
|
+
roundedM: {
|
|
115
|
+
shape: 'rounded',
|
|
116
|
+
shapeStrength: '1m',
|
|
117
|
+
},
|
|
118
|
+
roundedS: {
|
|
119
|
+
shape: 'rounded',
|
|
120
|
+
shapeStrength: '0_5m',
|
|
121
|
+
},
|
|
122
|
+
};
|
|
123
|
+
|
|
99
124
|
const warningAppearanceSize = {
|
|
100
125
|
sizeL: {
|
|
101
126
|
size: 'l',
|
|
@@ -151,6 +176,7 @@ const warningAppearance = {
|
|
|
151
176
|
...warningAppearanceInfo,
|
|
152
177
|
...warningAppearanceStyle,
|
|
153
178
|
...warningAppearanceSize,
|
|
179
|
+
...warningAppearanceShape,
|
|
154
180
|
};
|
|
155
181
|
|
|
156
182
|
const warningConfig = {
|
|
@@ -160,14 +186,14 @@ const warningConfig = {
|
|
|
160
186
|
},
|
|
161
187
|
};
|
|
162
188
|
function Warning(props) {
|
|
163
|
-
const {
|
|
189
|
+
const { appearance, className, label, description, isSkeleton } = props;
|
|
164
190
|
const appearanceConfig = useAppearanceConfig.useAppearanceConfig(appearance, warningConfig);
|
|
165
191
|
const propsGenerator = useDevicePropsGenerator.useDevicePropsGenerator(props, appearanceConfig);
|
|
166
|
-
const { fillClass, labelTextColor, labelTextSize, labelTextWeight, descriptionTextColor, descriptionTextSize, borderColorClass, iconAfter, iconAfterFill, iconAfterFillIcon, iconAfterSize, iconAfterSrc, iconBefore, iconBeforeFill, iconBeforeFillIcon, iconBeforeSize, iconBeforeSrc, sizeClass, } = propsGenerator;
|
|
192
|
+
const { fillClass, labelTextColor, labelTextSize, labelTextWeight, descriptionTextColor, descriptionTextSize, borderColorClass, iconAfter, iconAfterFill, iconAfterFillIcon, iconAfterSize, iconAfterSrc, iconBefore, iconBeforeFill, iconBeforeFillIcon, iconBeforeSize, iconBeforeSrc, shapeClass, shapeStrengthClass, sizeClass, } = propsGenerator;
|
|
167
193
|
// @ts-ignore
|
|
168
194
|
const { styles: warningStyles } = useStyles.useStyles(props);
|
|
169
195
|
const [isVisible, setIsVisible] = React.useState(true);
|
|
170
|
-
return (jsxRuntime.jsx(React.Fragment, { children: isVisible && (jsxRuntime.jsxs("div", { className: clsx(className, 'warning', fillClass && `fill_${fillClass}`, sizeClass && `warning_size_${sizeClass}`, borderColorClass && `border-color_${borderColorClass}`,
|
|
196
|
+
return (jsxRuntime.jsx(React.Fragment, { children: isVisible && (jsxRuntime.jsxs("div", { className: clsx(className, 'warning', fillClass && `fill_${fillClass}`, sizeClass && `warning_size_${sizeClass}`, borderColorClass && `border-color_${borderColorClass}`, shapeClass && `shape_${shapeClass}`, shapeStrengthClass && `shape-strength_${shapeStrengthClass}`, isSkeleton && `warning_skeleton`), style: warningStyles, children: [(iconBefore || iconBeforeSrc) && (jsxRuntime.jsx(Icon.Icon, { fill: iconBeforeFill, iconFill: iconBeforeFillIcon, iconSize: iconBeforeSize, imageSrc: iconBeforeSrc, SvgImage: iconBefore })), jsxRuntime.jsxs("div", { className: 'warning__content', children: [label && (jsxRuntime.jsx(Text.Text, { size: labelTextSize, textColor: labelTextColor, textWeight: labelTextWeight, children: label })), description && (jsxRuntime.jsx(Text.Text, { size: descriptionTextSize, textColor: descriptionTextColor, children: description }))] }), (iconAfter || iconAfterSrc) && (jsxRuntime.jsx(Icon.Icon, { fill: iconAfterFill, iconFill: iconAfterFillIcon, iconSize: iconAfterSize, imageSrc: iconAfterSrc, SvgImage: iconAfter, onClick: () => setIsVisible(false) }))] })) }));
|
|
171
197
|
}
|
|
172
198
|
|
|
173
199
|
exports.Warning = Warning;
|
|
@@ -1,22 +1,18 @@
|
|
|
1
1
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
2
2
|
import { useState, Fragment } from 'react';
|
|
3
3
|
import clsx from 'clsx';
|
|
4
|
-
import { I as Icon } from '../Icon_es_CJuX1p1_.js';
|
|
5
|
-
import { T as Text } from '../Text_es_C1kfpokr.js';
|
|
6
4
|
import { useAppearanceConfig } from '../hooks/useAppearanceConfig/useAppearanceConfig.js';
|
|
7
5
|
import { useDevicePropsGenerator } from '../hooks/useDevicePropsGenerator/useDevicePropsGenerator.js';
|
|
8
6
|
import { useStyles } from '../hooks/useStyles/useStyles.js';
|
|
7
|
+
import { I as Icon } from '../Icon_es_CJuX1p1_.js';
|
|
8
|
+
import { T as Text } from '../Text_es_C1kfpokr.js';
|
|
9
9
|
import { icons16 } from '@itcase/icons/default';
|
|
10
|
-
import 'react-inlinesvg';
|
|
11
|
-
import '../hoc/urlWithAssetPrefix.js';
|
|
12
|
-
import '@itcase/common';
|
|
13
|
-
import '../context/UrlAssetPrefix.js';
|
|
14
|
-
import '../Link_es_P2b6ya7P.js';
|
|
15
10
|
import 'lodash/camelCase';
|
|
16
11
|
import 'lodash/castArray';
|
|
17
12
|
import 'lodash/upperFirst';
|
|
18
13
|
import '../context/Notifications.js';
|
|
19
14
|
import 'uuid';
|
|
15
|
+
import '@itcase/common';
|
|
20
16
|
import '../context/UIContext.js';
|
|
21
17
|
import '../hooks/useMediaQueries/useMediaQueries.js';
|
|
22
18
|
import 'react-responsive';
|
|
@@ -24,6 +20,10 @@ import '../utils/setViewportProperty.js';
|
|
|
24
20
|
import '../hooks.js';
|
|
25
21
|
import '../hooks/useStyles/styleAttributes.js';
|
|
26
22
|
import 'lodash/maxBy';
|
|
23
|
+
import 'react-inlinesvg';
|
|
24
|
+
import '../hoc/urlWithAssetPrefix.js';
|
|
25
|
+
import '../context/UrlAssetPrefix.js';
|
|
26
|
+
import '../Link_es_P2b6ya7P.js';
|
|
27
27
|
|
|
28
28
|
const warningAppearanceAccent = {
|
|
29
29
|
accentMutedPrimary: {
|
|
@@ -94,6 +94,31 @@ const warningAppearanceInfo = {
|
|
|
94
94
|
},
|
|
95
95
|
};
|
|
96
96
|
|
|
97
|
+
const warningAppearanceShape = {
|
|
98
|
+
circular: {
|
|
99
|
+
shape: 'circular',
|
|
100
|
+
},
|
|
101
|
+
rounded: {
|
|
102
|
+
shape: 'rounded',
|
|
103
|
+
},
|
|
104
|
+
roundedXL: {
|
|
105
|
+
shape: 'rounded',
|
|
106
|
+
shapeStrength: '2m',
|
|
107
|
+
},
|
|
108
|
+
roundedL: {
|
|
109
|
+
shape: 'rounded',
|
|
110
|
+
shapeStrength: '1_5m',
|
|
111
|
+
},
|
|
112
|
+
roundedM: {
|
|
113
|
+
shape: 'rounded',
|
|
114
|
+
shapeStrength: '1m',
|
|
115
|
+
},
|
|
116
|
+
roundedS: {
|
|
117
|
+
shape: 'rounded',
|
|
118
|
+
shapeStrength: '0_5m',
|
|
119
|
+
},
|
|
120
|
+
};
|
|
121
|
+
|
|
97
122
|
const warningAppearanceSize = {
|
|
98
123
|
sizeL: {
|
|
99
124
|
size: 'l',
|
|
@@ -149,6 +174,7 @@ const warningAppearance = {
|
|
|
149
174
|
...warningAppearanceInfo,
|
|
150
175
|
...warningAppearanceStyle,
|
|
151
176
|
...warningAppearanceSize,
|
|
177
|
+
...warningAppearanceShape,
|
|
152
178
|
};
|
|
153
179
|
|
|
154
180
|
const warningConfig = {
|
|
@@ -158,14 +184,14 @@ const warningConfig = {
|
|
|
158
184
|
},
|
|
159
185
|
};
|
|
160
186
|
function Warning(props) {
|
|
161
|
-
const {
|
|
187
|
+
const { appearance, className, label, description, isSkeleton } = props;
|
|
162
188
|
const appearanceConfig = useAppearanceConfig(appearance, warningConfig);
|
|
163
189
|
const propsGenerator = useDevicePropsGenerator(props, appearanceConfig);
|
|
164
|
-
const { fillClass, labelTextColor, labelTextSize, labelTextWeight, descriptionTextColor, descriptionTextSize, borderColorClass, iconAfter, iconAfterFill, iconAfterFillIcon, iconAfterSize, iconAfterSrc, iconBefore, iconBeforeFill, iconBeforeFillIcon, iconBeforeSize, iconBeforeSrc, sizeClass, } = propsGenerator;
|
|
190
|
+
const { fillClass, labelTextColor, labelTextSize, labelTextWeight, descriptionTextColor, descriptionTextSize, borderColorClass, iconAfter, iconAfterFill, iconAfterFillIcon, iconAfterSize, iconAfterSrc, iconBefore, iconBeforeFill, iconBeforeFillIcon, iconBeforeSize, iconBeforeSrc, shapeClass, shapeStrengthClass, sizeClass, } = propsGenerator;
|
|
165
191
|
// @ts-ignore
|
|
166
192
|
const { styles: warningStyles } = useStyles(props);
|
|
167
193
|
const [isVisible, setIsVisible] = useState(true);
|
|
168
|
-
return (jsx(Fragment, { children: isVisible && (jsxs("div", { className: clsx(className, 'warning', fillClass && `fill_${fillClass}`, sizeClass && `warning_size_${sizeClass}`, borderColorClass && `border-color_${borderColorClass}`,
|
|
194
|
+
return (jsx(Fragment, { children: isVisible && (jsxs("div", { className: clsx(className, 'warning', fillClass && `fill_${fillClass}`, sizeClass && `warning_size_${sizeClass}`, borderColorClass && `border-color_${borderColorClass}`, shapeClass && `shape_${shapeClass}`, shapeStrengthClass && `shape-strength_${shapeStrengthClass}`, isSkeleton && `warning_skeleton`), style: warningStyles, children: [(iconBefore || iconBeforeSrc) && (jsx(Icon, { fill: iconBeforeFill, iconFill: iconBeforeFillIcon, iconSize: iconBeforeSize, imageSrc: iconBeforeSrc, SvgImage: iconBefore })), jsxs("div", { className: 'warning__content', children: [label && (jsx(Text, { size: labelTextSize, textColor: labelTextColor, textWeight: labelTextWeight, children: label })), description && (jsx(Text, { size: descriptionTextSize, textColor: descriptionTextColor, children: description }))] }), (iconAfter || iconAfterSrc) && (jsx(Icon, { fill: iconAfterFill, iconFill: iconAfterFillIcon, iconSize: iconAfterSize, imageSrc: iconAfterSrc, SvgImage: iconAfter, onClick: () => setIsVisible(false) }))] })) }));
|
|
169
195
|
}
|
|
170
196
|
|
|
171
197
|
export { Warning, warningAppearance, warningConfig };
|
|
@@ -60463,6 +60463,7 @@ h2.react-datepicker__current-month {
|
|
|
60463
60463
|
.react-datepicker__quarter-text--keyboard-selected:not([aria-disabled=true]):hover,
|
|
60464
60464
|
.react-datepicker__year-text--keyboard-selected:not([aria-disabled=true]):hover {
|
|
60465
60465
|
background-color: rgb(28.75, 93.2196969697, 143.75);
|
|
60466
|
+
color: #fff;
|
|
60466
60467
|
}
|
|
60467
60468
|
.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
|
|
60468
60469
|
.react-datepicker__month-text--in-range,
|
|
@@ -27,7 +27,7 @@ export declare const avatarAppearance: {
|
|
|
27
27
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
28
28
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
29
29
|
} | undefined;
|
|
30
|
-
|
|
30
|
+
accentPrimary?: {
|
|
31
31
|
badge?: string;
|
|
32
32
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
33
33
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -55,7 +55,7 @@ export declare const avatarAppearance: {
|
|
|
55
55
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
56
56
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
57
57
|
} | undefined;
|
|
58
|
-
|
|
58
|
+
accentSecondary?: {
|
|
59
59
|
badge?: string;
|
|
60
60
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
61
61
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -83,7 +83,7 @@ export declare const avatarAppearance: {
|
|
|
83
83
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
84
84
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
85
85
|
} | undefined;
|
|
86
|
-
|
|
86
|
+
accentTertiary?: {
|
|
87
87
|
badge?: string;
|
|
88
88
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
89
89
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -111,7 +111,7 @@ export declare const avatarAppearance: {
|
|
|
111
111
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
112
112
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
113
113
|
} | undefined;
|
|
114
|
-
|
|
114
|
+
accentQuaternary?: {
|
|
115
115
|
badge?: string;
|
|
116
116
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
117
117
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -139,7 +139,7 @@ export declare const avatarAppearance: {
|
|
|
139
139
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
140
140
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
141
141
|
} | undefined;
|
|
142
|
-
|
|
142
|
+
specialPrimary?: {
|
|
143
143
|
badge?: string;
|
|
144
144
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
145
145
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -167,7 +167,7 @@ export declare const avatarAppearance: {
|
|
|
167
167
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
168
168
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
169
169
|
} | undefined;
|
|
170
|
-
|
|
170
|
+
specialSecondary?: {
|
|
171
171
|
badge?: string;
|
|
172
172
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
173
173
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -195,7 +195,7 @@ export declare const avatarAppearance: {
|
|
|
195
195
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
196
196
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
197
197
|
} | undefined;
|
|
198
|
-
|
|
198
|
+
specialTertiary?: {
|
|
199
199
|
badge?: string;
|
|
200
200
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
201
201
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -223,7 +223,7 @@ export declare const avatarAppearance: {
|
|
|
223
223
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
224
224
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
225
225
|
} | undefined;
|
|
226
|
-
|
|
226
|
+
specialQuaternary?: {
|
|
227
227
|
badge?: string;
|
|
228
228
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
229
229
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -251,7 +251,7 @@ export declare const avatarAppearance: {
|
|
|
251
251
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
252
252
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
253
253
|
} | undefined;
|
|
254
|
-
|
|
254
|
+
extraPrimary?: {
|
|
255
255
|
badge?: string;
|
|
256
256
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
257
257
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -279,7 +279,7 @@ export declare const avatarAppearance: {
|
|
|
279
279
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
280
280
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
281
281
|
} | undefined;
|
|
282
|
-
|
|
282
|
+
extraSecondary?: {
|
|
283
283
|
badge?: string;
|
|
284
284
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
285
285
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -307,7 +307,7 @@ export declare const avatarAppearance: {
|
|
|
307
307
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
308
308
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
309
309
|
} | undefined;
|
|
310
|
-
|
|
310
|
+
extraTertiary?: {
|
|
311
311
|
badge?: string;
|
|
312
312
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
313
313
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -335,7 +335,7 @@ export declare const avatarAppearance: {
|
|
|
335
335
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
336
336
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
337
337
|
} | undefined;
|
|
338
|
-
|
|
338
|
+
extraQuaternary?: {
|
|
339
339
|
badge?: string;
|
|
340
340
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
341
341
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -363,7 +363,7 @@ export declare const avatarAppearance: {
|
|
|
363
363
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
364
364
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
365
365
|
} | undefined;
|
|
366
|
-
|
|
366
|
+
surfacePrimary?: {
|
|
367
367
|
badge?: string;
|
|
368
368
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
369
369
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -391,7 +391,7 @@ export declare const avatarAppearance: {
|
|
|
391
391
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
392
392
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
393
393
|
} | undefined;
|
|
394
|
-
|
|
394
|
+
surfaceSecondary?: {
|
|
395
395
|
badge?: string;
|
|
396
396
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
397
397
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -419,7 +419,7 @@ export declare const avatarAppearance: {
|
|
|
419
419
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
420
420
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
421
421
|
} | undefined;
|
|
422
|
-
|
|
422
|
+
surfaceTertiary?: {
|
|
423
423
|
badge?: string;
|
|
424
424
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
425
425
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -447,7 +447,7 @@ export declare const avatarAppearance: {
|
|
|
447
447
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
448
448
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
449
449
|
} | undefined;
|
|
450
|
-
|
|
450
|
+
surfaceQuaternary?: {
|
|
451
451
|
badge?: string;
|
|
452
452
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
453
453
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -475,7 +475,7 @@ export declare const avatarAppearance: {
|
|
|
475
475
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
476
476
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
477
477
|
} | undefined;
|
|
478
|
-
|
|
478
|
+
errorPrimary?: {
|
|
479
479
|
badge?: string;
|
|
480
480
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
481
481
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -559,7 +559,7 @@ export declare const avatarAppearance: {
|
|
|
559
559
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
560
560
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
561
561
|
} | undefined;
|
|
562
|
-
|
|
562
|
+
errorQuaternary?: {
|
|
563
563
|
badge?: string;
|
|
564
564
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
565
565
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -587,7 +587,7 @@ export declare const avatarAppearance: {
|
|
|
587
587
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
588
588
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
589
589
|
} | undefined;
|
|
590
|
-
|
|
590
|
+
warningPrimary?: {
|
|
591
591
|
badge?: string;
|
|
592
592
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
593
593
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -615,7 +615,7 @@ export declare const avatarAppearance: {
|
|
|
615
615
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
616
616
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
617
617
|
} | undefined;
|
|
618
|
-
|
|
618
|
+
warningSecondary?: {
|
|
619
619
|
badge?: string;
|
|
620
620
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
621
621
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -643,7 +643,7 @@ export declare const avatarAppearance: {
|
|
|
643
643
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
644
644
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
645
645
|
} | undefined;
|
|
646
|
-
|
|
646
|
+
warningTertiary?: {
|
|
647
647
|
badge?: string;
|
|
648
648
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
649
649
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -671,7 +671,7 @@ export declare const avatarAppearance: {
|
|
|
671
671
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
672
672
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
673
673
|
} | undefined;
|
|
674
|
-
|
|
674
|
+
warningQuaternary?: {
|
|
675
675
|
badge?: string;
|
|
676
676
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
677
677
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -699,7 +699,7 @@ export declare const avatarAppearance: {
|
|
|
699
699
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
700
700
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
701
701
|
} | undefined;
|
|
702
|
-
|
|
702
|
+
successPrimary?: {
|
|
703
703
|
badge?: string;
|
|
704
704
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
705
705
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -727,7 +727,7 @@ export declare const avatarAppearance: {
|
|
|
727
727
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
728
728
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
729
729
|
} | undefined;
|
|
730
|
-
|
|
730
|
+
successSecondary?: {
|
|
731
731
|
badge?: string;
|
|
732
732
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
733
733
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -755,7 +755,7 @@ export declare const avatarAppearance: {
|
|
|
755
755
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
756
756
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
757
757
|
} | undefined;
|
|
758
|
-
|
|
758
|
+
successTertiary?: {
|
|
759
759
|
badge?: string;
|
|
760
760
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
761
761
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -783,7 +783,7 @@ export declare const avatarAppearance: {
|
|
|
783
783
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
784
784
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
785
785
|
} | undefined;
|
|
786
|
-
|
|
786
|
+
successQuaternary?: {
|
|
787
787
|
badge?: string;
|
|
788
788
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
789
789
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -811,7 +811,7 @@ export declare const avatarAppearance: {
|
|
|
811
811
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
812
812
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
813
813
|
} | undefined;
|
|
814
|
-
|
|
814
|
+
infoPrimary?: {
|
|
815
815
|
badge?: string;
|
|
816
816
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
817
817
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -839,7 +839,7 @@ export declare const avatarAppearance: {
|
|
|
839
839
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
840
840
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
841
841
|
} | undefined;
|
|
842
|
-
|
|
842
|
+
infoSecondary?: {
|
|
843
843
|
badge?: string;
|
|
844
844
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
845
845
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -867,7 +867,7 @@ export declare const avatarAppearance: {
|
|
|
867
867
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
868
868
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
869
869
|
} | undefined;
|
|
870
|
-
|
|
870
|
+
infoTertiary?: {
|
|
871
871
|
badge?: string;
|
|
872
872
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
873
873
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -895,7 +895,7 @@ export declare const avatarAppearance: {
|
|
|
895
895
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
896
896
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
897
897
|
} | undefined;
|
|
898
|
-
|
|
898
|
+
infoQuaternary?: {
|
|
899
899
|
badge?: string;
|
|
900
900
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
901
901
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -923,7 +923,7 @@ export declare const avatarAppearance: {
|
|
|
923
923
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
924
924
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
925
925
|
} | undefined;
|
|
926
|
-
|
|
926
|
+
dangerPrimary?: {
|
|
927
927
|
badge?: string;
|
|
928
928
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
929
929
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -951,7 +951,7 @@ export declare const avatarAppearance: {
|
|
|
951
951
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
952
952
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
953
953
|
} | undefined;
|
|
954
|
-
|
|
954
|
+
dangerSecondary?: {
|
|
955
955
|
badge?: string;
|
|
956
956
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
957
957
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -979,7 +979,7 @@ export declare const avatarAppearance: {
|
|
|
979
979
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
980
980
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
981
981
|
} | undefined;
|
|
982
|
-
|
|
982
|
+
dangerTertiary?: {
|
|
983
983
|
badge?: string;
|
|
984
984
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
985
985
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -1007,7 +1007,7 @@ export declare const avatarAppearance: {
|
|
|
1007
1007
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
1008
1008
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
1009
1009
|
} | undefined;
|
|
1010
|
-
|
|
1010
|
+
dangerQuaternary?: {
|
|
1011
1011
|
badge?: string;
|
|
1012
1012
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
1013
1013
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -1035,7 +1035,7 @@ export declare const avatarAppearance: {
|
|
|
1035
1035
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
1036
1036
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
1037
1037
|
} | undefined;
|
|
1038
|
-
|
|
1038
|
+
disabledPrimary?: {
|
|
1039
1039
|
badge?: string;
|
|
1040
1040
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
1041
1041
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -1063,7 +1063,7 @@ export declare const avatarAppearance: {
|
|
|
1063
1063
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
1064
1064
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
1065
1065
|
} | undefined;
|
|
1066
|
-
|
|
1066
|
+
disabledSecondary?: {
|
|
1067
1067
|
badge?: string;
|
|
1068
1068
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
1069
1069
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -1091,7 +1091,7 @@ export declare const avatarAppearance: {
|
|
|
1091
1091
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
1092
1092
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
1093
1093
|
} | undefined;
|
|
1094
|
-
|
|
1094
|
+
disabledTertiary?: {
|
|
1095
1095
|
badge?: string;
|
|
1096
1096
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
1097
1097
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -1119,7 +1119,7 @@ export declare const avatarAppearance: {
|
|
|
1119
1119
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
1120
1120
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
1121
1121
|
} | undefined;
|
|
1122
|
-
|
|
1122
|
+
disabledQuaternary?: {
|
|
1123
1123
|
badge?: string;
|
|
1124
1124
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
1125
1125
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -1147,7 +1147,7 @@ export declare const avatarAppearance: {
|
|
|
1147
1147
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
1148
1148
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
1149
1149
|
} | undefined;
|
|
1150
|
-
|
|
1150
|
+
geometric?: {
|
|
1151
1151
|
badge?: string;
|
|
1152
1152
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
1153
1153
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -1175,7 +1175,7 @@ export declare const avatarAppearance: {
|
|
|
1175
1175
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
1176
1176
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
1177
1177
|
} | undefined;
|
|
1178
|
-
|
|
1178
|
+
circular?: {
|
|
1179
1179
|
badge?: string;
|
|
1180
1180
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
1181
1181
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -1203,7 +1203,7 @@ export declare const avatarAppearance: {
|
|
|
1203
1203
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
1204
1204
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
1205
1205
|
} | undefined;
|
|
1206
|
-
|
|
1206
|
+
rounded?: {
|
|
1207
1207
|
badge?: string;
|
|
1208
1208
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
1209
1209
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -1231,7 +1231,7 @@ export declare const avatarAppearance: {
|
|
|
1231
1231
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
1232
1232
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
1233
1233
|
} | undefined;
|
|
1234
|
-
|
|
1234
|
+
outlined?: {
|
|
1235
1235
|
badge?: string;
|
|
1236
1236
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
1237
1237
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -1259,7 +1259,7 @@ export declare const avatarAppearance: {
|
|
|
1259
1259
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
1260
1260
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
1261
1261
|
} | undefined;
|
|
1262
|
-
|
|
1262
|
+
full?: {
|
|
1263
1263
|
badge?: string;
|
|
1264
1264
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
1265
1265
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|
|
@@ -1287,7 +1287,7 @@ export declare const avatarAppearance: {
|
|
|
1287
1287
|
textSize?: import("../Text/Text.interface").TextProps["size"];
|
|
1288
1288
|
textWeight?: import("../Text/Text.interface").TextProps["textWeight"];
|
|
1289
1289
|
} | undefined;
|
|
1290
|
-
|
|
1290
|
+
ghost?: {
|
|
1291
1291
|
badge?: string;
|
|
1292
1292
|
badgeAppearance?: import("@itcase/types").CompositeAppearanceDefaultStyleShapeKey;
|
|
1293
1293
|
badgeAppearanceSize?: import("@itcase/types").AppearanceSizeKey;
|