@dialpad/dialtone-vue 3.92.0 → 3.93.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.
Files changed (39) hide show
  1. package/CHANGELOG.json +1 -1
  2. package/CHANGELOG.md +22 -0
  3. package/dist/component-documentation.json +1 -1
  4. package/dist/dialtone-vue.cjs +5 -5
  5. package/dist/dialtone-vue.js +2540 -2245
  6. package/dist/directives.cjs +1 -0
  7. package/dist/directives.js +75 -0
  8. package/dist/emoji-125c2250.cjs +1 -0
  9. package/dist/{emoji-83163b7b.js → emoji-ee056efb.js} +7568 -10101
  10. package/dist/emoji.cjs +1 -1
  11. package/dist/emoji.js +40 -39
  12. package/dist/{message_input-46ebe433.js → message_input-08860f81.js} +60 -59
  13. package/dist/message_input-ab3be145.cjs +93 -0
  14. package/dist/message_input.cjs +1 -1
  15. package/dist/message_input.js +4 -3
  16. package/dist/style.css +1 -1
  17. package/dist/tooltip-02b802bc.js +2577 -0
  18. package/dist/tooltip-3390fc3b.cjs +25 -0
  19. package/dist/types/common/dates.d.ts +49 -0
  20. package/dist/types/common/dates.d.ts.map +1 -0
  21. package/dist/types/common/utils.d.ts +8 -0
  22. package/dist/types/common/utils.d.ts.map +1 -1
  23. package/dist/types/components/button/button.vue.d.ts +2 -1
  24. package/dist/types/components/button/button.vue.d.ts.map +1 -1
  25. package/dist/types/components/tooltip/tooltip.vue.d.ts +23 -1
  26. package/dist/types/components/tooltip/tooltip.vue.d.ts.map +1 -1
  27. package/dist/types/components/tooltip/tooltip_variants.vue.d.ts +0 -1
  28. package/dist/types/directives/tooltip/index.d.ts +2 -0
  29. package/dist/types/directives/tooltip/index.d.ts.map +1 -0
  30. package/dist/types/directives/tooltip/tooltip.d.ts +6 -0
  31. package/dist/types/directives/tooltip/tooltip.d.ts.map +1 -0
  32. package/dist/types/directives.d.ts +2 -0
  33. package/dist/types/directives.d.ts.map +1 -0
  34. package/dist/types/index.d.ts +1 -0
  35. package/dist/types/recipes/conversation_view/feed_pill/feed_item_pill.vue.d.ts +9 -0
  36. package/dist/types/recipes/conversation_view/feed_pill/feed_item_pill.vue.d.ts.map +1 -1
  37. package/package.json +3 -3
  38. package/dist/emoji-f3e4b2ca.cjs +0 -25
  39. package/dist/message_input-4b60e253.cjs +0 -93
package/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ # [3.93.0](https://github.com/dialpad/dialtone-vue/compare/v3.92.1...v3.93.0) (2023-10-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add disabled prop to tooltip - vue3 ([#1277](https://github.com/dialpad/dialtone-vue/issues/1277)) ([e25a755](https://github.com/dialpad/dialtone-vue/commit/e25a755bfddd3d0eaebbf2413d2a800689c9bb7c))
7
+ * **Button:** icon sizing ([#1269](https://github.com/dialpad/dialtone-vue/issues/1269)) ([ec0df97](https://github.com/dialpad/dialtone-vue/commit/ec0df975b6fe3fea447e058212d1e11ea76de612))
8
+ * **Dt Tooltip Directive:** default delay ([#1273](https://github.com/dialpad/dialtone-vue/issues/1273)) ([5c65241](https://github.com/dialpad/dialtone-vue/commit/5c65241746d6f8f2a821d702eb3d8fafc126e854))
9
+
10
+
11
+ ### Features
12
+
13
+ * add initial date formatting functions ([#1279](https://github.com/dialpad/dialtone-vue/issues/1279)) ([f8340e9](https://github.com/dialpad/dialtone-vue/commit/f8340e9a30e54488ca13755a40730db4b07f3c89))
14
+ * **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))
15
+
16
+ ## [3.92.1](https://github.com/dialpad/dialtone-vue/compare/v3.92.0...v3.92.1) (2023-10-20)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * export directives in production build ([#1271](https://github.com/dialpad/dialtone-vue/issues/1271)) ([b34febb](https://github.com/dialpad/dialtone-vue/commit/b34febb20488e23f98b07b8ce4d19a561f73cfad))
22
+
1
23
  # [3.92.0](https://github.com/dialpad/dialtone-vue/compare/v3.91.0...v3.92.0) (2023-10-20)
2
24
 
3
25