Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/display/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tailor-cms/ce-html-display

## 0.1.6

### Patch Changes

- Fixed condition for disabling text align.

## 0.1.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/display/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Tailor CMS HTML editor end-user component",
"author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
"type": "module",
"version": "0.1.5",
"version": "0.1.6",
"exports": {
".": {
"import": "./dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/edit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tailor-cms/ce-html-edit

## 0.1.6

### Patch Changes

- Fixed condition for disabling text align.

## 0.1.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/edit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Tailor CMS HTML editor authoring component",
"author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
"type": "module",
"version": "0.1.5",
"version": "0.1.6",
"exports": {
".": {
"import": "./dist/index.js",
Expand Down
3 changes: 1 addition & 2 deletions packages/edit/src/components/actions/TextAlign.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<VTooltip location="bottom">
<template #activator="{ props: tooltip }">
<VBtn
:disabled="!editor.can().chain().focus().setTextAlign().run()"
:disabled="!editor.can().chain().focus().setTextAlign('left').run()"
aria-label="Text align"
class="pa-0"
min-width="46"
Expand All @@ -23,7 +23,6 @@
v-for="textAlign in alignments"
:key="textAlign"
:active="editor.isActive({ textAlign })"
:disabled="!editor.can().chain().focus().setTextAlign().run()"
class="px-2"
min-height="36"
rounded="sm"
Expand Down
6 changes: 6 additions & 0 deletions packages/manifest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tailor-cms/ce-html-manifest

## 0.1.6

### Patch Changes

- Fixed condition for disabling text align.

## 0.1.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/manifest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Tailor CMS HTML editor manifest",
"author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
"type": "module",
"version": "0.1.5",
"version": "0.1.6",
"exports": {
".": {
"import": "./dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tailor-cms/ce-html-server

## 0.1.6

### Patch Changes

- Fixed condition for disabling text align.

## 0.1.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Tailor CMS HTML editor server component",
"author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
"type": "module",
"version": "0.1.5",
"version": "0.1.6",
"exports": {
".": {
"import": "./dist/index.js",
Expand Down
Loading