@dialpad/dialtone-vue 3.207.0 → 3.208.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 (47) hide show
  1. package/dist/component-documentation.json +1 -1
  2. package/dist/lib/editor/EditorToolbarButton.cjs +2 -0
  3. package/dist/lib/editor/EditorToolbarButton.cjs.map +1 -0
  4. package/dist/lib/editor/EditorToolbarButton.js +103 -0
  5. package/dist/lib/editor/EditorToolbarButton.js.map +1 -0
  6. package/dist/lib/editor/EditorToolbarDropdownButton.cjs +2 -0
  7. package/dist/lib/editor/EditorToolbarDropdownButton.cjs.map +1 -0
  8. package/dist/lib/editor/EditorToolbarDropdownButton.js +106 -0
  9. package/dist/lib/editor/EditorToolbarDropdownButton.js.map +1 -0
  10. package/dist/lib/editor/EditorToolbarPopoverButton.cjs +2 -0
  11. package/dist/lib/editor/EditorToolbarPopoverButton.cjs.map +1 -0
  12. package/dist/lib/editor/EditorToolbarPopoverButton.js +107 -0
  13. package/dist/lib/editor/EditorToolbarPopoverButton.js.map +1 -0
  14. package/dist/lib/editor/editor-constants.cjs +1 -1
  15. package/dist/lib/editor/editor-constants.cjs.map +1 -1
  16. package/dist/lib/editor/editor-constants.js +5 -3
  17. package/dist/lib/editor/editor-constants.js.map +1 -1
  18. package/dist/lib/editor/editor.cjs +1 -1
  19. package/dist/lib/editor/editor.cjs.map +1 -1
  20. package/dist/lib/editor/editor.js +550 -312
  21. package/dist/lib/editor/editor.js.map +1 -1
  22. package/dist/lib/input/input-constants.cjs +1 -1
  23. package/dist/lib/input/input-constants.cjs.map +1 -1
  24. package/dist/lib/input/input-constants.js +2 -1
  25. package/dist/lib/input/input-constants.js.map +1 -1
  26. package/dist/lib/input/input.cjs.map +1 -1
  27. package/dist/lib/input/input.js +1 -1
  28. package/dist/lib/input/input.js.map +1 -1
  29. package/dist/lib/rich-text-editor/rich-text-editor.cjs +2 -2
  30. package/dist/lib/rich-text-editor/rich-text-editor.cjs.map +1 -1
  31. package/dist/lib/rich-text-editor/rich-text-editor.js +9 -2
  32. package/dist/lib/rich-text-editor/rich-text-editor.js.map +1 -1
  33. package/dist/localization/en-US.cjs +5 -0
  34. package/dist/localization/en-US.cjs.map +1 -1
  35. package/dist/localization/en-US.js +5 -0
  36. package/dist/localization/en-US.js.map +1 -1
  37. package/dist/style.css +1 -0
  38. package/dist/types/components/input/input_constants.d.ts +1 -0
  39. package/dist/types/recipes/conversation_view/editor/EditorToolbarButton.vue.d.ts +314 -0
  40. package/dist/types/recipes/conversation_view/editor/EditorToolbarButton.vue.d.ts.map +1 -0
  41. package/dist/types/recipes/conversation_view/editor/EditorToolbarDropdownButton.vue.d.ts +1614 -0
  42. package/dist/types/recipes/conversation_view/editor/EditorToolbarDropdownButton.vue.d.ts.map +1 -0
  43. package/dist/types/recipes/conversation_view/editor/EditorToolbarPopoverButton.vue.d.ts +1340 -0
  44. package/dist/types/recipes/conversation_view/editor/EditorToolbarPopoverButton.vue.d.ts.map +1 -0
  45. package/dist/types/recipes/conversation_view/editor/editor_constants.d.ts +2 -0
  46. package/dist/types/recipes/conversation_view/editor/editor_constants.d.ts.map +1 -1
  47. package/package.json +3 -3
@@ -3080,6 +3080,13 @@ const xs = /* @__PURE__ */ q(gs, [["render", vs]]), Ts = {
3080
3080
  type: Boolean,
3081
3081
  default: !1
3082
3082
  },
3083
+ /**
3084
+ * Whether the input allows font size to be introduced in the text.
3085
+ */
3086
+ allowFontSize: {
3087
+ type: Boolean,
3088
+ default: !1
3089
+ },
3083
3090
  /**
3084
3091
  * Whether the input allows different font-families to be introduced in the text.
3085
3092
  */
@@ -3453,11 +3460,11 @@ ${n.textContent}
3453
3460
  HTMLAttributes: {
3454
3461
  class: "d-rich-text-editor__code-block"
3455
3462
  }
3456
- })), this.allowInlineImages && t.push(Pi), (this.allowFontFamily || this.allowFontColor) && t.push(Hn.configure({
3463
+ })), this.allowInlineImages && t.push(Pi), (this.allowFontFamily || this.allowFontColor || this.allowFontSize) && t.push(Hn.configure({
3457
3464
  color: this.allowFontColor,
3458
3465
  backgroundColor: !1,
3459
3466
  fontFamily: this.allowFontFamily,
3460
- fontSize: !1,
3467
+ fontSize: this.allowFontSize,
3461
3468
  lineHeight: !1
3462
3469
  })), this.additionalExtensions.length && t.push(...this.additionalExtensions), this.allowTables && t.push(Dn.configure({ resizable: !0 }), An, Rn, Mn, bn), t;
3463
3470
  },