@dialpad/dialtone-vue 3.64.1 → 3.65.3

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,37 @@
1
+ ## [3.65.3](https://github.com/dialpad/dialtone-vue/compare/v3.65.2...v3.65.3) (2023-05-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * correct style export in package.json ([ccde40b](https://github.com/dialpad/dialtone-vue/commit/ccde40b0ada474068168141e5c1cbd3f632f5340))
7
+
8
+ ## [3.65.2](https://github.com/dialpad/dialtone-vue/compare/v3.65.1...v3.65.2) (2023-05-05)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * add missing plugin to vite config ([d15347a](https://github.com/dialpad/dialtone-vue/commit/d15347a23b5fb67c05b8f1f717ccc105d38ee1c5))
14
+
15
+ ## [3.65.1](https://github.com/dialpad/dialtone-vue/compare/v3.65.0...v3.65.1) (2023-05-05)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * storybook-static references ([8340caa](https://github.com/dialpad/dialtone-vue/commit/8340caae47c52d598a2b921b6d435c77004d65ec))
21
+
22
+ # [3.65.0](https://github.com/dialpad/dialtone-vue/compare/v3.64.1...v3.65.0) (2023-05-05)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * add tests for feed row - vue3 ([#957](https://github.com/dialpad/dialtone-vue/issues/957)) ([54d2a8e](https://github.com/dialpad/dialtone-vue/commit/54d2a8e89ffd04b898cb7112ae8ddfea1b79f175))
28
+ * **Header:** use smaller icon size for settings menu button ([#960](https://github.com/dialpad/dialtone-vue/issues/960)) ([ff0caec](https://github.com/dialpad/dialtone-vue/commit/ff0caec67f724d8fd21df6f7c5e7a73014e3c8a6))
29
+
30
+
31
+ ### Features
32
+
33
+ * update to vite and storybook 7 ([#961](https://github.com/dialpad/dialtone-vue/issues/961)) ([9a19a84](https://github.com/dialpad/dialtone-vue/commit/9a19a84b12821b3872cbe785282c974f4e964e16))
34
+
1
35
  ## [3.64.1](https://github.com/dialpad/dialtone-vue/compare/v3.64.0...v3.64.1) (2023-05-02)
2
36
 
3
37
 
package/README.md CHANGED
@@ -20,16 +20,22 @@ You can install the Dialtone Vue library into your project via the following com
20
20
 
21
21
  ## Usage
22
22
 
23
- Dialtone Vue components can be imported directly from the package. Some components also export named constants, which can be imported as well:
23
+ First you must globally import the css:
24
24
 
25
25
  ```js
26
- import { DtInput, VALIDATION_MESSAGE_TYPES } from '@dialpad/dialtone-vue';
26
+ import '@dialpad/dialtone-vue/css';
27
27
  ```
28
28
 
29
- If you are using the Vue 3 version of Dialtone, you must also import the css:
29
+ or
30
+
31
+ ```css
32
+ @import 'node_modules/@dialpad/dialtone-vue/dist/style.css';
33
+ ```
34
+
35
+ Dialtone Vue components can be imported directly from the package. Some components also export named constants, which can be imported as well:
30
36
 
31
37
  ```js
32
- import '@dialpad/dialtone-vue/css';
38
+ import { DtInput, VALIDATION_MESSAGE_TYPES } from '@dialpad/dialtone-vue';
33
39
  ```
34
40
 
35
41
  Projects using Dialtone Vue should be aware of the requirements:
@@ -53,12 +59,6 @@ setEmojiAssetUrlSmall('https://my.example.website.com/joypixels/svg/unicode/32/'
53
59
  setEmojiAssetUrlLarge('https://my.example.website.com/joypixels/svg/unicode/', '.svg')
54
60
  ```
55
61
 
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
-
62
62
  You may access the emoji.json data for all emojis Dialtone Vue supports via executing the following function
63
63
 
64
64
  ```js