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-table-display

## 0.0.3

### Patch Changes

- Replace HTML Element with Jodit.

## 0.0.2

### 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 table end-user component",
"author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
"type": "module",
"version": "0.0.2",
"version": "0.0.3",
"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-table-edit

## 0.0.3

### Patch Changes

- Replace HTML Element with Jodit.

## 0.0.2

### 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 table authoring component",
"author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
"type": "module",
"version": "0.0.2",
"version": "0.0.3",
"exports": {
".": {
"import": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/edit/src/components/Edit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const findRow = (cellId: string) => {
};

const focusElement = (cell: any) => {
emit('focus', {}, { ...cell, type: 'HTML' }, props.element);
emit('focus', {}, { ...cell, type: 'JODIT_HTML' }, props.element);
};

const addRow = (cellId: string, direction = Direction.After) => {
Expand Down
1 change: 1 addition & 0 deletions packages/edit/src/components/TableCell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
:element="cell"
:is-disabled="isDisabled"
:parent="table"
:show-placeholder="false"
class="table-cell"
@save="save"
/>
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-table-manifest

## 0.0.3

### Patch Changes

- Replace HTML Element with Jodit.

## 0.0.2

### 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 table manifest",
"author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
"type": "module",
"version": "0.0.2",
"version": "0.0.3",
"exports": {
".": {
"import": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/manifest/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function removeCell(row: Row, predicate = {}) {
export function addEmbed(embeds: Embeds, cellId: string, tableId: string) {
const embed = {
id: cellId,
type: 'TIPTAP_HTML',
type: 'JODIT_HTML',
embedded: true,
data: { tableId, cellId },
};
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-table-server

## 0.0.3

### Patch Changes

- Replace HTML Element with Jodit.

## 0.0.2

### 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 table server element",
"author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
"type": "module",
"version": "0.0.2",
"version": "0.0.3",
"exports": {
".": {
"import": "./dist/index.js",
Expand Down
Loading