@evotor-dev/ui-kit 6.5.0 → 6.5.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/bundles/evotor-dev-ui-kit.umd.js +88 -101
- package/bundles/evotor-dev-ui-kit.umd.js.map +1 -1
- package/esm2015/lib/components/evo-autocomplete/components/evo-autocomplete.component.js +1 -1
- package/esm2015/lib/components/evo-badge/evo-badge.component.js +1 -1
- package/esm2015/lib/components/evo-banner/evo-banner.component.js +7 -10
- package/esm2015/lib/components/evo-banner/evo-banner.module.js +7 -11
- package/esm2015/lib/components/evo-button/evo-button.component.js +1 -1
- package/esm2015/lib/components/evo-chip/evo-chip.component.js +1 -1
- package/esm2015/lib/components/evo-control-error/evo-control-error.component.js +1 -1
- package/esm2015/lib/components/evo-control-label/evo-control-label.component.js +1 -1
- package/esm2015/lib/components/evo-counter/evo-counter.component.js +1 -1
- package/esm2015/lib/components/evo-datepicker/evo-datepicker.component.js +1 -1
- package/esm2015/lib/components/evo-icon/evo-icon.component.js +15 -11
- package/esm2015/lib/components/evo-icon-button/evo-icon-button.component.js +1 -1
- package/esm2015/lib/components/evo-input/evo-input.component.js +1 -1
- package/esm2015/lib/components/evo-input-contenteditable/evo-input-contenteditable.component.js +1 -1
- package/esm2015/lib/components/evo-loader/evo-loader.component.js +4 -1
- package/esm2015/lib/components/evo-popover/evo-popover.component.js +1 -1
- package/esm2015/lib/components/evo-segmented-bar/evo-segmented-bar/evo-segmented-bar.component.js +6 -5
- package/esm2015/lib/components/evo-segmented-bar/evo-segmented-bar-button/evo-segmented-bar-button.component.js +4 -1
- package/esm2015/lib/components/evo-segmented-bar/evo-segmented-bar.module.js +9 -24
- package/esm2015/lib/components/evo-select/evo-select.component.js +1 -1
- package/esm2015/lib/components/evo-sidebar/evo-sidebar-header/evo-sidebar-header.component.js +1 -1
- package/esm2015/lib/components/evo-submenu/evo-submenu.component.js +19 -16
- package/esm2015/lib/components/evo-submenu/evo-submenu.module.js +8 -18
- package/esm2015/lib/components/evo-switcher/evo-switcher.component.js +1 -1
- package/esm2015/lib/components/evo-textarea/evo-textarea.component.js +1 -1
- package/fesm2015/evotor-dev-ui-kit.js +85 -103
- package/fesm2015/evotor-dev-ui-kit.js.map +1 -1
- package/lib/components/evo-icon/evo-icon.component.d.ts +7 -7
- package/package.json +1 -1
- package/styles/components/evo-button.scss +1 -1
- package/styles/components/evo-chip.scss +1 -3
- package/styles/components/evo-title.scss +1 -1
- package/styles/globals.scss +15 -9
- package/styles/mixins/_evo-input-mixins.scss +74 -0
- package/styles/{partials/typography/_typography-caption-mixin.scss → mixins/_evo-text-caption-mixin.scss} +5 -5
- package/styles/{partials/typography/_typography-field-typo-mixin.scss → mixins/_evo-text-field-mixin.scss} +2 -2
- package/styles/{partials/typography/_typography-header-mixin.scss → mixins/_evo-text-header-mixin.scss} +17 -17
- package/styles/{partials/typography/_typography-header-mobile-mixin.scss → mixins/_evo-text-mobile-header-mixin.scss} +10 -10
- package/styles/{partials/typography/_typography-paragraph-mixin.scss → mixins/_evo-text-paragraph-mixin.scss} +5 -12
- package/styles/{partials/typography/_typography-subtitle-mixin.scss → mixins/_evo-text-subtitle-mixin.scss} +5 -5
- package/styles/mixins/_evo-text-tips-mixin.scss +9 -0
- package/styles/mixins/_media-mixins.scss +38 -0
- package/styles/mixins.scss +26 -142
- package/styles/partials/_typography.scss +37 -39
- /package/styles/partials/{fonts.scss → _fonts.scss} +0 -0
|
@@ -1,123 +1,121 @@
|
|
|
1
1
|
@import '../mixins';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
@import './typography/typography-header-mobile-mixin';
|
|
5
|
-
@import './typography/typography-paragraph-mixin';
|
|
6
|
-
@import './typography/typography-field-typo-mixin';
|
|
7
|
-
@import './typography/typography-subtitle-mixin';
|
|
8
|
-
|
|
9
|
-
.evo-field-typo {
|
|
2
|
+
|
|
3
|
+
.evo-text-field {
|
|
10
4
|
&_label {
|
|
11
|
-
@include evo-field
|
|
5
|
+
@include evo-text-field(label);
|
|
12
6
|
}
|
|
13
7
|
|
|
14
8
|
&_placeholder {
|
|
15
|
-
@include evo-field
|
|
9
|
+
@include evo-text-field(placeholder);
|
|
16
10
|
}
|
|
17
11
|
|
|
18
12
|
&_placeholder-bold {
|
|
19
|
-
@include evo-field
|
|
13
|
+
@include evo-text-field(placeholder-bold);
|
|
20
14
|
}
|
|
21
15
|
|
|
22
16
|
&_hint {
|
|
23
|
-
@include evo-field
|
|
17
|
+
@include evo-text-field(hint);
|
|
24
18
|
}
|
|
25
19
|
|
|
26
20
|
&_error {
|
|
27
|
-
@include evo-field
|
|
21
|
+
@include evo-text-field(error);
|
|
28
22
|
}
|
|
29
23
|
}
|
|
30
24
|
|
|
31
|
-
.evo-paragraph {
|
|
25
|
+
.evo-text-paragraph {
|
|
32
26
|
&_p1 {
|
|
33
|
-
@include evo-paragraph(p1);
|
|
27
|
+
@include evo-text-paragraph(p1);
|
|
34
28
|
}
|
|
35
29
|
|
|
36
30
|
&_p2 {
|
|
37
|
-
@include evo-paragraph(p2);
|
|
31
|
+
@include evo-text-paragraph(p2);
|
|
38
32
|
}
|
|
39
33
|
|
|
40
34
|
&_p3 {
|
|
41
|
-
@include evo-paragraph(p3);
|
|
35
|
+
@include evo-text-paragraph(p3);
|
|
42
36
|
}
|
|
43
37
|
|
|
44
38
|
&_p4 {
|
|
45
|
-
@include evo-paragraph(p4);
|
|
39
|
+
@include evo-text-paragraph(p4);
|
|
46
40
|
}
|
|
47
41
|
|
|
48
42
|
&_p5 {
|
|
49
|
-
@include evo-paragraph(p5);
|
|
43
|
+
@include evo-text-paragraph(p5);
|
|
50
44
|
}
|
|
51
45
|
|
|
52
46
|
&_tips {
|
|
53
|
-
@include evo-paragraph(tips);
|
|
47
|
+
@include evo-text-paragraph(tips);
|
|
54
48
|
}
|
|
55
49
|
}
|
|
56
50
|
|
|
57
|
-
.evo-caption {
|
|
51
|
+
.evo-text-caption {
|
|
58
52
|
&_c1 {
|
|
59
|
-
@include evo-caption(c1);
|
|
53
|
+
@include evo-text-caption(c1);
|
|
60
54
|
}
|
|
61
55
|
|
|
62
56
|
&_c2 {
|
|
63
|
-
@include evo-caption(c2);
|
|
57
|
+
@include evo-text-caption(c2);
|
|
64
58
|
}
|
|
65
59
|
|
|
66
60
|
&_c3 {
|
|
67
|
-
@include evo-caption(c3);
|
|
61
|
+
@include evo-text-caption(c3);
|
|
68
62
|
}
|
|
69
63
|
}
|
|
70
64
|
|
|
71
|
-
.evo-subtitle {
|
|
65
|
+
.evo-text-subtitle {
|
|
72
66
|
&_s1 {
|
|
73
|
-
@include evo-subtitle(s1);
|
|
67
|
+
@include evo-text-subtitle(s1);
|
|
74
68
|
}
|
|
75
69
|
|
|
76
70
|
&_s2 {
|
|
77
|
-
@include evo-subtitle(s2);
|
|
71
|
+
@include evo-text-subtitle(s2);
|
|
78
72
|
}
|
|
79
73
|
}
|
|
80
74
|
|
|
81
|
-
.evo-header {
|
|
75
|
+
.evo-text-header {
|
|
82
76
|
&_h1 {
|
|
83
|
-
@include evo-header(h1);
|
|
77
|
+
@include evo-text-header(h1);
|
|
84
78
|
}
|
|
85
79
|
|
|
86
80
|
&_h2 {
|
|
87
|
-
@include evo-header(h2);
|
|
81
|
+
@include evo-text-header(h2);
|
|
88
82
|
}
|
|
89
83
|
|
|
90
84
|
&_h3 {
|
|
91
|
-
@include evo-header(h3);
|
|
85
|
+
@include evo-text-header(h3);
|
|
92
86
|
}
|
|
93
87
|
|
|
94
88
|
&_h4 {
|
|
95
|
-
@include evo-header(h4);
|
|
89
|
+
@include evo-text-header(h4);
|
|
96
90
|
}
|
|
97
91
|
|
|
98
92
|
&_h5 {
|
|
99
|
-
@include evo-header(h5);
|
|
93
|
+
@include evo-text-header(h5);
|
|
100
94
|
}
|
|
101
95
|
}
|
|
102
96
|
|
|
103
|
-
.evo-
|
|
97
|
+
.evo-text-mobile-header {
|
|
104
98
|
&_h1 {
|
|
105
|
-
@include evo-
|
|
99
|
+
@include evo-text-mobile-header(h1);
|
|
106
100
|
}
|
|
107
101
|
|
|
108
102
|
&_h2 {
|
|
109
|
-
@include evo-
|
|
103
|
+
@include evo-text-mobile-header(h2);
|
|
110
104
|
}
|
|
111
105
|
|
|
112
106
|
&_h3 {
|
|
113
|
-
@include evo-
|
|
107
|
+
@include evo-text-mobile-header(h3);
|
|
114
108
|
}
|
|
115
109
|
|
|
116
110
|
&_h4 {
|
|
117
|
-
@include evo-
|
|
111
|
+
@include evo-text-mobile-header(h4);
|
|
118
112
|
}
|
|
119
113
|
|
|
120
114
|
&_h5 {
|
|
121
|
-
@include evo-
|
|
115
|
+
@include evo-text-mobile-header(h5);
|
|
122
116
|
}
|
|
123
117
|
}
|
|
118
|
+
|
|
119
|
+
.evo-text-tips {
|
|
120
|
+
@include evo-text-tips;
|
|
121
|
+
}
|
|
File without changes
|