@mozaic-ds/vue 0.12.1 → 0.13.0
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 +28 -0
- package/dist/mozaic-vue.adeo.css +1 -1
- package/dist/mozaic-vue.adeo.umd.js +465 -104
- package/dist/mozaic-vue.common.js +465 -104
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +465 -104
- 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 -5
- package/src/components/accordion/MAccordion.vue +11 -27
- 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/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/select/MSelect.vue +19 -2
- package/src/components/textarea/MTextArea.vue +9 -2
- package/src/components/textinput/MTextInput.vue +22 -2
- package/src/index.js +2 -0
- package/types/index.d.ts +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,34 @@
|
|
|
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.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.12.1...@mozaic-ds/vue@0.13.0) (2022-02-15)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **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)
|
|
12
|
+
* **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)
|
|
13
|
+
* **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))
|
|
14
|
+
* **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))
|
|
15
|
+
* **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))
|
|
16
|
+
* **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)
|
|
17
|
+
* **mdropdown:** add dropdown component ([#519](https://github.com/adeo/mozaic-vue/issues/519)) ([22dff1c](https://github.com/adeo/mozaic-vue/commit/22dff1c5035db1f183c7725a9e10b2aef3ba208a))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
# [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)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Features
|
|
27
|
+
|
|
28
|
+
* **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)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
6
34
|
## [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)
|
|
7
35
|
|
|
8
36
|
|