mediacube-ui 0.1.170 → 0.1.172
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.172](https://github.com/MediaCubeCo/mcui/compare/v0.1.171...v0.1.172) (2023-11-17)
|
|
6
|
+
|
|
7
|
+
### [0.1.171](https://github.com/MediaCubeCo/mcui/compare/v0.1.170...v0.1.171) (2023-11-14)
|
|
8
|
+
|
|
5
9
|
### [0.1.170](https://github.com/MediaCubeCo/mcui/compare/v0.1.169...v0.1.170) (2023-11-14)
|
|
6
10
|
|
|
7
11
|
### [0.1.169](https://github.com/MediaCubeCo/mcui/compare/v0.1.168...v0.1.169) (2023-11-10)
|
package/package.json
CHANGED
|
@@ -38,7 +38,14 @@
|
|
|
38
38
|
<br v-if="errorText" />
|
|
39
39
|
<!-- @slot Слот доп. текста под чекбоксом -->
|
|
40
40
|
<slot name="footer">
|
|
41
|
-
<mc-title
|
|
41
|
+
<mc-title
|
|
42
|
+
v-if="helpText"
|
|
43
|
+
tag-name="div"
|
|
44
|
+
variation="overline"
|
|
45
|
+
color="gray"
|
|
46
|
+
max-width="100%"
|
|
47
|
+
:ellipsis="false"
|
|
48
|
+
>
|
|
42
49
|
{{ helpText }}
|
|
43
50
|
</mc-title>
|
|
44
51
|
</slot>
|
|
@@ -81,7 +81,14 @@
|
|
|
81
81
|
<br v-if="errorText" />
|
|
82
82
|
<!-- @slot Слот доп. текста под инпутом -->
|
|
83
83
|
<slot name="footer">
|
|
84
|
-
<mc-title
|
|
84
|
+
<mc-title
|
|
85
|
+
v-if="helpText"
|
|
86
|
+
tag-name="div"
|
|
87
|
+
variation="overline"
|
|
88
|
+
color="gray"
|
|
89
|
+
max-width="100%"
|
|
90
|
+
:ellipsis="false"
|
|
91
|
+
>
|
|
85
92
|
{{ helpText }}
|
|
86
93
|
</mc-title>
|
|
87
94
|
</slot>
|
|
@@ -103,7 +103,14 @@
|
|
|
103
103
|
<br v-if="errorText" />
|
|
104
104
|
<!-- @slot Слот доп. текста под инпутом -->
|
|
105
105
|
<slot name="footer">
|
|
106
|
-
<mc-title
|
|
106
|
+
<mc-title
|
|
107
|
+
v-if="helpText"
|
|
108
|
+
tag-name="div"
|
|
109
|
+
variation="overline"
|
|
110
|
+
color="gray"
|
|
111
|
+
max-width="100%"
|
|
112
|
+
:ellipsis="false"
|
|
113
|
+
>
|
|
107
114
|
{{ helpText }}
|
|
108
115
|
</mc-title>
|
|
109
116
|
</slot>
|
package/src/styles/_mixins.scss
CHANGED
|
@@ -521,3 +521,12 @@
|
|
|
521
521
|
@mixin mirror-x {
|
|
522
522
|
transform: scale(-1, 1);
|
|
523
523
|
}
|
|
524
|
+
|
|
525
|
+
@mixin gradientText($gradient) {
|
|
526
|
+
span {
|
|
527
|
+
-webkit-box-decoration-break: clone;
|
|
528
|
+
background: $gradient;
|
|
529
|
+
-webkit-background-clip: text;
|
|
530
|
+
-webkit-text-fill-color: transparent;
|
|
531
|
+
}
|
|
532
|
+
}
|