Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
zbeyens committed May 8, 2024
2 parents 81e67b4 + d02e158 commit d621cf6
Show file tree
Hide file tree
Showing 63 changed files with 183 additions and 89 deletions.
2 changes: 2 additions & 0 deletions packages/basic-elements/CHANGELOG.md
@@ -1,5 +1,7 @@
# @udecode/plate-basic-elements

## 33.0.2

## 33.0.1

## 33.0.0
Expand Down
4 changes: 2 additions & 2 deletions packages/basic-elements/package.json
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-basic-elements",
"version": "33.0.1",
"version": "33.0.2",
"description": "Basic elements plugin for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down Expand Up @@ -40,7 +40,7 @@
},
"dependencies": {
"@udecode/plate-block-quote": "33.0.0",
"@udecode/plate-code-block": "33.0.0",
"@udecode/plate-code-block": "33.0.2",
"@udecode/plate-heading": "33.0.1",
"@udecode/plate-paragraph": "33.0.0"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/caption/CHANGELOG.md
@@ -1,5 +1,11 @@
# @udecode/plate-caption

## 33.0.2

### Patch Changes

- [#3187](https://github.com/udecode/plate/pull/3187) by [@zbeyens](https://github.com/zbeyens) – Fix types

## 33.0.0

## 32.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/caption/package.json
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-caption",
"version": "33.0.0",
"version": "33.0.2",
"description": "Primitive components for caption.",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down
2 changes: 1 addition & 1 deletion packages/caption/src/TCaptionElement.ts
@@ -1,4 +1,4 @@
import type { TDescendant, TElement } from '@udecode/plate-common/server';
import type { TDescendant, TElement } from '@udecode/plate-common';

export interface TCaptionElement extends TElement {
caption?: TDescendant[];
Expand Down
6 changes: 6 additions & 0 deletions packages/cloud/CHANGELOG.md
@@ -1,5 +1,11 @@
# @udecode/plate-cloud

## 33.0.2

### Patch Changes

- [#3187](https://github.com/udecode/plate/pull/3187) by [@zbeyens](https://github.com/zbeyens) – Fix types

## 33.0.0

## 32.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/cloud/package.json
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-cloud",
"version": "33.0.0",
"version": "33.0.2",
"description": "Plate plugin to add cloud based image and attachment uploads",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down
2 changes: 1 addition & 1 deletion packages/cloud/src/attachment/types.ts
@@ -1,4 +1,4 @@
import type { TElement } from '@udecode/plate-common/server';
import type { TElement } from '@udecode/plate-common';

/** Specifies just the `options` part of the CloudPlugin */
export type CloudAttachmentPlugin = {};
Expand Down
6 changes: 1 addition & 5 deletions packages/cloud/src/image/types.ts
@@ -1,8 +1,4 @@
import type {
PlateEditor,
TElement,
Value,
} from '@udecode/plate-common/server';
import type { PlateEditor, TElement, Value } from '@udecode/plate-common';

export type CloudImagePlugin = {
maxInitialHeight?: number;
Expand Down
6 changes: 6 additions & 0 deletions packages/code-block/CHANGELOG.md
@@ -1,5 +1,11 @@
# @udecode/plate-code-block

## 33.0.2

### Patch Changes

- [#3187](https://github.com/udecode/plate/pull/3187) by [@zbeyens](https://github.com/zbeyens) – Fix types

## 33.0.0

## 32.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/code-block/package.json
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-code-block",
"version": "33.0.0",
"version": "33.0.2",
"description": "Code block plugin for Plate",
"keywords": [
"plate",
Expand Down
2 changes: 1 addition & 1 deletion packages/code-block/src/shared/types.ts
Expand Up @@ -3,7 +3,7 @@ import type {
InsertNodesOptions,
TElement,
Value,
} from '@udecode/plate-common/server';
} from '@udecode/plate-common';

export interface CodeBlockPlugin extends HotkeyPlugin {
deserializers?: string[];
Expand Down
6 changes: 6 additions & 0 deletions packages/comments/CHANGELOG.md
@@ -1,5 +1,11 @@
# @udecode/plate-comments

## 33.0.2

### Patch Changes

- [#3187](https://github.com/udecode/plate/pull/3187) by [@zbeyens](https://github.com/zbeyens) – Fix types

## 33.0.0

## 32.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/comments/package.json
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-comments",
"version": "33.0.0",
"version": "33.0.2",
"description": "Plate plugin for comments",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down
2 changes: 1 addition & 1 deletion packages/comments/src/types.ts
@@ -1,4 +1,4 @@
import type { TText, Value } from '@udecode/plate-common/server';
import type { TText, Value } from '@udecode/plate-common';

export interface CommentUser {
id: string;
Expand Down
6 changes: 6 additions & 0 deletions packages/cursor/CHANGELOG.md
@@ -1,5 +1,11 @@
# @udecode/plate-cursor

## 33.0.2

### Patch Changes

- [#3187](https://github.com/udecode/plate/pull/3187) by [@zbeyens](https://github.com/zbeyens) – Fix types

## 33.0.0

## 32.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/cursor/package.json
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-cursor",
"version": "33.0.0",
"version": "33.0.2",
"description": "Cursor for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down
2 changes: 1 addition & 1 deletion packages/cursor/src/components/CursorOverlay.tsx
@@ -1,6 +1,6 @@
import React from 'react';

import type { ClassNames, UnknownObject } from '@udecode/plate-common/server';
import type { ClassNames, UnknownObject } from '@udecode/plate-common';

import { usePlateSelectors } from '@udecode/plate-common';

Expand Down
6 changes: 6 additions & 0 deletions packages/diff/CHANGELOG.md
@@ -1,5 +1,11 @@
# @udecode/plate-diff

## 33.0.2

### Patch Changes

- [#3187](https://github.com/udecode/plate/pull/3187) by [@zbeyens](https://github.com/zbeyens) – Fix types

## 33.0.0

## 32.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/diff/package.json
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-diff",
"version": "33.0.0",
"version": "33.0.2",
"description": "Compute a diff of two Slate documents",
"homepage": "https://platejs.org",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/diff/src/internal/utils/get-properties.ts
Expand Up @@ -4,7 +4,7 @@
*/

/* eslint-disable no-restricted-syntax */
import type { TText } from '@udecode/plate-common/server';
import type { TText } from '@udecode/plate-common';

// Get object that will set the properties of before
// to equal the properties of node, in terms of the
Expand Down
6 changes: 6 additions & 0 deletions packages/excalidraw/CHANGELOG.md
@@ -1,5 +1,11 @@
# @udecode/plate-excalidraw

## 33.0.2

### Patch Changes

- [#3187](https://github.com/udecode/plate/pull/3187) by [@zbeyens](https://github.com/zbeyens) – Fix types

## 33.0.0

## 32.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/excalidraw/package.json
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-excalidraw",
"version": "33.0.0",
"version": "33.0.2",
"description": "Excalidraw plugin for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down
2 changes: 1 addition & 1 deletion packages/excalidraw/src/types.ts
@@ -1,7 +1,7 @@
import type { ImportedDataState } from '@excalidraw/excalidraw/types/data/types';
import type { ExcalidrawElement } from '@excalidraw/excalidraw/types/element/types';
import type { ExcalidrawProps } from '@excalidraw/excalidraw/types/types';
import type { TElement } from '@udecode/plate-common/server';
import type { TElement } from '@udecode/plate-common';

export interface TExcalidrawElement extends TElement {
data?: {
Expand Down
2 changes: 2 additions & 0 deletions packages/indent-list/CHANGELOG.md
@@ -1,5 +1,7 @@
# @udecode/plate-indent-list

## 33.0.2

## 33.0.0

## 32.0.1
Expand Down
6 changes: 3 additions & 3 deletions packages/indent-list/package.json
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-indent-list",
"version": "33.0.0",
"version": "33.0.2",
"description": "Indent list plugin for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down Expand Up @@ -39,8 +39,8 @@
"typecheck": "yarn p:typecheck"
},
"dependencies": {
"@udecode/plate-indent": "33.0.0",
"@udecode/plate-list": "33.0.0",
"@udecode/plate-indent": "33.0.2",
"@udecode/plate-list": "33.0.2",
"clsx": "^1.2.1"
},
"devDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/indent/CHANGELOG.md
@@ -1,5 +1,11 @@
# @udecode/plate-indent

## 33.0.2

### Patch Changes

- [#3187](https://github.com/udecode/plate/pull/3187) by [@zbeyens](https://github.com/zbeyens) – Fix types

## 33.0.0

## 32.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/indent/package.json
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-indent",
"version": "33.0.0",
"version": "33.0.2",
"description": "Indent plugin for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down
2 changes: 1 addition & 1 deletion packages/indent/src/types.ts
@@ -1,4 +1,4 @@
import type { TElement } from '@udecode/plate-common/server';
import type { TElement } from '@udecode/plate-common';

export interface TIndentElement extends TElement {
indent: number;
Expand Down
6 changes: 6 additions & 0 deletions packages/layout/CHANGELOG.md
@@ -1,5 +1,11 @@
# @udecode/plate-layout

## 33.0.2

### Patch Changes

- [#3187](https://github.com/udecode/plate/pull/3187) by [@zbeyens](https://github.com/zbeyens) – Fix types

## 33.0.0

## 32.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/layout/package.json
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-layout",
"version": "33.0.0",
"version": "33.0.2",
"description": "Layout plugin for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down
2 changes: 1 addition & 1 deletion packages/layout/src/types.ts
@@ -1,4 +1,4 @@
import type { TElement } from '@udecode/plate-common/server';
import type { TElement } from '@udecode/plate-common';

export interface TColumnElement extends TElement {
type: 'column';
Expand Down
6 changes: 6 additions & 0 deletions packages/link/CHANGELOG.md
@@ -1,5 +1,11 @@
# @udecode/plate-link

## 33.0.2

### Patch Changes

- [#3187](https://github.com/udecode/plate/pull/3187) by [@zbeyens](https://github.com/zbeyens) – Fix types

## 33.0.0

## 32.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/link/package.json
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-link",
"version": "33.0.0",
"version": "33.0.2",
"description": "Link plugin for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down
2 changes: 1 addition & 1 deletion packages/link/src/types.ts
@@ -1,4 +1,4 @@
import type { TElement } from '@udecode/plate-common/server';
import type { TElement } from '@udecode/plate-common';

export interface TLinkElement extends TElement {
url: string;
Expand Down
6 changes: 6 additions & 0 deletions packages/list/CHANGELOG.md
@@ -1,5 +1,11 @@
# @udecode/plate-list

## 33.0.2

### Patch Changes

- [#3187](https://github.com/udecode/plate/pull/3187) by [@zbeyens](https://github.com/zbeyens) – Fix types

## 33.0.0

## 32.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/list/package.json
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-list",
"version": "33.0.0",
"version": "33.0.2",
"description": "List plugin for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down
2 changes: 1 addition & 1 deletion packages/list/src/todo-list/types.ts
@@ -1,4 +1,4 @@
import type { TElement } from '@udecode/plate-common/server';
import type { TElement } from '@udecode/plate-common';

export interface TTodoListItemElement extends TElement {
checked?: boolean;
Expand Down
6 changes: 6 additions & 0 deletions packages/media/CHANGELOG.md
@@ -1,5 +1,11 @@
# @udecode/plate-media

## 33.0.2

### Patch Changes

- [#3187](https://github.com/udecode/plate/pull/3187) by [@zbeyens](https://github.com/zbeyens) – Fix types

## 33.0.0

## 32.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/media/package.json
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-media",
"version": "33.0.0",
"version": "33.0.2",
"description": "Plate Media plugin",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down
2 changes: 1 addition & 1 deletion packages/media/src/media/types.ts
@@ -1,4 +1,4 @@
import type { TElement } from '@udecode/plate-common/server';
import type { TElement } from '@udecode/plate-common';

export interface TMediaElement extends TElement {
url: string;
Expand Down
2 changes: 2 additions & 0 deletions packages/plate/CHANGELOG.md
@@ -1,5 +1,7 @@
# @udecode/plate

## 33.0.2

## 33.0.1

## 33.0.0
Expand Down

0 comments on commit d621cf6

Please sign in to comment.