@mozaic-ds/vue 0.8.1-beta.0 → 0.9.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/dist/mozaic-vue.adeo.css +1 -1
- package/dist/mozaic-vue.adeo.umd.js +466 -1243
- package/dist/mozaic-vue.common.js +466 -1243
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +466 -1243
- 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 +1 -1
- package/src/components/accordion/MAccordion.vue +10 -11
- package/src/components/button/MButton.vue +6 -1
- package/src/components/quantityselector/MQuantitySelector.vue +21 -4
- package/CHANGELOG.md +0 -363
package/package.json
CHANGED
|
@@ -40,8 +40,6 @@ export default {
|
|
|
40
40
|
MIcon,
|
|
41
41
|
},
|
|
42
42
|
|
|
43
|
-
inheritAttrs: false,
|
|
44
|
-
|
|
45
43
|
props: {
|
|
46
44
|
id: {
|
|
47
45
|
type: String,
|
|
@@ -91,7 +89,8 @@ export default {
|
|
|
91
89
|
|
|
92
90
|
setLabelClasses() {
|
|
93
91
|
return {
|
|
94
|
-
'mc-accordion__header__label--with-before-slot':
|
|
92
|
+
'mc-accordion__header__label--with-before-slot':
|
|
93
|
+
this.$slots.beforeLabel,
|
|
95
94
|
'mc-accordion__header__label--with-after-slot': this.$slots.afterLabel,
|
|
96
95
|
};
|
|
97
96
|
},
|
|
@@ -101,18 +100,18 @@ export default {
|
|
|
101
100
|
open: function () {
|
|
102
101
|
this.checked = !this.checked;
|
|
103
102
|
},
|
|
104
|
-
checked:function() {
|
|
105
|
-
this.$emit('update:open',this.checked);
|
|
106
|
-
}
|
|
103
|
+
checked: function () {
|
|
104
|
+
this.$emit('update:open', this.checked);
|
|
105
|
+
},
|
|
107
106
|
},
|
|
108
107
|
|
|
109
|
-
methods:{
|
|
110
|
-
onClick(){
|
|
111
|
-
if(this.disabled === false) {
|
|
108
|
+
methods: {
|
|
109
|
+
onClick() {
|
|
110
|
+
if (this.disabled === false) {
|
|
112
111
|
this.checked = !this.checked;
|
|
113
112
|
}
|
|
114
|
-
}
|
|
115
|
-
}
|
|
113
|
+
},
|
|
114
|
+
},
|
|
116
115
|
};
|
|
117
116
|
</script>
|
|
118
117
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<a v-if="href" :href="href" class="mc-button" :class="setClasses">
|
|
2
|
+
<a v-if="href" :href="href" class="mc-button" :class="setClasses" :aria-label="ariaLabel">
|
|
3
3
|
<m-icon
|
|
4
4
|
v-if="icon && iconPosition === 'left'"
|
|
5
5
|
:id="`mc-button__${iconPosition}-icon-${id}`"
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
class="mc-button"
|
|
22
22
|
:disabled="disabled"
|
|
23
23
|
:class="setClasses"
|
|
24
|
+
:aria-label="ariaLabel"
|
|
24
25
|
@click="$emit('click', $event)"
|
|
25
26
|
>
|
|
26
27
|
<m-icon
|
|
@@ -120,6 +121,10 @@ export default {
|
|
|
120
121
|
default: 'left',
|
|
121
122
|
validator: (value) => ['left', 'right'].includes(value),
|
|
122
123
|
},
|
|
124
|
+
ariaLabel: {
|
|
125
|
+
type: String,
|
|
126
|
+
default: null,
|
|
127
|
+
},
|
|
123
128
|
},
|
|
124
129
|
|
|
125
130
|
data() {
|
|
@@ -5,10 +5,12 @@
|
|
|
5
5
|
theme="bordered"
|
|
6
6
|
icon="ControlLess32"
|
|
7
7
|
icon-position="left"
|
|
8
|
-
aria-label="
|
|
8
|
+
:aria-label="decrementAriaLabel"
|
|
9
9
|
:aria-controls="id"
|
|
10
10
|
:disabled="currentValue === valuemin"
|
|
11
11
|
:size="small ? 's' : null"
|
|
12
|
+
tabindex="-1"
|
|
13
|
+
aria-hidden="true"
|
|
12
14
|
@click="decrement()"
|
|
13
15
|
/>
|
|
14
16
|
|
|
@@ -18,12 +20,13 @@
|
|
|
18
20
|
type="number"
|
|
19
21
|
class="mc-quantity-selector__input"
|
|
20
22
|
name="quantity-selector-input"
|
|
21
|
-
aria-label="
|
|
22
|
-
aria-valuenow="
|
|
23
|
+
:aria-label="inputAriaLabel"
|
|
24
|
+
:aria-valuenow="currentValue"
|
|
23
25
|
:aria-valuemin="valuemin"
|
|
24
26
|
:aria-valuemax="valuemax"
|
|
25
27
|
:placeholder="placeholder"
|
|
26
28
|
:size="small ? 's' : null"
|
|
29
|
+
role="spinbutton"
|
|
27
30
|
@input="handle"
|
|
28
31
|
/>
|
|
29
32
|
|
|
@@ -32,10 +35,12 @@
|
|
|
32
35
|
theme="bordered"
|
|
33
36
|
icon="ControlMore32"
|
|
34
37
|
icon-position="right"
|
|
35
|
-
aria-label="
|
|
38
|
+
:aria-label="incrementAriaLabel"
|
|
36
39
|
:aria-controls="id"
|
|
37
40
|
:disabled="currentValue === valuemax"
|
|
38
41
|
:size="small ? 's' : null"
|
|
42
|
+
tabindex="-1"
|
|
43
|
+
aria-hidden="true"
|
|
39
44
|
@click="increment()"
|
|
40
45
|
/>
|
|
41
46
|
</div>
|
|
@@ -62,6 +67,18 @@ export default {
|
|
|
62
67
|
type: Number,
|
|
63
68
|
default: 0,
|
|
64
69
|
},
|
|
70
|
+
inputAriaLabel: {
|
|
71
|
+
type: String,
|
|
72
|
+
default: 'Quantity Selector',
|
|
73
|
+
},
|
|
74
|
+
decrementAriaLabel: {
|
|
75
|
+
type: String,
|
|
76
|
+
default: 'Decrement',
|
|
77
|
+
},
|
|
78
|
+
incrementAriaLabel: {
|
|
79
|
+
type: String,
|
|
80
|
+
default: 'Increment',
|
|
81
|
+
},
|
|
65
82
|
valuemin: {
|
|
66
83
|
type: Number,
|
|
67
84
|
default: 1,
|
package/CHANGELOG.md
DELETED
|
@@ -1,363 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [0.8.1-beta.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.8.0...@mozaic-ds/vue@0.8.1-beta.0) (2021-11-18)
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
* **build/postinstall:** insert postinstall.js file in the bundle package ([6918228](https://github.com/adeo/mozaic-vue/commit/6918228097077919a2878fa2df4dd7191855f6ed))
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
# [0.8.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.7.1...@mozaic-ds/vue@0.8.0) (2021-11-18)
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
### Bug Fixes
|
|
21
|
-
|
|
22
|
-
* **component/m-acccordion:** add emit open and close events ([#415](https://github.com/adeo/mozaic-vue/issues/415)) ([6fed9da](https://github.com/adeo/mozaic-vue/commit/6fed9da533288e674f71f44e3025285450ab7fab))
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
### Features
|
|
26
|
-
|
|
27
|
-
* **component/m-checkbox:** add template (slot) for label ([#412](https://github.com/adeo/mozaic-vue/issues/412)) ([52f77b0](https://github.com/adeo/mozaic-vue/commit/52f77b05fbdc6b56abc4f0da3c8ae64db34dd2e4))
|
|
28
|
-
* **component/m-datatable:** add displayTotal paging config ([#380](https://github.com/adeo/mozaic-vue/issues/380)) ([72f4ab4](https://github.com/adeo/mozaic-vue/commit/72f4ab48b87a23d1d5131c33eb27a574b2492f2b))
|
|
29
|
-
* **m-radio-group:** add radio group button ([#398](https://github.com/adeo/mozaic-vue/issues/398)) ([c870b07](https://github.com/adeo/mozaic-vue/commit/c870b07fecd4108a64302c056ffce0965d3ee799))
|
|
30
|
-
* **tools/adeo-preset:** implement the Adeo preset ([#422](https://github.com/adeo/mozaic-vue/issues/422)) ([c49e2cd](https://github.com/adeo/mozaic-vue/commit/c49e2cd09f3cf83d35d7cf35ce5be718597f5bad))
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
## [0.7.1](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.7.0...@mozaic-ds/vue@0.7.1) (2021-11-04)
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
### Bug Fixes
|
|
40
|
-
|
|
41
|
-
* **icon:** add aria-hidden attr ([#402](https://github.com/adeo/mozaic-vue/issues/402)) ([6e44450](https://github.com/adeo/mozaic-vue/commit/6e44450d2e2b035e91498e475df89454be9be247))
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
# [0.7.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.6.1...@mozaic-ds/vue@0.7.0) (2021-10-27)
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
### Bug Fixes
|
|
51
|
-
|
|
52
|
-
* **component/datatable:** correct errors on item number selector & the pagination ([3fcdf27](https://github.com/adeo/mozaic-vue/commit/3fcdf279d06d056c205b35dff2993cefb5de3eee))
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
### Features
|
|
56
|
-
|
|
57
|
-
* **component/layer:** add icon on the layer header ([#400](https://github.com/adeo/mozaic-vue/issues/400)) ([092ff4c](https://github.com/adeo/mozaic-vue/commit/092ff4c4ac029b085e4ebd7dc1af842ddd4cd3bc))
|
|
58
|
-
* **component/tab:** emit the tab object when a tab is clicked ([#396](https://github.com/adeo/mozaic-vue/issues/396)) ([599aa94](https://github.com/adeo/mozaic-vue/commit/599aa9492e7077496ae243d063f4e84428ba3901))
|
|
59
|
-
* **layer:** add an icon on the header ([#393](https://github.com/adeo/mozaic-vue/issues/393)) ([3b11662](https://github.com/adeo/mozaic-vue/commit/3b116623c81a1eaac919d7fb1c8a1ad9eccf8fd2))
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
# [0.7.0-beta.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.6.1...@mozaic-ds/vue@0.7.0-beta.0) (2021-10-25)
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
### Bug Fixes
|
|
69
|
-
|
|
70
|
-
* **component/datatable:** correct errors on item number selector & the pagination ([3fcdf27](https://github.com/adeo/mozaic-vue/commit/3fcdf279d06d056c205b35dff2993cefb5de3eee))
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
### Features
|
|
74
|
-
|
|
75
|
-
* **component/tab:** emit the tab object when a tab is clicked ([dada9fa](https://github.com/adeo/mozaic-vue/commit/dada9fa01cc673a41ca03d73f175b2278f49e704))
|
|
76
|
-
* **layer:** add an icon on the header ([#393](https://github.com/adeo/mozaic-vue/issues/393)) ([3b11662](https://github.com/adeo/mozaic-vue/commit/3b116623c81a1eaac919d7fb1c8a1ad9eccf8fd2))
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
## [0.6.2](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.6.2-beta.0...@mozaic-ds/vue@0.6.2) (2021-10-18)
|
|
83
|
-
|
|
84
|
-
**Note:** Version bump only for package @mozaic-ds/vue
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
## [0.6.2-beta.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.6.1...@mozaic-ds/vue@0.6.2-beta.0) (2021-10-18)
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
### Bug Fixes
|
|
94
|
-
|
|
95
|
-
* **component/datatable:** correct errors on item number selector & the pagination ([53febfe](https://github.com/adeo/mozaic-vue/commit/53febfedaaf19420b883e2c441f9fbfb7fa48c8c))
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
## [0.6.1](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.6.0...@mozaic-ds/vue@0.6.1) (2021-10-13)
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
### Bug Fixes
|
|
105
|
-
|
|
106
|
-
* **component/badge:** fix MBadge export typo ([#390](https://github.com/adeo/mozaic-vue/issues/390)) ([84f05e1](https://github.com/adeo/mozaic-vue/commit/84f05e1419464d3972f0a91cc822cd8d4c973825))
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
# [0.6.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.6.0-beta.0...@mozaic-ds/vue@0.6.0) (2021-10-12)
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
### Bug Fixes
|
|
116
|
-
|
|
117
|
-
* **component/toggle:** update HTML structure of the label ([#382](https://github.com/adeo/mozaic-vue/issues/382)) ([0f17821](https://github.com/adeo/mozaic-vue/commit/0f17821c41454fafb99d47df4f9e908bd2da5a6d))
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
### Features
|
|
121
|
-
|
|
122
|
-
* **component/badge:** add the new MBadge component ([#383](https://github.com/adeo/mozaic-vue/issues/383)) ([0da4a13](https://github.com/adeo/mozaic-vue/commit/0da4a1361238d44b58b90399c9308864f286d069))
|
|
123
|
-
* **component/fileuploader:** implement error management ([#386](https://github.com/adeo/mozaic-vue/issues/386)) ([b265f6b](https://github.com/adeo/mozaic-vue/commit/b265f6b4e6d9b8d48f35edd268fedb3769526591))
|
|
124
|
-
* **component/stepper:** add the new MStepper component ([#369](https://github.com/adeo/mozaic-vue/issues/369)) ([6914874](https://github.com/adeo/mozaic-vue/commit/6914874133858cd62a6e2c4edadd3fda174a1dd8))
|
|
125
|
-
* **component/stepper:** add the new MStepper component ([#387](https://github.com/adeo/mozaic-vue/issues/387)) ([e60700f](https://github.com/adeo/mozaic-vue/commit/e60700f097bb860034c753cbf539f34cb140b400))
|
|
126
|
-
* **fileuploader:** add list for uploaded files ([176171d](https://github.com/adeo/mozaic-vue/commit/176171d304cdd2768763104f928399b74a9eded2))
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
# [0.6.0-beta.1](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.6.0-beta.0...@mozaic-ds/vue@0.6.0-beta.1) (2021-10-04)
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
### Features
|
|
136
|
-
|
|
137
|
-
* **fileuploader:** add list for uploaded files ([4110ceb](https://github.com/adeo/mozaic-vue/commit/4110ceb6db69eab6a134d7c39399adde1a3f2981))
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
# [0.6.0-beta.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.5.1...@mozaic-ds/vue@0.6.0-beta.0) (2021-09-21)
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
### Bug Fixes
|
|
147
|
-
|
|
148
|
-
* **link:** remove click emission when disabled ([#368](https://github.com/adeo/mozaic-vue/issues/368)) ([84771b4](https://github.com/adeo/mozaic-vue/commit/84771b44acadc701212652ea121181c38214ed29))
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
### Features
|
|
152
|
-
|
|
153
|
-
* **pagination:** add previous and next event ([#367](https://github.com/adeo/mozaic-vue/issues/367)) ([039c55f](https://github.com/adeo/mozaic-vue/commit/039c55fc12969e141d57963882de253a46fb75d0))
|
|
154
|
-
* **pagination:** vue3 add previous and next event ([#371](https://github.com/adeo/mozaic-vue/issues/371)) ([dcb995e](https://github.com/adeo/mozaic-vue/commit/dcb995e10a3b79c56e4abc56bed63c351ea6e4a9))
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
## [0.5.1](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.5.0...@mozaic-ds/vue@0.5.1) (2021-09-09)
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
### Bug Fixes
|
|
164
|
-
|
|
165
|
-
* **component/fileuploader:** allow local import of the component ([#365](https://github.com/adeo/mozaic-vue/issues/365)) ([40da0a6](https://github.com/adeo/mozaic-vue/commit/40da0a6659d5493d4ce27d064f11ea7929489356))
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
# [0.5.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.4.1...@mozaic-ds/vue@0.5.0) (2021-09-09)
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
### Bug Fixes
|
|
175
|
-
|
|
176
|
-
* **component/layer:** add 'pointer-events: none' on the layer shadow ([2a93ac0](https://github.com/adeo/mozaic-vue/commit/2a93ac0ddcef38d2ce1af3d103dcc7eee2a1df77)), closes [#348](https://github.com/adeo/mozaic-vue/issues/348)
|
|
177
|
-
* **mquantity-selector:** remove .target.value parameter because it cause an error ([#344](https://github.com/adeo/mozaic-vue/issues/344)) ([8ab0ef8](https://github.com/adeo/mozaic-vue/commit/8ab0ef800b0eda3ddf28bc14e22686a94b41eaa9))
|
|
178
|
-
* **MTextInput:** binding native events to the component ([9c7b0b7](https://github.com/adeo/mozaic-vue/commit/9c7b0b7aaf72a140caf9e82b1f3366cdd239572a))
|
|
179
|
-
* **MTextInput:** fix binding native events ([fd4494a](https://github.com/adeo/mozaic-vue/commit/fd4494a61635e124ccc6e35042fa01efec555058))
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
### Features
|
|
183
|
-
|
|
184
|
-
* **component/fileuploader:** add MFileUploader component ([#361](https://github.com/adeo/mozaic-vue/issues/361)) ([bd78256](https://github.com/adeo/mozaic-vue/commit/bd782560fcf398cc7ad9c6a343123927ed978c77))
|
|
185
|
-
* **component/mlink:** allow to use MLink with a router ([#362](https://github.com/adeo/mozaic-vue/issues/362)) ([c7ec479](https://github.com/adeo/mozaic-vue/commit/c7ec479b1abf4f68c475ef41432780428b98d4be))
|
|
186
|
-
* **component/notification:** add new variation w/ buttons ([166868f](https://github.com/adeo/mozaic-vue/commit/166868ff8500a5842f81245bfc9dc957ab8e98a7))
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
## [0.4.2](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.4.1...@mozaic-ds/vue@0.4.2) (2021-09-02)
|
|
193
|
-
|
|
194
|
-
### Bug Fixes
|
|
195
|
-
|
|
196
|
-
* **mquantity-selector:** remove .target.value parameter because it cause an error ([#344](https://github.com/adeo/mozaic-vue/issues/344)) ([8ab0ef8](https://github.com/adeo/mozaic-vue/commit/8ab0ef800b0eda3ddf28bc14e22686a94b41eaa9))
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
## [0.4.2-beta.1](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.4.2-beta.0...@mozaic-ds/vue@0.4.2-beta.1) (2021-08-25)
|
|
200
|
-
|
|
201
|
-
### Bug Fixes
|
|
202
|
-
|
|
203
|
-
* **MTextInput:** fix binding native events ([aa5a347](https://github.com/adeo/mozaic-vue/commit/aa5a347d1970585ee5df9d95104788a24edb17cd))
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
## [0.4.2-beta.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.4.1...@mozaic-ds/vue@0.4.2-beta.0) (2021-08-25)
|
|
207
|
-
|
|
208
|
-
### Bug Fixes
|
|
209
|
-
|
|
210
|
-
* **MTextInput:** binding native events to the component ([71ddf81](https://github.com/adeo/mozaic-vue/commit/71ddf81eab8e053f80b3dd00f8ae803bc283a4a1))
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
## [0.4.1](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.4.0...@mozaic-ds/vue@0.4.1) (2021-08-24)
|
|
214
|
-
|
|
215
|
-
### Bug Fixes
|
|
216
|
-
|
|
217
|
-
* **m-quantity-selector:** update currentValue when the value prop is updated ([#331](https://github.com/adeo/mozaic-vue/issues/331)) ([38a5fc8](https://github.com/adeo/mozaic-vue/commit/38a5fc8b4cf71f884f1731f22abf86c64cc0033c))
|
|
218
|
-
* **MTab:** add an id to tab elements ([#327](https://github.com/adeo/mozaic-vue/issues/327)) ([9fb44fd](https://github.com/adeo/mozaic-vue/commit/9fb44fd7d7baf2073d0826e11984386411518fa5))
|
|
219
|
-
* **phonenumber:** keep caret in right position after formatting ([#336](https://github.com/adeo/mozaic-vue/issues/336)) ([f2487e2](https://github.com/adeo/mozaic-vue/commit/f2487e2463427db41b6c38edf9f2eefcc930d155))
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
# 0.4.0 (2021-08-04)
|
|
223
|
-
|
|
224
|
-
### Bug Fixes
|
|
225
|
-
|
|
226
|
-
* **mlink:** emit the click event also if the component render a span ([#287](https://github.com/adeo/mozaic-vue/issues/287)) ([b667cad](https://github.com/adeo/mozaic-vue/commit/b667cad3da5fc1bb637e0410381783ec7c77d7b2))
|
|
227
|
-
* **pagination:** use the MSelect component instead of the <select> tag ([#319](https://github.com/adeo/mozaic-vue/issues/319)) ([6dff133](https://github.com/adeo/mozaic-vue/commit/6dff133971140ea92503ee476382dec99915b724))
|
|
228
|
-
* **patterns/heading:** make available on TypeScript ([#305](https://github.com/adeo/mozaic-vue/issues/305)) ([a3df7bb](https://github.com/adeo/mozaic-vue/commit/a3df7bbd3ac3c39868d4524fb07e9eafebf48e44))
|
|
229
|
-
* **patterns/mbreadcrumb:** quick fix - increase css specificity of .mc-breadcrumb__current ([#296](https://github.com/adeo/mozaic-vue/issues/296)) ([1acc198](https://github.com/adeo/mozaic-vue/commit/1acc19881653a4450931b30b4b1c6b5f6fb201e3))
|
|
230
|
-
* **patterns/notification:** use MLink component instead of the <a> tag ([#318](https://github.com/adeo/mozaic-vue/issues/318)) ([4167335](https://github.com/adeo/mozaic-vue/commit/416733575bdfcb8a4bab32f243264e13b841ac31))
|
|
231
|
-
* **patterns/phonenumber:** manage already existed value ([#304](https://github.com/adeo/mozaic-vue/issues/304)) ([4e1e834](https://github.com/adeo/mozaic-vue/commit/4e1e83400f68b14faeeed4867fd726e2ac86f302))
|
|
232
|
-
* **types:** use PluginObject interface to type MozaicVue plugin ([#269](https://github.com/adeo/mozaic-vue/issues/269)) ([4353ef5](https://github.com/adeo/mozaic-vue/commit/4353ef5ff125bf04189b1f34f8ad589375c1ebba))
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
### Features
|
|
236
|
-
|
|
237
|
-
* **container:** add MContainer component ([#323](https://github.com/adeo/mozaic-vue/issues/323)) ([186d4dc](https://github.com/adeo/mozaic-vue/commit/186d4dca58e465e30b69cf3efaa6e4f630a2f472))
|
|
238
|
-
* **qtselector:** use MButton & MTextInputField components instead HTML tags ([#317](https://github.com/adeo/mozaic-vue/issues/317)) ([e42a96c](https://github.com/adeo/mozaic-vue/commit/e42a96c747f7f90c4ff84551830fa956d603397e))
|
|
239
|
-
* hide country list dropdown when user click outside, display or … ([#322](https://github.com/adeo/mozaic-vue/issues/322)) ([385bdd3](https://github.com/adeo/mozaic-vue/commit/385bdd36a5130c491ebe580d274d4e0e2c46efb5))
|
|
240
|
-
* **mheading:** add MHeading component ([#301](https://github.com/adeo/mozaic-vue/issues/301)) ([b0daa07](https://github.com/adeo/mozaic-vue/commit/b0daa0743a5ddc633b8d6dec222090f5220e3d8e))
|
|
241
|
-
* **micon:** add webpackMode for resolving icons dynamic import ([#271](https://github.com/adeo/mozaic-vue/issues/271)) ([c44fc5c](https://github.com/adeo/mozaic-vue/commit/c44fc5c10a081994c01c875224fa94dcacc52958))
|
|
242
|
-
* **package/vue3:** update set up ([#268](https://github.com/adeo/mozaic-vue/issues/268)) ([9ea900b](https://github.com/adeo/mozaic-vue/commit/9ea900b07a5cb14fa9fb0d391c4c55243609c456))
|
|
243
|
-
* allow components to be called individually with Vue.use() ([#263](https://github.com/adeo/mozaic-vue/issues/263)) ([0db95ea](https://github.com/adeo/mozaic-vue/commit/0db95ea096ed8ad95cdda0f4ebe2870868c97d95))
|
|
244
|
-
* **package/vue:** export components individually ([#257](https://github.com/adeo/mozaic-vue/issues/257)) ([922252e](https://github.com/adeo/mozaic-vue/commit/922252ed6efdc754c102bd8d6e98133a887de3a5))
|
|
245
|
-
* **storybook:** make the stories work with the new @mozaic-ds/vue package ([#237](https://github.com/adeo/mozaic-vue/issues/237)) ([52c34a5](https://github.com/adeo/mozaic-vue/commit/52c34a5c0e7345db68ce4469466be11fc089b179))
|
|
246
|
-
* **types:** add TypeScript support ([#260](https://github.com/adeo/mozaic-vue/issues/260)) ([d698f01](https://github.com/adeo/mozaic-vue/commit/d698f010cf0c1a4f7f1519956ae3fe116bbebb5f))
|
|
247
|
-
* set up @mozaic-ds/vue package ([#236](https://github.com/adeo/mozaic-vue/issues/236)) ([e4e3551](https://github.com/adeo/mozaic-vue/commit/e4e3551a266ebc4ab33cfbff6d95bca56cb5955b))
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
* refactor!: MLayer - code refactor (#246) ([3950c37](https://github.com/adeo/mozaic-vue/commit/3950c37cf2bd972adfb55efc1f6a341d45fb0801)), closes [#246](https://github.com/adeo/mozaic-vue/issues/246)
|
|
251
|
-
* refactor!: MModal - code refactor (#244) ([9805975](https://github.com/adeo/mozaic-vue/commit/9805975bc5c2eea03fbac2fe17b88d337c68a18a)), closes [#244](https://github.com/adeo/mozaic-vue/issues/244)
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
### BREAKING CHANGES
|
|
255
|
-
|
|
256
|
-
* Removal of the `overflow` prop.
|
|
257
|
-
Removal of the `preventScrollOnBody` prop.
|
|
258
|
-
The `isOpen` prop now becomes `open`.
|
|
259
|
-
The `title` prop now becomes `layerTitle`.
|
|
260
|
-
The `titleTag` prop now becomes `layerTitleTag`.
|
|
261
|
-
The `closeOnOverlayClick` prop now becomes `closeOnOverlay`.
|
|
262
|
-
The `overflowScrollEdge` prop now becomes `scrollbarEdge`.
|
|
263
|
-
The `bodyContent` slot is removed to becomes a default slot.
|
|
264
|
-
* Removal of the `overflow` prop.
|
|
265
|
-
The `title` prop now becomes `modalTitle`.
|
|
266
|
-
The `titleTag` prop now becomes `modalTitleTag`.
|
|
267
|
-
The `bodyTitle` prop now becomes `title`.
|
|
268
|
-
The `bodyTitleTag` prop now becomes `titleTag`.
|
|
269
|
-
The `bodyContent` slot is removed to becomes a default slot.
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
# [0.4.0-beta.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.3.1...@mozaic-ds/vue@0.4.0-beta.0) (2021-07-27)
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
### Features
|
|
279
|
-
|
|
280
|
-
* **patterns/qtselector:** use MButton & MTextInputField components instead HTML tags ([1852b56](https://github.com/adeo/mozaic-vue/commit/1852b56ee6ad67bde37d7a32d9b0e5df12990fd9))
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
## [0.3.1](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.3.0...@mozaic-ds/vue@0.3.1) (2021-07-13)
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
### Bug Fixes
|
|
290
|
-
|
|
291
|
-
* **patterns/heading:** make available on TypeScript ([#305](https://github.com/adeo/mozaic-vue/issues/305)) ([8d996ec](https://github.com/adeo/mozaic-vue/commit/8d996ece8ec011084d551844a338c3edd8f5a6a6))
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
# [0.3.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.2.1...@mozaic-ds/vue@0.3.0) (2021-07-13)
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
### Bug Fixes
|
|
301
|
-
|
|
302
|
-
* **patterns/mbreadcrumb:** quick fix - increase css specificity of .mc-breadcrumb__current ([#296](https://github.com/adeo/mozaic-vue/issues/296)) ([1b6c3e1](https://github.com/adeo/mozaic-vue/commit/1b6c3e12b2df85e78cdb85c667cddd62ae4abac8))
|
|
303
|
-
* **patterns/phonenumber:** manage already existed value ([#304](https://github.com/adeo/mozaic-vue/issues/304)) ([e5fae55](https://github.com/adeo/mozaic-vue/commit/e5fae551f3aa484b9882f3ac909580278be76a46))
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
### Features
|
|
307
|
-
|
|
308
|
-
* **mheading:** add MHeading component ([#301](https://github.com/adeo/mozaic-vue/issues/301)) ([e5bc17f](https://github.com/adeo/mozaic-vue/commit/e5bc17fd2d9620e4a558f096208f747c2148bcb0))
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
## [0.2.1](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.2.0...@mozaic-ds/vue@0.2.1) (2021-06-28)
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
### Bug Fixes
|
|
318
|
-
|
|
319
|
-
* **mlink:** emit the click event also if the component render a span ([#287](https://github.com/adeo/mozaic-vue/issues/287)) ([6a9cb80](https://github.com/adeo/mozaic-vue/commit/6a9cb80c3abff17470290a400005d23fc63bb3b4))
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
# 0.2.0 (2021-06-22)
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
### Bug Fixes
|
|
329
|
-
|
|
330
|
-
* **types:** use PluginObject interface to type MozaicVue plugin ([#269](https://github.com/adeo/mozaic-vue/issues/269)) ([a2d90f1](https://github.com/adeo/mozaic-vue/commit/a2d90f1cdfb9136c40c416d7f52c267b60385ad3))
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
### Features
|
|
334
|
-
|
|
335
|
-
* **micon:** add webpackMode for resolving icons dynamic import ([#271](https://github.com/adeo/mozaic-vue/issues/271)) ([e2b86dd](https://github.com/adeo/mozaic-vue/commit/e2b86dd78a773d87e9f54d51b1e1d3eaf6496a19))
|
|
336
|
-
* **package/vue3:** update set up ([#268](https://github.com/adeo/mozaic-vue/issues/268)) ([ed386b6](https://github.com/adeo/mozaic-vue/commit/ed386b60859c16137714a6e515d13d457ee75f90))
|
|
337
|
-
* allow components to be called individually with Vue.use() ([#263](https://github.com/adeo/mozaic-vue/issues/263)) ([bedcd6d](https://github.com/adeo/mozaic-vue/commit/bedcd6dd4e8dd183ff6ff46db74d55a72b18eddb))
|
|
338
|
-
* **package/vue:** export components individually ([#257](https://github.com/adeo/mozaic-vue/issues/257)) ([7c88419](https://github.com/adeo/mozaic-vue/commit/7c88419ea590b480e675cdaa9cb9d622ad1fcb7d))
|
|
339
|
-
* **storybook:** make the stories work with the new @mozaic-ds/vue package ([#237](https://github.com/adeo/mozaic-vue/issues/237)) ([2b13d1f](https://github.com/adeo/mozaic-vue/commit/2b13d1f227c57cb45d5a3b4308434a6cd46a0306))
|
|
340
|
-
* **types:** add TypeScript support ([#260](https://github.com/adeo/mozaic-vue/issues/260)) ([d61d329](https://github.com/adeo/mozaic-vue/commit/d61d3291cc12be183949b2b6f5e0a4564e3a089e))
|
|
341
|
-
* set up @mozaic-ds/vue package ([#236](https://github.com/adeo/mozaic-vue/issues/236)) ([b390758](https://github.com/adeo/mozaic-vue/commit/b390758113d90dd372f492bf2272a6505d2558a9))
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
* refactor!: MLayer - code refactor (#246) ([799a50f](https://github.com/adeo/mozaic-vue/commit/799a50f4ae80646d7e5afcd843135eb72df2b0fb)), closes [#246](https://github.com/adeo/mozaic-vue/issues/246)
|
|
345
|
-
* refactor!: MModal - code refactor (#244) ([0e72f89](https://github.com/adeo/mozaic-vue/commit/0e72f892debfb76cc1dcfc06db16aa50a1eded11)), closes [#244](https://github.com/adeo/mozaic-vue/issues/244)
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
### BREAKING CHANGES
|
|
349
|
-
|
|
350
|
-
* Removal of the `overflow` prop.
|
|
351
|
-
Removal of the `preventScrollOnBody` prop.
|
|
352
|
-
The `isOpen` prop now becomes `open`.
|
|
353
|
-
The `title` prop now becomes `layerTitle`.
|
|
354
|
-
The `titleTag` prop now becomes `layerTitleTag`.
|
|
355
|
-
The `closeOnOverlayClick` prop now becomes `closeOnOverlay`.
|
|
356
|
-
The `overflowScrollEdge` prop now becomes `scrollbarEdge`.
|
|
357
|
-
The `bodyContent` slot is removed to becomes a default slot.
|
|
358
|
-
* Removal of the `overflow` prop.
|
|
359
|
-
The `title` prop now becomes `modalTitle`.
|
|
360
|
-
The `titleTag` prop now becomes `modalTitleTag`.
|
|
361
|
-
The `bodyTitle` prop now becomes `title`.
|
|
362
|
-
The `bodyTitleTag` prop now becomes `titleTag`.
|
|
363
|
-
The `bodyContent` slot is removed to becomes a default slot.
|