@dialpad/dialtone-vue 2.53.1 → 2.54.0-beta.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 CHANGED
@@ -1,3 +1,16 @@
1
+ # [2.54.0-beta.1](https://github.com/dialpad/dialtone-vue/compare/v2.53.1...v2.54.0-beta.1) (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
+
8
+
9
+ ### Features
10
+
11
+ * **Modal:** add style variants of banner ([#713](https://github.com/dialpad/dialtone-vue/issues/713)) ([8696828](https://github.com/dialpad/dialtone-vue/commit/86968283f0e1e855f21d659fb9f7229a6fd45aaf))
12
+ * use getRootNode to get root ([a868ae4](https://github.com/dialpad/dialtone-vue/commit/a868ae49206c7022ecc6d6a3a6f604fc85fac69b))
13
+
1
14
  ## [2.53.1](https://github.com/dialpad/dialtone-vue/compare/v2.53.0...v2.53.1) (2023-01-20)
2
15
 
3
16
 
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