@dialpad/dialtone-vue 3.92.1 → 3.93.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.json +1 -1
- package/CHANGELOG.md +28 -0
- package/dist/component-documentation.json +1 -1
- package/dist/dialtone-vue.cjs +5 -5
- package/dist/dialtone-vue.js +2541 -2247
- package/dist/directives.cjs +1 -1
- package/dist/directives.js +32 -63
- package/dist/emoji-125c2250.cjs +1 -0
- package/dist/{emoji-8734fb7e.js → emoji-ee056efb.js} +237 -228
- package/dist/emoji.cjs +1 -1
- package/dist/emoji.js +3 -3
- package/dist/{message_input-15d74c9c.cjs → message_input-2f040a4e.cjs} +15 -15
- package/dist/{message_input-42cfff5f.js → message_input-97a05856.js} +181 -163
- package/dist/message_input.cjs +1 -1
- package/dist/message_input.js +3 -3
- package/dist/style.css +1 -1
- package/dist/{tooltip-5fcb8c80.js → tooltip-02b802bc.js} +504 -475
- package/dist/tooltip-3390fc3b.cjs +25 -0
- package/dist/types/common/dates.d.ts +49 -0
- package/dist/types/common/dates.d.ts.map +1 -0
- package/dist/types/common/utils.d.ts +8 -0
- package/dist/types/common/utils.d.ts.map +1 -1
- package/dist/types/components/button/button.vue.d.ts +2 -1
- package/dist/types/components/button/button.vue.d.ts.map +1 -1
- package/dist/types/components/tooltip/tooltip.vue.d.ts +23 -1
- package/dist/types/components/tooltip/tooltip.vue.d.ts.map +1 -1
- package/dist/types/components/tooltip/tooltip_variants.vue.d.ts +0 -1
- package/dist/types/directives/tooltip/tooltip.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/recipes/conversation_view/feed_pill/feed_item_pill.vue.d.ts +9 -0
- package/dist/types/recipes/conversation_view/feed_pill/feed_item_pill.vue.d.ts.map +1 -1
- package/dist/types/recipes/conversation_view/message_input/message_input.vue.d.ts +15 -0
- package/dist/types/recipes/conversation_view/message_input/message_input.vue.d.ts.map +1 -1
- package/package.json +8 -5
- package/dist/emoji-1de73abd.cjs +0 -1
- package/dist/tooltip-a095f59b.cjs +0 -25
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## [3.93.1](https://github.com/dialpad/dialtone-vue/compare/v3.93.0...v3.93.1) (2023-10-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* date functions locale global ([8fe7307](https://github.com/dialpad/dialtone-vue/commit/8fe73076ea6b4addc4d03c228f6a7ec1cba6c6ac))
|
|
7
|
+
* **Message Input:** tooltip should be displayed when character limit has been reached ([#1280](https://github.com/dialpad/dialtone-vue/issues/1280)) ([b5a99cb](https://github.com/dialpad/dialtone-vue/commit/b5a99cb9bb0020c69e553cfb993dd60e54456bd7))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Documentation
|
|
11
|
+
|
|
12
|
+
* document date functions ([#1283](https://github.com/dialpad/dialtone-vue/issues/1283)) ([5efa023](https://github.com/dialpad/dialtone-vue/commit/5efa023c303a07de0cfb5cb9d18b8fc5d8c0e67b))
|
|
13
|
+
|
|
14
|
+
# [3.93.0](https://github.com/dialpad/dialtone-vue/compare/v3.92.1...v3.93.0) (2023-10-25)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* add disabled prop to tooltip - vue3 ([#1277](https://github.com/dialpad/dialtone-vue/issues/1277)) ([e25a755](https://github.com/dialpad/dialtone-vue/commit/e25a755bfddd3d0eaebbf2413d2a800689c9bb7c))
|
|
20
|
+
* **Button:** icon sizing ([#1269](https://github.com/dialpad/dialtone-vue/issues/1269)) ([ec0df97](https://github.com/dialpad/dialtone-vue/commit/ec0df975b6fe3fea447e058212d1e11ea76de612))
|
|
21
|
+
* **Dt Tooltip Directive:** default delay ([#1273](https://github.com/dialpad/dialtone-vue/issues/1273)) ([5c65241](https://github.com/dialpad/dialtone-vue/commit/5c65241746d6f8f2a821d702eb3d8fafc126e854))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
* add initial date formatting functions ([#1279](https://github.com/dialpad/dialtone-vue/issues/1279)) ([f8340e9](https://github.com/dialpad/dialtone-vue/commit/f8340e9a30e54488ca13755a40730db4b07f3c89))
|
|
27
|
+
* **Call Pill:** add default toggled state - vue3 ([#1275](https://github.com/dialpad/dialtone-vue/issues/1275)) ([c4afed8](https://github.com/dialpad/dialtone-vue/commit/c4afed87b4fae26754b652235e757e01543706e6))
|
|
28
|
+
|
|
1
29
|
## [3.92.1](https://github.com/dialpad/dialtone-vue/compare/v3.92.0...v3.92.1) (2023-10-20)
|
|
2
30
|
|
|
3
31
|
|