@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.
- package/dist/component-documentation.json +1 -1
- package/dist/lib/editor/EditorToolbarButton.cjs +2 -0
- package/dist/lib/editor/EditorToolbarButton.cjs.map +1 -0
- package/dist/lib/editor/EditorToolbarButton.js +103 -0
- package/dist/lib/editor/EditorToolbarButton.js.map +1 -0
- package/dist/lib/editor/EditorToolbarDropdownButton.cjs +2 -0
- package/dist/lib/editor/EditorToolbarDropdownButton.cjs.map +1 -0
- package/dist/lib/editor/EditorToolbarDropdownButton.js +106 -0
- package/dist/lib/editor/EditorToolbarDropdownButton.js.map +1 -0
- package/dist/lib/editor/EditorToolbarPopoverButton.cjs +2 -0
- package/dist/lib/editor/EditorToolbarPopoverButton.cjs.map +1 -0
- package/dist/lib/editor/EditorToolbarPopoverButton.js +107 -0
- package/dist/lib/editor/EditorToolbarPopoverButton.js.map +1 -0
- package/dist/lib/editor/editor-constants.cjs +1 -1
- package/dist/lib/editor/editor-constants.cjs.map +1 -1
- package/dist/lib/editor/editor-constants.js +5 -3
- package/dist/lib/editor/editor-constants.js.map +1 -1
- package/dist/lib/editor/editor.cjs +1 -1
- package/dist/lib/editor/editor.cjs.map +1 -1
- package/dist/lib/editor/editor.js +550 -312
- package/dist/lib/editor/editor.js.map +1 -1
- package/dist/lib/input/input-constants.cjs +1 -1
- package/dist/lib/input/input-constants.cjs.map +1 -1
- package/dist/lib/input/input-constants.js +2 -1
- package/dist/lib/input/input-constants.js.map +1 -1
- package/dist/lib/input/input.cjs.map +1 -1
- package/dist/lib/input/input.js +1 -1
- package/dist/lib/input/input.js.map +1 -1
- package/dist/lib/rich-text-editor/rich-text-editor.cjs +2 -2
- package/dist/lib/rich-text-editor/rich-text-editor.cjs.map +1 -1
- package/dist/lib/rich-text-editor/rich-text-editor.js +9 -2
- package/dist/lib/rich-text-editor/rich-text-editor.js.map +1 -1
- package/dist/localization/en-US.cjs +5 -0
- package/dist/localization/en-US.cjs.map +1 -1
- package/dist/localization/en-US.js +5 -0
- package/dist/localization/en-US.js.map +1 -1
- package/dist/style.css +1 -0
- package/dist/types/components/input/input_constants.d.ts +1 -0
- package/dist/types/recipes/conversation_view/editor/EditorToolbarButton.vue.d.ts +314 -0
- package/dist/types/recipes/conversation_view/editor/EditorToolbarButton.vue.d.ts.map +1 -0
- package/dist/types/recipes/conversation_view/editor/EditorToolbarDropdownButton.vue.d.ts +1614 -0
- package/dist/types/recipes/conversation_view/editor/EditorToolbarDropdownButton.vue.d.ts.map +1 -0
- package/dist/types/recipes/conversation_view/editor/EditorToolbarPopoverButton.vue.d.ts +1340 -0
- package/dist/types/recipes/conversation_view/editor/EditorToolbarPopoverButton.vue.d.ts.map +1 -0
- package/dist/types/recipes/conversation_view/editor/editor_constants.d.ts +2 -0
- package/dist/types/recipes/conversation_view/editor/editor_constants.d.ts.map +1 -1
- 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:
|
|
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
|
},
|