@itcase/ui 1.8.135 → 1.8.137
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/{Button_cjs_BxoEdSG6.js → Button_cjs_BXEwg-En.js} +3 -3
- package/dist/{Button_es_B-SYHL6T.js → Button_es_DEn6z83v.js} +3 -3
- package/dist/{DatePicker_cjs_BLOiIsfD.js → DatePicker_cjs_Dxbyx8GV.js} +1 -1
- package/dist/{DatePicker_es_VslTy9Qw.js → DatePicker_es_mX0NSjO5.js} +1 -1
- package/dist/cjs/components/Button.js +1 -1
- package/dist/cjs/components/Choice.js +23 -9
- package/dist/cjs/components/CookiesWarning.js +1 -1
- package/dist/cjs/components/DatePeriod.js +2 -2
- package/dist/cjs/components/DatePicker.js +2 -2
- package/dist/cjs/components/Pagination.js +8 -5
- package/dist/cjs/components/Response.js +1 -1
- package/dist/components/Button.js +1 -1
- package/dist/components/Choice.js +23 -9
- package/dist/components/CookiesWarning.js +1 -1
- package/dist/components/DatePeriod.js +2 -2
- package/dist/components/DatePicker.js +2 -2
- package/dist/components/Pagination.js +8 -5
- package/dist/components/Response.js +1 -1
- package/dist/css/styles/border-color/border-color.css +18 -2
- package/dist/css/styles/bundle.css +90 -42
- package/dist/css/styles/fill/fill.css +58 -38
- package/dist/css/styles/text-color/text-color.css +14 -2
- package/dist/types/components/Choice/appearance/choiceDefault.d.ts +19 -1
- package/dist/types/components/Choice/appearance/choiceStyle.d.ts +0 -4
- package/package.json +1 -1
|
@@ -461,10 +461,10 @@ const buttonConfig = {
|
|
|
461
461
|
},
|
|
462
462
|
};
|
|
463
463
|
const Button = React.forwardRef(function Button(props, ref) {
|
|
464
|
-
const {
|
|
464
|
+
const { appearance, className, dataTestId, dataTour, label, Badge, href, htmlType = 'button', link, rel, target, before, after, isDisabled, isLoading = false, onClick, onMouseDown, children, } = props;
|
|
465
465
|
const appearanceConfig = useAppearanceConfig.useAppearanceConfig(appearance, buttonConfig, isDisabled);
|
|
466
466
|
const propsGenerator = useDevicePropsGenerator.useDevicePropsGenerator(props, appearanceConfig);
|
|
467
|
-
const { fillClass, fillHoverClass,
|
|
467
|
+
const { fillClass, fillHoverClass, labelTextColor, labelTextColorHover, labelTextSize, labelTextTruncate, labelTextWeight, labelTextWidth, labelTextWrap, borderColorClass, borderTypeClass, borderWidthClass, elevationClass, icon, iconAfter, iconAfterFill, iconAfterFillIcon, iconAfterFillSize, iconAfterShape, iconAfterSize, iconAfterSrc, iconBefore, iconBeforeFill, iconBeforeFillIcon, iconBeforeFillSize, iconBeforeShape, iconBeforeSize, iconBeforeSrc, iconFill, iconFillIcon, iconFillSize, iconShape, iconSize, iconSrc, loaderAppearance, loaderAppearanceSize, loaderFill, loaderItemFill, loaderSize, loaderType = 'simple', shapeClass, shapeStrengthClass, sizeClass, widthClass, isSkeleton, } = propsGenerator;
|
|
468
468
|
const { label: labelStyles, styles: buttonStyles } = useStyles.useStyles(props);
|
|
469
469
|
const buttonTypeClass = after ||
|
|
470
470
|
before ||
|
|
@@ -480,7 +480,7 @@ const Button = React.forwardRef(function Button(props, ref) {
|
|
|
480
480
|
? 'buttom_type_label'
|
|
481
481
|
: buttonTypeClass
|
|
482
482
|
? 'button_type_icon'
|
|
483
|
-
: '', borderWidthClass && `border-width_${borderWidthClass}`, borderColorClass && `border-color_${borderColorClass}`, borderTypeClass && `border_type_${borderTypeClass}`, fillClass && `fill_${fillClass}`, fillHoverClass && `fill_hover_${fillHoverClass}`, shapeClass && `shape_${shapeClass}`, shapeStrengthClass && `shape-strength_${shapeStrengthClass}`, sizeClass && `button_size_${sizeClass}`, widthClass && `button_width_${widthClass}`, elevationClass && `elevation_${elevationClass}`, onClick && 'cursor_type_pointer', isDisabled && 'cursor_type_default', Badge && 'button_type_badge', isLoading && 'button_state_loading', isSkeleton && `button_skeleton`), type: htmlType,
|
|
483
|
+
: '', borderWidthClass && `border-width_${borderWidthClass}`, borderColorClass && `border-color_${borderColorClass}`, borderTypeClass && `border_type_${borderTypeClass}`, fillClass && `fill_${fillClass}`, fillHoverClass && `fill_hover_${fillHoverClass}`, shapeClass && `shape_${shapeClass}`, shapeStrengthClass && `shape-strength_${shapeStrengthClass}`, sizeClass && `button_size_${sizeClass}`, widthClass && `button_width_${widthClass}`, elevationClass && `elevation_${elevationClass}`, onClick && 'cursor_type_pointer', isDisabled && 'cursor_type_default', Badge && 'button_type_badge', isLoading && 'button_state_loading', isSkeleton && `button_skeleton`), type: htmlType, "data-test-id": dataTestId && `${dataTestId}Button`, "data-tour": dataTour, disabled: isDisabled, href: link || href, LinkComponent: "button", rel: rel, style: buttonStyles, target: target, onClick: onClick, onMouseDown: onMouseDown, children: jsxRuntime.jsxs("div", { className: "button__wrapper", ref: ref, children: [isLoading && (jsxRuntime.jsx(Loader.Loader, { appearance: `${loaderAppearance} ${loaderAppearanceSize}`, className: clsx(className, 'button__loader'), type: loaderType, size: loaderSize, fill: loaderFill, itemFill: loaderItemFill })), before, (iconBefore || iconBeforeSrc) && (jsxRuntime.jsx(Icon.Icon, { className: "button__icon_before", fill: iconBeforeFill, fillSize: iconBeforeFillSize, iconFill: iconBeforeFillIcon, iconSize: iconBeforeSize, imageSrc: iconBeforeSrc, shape: iconBeforeShape, SvgImage: iconBefore })), (icon || iconSrc) && (jsxRuntime.jsx(Icon.Icon, { className: "button__icon", fill: iconFill, fillSize: iconFillSize, iconFill: iconFillIcon, iconSize: iconSize, imageSrc: iconSrc, shape: iconShape, SvgImage: icon })), (children || label) && (jsxRuntime.jsx(Text.Text, { className: "button__label", width: labelTextWidth, size: labelTextSize, textColor: labelTextColor, textColorHover: labelTextColorHover, textTruncate: labelTextTruncate, textWeight: labelTextWeight, textWrap: labelTextWrap, style: labelStyles, children: children || label })), (iconAfter || iconAfterSrc) && (jsxRuntime.jsx(Icon.Icon, { className: "button__icon_after", fill: iconAfterFill, fillSize: iconAfterFillSize, iconFill: iconAfterFillIcon, iconSize: iconAfterSize, imageSrc: iconAfterSrc, shape: iconAfterShape, SvgImage: iconAfter })), Badge, after] }) }));
|
|
484
484
|
});
|
|
485
485
|
|
|
486
486
|
exports.Button = Button;
|
|
@@ -459,10 +459,10 @@ const buttonConfig = {
|
|
|
459
459
|
},
|
|
460
460
|
};
|
|
461
461
|
const Button = React.forwardRef(function Button(props, ref) {
|
|
462
|
-
const {
|
|
462
|
+
const { appearance, className, dataTestId, dataTour, label, Badge, href, htmlType = 'button', link, rel, target, before, after, isDisabled, isLoading = false, onClick, onMouseDown, children, } = props;
|
|
463
463
|
const appearanceConfig = useAppearanceConfig(appearance, buttonConfig, isDisabled);
|
|
464
464
|
const propsGenerator = useDevicePropsGenerator(props, appearanceConfig);
|
|
465
|
-
const { fillClass, fillHoverClass,
|
|
465
|
+
const { fillClass, fillHoverClass, labelTextColor, labelTextColorHover, labelTextSize, labelTextTruncate, labelTextWeight, labelTextWidth, labelTextWrap, borderColorClass, borderTypeClass, borderWidthClass, elevationClass, icon, iconAfter, iconAfterFill, iconAfterFillIcon, iconAfterFillSize, iconAfterShape, iconAfterSize, iconAfterSrc, iconBefore, iconBeforeFill, iconBeforeFillIcon, iconBeforeFillSize, iconBeforeShape, iconBeforeSize, iconBeforeSrc, iconFill, iconFillIcon, iconFillSize, iconShape, iconSize, iconSrc, loaderAppearance, loaderAppearanceSize, loaderFill, loaderItemFill, loaderSize, loaderType = 'simple', shapeClass, shapeStrengthClass, sizeClass, widthClass, isSkeleton, } = propsGenerator;
|
|
466
466
|
const { label: labelStyles, styles: buttonStyles } = useStyles(props);
|
|
467
467
|
const buttonTypeClass = after ||
|
|
468
468
|
before ||
|
|
@@ -478,7 +478,7 @@ const Button = React.forwardRef(function Button(props, ref) {
|
|
|
478
478
|
? 'buttom_type_label'
|
|
479
479
|
: buttonTypeClass
|
|
480
480
|
? 'button_type_icon'
|
|
481
|
-
: '', borderWidthClass && `border-width_${borderWidthClass}`, borderColorClass && `border-color_${borderColorClass}`, borderTypeClass && `border_type_${borderTypeClass}`, fillClass && `fill_${fillClass}`, fillHoverClass && `fill_hover_${fillHoverClass}`, shapeClass && `shape_${shapeClass}`, shapeStrengthClass && `shape-strength_${shapeStrengthClass}`, sizeClass && `button_size_${sizeClass}`, widthClass && `button_width_${widthClass}`, elevationClass && `elevation_${elevationClass}`, onClick && 'cursor_type_pointer', isDisabled && 'cursor_type_default', Badge && 'button_type_badge', isLoading && 'button_state_loading', isSkeleton && `button_skeleton`), type: htmlType,
|
|
481
|
+
: '', borderWidthClass && `border-width_${borderWidthClass}`, borderColorClass && `border-color_${borderColorClass}`, borderTypeClass && `border_type_${borderTypeClass}`, fillClass && `fill_${fillClass}`, fillHoverClass && `fill_hover_${fillHoverClass}`, shapeClass && `shape_${shapeClass}`, shapeStrengthClass && `shape-strength_${shapeStrengthClass}`, sizeClass && `button_size_${sizeClass}`, widthClass && `button_width_${widthClass}`, elevationClass && `elevation_${elevationClass}`, onClick && 'cursor_type_pointer', isDisabled && 'cursor_type_default', Badge && 'button_type_badge', isLoading && 'button_state_loading', isSkeleton && `button_skeleton`), type: htmlType, "data-test-id": dataTestId && `${dataTestId}Button`, "data-tour": dataTour, disabled: isDisabled, href: link || href, LinkComponent: "button", rel: rel, style: buttonStyles, target: target, onClick: onClick, onMouseDown: onMouseDown, children: jsxs("div", { className: "button__wrapper", ref: ref, children: [isLoading && (jsx(Loader, { appearance: `${loaderAppearance} ${loaderAppearanceSize}`, className: clsx(className, 'button__loader'), type: loaderType, size: loaderSize, fill: loaderFill, itemFill: loaderItemFill })), before, (iconBefore || iconBeforeSrc) && (jsx(Icon, { className: "button__icon_before", fill: iconBeforeFill, fillSize: iconBeforeFillSize, iconFill: iconBeforeFillIcon, iconSize: iconBeforeSize, imageSrc: iconBeforeSrc, shape: iconBeforeShape, SvgImage: iconBefore })), (icon || iconSrc) && (jsx(Icon, { className: "button__icon", fill: iconFill, fillSize: iconFillSize, iconFill: iconFillIcon, iconSize: iconSize, imageSrc: iconSrc, shape: iconShape, SvgImage: icon })), (children || label) && (jsx(Text, { className: "button__label", width: labelTextWidth, size: labelTextSize, textColor: labelTextColor, textColorHover: labelTextColorHover, textTruncate: labelTextTruncate, textWeight: labelTextWeight, textWrap: labelTextWrap, style: labelStyles, children: children || label })), (iconAfter || iconAfterSrc) && (jsx(Icon, { className: "button__icon_after", fill: iconAfterFill, fillSize: iconAfterFillSize, iconFill: iconAfterFillIcon, iconSize: iconAfterSize, imageSrc: iconAfterSrc, shape: iconAfterShape, SvgImage: iconAfter })), Badge, after] }) }));
|
|
482
482
|
});
|
|
483
483
|
|
|
484
484
|
export { Button as B, buttonAppearance as a, buttonConfig as b };
|
|
@@ -8,7 +8,7 @@ var DatePicker = require('react-datepicker');
|
|
|
8
8
|
var useAppearanceConfig = require('./cjs/hooks/useAppearanceConfig/useAppearanceConfig.js');
|
|
9
9
|
var useDevicePropsGenerator = require('./cjs/hooks/useDevicePropsGenerator/useDevicePropsGenerator.js');
|
|
10
10
|
var useStyles = require('./cjs/hooks/useStyles/useStyles.js');
|
|
11
|
-
var Button = require('./
|
|
11
|
+
var Button = require('./Button_cjs_BXEwg-En.js');
|
|
12
12
|
var Icon = require('./Icon_cjs_DKzT-zmQ.js');
|
|
13
13
|
var Input = require('./Input_cjs_DDi5JVAV.js');
|
|
14
14
|
var Label = require('./Label_cjs_D2YMjCoS.js');
|
|
@@ -6,7 +6,7 @@ import DatePicker from 'react-datepicker';
|
|
|
6
6
|
import { useAppearanceConfig } from './hooks/useAppearanceConfig/useAppearanceConfig.js';
|
|
7
7
|
import { useDevicePropsGenerator } from './hooks/useDevicePropsGenerator/useDevicePropsGenerator.js';
|
|
8
8
|
import { useStyles } from './hooks/useStyles/useStyles.js';
|
|
9
|
-
import { B as Button } from './
|
|
9
|
+
import { B as Button } from './Button_es_DEn6z83v.js';
|
|
10
10
|
import { I as Icon } from './Icon_es_5JUPM7bP.js';
|
|
11
11
|
import { I as Input } from './Input_es_BnCXATnh.js';
|
|
12
12
|
import { L as Label } from './Label_es_B5uGQwNN.js';
|
|
@@ -28,14 +28,32 @@ require('../context/UrlAssetPrefix.js');
|
|
|
28
28
|
require('../../Link_cjs_qKXVfU8e.js');
|
|
29
29
|
|
|
30
30
|
const choiceAppearanceDefault = {
|
|
31
|
+
defaultMutedPrimary: {
|
|
32
|
+
fill: 'surfaceSecondary',
|
|
33
|
+
fillItem: 'surfaceSecondary',
|
|
34
|
+
fillItemActive: 'accentTertiary',
|
|
35
|
+
fillItemActiveHover: 'accentPrimary',
|
|
36
|
+
fillItemHover: 'surfaceTertiary',
|
|
37
|
+
labelTextColor: 'surfaceTextPrimary',
|
|
38
|
+
labelTextColorActive: 'surfaceTextPrimary',
|
|
39
|
+
labelTextColorActiveHover: 'accentTextPrimary',
|
|
40
|
+
borderColor: 'surfaceBorderSecondary',
|
|
41
|
+
iconAfterFill: 'surfaceItemQuaternary',
|
|
42
|
+
iconAfterFillActive: 'surfaceItemSecondary',
|
|
43
|
+
iconBeforeFill: 'surfaceItemQuaternary',
|
|
44
|
+
iconBeforeFillActive: 'surfaceItemSecondary',
|
|
45
|
+
iconFill: 'surfaceItemQuaternary',
|
|
46
|
+
iconFillActive: 'surfaceItemSecondary',
|
|
47
|
+
},
|
|
31
48
|
defaultPrimary: {
|
|
32
49
|
fill: 'surfaceSecondary',
|
|
33
50
|
fillItem: 'surfaceSecondary',
|
|
34
51
|
fillItemActive: 'accentPrimary',
|
|
35
52
|
fillItemActiveHover: 'accentHoverPrimary',
|
|
36
53
|
fillItemHover: 'surfaceTertiary',
|
|
37
|
-
labelTextActiveColor: 'accentTextPrimary',
|
|
38
54
|
labelTextColor: 'surfaceTextPrimary',
|
|
55
|
+
labelTextColorActive: 'accentTextPrimary',
|
|
56
|
+
labelTextColorActiveHover: 'accentTextPrimary',
|
|
39
57
|
borderColor: 'surfaceBorderQuaternary',
|
|
40
58
|
iconAfterFill: 'surfaceItemQuaternary',
|
|
41
59
|
iconAfterFillActive: 'surfaceItemSecondary',
|
|
@@ -150,14 +168,10 @@ const choiceAppearanceStyle = {
|
|
|
150
168
|
},
|
|
151
169
|
outlined: {
|
|
152
170
|
fill: 'none',
|
|
153
|
-
fillItem: 'none',
|
|
154
|
-
fillItemActive: 'none',
|
|
155
171
|
},
|
|
156
172
|
full: {},
|
|
157
173
|
ghost: {
|
|
158
174
|
fill: 'none',
|
|
159
|
-
fillItem: 'none',
|
|
160
|
-
fillItemActive: 'none',
|
|
161
175
|
borderColor: 'none',
|
|
162
176
|
},
|
|
163
177
|
};
|
|
@@ -198,7 +212,7 @@ const choiceConfig = {
|
|
|
198
212
|
},
|
|
199
213
|
};
|
|
200
214
|
function Choice(props) {
|
|
201
|
-
const { id,
|
|
215
|
+
const { id, appearance, className, dataTestId, dataTour, name, active = { value: undefined }, itemAfter, itemBefore, options = [], before, after, isDisabled = false, isSkeleton, isCheckbox = false, isLoading = false, setActiveSegment, } = props;
|
|
202
216
|
const controlRef = React.useRef(null);
|
|
203
217
|
const optionsRefs = React.useMemo(() => new Map(options.map((item) => [item.value, React.createRef()])), [options]);
|
|
204
218
|
const onChange = React.useCallback((event, item) => {
|
|
@@ -207,7 +221,7 @@ function Choice(props) {
|
|
|
207
221
|
}, [isCheckbox, setActiveSegment]);
|
|
208
222
|
const appearanceConfig = useAppearanceConfig.useAppearanceConfig(appearance, choiceConfig, isDisabled);
|
|
209
223
|
const propsGenerator = useDevicePropsGenerator.useDevicePropsGenerator(props, appearanceConfig);
|
|
210
|
-
const { size, fillClass, fillItemActiveClass, fillItemActiveDisabledClass, fillItemActiveHoverClass, fillItemClass, fillItemDisabledClass, fillItemHoverClass,
|
|
224
|
+
const { size, fillClass, fillItemActiveClass, fillItemActiveDisabledClass, fillItemActiveHoverClass, fillItemClass, fillItemDisabledClass, fillItemHoverClass, labelTextColor, labelTextColorActive, labelTextColorActiveHover, labelTextColorHover, labelTextSize, labelTextWeight, labelTextWrap, borderColorClass, borderTypeClass, borderWidthClass, iconAfterFill, iconAfterFillActive, iconAfterFillDisabled, iconAfterSize, iconBeforeFill, iconBeforeFillActive, iconBeforeFillDisabled, iconBeforeSize, iconFill, iconFillActive, iconFillDisabled, iconSize, shapeClass, shapeStrengthClass, wrapClass, } = propsGenerator;
|
|
211
225
|
const { styles } = useStyles.useStyles(props);
|
|
212
226
|
return (jsxRuntime.jsxs("div", { id: id, className: clsx(className, 'choice', size && `choice_size_${size}`, fillClass && `fill_${fillClass}`, wrapClass && `choice_wrap_${wrapClass}`, shapeClass && `shape_${shapeClass}`, shapeStrengthClass && `shape-strength_${shapeStrengthClass}`, isSkeleton && `choice_skeleton`), ref: controlRef, "data-test-id": dataTestId && `${dataTestId}Choice`, "data-tour": dataTour, style: styles, children: [before && jsxRuntime.jsx("div", { className: "choice__before", children: before }), isLoading ? (jsxRuntime.jsx(Loader.Loader, { width: "fill", height: "fill", fill: "surfacePrimary", itemFill: "surfaceItemAccent" })) : (jsxRuntime.jsx(React.Fragment, { children: options.map((item) => {
|
|
213
227
|
const isActive = typeof active === 'object'
|
|
@@ -230,9 +244,9 @@ function Choice(props) {
|
|
|
230
244
|
: fillItemDisabledClass &&
|
|
231
245
|
`fill_disabled_${fillItemDisabledClass}`, !isActive && isDisabled && 'choice__item_state_disabled', isActive &&
|
|
232
246
|
isDisabled &&
|
|
233
|
-
'choice__item_active_state_disabled', isActive && 'choice__item_active'), ref: optionsRefs.get(item.value), children: [jsxRuntime.jsx("input", { id: `${name}-${item.value}`, className: "choice__item-radio", type: isCheckbox ? 'checkbox' : 'radio', name: name,
|
|
247
|
+
'choice__item_active_state_disabled', isActive && 'choice__item_active'), ref: optionsRefs.get(item.value), children: [jsxRuntime.jsx("input", { id: `${name}-${item.value}`, className: "choice__item-radio", type: isCheckbox ? 'checkbox' : 'radio', name: name, checked: isActive, disabled: isDisabled, value: item.value, onChange: (event) => onChange(event, item) }), jsxRuntime.jsxs("label", { className: clsx('choice__item-label', isDisabled && 'choice__item-label_state_disabled'), htmlFor: `${name}-${item.value}`, children: [itemBefore, (item.iconBefore || item.iconBeforeActive) && (jsxRuntime.jsx(Icon.Icon, { className: "choice__item-icon", iconFill: iconBeforeFill, iconFillActive: iconBeforeFillActive, iconFillDisabled: iconBeforeFillDisabled, iconSize: iconBeforeSize, SvgImage: isActive
|
|
234
248
|
? item.iconBeforeActive || item.iconBefore
|
|
235
|
-
: item.iconBefore, isActive: isActive })), item.label && (jsxRuntime.jsx(Text.Text, { size: labelTextSize, textColor: labelTextColor, textColorActive:
|
|
249
|
+
: item.iconBefore, isActive: isActive, isDisabled: isDisabled })), item.label && (jsxRuntime.jsx(Text.Text, { size: labelTextSize, textColor: labelTextColor, textColorActive: labelTextColorActive, textColorActiveHover: labelTextColorActiveHover, textColorHover: labelTextColorHover, textWeight: labelTextWeight, textWrap: labelTextWrap, isActive: isActive, children: item.label })), (item.icon || item.iconActive) && (jsxRuntime.jsx(Icon.Icon, { className: "choice__item-icon", iconFill: iconFill, iconFillActive: iconFillActive, iconFillDisabled: iconFillDisabled, iconSize: iconSize, SvgImage: isActive ? item.iconActive || item.icon : item.icon, isActive: isActive })), (item.iconAfter || item.iconAfterActive) && (jsxRuntime.jsx(Icon.Icon, { className: "choice__item-icon", iconFill: iconAfterFill, iconFillActive: iconAfterFillActive, iconFillDisabled: iconAfterFillDisabled, iconSize: iconAfterSize, SvgImage: isActive
|
|
236
250
|
? item.iconAfterActive || item.iconAfter
|
|
237
251
|
: item.iconAfter, isActive: isActive })), itemAfter] })] }, `${name}-${item.value}`));
|
|
238
252
|
}) })), after && jsxRuntime.jsx("div", { className: "choice__after", children: after })] }));
|
|
@@ -6,7 +6,7 @@ var clsx = require('clsx');
|
|
|
6
6
|
var Cookies = require('js-cookie');
|
|
7
7
|
var useAppearanceConfig = require('../hooks/useAppearanceConfig/useAppearanceConfig.js');
|
|
8
8
|
var useDevicePropsGenerator = require('../hooks/useDevicePropsGenerator/useDevicePropsGenerator.js');
|
|
9
|
-
var Button = require('../../
|
|
9
|
+
var Button = require('../../Button_cjs_BXEwg-En.js');
|
|
10
10
|
var Text = require('../../Text_cjs_DaH5tVvz.js');
|
|
11
11
|
require('lodash/camelCase');
|
|
12
12
|
require('lodash/castArray');
|
|
@@ -4,7 +4,7 @@ var jsxRuntime = require('react/jsx-runtime');
|
|
|
4
4
|
var React = require('react');
|
|
5
5
|
var clsx = require('clsx');
|
|
6
6
|
var common = require('@itcase/common');
|
|
7
|
-
var DatePicker = require('../../
|
|
7
|
+
var DatePicker = require('../../DatePicker_cjs_Dxbyx8GV.js');
|
|
8
8
|
var useAppearanceConfig = require('../hooks/useAppearanceConfig/useAppearanceConfig.js');
|
|
9
9
|
var useDevicePropsGenerator = require('../hooks/useDevicePropsGenerator/useDevicePropsGenerator.js');
|
|
10
10
|
var ChipsGroup = require('../../ChipsGroup_cjs_Du8WHI-Y.js');
|
|
@@ -22,7 +22,7 @@ require('react-responsive');
|
|
|
22
22
|
require('../utils/setViewportProperty.js');
|
|
23
23
|
require('../hooks.js');
|
|
24
24
|
require('../hooks/useStyles/styleAttributes.js');
|
|
25
|
-
require('../../
|
|
25
|
+
require('../../Button_cjs_BXEwg-En.js');
|
|
26
26
|
require('../../Icon_cjs_DKzT-zmQ.js');
|
|
27
27
|
require('react-inlinesvg');
|
|
28
28
|
require('../hoc/urlWithAssetPrefix.js');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var DatePicker = require('../../
|
|
3
|
+
var DatePicker = require('../../DatePicker_cjs_Dxbyx8GV.js');
|
|
4
4
|
require('react/jsx-runtime');
|
|
5
5
|
require('react');
|
|
6
6
|
require('clsx');
|
|
@@ -22,7 +22,7 @@ require('../hooks.js');
|
|
|
22
22
|
require('../hooks/useStyles/styleAttributes.js');
|
|
23
23
|
require('../hooks/useStyles/useStyles.js');
|
|
24
24
|
require('lodash/maxBy');
|
|
25
|
-
require('../../
|
|
25
|
+
require('../../Button_cjs_BXEwg-En.js');
|
|
26
26
|
require('../../Icon_cjs_DKzT-zmQ.js');
|
|
27
27
|
require('react-inlinesvg');
|
|
28
28
|
require('../hoc/urlWithAssetPrefix.js');
|
|
@@ -248,7 +248,7 @@ const paginationConfig = {
|
|
|
248
248
|
},
|
|
249
249
|
};
|
|
250
250
|
function Pagination(props) {
|
|
251
|
-
const { className,
|
|
251
|
+
const { appearance, className, dataTestId, dataTour, allItemsCount = 0, pageCountArray = [10, 20, 50, 100], pageCountDesc = 'кол-во строк', pageCountDropdownItemDividerDirection, pageNumber = 0, perPageCount = 0, isDisabled, isSkeleton, isPageCount, isPageCountDropdownReversed = false, isPageLabelBuilder, onChangePage, onChangePerPageCount,
|
|
252
252
|
/**
|
|
253
253
|
* @deprecated The method should not be used
|
|
254
254
|
*/
|
|
@@ -307,16 +307,19 @@ function Pagination(props) {
|
|
|
307
307
|
}, [pageNumber]);
|
|
308
308
|
const appearanceConfig = useAppearanceConfig.useAppearanceConfig(appearance, paginationConfig, isDisabled);
|
|
309
309
|
const propsGenerator = useDevicePropsGenerator.useDevicePropsGenerator(props, appearanceConfig);
|
|
310
|
-
const { justifyContentClass, fillActiveClass, fillActiveHoverClass, fillClass, fillHoverClass, fillInputClass, fillInputHoverClass, fillInputShapeClass, fillInputShapeStrengthClass,
|
|
310
|
+
const { justifyContentClass, fillActiveClass, fillActiveHoverClass, fillClass, fillHoverClass, fillInputClass, fillInputHoverClass, fillInputShapeClass, fillInputShapeStrengthClass, textColorActiveClass, textColorActiveHoverClass, textColorClass, textColorHoverClass, textSizeClass, builderIcon, builderIconFill, builderIconFillIcon, builderIconFillSize, builderIconSize, marginPagesDisplayed, nextIcon, nextIconFill, nextIconFillIcon, nextIconFillSize, nextIconSize, pageCountDescTextColor, pageCountDescTextSize, pageCountDropdownAlignment, pageCountDropdownElevation, pageCountDropdownFill, pageCountDropdownFillHover, pageCountDropdownItemDividerFill, pageCountDropdownItemDividerSize, pageCountDropdownItemFill, pageCountDropdownItemFillActive, pageCountDropdownItemFillActiveHover, pageCountDropdownItemFillHover, pageCountDropdownItemLabelAlign, pageCountDropdownItemLabelColor, pageCountDropdownItemLabelColorActive, pageCountDropdownItemLabelColorActiveHover, pageCountDropdownItemLabelColorHover, pageCountDropdownItemLabelSize, pageCountDropdownItemLabelWrap, pageCountDropdownItemShowDivider, pageCountDropdownItemSize, pageCountDropdownItemWidth, pageCountDropdownShape, pageCountDropdownShapeStrength, pageCountInputIcon, pageCountInputIconColor, pageCountInputIconFillSize, pageCountInputIconSrc, pageCountInputTextColor, pageCountInputTextSize, pageRangeDisplayed, previousIcon, previousIconFill, previousIconFillIcon, previousIconFillSize, previousIconSize, sizeClass, } = propsGenerator;
|
|
311
311
|
const { styles: paginationStyles } = useStyles.useStyles(props);
|
|
312
|
-
return (allItemsCount > perPageCount && (jsxRuntime.jsxs("div", { className: clsx('pagination', sizeClass && `pagination_size_${sizeClass}`, isSkeleton && `pagination_skeleton`), "data-test-id": dataTestId, "data-tour": dataTour, style: paginationStyles, children: [jsxRuntime.jsx(ReactPaginate, { activeClassName: clsx('pagination__item_state_active cursor_type_default', fillActiveClass && `fill_active_${fillActiveClass}`, fillActiveHoverClass &&
|
|
313
|
-
`
|
|
312
|
+
return (allItemsCount > perPageCount && (jsxRuntime.jsxs("div", { className: clsx('pagination', sizeClass && `pagination_size_${sizeClass}`, isSkeleton && `pagination_skeleton`), "data-test-id": dataTestId, "data-tour": dataTour, style: paginationStyles, children: [jsxRuntime.jsx(ReactPaginate, { activeClassName: clsx('pagination__item_state_active cursor_type_default', fillActiveClass && `fill fill_active_${fillActiveClass}`, fillActiveHoverClass &&
|
|
313
|
+
`fill fill_active_hover_${fillActiveHoverClass}`), activeLinkClassName: clsx('pagination__item-link_state_active', textColorActiveClass &&
|
|
314
|
+
`text text-color_active_${textColorActiveClass}`, textColorActiveHoverClass &&
|
|
315
|
+
`text text-color_active_hover_${textColorActiveHoverClass}`), breakClassName: "pagination__item pagination__item_break", breakLabel: "...", breakLinkClassName: "pagination__item-link", containerClassName: clsx(className, 'pagination__container', justifyContentClass &&
|
|
314
316
|
`pagination_justify-content_${justifyContentClass}`), disabledClassName: "pagination__item_state_disabled cursor_type_default", disabledLinkClassName: "pagination__item_state_disabled",
|
|
315
317
|
// pages settings
|
|
316
318
|
forcePage: paginationPageIndex, marginPagesDisplayed: marginPagesDisplayed, nextClassName: clsx('pagination__item pagination__item_next', sizeClass && `pagination__item_size_${sizeClass}`, fillClass && `fill_${fillClass}`, fillHoverClass && `fill_hover_${fillHoverClass}`),
|
|
317
319
|
// next button
|
|
318
320
|
nextLabel: jsxRuntime.jsx(Icon.Icon, { fill: nextIconFill, fillSize: nextIconFillSize, iconFill: nextIconFillIcon, iconSize: nextIconSize, shape: "circular", SvgImage: nextIcon }), nextLinkClassName: "pagination__item-link", pageClassName: clsx('pagination__item', sizeClass && `pagination__item_size_${sizeClass}`, fillClass && `fill_${fillClass}`, fillHoverClass && `fill_hover_${fillHoverClass}`), pageCount: paginationPagesCount, pageLabelBuilder: isPageLabelBuilder &&
|
|
319
|
-
(() => (jsxRuntime.jsx(Icon.Icon, { fill: builderIconFill, fillSize: builderIconFillSize, iconFill: builderIconFillIcon, iconSize: builderIconSize, shape: "circular", SvgImage: builderIcon }))), pageLinkClassName: clsx('pagination__item-link', textSizeClass && `pagination__item-link_size_${textSizeClass}`, textColorClass && `text text-color_${textColorClass}`, textColorHoverClass && `text-color_hover_${textColorHoverClass}`), pageRangeDisplayed: pageRangeDisplayed, previousClassName: clsx('pagination__item pagination__item_previous', sizeClass && `pagination__item_size_${sizeClass}`, fillClass && `fill_${fillClass}`, fillHoverClass && `fill_hover_${fillHoverClass}`), previousLabel: jsxRuntime.jsx(Icon.Icon, { fill: previousIconFill, fillSize: previousIconFillSize, iconFill: previousIconFillIcon, iconSize: previousIconSize, shape: "circular", SvgImage: previousIcon }), previousLinkClassName: "pagination__item-link", onPageChange: _onChangePage }), isPageCount && (jsxRuntime.jsxs("div", { className: clsx(className, 'pagination__count'), children: [jsxRuntime.jsx(Text.Text, { className: "pagination__count-text", size: pageCountDescTextSize, textColor: pageCountDescTextColor, children: pageCountDesc }), jsxRuntime.jsxs("div", { className: clsx('pagination__input', 'cursor_type_pointer', fillInputClass && `fill_${fillInputClass}`, fillInputHoverClass && `fill_hover_${fillInputHoverClass}`, fillInputShapeClass && `shape_${fillInputShapeClass}`, fillInputShapeStrengthClass &&
|
|
321
|
+
(() => (jsxRuntime.jsx(Icon.Icon, { fill: builderIconFill, fillSize: builderIconFillSize, iconFill: builderIconFillIcon, iconSize: builderIconSize, shape: "circular", SvgImage: builderIcon }))), pageLinkClassName: clsx('pagination__item-link', textSizeClass && `pagination__item-link_size_${textSizeClass}`, textColorClass && `text text-color_${textColorClass}`, textColorHoverClass && `text-color_hover_${textColorHoverClass}`), pageRangeDisplayed: pageRangeDisplayed ?? 8, previousClassName: clsx('pagination__item pagination__item_previous', sizeClass && `pagination__item_size_${sizeClass}`, fillClass && `fill_${fillClass}`, fillHoverClass && `fill_hover_${fillHoverClass}`), previousLabel: jsxRuntime.jsx(Icon.Icon, { fill: previousIconFill, fillSize: previousIconFillSize, iconFill: previousIconFillIcon, iconSize: previousIconSize, shape: "circular", SvgImage: previousIcon }), previousLinkClassName: "pagination__item-link", onPageChange: _onChangePage }), isPageCount && (jsxRuntime.jsxs("div", { className: clsx(className, 'pagination__count'), children: [jsxRuntime.jsx(Text.Text, { className: "pagination__count-text", size: pageCountDescTextSize, textColor: pageCountDescTextColor, children: pageCountDesc }), jsxRuntime.jsxs("div", { className: clsx('pagination__input', 'cursor_type_pointer', fillInputClass && `fill_${fillInputClass}`, fillInputHoverClass && `fill_hover_${fillInputHoverClass}`, fillInputShapeClass && `shape_${fillInputShapeClass}`, fillInputShapeStrengthClass &&
|
|
322
|
+
`shape-strength_${fillInputShapeStrengthClass}`), onClick: onClickCommandMenuButton, children: [jsxRuntime.jsx(Text.Text, { size: pageCountInputTextSize, textColor: pageCountInputTextColor, children: activeDropdownItem }), jsxRuntime.jsx(Icon.Icon, { fillSize: pageCountInputIconFillSize, iconFill: pageCountInputIconColor, imageSrc: pageCountInputIconSrc, SvgImage: pageCountInputIcon }), jsxRuntime.jsx(DropdownItem.Dropdown, { className: "pagination__dropdown", alignment: pageCountDropdownAlignment, fill: pageCountDropdownFill, fillHover: pageCountDropdownFillHover, elevation: pageCountDropdownElevation, setIsOpen: setIsOpenDropdown, shape: pageCountDropdownShape, shapeStrength: pageCountDropdownShapeStrength, isOpen: isOpenDropdown, children: pageCountDropdownArray.map((item, index) => activeDropdownItem === item ? (jsxRuntime.jsx(DropdownItem.DropdownItem, { width: pageCountDropdownItemWidth, size: pageCountDropdownItemSize, fill: pageCountDropdownItemFill, fillActive: pageCountDropdownItemFillActive, fillActiveHover: pageCountDropdownItemFillActiveHover, fillHover: pageCountDropdownItemFillHover, label: item.toString(), labelTextAlign: pageCountDropdownItemLabelAlign, labelTextColor: pageCountDropdownItemLabelColor, labelTextColorActive: pageCountDropdownItemLabelColorActive, labelTextColorActiveHover: pageCountDropdownItemLabelColorActiveHover, labelTextColorHover: pageCountDropdownItemLabelColorHover, labelTextSize: pageCountDropdownItemLabelSize, labelTextWrap: pageCountDropdownItemLabelWrap, dividerDirection: pageCountDropdownItemDividerDirection, dividerFill: pageCountDropdownItemDividerFill, dividerSize: pageCountDropdownItemDividerSize, showDivider: index < pageCountArray.length - 1 &&
|
|
320
323
|
pageCountDropdownItemShowDivider, isActive: true, onClick: (event) => handleDropdownItemClick(event, item) }, item)) : (jsxRuntime.jsx(DropdownItem.DropdownItem, { width: pageCountDropdownItemWidth, size: pageCountDropdownItemSize, fill: pageCountDropdownItemFill, fillHover: pageCountDropdownItemFillHover, label: item.toString(), labelTextAlign: pageCountDropdownItemLabelAlign, labelTextColor: pageCountDropdownItemLabelColor, labelTextColorHover: pageCountDropdownItemLabelColorHover, labelTextSize: pageCountDropdownItemLabelSize, labelTextWrap: pageCountDropdownItemLabelWrap, dividerDirection: pageCountDropdownItemDividerDirection, dividerFill: pageCountDropdownItemDividerFill, dividerSize: pageCountDropdownItemDividerSize, showDivider: index < pageCountArray.length - 1 &&
|
|
321
324
|
pageCountDropdownItemShowDivider, isActive: false, onClick: (event) => handleDropdownItemClick(event, item) }, item))) })] })] }))] })));
|
|
322
325
|
}
|
|
@@ -8,7 +8,7 @@ var urlWithAssetPrefix = require('../hoc/urlWithAssetPrefix.js');
|
|
|
8
8
|
var useAppearanceConfig = require('../hooks/useAppearanceConfig/useAppearanceConfig.js');
|
|
9
9
|
var useDevicePropsGenerator = require('../hooks/useDevicePropsGenerator/useDevicePropsGenerator.js');
|
|
10
10
|
var useStyles = require('../hooks/useStyles/useStyles.js');
|
|
11
|
-
var Button = require('../../
|
|
11
|
+
var Button = require('../../Button_cjs_BXEwg-En.js');
|
|
12
12
|
var Group = require('../../Group_cjs_DxyobxPf.js');
|
|
13
13
|
var Text = require('../../Text_cjs_DaH5tVvz.js');
|
|
14
14
|
require('@itcase/common');
|
|
@@ -26,14 +26,32 @@ import '../context/UrlAssetPrefix.js';
|
|
|
26
26
|
import '../Link_es_P2b6ya7P.js';
|
|
27
27
|
|
|
28
28
|
const choiceAppearanceDefault = {
|
|
29
|
+
defaultMutedPrimary: {
|
|
30
|
+
fill: 'surfaceSecondary',
|
|
31
|
+
fillItem: 'surfaceSecondary',
|
|
32
|
+
fillItemActive: 'accentTertiary',
|
|
33
|
+
fillItemActiveHover: 'accentPrimary',
|
|
34
|
+
fillItemHover: 'surfaceTertiary',
|
|
35
|
+
labelTextColor: 'surfaceTextPrimary',
|
|
36
|
+
labelTextColorActive: 'surfaceTextPrimary',
|
|
37
|
+
labelTextColorActiveHover: 'accentTextPrimary',
|
|
38
|
+
borderColor: 'surfaceBorderSecondary',
|
|
39
|
+
iconAfterFill: 'surfaceItemQuaternary',
|
|
40
|
+
iconAfterFillActive: 'surfaceItemSecondary',
|
|
41
|
+
iconBeforeFill: 'surfaceItemQuaternary',
|
|
42
|
+
iconBeforeFillActive: 'surfaceItemSecondary',
|
|
43
|
+
iconFill: 'surfaceItemQuaternary',
|
|
44
|
+
iconFillActive: 'surfaceItemSecondary',
|
|
45
|
+
},
|
|
29
46
|
defaultPrimary: {
|
|
30
47
|
fill: 'surfaceSecondary',
|
|
31
48
|
fillItem: 'surfaceSecondary',
|
|
32
49
|
fillItemActive: 'accentPrimary',
|
|
33
50
|
fillItemActiveHover: 'accentHoverPrimary',
|
|
34
51
|
fillItemHover: 'surfaceTertiary',
|
|
35
|
-
labelTextActiveColor: 'accentTextPrimary',
|
|
36
52
|
labelTextColor: 'surfaceTextPrimary',
|
|
53
|
+
labelTextColorActive: 'accentTextPrimary',
|
|
54
|
+
labelTextColorActiveHover: 'accentTextPrimary',
|
|
37
55
|
borderColor: 'surfaceBorderQuaternary',
|
|
38
56
|
iconAfterFill: 'surfaceItemQuaternary',
|
|
39
57
|
iconAfterFillActive: 'surfaceItemSecondary',
|
|
@@ -148,14 +166,10 @@ const choiceAppearanceStyle = {
|
|
|
148
166
|
},
|
|
149
167
|
outlined: {
|
|
150
168
|
fill: 'none',
|
|
151
|
-
fillItem: 'none',
|
|
152
|
-
fillItemActive: 'none',
|
|
153
169
|
},
|
|
154
170
|
full: {},
|
|
155
171
|
ghost: {
|
|
156
172
|
fill: 'none',
|
|
157
|
-
fillItem: 'none',
|
|
158
|
-
fillItemActive: 'none',
|
|
159
173
|
borderColor: 'none',
|
|
160
174
|
},
|
|
161
175
|
};
|
|
@@ -196,7 +210,7 @@ const choiceConfig = {
|
|
|
196
210
|
},
|
|
197
211
|
};
|
|
198
212
|
function Choice(props) {
|
|
199
|
-
const { id,
|
|
213
|
+
const { id, appearance, className, dataTestId, dataTour, name, active = { value: undefined }, itemAfter, itemBefore, options = [], before, after, isDisabled = false, isSkeleton, isCheckbox = false, isLoading = false, setActiveSegment, } = props;
|
|
200
214
|
const controlRef = useRef(null);
|
|
201
215
|
const optionsRefs = useMemo(() => new Map(options.map((item) => [item.value, createRef()])), [options]);
|
|
202
216
|
const onChange = useCallback((event, item) => {
|
|
@@ -205,7 +219,7 @@ function Choice(props) {
|
|
|
205
219
|
}, [isCheckbox, setActiveSegment]);
|
|
206
220
|
const appearanceConfig = useAppearanceConfig(appearance, choiceConfig, isDisabled);
|
|
207
221
|
const propsGenerator = useDevicePropsGenerator(props, appearanceConfig);
|
|
208
|
-
const { size, fillClass, fillItemActiveClass, fillItemActiveDisabledClass, fillItemActiveHoverClass, fillItemClass, fillItemDisabledClass, fillItemHoverClass,
|
|
222
|
+
const { size, fillClass, fillItemActiveClass, fillItemActiveDisabledClass, fillItemActiveHoverClass, fillItemClass, fillItemDisabledClass, fillItemHoverClass, labelTextColor, labelTextColorActive, labelTextColorActiveHover, labelTextColorHover, labelTextSize, labelTextWeight, labelTextWrap, borderColorClass, borderTypeClass, borderWidthClass, iconAfterFill, iconAfterFillActive, iconAfterFillDisabled, iconAfterSize, iconBeforeFill, iconBeforeFillActive, iconBeforeFillDisabled, iconBeforeSize, iconFill, iconFillActive, iconFillDisabled, iconSize, shapeClass, shapeStrengthClass, wrapClass, } = propsGenerator;
|
|
209
223
|
const { styles } = useStyles(props);
|
|
210
224
|
return (jsxs("div", { id: id, className: clsx(className, 'choice', size && `choice_size_${size}`, fillClass && `fill_${fillClass}`, wrapClass && `choice_wrap_${wrapClass}`, shapeClass && `shape_${shapeClass}`, shapeStrengthClass && `shape-strength_${shapeStrengthClass}`, isSkeleton && `choice_skeleton`), ref: controlRef, "data-test-id": dataTestId && `${dataTestId}Choice`, "data-tour": dataTour, style: styles, children: [before && jsx("div", { className: "choice__before", children: before }), isLoading ? (jsx(Loader, { width: "fill", height: "fill", fill: "surfacePrimary", itemFill: "surfaceItemAccent" })) : (jsx(React.Fragment, { children: options.map((item) => {
|
|
211
225
|
const isActive = typeof active === 'object'
|
|
@@ -228,9 +242,9 @@ function Choice(props) {
|
|
|
228
242
|
: fillItemDisabledClass &&
|
|
229
243
|
`fill_disabled_${fillItemDisabledClass}`, !isActive && isDisabled && 'choice__item_state_disabled', isActive &&
|
|
230
244
|
isDisabled &&
|
|
231
|
-
'choice__item_active_state_disabled', isActive && 'choice__item_active'), ref: optionsRefs.get(item.value), children: [jsx("input", { id: `${name}-${item.value}`, className: "choice__item-radio", type: isCheckbox ? 'checkbox' : 'radio', name: name,
|
|
245
|
+
'choice__item_active_state_disabled', isActive && 'choice__item_active'), ref: optionsRefs.get(item.value), children: [jsx("input", { id: `${name}-${item.value}`, className: "choice__item-radio", type: isCheckbox ? 'checkbox' : 'radio', name: name, checked: isActive, disabled: isDisabled, value: item.value, onChange: (event) => onChange(event, item) }), jsxs("label", { className: clsx('choice__item-label', isDisabled && 'choice__item-label_state_disabled'), htmlFor: `${name}-${item.value}`, children: [itemBefore, (item.iconBefore || item.iconBeforeActive) && (jsx(Icon, { className: "choice__item-icon", iconFill: iconBeforeFill, iconFillActive: iconBeforeFillActive, iconFillDisabled: iconBeforeFillDisabled, iconSize: iconBeforeSize, SvgImage: isActive
|
|
232
246
|
? item.iconBeforeActive || item.iconBefore
|
|
233
|
-
: item.iconBefore, isActive: isActive })), item.label && (jsx(Text, { size: labelTextSize, textColor: labelTextColor, textColorActive:
|
|
247
|
+
: item.iconBefore, isActive: isActive, isDisabled: isDisabled })), item.label && (jsx(Text, { size: labelTextSize, textColor: labelTextColor, textColorActive: labelTextColorActive, textColorActiveHover: labelTextColorActiveHover, textColorHover: labelTextColorHover, textWeight: labelTextWeight, textWrap: labelTextWrap, isActive: isActive, children: item.label })), (item.icon || item.iconActive) && (jsx(Icon, { className: "choice__item-icon", iconFill: iconFill, iconFillActive: iconFillActive, iconFillDisabled: iconFillDisabled, iconSize: iconSize, SvgImage: isActive ? item.iconActive || item.icon : item.icon, isActive: isActive })), (item.iconAfter || item.iconAfterActive) && (jsx(Icon, { className: "choice__item-icon", iconFill: iconAfterFill, iconFillActive: iconAfterFillActive, iconFillDisabled: iconAfterFillDisabled, iconSize: iconAfterSize, SvgImage: isActive
|
|
234
248
|
? item.iconAfterActive || item.iconAfter
|
|
235
249
|
: item.iconAfter, isActive: isActive })), itemAfter] })] }, `${name}-${item.value}`));
|
|
236
250
|
}) })), after && jsx("div", { className: "choice__after", children: after })] }));
|
|
@@ -4,7 +4,7 @@ import clsx from 'clsx';
|
|
|
4
4
|
import Cookies from 'js-cookie';
|
|
5
5
|
import { useAppearanceConfig } from '../hooks/useAppearanceConfig/useAppearanceConfig.js';
|
|
6
6
|
import { useDevicePropsGenerator } from '../hooks/useDevicePropsGenerator/useDevicePropsGenerator.js';
|
|
7
|
-
import { B as Button } from '../
|
|
7
|
+
import { B as Button } from '../Button_es_DEn6z83v.js';
|
|
8
8
|
import { T as Text } from '../Text_es_RDU9GLCV.js';
|
|
9
9
|
import 'lodash/camelCase';
|
|
10
10
|
import 'lodash/castArray';
|
|
@@ -2,7 +2,7 @@ import { jsx, jsxs } from 'react/jsx-runtime';
|
|
|
2
2
|
import { useCallback } from 'react';
|
|
3
3
|
import clsx from 'clsx';
|
|
4
4
|
import { DATE_PERIOD_INTERVALS } from '@itcase/common';
|
|
5
|
-
import { D as DatePickerInput } from '../
|
|
5
|
+
import { D as DatePickerInput } from '../DatePicker_es_mX0NSjO5.js';
|
|
6
6
|
import { useAppearanceConfig } from '../hooks/useAppearanceConfig/useAppearanceConfig.js';
|
|
7
7
|
import { useDevicePropsGenerator } from '../hooks/useDevicePropsGenerator/useDevicePropsGenerator.js';
|
|
8
8
|
import { b as ChipsGroup, C as Chips } from '../ChipsGroup_es_CzVlqaHv.js';
|
|
@@ -20,7 +20,7 @@ import 'react-responsive';
|
|
|
20
20
|
import '../utils/setViewportProperty.js';
|
|
21
21
|
import '../hooks.js';
|
|
22
22
|
import '../hooks/useStyles/styleAttributes.js';
|
|
23
|
-
import '../
|
|
23
|
+
import '../Button_es_DEn6z83v.js';
|
|
24
24
|
import '../Icon_es_5JUPM7bP.js';
|
|
25
25
|
import 'react-inlinesvg';
|
|
26
26
|
import '../hoc/urlWithAssetPrefix.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { D as DatePickerInput, a as datePickerAppearance, d as datePickerConfig } from '../
|
|
1
|
+
export { D as DatePickerInput, a as datePickerAppearance, d as datePickerConfig } from '../DatePicker_es_mX0NSjO5.js';
|
|
2
2
|
import 'react/jsx-runtime';
|
|
3
3
|
import 'react';
|
|
4
4
|
import 'clsx';
|
|
@@ -20,7 +20,7 @@ import '../hooks.js';
|
|
|
20
20
|
import '../hooks/useStyles/styleAttributes.js';
|
|
21
21
|
import '../hooks/useStyles/useStyles.js';
|
|
22
22
|
import 'lodash/maxBy';
|
|
23
|
-
import '../
|
|
23
|
+
import '../Button_es_DEn6z83v.js';
|
|
24
24
|
import '../Icon_es_5JUPM7bP.js';
|
|
25
25
|
import 'react-inlinesvg';
|
|
26
26
|
import '../hoc/urlWithAssetPrefix.js';
|
|
@@ -246,7 +246,7 @@ const paginationConfig = {
|
|
|
246
246
|
},
|
|
247
247
|
};
|
|
248
248
|
function Pagination(props) {
|
|
249
|
-
const { className,
|
|
249
|
+
const { appearance, className, dataTestId, dataTour, allItemsCount = 0, pageCountArray = [10, 20, 50, 100], pageCountDesc = 'кол-во строк', pageCountDropdownItemDividerDirection, pageNumber = 0, perPageCount = 0, isDisabled, isSkeleton, isPageCount, isPageCountDropdownReversed = false, isPageLabelBuilder, onChangePage, onChangePerPageCount,
|
|
250
250
|
/**
|
|
251
251
|
* @deprecated The method should not be used
|
|
252
252
|
*/
|
|
@@ -305,16 +305,19 @@ function Pagination(props) {
|
|
|
305
305
|
}, [pageNumber]);
|
|
306
306
|
const appearanceConfig = useAppearanceConfig(appearance, paginationConfig, isDisabled);
|
|
307
307
|
const propsGenerator = useDevicePropsGenerator(props, appearanceConfig);
|
|
308
|
-
const { justifyContentClass, fillActiveClass, fillActiveHoverClass, fillClass, fillHoverClass, fillInputClass, fillInputHoverClass, fillInputShapeClass, fillInputShapeStrengthClass,
|
|
308
|
+
const { justifyContentClass, fillActiveClass, fillActiveHoverClass, fillClass, fillHoverClass, fillInputClass, fillInputHoverClass, fillInputShapeClass, fillInputShapeStrengthClass, textColorActiveClass, textColorActiveHoverClass, textColorClass, textColorHoverClass, textSizeClass, builderIcon, builderIconFill, builderIconFillIcon, builderIconFillSize, builderIconSize, marginPagesDisplayed, nextIcon, nextIconFill, nextIconFillIcon, nextIconFillSize, nextIconSize, pageCountDescTextColor, pageCountDescTextSize, pageCountDropdownAlignment, pageCountDropdownElevation, pageCountDropdownFill, pageCountDropdownFillHover, pageCountDropdownItemDividerFill, pageCountDropdownItemDividerSize, pageCountDropdownItemFill, pageCountDropdownItemFillActive, pageCountDropdownItemFillActiveHover, pageCountDropdownItemFillHover, pageCountDropdownItemLabelAlign, pageCountDropdownItemLabelColor, pageCountDropdownItemLabelColorActive, pageCountDropdownItemLabelColorActiveHover, pageCountDropdownItemLabelColorHover, pageCountDropdownItemLabelSize, pageCountDropdownItemLabelWrap, pageCountDropdownItemShowDivider, pageCountDropdownItemSize, pageCountDropdownItemWidth, pageCountDropdownShape, pageCountDropdownShapeStrength, pageCountInputIcon, pageCountInputIconColor, pageCountInputIconFillSize, pageCountInputIconSrc, pageCountInputTextColor, pageCountInputTextSize, pageRangeDisplayed, previousIcon, previousIconFill, previousIconFillIcon, previousIconFillSize, previousIconSize, sizeClass, } = propsGenerator;
|
|
309
309
|
const { styles: paginationStyles } = useStyles(props);
|
|
310
|
-
return (allItemsCount > perPageCount && (jsxs("div", { className: clsx('pagination', sizeClass && `pagination_size_${sizeClass}`, isSkeleton && `pagination_skeleton`), "data-test-id": dataTestId, "data-tour": dataTour, style: paginationStyles, children: [jsx(ReactPaginate, { activeClassName: clsx('pagination__item_state_active cursor_type_default', fillActiveClass && `fill_active_${fillActiveClass}`, fillActiveHoverClass &&
|
|
311
|
-
`
|
|
310
|
+
return (allItemsCount > perPageCount && (jsxs("div", { className: clsx('pagination', sizeClass && `pagination_size_${sizeClass}`, isSkeleton && `pagination_skeleton`), "data-test-id": dataTestId, "data-tour": dataTour, style: paginationStyles, children: [jsx(ReactPaginate, { activeClassName: clsx('pagination__item_state_active cursor_type_default', fillActiveClass && `fill fill_active_${fillActiveClass}`, fillActiveHoverClass &&
|
|
311
|
+
`fill fill_active_hover_${fillActiveHoverClass}`), activeLinkClassName: clsx('pagination__item-link_state_active', textColorActiveClass &&
|
|
312
|
+
`text text-color_active_${textColorActiveClass}`, textColorActiveHoverClass &&
|
|
313
|
+
`text text-color_active_hover_${textColorActiveHoverClass}`), breakClassName: "pagination__item pagination__item_break", breakLabel: "...", breakLinkClassName: "pagination__item-link", containerClassName: clsx(className, 'pagination__container', justifyContentClass &&
|
|
312
314
|
`pagination_justify-content_${justifyContentClass}`), disabledClassName: "pagination__item_state_disabled cursor_type_default", disabledLinkClassName: "pagination__item_state_disabled",
|
|
313
315
|
// pages settings
|
|
314
316
|
forcePage: paginationPageIndex, marginPagesDisplayed: marginPagesDisplayed, nextClassName: clsx('pagination__item pagination__item_next', sizeClass && `pagination__item_size_${sizeClass}`, fillClass && `fill_${fillClass}`, fillHoverClass && `fill_hover_${fillHoverClass}`),
|
|
315
317
|
// next button
|
|
316
318
|
nextLabel: jsx(Icon, { fill: nextIconFill, fillSize: nextIconFillSize, iconFill: nextIconFillIcon, iconSize: nextIconSize, shape: "circular", SvgImage: nextIcon }), nextLinkClassName: "pagination__item-link", pageClassName: clsx('pagination__item', sizeClass && `pagination__item_size_${sizeClass}`, fillClass && `fill_${fillClass}`, fillHoverClass && `fill_hover_${fillHoverClass}`), pageCount: paginationPagesCount, pageLabelBuilder: isPageLabelBuilder &&
|
|
317
|
-
(() => (jsx(Icon, { fill: builderIconFill, fillSize: builderIconFillSize, iconFill: builderIconFillIcon, iconSize: builderIconSize, shape: "circular", SvgImage: builderIcon }))), pageLinkClassName: clsx('pagination__item-link', textSizeClass && `pagination__item-link_size_${textSizeClass}`, textColorClass && `text text-color_${textColorClass}`, textColorHoverClass && `text-color_hover_${textColorHoverClass}`), pageRangeDisplayed: pageRangeDisplayed, previousClassName: clsx('pagination__item pagination__item_previous', sizeClass && `pagination__item_size_${sizeClass}`, fillClass && `fill_${fillClass}`, fillHoverClass && `fill_hover_${fillHoverClass}`), previousLabel: jsx(Icon, { fill: previousIconFill, fillSize: previousIconFillSize, iconFill: previousIconFillIcon, iconSize: previousIconSize, shape: "circular", SvgImage: previousIcon }), previousLinkClassName: "pagination__item-link", onPageChange: _onChangePage }), isPageCount && (jsxs("div", { className: clsx(className, 'pagination__count'), children: [jsx(Text, { className: "pagination__count-text", size: pageCountDescTextSize, textColor: pageCountDescTextColor, children: pageCountDesc }), jsxs("div", { className: clsx('pagination__input', 'cursor_type_pointer', fillInputClass && `fill_${fillInputClass}`, fillInputHoverClass && `fill_hover_${fillInputHoverClass}`, fillInputShapeClass && `shape_${fillInputShapeClass}`, fillInputShapeStrengthClass &&
|
|
319
|
+
(() => (jsx(Icon, { fill: builderIconFill, fillSize: builderIconFillSize, iconFill: builderIconFillIcon, iconSize: builderIconSize, shape: "circular", SvgImage: builderIcon }))), pageLinkClassName: clsx('pagination__item-link', textSizeClass && `pagination__item-link_size_${textSizeClass}`, textColorClass && `text text-color_${textColorClass}`, textColorHoverClass && `text-color_hover_${textColorHoverClass}`), pageRangeDisplayed: pageRangeDisplayed ?? 8, previousClassName: clsx('pagination__item pagination__item_previous', sizeClass && `pagination__item_size_${sizeClass}`, fillClass && `fill_${fillClass}`, fillHoverClass && `fill_hover_${fillHoverClass}`), previousLabel: jsx(Icon, { fill: previousIconFill, fillSize: previousIconFillSize, iconFill: previousIconFillIcon, iconSize: previousIconSize, shape: "circular", SvgImage: previousIcon }), previousLinkClassName: "pagination__item-link", onPageChange: _onChangePage }), isPageCount && (jsxs("div", { className: clsx(className, 'pagination__count'), children: [jsx(Text, { className: "pagination__count-text", size: pageCountDescTextSize, textColor: pageCountDescTextColor, children: pageCountDesc }), jsxs("div", { className: clsx('pagination__input', 'cursor_type_pointer', fillInputClass && `fill_${fillInputClass}`, fillInputHoverClass && `fill_hover_${fillInputHoverClass}`, fillInputShapeClass && `shape_${fillInputShapeClass}`, fillInputShapeStrengthClass &&
|
|
320
|
+
`shape-strength_${fillInputShapeStrengthClass}`), onClick: onClickCommandMenuButton, children: [jsx(Text, { size: pageCountInputTextSize, textColor: pageCountInputTextColor, children: activeDropdownItem }), jsx(Icon, { fillSize: pageCountInputIconFillSize, iconFill: pageCountInputIconColor, imageSrc: pageCountInputIconSrc, SvgImage: pageCountInputIcon }), jsx(Dropdown, { className: "pagination__dropdown", alignment: pageCountDropdownAlignment, fill: pageCountDropdownFill, fillHover: pageCountDropdownFillHover, elevation: pageCountDropdownElevation, setIsOpen: setIsOpenDropdown, shape: pageCountDropdownShape, shapeStrength: pageCountDropdownShapeStrength, isOpen: isOpenDropdown, children: pageCountDropdownArray.map((item, index) => activeDropdownItem === item ? (jsx(DropdownItem, { width: pageCountDropdownItemWidth, size: pageCountDropdownItemSize, fill: pageCountDropdownItemFill, fillActive: pageCountDropdownItemFillActive, fillActiveHover: pageCountDropdownItemFillActiveHover, fillHover: pageCountDropdownItemFillHover, label: item.toString(), labelTextAlign: pageCountDropdownItemLabelAlign, labelTextColor: pageCountDropdownItemLabelColor, labelTextColorActive: pageCountDropdownItemLabelColorActive, labelTextColorActiveHover: pageCountDropdownItemLabelColorActiveHover, labelTextColorHover: pageCountDropdownItemLabelColorHover, labelTextSize: pageCountDropdownItemLabelSize, labelTextWrap: pageCountDropdownItemLabelWrap, dividerDirection: pageCountDropdownItemDividerDirection, dividerFill: pageCountDropdownItemDividerFill, dividerSize: pageCountDropdownItemDividerSize, showDivider: index < pageCountArray.length - 1 &&
|
|
318
321
|
pageCountDropdownItemShowDivider, isActive: true, onClick: (event) => handleDropdownItemClick(event, item) }, item)) : (jsx(DropdownItem, { width: pageCountDropdownItemWidth, size: pageCountDropdownItemSize, fill: pageCountDropdownItemFill, fillHover: pageCountDropdownItemFillHover, label: item.toString(), labelTextAlign: pageCountDropdownItemLabelAlign, labelTextColor: pageCountDropdownItemLabelColor, labelTextColorHover: pageCountDropdownItemLabelColorHover, labelTextSize: pageCountDropdownItemLabelSize, labelTextWrap: pageCountDropdownItemLabelWrap, dividerDirection: pageCountDropdownItemDividerDirection, dividerFill: pageCountDropdownItemDividerFill, dividerSize: pageCountDropdownItemDividerSize, showDivider: index < pageCountArray.length - 1 &&
|
|
319
322
|
pageCountDropdownItemShowDivider, isActive: false, onClick: (event) => handleDropdownItemClick(event, item) }, item))) })] })] }))] })));
|
|
320
323
|
}
|
|
@@ -6,7 +6,7 @@ import { urlWithAssetPrefix } from '../hoc/urlWithAssetPrefix.js';
|
|
|
6
6
|
import { useAppearanceConfig } from '../hooks/useAppearanceConfig/useAppearanceConfig.js';
|
|
7
7
|
import { useDevicePropsGenerator } from '../hooks/useDevicePropsGenerator/useDevicePropsGenerator.js';
|
|
8
8
|
import { useStyles } from '../hooks/useStyles/useStyles.js';
|
|
9
|
-
import { B as Button } from '../
|
|
9
|
+
import { B as Button } from '../Button_es_DEn6z83v.js';
|
|
10
10
|
import { G as Group } from '../Group_es_DJ6GHMrs.js';
|
|
11
11
|
import { T as Text } from '../Text_es_RDU9GLCV.js';
|
|
12
12
|
import '@itcase/common';
|
|
@@ -13,6 +13,17 @@
|
|
|
13
13
|
@each $type in accent, primary, secondary, surface, error, warning, success,
|
|
14
14
|
danger, info, disabled {
|
|
15
15
|
@each $color in primary, secondary, tertiary, quaternary {
|
|
16
|
+
.border&_active_$(type),
|
|
17
|
+
&_active_$(type) {
|
|
18
|
+
&-border {
|
|
19
|
+
&-$(color) {
|
|
20
|
+
border-width: 1px;
|
|
21
|
+
border-color: var(--color-$(type)-border-$(color));
|
|
22
|
+
border-style: solid;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
.border&_active_hover_$(type),
|
|
16
27
|
&_active_hover_$(type) {
|
|
17
28
|
&-border {
|
|
18
29
|
&-$(color) {
|
|
@@ -54,7 +65,6 @@
|
|
|
54
65
|
}
|
|
55
66
|
}
|
|
56
67
|
}
|
|
57
|
-
&_active_$(type),
|
|
58
68
|
&_$(type) {
|
|
59
69
|
&-border {
|
|
60
70
|
&-$(color) {
|
|
@@ -79,6 +89,13 @@
|
|
|
79
89
|
alaskan-blue, khaki, dark-olive, soft-white, antique-white, yellow-gold,
|
|
80
90
|
gold, camel, walnut, stone, pebble, cocoa, coastal-gray, white, black,
|
|
81
91
|
alto, athens-gray, sonic-silver {
|
|
92
|
+
.border&_active_$(palette),
|
|
93
|
+
&_active_$(palette) {
|
|
94
|
+
border-width: 1px;
|
|
95
|
+
border-color: var(--color-palette-$(palette));
|
|
96
|
+
border-style: solid;
|
|
97
|
+
}
|
|
98
|
+
.border&_active_hover_$(palette),
|
|
82
99
|
&_active_hover_$(palette) {
|
|
83
100
|
&:hover {
|
|
84
101
|
border-width: 1px;
|
|
@@ -108,7 +125,6 @@
|
|
|
108
125
|
}
|
|
109
126
|
}
|
|
110
127
|
}
|
|
111
|
-
&_active_$(palette),
|
|
112
128
|
&_$(palette) {
|
|
113
129
|
border-width: 1px;
|
|
114
130
|
border-color: var(--color-palette-$(palette));
|
|
@@ -355,6 +355,17 @@ div.alignment {
|
|
|
355
355
|
@each $type in accent, primary, secondary, surface, error, warning, success,
|
|
356
356
|
danger, info, disabled {
|
|
357
357
|
@each $color in primary, secondary, tertiary, quaternary {
|
|
358
|
+
.border&_active_$(type),
|
|
359
|
+
&_active_$(type) {
|
|
360
|
+
&-border {
|
|
361
|
+
&-$(color) {
|
|
362
|
+
border-width: 1px;
|
|
363
|
+
border-color: var(--color-$(type)-border-$(color));
|
|
364
|
+
border-style: solid;
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
.border&_active_hover_$(type),
|
|
358
369
|
&_active_hover_$(type) {
|
|
359
370
|
&-border {
|
|
360
371
|
&-$(color) {
|
|
@@ -396,7 +407,6 @@ div.alignment {
|
|
|
396
407
|
}
|
|
397
408
|
}
|
|
398
409
|
}
|
|
399
|
-
&_active_$(type),
|
|
400
410
|
&_$(type) {
|
|
401
411
|
&-border {
|
|
402
412
|
&-$(color) {
|
|
@@ -421,6 +431,13 @@ div.alignment {
|
|
|
421
431
|
alaskan-blue, khaki, dark-olive, soft-white, antique-white, yellow-gold,
|
|
422
432
|
gold, camel, walnut, stone, pebble, cocoa, coastal-gray, white, black,
|
|
423
433
|
alto, athens-gray, sonic-silver {
|
|
434
|
+
.border&_active_$(palette),
|
|
435
|
+
&_active_$(palette) {
|
|
436
|
+
border-width: 1px;
|
|
437
|
+
border-color: var(--color-palette-$(palette));
|
|
438
|
+
border-style: solid;
|
|
439
|
+
}
|
|
440
|
+
.border&_active_hover_$(palette),
|
|
424
441
|
&_active_hover_$(palette) {
|
|
425
442
|
&:hover {
|
|
426
443
|
border-width: 1px;
|
|
@@ -450,7 +467,6 @@ div.alignment {
|
|
|
450
467
|
}
|
|
451
468
|
}
|
|
452
469
|
}
|
|
453
|
-
&_active_$(palette),
|
|
454
470
|
&_$(palette) {
|
|
455
471
|
border-width: 1px;
|
|
456
472
|
border-color: var(--color-palette-$(palette));
|
|
@@ -779,22 +795,26 @@ textarea.fill {
|
|
|
779
795
|
@each $type in accent, primary, secondary, surface, error, warning, success,
|
|
780
796
|
danger, info, disabled {
|
|
781
797
|
@each $color in primary, secondary, tertiary, quaternary {
|
|
782
|
-
&
|
|
798
|
+
&_$(type) {
|
|
799
|
+
&-item {
|
|
800
|
+
&-$(color) {
|
|
801
|
+
background: var(--color-$(type)-item-$(color));
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
&-$(color) {
|
|
805
|
+
background: var(--color-$(type)-fill-$(color));
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
&_hover_$(type) {
|
|
783
809
|
&-item {
|
|
784
810
|
&-$(color) {
|
|
785
811
|
&:hover {
|
|
786
812
|
background: var(--color-$(type)-item-$(color));
|
|
787
813
|
}
|
|
788
|
-
|
|
789
814
|
&-hover {
|
|
790
815
|
&:hover {
|
|
791
816
|
background: var(--color-$(type)-item-$(color)-hover);
|
|
792
817
|
}
|
|
793
|
-
&-active {
|
|
794
|
-
&:hover {
|
|
795
|
-
background: var(--color-$(type)-item-$(color)-active-hover);
|
|
796
|
-
}
|
|
797
|
-
}
|
|
798
818
|
}
|
|
799
819
|
}
|
|
800
820
|
}
|
|
@@ -806,16 +826,6 @@ textarea.fill {
|
|
|
806
826
|
&:hover {
|
|
807
827
|
background: var(--color-$(type)-fill-$(color)-hover);
|
|
808
828
|
}
|
|
809
|
-
&-active {
|
|
810
|
-
&:hover {
|
|
811
|
-
background: var(--color-$(type)-fill-$(color)-active-hover);
|
|
812
|
-
}
|
|
813
|
-
}
|
|
814
|
-
}
|
|
815
|
-
&-active {
|
|
816
|
-
&:hover {
|
|
817
|
-
background: var(--color-$(type)-fill-$(color)-active);
|
|
818
|
-
}
|
|
819
829
|
}
|
|
820
830
|
}
|
|
821
831
|
&-hover {
|
|
@@ -826,16 +836,34 @@ textarea.fill {
|
|
|
826
836
|
}
|
|
827
837
|
}
|
|
828
838
|
}
|
|
829
|
-
&
|
|
839
|
+
.fill&_active_$(type),
|
|
840
|
+
&_active_$(type) {
|
|
841
|
+
&-item {
|
|
842
|
+
&-$(color) {
|
|
843
|
+
background: var(--color-$(type)-item-$(color));
|
|
844
|
+
}
|
|
845
|
+
}
|
|
846
|
+
&-$(color) {
|
|
847
|
+
background: var(--color-$(type)-fill-$(color));
|
|
848
|
+
}
|
|
849
|
+
}
|
|
850
|
+
.fill&_active_hover_$(type),
|
|
851
|
+
&_active_hover_$(type) {
|
|
830
852
|
&-item {
|
|
831
853
|
&-$(color) {
|
|
832
854
|
&:hover {
|
|
833
855
|
background: var(--color-$(type)-item-$(color));
|
|
834
856
|
}
|
|
857
|
+
|
|
835
858
|
&-hover {
|
|
836
859
|
&:hover {
|
|
837
860
|
background: var(--color-$(type)-item-$(color)-hover);
|
|
838
861
|
}
|
|
862
|
+
&-active {
|
|
863
|
+
&:hover {
|
|
864
|
+
background: var(--color-$(type)-item-$(color)-active-hover);
|
|
865
|
+
}
|
|
866
|
+
}
|
|
839
867
|
}
|
|
840
868
|
}
|
|
841
869
|
}
|
|
@@ -847,6 +875,16 @@ textarea.fill {
|
|
|
847
875
|
&:hover {
|
|
848
876
|
background: var(--color-$(type)-fill-$(color)-hover);
|
|
849
877
|
}
|
|
878
|
+
&-active {
|
|
879
|
+
&:hover {
|
|
880
|
+
background: var(--color-$(type)-fill-$(color)-active-hover);
|
|
881
|
+
}
|
|
882
|
+
}
|
|
883
|
+
}
|
|
884
|
+
&-active {
|
|
885
|
+
&:hover {
|
|
886
|
+
background: var(--color-$(type)-fill-$(color)-active);
|
|
887
|
+
}
|
|
850
888
|
}
|
|
851
889
|
}
|
|
852
890
|
&-hover {
|
|
@@ -857,17 +895,6 @@ textarea.fill {
|
|
|
857
895
|
}
|
|
858
896
|
}
|
|
859
897
|
}
|
|
860
|
-
&_active_$(type),
|
|
861
|
-
&_$(type) {
|
|
862
|
-
&-item {
|
|
863
|
-
&-$(color) {
|
|
864
|
-
background: var(--color-$(type)-item-$(color));
|
|
865
|
-
}
|
|
866
|
-
}
|
|
867
|
-
&-$(color) {
|
|
868
|
-
background: var(--color-$(type)-fill-$(color));
|
|
869
|
-
}
|
|
870
|
-
}
|
|
871
898
|
}
|
|
872
899
|
}
|
|
873
900
|
@each $palette in red, neon-pink, electric-pink, hibiscus, pink, pink-citrus,
|
|
@@ -883,15 +910,11 @@ textarea.fill {
|
|
|
883
910
|
dark-olive, soft-white, antique-white, yellow-gold, gold, camel, walnut,
|
|
884
911
|
stone, pebble, cocoa, coastal-gray, white, black, alto, athens-gray,
|
|
885
912
|
sonic-silver {
|
|
886
|
-
&
|
|
887
|
-
|
|
888
|
-
background: var(--color-palette-$(palette));
|
|
889
|
-
}
|
|
913
|
+
&_$(palette) {
|
|
914
|
+
background: var(--color-palette-$(palette));
|
|
890
915
|
&-item {
|
|
891
916
|
&_$(palette) {
|
|
892
|
-
|
|
893
|
-
background: var(--color-palette-$(palette));
|
|
894
|
-
}
|
|
917
|
+
background: var(--color-palette-$(palette));
|
|
895
918
|
}
|
|
896
919
|
}
|
|
897
920
|
}
|
|
@@ -907,8 +930,8 @@ textarea.fill {
|
|
|
907
930
|
}
|
|
908
931
|
}
|
|
909
932
|
}
|
|
910
|
-
&_active_$(palette),
|
|
911
|
-
&
|
|
933
|
+
.fill&_active_$(palette),
|
|
934
|
+
&_active_$(palette) {
|
|
912
935
|
background: var(--color-palette-$(palette));
|
|
913
936
|
&-item {
|
|
914
937
|
&_$(palette) {
|
|
@@ -916,6 +939,19 @@ textarea.fill {
|
|
|
916
939
|
}
|
|
917
940
|
}
|
|
918
941
|
}
|
|
942
|
+
.fill&_active_hover_$(palette),
|
|
943
|
+
&_active_hover_$(palette) {
|
|
944
|
+
&:hover {
|
|
945
|
+
background: var(--color-palette-$(palette));
|
|
946
|
+
}
|
|
947
|
+
&-item {
|
|
948
|
+
&_$(palette) {
|
|
949
|
+
&:hover {
|
|
950
|
+
background: var(--color-palette-$(palette));
|
|
951
|
+
}
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
}
|
|
919
955
|
}
|
|
920
956
|
}
|
|
921
957
|
@each $selector in div, button, input, textarea {
|
|
@@ -1184,6 +1220,15 @@ textarea.fill {
|
|
|
1184
1220
|
@each $type in accent, primary, secondary, surface, error, warning, success,
|
|
1185
1221
|
danger, info, disabled {
|
|
1186
1222
|
@each $color in primary, secondary, tertiary, quaternary {
|
|
1223
|
+
.text&_active_$(type),
|
|
1224
|
+
&_active_$(type) {
|
|
1225
|
+
&-text {
|
|
1226
|
+
&-$(color) {
|
|
1227
|
+
color: var(--color-$(type)-text-$(color));
|
|
1228
|
+
}
|
|
1229
|
+
}
|
|
1230
|
+
}
|
|
1231
|
+
.text&_active_hover_$(type),
|
|
1187
1232
|
&_active_hover_$(type) {
|
|
1188
1233
|
&-text {
|
|
1189
1234
|
&-$(color) {
|
|
@@ -1207,7 +1252,6 @@ textarea.fill {
|
|
|
1207
1252
|
}
|
|
1208
1253
|
}
|
|
1209
1254
|
}
|
|
1210
|
-
&_active_$(type),
|
|
1211
1255
|
&_$(type) {
|
|
1212
1256
|
&-text {
|
|
1213
1257
|
&-$(color) {
|
|
@@ -1230,6 +1274,11 @@ textarea.fill {
|
|
|
1230
1274
|
alaskan-blue, khaki, dark-olive, soft-white, antique-white, yellow-gold,
|
|
1231
1275
|
gold, camel, walnut, stone, pebble, cocoa, coastal-gray, white, black,
|
|
1232
1276
|
alto, athens-gray, sonic-silver {
|
|
1277
|
+
.text&_active_$(palette),
|
|
1278
|
+
&_active_$(palette) {
|
|
1279
|
+
color: var(--color-palette-$(palette));
|
|
1280
|
+
}
|
|
1281
|
+
.text&_active_hover_$(palette),
|
|
1233
1282
|
&_active_hover_$(palette) {
|
|
1234
1283
|
&:hover {
|
|
1235
1284
|
color: var(--color-palette-$(palette));
|
|
@@ -1245,7 +1294,6 @@ textarea.fill {
|
|
|
1245
1294
|
}
|
|
1246
1295
|
}
|
|
1247
1296
|
}
|
|
1248
|
-
&_active_$(palette),
|
|
1249
1297
|
&_$(palette) {
|
|
1250
1298
|
color: var(--color-palette-$(palette));
|
|
1251
1299
|
}
|
|
@@ -12,22 +12,26 @@ textarea.fill {
|
|
|
12
12
|
@each $type in accent, primary, secondary, surface, error, warning, success,
|
|
13
13
|
danger, info, disabled {
|
|
14
14
|
@each $color in primary, secondary, tertiary, quaternary {
|
|
15
|
-
&
|
|
15
|
+
&_$(type) {
|
|
16
|
+
&-item {
|
|
17
|
+
&-$(color) {
|
|
18
|
+
background: var(--color-$(type)-item-$(color));
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
&-$(color) {
|
|
22
|
+
background: var(--color-$(type)-fill-$(color));
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
&_hover_$(type) {
|
|
16
26
|
&-item {
|
|
17
27
|
&-$(color) {
|
|
18
28
|
&:hover {
|
|
19
29
|
background: var(--color-$(type)-item-$(color));
|
|
20
30
|
}
|
|
21
|
-
|
|
22
31
|
&-hover {
|
|
23
32
|
&:hover {
|
|
24
33
|
background: var(--color-$(type)-item-$(color)-hover);
|
|
25
34
|
}
|
|
26
|
-
&-active {
|
|
27
|
-
&:hover {
|
|
28
|
-
background: var(--color-$(type)-item-$(color)-active-hover);
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
35
|
}
|
|
32
36
|
}
|
|
33
37
|
}
|
|
@@ -39,16 +43,6 @@ textarea.fill {
|
|
|
39
43
|
&:hover {
|
|
40
44
|
background: var(--color-$(type)-fill-$(color)-hover);
|
|
41
45
|
}
|
|
42
|
-
&-active {
|
|
43
|
-
&:hover {
|
|
44
|
-
background: var(--color-$(type)-fill-$(color)-active-hover);
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
&-active {
|
|
49
|
-
&:hover {
|
|
50
|
-
background: var(--color-$(type)-fill-$(color)-active);
|
|
51
|
-
}
|
|
52
46
|
}
|
|
53
47
|
}
|
|
54
48
|
&-hover {
|
|
@@ -59,16 +53,34 @@ textarea.fill {
|
|
|
59
53
|
}
|
|
60
54
|
}
|
|
61
55
|
}
|
|
62
|
-
&
|
|
56
|
+
.fill&_active_$(type),
|
|
57
|
+
&_active_$(type) {
|
|
58
|
+
&-item {
|
|
59
|
+
&-$(color) {
|
|
60
|
+
background: var(--color-$(type)-item-$(color));
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
&-$(color) {
|
|
64
|
+
background: var(--color-$(type)-fill-$(color));
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
.fill&_active_hover_$(type),
|
|
68
|
+
&_active_hover_$(type) {
|
|
63
69
|
&-item {
|
|
64
70
|
&-$(color) {
|
|
65
71
|
&:hover {
|
|
66
72
|
background: var(--color-$(type)-item-$(color));
|
|
67
73
|
}
|
|
74
|
+
|
|
68
75
|
&-hover {
|
|
69
76
|
&:hover {
|
|
70
77
|
background: var(--color-$(type)-item-$(color)-hover);
|
|
71
78
|
}
|
|
79
|
+
&-active {
|
|
80
|
+
&:hover {
|
|
81
|
+
background: var(--color-$(type)-item-$(color)-active-hover);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
72
84
|
}
|
|
73
85
|
}
|
|
74
86
|
}
|
|
@@ -80,6 +92,16 @@ textarea.fill {
|
|
|
80
92
|
&:hover {
|
|
81
93
|
background: var(--color-$(type)-fill-$(color)-hover);
|
|
82
94
|
}
|
|
95
|
+
&-active {
|
|
96
|
+
&:hover {
|
|
97
|
+
background: var(--color-$(type)-fill-$(color)-active-hover);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
&-active {
|
|
102
|
+
&:hover {
|
|
103
|
+
background: var(--color-$(type)-fill-$(color)-active);
|
|
104
|
+
}
|
|
83
105
|
}
|
|
84
106
|
}
|
|
85
107
|
&-hover {
|
|
@@ -90,17 +112,6 @@ textarea.fill {
|
|
|
90
112
|
}
|
|
91
113
|
}
|
|
92
114
|
}
|
|
93
|
-
&_active_$(type),
|
|
94
|
-
&_$(type) {
|
|
95
|
-
&-item {
|
|
96
|
-
&-$(color) {
|
|
97
|
-
background: var(--color-$(type)-item-$(color));
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
&-$(color) {
|
|
101
|
-
background: var(--color-$(type)-fill-$(color));
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
115
|
}
|
|
105
116
|
}
|
|
106
117
|
@each $palette in red, neon-pink, electric-pink, hibiscus, pink, pink-citrus,
|
|
@@ -116,15 +127,11 @@ textarea.fill {
|
|
|
116
127
|
dark-olive, soft-white, antique-white, yellow-gold, gold, camel, walnut,
|
|
117
128
|
stone, pebble, cocoa, coastal-gray, white, black, alto, athens-gray,
|
|
118
129
|
sonic-silver {
|
|
119
|
-
&
|
|
120
|
-
|
|
121
|
-
background: var(--color-palette-$(palette));
|
|
122
|
-
}
|
|
130
|
+
&_$(palette) {
|
|
131
|
+
background: var(--color-palette-$(palette));
|
|
123
132
|
&-item {
|
|
124
133
|
&_$(palette) {
|
|
125
|
-
|
|
126
|
-
background: var(--color-palette-$(palette));
|
|
127
|
-
}
|
|
134
|
+
background: var(--color-palette-$(palette));
|
|
128
135
|
}
|
|
129
136
|
}
|
|
130
137
|
}
|
|
@@ -140,8 +147,8 @@ textarea.fill {
|
|
|
140
147
|
}
|
|
141
148
|
}
|
|
142
149
|
}
|
|
143
|
-
&_active_$(palette),
|
|
144
|
-
&
|
|
150
|
+
.fill&_active_$(palette),
|
|
151
|
+
&_active_$(palette) {
|
|
145
152
|
background: var(--color-palette-$(palette));
|
|
146
153
|
&-item {
|
|
147
154
|
&_$(palette) {
|
|
@@ -149,5 +156,18 @@ textarea.fill {
|
|
|
149
156
|
}
|
|
150
157
|
}
|
|
151
158
|
}
|
|
159
|
+
.fill&_active_hover_$(palette),
|
|
160
|
+
&_active_hover_$(palette) {
|
|
161
|
+
&:hover {
|
|
162
|
+
background: var(--color-palette-$(palette));
|
|
163
|
+
}
|
|
164
|
+
&-item {
|
|
165
|
+
&_$(palette) {
|
|
166
|
+
&:hover {
|
|
167
|
+
background: var(--color-palette-$(palette));
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
152
172
|
}
|
|
153
173
|
}
|
|
@@ -9,6 +9,15 @@
|
|
|
9
9
|
@each $type in accent, primary, secondary, surface, error, warning, success,
|
|
10
10
|
danger, info, disabled {
|
|
11
11
|
@each $color in primary, secondary, tertiary, quaternary {
|
|
12
|
+
.text&_active_$(type),
|
|
13
|
+
&_active_$(type) {
|
|
14
|
+
&-text {
|
|
15
|
+
&-$(color) {
|
|
16
|
+
color: var(--color-$(type)-text-$(color));
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
.text&_active_hover_$(type),
|
|
12
21
|
&_active_hover_$(type) {
|
|
13
22
|
&-text {
|
|
14
23
|
&-$(color) {
|
|
@@ -32,7 +41,6 @@
|
|
|
32
41
|
}
|
|
33
42
|
}
|
|
34
43
|
}
|
|
35
|
-
&_active_$(type),
|
|
36
44
|
&_$(type) {
|
|
37
45
|
&-text {
|
|
38
46
|
&-$(color) {
|
|
@@ -55,6 +63,11 @@
|
|
|
55
63
|
alaskan-blue, khaki, dark-olive, soft-white, antique-white, yellow-gold,
|
|
56
64
|
gold, camel, walnut, stone, pebble, cocoa, coastal-gray, white, black,
|
|
57
65
|
alto, athens-gray, sonic-silver {
|
|
66
|
+
.text&_active_$(palette),
|
|
67
|
+
&_active_$(palette) {
|
|
68
|
+
color: var(--color-palette-$(palette));
|
|
69
|
+
}
|
|
70
|
+
.text&_active_hover_$(palette),
|
|
58
71
|
&_active_hover_$(palette) {
|
|
59
72
|
&:hover {
|
|
60
73
|
color: var(--color-palette-$(palette));
|
|
@@ -70,7 +83,6 @@
|
|
|
70
83
|
}
|
|
71
84
|
}
|
|
72
85
|
}
|
|
73
|
-
&_active_$(palette),
|
|
74
86
|
&_$(palette) {
|
|
75
87
|
color: var(--color-palette-$(palette));
|
|
76
88
|
}
|
|
@@ -1,12 +1,30 @@
|
|
|
1
1
|
declare const choiceAppearanceDefault: {
|
|
2
|
+
defaultMutedPrimary: {
|
|
3
|
+
fill: string;
|
|
4
|
+
fillItem: string;
|
|
5
|
+
fillItemActive: string;
|
|
6
|
+
fillItemActiveHover: string;
|
|
7
|
+
fillItemHover: string;
|
|
8
|
+
labelTextColor: string;
|
|
9
|
+
labelTextColorActive: string;
|
|
10
|
+
labelTextColorActiveHover: string;
|
|
11
|
+
borderColor: string;
|
|
12
|
+
iconAfterFill: string;
|
|
13
|
+
iconAfterFillActive: string;
|
|
14
|
+
iconBeforeFill: string;
|
|
15
|
+
iconBeforeFillActive: string;
|
|
16
|
+
iconFill: string;
|
|
17
|
+
iconFillActive: string;
|
|
18
|
+
};
|
|
2
19
|
defaultPrimary: {
|
|
3
20
|
fill: string;
|
|
4
21
|
fillItem: string;
|
|
5
22
|
fillItemActive: string;
|
|
6
23
|
fillItemActiveHover: string;
|
|
7
24
|
fillItemHover: string;
|
|
8
|
-
labelTextActiveColor: string;
|
|
9
25
|
labelTextColor: string;
|
|
26
|
+
labelTextColorActive: string;
|
|
27
|
+
labelTextColorActiveHover: string;
|
|
10
28
|
borderColor: string;
|
|
11
29
|
iconAfterFill: string;
|
|
12
30
|
iconAfterFillActive: string;
|
|
@@ -4,14 +4,10 @@ declare const choiceAppearanceStyle: {
|
|
|
4
4
|
};
|
|
5
5
|
outlined: {
|
|
6
6
|
fill: string;
|
|
7
|
-
fillItem: string;
|
|
8
|
-
fillItemActive: string;
|
|
9
7
|
};
|
|
10
8
|
full: {};
|
|
11
9
|
ghost: {
|
|
12
10
|
fill: string;
|
|
13
|
-
fillItem: string;
|
|
14
|
-
fillItemActive: string;
|
|
15
11
|
borderColor: string;
|
|
16
12
|
};
|
|
17
13
|
};
|