@itcase/ui 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/SelectContainer-e2544642.js +7717 -0
- package/dist/components/Accordion.js +249 -0
- package/dist/components/Avatar.js +94 -0
- package/dist/components/Background.js +90 -0
- package/dist/components/Breadcrumbs.js +239 -0
- package/dist/components/Button.js +215 -0
- package/dist/components/Caption.js +65 -0
- package/dist/components/Card.js +112 -0
- package/dist/components/Cell.js +180 -0
- package/dist/components/Checkbox.js +68 -0
- package/dist/components/Chips.js +135 -0
- package/dist/components/ContextMenu.js +149 -0
- package/dist/components/CookiesWarning.js +133 -0
- package/dist/components/Counter.js +99 -0
- package/dist/components/Divider.js +73 -0
- package/dist/components/Dropdown.js +139 -0
- package/dist/components/Emoji.js +124 -0
- package/dist/components/Fader.js +66 -0
- package/dist/components/Flex.js +264 -0
- package/dist/components/FormField.js +289 -0
- package/dist/components/Grid.js +329 -0
- package/dist/components/Group.js +132 -0
- package/dist/components/Icon.js +184 -0
- package/dist/components/Image.js +143 -0
- package/dist/components/Input.js +94 -0
- package/dist/components/Label.js +125 -0
- package/dist/components/LanguageSelector.js +86 -0
- package/dist/components/Link.js +172 -0
- package/dist/components/List.js +143 -0
- package/dist/components/Loader.js +66 -0
- package/dist/components/Logo.js +55 -0
- package/dist/components/Menu.js +86 -0
- package/dist/components/MenuItem.js +209 -0
- package/dist/components/Modal.js +69 -0
- package/dist/components/Notification.js +131 -0
- package/dist/components/Pagination.js +93 -0
- package/dist/components/Popup.js +254 -0
- package/dist/components/Profile.js +99 -0
- package/dist/components/RadioButton.js +71 -0
- package/dist/components/RangeSlider.js +2086 -0
- package/dist/components/Scrollbar.js +3872 -0
- package/dist/components/Search.js +260 -0
- package/dist/components/Segmented.js +77 -0
- package/dist/components/Select.js +49 -0
- package/dist/components/SiteMenu.js +137 -0
- package/dist/components/Swiper.js +927 -0
- package/dist/components/Switch.js +29 -0
- package/dist/components/Text.js +121 -0
- package/dist/components/Textarea.js +90 -0
- package/dist/components/Tile.js +252 -0
- package/dist/components/Title.js +146 -0
- package/dist/components/Tooltip.js +115 -0
- package/dist/components/Video.js +74 -0
- package/dist/components/Wrapper.js +119 -0
- package/dist/constants/componentProps/align.js +5 -0
- package/dist/constants/componentProps/alignDirection.js +5 -0
- package/dist/constants/componentProps/borderColor.js +5 -0
- package/dist/constants/componentProps/borderType.js +5 -0
- package/dist/constants/componentProps/captionPosition.js +5 -0
- package/dist/constants/componentProps/direction.js +5 -0
- package/dist/constants/componentProps/emojiSize.js +5 -0
- package/dist/constants/componentProps/fill.js +5 -0
- package/dist/constants/componentProps/fillGradient.js +5 -0
- package/dist/constants/componentProps/fillType.js +5 -0
- package/dist/constants/componentProps/flexAlign.js +5 -0
- package/dist/constants/componentProps/flexJustifyContent.js +5 -0
- package/dist/constants/componentProps/flexWrap.js +5 -0
- package/dist/constants/componentProps/gridAlign.js +5 -0
- package/dist/constants/componentProps/gridAlignSelf.js +5 -0
- package/dist/constants/componentProps/gridJustifyItems.js +5 -0
- package/dist/constants/componentProps/gridJustifySelf.js +5 -0
- package/dist/constants/componentProps/horizontalContentAlign.js +5 -0
- package/dist/constants/componentProps/horizontalResizeMode.js +5 -0
- package/dist/constants/componentProps/iconSize.js +5 -0
- package/dist/constants/componentProps/position.js +5 -0
- package/dist/constants/componentProps/resizeMode.js +5 -0
- package/dist/constants/componentProps/shape.js +5 -0
- package/dist/constants/componentProps/size.js +5 -0
- package/dist/constants/componentProps/stacking.js +5 -0
- package/dist/constants/componentProps/strokeColor.js +5 -0
- package/dist/constants/componentProps/textAlign.js +5 -0
- package/dist/constants/componentProps/textColor.js +5 -0
- package/dist/constants/componentProps/textColorActive.js +5 -0
- package/dist/constants/componentProps/textColorHover.js +5 -0
- package/dist/constants/componentProps/textGradient.js +5 -0
- package/dist/constants/componentProps/textStyle.js +5 -0
- package/dist/constants/componentProps/textTag.js +5 -0
- package/dist/constants/componentProps/textWeight.js +5 -0
- package/dist/constants/componentProps/titleSize.js +5 -0
- package/dist/constants/componentProps/type.js +5 -0
- package/dist/constants/componentProps/underline.js +5 -0
- package/dist/constants/componentProps/verticalContentAlign.js +5 -0
- package/dist/constants/componentProps/verticalResizeMode.js +5 -0
- package/dist/constants/componentProps/width.js +5 -0
- package/dist/constants/componentProps/wrap.js +5 -0
- package/dist/constants.js +87 -0
- package/dist/context/Notifications.js +121 -0
- package/dist/context/UIContext.js +59 -0
- package/dist/css/components/Accordion/Accordion.css +65 -0
- package/dist/css/components/Avatar/Avatar.css +28 -0
- package/dist/css/components/Background/Background.css +11 -0
- package/dist/css/components/Button/Button.css +362 -0
- package/dist/css/components/Caption/Caption.css +22 -0
- package/dist/css/components/Card/Card.css +19 -0
- package/dist/css/components/Cell/Cell.css +89 -0
- package/dist/css/components/Cell/css/__wrapper/cell__wrapper.css +7 -0
- package/dist/css/components/Cell/css/__wrapper/cell__wrapper_shape.css +15 -0
- package/dist/css/components/Checkbox/Checkbox.css +97 -0
- package/dist/css/components/Chips/Chips.css +47 -0
- package/dist/css/components/ContextMenu/ContextMenu.css +43 -0
- package/dist/css/components/ContextMenu/css/__item/context-menu__item.css +10 -0
- package/dist/css/components/CookiesWarning/CookiesWarning.css +37 -0
- package/dist/css/components/Counter/Counter.css +55 -0
- package/dist/css/components/Divider/Divider.css +78 -0
- package/dist/css/components/Dropdown/Dropdown.css +58 -0
- package/dist/css/components/Emoji/Emoji.css +104 -0
- package/dist/css/components/Emoji/css/__icon/emoji__icon-shape.css +12 -0
- package/dist/css/components/Emoji/css/__icon/emoji__icon.css +5 -0
- package/dist/css/components/Fader/Fader.css +55 -0
- package/dist/css/components/Flex/Flex.css +179 -0
- package/dist/css/components/Flex/css/__item/flex__item.css +5 -0
- package/dist/css/components/Flex/css/__item/flex__item_align.css +15 -0
- package/dist/css/components/Flex/css/__item/flex__item_direction.css +17 -0
- package/dist/css/components/Flex/css/__item/flex__item_grow.css +9 -0
- package/dist/css/components/Flex/css/__item/flex__item_justify-content.css +9 -0
- package/dist/css/components/Flex/css/__item/flex__item_shape.css +12 -0
- package/dist/css/components/Flex/css/__item/flex__item_wrap.css +9 -0
- package/dist/css/components/Grid/Grid.css +208 -0
- package/dist/css/components/Grid/css/__item/grid__item.css +4 -0
- package/dist/css/components/Grid/css/__item/grid__item_align-self.css +9 -0
- package/dist/css/components/Grid/css/__item/grid__item_column.css +17 -0
- package/dist/css/components/Grid/css/__item/grid__item_justify-self.css +9 -0
- package/dist/css/components/Grid/css/__item/grid__item_row.css +17 -0
- package/dist/css/components/Group/Group.css +106 -0
- package/dist/css/components/Icon/Icon.css +149 -0
- package/dist/css/components/Image/Image.css +106 -0
- package/dist/css/components/Input/Input.css +41 -0
- package/dist/css/components/Label/Label.css +33 -0
- package/dist/css/components/Link/Link.css +10 -0
- package/dist/css/components/List/List.css +112 -0
- package/dist/css/components/Loader/Loader.css +42 -0
- package/dist/css/components/Logo/Logo.css +17 -0
- package/dist/css/components/Menu/Menu.css +56 -0
- package/dist/css/components/MenuItem/MenuItem.css +56 -0
- package/dist/css/components/Notification/Notification.css +18 -0
- package/dist/css/components/Pagination/Pagination.css +80 -0
- package/dist/css/components/Pagination/css/__item/pagination__item.css +31 -0
- package/dist/css/components/Pagination/css/__item/pagination__item_state_active.css +16 -0
- package/dist/css/components/Pagination/css/__item/pagination__item_state_disabled.css +19 -0
- package/dist/css/components/Popup/Popup.css +49 -0
- package/dist/css/components/Profile/Profile.css +19 -0
- package/dist/css/components/RadioButton/RadioButton.css +98 -0
- package/dist/css/components/RangeSlider/RangeSlider.css +396 -0
- package/dist/css/components/Scrollbar/Scrollbar.css +2 -0
- package/dist/css/components/Search/Search.css +113 -0
- package/dist/css/components/Search/css/search-input/search-input.css +81 -0
- package/dist/css/components/Search/css/search-input/search-input_shape.css +8 -0
- package/dist/css/components/Search/css/search-result/search-result.css +6 -0
- package/dist/css/components/Search/css/search-result/search-result_shape.css +8 -0
- package/dist/css/components/Select/Select.css +236 -0
- package/dist/css/components/Select/css/__control/select__control.css +11 -0
- package/dist/css/components/Select/css/__control/select__control_fill.css +15 -0
- package/dist/css/components/Select/css/__control/select__control_shape.css +12 -0
- package/dist/css/components/Select/css/__indicators/select__indicators.css +18 -0
- package/dist/css/components/Select/css/__input-container/select__input-container.css +24 -0
- package/dist/css/components/Select/css/__menu/select__menu-notice.css +7 -0
- package/dist/css/components/Select/css/__menu/select__menu.css +36 -0
- package/dist/css/components/Select/css/__option/select__option.css +56 -0
- package/dist/css/components/Select/css/__single-value/select__single-value.css +5 -0
- package/dist/css/components/Select/css/__value-container/select__value-container.css +12 -0
- package/dist/css/components/SiteMenu/SiteMenu.css +37 -0
- package/dist/css/components/Swiper/Swiper.css +839 -0
- package/dist/css/components/Switch/Switch.css +53 -0
- package/dist/css/components/Text/Text.css +33 -0
- package/dist/css/components/Textarea/Textarea.css +40 -0
- package/dist/css/components/Tile/Tile.css +23 -0
- package/dist/css/components/Title/Title.css +71 -0
- package/dist/css/components/Tooltip/Tooltip.css +4 -0
- package/dist/css/components/Video/Video.css +37 -0
- package/dist/css/components/Wrapper/Wrapper.css +36 -0
- package/dist/css/styles/align/align_horizontal-reverse.css +50 -0
- package/dist/css/styles/align/align_horizontal.css +67 -0
- package/dist/css/styles/align/align_vertical-reverse.css +49 -0
- package/dist/css/styles/align/align_vertical.css +64 -0
- package/dist/css/styles/border/border.css +13 -0
- package/dist/css/styles/border-color/border-color.css +28 -0
- package/dist/css/styles/caret-color/caret-color.css +13 -0
- package/dist/css/styles/constraints/constraints.css +59 -0
- package/dist/css/styles/cursor/cursor.css +9 -0
- package/dist/css/styles/direction/direction.css +10 -0
- package/dist/css/styles/elevation/elevation.css +7 -0
- package/dist/css/styles/elevation/elevation_hover.css +11 -0
- package/dist/css/styles/fill/fill.css +28 -0
- package/dist/css/styles/fill/fill_active.css +22 -0
- package/dist/css/styles/fill/fill_active_hover.css +24 -0
- package/dist/css/styles/fill/fill_disabled.css +22 -0
- package/dist/css/styles/fill/fill_hover.css +34 -0
- package/dist/css/styles/fill-gradient/fill-gradient.css +15 -0
- package/dist/css/styles/height/height.css +9 -0
- package/dist/css/styles/hover/hover-fill-color.css +13 -0
- package/dist/css/styles/hover/hover-item-color.css +15 -0
- package/dist/css/styles/hover/hover-text-color.css +15 -0
- package/dist/css/styles/mediaqueries.css +66 -0
- package/dist/css/styles/mixin_elevation.css +33 -0
- package/dist/css/styles/mixin_fill-gradient.css +23 -0
- package/dist/css/styles/mixin_global.css +54 -0
- package/dist/css/styles/opacity/opacity.css +7 -0
- package/dist/css/styles/placeholder-text-color/placeholder-text-color.css +15 -0
- package/dist/css/styles/position/position.css +14 -0
- package/dist/css/styles/resize-horizontal/resize-horizontal.css +12 -0
- package/dist/css/styles/resize-vertical/resize-vertical.css +10 -0
- package/dist/css/styles/shape/shape.css +8 -0
- package/dist/css/styles/text-align/text-align.css +7 -0
- package/dist/css/styles/text-color/text-color.css +13 -0
- package/dist/css/styles/text-color/text-color_active.css +15 -0
- package/dist/css/styles/text-color/text-color_hover.css +17 -0
- package/dist/css/styles/text-color-hover/text-color-hover.css +15 -0
- package/dist/css/styles/text-decoration/text-decoration.css +9 -0
- package/dist/css/styles/text-gradient/text-gradient.css +24 -0
- package/dist/css/styles/text-style/text-style.css +9 -0
- package/dist/css/styles/text-truncate/text-truncate.css +7 -0
- package/dist/css/styles/text-weight/text-weight.css +40 -0
- package/dist/css/styles/width/width.css +9 -0
- package/dist/css/styles/word-wrap/word-wrap.css +8 -0
- package/dist/hooks/styleAttributes.js +33 -0
- package/dist/hooks/useDeviceTargetClass.js +60 -0
- package/dist/hooks/useMediaQueries.js +134 -0
- package/dist/hooks/useStyles.js +16 -0
- package/dist/index-f1505c84.js +86 -0
- package/dist/objectWithoutProperties-ea190611.js +188 -0
- package/dist/useStyles-77c3b520.js +153 -0
- package/package.json +123 -0
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
.list {
|
|
2
|
+
list-style: none;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
&__item {
|
|
6
|
+
margin: 0;
|
|
7
|
+
padding: 0;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
.list {
|
|
11
|
+
&_bullet {
|
|
12
|
+
&-fill {
|
|
13
|
+
@each $type in accent, primary, secondary, tertiary, surface, success, error {
|
|
14
|
+
&_$(type) {
|
|
15
|
+
&-item {
|
|
16
|
+
@each $color in primary, secondary, tertiary, quaternary, accent {
|
|
17
|
+
&-$(color) {
|
|
18
|
+
& .list__item {
|
|
19
|
+
&::before {
|
|
20
|
+
background: var(--color-$(type)-text-$(color));
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
.list {
|
|
32
|
+
&_bullet {
|
|
33
|
+
@each $size in h1, h2, h3, h4, h5, h6 {
|
|
34
|
+
&-size_$(size) {
|
|
35
|
+
@mixin $(size);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
.list {
|
|
41
|
+
&_bullet {
|
|
42
|
+
&-text-color {
|
|
43
|
+
@each $type in accent, primary, secondary, tertiary, surface, success, error {
|
|
44
|
+
&_$(type) {
|
|
45
|
+
&-text {
|
|
46
|
+
@each $color in primary, secondary, tertiary, quaternary, accent {
|
|
47
|
+
&-$(color) {
|
|
48
|
+
color: var(--color-$(type)-text-$(color));
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
.list {
|
|
58
|
+
&_direction {
|
|
59
|
+
&_horizontal {
|
|
60
|
+
display: flex;
|
|
61
|
+
flex-direction: row;
|
|
62
|
+
}
|
|
63
|
+
&_vertical {
|
|
64
|
+
display: flex;
|
|
65
|
+
flex-direction: column;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
@each $val in row, row-reverse, column, column-reverse {
|
|
69
|
+
&_direction_$(val) {
|
|
70
|
+
display: flex;
|
|
71
|
+
flex-direction: $(val);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
.list {
|
|
76
|
+
&_style_dot {
|
|
77
|
+
& li {
|
|
78
|
+
display: flex;
|
|
79
|
+
flex-direction: row;
|
|
80
|
+
align-items: center;
|
|
81
|
+
justify-content: flex-start;
|
|
82
|
+
gap: 16px;
|
|
83
|
+
&::before {
|
|
84
|
+
content: '';
|
|
85
|
+
display: flex;
|
|
86
|
+
min-width: 6px;
|
|
87
|
+
max-width: 6px;
|
|
88
|
+
min-height: 6px;
|
|
89
|
+
max-height: 6px;
|
|
90
|
+
background: inherit;
|
|
91
|
+
border-radius: 100%;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
.list {
|
|
97
|
+
&_style_number {
|
|
98
|
+
counter-reset: number-counter;
|
|
99
|
+
& li {
|
|
100
|
+
position: relative;
|
|
101
|
+
counter-increment: number-counter;
|
|
102
|
+
padding: 0 0 0 1.5em;
|
|
103
|
+
&::before {
|
|
104
|
+
content: counter(number-counter) '. ';
|
|
105
|
+
position: absolute;
|
|
106
|
+
left: 0;
|
|
107
|
+
top: 0;
|
|
108
|
+
text-color: inherit;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
.loader {
|
|
2
|
+
position: relative;
|
|
3
|
+
display: flex;
|
|
4
|
+
flex-flow: column wrap;
|
|
5
|
+
align-items: center;
|
|
6
|
+
&__inner {
|
|
7
|
+
position: relative;
|
|
8
|
+
}
|
|
9
|
+
&__text {
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
.loader {
|
|
13
|
+
&_set {
|
|
14
|
+
&_simple {
|
|
15
|
+
^^&__inner {
|
|
16
|
+
width: auto;
|
|
17
|
+
height: auto;
|
|
18
|
+
}
|
|
19
|
+
^^&__item {
|
|
20
|
+
width: 12px;
|
|
21
|
+
height: 12px;
|
|
22
|
+
border-radius: 100%;
|
|
23
|
+
display: inline-block;
|
|
24
|
+
margin: 4px;
|
|
25
|
+
animation: loaderFilter 1.4s infinite ease-in-out both;
|
|
26
|
+
&:first-child {
|
|
27
|
+
animation-delay: -0.32s;
|
|
28
|
+
}
|
|
29
|
+
&:nth-child(2) {
|
|
30
|
+
animation-delay: -0.16s;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
@keyframes loaderFilter {
|
|
37
|
+
0%, 80%, 100% {
|
|
38
|
+
transform: scale(0);
|
|
39
|
+
} 40% {
|
|
40
|
+
transform: scale(1.0);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.logo {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-flow: column nowrap;
|
|
4
|
+
&__link {
|
|
5
|
+
font-size: 0;
|
|
6
|
+
&-second {
|
|
7
|
+
font-size: 0;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
.logo {
|
|
12
|
+
@each $val in stretch, flex-start, flex-end, center, baseline, auto {
|
|
13
|
+
&_align-items_$(val) {
|
|
14
|
+
align-items: $(val);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
.menu {
|
|
2
|
+
&__wrapper {
|
|
3
|
+
display: flex;
|
|
4
|
+
}
|
|
5
|
+
}
|
|
6
|
+
.menu {
|
|
7
|
+
&_columns {
|
|
8
|
+
@each $val in 1,2,3,4,5,6,7,8,9,10 {
|
|
9
|
+
&_$(val) {
|
|
10
|
+
& ^^^& {
|
|
11
|
+
display: block;
|
|
12
|
+
& ^^^&__wrapper {
|
|
13
|
+
display: grid;
|
|
14
|
+
box-decoration-break: clone;
|
|
15
|
+
grid-template-columns: repeat($(val), max-content);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
.menu {
|
|
23
|
+
&_direction {
|
|
24
|
+
@each $val in row, row-reverse, column, column-reverse {
|
|
25
|
+
&_$(val) {
|
|
26
|
+
^^&__wrapper {
|
|
27
|
+
display: flex;
|
|
28
|
+
flex-direction: $(val);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
&_horizontal {
|
|
33
|
+
^^&__wrapper {
|
|
34
|
+
flex-flow: row wrap;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
&_vertical {
|
|
38
|
+
^^&__wrapper {
|
|
39
|
+
flex-flow: column wrap;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
.menu {
|
|
45
|
+
&_type {
|
|
46
|
+
@each $type in accent, primary, secondary, tertiary, surface {
|
|
47
|
+
&_$(type) {
|
|
48
|
+
@each $color in primary, secondary, tertiary, quaternary, accent {
|
|
49
|
+
& .menu-item__label {
|
|
50
|
+
color: var(--color-$(type)-text-$(color));
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
.menu-item {
|
|
2
|
+
&__label {
|
|
3
|
+
display: flex;
|
|
4
|
+
align-items: center;
|
|
5
|
+
gap: 4px;
|
|
6
|
+
align-content: center;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.menu-item {
|
|
11
|
+
&_direction {
|
|
12
|
+
&_horizontal {
|
|
13
|
+
display: flex;
|
|
14
|
+
^^&__label {
|
|
15
|
+
width: 100%;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
&_vertical {
|
|
19
|
+
display: flex;
|
|
20
|
+
^^&__label {
|
|
21
|
+
width: 100%;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.menu-item {
|
|
28
|
+
@each $val in flex-start, flex-end, center, space-between, space-around, space-evenly {
|
|
29
|
+
&_justify-content_$(val) {
|
|
30
|
+
& > a {
|
|
31
|
+
justify-content: $(val);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.menu-item {
|
|
38
|
+
&_shape {
|
|
39
|
+
&_rounded {
|
|
40
|
+
border-radius: 12px;
|
|
41
|
+
}
|
|
42
|
+
&_circular {
|
|
43
|
+
border-radius: 50%;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.menu-item {
|
|
49
|
+
&_size {
|
|
50
|
+
@each $size in xs, s, m, l, xl, xxl {
|
|
51
|
+
&_$(size) {
|
|
52
|
+
padding: var(--menu-item-size-$(size)-padding);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
.notification {
|
|
2
|
+
&__item {
|
|
3
|
+
padding: 12px;
|
|
4
|
+
&-text {
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
align-items: center;
|
|
8
|
+
text-align: center;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
.notification {
|
|
13
|
+
&&_type_global {
|
|
14
|
+
position: absolute;
|
|
15
|
+
left: 0;
|
|
16
|
+
top: 0;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
.pagination {
|
|
2
|
+
display: flex;
|
|
3
|
+
padding: 0;
|
|
4
|
+
margin: 60px 0;
|
|
5
|
+
list-style: none;
|
|
6
|
+
gap: 16px;
|
|
7
|
+
}
|
|
8
|
+
.pagination {
|
|
9
|
+
@each $val in flex-start, flex-end, center, space-between, space-around, space-evenly {
|
|
10
|
+
&_justify-content_$(val) {
|
|
11
|
+
justify-content: $(val);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
.pagination {
|
|
16
|
+
&__item {
|
|
17
|
+
border: solid 1px var(--paginator-item-default-border);
|
|
18
|
+
height: 40px;
|
|
19
|
+
width: 40px;
|
|
20
|
+
display: flex;
|
|
21
|
+
border-radius: 6px;
|
|
22
|
+
background: var(--paginator-item-default-fill);
|
|
23
|
+
cursor: pointer;
|
|
24
|
+
transition: var(--paginator-item-transition);
|
|
25
|
+
&:hover {
|
|
26
|
+
background: var(--paginator-item-default-fill-hover);
|
|
27
|
+
}
|
|
28
|
+
&-link {
|
|
29
|
+
width: 100%;
|
|
30
|
+
height: 100%;
|
|
31
|
+
justify-content: center;
|
|
32
|
+
align-items: center;
|
|
33
|
+
display: flex;
|
|
34
|
+
@mixin text-l;
|
|
35
|
+
color: var(--paginator-item-default-text);
|
|
36
|
+
}
|
|
37
|
+
&_break {
|
|
38
|
+
display: flex;
|
|
39
|
+
^&-link {
|
|
40
|
+
display: flex;
|
|
41
|
+
align-items: flex-end;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
.pagination {
|
|
47
|
+
&__item {
|
|
48
|
+
border: solid 1px var(--paginator-item-active-border);
|
|
49
|
+
&&_state {
|
|
50
|
+
&_active {
|
|
51
|
+
^^&-link {
|
|
52
|
+
color: var(--paginator-item-active-text);
|
|
53
|
+
}
|
|
54
|
+
background: var(--color-accent-primary);
|
|
55
|
+
&:hover {
|
|
56
|
+
background: var(--paginator-item-active-fill-hover);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
.pagination {
|
|
63
|
+
&__item {
|
|
64
|
+
&&_state {
|
|
65
|
+
&_disabled {
|
|
66
|
+
border: solid 1px var(--paginator-item-disabled-border);
|
|
67
|
+
background: var(--paginator-item-disabled-fill);
|
|
68
|
+
&:hover {
|
|
69
|
+
background: var(--paginator-item-disabled-fill-hover);
|
|
70
|
+
}
|
|
71
|
+
^^&-link {
|
|
72
|
+
color: var(--paginator-item-disabled-text);
|
|
73
|
+
}
|
|
74
|
+
& svg {
|
|
75
|
+
fill: var(--paginator-item-disabled-icon);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
.pagination {
|
|
2
|
+
&__item {
|
|
3
|
+
border: solid 1px var(--paginator-item-default-border);
|
|
4
|
+
height: 40px;
|
|
5
|
+
width: 40px;
|
|
6
|
+
display: flex;
|
|
7
|
+
border-radius: 6px;
|
|
8
|
+
background: var(--paginator-item-default-fill);
|
|
9
|
+
cursor: pointer;
|
|
10
|
+
transition: var(--paginator-item-transition);
|
|
11
|
+
&:hover {
|
|
12
|
+
background: var(--paginator-item-default-fill-hover);
|
|
13
|
+
}
|
|
14
|
+
&-link {
|
|
15
|
+
width: 100%;
|
|
16
|
+
height: 100%;
|
|
17
|
+
justify-content: center;
|
|
18
|
+
align-items: center;
|
|
19
|
+
display: flex;
|
|
20
|
+
@mixin text-l;
|
|
21
|
+
color: var(--paginator-item-default-text);
|
|
22
|
+
}
|
|
23
|
+
&_break {
|
|
24
|
+
display: flex;
|
|
25
|
+
^&-link {
|
|
26
|
+
display: flex;
|
|
27
|
+
align-items: flex-end;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.pagination {
|
|
2
|
+
&__item {
|
|
3
|
+
border: solid 1px var(--paginator-item-active-border);
|
|
4
|
+
&&_state {
|
|
5
|
+
&_active {
|
|
6
|
+
^^&-link {
|
|
7
|
+
color: var(--paginator-item-active-text);
|
|
8
|
+
}
|
|
9
|
+
background: var(--color-accent-primary);
|
|
10
|
+
&:hover {
|
|
11
|
+
background: var(--paginator-item-active-fill-hover);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.pagination {
|
|
2
|
+
&__item {
|
|
3
|
+
&&_state {
|
|
4
|
+
&_disabled {
|
|
5
|
+
border: solid 1px var(--paginator-item-disabled-border);
|
|
6
|
+
background: var(--paginator-item-disabled-fill);
|
|
7
|
+
&:hover {
|
|
8
|
+
background: var(--paginator-item-disabled-fill-hover);
|
|
9
|
+
}
|
|
10
|
+
^^&-link {
|
|
11
|
+
color: var(--paginator-item-disabled-text);
|
|
12
|
+
}
|
|
13
|
+
& svg {
|
|
14
|
+
fill: var(--paginator-item-disabled-icon);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
.popup {
|
|
2
|
+
width: 100%;
|
|
3
|
+
min-height: 100%;
|
|
4
|
+
position: fixed;
|
|
5
|
+
display: none;
|
|
6
|
+
top: 0;
|
|
7
|
+
left: 0;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
align-items: center;
|
|
10
|
+
z-index: 1000000;
|
|
11
|
+
&__fader {
|
|
12
|
+
z-index: -1;
|
|
13
|
+
}
|
|
14
|
+
&&_state_visible {
|
|
15
|
+
display: flex;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
.popup-content {
|
|
19
|
+
width: 100%;
|
|
20
|
+
max-width: var(--popup-max-width);
|
|
21
|
+
border-radius: 8px;
|
|
22
|
+
position: relative;
|
|
23
|
+
@mixin elevation-8;
|
|
24
|
+
&__close {
|
|
25
|
+
position: absolute;
|
|
26
|
+
top: 8px;
|
|
27
|
+
right: 8px;
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
}
|
|
30
|
+
&__title {
|
|
31
|
+
text-align: center;
|
|
32
|
+
padding: 0 0 20px 0;
|
|
33
|
+
margin: 0;
|
|
34
|
+
@mixin h3 600;
|
|
35
|
+
}
|
|
36
|
+
&__inner {
|
|
37
|
+
width: 100%;
|
|
38
|
+
}
|
|
39
|
+
&__desc {
|
|
40
|
+
text-align: center;
|
|
41
|
+
padding: 0;
|
|
42
|
+
margin: 0;
|
|
43
|
+
@mixin p;
|
|
44
|
+
}
|
|
45
|
+
&__button {
|
|
46
|
+
width: 100%;
|
|
47
|
+
margin: 24px 0 0 0;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
.radio-button {
|
|
2
|
+
position: relative;
|
|
3
|
+
cursor: pointer;
|
|
4
|
+
font-size: 0;
|
|
5
|
+
line-height: 0;
|
|
6
|
+
display: flex;
|
|
7
|
+
min-height: 16px;
|
|
8
|
+
min-width: 16px;
|
|
9
|
+
&__button {
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
appearance: none;
|
|
12
|
+
border: 0;
|
|
13
|
+
margin: 0;
|
|
14
|
+
font-size: 0;
|
|
15
|
+
line-height: 0;
|
|
16
|
+
position: absolute;
|
|
17
|
+
left: 0;
|
|
18
|
+
top: 0;
|
|
19
|
+
width: 100%;
|
|
20
|
+
height: 100%;
|
|
21
|
+
z-index: 3;
|
|
22
|
+
}
|
|
23
|
+
&__bg {
|
|
24
|
+
flex: 1;
|
|
25
|
+
display: flex;
|
|
26
|
+
z-index: 1;
|
|
27
|
+
}
|
|
28
|
+
&__mark {
|
|
29
|
+
height: calc(100% - 6px);
|
|
30
|
+
width: calc(100% - 6px);
|
|
31
|
+
position: absolute;
|
|
32
|
+
z-index: 2;
|
|
33
|
+
left: 50%;
|
|
34
|
+
top: 50%;
|
|
35
|
+
transform: translate(-50%, -50%);
|
|
36
|
+
display: none;
|
|
37
|
+
border-radius: 50%;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
.radio-button {
|
|
41
|
+
&_shape {
|
|
42
|
+
&_rounded {
|
|
43
|
+
border-radius: 4px;
|
|
44
|
+
position: relative;
|
|
45
|
+
overflow: hidden;
|
|
46
|
+
}
|
|
47
|
+
&_circular {
|
|
48
|
+
border-radius: 50%;
|
|
49
|
+
position: relative;
|
|
50
|
+
overflow: hidden;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
.radio-button {
|
|
55
|
+
&_fill {
|
|
56
|
+
&_checked {
|
|
57
|
+
@each $type in accent, primary, secondary, tertiary, surface, success, error {
|
|
58
|
+
&_$(type) {
|
|
59
|
+
@each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent, disabled, hover {
|
|
60
|
+
&-$(color) {
|
|
61
|
+
& ^^^^&__button {
|
|
62
|
+
&:checked {
|
|
63
|
+
& + ^^^^^^&__bg {
|
|
64
|
+
background: var(--color-$(type)-$(color));
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
.radio-button {
|
|
76
|
+
&_fill {
|
|
77
|
+
&_checkmark {
|
|
78
|
+
@each $type in accent, primary, secondary, tertiary, surface, success, error {
|
|
79
|
+
&_$(type) {
|
|
80
|
+
&-item {
|
|
81
|
+
@each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent, disabled, hover {
|
|
82
|
+
&-$(color) {
|
|
83
|
+
& ^^^^^&__button {
|
|
84
|
+
&:checked {
|
|
85
|
+
& ~ ^^^^^^^&__mark {
|
|
86
|
+
display: block;
|
|
87
|
+
background: var(--color-$(type)-item-$(color));
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|