@contentful/field-editor-rich-text 2.0.2 → 2.0.3

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
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.0.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.0.2...@contentful/field-editor-rich-text@2.0.3) (2022-06-22)
7
+
8
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
9
+
6
10
  ## [2.0.2](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.0.1...@contentful/field-editor-rich-text@2.0.2) (2022-06-22)
7
11
 
8
12
  **Note:** Version bump only for package @contentful/field-editor-rich-text
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contentful/field-editor-rich-text",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "source": "./src/index.tsx",
5
5
  "main": "./dist/index.js",
6
6
  "module": "dist/field-editor-rich-text.esm.js",
@@ -70,5 +70,5 @@
70
70
  "@udecode/plate-test-utils": "^3.2.0",
71
71
  "react": ">=16.14.0"
72
72
  },
73
- "gitHead": "1d89ccc17095a0d9deffe66b1992d14e248fdaf6"
73
+ "gitHead": "bcef64253dbfe924784dcf5aa22ccc6aec988890"
74
74
  }
@@ -1,37 +0,0 @@
1
- export class InViewport extends React.Component<any, any, any> {
2
- static defaultProps: {
3
- testId: string;
4
- offset: number;
5
- };
6
- constructor(props: any);
7
- constructor(props: any, context: any);
8
- tGetDomPosition: any;
9
- nodeRef: any;
10
- lastOverflowAt: any;
11
- tOnOverflowTop: (...args: any[]) => any;
12
- tOnOverflowBottom: (...args: any[]) => any;
13
- tOnOverflowRight: (...args: any[]) => any;
14
- tOnOverflowLeft: (...args: any[]) => any;
15
- getDomPosition: () => void;
16
- bindEventListeners: () => void;
17
- handleOverflow: ({ top, left, bottom, right }: {
18
- top: any;
19
- left: any;
20
- bottom: any;
21
- right: any;
22
- }, windowWidth: any, windowHeight: any) => void;
23
- }
24
- export namespace InViewport {
25
- export namespace propTypes {
26
- export const offset: PropTypes.Requireable<number>;
27
- export const onOverflowTop: PropTypes.Requireable<(...args: any[]) => any>;
28
- export const onOverflowRight: PropTypes.Requireable<(...args: any[]) => any>;
29
- export const onOverflowBottom: PropTypes.Requireable<(...args: any[]) => any>;
30
- export const onOverflowLeft: PropTypes.Requireable<(...args: any[]) => any>;
31
- export const className: PropTypes.Requireable<string>;
32
- export const children: PropTypes.Requireable<any>;
33
- export const testId: PropTypes.Requireable<string>;
34
- }
35
- }
36
- import React from "react";
37
- import PropTypes from "prop-types";
@@ -1,14 +0,0 @@
1
- export function FetchingWrappedInlineEntryCard(props: any): JSX.Element;
2
- export namespace FetchingWrappedInlineEntryCard {
3
- export namespace propTypes {
4
- export const sdk: PropTypes.Validator<object>;
5
- export const entryId: PropTypes.Validator<string>;
6
- export const isDisabled: PropTypes.Validator<boolean>;
7
- export const isSelected: PropTypes.Validator<boolean>;
8
- export const isReadOnly: PropTypes.Validator<boolean>;
9
- export const onRemove: PropTypes.Validator<(...args: any[]) => any>;
10
- export const onEdit: PropTypes.Validator<(...args: any[]) => any>;
11
- export const onEntityFetchComplete: PropTypes.Requireable<(...args: any[]) => any>;
12
- }
13
- }
14
- import PropTypes from "prop-types";
@@ -1,13 +0,0 @@
1
- declare function Hyperlink(props: any): JSX.Element;
2
- declare namespace Hyperlink {
3
- export namespace propTypes {
4
- export const attributes: PropTypes.Validator<object>;
5
- export const node: PropTypes.Validator<object>;
6
- export const children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
7
- export const editor: PropTypes.Requireable<object>;
8
- export const richTextAPI: PropTypes.Validator<object>;
9
- export const onEdit: PropTypes.Requireable<(...args: any[]) => any>;
10
- }
11
- }
12
- export default Hyperlink;
13
- import PropTypes from "prop-types";