mediacube-ui 0.1.246 → 0.1.248
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.248](https://github.com/MediaCubeCo/mcui/compare/v0.1.247...v0.1.248) (2024-04-02)
|
|
6
|
+
|
|
7
|
+
### [0.1.247](https://github.com/MediaCubeCo/mcui/compare/v0.1.246...v0.1.247) (2024-04-01)
|
|
8
|
+
|
|
5
9
|
### [0.1.246](https://github.com/MediaCubeCo/mcui/compare/v0.1.245...v0.1.246) (2024-04-01)
|
|
6
10
|
|
|
7
11
|
### [0.1.245](https://github.com/MediaCubeCo/mcui/compare/v0.1.244...v0.1.245) (2024-03-28)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mediacube-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.248",
|
|
4
4
|
"description": "Design system for Mediacube services",
|
|
5
5
|
"author": "Mediacube",
|
|
6
6
|
"private": false,
|
|
@@ -51,7 +51,6 @@
|
|
|
51
51
|
"vue-bus": "^1.2.1",
|
|
52
52
|
"vue-click-outside": "^1.1.0",
|
|
53
53
|
"vue-cropperjs": "3.0.0",
|
|
54
|
-
"vue-imask": "6.2.2",
|
|
55
54
|
"vue-js-modal": "^2.0.0-rc.6",
|
|
56
55
|
"vue-masked-input": "^0.5.2",
|
|
57
56
|
"vue-multiselect": "^2.1.6",
|
|
@@ -110,6 +109,7 @@
|
|
|
110
109
|
"storybook-design-token": "^0.7.7",
|
|
111
110
|
"style-loader": "^1.2.1",
|
|
112
111
|
"svgstore": "^3.0.1",
|
|
112
|
+
"vue-imask": "^7.5.0",
|
|
113
113
|
"vue-lazyload": "^1.3.3",
|
|
114
114
|
"vue-loader": "^15.9.5",
|
|
115
115
|
"vue-slider-component": "^3.2.2",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
:confirm="$attrs.range"
|
|
19
19
|
:input-attr="{ name, id: `${name}-id` }"
|
|
20
20
|
:lang="lang"
|
|
21
|
+
:placeholder="placeholder"
|
|
21
22
|
:format="format"
|
|
22
23
|
:editable="editable"
|
|
23
24
|
:popup-class="popupClass"
|
|
@@ -179,6 +180,10 @@ export default {
|
|
|
179
180
|
default: false,
|
|
180
181
|
},
|
|
181
182
|
|
|
183
|
+
placeholder: {
|
|
184
|
+
type: String,
|
|
185
|
+
default: null,
|
|
186
|
+
},
|
|
182
187
|
/**
|
|
183
188
|
* Значение
|
|
184
189
|
*/
|