@mozaic-ds/vue 0.11.0 → 0.12.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 +50 -0
- package/dist/mozaic-vue.adeo.css +1 -1
- package/dist/mozaic-vue.adeo.umd.js +78 -63
- package/dist/mozaic-vue.common.js +78 -63
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.umd.js +78 -63
- 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/modal/MModal.vue +8 -1
- package/src/components/ratingstars/MStarsInput.vue +7 -2
- package/src/components/select/MSelect.vue +5 -0
- package/src/components/textarea/MTextArea.vue +1 -1
- package/src/components/textinput/MTextInputField.vue +1 -0
- package/src/tokens/adeo/android/colors.xml +376 -0
- package/src/tokens/adeo/android/font_dimens.xml +18 -0
- package/src/tokens/adeo/css/_variables.scss +370 -370
- package/src/tokens/adeo/css/root.scss +15 -25
- package/src/tokens/adeo/ios/StyleDictionaryColor.h +384 -0
- package/src/tokens/adeo/ios/StyleDictionaryColor.m +396 -0
- package/src/tokens/adeo/ios/StyleDictionaryColor.swift +379 -0
- package/src/tokens/adeo/ios/StyleDictionarySize.h +69 -0
- package/src/tokens/adeo/ios/StyleDictionarySize.m +70 -0
- package/src/tokens/adeo/ios/StyleDictionarySize.swift +71 -0
- package/src/tokens/adeo/js/tokens.js +9 -9
- package/src/tokens/adeo/js/tokensObject.js +19 -19
- package/src/tokens/adeo/scss/_tokens.scss +174 -173
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,56 @@
|
|
|
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.12.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.11.1...@mozaic-ds/vue@0.12.0) (2022-01-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **build/tokens:** update npm tokens:build script ([eb616e3](https://github.com/adeo/mozaic-vue/commit/eb616e32ed2c0dd32997dfef9fb2d3db36ad7b31))
|
|
12
|
+
* **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))
|
|
13
|
+
* **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)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **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)
|
|
19
|
+
* **component/ratings:** add prop required ([#465](https://github.com/adeo/mozaic-vue/issues/465)) ([b4205b4](https://github.com/adeo/mozaic-vue/commit/b4205b414521fe07a410717041558430715994f1))
|
|
20
|
+
* **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))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## [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)
|
|
27
|
+
|
|
28
|
+
**Note:** Version bump only for package @mozaic-ds/vue
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
## [0.11.2-beta.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.11.1...@mozaic-ds/vue@0.11.2-beta.0) (2022-01-19)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
### Bug Fixes
|
|
38
|
+
|
|
39
|
+
* **build/tokens:** update npm tokens:build script ([ac637c0](https://github.com/adeo/mozaic-vue/commit/ac637c0e44d6e7a1d657ff692016ad5c81348105))
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
## [0.11.1](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.11.0...@mozaic-ds/vue@0.11.1) (2022-01-13)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Bug Fixes
|
|
49
|
+
|
|
50
|
+
* **tools/adeo-preset:** regenerate tokens for the Adeo preset ([#483](https://github.com/adeo/mozaic-vue/issues/483)) ([d434100](https://github.com/adeo/mozaic-vue/commit/d434100ce49d897fc1fc351113127f74b019536a))
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
6
56
|
# [0.11.0](https://github.com/adeo/mozaic-vue/compare/@mozaic-ds/vue@0.10.0...@mozaic-ds/vue@0.11.0) (2022-01-13)
|
|
7
57
|
|
|
8
58
|
|