@dialpad/dialtone-vue 2.53.1 → 2.54.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.json +1 -1
- package/CHANGELOG.md +14 -0
- package/README.md +12 -0
- package/dist/component-documentation.json +1 -1
- package/dist/dialtone-vue.common.js +335 -292
- package/dist/dialtone-vue.umd.js +335 -292
- package/dist/dialtone-vue.umd.min.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [2.54.0](https://github.com/dialpad/dialtone-vue/compare/v2.53.1...v2.54.0) (2023-01-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **Combobox:** chips vertical alignment. ([#706](https://github.com/dialpad/dialtone-vue/issues/706)) ([e552ca1](https://github.com/dialpad/dialtone-vue/commit/e552ca1e3b324f58c2dfa50305dd84f854a9a35e))
|
|
7
|
+
* **Notice:** incorrect validation ([#715](https://github.com/dialpad/dialtone-vue/issues/715)) ([c1360cc](https://github.com/dialpad/dialtone-vue/commit/c1360cc6f18341d77a6794a686bf2448178455aa))
|
|
8
|
+
* **Tab:** fix focus management with focusable elements inside the panel ([#717](https://github.com/dialpad/dialtone-vue/issues/717)) ([693ac9e](https://github.com/dialpad/dialtone-vue/commit/693ac9e07aaa4886a9e9a3020a0bb5a619a722c7))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **Modal:** add style variants of banner ([#713](https://github.com/dialpad/dialtone-vue/issues/713)) ([8696828](https://github.com/dialpad/dialtone-vue/commit/86968283f0e1e855f21d659fb9f7229a6fd45aaf))
|
|
14
|
+
|
|
1
15
|
## [2.53.1](https://github.com/dialpad/dialtone-vue/compare/v2.53.0...v2.53.1) (2023-01-20)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -26,6 +26,12 @@ Dialtone Vue components can be imported directly from the package. Some componen
|
|
|
26
26
|
import { DtInput, VALIDATION_MESSAGE_TYPES } from '@dialpad/dialtone-vue';
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
+
If you are using the Vue 3 version of Dialtone, you must also import the css:
|
|
30
|
+
|
|
31
|
+
```js
|
|
32
|
+
import '@dialpad/dialtone-vue/css';
|
|
33
|
+
```
|
|
34
|
+
|
|
29
35
|
Projects using Dialtone Vue should be aware of the requirements:
|
|
30
36
|
|
|
31
37
|
- Dialtone classes must be made available globally (to avoid duplication, Dialtone Vue does not do this for you).
|
|
@@ -47,6 +53,12 @@ setEmojiAssetUrlSmall('https://my.example.website.com/joypixels/svg/unicode/32/'
|
|
|
47
53
|
setEmojiAssetUrlLarge('https://my.example.website.com/joypixels/svg/unicode/', '.svg')
|
|
48
54
|
```
|
|
49
55
|
|
|
56
|
+
If you are using the Vue 3 version of Dialtone emoji, you must import the css:
|
|
57
|
+
|
|
58
|
+
```js
|
|
59
|
+
import '@dialpad/dialtone-vue/emoji/css';
|
|
60
|
+
```
|
|
61
|
+
|
|
50
62
|
You may access the emoji.json data for all emojis Dialtone Vue supports via executing the following function
|
|
51
63
|
|
|
52
64
|
```js
|