@evotor-dev/ui-kit 8.0.0-beta.5 → 8.0.0-beta.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evotor-dev/ui-kit",
3
- "version": "8.0.0-beta.5",
3
+ "version": "8.0.0-beta.6",
4
4
  "homepage": "https://evotor.github.io/Evo-UI-Kit",
5
5
  "repository": {
6
6
  "type": "git",
@@ -159,7 +159,7 @@ $evo-form-min-field-width: 100px;
159
159
  &__title {
160
160
  display: flex;
161
161
  align-items: center;
162
- @include h2();
162
+ @include evo-text-header(h2);
163
163
  margin-bottom: 24px;
164
164
  font-weight: 700;
165
165
 
@@ -172,7 +172,7 @@ $evo-form-min-field-width: 100px;
172
172
  }
173
173
 
174
174
  &__subtitle {
175
- @include h4();
175
+ @include evo-text-header(h4);
176
176
  margin-bottom: 16px;
177
177
  font-weight: 700;
178
178
  }
@@ -6,18 +6,18 @@
6
6
  font-family: var(--evo-font-secondary);
7
7
 
8
8
  &_h1 {
9
- @include h1;
9
+ @include evo-text-header(h1);
10
10
  }
11
11
 
12
12
  &_h2 {
13
- @include h2;
13
+ @include evo-text-header(h2);
14
14
  }
15
15
 
16
16
  &_h3 {
17
- @include h3;
17
+ @include evo-text-header(h3);
18
18
  }
19
19
 
20
20
  &_h4 {
21
- @include h4;
21
+ @include evo-text-header(h4);
22
22
  }
23
23
  }
@@ -49,12 +49,6 @@
49
49
  pointer-events: none;
50
50
  }
51
51
 
52
- /**
53
- * @deprecated
54
- */
55
- @mixin evo-input-valid {
56
- }
57
-
58
52
  @mixin evo-input-invalid {
59
53
  border-color: $color-error !important;
60
54
  }
@@ -44,48 +44,6 @@
44
44
  }
45
45
  }
46
46
 
47
- /* title mixins*/
48
- /* @deprecated use evo-text-* mixins*/
49
- @mixin title {
50
- color: #333f48;
51
- font-weight: 700;
52
- font-family: var(--evo-font-secondary);
53
- }
54
-
55
- /* @deprecated use evo-text-* mixins*/
56
- @mixin h1 {
57
- @include evo-text-header(h1);
58
- }
59
-
60
- /* @deprecated use evo-text-* mixins*/
61
- @mixin h2 {
62
- @include evo-text-header(h2);
63
- }
64
-
65
- /* @deprecated use evo-text-* mixins*/
66
- @mixin h3 {
67
- @include evo-text-header(h3);
68
- }
69
-
70
- /* @deprecated use evo-text-* mixins*/
71
- @mixin h4 {
72
- @include evo-text-header(h4);
73
- }
74
-
75
- /**
76
- * @deprecated use evo-input-* mixins
77
- */
78
- @mixin input {
79
- @include evo-input(normal, default);
80
- }
81
-
82
- /**
83
- * @deprecated use evo-input-states mixin
84
- */
85
- @mixin evo-control-states {
86
- @include evo-input-states();
87
- }
88
-
89
47
  @mixin hide-scroll {
90
48
  -ms-overflow-style: none; /* Internet Explorer 10+ */
91
49
  scrollbar-width: none; /* Firefox */
@@ -62,14 +62,6 @@ $color-graph-8: #F87550;
62
62
  $color-graph-9: #847474;
63
63
  $color-graph-10: #7A96A5;
64
64
 
65
- /* deprecated*/
66
- $color-dark: $color-text; /* deprecated, use $color-text */
67
- $color-background-dark: $color-secondary; /* deprecated, use $color-secondary */
68
- $color-secondary-2: $color-icon-dark; /* deprecated, use $color-icon-dark */
69
- $color-text-subscription: $color-caption-text; /* deprecated, use $color-caption-text */
70
- $color-background-50: $color-background-grey-light; /* deprecated, use $color-background-grey-light */
71
- $color-grey: $color-background-grey; /* deprecated, use $color-background-grey */
72
-
73
65
  /* shadows*/
74
66
  /* ------------------------------------------------------------*/
75
67
  $shadow-1dp: 0px 1px 3px rgba(0, 0, 0, 0.2), 0px 2px 2px rgba(0, 0, 0, 0.12), 0px 0px 2px rgba(0, 0, 0, 0.14);