@simsustech/quasar-components 0.10.3 → 0.10.4

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.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @simsustech/quasar-components
2
2
 
3
+ ## 0.10.4
4
+
5
+ ### Patch Changes
6
+
7
+ - c88c7bc: feat(EmailInput): add link to toolbar
8
+
3
9
  ## 0.10.3
4
10
 
5
11
  ### Patch Changes
package/dist/form.js CHANGED
@@ -701,6 +701,12 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
701
701
  }, null, 8, ["placeholder", "model-value"]),
702
702
  createVNode(unref(QEditor), {
703
703
  "model-value": _ctx.body,
704
+ toolbar: [
705
+ ["left", "center", "right", "justify"],
706
+ ["bold", "italic", "underline", "strike"],
707
+ ["undo", "redo"],
708
+ ["link"]
709
+ ],
704
710
  "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => emit("update:body", $event))
705
711
  }, null, 8, ["model-value"])
706
712
  ], 64);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simsustech/quasar-components",
3
- "version": "0.10.3",
3
+ "version": "0.10.4",
4
4
  "author": "Stefan van Herwijnen",
5
5
  "description": "High level components for Quasar Framework",
6
6
  "license": "MIT",
@@ -8,6 +8,12 @@
8
8
  />
9
9
  <q-editor
10
10
  :model-value="body"
11
+ :toolbar="[
12
+ ['left', 'center', 'right', 'justify'],
13
+ ['bold', 'italic', 'underline', 'strike'],
14
+ ['undo', 'redo'],
15
+ ['link']
16
+ ]"
11
17
  @update:model-value="($event) => emit('update:body', $event)"
12
18
  />
13
19
  </template>