@dialpad/dialtone-vue 3.97.0 → 3.98.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 +12 -0
- package/README.md +13 -15
- package/dist/dialtone-vue.cjs +5 -5
- package/dist/dialtone-vue.js +2327 -1988
- package/dist/emoji.cjs +1 -1
- package/dist/emoji.js +1 -1
- package/dist/{emoji_picker-Mxqzrrbr.js → emoji_picker-_P3IH5Mx.js} +245 -237
- package/dist/emoji_picker-x6wk4x21.cjs +1 -0
- package/dist/message_input.cjs +13 -13
- package/dist/message_input.js +2121 -2244
- package/dist/stack-2vhLbADY.cjs +2 -0
- package/dist/{stack-q9VLdD1J.js → stack-FkIoaXcJ.js} +394 -739
- package/dist/style.css +1 -1
- package/dist/types/components/emoji_picker/modules/emoji_selector.vue.d.ts +3 -1
- package/dist/types/components/emoji_picker/modules/emoji_selector.vue.d.ts.map +1 -1
- package/dist/types/components/emoji_picker/modules/emoji_skin_selector.vue.d.ts +1 -1
- package/dist/types/components/emoji_picker/modules/emoji_skin_selector.vue.d.ts.map +1 -1
- package/dist/types/components/emoji_picker/modules/emoji_tabset.vue.d.ts +1 -1
- package/dist/types/components/emoji_picker/modules/emoji_tabset.vue.d.ts.map +1 -1
- package/dist/types/recipes/conversation_view/message_input/message_input.vue.d.ts +67 -203
- package/dist/types/recipes/conversation_view/message_input/message_input.vue.d.ts.map +1 -1
- package/package.json +3 -3
- package/dist/emoji_picker-o0hHRpcs.cjs +0 -1
- package/dist/stack-_FIkvuMY.cjs +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [3.98.0](https://github.com/dialpad/dialtone/compare/dialtone-vue3/v3.97.0...dialtone-vue3/v3.98.0) (2023-12-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Documentation
|
|
5
|
+
|
|
6
|
+
* fix links, fix outdated documentation. ([#40](https://github.com/dialpad/dialtone/issues/40)) ([124082e](https://github.com/dialpad/dialtone/commit/124082e3f375cda464d8a206199f187c13ea27ea))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* refactor message input vue3 ([#46](https://github.com/dialpad/dialtone/issues/46)) ([32130f9](https://github.com/dialpad/dialtone/commit/32130f969abbd8646fc652d7aec4e70d9caf1104))
|
|
12
|
+
|
|
1
13
|
# [3.97.0](https://github.com/dialpad/dialtone/compare/dialtone-vue3/v3.96.3...dialtone-vue3/v3.97.0) (2023-12-07)
|
|
2
14
|
|
|
3
15
|
|
package/README.md
CHANGED
|
@@ -7,9 +7,9 @@ Dialtone Vue is available in Vue 2 as well as Vue 3:
|
|
|
7
7
|
- **[Component Documentation Site (Vue 2) ↗️][dialtone-vue]**
|
|
8
8
|
- **[Component Documentation Site (Vue 3) ↗️][dialtone-vue3]**
|
|
9
9
|
|
|
10
|
-
[dt]: https://dialpad.
|
|
11
|
-
[dialtone-vue]: https://
|
|
12
|
-
[dialtone-vue3]: https://
|
|
10
|
+
[dt]: https://dialtone.dialpad.com
|
|
11
|
+
[dialtone-vue]: https://dialtone.dialpad.com/vue
|
|
12
|
+
[dialtone-vue3]: https://dialtone.dialpad.com/vue3
|
|
13
13
|
|
|
14
14
|
## Installation
|
|
15
15
|
|
|
@@ -48,8 +48,8 @@ These requirements are enforced via peer dependencies of Dialtone Vue when possi
|
|
|
48
48
|
|
|
49
49
|
## Emojis
|
|
50
50
|
|
|
51
|
-
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.
|
|
52
|
-
You may wish to use self-hosted JoyPixels assets such as the SVGs only available to premium license holders.
|
|
51
|
+
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.
|
|
52
|
+
You may wish to use self-hosted JoyPixels assets such as the SVGs only available to premium license holders.
|
|
53
53
|
In order to do this, set your custom asset URL with the following functions for small and large emojis during initialization of your app:
|
|
54
54
|
|
|
55
55
|
```js
|
|
@@ -72,26 +72,24 @@ const emojiData = getEmojiData();
|
|
|
72
72
|
|
|
73
73
|
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.
|
|
74
74
|
|
|
75
|
-
1. Clone the
|
|
75
|
+
1. Clone the monorepo `git clone git@github.com:dialpad/dialtone.git`
|
|
76
76
|
2. Install dependencies `pnpm install`
|
|
77
|
-
3. Run local dev server `pnpm start`
|
|
78
|
-
4. Visit local dev server at http://localhost:9010
|
|
77
|
+
3. Run local dev server `pnpm start:dialtone-vue2` or `pnpm start:dialtone-vue3`
|
|
78
|
+
4. Visit local dev server at <http://localhost:9010/>
|
|
79
79
|
|
|
80
80
|
Next read the more detailed contributor documentation in [CONTRIBUTING.md](.github/CONTRIBUTING.md).
|
|
81
81
|
|
|
82
82
|
## Project Status
|
|
83
83
|
|
|
84
|
-
|
|
84
|
+
Please refer to the [jira board][jira] to see what we are currently working on and what we have planned for the future.
|
|
85
85
|
|
|
86
|
-
[jira]: https://dialpad.atlassian.net/
|
|
87
|
-
[request]: https://dialpad.atlassian.net/secure/CreateIssue.jspa?issuetype=10901&pid=12428
|
|
88
|
-
[report]: https://dialpad.atlassian.net/secure/CreateIssue.jspa?issuetype=10878&pid=12428
|
|
86
|
+
[jira]: https://dialpad.atlassian.net/jira/software/c/projects/DLT/boards/548/backlog
|
|
89
87
|
|
|
90
88
|
## Requesting features / reporting bugs
|
|
91
89
|
|
|
92
90
|
Requesting a feature or reporting a bug? Please do so at the below links:
|
|
93
91
|
|
|
94
|
-
- [Request Feature](https://dialpad.atlassian.net/secure/CreateIssue.jspa?issuetype=
|
|
95
|
-
- [Report Bug](https://dialpad.atlassian.net/secure/CreateIssue.jspa?issuetype=
|
|
92
|
+
- [Request Feature](https://dialpad.atlassian.net/secure/CreateIssue.jspa?issuetype=10975&pid=12508)
|
|
93
|
+
- [Report Bug](https://dialpad.atlassian.net/secure/CreateIssue.jspa?issuetype=1&pid=12508)
|
|
96
94
|
|
|
97
|
-
Please also feel free to contact us via the
|
|
95
|
+
Please also feel free to contact us via the #dialtone Dialpad channel with any questions
|