@dialpad/dialtone-vue 2.4.0 → 2.6.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/README.md +18 -0
- package/dist/dialtone-vue.common.js +2489 -1574
- package/dist/dialtone-vue.umd.js +2487 -1563
- package/dist/dialtone-vue.umd.min.js +1 -1
- package/package.json +51 -55
- package/CHANGELOG.md +0 -370
package/README.md
CHANGED
|
@@ -40,6 +40,24 @@ Projects using Dialtone Vue should be aware of the requirements:
|
|
|
40
40
|
|
|
41
41
|
These requirements are enforced via peerdependencies of Dialtone Vue when possible.
|
|
42
42
|
|
|
43
|
+
<!-- ## Emojis
|
|
44
|
+
|
|
45
|
+
Dialtone Vue uses [JoyPixels][https://www.joypixels.com/] to render emojis. If you are using the emoji components, Dialtone Vue will use the free joypixels assets hosted on jsdelivr CDN by default. You may wish to use self hosted joypixels assets such as the SVGs only available to premium license holders. In order to do this set your custom asset URL with the following function during initialization of your app:
|
|
46
|
+
|
|
47
|
+
```js
|
|
48
|
+
import { setEmojiAssetUrl } from 'dialtone-vue'
|
|
49
|
+
|
|
50
|
+
setEmojiAssetUrl('https://my.example.website.com/joypixels/svg/unicode/')
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
You may access the emoji.json data for all emojis Dialtone Vue supports via the following module
|
|
54
|
+
|
|
55
|
+
```js
|
|
56
|
+
import { EmojiJson } from 'dialtone-vue'
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
-->
|
|
60
|
+
|
|
43
61
|
## Contributing
|
|
44
62
|
|
|
45
63
|
If you would like to contribute to Dialtone Vue the first step is to get the project running locally. Follow the below quickstart to do so.
|