@mozaic-ds/vue 0.11.2 → 0.13.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/CHANGELOG.md +70 -0
- package/dist/mozaic-vue.adeo.css +1 -1
- package/dist/mozaic-vue.adeo.umd.js +1097 -305
- package/dist/mozaic-vue.common.js +1097 -305
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +1097 -305
- package/dist/mozaic-vue.umd.js.map +1 -1
- package/dist/mozaic-vue.umd.min.js +1 -1
- package/dist/mozaic-vue.umd.min.js.map +1 -1
- package/package.json +5 -6
- package/src/components/accordion/MAccordion.vue +14 -29
- package/src/components/breadcrumb/MBreadcrumb.vue +1 -0
- package/src/components/field/MField.vue +3 -0
- package/src/components/fileuploader/MFileUploader.vue +6 -1
- package/src/components/index.js +2 -0
- package/src/components/modal/MModal.vue +8 -1
- package/src/components/optionbutton/MOptionButton.vue +52 -0
- package/src/components/optionbutton/index.js +7 -0
- package/src/components/passwordinput/MPasswordInput.vue +96 -0
- package/src/components/passwordinput/index.js +7 -0
- package/src/components/phonenumber/MPhoneNumber.vue +48 -20
- package/src/components/quantityselector/MQuantitySelector.vue +6 -2
- package/src/components/ratingstars/MStarsInput.vue +7 -2
- package/src/components/select/MSelect.vue +24 -2
- package/src/components/textarea/MTextArea.vue +10 -3
- package/src/components/textinput/MTextInput.vue +22 -2
- package/src/components/textinput/MTextInputField.vue +1 -0
- package/src/index.js +2 -0
- package/types/index.d.ts +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,76 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.13.1](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.13.0...@mozaic-ds/vue@0.13.1) (2022-02-17)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **component/accordion:** fix gap between icon & label text ([#548](https://github.com/adeo/mozaic-vue/issues/548)) ([2263cf9](https://github.com/adeo/mozaic-vue/commit/2263cf9ca4898ec4d93ec8a99e76857eacb3eb51))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [0.13.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.12.1...@mozaic-ds/vue@0.13.0) (2022-02-15)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **component/accordion:** making the v-model work properly ([#544](https://github.com/adeo/mozaic-vue/issues/544)) ([43b40ec](https://github.com/adeo/mozaic-vue/commit/43b40ec3f86d26cbaabe556946871a85a9586169)), closes [#523](https://github.com/adeo/mozaic-vue/issues/523)
|
|
23
|
+
* **component/breadcrumb:** allow a router to be passed to the breadcrumb links ([#526](https://github.com/adeo/mozaic-vue/issues/526)) ([a0c09a3](https://github.com/adeo/mozaic-vue/commit/a0c09a3b618df1681a7c9580c73fa8d4891d6c14)), closes [#521](https://github.com/adeo/mozaic-vue/issues/521)
|
|
24
|
+
* **component/form:** inject class mc-field__element on field elements ([#528](https://github.com/adeo/mozaic-vue/issues/528)) ([b2e99c4](https://github.com/adeo/mozaic-vue/commit/b2e99c4fe83bb16a27e997e3641d043d9804908d))
|
|
25
|
+
* **component/optionbutton:** add new Option Button component ([#536](https://github.com/adeo/mozaic-vue/issues/536)) ([65d4c75](https://github.com/adeo/mozaic-vue/commit/65d4c75207421f00f5db762d2746093c711c0689))
|
|
26
|
+
* **component/passwordinput:** add new Password Input component ([#535](https://github.com/adeo/mozaic-vue/issues/535)) ([4c96598](https://github.com/adeo/mozaic-vue/commit/4c965987bdd7d3dbdaf688e5ce2764ff2e82bd2b))
|
|
27
|
+
* **component/select:** emit an object contains more data about selected option ([#522](https://github.com/adeo/mozaic-vue/issues/522)) ([28d49aa](https://github.com/adeo/mozaic-vue/commit/28d49aa5ad6ed7c441c49580aebec7a43b0c9ba1)), closes [#520](https://github.com/adeo/mozaic-vue/issues/520)
|
|
28
|
+
* **mdropdown:** add dropdown component ([#519](https://github.com/adeo/mozaic-vue/issues/519)) ([22dff1c](https://github.com/adeo/mozaic-vue/commit/22dff1c5035db1f183c7725a9e10b2aef3ba208a))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
# [0.13.0-beta.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.12.1...@mozaic-ds/vue@0.13.0-beta.0) (2022-02-04)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
### Features
|
|
38
|
+
|
|
39
|
+
* **component/select:** emit an object contains more data about selected option ([e765dde](https://github.com/adeo/mozaic-vue/commit/e765dde29e79993a6d9bd242a5d20b562c6eb98d)), closes [#520](https://github.com/adeo/mozaic-vue/issues/520)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
## [0.12.1](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.12.0...@mozaic-ds/vue@0.12.1) (2022-01-27)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Bug Fixes
|
|
49
|
+
|
|
50
|
+
* **components/ratings:** correct the component behaviour ([#517](https://github.com/adeo/mozaic-vue/issues/517)) ([75909cc](https://github.com/adeo/mozaic-vue/commit/75909cc60f69acee4c55826bbca828b737967c44))
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
# [0.12.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.11.1...@mozaic-ds/vue@0.12.0) (2022-01-27)
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
### Bug Fixes
|
|
60
|
+
|
|
61
|
+
* **build/tokens:** update npm tokens:build script ([eb616e3](https://github.com/adeo/mozaic-vue/commit/eb616e32ed2c0dd32997dfef9fb2d3db36ad7b31))
|
|
62
|
+
* **component/modal:** close modal on pressing esc key ([#495](https://github.com/adeo/mozaic-vue/issues/495)) ([477741f](https://github.com/adeo/mozaic-vue/commit/477741fafc02e482e700b695ac45bfb03e548962))
|
|
63
|
+
* **component/select:** making the v-model work properly ([#509](https://github.com/adeo/mozaic-vue/issues/509)) ([c9f7d8f](https://github.com/adeo/mozaic-vue/commit/c9f7d8f976876977fe2eed6e5370986d10e025ad)), closes [#469](https://github.com/adeo/mozaic-vue/issues/469)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
### Features
|
|
67
|
+
|
|
68
|
+
* **component/m-textarea:** replace the change event with input for v-model use ([#510](https://github.com/adeo/mozaic-vue/issues/510)) ([27eea19](https://github.com/adeo/mozaic-vue/commit/27eea196814a715d110e2cc3f1e4a40ad0a309ad)), closes [#505](https://github.com/adeo/mozaic-vue/issues/505)
|
|
69
|
+
* **component/ratings:** add prop required ([#465](https://github.com/adeo/mozaic-vue/issues/465)) ([b4205b4](https://github.com/adeo/mozaic-vue/commit/b4205b414521fe07a410717041558430715994f1))
|
|
70
|
+
* **component/textinput:** add time type into MTextInput component ([#485](https://github.com/adeo/mozaic-vue/issues/485)) ([5952dc6](https://github.com/adeo/mozaic-vue/commit/5952dc66d9492d54436ca2158a08c7dc998e6cbb))
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
6
76
|
## [0.11.2](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.11.2-beta.0...@mozaic-ds/vue@0.11.2) (2022-01-19)
|
|
7
77
|
|
|
8
78
|
**Note:** Version bump only for package @mozaic-ds/vue
|