@squiz/formatted-text-editor 1.21.1-alpha.19 → 1.21.1-alpha.20

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.
Files changed (86) hide show
  1. package/demo/App.tsx +31 -10
  2. package/demo/index.scss +2 -7
  3. package/lib/Editor/Editor.js +26 -2
  4. package/lib/Editor/EditorContext.d.ts +10 -0
  5. package/lib/Editor/EditorContext.js +15 -0
  6. package/lib/EditorToolbar/FloatingToolbar.js +15 -16
  7. package/lib/EditorToolbar/Tools/Link/Form/LinkForm.d.ts +14 -5
  8. package/lib/EditorToolbar/Tools/Link/Form/LinkForm.js +66 -14
  9. package/lib/EditorToolbar/Tools/Link/LinkButton.js +11 -15
  10. package/lib/EditorToolbar/Tools/Link/LinkModal.js +12 -5
  11. package/lib/EditorToolbar/Tools/Link/RemoveLinkButton.js +1 -8
  12. package/lib/Extensions/CommandsExtension/CommandsExtension.d.ts +20 -0
  13. package/lib/Extensions/CommandsExtension/CommandsExtension.js +52 -0
  14. package/lib/Extensions/Extensions.d.ts +6 -1
  15. package/lib/Extensions/Extensions.js +31 -20
  16. package/lib/Extensions/LinkExtension/AssetLinkExtension.d.ts +26 -0
  17. package/lib/Extensions/LinkExtension/AssetLinkExtension.js +102 -0
  18. package/lib/Extensions/LinkExtension/LinkExtension.d.ts +21 -12
  19. package/lib/Extensions/LinkExtension/LinkExtension.js +63 -65
  20. package/lib/Extensions/LinkExtension/common.d.ts +7 -0
  21. package/lib/Extensions/LinkExtension/common.js +14 -0
  22. package/lib/hooks/index.d.ts +1 -0
  23. package/lib/hooks/index.js +1 -0
  24. package/lib/hooks/useExpandedSelection.d.ts +23 -0
  25. package/lib/hooks/useExpandedSelection.js +37 -0
  26. package/lib/index.css +15 -3
  27. package/lib/index.d.ts +3 -2
  28. package/lib/index.js +5 -3
  29. package/lib/types.d.ts +3 -0
  30. package/lib/types.js +2 -0
  31. package/lib/ui/Button/Button.js +2 -3
  32. package/lib/ui/Fields/Input/Input.d.ts +1 -0
  33. package/lib/ui/Fields/Input/Input.js +8 -3
  34. package/lib/ui/Modal/Modal.js +2 -1
  35. package/lib/utils/converters/remirrorNodeToSquizNode/remirrorNodeToSquizNode.d.ts +1 -2
  36. package/lib/utils/converters/remirrorNodeToSquizNode/remirrorNodeToSquizNode.js +110 -105
  37. package/lib/utils/converters/squizNodeToRemirrorNode/squizNodeToRemirrorNode.js +93 -69
  38. package/lib/utils/undefinedIfEmpty.d.ts +1 -0
  39. package/lib/utils/undefinedIfEmpty.js +7 -0
  40. package/package.json +3 -2
  41. package/src/Editor/Editor.spec.tsx +0 -26
  42. package/src/Editor/Editor.tsx +4 -3
  43. package/src/Editor/EditorContext.spec.tsx +26 -0
  44. package/src/Editor/EditorContext.ts +19 -0
  45. package/src/EditorToolbar/FloatingToolbar.tsx +19 -18
  46. package/src/EditorToolbar/Tools/Link/Form/LinkForm.spec.tsx +37 -9
  47. package/src/EditorToolbar/Tools/Link/Form/LinkForm.tsx +96 -26
  48. package/src/EditorToolbar/Tools/Link/LinkButton.spec.tsx +103 -25
  49. package/src/EditorToolbar/Tools/Link/LinkButton.tsx +16 -19
  50. package/src/EditorToolbar/Tools/Link/LinkModal.tsx +13 -6
  51. package/src/EditorToolbar/Tools/Link/RemoveLinkButton.spec.tsx +26 -26
  52. package/src/EditorToolbar/Tools/Link/RemoveLinkButton.tsx +2 -10
  53. package/src/EditorToolbar/Tools/Undo/UndoButton.spec.tsx +22 -1
  54. package/src/Extensions/CommandsExtension/CommandsExtension.ts +54 -0
  55. package/src/Extensions/Extensions.ts +31 -19
  56. package/src/Extensions/LinkExtension/AssetLinkExtension.spec.ts +104 -0
  57. package/src/Extensions/LinkExtension/AssetLinkExtension.ts +128 -0
  58. package/src/Extensions/LinkExtension/LinkExtension.spec.ts +68 -0
  59. package/src/Extensions/LinkExtension/LinkExtension.ts +88 -82
  60. package/src/Extensions/LinkExtension/common.ts +10 -0
  61. package/src/hooks/index.ts +1 -0
  62. package/src/hooks/useExpandedSelection.ts +44 -0
  63. package/src/index.ts +3 -2
  64. package/src/types.ts +5 -0
  65. package/src/ui/Button/Button.tsx +2 -4
  66. package/src/ui/Fields/Input/Input.tsx +18 -4
  67. package/src/ui/Modal/Modal.tsx +2 -1
  68. package/src/ui/_forms.scss +14 -0
  69. package/src/utils/converters/mocks/squizNodeJson.mock.ts +177 -0
  70. package/src/utils/converters/remirrorNodeToSquizNode/remirrorNodeToSquizNode.spec.ts +41 -6
  71. package/src/utils/converters/remirrorNodeToSquizNode/remirrorNodeToSquizNode.ts +124 -113
  72. package/src/utils/converters/squizNodeToRemirrorNode/squizNodeToRemirrorNode.spec.ts +56 -34
  73. package/src/utils/converters/squizNodeToRemirrorNode/squizNodeToRemirrorNode.ts +107 -79
  74. package/src/utils/undefinedIfEmpty.spec.ts +12 -0
  75. package/src/utils/undefinedIfEmpty.ts +3 -0
  76. package/tailwind.config.cjs +3 -0
  77. package/tests/renderWithEditor.tsx +21 -12
  78. package/lib/FormattedTextEditor.d.ts +0 -2
  79. package/lib/FormattedTextEditor.js +0 -7
  80. package/lib/utils/converters/validNodeTypes.d.ts +0 -2
  81. package/lib/utils/converters/validNodeTypes.js +0 -21
  82. package/src/Editor/Editor.mock.tsx +0 -43
  83. package/src/FormattedTextEditor.spec.tsx +0 -10
  84. package/src/FormattedTextEditor.tsx +0 -3
  85. package/src/utils/converters/validNodeTypes.spec.ts +0 -33
  86. package/src/utils/converters/validNodeTypes.ts +0 -21
@@ -0,0 +1,102 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ exports.AssetLinkExtension = void 0;
10
+ const remirror_1 = require("remirror");
11
+ const core_1 = require("@remirror/core");
12
+ const common_1 = require("./common");
13
+ const CommandsExtension_1 = require("../CommandsExtension/CommandsExtension");
14
+ const Extensions_1 = require("../Extensions");
15
+ let AssetLinkExtension = class AssetLinkExtension extends core_1.MarkExtension {
16
+ get name() {
17
+ return Extensions_1.MarkName.AssetLink;
18
+ }
19
+ createMarkSpec(extra, override) {
20
+ return {
21
+ inclusive: false,
22
+ excludes: 'link',
23
+ ...override,
24
+ attrs: {
25
+ ...extra.defaults(),
26
+ matrixAssetId: {},
27
+ matrixIdentifier: { default: this.options.matrixIdentifier },
28
+ matrixDomain: { default: this.options.matrixDomain },
29
+ target: { default: this.options.defaultTarget },
30
+ },
31
+ parseDOM: [
32
+ {
33
+ tag: 'a[data-matrix-asset-id]',
34
+ getAttrs: (node) => {
35
+ if (!(0, remirror_1.isElementDomNode)(node)) {
36
+ return false;
37
+ }
38
+ const matrixAssetId = node.getAttribute('data-matrix-asset-id');
39
+ const matrixIdentifier = node.getAttribute('data-matrix-identifier');
40
+ const matrixDomain = node.getAttribute('data-matrix-domain');
41
+ if (!matrixAssetId || !matrixIdentifier || !matrixDomain) {
42
+ return false;
43
+ }
44
+ return {
45
+ ...extra.parse(node),
46
+ matrixAssetId,
47
+ matrixIdentifier,
48
+ matrixDomain,
49
+ target: (0, common_1.validateTarget)(node.getAttribute('target'), this.options.supportedTargets, this.options.defaultTarget),
50
+ };
51
+ },
52
+ },
53
+ ],
54
+ toDOM: (node) => {
55
+ const { matrixAssetId, matrixIdentifier, matrixDomain, target, ...rest } = (0, core_1.omitExtraAttributes)(node.attrs, extra);
56
+ const rel = 'noopener noreferrer nofollow';
57
+ const attrs = {
58
+ ...extra.dom(node),
59
+ ...rest,
60
+ rel,
61
+ // TODO: this won't be acceptable if/when we get to rendering outside of Matrix.
62
+ href: `/?a=${matrixAssetId}`,
63
+ target: (0, common_1.validateTarget)(target, this.options.supportedTargets, this.options.defaultTarget),
64
+ 'data-matrix-asset-id': matrixAssetId,
65
+ 'data-matrix-identifier': matrixIdentifier,
66
+ 'data-matrix-domain': matrixDomain,
67
+ };
68
+ return ['a', attrs, 0];
69
+ },
70
+ };
71
+ }
72
+ updateAssetLink({ text, attrs, range }) {
73
+ return this.store.getExtension(CommandsExtension_1.CommandsExtension).updateMark({
74
+ attrs,
75
+ text,
76
+ range,
77
+ mark: this.type,
78
+ removeMark: !attrs.matrixAssetId,
79
+ });
80
+ }
81
+ removeAssetLink() {
82
+ return (0, core_1.removeMark)({ type: this.type });
83
+ }
84
+ };
85
+ __decorate([
86
+ (0, core_1.command)()
87
+ ], AssetLinkExtension.prototype, "updateAssetLink", null);
88
+ __decorate([
89
+ (0, core_1.command)()
90
+ ], AssetLinkExtension.prototype, "removeAssetLink", null);
91
+ AssetLinkExtension = __decorate([
92
+ (0, core_1.extension)({
93
+ defaultOptions: {
94
+ matrixIdentifier: '',
95
+ matrixDomain: '',
96
+ defaultTarget: common_1.LinkTarget.Self,
97
+ supportedTargets: [common_1.LinkTarget.Self, common_1.LinkTarget.Blank],
98
+ },
99
+ defaultPriority: remirror_1.ExtensionPriority.High,
100
+ })
101
+ ], AssetLinkExtension);
102
+ exports.AssetLinkExtension = AssetLinkExtension;
@@ -1,16 +1,25 @@
1
- import { ApplySchemaAttributes, MarkExtensionSpec, MarkSpecOverride } from 'remirror';
2
- import { KeyBindingProps } from '@remirror/core';
3
- import { CommandFunction } from '@remirror/pm';
4
- import { LinkAttributes as RemirrorLinkAttributes, LinkExtension as RemirrorLinkExtension } from 'remirror/extensions';
5
- export type UpdateLinkOptions = LinkAttributes & {
6
- text: string;
7
- };
8
- export type LinkAttributes = RemirrorLinkAttributes & {
1
+ import { ApplySchemaAttributes, FromToProps, MarkExtensionSpec, MarkSpecOverride } from 'remirror';
2
+ import { CommandFunction, Handler, KeyBindingProps, MarkExtension } from '@remirror/core';
3
+ import { LinkTarget } from './common';
4
+ export type LinkAttributes = {
5
+ href: string;
9
6
  title?: string;
7
+ target: LinkTarget;
8
+ };
9
+ export type LinkOptions = {
10
+ defaultTarget?: LinkTarget;
11
+ supportedTargets?: LinkTarget[];
12
+ onShortcut?: Handler<() => void>;
13
+ };
14
+ export type UpdateLinkProps = {
15
+ text: string;
16
+ attrs: Partial<LinkAttributes>;
17
+ range: FromToProps;
10
18
  };
11
- export declare class LinkExtension extends RemirrorLinkExtension {
19
+ export declare class LinkExtension extends MarkExtension<LinkOptions> {
20
+ get name(): string;
12
21
  createMarkSpec(extra: ApplySchemaAttributes, override: MarkSpecOverride): MarkExtensionSpec;
13
- shortcut({ tr }: KeyBindingProps): boolean;
14
- selectLink(): CommandFunction;
15
- updateLink(options: UpdateLinkOptions): CommandFunction;
22
+ shortcut(_: KeyBindingProps): boolean;
23
+ updateLink({ text, attrs, range }: UpdateLinkProps): CommandFunction;
24
+ removeLink(): CommandFunction;
16
25
  }
@@ -1,18 +1,31 @@
1
1
  "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
2
8
  Object.defineProperty(exports, "__esModule", { value: true });
3
9
  exports.LinkExtension = void 0;
4
10
  const remirror_1 = require("remirror");
5
11
  const core_1 = require("@remirror/core");
6
- const extensions_1 = require("remirror/extensions");
7
- class LinkExtension extends extensions_1.LinkExtension {
12
+ const common_1 = require("./common");
13
+ const CommandsExtension_1 = require("../CommandsExtension/CommandsExtension");
14
+ const Extensions_1 = require("../Extensions");
15
+ let LinkExtension = class LinkExtension extends core_1.MarkExtension {
16
+ get name() {
17
+ return Extensions_1.MarkName.Link;
18
+ }
8
19
  createMarkSpec(extra, override) {
9
- const spec = super.createMarkSpec(extra, override);
10
20
  return {
11
- ...spec,
12
- excludes: undefined,
21
+ inclusive: false,
22
+ excludes: 'assetLink',
23
+ ...override,
13
24
  attrs: {
14
- ...spec.attrs,
25
+ ...extra.defaults(),
26
+ href: {},
15
27
  title: { default: undefined },
28
+ target: { default: this.options.defaultTarget },
16
29
  },
17
30
  parseDOM: [
18
31
  {
@@ -23,75 +36,60 @@ class LinkExtension extends extensions_1.LinkExtension {
23
36
  }
24
37
  return {
25
38
  ...extra.parse(node),
26
- auto: false,
27
39
  href: node.getAttribute('href'),
28
- target: node.getAttribute('target'),
29
40
  title: node.getAttribute('title'),
41
+ target: (0, common_1.validateTarget)(node.getAttribute('target'), this.options.supportedTargets, this.options.defaultTarget),
30
42
  };
31
43
  },
32
44
  },
33
45
  ],
46
+ toDOM: (node) => {
47
+ const { target, ...rest } = (0, core_1.omitExtraAttributes)(node.attrs, extra);
48
+ const rel = 'noopener noreferrer nofollow';
49
+ const attrs = {
50
+ ...extra.dom(node),
51
+ ...rest,
52
+ rel,
53
+ target: (0, common_1.validateTarget)(target, this.options.supportedTargets, this.options.defaultTarget),
54
+ };
55
+ return ['a', attrs, 0];
56
+ },
34
57
  };
35
58
  }
36
- shortcut({ tr }) {
37
- // override parent implementation to allow a link to be inserted without requiring a text selection first.
38
- const { from, to, $from } = tr.selection;
39
- const mark = (0, core_1.getMarkRange)($from, this.type);
40
- const selectedText = tr.doc.textBetween(from, to);
41
- this.options.onShortcut({
42
- activeLink: mark ? { attrs: mark.mark.attrs, from: mark.from, to: mark.to } : undefined,
43
- selectedText,
44
- from,
45
- to,
46
- });
59
+ shortcut(_) {
60
+ this.options.onShortcut();
47
61
  return true;
48
62
  }
49
- selectLink() {
50
- // parent implementation selects only the link text, this mimics closer to Google Docs where
51
- // the select text is widened to include the link but retains non-link selected text as well.
52
- return (props) => {
53
- const { tr } = props;
54
- const ranges = (0, remirror_1.getMarkRanges)(tr.selection, this.type);
55
- if (ranges.length === 0) {
56
- return false;
57
- }
58
- // work out the start position of the first link and end position of the last link in the selection.
59
- const from = Math.min(tr.selection.from, ...ranges.map((range) => range.from));
60
- const to = Math.max(tr.selection.to, ...ranges.map((range) => range.to));
61
- // don't need to widen the selection, return early.
62
- if (tr.selection.from === from && tr.selection.to === to) {
63
- return false;
64
- }
65
- // widen the selection to make sure the full link is included.
66
- this.store.commands.selectText.original({ from, to })(props);
67
- return true;
68
- };
63
+ updateLink({ text, attrs, range }) {
64
+ return this.store.getExtension(CommandsExtension_1.CommandsExtension).updateMark({
65
+ attrs,
66
+ text,
67
+ range,
68
+ mark: this.type,
69
+ removeMark: !attrs.href,
70
+ });
69
71
  }
70
- updateLink(options) {
71
- const { text, ...attrs } = options;
72
- return (props) => {
73
- const { tr, dispatch, view } = props;
74
- const range = { from: tr.selection.from, to: tr.selection.to };
75
- const selectedText = tr.doc.textBetween(range.from, range.to);
76
- if (text !== selectedText) {
77
- // update the text in the editor if it was updated, update the range to cover the length of the new text.
78
- tr.insertText(text);
79
- range.to = range.from + text.length;
80
- }
81
- // apply the link, or remove it if no URL was provided.
82
- if (attrs.href.length > 0) {
83
- tr.addMark(range.from, range.to, this.type.create(attrs));
84
- }
85
- else {
86
- tr.removeMark(range.from, range.to, this.type);
87
- }
88
- // move the cursor to the end of the link and re-focus the editor.
89
- tr.setSelection((0, core_1.getTextSelection)({ from: range.to, to: range.to }, tr.doc));
90
- // apply the transaction.
91
- dispatch?.(tr);
92
- view?.focus();
93
- return true;
94
- };
72
+ removeLink() {
73
+ return (0, core_1.removeMark)({ type: this.type });
95
74
  }
96
- }
75
+ };
76
+ __decorate([
77
+ (0, core_1.keyBinding)({ shortcut: core_1.NamedShortcut.InsertLink })
78
+ ], LinkExtension.prototype, "shortcut", null);
79
+ __decorate([
80
+ (0, core_1.command)()
81
+ ], LinkExtension.prototype, "updateLink", null);
82
+ __decorate([
83
+ (0, core_1.command)()
84
+ ], LinkExtension.prototype, "removeLink", null);
85
+ LinkExtension = __decorate([
86
+ (0, core_1.extension)({
87
+ defaultOptions: {
88
+ defaultTarget: common_1.LinkTarget.Self,
89
+ supportedTargets: [common_1.LinkTarget.Self, common_1.LinkTarget.Blank],
90
+ },
91
+ handlerKeys: ['onShortcut'],
92
+ defaultPriority: remirror_1.ExtensionPriority.Medium,
93
+ })
94
+ ], LinkExtension);
97
95
  exports.LinkExtension = LinkExtension;
@@ -0,0 +1,7 @@
1
+ export declare enum LinkTarget {
2
+ Self = "_self",
3
+ Blank = "_blank",
4
+ Parent = "_parent",
5
+ Top = "_top"
6
+ }
7
+ export declare const validateTarget: (target: unknown, supportedTargets: LinkTarget[], defaultTarget: LinkTarget) => LinkTarget;
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.validateTarget = exports.LinkTarget = void 0;
4
+ var LinkTarget;
5
+ (function (LinkTarget) {
6
+ LinkTarget["Self"] = "_self";
7
+ LinkTarget["Blank"] = "_blank";
8
+ LinkTarget["Parent"] = "_parent";
9
+ LinkTarget["Top"] = "_top";
10
+ })(LinkTarget = exports.LinkTarget || (exports.LinkTarget = {}));
11
+ const validateTarget = (target, supportedTargets, defaultTarget) => {
12
+ return supportedTargets.includes(target) ? target : defaultTarget;
13
+ };
14
+ exports.validateTarget = validateTarget;
@@ -1 +1,2 @@
1
1
  export * from './useExtensionNames';
2
+ export * from './useExpandedSelection';
@@ -15,3 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./useExtensionNames"), exports);
18
+ __exportStar(require("./useExpandedSelection"), exports);
@@ -0,0 +1,23 @@
1
+ import { Selection } from '@remirror/core';
2
+ import { Mark, MarkType } from 'remirror';
3
+ export type ExpandedSelection = {
4
+ selection: Selection;
5
+ marks: Mark[];
6
+ };
7
+ /**
8
+ * Returns a single range that is either:
9
+ * 1. The current selection if the current selection does not contain any of the indicated marks.
10
+ * 2. An expanded version of the current selection if the range contains any of the indicated marks.
11
+ *
12
+ * For example, given the content:
13
+ *
14
+ * <strong>Bold</strong> regular <u>underline</u> <u>more underline</u>
15
+ *
16
+ * If the marks passed in are 'bold' and 'underline' and the text "old regular under" is selected
17
+ * the returned range will be "Bold regular underline".
18
+ *
19
+ * @param {(MarkType|string)[]} markTypes
20
+ *
21
+ * @return {ExpandedSelection}
22
+ */
23
+ export declare const useExpandedSelection: (markTypes: (MarkType | string)[]) => ExpandedSelection;
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.useExpandedSelection = void 0;
4
+ const remirror_1 = require("remirror");
5
+ const react_1 = require("@remirror/react");
6
+ /**
7
+ * Returns a single range that is either:
8
+ * 1. The current selection if the current selection does not contain any of the indicated marks.
9
+ * 2. An expanded version of the current selection if the range contains any of the indicated marks.
10
+ *
11
+ * For example, given the content:
12
+ *
13
+ * <strong>Bold</strong> regular <u>underline</u> <u>more underline</u>
14
+ *
15
+ * If the marks passed in are 'bold' and 'underline' and the text "old regular under" is selected
16
+ * the returned range will be "Bold regular underline".
17
+ *
18
+ * @param {(MarkType|string)[]} markTypes
19
+ *
20
+ * @return {ExpandedSelection}
21
+ */
22
+ const useExpandedSelection = (markTypes) => {
23
+ const { doc, selection } = (0, react_1.useEditorState)();
24
+ const ranges = [];
25
+ markTypes.forEach((markType) => {
26
+ ranges.push(...(0, remirror_1.getMarkRanges)(selection, markType));
27
+ });
28
+ if (ranges.length === 0) {
29
+ return { selection, marks: [] };
30
+ }
31
+ // work out the start position of the first link and end position of the last link in the selection.
32
+ const from = Math.min(selection.from, ...ranges.map((range) => range.from));
33
+ const to = Math.max(selection.to, ...ranges.map((range) => range.to));
34
+ const marks = ranges.map((range) => range.mark);
35
+ return { selection: (0, remirror_1.getTextSelection)({ from, to }, doc), marks };
36
+ };
37
+ exports.useExpandedSelection = useExpandedSelection;
package/lib/index.css CHANGED
@@ -576,9 +576,6 @@
576
576
  --tw-blur: blur(8px) !important;
577
577
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
578
578
  }
579
- .squiz-fte-scope .filter {
580
- filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
581
- }
582
579
  .squiz-fte-scope a {
583
580
  --tw-text-opacity: 1;
584
581
  color: rgb(7 116 210 / var(--tw-text-opacity));
@@ -665,6 +662,21 @@
665
662
  .squiz-fte-scope .squiz-fte-form-control:active {
666
663
  box-shadow: none;
667
664
  }
665
+ .squiz-fte-scope .squiz-fte-invalid-form-field .squiz-fte-form-control {
666
+ --tw-border-opacity: 1;
667
+ border-color: rgb(215 35 33 / var(--tw-border-opacity));
668
+ background-repeat: no-repeat;
669
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHdpZHRoPSIyNCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0ibm9uZSIvPjxnIGNsYXNzPSJjdXJyZW50TGF5ZXIiPjxwYXRoIGQ9Ik00LjQ3IDIxaDE1LjA2YzEuNTQgMCAyLjUtMS42NyAxLjczLTNMMTMuNzMgNC45OWMtLjc3LTEuMzMtMi42OS0xLjMzLTMuNDYgMEwyLjc0IDE4Yy0uNzcgMS4zMy4xOSAzIDEuNzMgM3pNMTIgMTRjLS41NSAwLTEtLjQ1LTEtMXYtMmMwLS41NS40NS0xIDEtMXMxIC40NSAxIDF2MmMwIC41NS0uNDUgMS0xIDF6bTEgNGgtMnYtMmgydjJ6IiBjbGFzcz0ic2VsZWN0ZWQiIGZpbGw9IiNkNzIzMjEiLz48L2c+PC9zdmc+);
670
+ background-position: top 0.25rem right 0.25rem;
671
+ background-size: 1.5rem;
672
+ }
673
+ .squiz-fte-scope .squiz-fte-form-error {
674
+ --tw-text-opacity: 1;
675
+ color: rgb(215 35 33 / var(--tw-text-opacity));
676
+ font-size: 13px;
677
+ line-height: 1.23;
678
+ padding-top: 0.25rem;
679
+ }
668
680
  .squiz-fte-scope .formatted-text-editor {
669
681
  font-family: "Open Sans" !important;
670
682
  border-radius: 4px;
package/lib/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- import FormattedTextEditor from './FormattedTextEditor';
1
+ import Editor from './Editor/Editor';
2
+ import { EditorContext } from './Editor/EditorContext';
2
3
  import { remirrorNodeToSquizNode } from './utils/converters/remirrorNodeToSquizNode/remirrorNodeToSquizNode';
3
4
  import { squizNodeToRemirrorNode } from './utils/converters/squizNodeToRemirrorNode/squizNodeToRemirrorNode';
4
- export { FormattedTextEditor, remirrorNodeToSquizNode, squizNodeToRemirrorNode };
5
+ export { Editor, EditorContext, remirrorNodeToSquizNode, squizNodeToRemirrorNode };
package/lib/index.js CHANGED
@@ -3,9 +3,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.squizNodeToRemirrorNode = exports.remirrorNodeToSquizNode = exports.FormattedTextEditor = void 0;
7
- const FormattedTextEditor_1 = __importDefault(require("./FormattedTextEditor"));
8
- exports.FormattedTextEditor = FormattedTextEditor_1.default;
6
+ exports.squizNodeToRemirrorNode = exports.remirrorNodeToSquizNode = exports.EditorContext = exports.Editor = void 0;
7
+ const Editor_1 = __importDefault(require("./Editor/Editor"));
8
+ exports.Editor = Editor_1.default;
9
+ const EditorContext_1 = require("./Editor/EditorContext");
10
+ Object.defineProperty(exports, "EditorContext", { enumerable: true, get: function () { return EditorContext_1.EditorContext; } });
9
11
  const remirrorNodeToSquizNode_1 = require("./utils/converters/remirrorNodeToSquizNode/remirrorNodeToSquizNode");
10
12
  Object.defineProperty(exports, "remirrorNodeToSquizNode", { enumerable: true, get: function () { return remirrorNodeToSquizNode_1.remirrorNodeToSquizNode; } });
11
13
  const squizNodeToRemirrorNode_1 = require("./utils/converters/squizNodeToRemirrorNode/squizNodeToRemirrorNode");
package/lib/types.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ export type DeepPartial<T> = T extends Record<string, unknown> ? {
2
+ [P in keyof T]?: DeepPartial<T[P]>;
3
+ } : T;
package/lib/types.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -7,8 +7,7 @@ const react_1 = __importDefault(require("react"));
7
7
  const clsx_1 = __importDefault(require("clsx"));
8
8
  const Button = ({ handleOnClick, isDisabled, isActive, label, text, icon }) => {
9
9
  return (react_1.default.createElement("button", { "aria-label": label, title: label, type: "button", onClick: handleOnClick, disabled: isDisabled, className: (0, clsx_1.default)('squiz-fte-btn', isActive && 'squiz-fte-btn--is-active', icon && ' squiz-fte-btn--is-icon') },
10
- react_1.default.createElement(react_1.default.Fragment, null,
11
- text && react_1.default.createElement("span", null, text),
12
- icon && icon)));
10
+ text && react_1.default.createElement("span", null, text),
11
+ icon && icon));
13
12
  };
14
13
  exports.default = Button;
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
2
  export declare const Input: React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & {
3
3
  label?: string | undefined;
4
+ error?: string | undefined;
4
5
  } & React.RefAttributes<HTMLInputElement>>;
@@ -22,12 +22,17 @@ var __importStar = (this && this.__importStar) || function (mod) {
22
22
  __setModuleDefault(result, mod);
23
23
  return result;
24
24
  };
25
+ var __importDefault = (this && this.__importDefault) || function (mod) {
26
+ return (mod && mod.__esModule) ? mod : { "default": mod };
27
+ };
25
28
  Object.defineProperty(exports, "__esModule", { value: true });
26
29
  exports.Input = void 0;
27
30
  const react_1 = __importStar(require("react"));
28
- const InputInternal = ({ name, label, type = 'text', ...rest }, ref) => {
29
- return (react_1.default.createElement(react_1.default.Fragment, null,
31
+ const clsx_1 = __importDefault(require("clsx"));
32
+ const InputInternal = ({ name, label, type = 'text', error, ...rest }, ref) => {
33
+ return (react_1.default.createElement("div", { className: (0, clsx_1.default)(error && 'squiz-fte-invalid-form-field') },
30
34
  label && (react_1.default.createElement("label", { htmlFor: name, className: "squiz-fte-form-label" }, label)),
31
- react_1.default.createElement("input", { ref: ref, id: name, name: name, type: type, className: "squiz-fte-form-control", ...rest })));
35
+ react_1.default.createElement("input", { ref: ref, id: name, name: name, type: type, "aria-invalid": !!error, className: "squiz-fte-form-control", ...rest }),
36
+ error && react_1.default.createElement("div", { className: "squiz-fte-form-error" }, error)));
32
37
  };
33
38
  exports.Input = (0, react_1.forwardRef)(InputInternal);
@@ -30,6 +30,7 @@ const react_1 = __importStar(require("react"));
30
30
  const react_dom_1 = require("react-dom");
31
31
  const CloseRounded_1 = __importDefault(require("@mui/icons-material/CloseRounded"));
32
32
  const base_1 = require("@mui/base");
33
+ const clsx_1 = __importDefault(require("clsx"));
33
34
  const Modal = ({ children, title, onCancel, onSubmit, className }, ref) => {
34
35
  const container = (0, react_1.useMemo)(() => {
35
36
  const element = document.createElement('div');
@@ -60,7 +61,7 @@ const Modal = ({ children, title, onCancel, onSubmit, className }, ref) => {
60
61
  }, [container]);
61
62
  return (0, react_dom_1.createPortal)(react_1.default.createElement(react_1.default.Fragment, null,
62
63
  react_1.default.createElement(base_1.FocusTrap, { open: true },
63
- react_1.default.createElement("div", { ref: ref, className: `squiz-fte-modal-wrapper ${className ? className : ''}`, tabIndex: -1 },
64
+ react_1.default.createElement("div", { ref: ref, className: (0, clsx_1.default)('squiz-fte-modal-wrapper', className), tabIndex: -1 },
64
65
  react_1.default.createElement("div", { className: "w-modal-sm my-6 mx-auto" },
65
66
  react_1.default.createElement("div", { className: "squiz-fte-modal" },
66
67
  react_1.default.createElement("div", { className: "squiz-fte-modal-header p-6 pb-2" },
@@ -1,10 +1,9 @@
1
1
  import { ProsemirrorNode } from 'remirror';
2
2
  import { FORMATTED_TEXT_MODELS as FormattedTextModels } from '@squiz/dx-json-schema-lib';
3
- export declare const resolveNodeTag: (node: ProsemirrorNode) => string | null;
3
+ export declare const resolveNodeTag: (node: ProsemirrorNode) => string;
4
4
  /**
5
5
  * Converts Remirror node JSON structure to Squiz component JSON structure.
6
6
  * @param {ProsemirrorNode} node Remirror node to convert to component.
7
- * @export
8
7
  * @returns {FormattedText} The converted Squiz component JSON.
9
8
  */
10
9
  export declare const remirrorNodeToSquizNode: (node: ProsemirrorNode) => FormattedTextModels.v1.FormattedText;