@omnia/fx 8.0.89-dev → 8.0.90-dev

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 (42) hide show
  1. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.richtexteditor.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertiesService.d.ts +1 -0
  3. package/internal-do-not-import-from-here/ux/datetimezonepicker/DateTimeZonePicker.d.ts +1 -1
  4. package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +1 -1
  5. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +1 -1
  6. package/internal-do-not-import-from-here/ux/models/TableMenuStyle.d.ts +2 -3
  7. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +1 -1
  8. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +1 -1
  9. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +1 -1
  10. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +3 -3
  11. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview2.d.ts +2 -2
  12. package/internal-do-not-import-from-here/ux/richtexteditor/Emoticon/EmoticonComponent.d.ts +27 -6
  13. package/internal-do-not-import-from-here/ux/richtexteditor/IRichTextEditor.d.ts +2 -1
  14. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/EmoticonPicker/EmoticonPicker.d.ts +16 -3
  15. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/EmoticonPicker/EmoticonPickerNode.d.ts +17 -1
  16. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/EmoticonPicker/EmoticonPickerToolbar.d.ts +16 -12
  17. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/ExtendedElements/Link/LinkNode.d.ts +9 -0
  18. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Heading/Heading.d.ts +24 -7
  19. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Heading/HeadingNode.d.ts +3 -3
  20. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Heading/HeadingToolbar.d.ts +16 -28
  21. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/HorizontalRule/HorizontalRule.d.ts +16 -3
  22. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/HorizontalRule/HorizontalRuleNode.d.ts +1 -1
  23. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/HorizontalRule/HorizontalRuleToolbar.d.ts +16 -9
  24. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Html/Html.d.ts +46 -2
  25. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Html/HtmlToolbar.d.ts +47 -19
  26. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/LanguagePicker/LanguagePicker.d.ts +51 -2
  27. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/LanguagePicker/LanguagePickerToolbar.d.ts +47 -14
  28. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/Table.d.ts +30 -4
  29. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/TableNode.d.ts +14 -0
  30. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/TableSubToolbar.d.ts +16 -62
  31. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/TableToolbar.d.ts +16 -34
  32. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/nodes/Utils.d.ts +22 -0
  33. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/nodes/index.d.ts +1 -1
  34. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/plugins/ui/TableNodeView.d.ts +16 -1
  35. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextColor/TextColor.d.ts +16 -5
  36. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextColor/TextColorNode.d.ts +18 -3
  37. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextColor/TextColorToolbar.d.ts +16 -14
  38. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextTranslator/TextTranslator.d.ts +1 -0
  39. package/package.json +7 -7
  40. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/nodes/TableView.d.ts +0 -12
  41. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/nodes/Ulti.d.ts +0 -16
  42. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/plugins/TableResizePlugin.d.ts +0 -1
@@ -1,19 +1,47 @@
1
- import { HtmlToolbarProperties, HtmlMenuBar, TipTapEditor } from "../../../../models";
2
- import { ToolbarExtension } from "../../ToolbarExtension";
3
- import { OmniaTheming } from "../../../OmniaTheming";
4
- export default class HtmlToolbar extends ToolbarExtension implements HtmlToolbarProperties {
5
- menubar: HtmlMenuBar;
6
- editor: TipTapEditor;
7
- onContentChanged?: (content: string) => void;
8
- omniaTheming: OmniaTheming;
9
- private loc;
10
- private omniaUxLoc;
11
- showHtmlScript: boolean;
12
- content: string;
13
- htmlContent: string;
14
- mounted(): void;
15
- private onCloseHtmlScript;
16
- private onHtmlScriptSave;
17
- render(): JSX.Element;
18
- renderHtmlScriptDialog(visible: boolean): JSX.Element;
19
- }
1
+ declare const _default: {
2
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
3
+ "on-content-changed": {
4
+ type: import("vue").PropType<(content: string) => void>;
5
+ };
6
+ onContentChanged: {
7
+ type: import("vue").PropType<(content: string) => void>;
8
+ };
9
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
10
+ "on-content-changed": {
11
+ type: import("vue").PropType<(content: string) => void>;
12
+ };
13
+ onContentChanged: {
14
+ type: import("vue").PropType<(content: string) => void>;
15
+ };
16
+ }>>, {}, true, {}, {}, {
17
+ P: {};
18
+ B: {};
19
+ D: {};
20
+ C: {};
21
+ M: {};
22
+ Defaults: {};
23
+ }, Readonly<import("vue").ExtractPropTypes<{
24
+ "on-content-changed": {
25
+ type: import("vue").PropType<(content: string) => void>;
26
+ };
27
+ onContentChanged: {
28
+ type: import("vue").PropType<(content: string) => void>;
29
+ };
30
+ }>>, () => JSX.Element, {}, {}, {}, {}>;
31
+ __isFragment?: never;
32
+ __isTeleport?: never;
33
+ __isSuspense?: never;
34
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
35
+ "on-content-changed": {
36
+ type: import("vue").PropType<(content: string) => void>;
37
+ };
38
+ onContentChanged: {
39
+ type: import("vue").PropType<(content: string) => void>;
40
+ };
41
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
42
+ propsDefinition: Omit<Readonly<{} & {
43
+ onContentChanged?: (content: string) => void;
44
+ "on-content-changed"?: (content: string) => void;
45
+ }>, never>;
46
+ };
47
+ export default _default;
@@ -1,9 +1,58 @@
1
- import { Guid, LanguagePickerEditorExtensionConfiguration, RichTextEditorToolbar } from "../../../../models";
1
+ import { Guid, LanguagePickerEditorExtensionConfiguration } from "../../../../models";
2
2
  export declare const languagePickerEditorExtension: () => {
3
3
  id: Guid;
4
4
  title: string;
5
5
  getConfiguration(): {
6
- toolbarItems: RichTextEditorToolbar<any>[];
6
+ nodes: any[];
7
+ toolbarItems: {
8
+ toolbar: {
9
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
10
+ "multilingual-context": {
11
+ type: import("vue").PropType<import("../../..").MultilingualContext>;
12
+ };
13
+ multilingualContext: {
14
+ type: import("vue").PropType<import("../../..").MultilingualContext>;
15
+ };
16
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
17
+ "multilingual-context": {
18
+ type: import("vue").PropType<import("../../..").MultilingualContext>;
19
+ };
20
+ multilingualContext: {
21
+ type: import("vue").PropType<import("../../..").MultilingualContext>;
22
+ };
23
+ }>>, {}, true, {}, {}, {
24
+ P: {};
25
+ B: {};
26
+ D: {};
27
+ C: {};
28
+ M: {};
29
+ Defaults: {};
30
+ }, Readonly<import("vue").ExtractPropTypes<{
31
+ "multilingual-context": {
32
+ type: import("vue").PropType<import("../../..").MultilingualContext>;
33
+ };
34
+ multilingualContext: {
35
+ type: import("vue").PropType<import("../../..").MultilingualContext>;
36
+ };
37
+ }>>, () => JSX.Element, {}, {}, {}, {}>;
38
+ __isFragment?: never;
39
+ __isTeleport?: never;
40
+ __isSuspense?: never;
41
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
42
+ "multilingual-context": {
43
+ type: import("vue").PropType<import("../../..").MultilingualContext>;
44
+ };
45
+ multilingualContext: {
46
+ type: import("vue").PropType<import("../../..").MultilingualContext>;
47
+ };
48
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
49
+ propsDefinition: Omit<Readonly<{} & {
50
+ multilingualContext?: import("../../..").MultilingualContext;
51
+ "multilingual-context"?: import("../../..").MultilingualContext;
52
+ }>, never>;
53
+ };
54
+ configuration: {};
55
+ }[];
7
56
  };
8
57
  setOptions(config?: LanguagePickerEditorExtensionConfiguration): void;
9
58
  };
@@ -1,15 +1,48 @@
1
- import { LanguagePickerToolbarProperties, LanguagePickerMenuBar, TipTapEditor } from "../../../../models";
2
- import { ToolbarExtension } from "../../ToolbarExtension";
3
- import { OmniaTheming } from "../../../OmniaTheming";
4
1
  import { MultilingualContext } from "../../../MultilingualContext";
5
- export default class LanguagePickerToolbar extends ToolbarExtension implements LanguagePickerToolbarProperties {
6
- menubar: LanguagePickerMenuBar;
7
- editor: TipTapEditor;
8
- onContentChanged?: (content: string) => void;
9
- multilingualContext?: MultilingualContext;
10
- omniaTheming: OmniaTheming;
11
- private loc;
12
- private omniaUxLoc;
13
- mounted(): void;
14
- render(): JSX.Element;
15
- }
2
+ declare const _default: {
3
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
+ "multilingual-context": {
5
+ type: import("vue").PropType<MultilingualContext>;
6
+ };
7
+ multilingualContext: {
8
+ type: import("vue").PropType<MultilingualContext>;
9
+ };
10
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
11
+ "multilingual-context": {
12
+ type: import("vue").PropType<MultilingualContext>;
13
+ };
14
+ multilingualContext: {
15
+ type: import("vue").PropType<MultilingualContext>;
16
+ };
17
+ }>>, {}, true, {}, {}, {
18
+ P: {};
19
+ B: {};
20
+ D: {};
21
+ C: {};
22
+ M: {};
23
+ Defaults: {};
24
+ }, Readonly<import("vue").ExtractPropTypes<{
25
+ "multilingual-context": {
26
+ type: import("vue").PropType<MultilingualContext>;
27
+ };
28
+ multilingualContext: {
29
+ type: import("vue").PropType<MultilingualContext>;
30
+ };
31
+ }>>, () => JSX.Element, {}, {}, {}, {}>;
32
+ __isFragment?: never;
33
+ __isTeleport?: never;
34
+ __isSuspense?: never;
35
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
36
+ "multilingual-context": {
37
+ type: import("vue").PropType<MultilingualContext>;
38
+ };
39
+ multilingualContext: {
40
+ type: import("vue").PropType<MultilingualContext>;
41
+ };
42
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
43
+ propsDefinition: Omit<Readonly<{} & {
44
+ multilingualContext?: MultilingualContext;
45
+ "multilingual-context"?: MultilingualContext;
46
+ }>, never>;
47
+ };
48
+ export default _default;
@@ -1,17 +1,43 @@
1
- import TableToolbar from "./TableToolbar";
2
1
  import { Guid } from "../../../../models";
3
- import TableSubToolbar from "./TableSubToolbar";
4
2
  export declare const tableEditorExtension: () => {
5
3
  id: Guid;
6
4
  title: string;
7
5
  getConfiguration(): {
8
6
  nodes: import("@tiptap/core").Node<any, any>[];
9
7
  toolbarItems: ({
10
- toolbar: typeof TableToolbar;
8
+ toolbar: {
9
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
10
+ P: {};
11
+ B: {};
12
+ D: {};
13
+ C: {};
14
+ M: {};
15
+ Defaults: {};
16
+ }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
17
+ __isFragment?: never;
18
+ __isTeleport?: never;
19
+ __isSuspense?: never;
20
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
21
+ propsDefinition: Omit<Readonly<{} & {}>, never>;
22
+ };
11
23
  configuration: {};
12
24
  isSubToolBar?: undefined;
13
25
  } | {
14
- toolbar: typeof TableSubToolbar;
26
+ toolbar: {
27
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
28
+ P: {};
29
+ B: {};
30
+ D: {};
31
+ C: {};
32
+ M: {};
33
+ Defaults: {};
34
+ }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
35
+ __isFragment?: never;
36
+ __isTeleport?: never;
37
+ __isSuspense?: never;
38
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
39
+ propsDefinition: Omit<Readonly<{} & {}>, never>;
40
+ };
15
41
  configuration: {};
16
42
  isSubToolBar: true;
17
43
  })[];
@@ -1,5 +1,8 @@
1
+ import { Attrs, Fragment, NodeType, Node as ProseMirrorNode, Schema } from "@tiptap/pm/model";
1
2
  import { NodeView } from "@tiptap/pm/view";
2
3
  import { ParentConfig } from "@tiptap/core";
4
+ import { EditorState, Transaction } from "@tiptap/pm/state";
5
+ import { CSSProperties } from "vue";
3
6
  export interface TableOptions {
4
7
  HTMLAttributes: Record<string, any>;
5
8
  resizable: boolean;
@@ -31,6 +34,7 @@ declare module "@tiptap/core" {
31
34
  toggleHeaderCell: () => ReturnType;
32
35
  mergeOrSplit: () => ReturnType;
33
36
  setCellAttribute: (name: string, value: any) => ReturnType;
37
+ setCellStyleAtrribute: (styles: CSSProperties) => ReturnType;
34
38
  goToNextCell: () => ReturnType;
35
39
  goToPreviousCell: () => ReturnType;
36
40
  fixTables: () => ReturnType;
@@ -38,6 +42,8 @@ declare module "@tiptap/core" {
38
42
  anchorCell: number;
39
43
  headCell?: number;
40
44
  }) => ReturnType;
45
+ setTableClass: (className: string) => ReturnType;
46
+ moveToTableEnd: () => ReturnType;
41
47
  };
42
48
  }
43
49
  interface NodeConfig<Options, Storage> {
@@ -54,3 +60,11 @@ declare module "@tiptap/core" {
54
60
  }
55
61
  declare const _default: () => import("@tiptap/core").Node<TableOptions, any>;
56
62
  export default _default;
63
+ export declare function createTable(schema: Schema, rowsCount: number, colsCount: number, withHeaderRow: boolean, cellContent?: Fragment | ProseMirrorNode | Array<ProseMirrorNode>): ProseMirrorNode;
64
+ export declare function createCell(cellType: NodeType, cellContent?: Fragment | ProseMirrorNode | Array<ProseMirrorNode>): ProseMirrorNode | null | undefined;
65
+ export declare function getTableNodeTypes(schema: Schema): {
66
+ [key: string]: NodeType;
67
+ };
68
+ export declare function setTableClass(className: string): (state: EditorState, dispatch: (tr: Transaction) => void) => boolean;
69
+ export declare function setCellStyleAttr(styles: CSSProperties): (state: EditorState, dispatch: (tr: Transaction) => void) => boolean;
70
+ export declare function setAttr(nodeAttrs: Attrs, updateAttrs: CSSProperties): {};
@@ -1,63 +1,17 @@
1
- import { ToolbarExtension } from "../../ToolbarExtension";
2
- import { TableToolbarProperties, TableMenuBar, TipTapEditor } from "../../../../models";
3
- import { ITheming } from "../../../theming";
4
1
  import "./TableMenu.css";
5
- interface TableStyleSelection {
6
- className: string;
7
- invisible?: boolean;
8
- component: any;
9
- }
10
- export default class TableSubToolbar extends ToolbarExtension implements TableToolbarProperties {
11
- menubar: TableMenuBar;
12
- editor: TipTapEditor;
13
- private loc;
14
- tableMenuClasses: {
15
- thicknessWraper?: string;
16
- thicknessItem?: (thickness: number) => string;
17
- thicknessSelection?: string;
18
- colorSelection?: string;
19
- tableStyleItemWrapper?: string;
20
- tableStyleItemContent?: string;
21
- tableStyleWrapper?: string;
22
- tableItemSelection?: string;
23
- subToolBar?: string;
24
- cellStyleMenu?: string;
25
- setBlackWhiteIcon?: (theming: ITheming) => string;
26
- setThemingPrimaryIcon?: (theming: ITheming) => string;
27
- };
28
- iconStyle: string;
29
- borderThickness: number[];
30
- viewGridlinesClass: string;
31
- noneStyleClass: string;
32
- isViewGridlline: boolean;
33
- backgroundColorModel: string;
34
- borderColorModel: string;
35
- borderThicknessModel: number;
36
- showMenu: boolean;
37
- disableViewGridline: boolean;
38
- tableStylesModel: TableStyleSelection;
39
- tableStyles: Array<TableStyleSelection>;
40
- activeChange(model: any): void;
41
- mounted(): void;
42
- beforeDestroy(): void;
43
- onBackgroundColorChange(value: any): void;
44
- onBorderColorChange(value: any): void;
45
- onBorderThicknessChange(value: any): void;
46
- onTableStyleChange(value: any): void;
47
- onTableViewGridLineChange(): void;
48
- renderEditButtons(): JSX.Element;
49
- render(): JSX.Element;
50
- renderCellStyleMenu(): JSX.Element;
51
- renderSimpleTableStyle(theming: ITheming): JSX.Element;
52
- renderBorderHeaderTableStyle(theming: ITheming): JSX.Element;
53
- renderFilledHeaderTableStyle(theming: ITheming): JSX.Element;
54
- renderBandedRowTableStyle(theming: ITheming): JSX.Element;
55
- renderBandedRowColumnTableStyle(theming: ITheming): JSX.Element;
56
- renderSimpleTableStyleTheme(theming: ITheming): JSX.Element;
57
- renderBorderHeaderTableStyleTheme(theming: ITheming): JSX.Element;
58
- renderFilledHeaderTableStyleTheme(theming: ITheming): JSX.Element;
59
- renderBandedRowTableStyleTheme(theming: ITheming): JSX.Element;
60
- renderBandedRowColumnTableStyleTheme(theming: ITheming): JSX.Element;
61
- renderNoneStyleTable(theming: ITheming): JSX.Element;
62
- }
63
- export {};
2
+ declare const _default: {
3
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
4
+ P: {};
5
+ B: {};
6
+ D: {};
7
+ C: {};
8
+ M: {};
9
+ Defaults: {};
10
+ }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
11
+ __isFragment?: never;
12
+ __isTeleport?: never;
13
+ __isSuspense?: never;
14
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
15
+ propsDefinition: Omit<Readonly<{} & {}>, never>;
16
+ };
17
+ export default _default;
@@ -1,34 +1,16 @@
1
- import { ToolbarExtension } from "../../ToolbarExtension";
2
- import { TableToolbarProperties, TableMenuBar, TipTapEditor } from "../../../../models";
3
- interface TableStyleSelection {
4
- className: string;
5
- component: any;
6
- }
7
- export default class TableToolbar extends ToolbarExtension implements TableToolbarProperties {
8
- menubar: TableMenuBar;
9
- editor: TipTapEditor;
10
- private loc;
11
- tableMenuClasses: {
12
- thicknessWraper?: string;
13
- thicknessItem?: (thickness: number) => string;
14
- thicknessSelection?: string;
15
- colorSelection?: string;
16
- tableStyleItemWrapper?: string;
17
- tableStyleItemContent?: string;
18
- tableStyleWrapper?: string;
19
- tableItemSelection?: string;
20
- subToolBar?: string;
21
- cellStyleMenu?: string;
22
- setBlackWhiteIcon?: (theming: import("@omnia/fx/ux").ITheming) => string;
23
- setThemingPrimaryIcon?: (theming: import("@omnia/fx/ux").ITheming) => string;
24
- };
25
- iconStyle: string;
26
- borderThickness: number[];
27
- backgroundColorModel: string;
28
- borderColorModel: string;
29
- tableStylesModel: TableStyleSelection;
30
- mounted(): void;
31
- renderMainButton(): JSX.Element;
32
- render(): JSX.Element;
33
- }
34
- export {};
1
+ declare const _default: {
2
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
3
+ P: {};
4
+ B: {};
5
+ D: {};
6
+ C: {};
7
+ M: {};
8
+ Defaults: {};
9
+ }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
10
+ __isFragment?: never;
11
+ __isTeleport?: never;
12
+ __isSuspense?: never;
13
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
14
+ propsDefinition: Omit<Readonly<{} & {}>, never>;
15
+ };
16
+ export default _default;
@@ -0,0 +1,22 @@
1
+ import { PluginKey } from "prosemirror-state";
2
+ import { Attrs, Node as ProseMirrorNode, ResolvedPos } from "@tiptap/pm/model";
3
+ import { CellSelection } from "@tiptap/pm/tables";
4
+ export declare const key: PluginKey<any>;
5
+ export declare function cellWrapping($pos: ResolvedPos): ProseMirrorNode;
6
+ export declare function getCellAttrs(dom: HTMLElement | string): {
7
+ colspan: number;
8
+ rowspan: number;
9
+ colwidth: number[];
10
+ tableWitdh: number[];
11
+ borderColor: string;
12
+ borderWidth: string;
13
+ backgroundColor: string;
14
+ } | {
15
+ colspan: number;
16
+ rowspan: number;
17
+ };
18
+ export declare function setCellAttrs(node: ProseMirrorNode): Attrs;
19
+ export declare function isCellSelection(value: unknown): value is CellSelection;
20
+ export declare function deleteTableWhenAllCellsSelected({ editor }: {
21
+ editor: any;
22
+ }): boolean;
@@ -2,4 +2,4 @@ export * from "./TableCell";
2
2
  export * from "./TableHeader";
3
3
  export * from "./TableNodes";
4
4
  export * from "./TableRow";
5
- export * from "./TableView";
5
+ export * from "./Utils";
@@ -1,6 +1,21 @@
1
1
  import { Node } from "prosemirror-model";
2
2
  import { EditorView } from "prosemirror-view";
3
- import { TableView } from "../../nodes/TableView";
3
+ import { Node as ProseMirrorNode } from "@tiptap/pm/model";
4
+ import { NodeView } from "@tiptap/pm/view";
5
+ export declare class TableView implements NodeView {
6
+ node: ProseMirrorNode;
7
+ cellMinWidth: number;
8
+ dom: Element;
9
+ table: HTMLElement;
10
+ colgroup: HTMLElement;
11
+ contentDOM: HTMLElement;
12
+ constructor(node: ProseMirrorNode, cellMinWidth: number);
13
+ update(node: ProseMirrorNode): boolean;
14
+ ignoreMutation(mutation: MutationRecord | {
15
+ type: "selection";
16
+ target: Element;
17
+ }): boolean;
18
+ }
4
19
  export default class TableNodeView extends TableView {
5
20
  constructor(node: Node, colMinWidth: number, view: EditorView);
6
21
  update(node: Node): boolean;
@@ -1,14 +1,25 @@
1
- import TextColorToolbar from "./TextColorToolbar";
2
1
  import { Guid } from "../../../../models";
3
2
  export declare const textColorEditorExtension: () => {
4
3
  id: Guid;
5
4
  title: string;
6
5
  getConfiguration(): {
7
- nodes: import("@tiptap/core").Mark<{
8
- color: string;
9
- }, any>[];
6
+ nodes: (import("@tiptap/core").Extension<any, any> | import("@tiptap/core").Mark<import("../TextStyle/TextStyleNode").TextStyleOptions, any>)[];
10
7
  toolbarItems: {
11
- toolbar: typeof TextColorToolbar;
8
+ toolbar: {
9
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
10
+ P: {};
11
+ B: {};
12
+ D: {};
13
+ C: {};
14
+ M: {};
15
+ Defaults: {};
16
+ }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
17
+ __isFragment?: never;
18
+ __isTeleport?: never;
19
+ __isSuspense?: never;
20
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
21
+ propsDefinition: Omit<Readonly<{} & {}>, never>;
22
+ };
12
23
  configuration: {};
13
24
  }[];
14
25
  };
@@ -1,4 +1,19 @@
1
- declare const _default: () => import("@tiptap/core").Mark<{
2
- color: string;
3
- }, any>;
1
+ export interface BoldOptions {
2
+ HTMLAttributes: Record<string, any>;
3
+ }
4
+ declare module "@tiptap/core" {
5
+ interface Commands<ReturnType> {
6
+ color: {
7
+ /**
8
+ * Set the text color
9
+ */
10
+ setColor: (color: string) => ReturnType;
11
+ /**
12
+ * Unset the text color
13
+ */
14
+ unsetColor: () => ReturnType;
15
+ };
16
+ }
17
+ }
18
+ declare const _default: () => import("@tiptap/core").Extension<any, any>;
4
19
  export default _default;
@@ -1,14 +1,16 @@
1
- import { ToolbarExtension } from "../../ToolbarExtension";
2
- import { TextColorToolbarProperties, TextColorMenuBar, TipTapEditor } from "../../../../models";
3
- export default class TextColorToolbar extends ToolbarExtension implements TextColorToolbarProperties {
4
- editor: TipTapEditor;
5
- menubar: TextColorMenuBar;
6
- private loc;
7
- private modelValue;
8
- activeChange(model: any): void;
9
- setModel(marks: any): void;
10
- mounted(): void;
11
- private getToolbarButtonActiveStyle;
12
- private onColorChange;
13
- render(): JSX.Element;
14
- }
1
+ declare const _default: {
2
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
3
+ P: {};
4
+ B: {};
5
+ D: {};
6
+ C: {};
7
+ M: {};
8
+ Defaults: {};
9
+ }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
10
+ __isFragment?: never;
11
+ __isTeleport?: never;
12
+ __isSuspense?: never;
13
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
14
+ propsDefinition: Omit<Readonly<{} & {}>, never>;
15
+ };
16
+ export default _default;
@@ -3,6 +3,7 @@ export declare const textTranslatorEditorExtension: () => {
3
3
  id: Guid;
4
4
  title: string;
5
5
  getConfiguration(): {
6
+ nodes: any[];
6
7
  toolbarItems: {
7
8
  toolbar: {
8
9
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.89-dev",
4
+ "version": "8.0.90-dev",
5
5
  "description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -20,19 +20,19 @@
20
20
  ],
21
21
  "author": "Precio Fishbone",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.89-dev",
23
+ "@omnia/fx-models": "8.0.90-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",
27
27
  "splitpanes": "2.4.1",
28
28
  "vuetify": "3.4.7",
29
- "vue": "3.3.12",
29
+ "vue": "3.3.13",
30
30
  "tslib": "2.6.2",
31
31
  "typescript": "5.3.2",
32
- "@tiptap/vue-3": "2.0.0-beta.220",
33
- "@tiptap/pm": "2.0.0-beta.220",
34
- "@tiptap/suggestion": "2.0.0-beta.220",
35
- "@tiptap/starter-kit": "2.0.0-beta.220",
32
+ "@tiptap/vue-3": "2.1.13",
33
+ "@tiptap/pm": "2.1.13",
34
+ "@tiptap/suggestion": "2.1.13",
35
+ "@tiptap/starter-kit": "2.1.13",
36
36
  "axios": "0.24.0",
37
37
  "mousetrap": "1.6.1"
38
38
  },
@@ -1,12 +0,0 @@
1
- export declare class TableView {
2
- node: any;
3
- cellMinWidth: any;
4
- dom: any;
5
- table: any;
6
- colgroup: any;
7
- contentDOM: any;
8
- constructor(node: any, cellMinWidth: any);
9
- update(node: any): boolean;
10
- ignoreMutation(record: any): any;
11
- }
12
- export declare function updateColumns(dom?: any, node?: any, colgroup?: any, table?: any, cellMinWidth?: any, overrideCol?: any, overrideValue?: any): void;
@@ -1,16 +0,0 @@
1
- import { PluginKey } from "prosemirror-state";
2
- export declare const key: PluginKey<any>;
3
- export declare function cellAround($pos: any): any;
4
- export declare function cellWrapping($pos: any): any;
5
- export declare function isInTable(state: any): boolean;
6
- export declare function selectionCell(state: any): any;
7
- export declare function pointsAtCell($pos: any): any;
8
- export declare function moveCellForward($pos: any): any;
9
- export declare function inSameTable($a: any, $b: any): boolean;
10
- export declare function findCell($pos: any): any;
11
- export declare function colCount($pos: any): any;
12
- export declare function nextCell($pos: any, axis: any, dir: any): any;
13
- export declare function setAttr(attrs: any, name: any, value: any): {};
14
- export declare function removeColSpan(attrs: any, pos: any, n?: number): {};
15
- export declare function addColSpan(attrs: any, pos: any, n?: number): {};
16
- export declare function columnIsHeader(map: any, table: any, col: any): boolean;