@omnia/fx 8.0.244-dev → 8.0.246-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.
- package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesAddBlade.d.ts +52 -66
- package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesHomeBlade.d.ts +54 -75
- package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesInfoBlade.d.ts +50 -50
- package/internal-do-not-import-from-here/ux/markdown2/commands/EditorCommands.d.ts +6 -3
- package/internal-do-not-import-from-here/ux/markdown2/commands/helpers/Nodehelper.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/markdown2/plugins/colorstyle/ColorStylePlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/markdown2/plugins/text/TextPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/markdown2/plugins/typography/TypographyPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/markdown2/plugins/velcron/VelcronPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownStore.d.ts +18 -6
- package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownToolbarStore.d.ts +90 -30
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +16 -6
- package/internal-do-not-import-from-here/ux/oxide/datatable/RowRenderer.d.ts +77 -1
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +5 -8
- package/internal-do-not-import-from-here/ux/versionedlayout/blade/VersionedLayoutBladeBuilder.d.ts +1 -1
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/markdown2/plugins/ColorStylePlugin.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/markdown2/plugins/TextPlugin.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/markdown2/plugins/TypographyPlugin.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/markdown2/plugins/VelcronPlugin.d.ts +0 -3
- /package/internal-do-not-import-from-here/ux/markdown2/plugins/{buttons → colorstyle}/ColorButton.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/markdown2/plugins/{buttons → typography}/TypographyButton.d.ts +0 -0
@@ -1,74 +1,60 @@
|
|
1
1
|
import { guid } from "@omnia/fx-models";
|
2
|
-
declare const _default: {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
required: true;
|
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
|
-
additionalBuiltInProperties: {
|
18
|
-
type: import("vue").PropType<guid[]>;
|
19
|
-
required: false;
|
20
|
-
};
|
21
|
-
tableName: {
|
22
|
-
type: import("vue").PropType<string>;
|
23
|
-
required: true;
|
24
|
-
};
|
25
|
-
serviceId: {
|
26
|
-
type: import("vue").PropType<guid>;
|
27
|
-
required: true;
|
28
|
-
};
|
29
|
-
}>>, {}, true, {}, {}, {
|
30
|
-
P: {};
|
31
|
-
B: {};
|
32
|
-
D: {};
|
33
|
-
C: {};
|
34
|
-
M: {};
|
35
|
-
Defaults: {};
|
36
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
37
|
-
additionalBuiltInProperties: {
|
38
|
-
type: import("vue").PropType<guid[]>;
|
39
|
-
required: false;
|
40
|
-
};
|
41
|
-
tableName: {
|
42
|
-
type: import("vue").PropType<string>;
|
43
|
-
required: true;
|
44
|
-
};
|
45
|
-
serviceId: {
|
46
|
-
type: import("vue").PropType<guid>;
|
47
|
-
required: true;
|
48
|
-
};
|
49
|
-
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
50
|
-
__isFragment?: never;
|
51
|
-
__isTeleport?: never;
|
52
|
-
__isSuspense?: never;
|
53
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
54
|
-
additionalBuiltInProperties: {
|
55
|
-
type: import("vue").PropType<guid[]>;
|
56
|
-
required: false;
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
|
+
serviceId: guid;
|
4
|
+
} & {
|
5
|
+
tableName: string;
|
6
|
+
} & {
|
7
|
+
additionalBuiltInProperties: guid[];
|
8
|
+
}>) => {
|
9
|
+
$: import("vue").ComponentInternalInstance;
|
10
|
+
$data: {};
|
11
|
+
$props: {};
|
12
|
+
$attrs: {
|
13
|
+
[x: string]: unknown;
|
57
14
|
};
|
58
|
-
|
59
|
-
|
60
|
-
required: true;
|
15
|
+
$refs: {
|
16
|
+
[x: string]: unknown;
|
61
17
|
};
|
62
|
-
|
63
|
-
|
64
|
-
|
18
|
+
$slots: Readonly<{
|
19
|
+
[name: string]: import("vue").Slot<any>;
|
20
|
+
}>;
|
21
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
22
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
23
|
+
$emit: (event: string, ...args: any[]) => void;
|
24
|
+
$el: any;
|
25
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
26
|
+
beforeCreate?: (() => void) | (() => void)[];
|
27
|
+
created?: (() => void) | (() => void)[];
|
28
|
+
beforeMount?: (() => void) | (() => void)[];
|
29
|
+
mounted?: (() => void) | (() => void)[];
|
30
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
31
|
+
updated?: (() => void) | (() => void)[];
|
32
|
+
activated?: (() => void) | (() => void)[];
|
33
|
+
deactivated?: (() => void) | (() => void)[];
|
34
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
35
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
36
|
+
destroyed?: (() => void) | (() => void)[];
|
37
|
+
unmounted?: (() => void) | (() => void)[];
|
38
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
39
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
40
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
65
41
|
};
|
66
|
-
|
67
|
-
|
42
|
+
$forceUpdate: () => void;
|
43
|
+
$nextTick: typeof import("vue").nextTick;
|
44
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
45
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
46
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
68
47
|
serviceId: guid;
|
48
|
+
} & {
|
69
49
|
tableName: string;
|
70
50
|
} & {
|
71
|
-
additionalBuiltInProperties
|
72
|
-
}
|
73
|
-
}
|
51
|
+
additionalBuiltInProperties: guid[];
|
52
|
+
}> & {
|
53
|
+
"v-slots"?: {} & Omit<{
|
54
|
+
default?: import("vue").Slot;
|
55
|
+
}, never>;
|
56
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "serviceId" | "additionalBuiltInProperties" | "tableName">;
|
57
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
58
|
+
[key: string]: any;
|
59
|
+
}>;
|
74
60
|
export default _default;
|
@@ -1,86 +1,65 @@
|
|
1
|
-
import { guid
|
1
|
+
import { guid } from "@omnia/fx-models";
|
2
2
|
import "./QueryableProperties.css";
|
3
|
-
|
4
|
-
serviceId
|
5
|
-
|
6
|
-
additionalBuiltInProperties?:
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
4
|
+
serviceId?: guid;
|
5
|
+
} & {
|
6
|
+
additionalBuiltInProperties?: guid[];
|
7
|
+
} & {
|
7
8
|
additionalTitle?: string;
|
9
|
+
} & {
|
8
10
|
tableName?: string;
|
9
|
-
}
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
additionalTitle: {
|
16
|
-
type: import("vue").PropType<string>;
|
17
|
-
};
|
18
|
-
additionalBuiltInProperties: {
|
19
|
-
type: import("vue").PropType<guid[]>;
|
20
|
-
required: false;
|
21
|
-
};
|
22
|
-
serviceId: {
|
23
|
-
type: import("vue").PropType<guid>;
|
24
|
-
};
|
25
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
26
|
-
tableName: {
|
27
|
-
type: import("vue").PropType<string>;
|
28
|
-
};
|
29
|
-
additionalTitle: {
|
30
|
-
type: import("vue").PropType<string>;
|
31
|
-
};
|
32
|
-
additionalBuiltInProperties: {
|
33
|
-
type: import("vue").PropType<guid[]>;
|
34
|
-
required: false;
|
35
|
-
};
|
36
|
-
serviceId: {
|
37
|
-
type: import("vue").PropType<guid>;
|
38
|
-
};
|
39
|
-
}>>, {}, true, {}, {}, {
|
40
|
-
P: {};
|
41
|
-
B: {};
|
42
|
-
D: {};
|
43
|
-
C: {};
|
44
|
-
M: {};
|
45
|
-
Defaults: {};
|
46
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
47
|
-
tableName: {
|
48
|
-
type: import("vue").PropType<string>;
|
49
|
-
};
|
50
|
-
additionalTitle: {
|
51
|
-
type: import("vue").PropType<string>;
|
52
|
-
};
|
53
|
-
additionalBuiltInProperties: {
|
54
|
-
type: import("vue").PropType<guid[]>;
|
55
|
-
required: false;
|
56
|
-
};
|
57
|
-
serviceId: {
|
58
|
-
type: import("vue").PropType<guid>;
|
59
|
-
};
|
60
|
-
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
61
|
-
__isFragment?: never;
|
62
|
-
__isTeleport?: never;
|
63
|
-
__isSuspense?: never;
|
64
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
65
|
-
tableName: {
|
66
|
-
type: import("vue").PropType<string>;
|
11
|
+
}>) => {
|
12
|
+
$: import("vue").ComponentInternalInstance;
|
13
|
+
$data: {};
|
14
|
+
$props: {};
|
15
|
+
$attrs: {
|
16
|
+
[x: string]: unknown;
|
67
17
|
};
|
68
|
-
|
69
|
-
|
18
|
+
$refs: {
|
19
|
+
[x: string]: unknown;
|
70
20
|
};
|
71
|
-
|
72
|
-
|
73
|
-
|
21
|
+
$slots: Readonly<{
|
22
|
+
[name: string]: import("vue").Slot<any>;
|
23
|
+
}>;
|
24
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
25
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
26
|
+
$emit: (event: string, ...args: any[]) => void;
|
27
|
+
$el: any;
|
28
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
29
|
+
beforeCreate?: (() => void) | (() => void)[];
|
30
|
+
created?: (() => void) | (() => void)[];
|
31
|
+
beforeMount?: (() => void) | (() => void)[];
|
32
|
+
mounted?: (() => void) | (() => void)[];
|
33
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
34
|
+
updated?: (() => void) | (() => void)[];
|
35
|
+
activated?: (() => void) | (() => void)[];
|
36
|
+
deactivated?: (() => void) | (() => void)[];
|
37
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
38
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
39
|
+
destroyed?: (() => void) | (() => void)[];
|
40
|
+
unmounted?: (() => void) | (() => void)[];
|
41
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
42
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
43
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
74
44
|
};
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
}
|
79
|
-
propsDefinition:
|
45
|
+
$forceUpdate: () => void;
|
46
|
+
$nextTick: typeof import("vue").nextTick;
|
47
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
48
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
49
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
80
50
|
serviceId?: guid;
|
51
|
+
} & {
|
81
52
|
additionalBuiltInProperties?: guid[];
|
53
|
+
} & {
|
82
54
|
additionalTitle?: string;
|
55
|
+
} & {
|
83
56
|
tableName?: string;
|
84
|
-
}
|
85
|
-
}
|
57
|
+
}> & {
|
58
|
+
"v-slots"?: {} & Omit<{
|
59
|
+
default?: import("vue").Slot;
|
60
|
+
}, never>;
|
61
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "serviceId" | "additionalBuiltInProperties" | "additionalTitle" | "tableName">;
|
62
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
63
|
+
[key: string]: any;
|
64
|
+
}>;
|
86
65
|
export default _default;
|
@@ -1,56 +1,56 @@
|
|
1
1
|
import { guid } from "@omnia/fx-models";
|
2
|
-
declare const _default: {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
13
|
-
tableName: {
|
14
|
-
type: import("vue").PropType<string>;
|
15
|
-
required: true;
|
16
|
-
};
|
17
|
-
serviceId: {
|
18
|
-
type: import("vue").PropType<guid>;
|
19
|
-
required: true;
|
20
|
-
};
|
21
|
-
}>>, {}, true, {}, {}, {
|
22
|
-
P: {};
|
23
|
-
B: {};
|
24
|
-
D: {};
|
25
|
-
C: {};
|
26
|
-
M: {};
|
27
|
-
Defaults: {};
|
28
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
29
|
-
tableName: {
|
30
|
-
type: import("vue").PropType<string>;
|
31
|
-
required: true;
|
32
|
-
};
|
33
|
-
serviceId: {
|
34
|
-
type: import("vue").PropType<guid>;
|
35
|
-
required: true;
|
36
|
-
};
|
37
|
-
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
38
|
-
__isFragment?: never;
|
39
|
-
__isTeleport?: never;
|
40
|
-
__isSuspense?: never;
|
41
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
42
|
-
tableName: {
|
43
|
-
type: import("vue").PropType<string>;
|
44
|
-
required: true;
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
|
+
serviceId: guid;
|
4
|
+
} & {
|
5
|
+
tableName: string;
|
6
|
+
}>) => {
|
7
|
+
$: import("vue").ComponentInternalInstance;
|
8
|
+
$data: {};
|
9
|
+
$props: {};
|
10
|
+
$attrs: {
|
11
|
+
[x: string]: unknown;
|
45
12
|
};
|
46
|
-
|
47
|
-
|
48
|
-
required: true;
|
13
|
+
$refs: {
|
14
|
+
[x: string]: unknown;
|
49
15
|
};
|
50
|
-
|
51
|
-
|
16
|
+
$slots: Readonly<{
|
17
|
+
[name: string]: import("vue").Slot<any>;
|
18
|
+
}>;
|
19
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
20
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
21
|
+
$emit: (event: string, ...args: any[]) => void;
|
22
|
+
$el: any;
|
23
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
24
|
+
beforeCreate?: (() => void) | (() => void)[];
|
25
|
+
created?: (() => void) | (() => void)[];
|
26
|
+
beforeMount?: (() => void) | (() => void)[];
|
27
|
+
mounted?: (() => void) | (() => void)[];
|
28
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
29
|
+
updated?: (() => void) | (() => void)[];
|
30
|
+
activated?: (() => void) | (() => void)[];
|
31
|
+
deactivated?: (() => void) | (() => void)[];
|
32
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
33
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
34
|
+
destroyed?: (() => void) | (() => void)[];
|
35
|
+
unmounted?: (() => void) | (() => void)[];
|
36
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
37
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
38
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
39
|
+
};
|
40
|
+
$forceUpdate: () => void;
|
41
|
+
$nextTick: typeof import("vue").nextTick;
|
42
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
43
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
44
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
52
45
|
serviceId: guid;
|
46
|
+
} & {
|
53
47
|
tableName: string;
|
54
|
-
} & {
|
55
|
-
}
|
48
|
+
}> & {
|
49
|
+
"v-slots"?: {} & Omit<{
|
50
|
+
default?: import("vue").Slot;
|
51
|
+
}, never>;
|
52
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "serviceId" | "tableName">;
|
53
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
54
|
+
[key: string]: any;
|
55
|
+
}>;
|
56
56
|
export default _default;
|
@@ -3,6 +3,9 @@ export declare function useEditorCommands(state: {
|
|
3
3
|
editor: HTMLDivElement;
|
4
4
|
selectedRange: Range;
|
5
5
|
}): {
|
6
|
+
selection: {
|
7
|
+
pluginNodes: () => Node[];
|
8
|
+
};
|
6
9
|
actions: {
|
7
10
|
storeCursorPosition: () => void;
|
8
11
|
};
|
@@ -10,9 +13,9 @@ export declare function useEditorCommands(state: {
|
|
10
13
|
backspace: () => void;
|
11
14
|
};
|
12
15
|
formatting: {
|
13
|
-
add: (element: HTMLElement, toggleIfExists?: boolean) => void;
|
14
|
-
toggle: (element: HTMLElement) => void;
|
15
|
-
remove: (element: HTMLElement,
|
16
|
+
add: (element: HTMLElement, toggleIfExists?: boolean, matchByDataTypeOnly?: boolean) => void;
|
17
|
+
toggle: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
18
|
+
remove: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
16
19
|
};
|
17
20
|
element: {
|
18
21
|
add: (element: HTMLElement) => void;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
export type builtIndataTypes = "text" | "formatting";
|
2
2
|
export declare function useNodeHelper(): {
|
3
|
-
|
3
|
+
getPluginNodes: (element: Node) => Node[];
|
4
|
+
removeExistingFormatting: (element: HTMLElement, range: Range, matchByDataTypeOnly: boolean) => boolean;
|
4
5
|
removeNodeAndKeepContent: (node: Node) => void;
|
5
6
|
surroundContents: (element: HTMLElement, range: Range) => void;
|
6
7
|
};
|
@@ -6,6 +6,7 @@ export declare const useMarkdownStore: () => {
|
|
6
6
|
editMode: boolean;
|
7
7
|
toolbarActions: MarkdownEditorActionRegistration[];
|
8
8
|
editor: HTMLDivElement;
|
9
|
+
selectedPluginNodes: Node[];
|
9
10
|
telePorts: JSX.Element[];
|
10
11
|
id: string;
|
11
12
|
selectedRange: Range;
|
@@ -15,6 +16,7 @@ export declare const useMarkdownStore: () => {
|
|
15
16
|
onMutatedEditMode: import("@omnia/fx-models/internal-do-not-import-from-here/shared").MessageBusExposeOnlySubscription<boolean>;
|
16
17
|
onMutatedToolbarActions: import("@omnia/fx-models/internal-do-not-import-from-here/shared").MessageBusExposeOnlySubscription<MarkdownEditorActionRegistration[]>;
|
17
18
|
onMutatedEditor: import("@omnia/fx-models/internal-do-not-import-from-here/shared").MessageBusExposeOnlySubscription<HTMLDivElement>;
|
19
|
+
onMutatedSelectedPluginNodes: import("@omnia/fx-models/internal-do-not-import-from-here/shared").MessageBusExposeOnlySubscription<Node[]>;
|
18
20
|
onMutatedTelePorts: import("@omnia/fx-models/internal-do-not-import-from-here/shared").MessageBusExposeOnlySubscription<JSX.Element[]>;
|
19
21
|
onMutatedId: import("@omnia/fx-models/internal-do-not-import-from-here/shared").MessageBusExposeOnlySubscription<string>;
|
20
22
|
onMutatedSelectedRange: import("@omnia/fx-models/internal-do-not-import-from-here/shared").MessageBusExposeOnlySubscription<Range>;
|
@@ -84,9 +86,9 @@ export declare const useMarkdownStore: () => {
|
|
84
86
|
};
|
85
87
|
formatting: {
|
86
88
|
subscribe(fn: (result: {
|
87
|
-
add: (element: HTMLElement,
|
88
|
-
toggle: (element: HTMLElement) => void;
|
89
|
-
remove: (element: HTMLElement,
|
89
|
+
add: (element: HTMLElement, toogleIfExists?: boolean, matchByDataTypeOnly?: boolean) => void;
|
90
|
+
toggle: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
91
|
+
remove: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
90
92
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
91
93
|
};
|
92
94
|
element: {
|
@@ -150,9 +152,9 @@ export declare const useMarkdownStore: () => {
|
|
150
152
|
add: (action: MarkdownEditorActionRegistration | MarkdownEditorActionRegistration[]) => void;
|
151
153
|
};
|
152
154
|
formatting: () => {
|
153
|
-
add: (element: HTMLElement,
|
154
|
-
toggle: (element: HTMLElement) => void;
|
155
|
-
remove: (element: HTMLElement,
|
155
|
+
add: (element: HTMLElement, toogleIfExists?: boolean, matchByDataTypeOnly?: boolean) => void;
|
156
|
+
toggle: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
157
|
+
remove: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
156
158
|
};
|
157
159
|
element: () => {
|
158
160
|
createForComponent: (componentName: string) => HTMLDivElement;
|
@@ -166,6 +168,16 @@ export declare const useMarkdownStore: () => {
|
|
166
168
|
};
|
167
169
|
get: {
|
168
170
|
plugins: MarkdownPlugin[];
|
171
|
+
selection: {
|
172
|
+
has: {
|
173
|
+
dataType: (dataType: string) => boolean;
|
174
|
+
elementName: (elementName: string) => boolean;
|
175
|
+
};
|
176
|
+
get: {
|
177
|
+
byDataType: (dataType: string) => Node;
|
178
|
+
byElementName: (elementName: string) => Node;
|
179
|
+
};
|
180
|
+
};
|
169
181
|
};
|
170
182
|
} & {
|
171
183
|
dispose?: () => void;
|
@@ -8,6 +8,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
8
8
|
editMode: boolean;
|
9
9
|
toolbarActions: MarkdownEditorActionRegistration[];
|
10
10
|
editor: HTMLDivElement;
|
11
|
+
selectedPluginNodes: Node[];
|
11
12
|
telePorts: JSX.Element[];
|
12
13
|
id: string;
|
13
14
|
selectedRange: Range;
|
@@ -17,6 +18,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
17
18
|
onMutatedEditMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
18
19
|
onMutatedToolbarActions: import("@omnia/fx").MessageBusExposeOnlySubscription<MarkdownEditorActionRegistration[]>;
|
19
20
|
onMutatedEditor: import("@omnia/fx").MessageBusExposeOnlySubscription<HTMLDivElement>;
|
21
|
+
onMutatedSelectedPluginNodes: import("@omnia/fx").MessageBusExposeOnlySubscription<Node[]>;
|
20
22
|
onMutatedTelePorts: import("@omnia/fx").MessageBusExposeOnlySubscription<JSX.Element[]>;
|
21
23
|
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
22
24
|
onMutatedSelectedRange: import("@omnia/fx").MessageBusExposeOnlySubscription<Range>;
|
@@ -86,9 +88,9 @@ export declare const useMarkdownToolbarStore: () => {
|
|
86
88
|
};
|
87
89
|
formatting: {
|
88
90
|
subscribe(fn: (result: {
|
89
|
-
add: (element: HTMLElement,
|
90
|
-
toggle: (element: HTMLElement) => void;
|
91
|
-
remove: (element: HTMLElement,
|
91
|
+
add: (element: HTMLElement, toogleIfExists?: boolean, matchByDataTypeOnly?: boolean) => void;
|
92
|
+
toggle: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
93
|
+
remove: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
92
94
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
93
95
|
};
|
94
96
|
element: {
|
@@ -152,9 +154,9 @@ export declare const useMarkdownToolbarStore: () => {
|
|
152
154
|
add: (action: MarkdownEditorActionRegistration | MarkdownEditorActionRegistration[]) => void;
|
153
155
|
};
|
154
156
|
formatting: () => {
|
155
|
-
add: (element: HTMLElement,
|
156
|
-
toggle: (element: HTMLElement) => void;
|
157
|
-
remove: (element: HTMLElement,
|
157
|
+
add: (element: HTMLElement, toogleIfExists?: boolean, matchByDataTypeOnly?: boolean) => void;
|
158
|
+
toggle: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
159
|
+
remove: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
158
160
|
};
|
159
161
|
element: () => {
|
160
162
|
createForComponent: (componentName: string) => HTMLDivElement;
|
@@ -168,6 +170,16 @@ export declare const useMarkdownToolbarStore: () => {
|
|
168
170
|
};
|
169
171
|
get: {
|
170
172
|
plugins: import("../models/MarkdownPlugin").MarkdownPlugin[];
|
173
|
+
selection: {
|
174
|
+
has: {
|
175
|
+
dataType: (dataType: string) => boolean;
|
176
|
+
elementName: (elementName: string) => boolean;
|
177
|
+
};
|
178
|
+
get: {
|
179
|
+
byDataType: (dataType: string) => Node;
|
180
|
+
byElementName: (elementName: string) => Node;
|
181
|
+
};
|
182
|
+
};
|
171
183
|
};
|
172
184
|
} & {
|
173
185
|
dispose?: () => void;
|
@@ -182,6 +194,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
182
194
|
editMode: boolean;
|
183
195
|
toolbarActions: MarkdownEditorActionRegistration[];
|
184
196
|
editor: HTMLDivElement;
|
197
|
+
selectedPluginNodes: Node[];
|
185
198
|
telePorts: JSX.Element[];
|
186
199
|
id: string;
|
187
200
|
selectedRange: Range;
|
@@ -191,6 +204,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
191
204
|
onMutatedEditMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
192
205
|
onMutatedToolbarActions: import("@omnia/fx").MessageBusExposeOnlySubscription<MarkdownEditorActionRegistration[]>;
|
193
206
|
onMutatedEditor: import("@omnia/fx").MessageBusExposeOnlySubscription<HTMLDivElement>;
|
207
|
+
onMutatedSelectedPluginNodes: import("@omnia/fx").MessageBusExposeOnlySubscription<Node[]>;
|
194
208
|
onMutatedTelePorts: import("@omnia/fx").MessageBusExposeOnlySubscription<JSX.Element[]>;
|
195
209
|
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
196
210
|
onMutatedSelectedRange: import("@omnia/fx").MessageBusExposeOnlySubscription<Range>;
|
@@ -260,9 +274,9 @@ export declare const useMarkdownToolbarStore: () => {
|
|
260
274
|
};
|
261
275
|
formatting: {
|
262
276
|
subscribe(fn: (result: {
|
263
|
-
add: (element: HTMLElement,
|
264
|
-
toggle: (element: HTMLElement) => void;
|
265
|
-
remove: (element: HTMLElement,
|
277
|
+
add: (element: HTMLElement, toogleIfExists?: boolean, matchByDataTypeOnly?: boolean) => void;
|
278
|
+
toggle: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
279
|
+
remove: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
266
280
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
267
281
|
};
|
268
282
|
element: {
|
@@ -326,9 +340,9 @@ export declare const useMarkdownToolbarStore: () => {
|
|
326
340
|
add: (action: MarkdownEditorActionRegistration | MarkdownEditorActionRegistration[]) => void;
|
327
341
|
};
|
328
342
|
formatting: () => {
|
329
|
-
add: (element: HTMLElement,
|
330
|
-
toggle: (element: HTMLElement) => void;
|
331
|
-
remove: (element: HTMLElement,
|
343
|
+
add: (element: HTMLElement, toogleIfExists?: boolean, matchByDataTypeOnly?: boolean) => void;
|
344
|
+
toggle: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
345
|
+
remove: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
332
346
|
};
|
333
347
|
element: () => {
|
334
348
|
createForComponent: (componentName: string) => HTMLDivElement;
|
@@ -342,6 +356,16 @@ export declare const useMarkdownToolbarStore: () => {
|
|
342
356
|
};
|
343
357
|
get: {
|
344
358
|
plugins: import("../models/MarkdownPlugin").MarkdownPlugin[];
|
359
|
+
selection: {
|
360
|
+
has: {
|
361
|
+
dataType: (dataType: string) => boolean;
|
362
|
+
elementName: (elementName: string) => boolean;
|
363
|
+
};
|
364
|
+
get: {
|
365
|
+
byDataType: (dataType: string) => Node;
|
366
|
+
byElementName: (elementName: string) => Node;
|
367
|
+
};
|
368
|
+
};
|
345
369
|
};
|
346
370
|
} & {
|
347
371
|
dispose?: () => void;
|
@@ -358,6 +382,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
358
382
|
editMode: boolean;
|
359
383
|
toolbarActions: MarkdownEditorActionRegistration[];
|
360
384
|
editor: HTMLDivElement;
|
385
|
+
selectedPluginNodes: Node[];
|
361
386
|
telePorts: JSX.Element[];
|
362
387
|
id: string;
|
363
388
|
selectedRange: Range;
|
@@ -367,6 +392,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
367
392
|
onMutatedEditMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
368
393
|
onMutatedToolbarActions: import("@omnia/fx").MessageBusExposeOnlySubscription<MarkdownEditorActionRegistration[]>;
|
369
394
|
onMutatedEditor: import("@omnia/fx").MessageBusExposeOnlySubscription<HTMLDivElement>;
|
395
|
+
onMutatedSelectedPluginNodes: import("@omnia/fx").MessageBusExposeOnlySubscription<Node[]>;
|
370
396
|
onMutatedTelePorts: import("@omnia/fx").MessageBusExposeOnlySubscription<JSX.Element[]>;
|
371
397
|
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
372
398
|
onMutatedSelectedRange: import("@omnia/fx").MessageBusExposeOnlySubscription<Range>;
|
@@ -436,9 +462,9 @@ export declare const useMarkdownToolbarStore: () => {
|
|
436
462
|
};
|
437
463
|
formatting: {
|
438
464
|
subscribe(fn: (result: {
|
439
|
-
add: (element: HTMLElement,
|
440
|
-
toggle: (element: HTMLElement) => void;
|
441
|
-
remove: (element: HTMLElement,
|
465
|
+
add: (element: HTMLElement, toogleIfExists?: boolean, matchByDataTypeOnly?: boolean) => void;
|
466
|
+
toggle: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
467
|
+
remove: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
442
468
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
443
469
|
};
|
444
470
|
element: {
|
@@ -502,9 +528,9 @@ export declare const useMarkdownToolbarStore: () => {
|
|
502
528
|
add: (action: MarkdownEditorActionRegistration | MarkdownEditorActionRegistration[]) => void;
|
503
529
|
};
|
504
530
|
formatting: () => {
|
505
|
-
add: (element: HTMLElement,
|
506
|
-
toggle: (element: HTMLElement) => void;
|
507
|
-
remove: (element: HTMLElement,
|
531
|
+
add: (element: HTMLElement, toogleIfExists?: boolean, matchByDataTypeOnly?: boolean) => void;
|
532
|
+
toggle: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
533
|
+
remove: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
508
534
|
};
|
509
535
|
element: () => {
|
510
536
|
createForComponent: (componentName: string) => HTMLDivElement;
|
@@ -518,6 +544,16 @@ export declare const useMarkdownToolbarStore: () => {
|
|
518
544
|
};
|
519
545
|
get: {
|
520
546
|
plugins: import("../models/MarkdownPlugin").MarkdownPlugin[];
|
547
|
+
selection: {
|
548
|
+
has: {
|
549
|
+
dataType: (dataType: string) => boolean;
|
550
|
+
elementName: (elementName: string) => boolean;
|
551
|
+
};
|
552
|
+
get: {
|
553
|
+
byDataType: (dataType: string) => Node;
|
554
|
+
byElementName: (elementName: string) => Node;
|
555
|
+
};
|
556
|
+
};
|
521
557
|
};
|
522
558
|
} & {
|
523
559
|
dispose?: () => void;
|
@@ -535,6 +571,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
535
571
|
editMode: boolean;
|
536
572
|
toolbarActions: MarkdownEditorActionRegistration[];
|
537
573
|
editor: HTMLDivElement;
|
574
|
+
selectedPluginNodes: Node[];
|
538
575
|
telePorts: JSX.Element[];
|
539
576
|
id: string;
|
540
577
|
selectedRange: Range;
|
@@ -544,6 +581,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
544
581
|
onMutatedEditMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
545
582
|
onMutatedToolbarActions: import("@omnia/fx").MessageBusExposeOnlySubscription<MarkdownEditorActionRegistration[]>;
|
546
583
|
onMutatedEditor: import("@omnia/fx").MessageBusExposeOnlySubscription<HTMLDivElement>;
|
584
|
+
onMutatedSelectedPluginNodes: import("@omnia/fx").MessageBusExposeOnlySubscription<Node[]>;
|
547
585
|
onMutatedTelePorts: import("@omnia/fx").MessageBusExposeOnlySubscription<JSX.Element[]>;
|
548
586
|
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
549
587
|
onMutatedSelectedRange: import("@omnia/fx").MessageBusExposeOnlySubscription<Range>;
|
@@ -613,9 +651,9 @@ export declare const useMarkdownToolbarStore: () => {
|
|
613
651
|
};
|
614
652
|
formatting: {
|
615
653
|
subscribe(fn: (result: {
|
616
|
-
add: (element: HTMLElement,
|
617
|
-
toggle: (element: HTMLElement) => void;
|
618
|
-
remove: (element: HTMLElement,
|
654
|
+
add: (element: HTMLElement, toogleIfExists?: boolean, matchByDataTypeOnly?: boolean) => void;
|
655
|
+
toggle: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
656
|
+
remove: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
619
657
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
620
658
|
};
|
621
659
|
element: {
|
@@ -679,9 +717,9 @@ export declare const useMarkdownToolbarStore: () => {
|
|
679
717
|
add: (action: MarkdownEditorActionRegistration | MarkdownEditorActionRegistration[]) => void;
|
680
718
|
};
|
681
719
|
formatting: () => {
|
682
|
-
add: (element: HTMLElement,
|
683
|
-
toggle: (element: HTMLElement) => void;
|
684
|
-
remove: (element: HTMLElement,
|
720
|
+
add: (element: HTMLElement, toogleIfExists?: boolean, matchByDataTypeOnly?: boolean) => void;
|
721
|
+
toggle: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
722
|
+
remove: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
685
723
|
};
|
686
724
|
element: () => {
|
687
725
|
createForComponent: (componentName: string) => HTMLDivElement;
|
@@ -695,6 +733,16 @@ export declare const useMarkdownToolbarStore: () => {
|
|
695
733
|
};
|
696
734
|
get: {
|
697
735
|
plugins: import("../models/MarkdownPlugin").MarkdownPlugin[];
|
736
|
+
selection: {
|
737
|
+
has: {
|
738
|
+
dataType: (dataType: string) => boolean;
|
739
|
+
elementName: (elementName: string) => boolean;
|
740
|
+
};
|
741
|
+
get: {
|
742
|
+
byDataType: (dataType: string) => Node;
|
743
|
+
byElementName: (elementName: string) => Node;
|
744
|
+
};
|
745
|
+
};
|
698
746
|
};
|
699
747
|
} & {
|
700
748
|
dispose?: () => void;
|
@@ -712,6 +760,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
712
760
|
editMode: boolean;
|
713
761
|
toolbarActions: MarkdownEditorActionRegistration[];
|
714
762
|
editor: HTMLDivElement;
|
763
|
+
selectedPluginNodes: Node[];
|
715
764
|
telePorts: JSX.Element[];
|
716
765
|
id: string;
|
717
766
|
selectedRange: Range;
|
@@ -721,6 +770,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
721
770
|
onMutatedEditMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
722
771
|
onMutatedToolbarActions: import("@omnia/fx").MessageBusExposeOnlySubscription<MarkdownEditorActionRegistration[]>;
|
723
772
|
onMutatedEditor: import("@omnia/fx").MessageBusExposeOnlySubscription<HTMLDivElement>;
|
773
|
+
onMutatedSelectedPluginNodes: import("@omnia/fx").MessageBusExposeOnlySubscription<Node[]>;
|
724
774
|
onMutatedTelePorts: import("@omnia/fx").MessageBusExposeOnlySubscription<JSX.Element[]>;
|
725
775
|
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
726
776
|
onMutatedSelectedRange: import("@omnia/fx").MessageBusExposeOnlySubscription<Range>;
|
@@ -790,9 +840,9 @@ export declare const useMarkdownToolbarStore: () => {
|
|
790
840
|
};
|
791
841
|
formatting: {
|
792
842
|
subscribe(fn: (result: {
|
793
|
-
add: (element: HTMLElement,
|
794
|
-
toggle: (element: HTMLElement) => void;
|
795
|
-
remove: (element: HTMLElement,
|
843
|
+
add: (element: HTMLElement, toogleIfExists?: boolean, matchByDataTypeOnly?: boolean) => void;
|
844
|
+
toggle: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
845
|
+
remove: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
796
846
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
797
847
|
};
|
798
848
|
element: {
|
@@ -856,9 +906,9 @@ export declare const useMarkdownToolbarStore: () => {
|
|
856
906
|
add: (action: MarkdownEditorActionRegistration | MarkdownEditorActionRegistration[]) => void;
|
857
907
|
};
|
858
908
|
formatting: () => {
|
859
|
-
add: (element: HTMLElement,
|
860
|
-
toggle: (element: HTMLElement) => void;
|
861
|
-
remove: (element: HTMLElement,
|
909
|
+
add: (element: HTMLElement, toogleIfExists?: boolean, matchByDataTypeOnly?: boolean) => void;
|
910
|
+
toggle: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
911
|
+
remove: (element: HTMLElement, matchByDataTypeOnly?: boolean) => void;
|
862
912
|
};
|
863
913
|
element: () => {
|
864
914
|
createForComponent: (componentName: string) => HTMLDivElement;
|
@@ -872,6 +922,16 @@ export declare const useMarkdownToolbarStore: () => {
|
|
872
922
|
};
|
873
923
|
get: {
|
874
924
|
plugins: import("../models/MarkdownPlugin").MarkdownPlugin[];
|
925
|
+
selection: {
|
926
|
+
has: {
|
927
|
+
dataType: (dataType: string) => boolean;
|
928
|
+
elementName: (elementName: string) => boolean;
|
929
|
+
};
|
930
|
+
get: {
|
931
|
+
byDataType: (dataType: string) => Node;
|
932
|
+
byElementName: (elementName: string) => Node;
|
933
|
+
};
|
934
|
+
};
|
875
935
|
};
|
876
936
|
} & {
|
877
937
|
dispose?: () => void;
|
@@ -1,11 +1,20 @@
|
|
1
|
-
import { DataTableHeader, DefineEmit, DefineProp, DefinePropTheming, DefineSlot, DefineVModel, IDataTableRowRenderer, SortItem } from "@omnia/fx/ux";
|
2
|
-
import { ComponentPublicInstance,
|
1
|
+
import { ConstructComponentProps, DataTableHeader, DefineEmit, DefineProp, DefinePropTheming, DefineSlot, DefineVModel, IDataTableRowRenderer, SortItem } from "@omnia/fx/ux";
|
2
|
+
import { ComponentPublicInstance, TdHTMLAttributes, VNodeChild } from "vue";
|
3
|
+
import { PublicDataTableRowProps } from "./RowRenderer";
|
4
|
+
type CellElement = (props: ConstructComponentProps<Pick<TdHTMLAttributes, "colspan" | "rowspan" | "headers">>) => any;
|
5
|
+
type RowElement = (props: ConstructComponentProps<PublicDataTableRowProps>) => any;
|
6
|
+
export interface IDataTableRow<T = any> {
|
7
|
+
value: T;
|
8
|
+
index: number;
|
9
|
+
Row: RowElement;
|
10
|
+
Cell: CellElement;
|
11
|
+
}
|
3
12
|
declare const defaultHeaders: DataTableHeader[];
|
4
13
|
declare const defaultItems: any[];
|
5
|
-
export type DataTableProps<T> = DefinePropTheming & DefineVModel<"expanded", Array<string>, false, null, false, "Whether the item is expanded or not."> & DefineVModel<"sortBy", SortItem[], false, null, false, "Changes which item property (or properties) should be used for sort order."> & DefineProp<"mustSort", boolean, false, false, "If true then one can not disable sorting, it will always switch between ascending and descending."> & DefineProp<"height", string | number, false, null, "Sets and explicit height of the tablet."> & DefineProp<"noDataText", string, false, null, "Text shown when no items are provided to the component."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"
|
14
|
+
export type DataTableProps<T> = DefinePropTheming & DefineVModel<"expanded", Array<string>, false, null, false, "Whether the item is expanded or not."> & DefineVModel<"sortBy", SortItem[], false, null, false, "Changes which item property (or properties) should be used for sort order."> & DefineProp<"mustSort", boolean, false, false, "If true then one can not disable sorting, it will always switch between ascending and descending."> & DefineProp<"height", string | number, false, null, "Sets and explicit height of the tablet."> & DefineProp<"noDataText", string, false, null, "Text shown when no items are provided to the component."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"drag", boolean, false, false, "Enable draggable row."> & DefineProp<"hover", boolean, false, false, "Property on supplied items that contains its value."> & DefineProp<"showExpand", boolean, false, false, "Shows the expand toggle in default rows."> & DefineProp<"showLoadMore", boolean, false, false, "Shows the button to fetch more data."> & DefineProp<"itemsPerPage", number, false, -1, "Changes how many items per page should be visible. If set a paging footer is displayed."> & DefineProp<"headers", DataTableHeader[], false, typeof defaultHeaders, "An array of objects that each describe a header column."> & DefineVModel<"items", T[], false, typeof defaultItems, true, "An array of strings or objects used for automatically generating children components."> & DefineEmit<"update:sortBy", (item: SortItem[]) => void> & DefineEmit<"update:expanded", (expanded: string[]) => void> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void> & DefineEmit<"click:loadMore", () => void> & DefineSlot<"item", (row: IDataTableRowRenderer<T>) => void> & DefineSlot<"row", (row: IDataTableRow<T>) => VNodeChild> & DefineSlot<`header.${string}`, (header: DataTableHeader) => void> & DefineSlot<`item.${string}`, (e: {
|
6
15
|
item: T;
|
7
16
|
}) => void>;
|
8
|
-
declare const _default: <T extends unknown>(props:
|
17
|
+
declare const _default: <T extends unknown>(props: ConstructComponentProps<DataTableProps<T>>) => {
|
9
18
|
$: import("vue").ComponentInternalInstance;
|
10
19
|
$data: {};
|
11
20
|
$props: {};
|
@@ -50,14 +59,15 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Constr
|
|
50
59
|
item: T;
|
51
60
|
}) => void;
|
52
61
|
item?: (row: IDataTableRowRenderer<T>) => void;
|
62
|
+
row?: (row: IDataTableRow<T>) => VNodeChild;
|
53
63
|
} & Omit<{
|
54
64
|
default?: import("vue").Slot;
|
55
|
-
}, "item" | `header.${string}` | `item.${string}`>;
|
65
|
+
}, "row" | "item" | `header.${string}` | `item.${string}`>;
|
56
66
|
} & {
|
57
67
|
"onUpdate:expanded"?: (expanded: string[]) => any;
|
58
68
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
59
69
|
"onClick:loadMore"?: () => any;
|
60
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "
|
70
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "drag" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "showLoadMore" | "itemsPerPage" | "v-model:items" | "onUpdate:items">;
|
61
71
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
62
72
|
[key: string]: any;
|
63
73
|
}>;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { IIcon } from "@omnia/fx-models";
|
2
|
-
import { IDataTableRowRenderer } from "@omnia/fx/ux";
|
2
|
+
import { DefineEmit, DefineProp, DefineSlot, IDataTableRowRenderer } from "@omnia/fx/ux";
|
3
3
|
import { VNodeChild } from "vue";
|
4
4
|
export declare class DataTableRowRenderer implements IDataTableRowRenderer {
|
5
5
|
value: any;
|
@@ -25,3 +25,79 @@ export declare class DataTableRowRenderer implements IDataTableRowRenderer {
|
|
25
25
|
addIcon(icon: IIcon): void;
|
26
26
|
addAction(node: VNodeChild): Pick<IDataTableRowRenderer, "addCell" | "addAction">;
|
27
27
|
}
|
28
|
+
export type PublicDataTableRowProps = DefineProp<"hideNavigation", boolean, false, false> & DefineProp<"active", boolean, false, false> & DefineProp<"remove", boolean, false, false> & DefineProp<"icon", IIcon> & DefineSlot<"actions", () => VNodeChild>;
|
29
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
30
|
+
hideNavigation?: boolean;
|
31
|
+
} & {
|
32
|
+
active?: boolean;
|
33
|
+
} & {
|
34
|
+
remove?: boolean;
|
35
|
+
} & {
|
36
|
+
icon?: IIcon;
|
37
|
+
} & DefineSlot<"actions", () => VNodeChild> & DefineEmit<"click:navigation", (e: MouseEvent) => void> & {
|
38
|
+
drag?: boolean;
|
39
|
+
} & {
|
40
|
+
draggableIcon?: () => VNodeChild;
|
41
|
+
}>) => {
|
42
|
+
$: import("vue").ComponentInternalInstance;
|
43
|
+
$data: {};
|
44
|
+
$props: {};
|
45
|
+
$attrs: {
|
46
|
+
[x: string]: unknown;
|
47
|
+
};
|
48
|
+
$refs: {
|
49
|
+
[x: string]: unknown;
|
50
|
+
};
|
51
|
+
$slots: Readonly<{
|
52
|
+
[name: string]: import("vue").Slot<any>;
|
53
|
+
}>;
|
54
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
55
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
56
|
+
$emit: (event: string, ...args: any[]) => void;
|
57
|
+
$el: any;
|
58
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
59
|
+
beforeCreate?: (() => void) | (() => void)[];
|
60
|
+
created?: (() => void) | (() => void)[];
|
61
|
+
beforeMount?: (() => void) | (() => void)[];
|
62
|
+
mounted?: (() => void) | (() => void)[];
|
63
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
64
|
+
updated?: (() => void) | (() => void)[];
|
65
|
+
activated?: (() => void) | (() => void)[];
|
66
|
+
deactivated?: (() => void) | (() => void)[];
|
67
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
68
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
69
|
+
destroyed?: (() => void) | (() => void)[];
|
70
|
+
unmounted?: (() => void) | (() => void)[];
|
71
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
72
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
73
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
74
|
+
};
|
75
|
+
$forceUpdate: () => void;
|
76
|
+
$nextTick: typeof import("vue").nextTick;
|
77
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
78
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
79
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
80
|
+
hideNavigation?: boolean;
|
81
|
+
} & {
|
82
|
+
active?: boolean;
|
83
|
+
} & {
|
84
|
+
remove?: boolean;
|
85
|
+
} & {
|
86
|
+
icon?: IIcon;
|
87
|
+
} & DefineSlot<"actions", () => VNodeChild> & DefineEmit<"click:navigation", (e: MouseEvent) => void> & {
|
88
|
+
drag?: boolean;
|
89
|
+
} & {
|
90
|
+
draggableIcon?: () => VNodeChild;
|
91
|
+
}> & {
|
92
|
+
"v-slots"?: {
|
93
|
+
actions?: () => VNodeChild;
|
94
|
+
} & Omit<{
|
95
|
+
default?: import("vue").Slot;
|
96
|
+
}, "actions">;
|
97
|
+
} & {
|
98
|
+
"onClick:navigation"?: (e: MouseEvent) => any;
|
99
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "drag" | "active" | "remove" | "hideNavigation" | "draggableIcon">;
|
100
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
101
|
+
[key: string]: any;
|
102
|
+
}>;
|
103
|
+
export default _default;
|
@@ -1,8 +1,7 @@
|
|
1
1
|
import { ODraggableVariants } from "@omnia/fx-models";
|
2
|
-
import {
|
3
|
-
import {
|
4
|
-
|
5
|
-
export type DraggableProps = DefineVModel<"", Array<any>, false, null, false, "The draggable items."> & DefineProp<"itemTitle", string | ((item: any) => VNodeChild), false, null, "Specify title property of an item or provide custom render it."> & DefineProp<"itemValue", string | ((item: any) => string), false, null, "Property on supplied items that contains its value."> & DefineProp<"disabledItem", string, false, null, "Specify a class name for items that are disabled for sortable."> & DefineProp<"placeholderClass", string, false, null, "Custom styles of the placeholder."> & DefineProp<"navigable", boolean | Ref<boolean>, false, false, "Show navigate icon for further navigation."> & DefineProp<"hideDraggableIcon", boolean | Ref<boolean>, false, false, "Hide draggable icons."> & DefineProp<"draggableWholeRow", boolean | Ref<boolean>, false, false, "Hide draggable icons."> & DefineProp<"variant", ODraggableVariants, false, "default", "Applies a distinct style to the component."> & DefineProp<"headers", DataTableHeader[], false, typeof defaultHeadersValue, "An array of objects that each describe a header column for data-table variant."> & DefineSlot<"item", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Define a custom item appearance."> & DefineSlot<"append", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Provide extra actions to the end of the item. Applicable in structured variants like List, DataTable,..."> & DefineEmit<"click:navigate", (value: any) => true, "Emit a navigate event."> & DefineEmit<"sort:start", () => true, "Emit a sort start event."> & DefineEmit<"sort:end", () => true, "Emit a sort end event.">;
|
2
|
+
import { DefineEmit, DefineProp, DefineSlot, DefineVModel, IDataTableRowRenderer } from "@omnia/fx/ux";
|
3
|
+
import { VNodeChild } from "vue";
|
4
|
+
export type DraggableProps = DefineVModel<"", Array<any>, false, null, false, "The draggable items."> & DefineProp<"itemTitle", string | ((item: any) => VNodeChild), false, null, "Specify title property of an item or provide custom render it."> & DefineProp<"itemValue", string | ((item: any) => string), false, null, "Property on supplied items that contains its value."> & DefineProp<"disabledItem", string, false, null, "Specify a class name for items that are disabled for sortable."> & DefineProp<"placeholderClass", string, false, null, "Custom styles of the placeholder."> & DefineProp<"variant", ODraggableVariants, false, "default", "Applies a distinct style to the component."> & DefineSlot<"item", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Define a custom item appearance."> & DefineEmit<"sort:start", () => true, "Emit a sort start event."> & DefineEmit<"sort:end", () => true, "Emit a sort end event.">;
|
6
5
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<DraggableProps>) => {
|
7
6
|
$: import("vue").ComponentInternalInstance;
|
8
7
|
$data: {};
|
@@ -44,15 +43,13 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<D
|
|
44
43
|
propsDefinition: import("@omnia/fx/ux").ExtractProps<DraggableProps> & {
|
45
44
|
"v-slots"?: {
|
46
45
|
item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer<any>) => void);
|
47
|
-
append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer<any>) => void);
|
48
46
|
} & Omit<{
|
49
47
|
default?: import("vue").Slot;
|
50
|
-
}, "
|
48
|
+
}, "item">;
|
51
49
|
} & {
|
52
50
|
"onSort:end"?: () => any;
|
53
|
-
"onClick:navigate"?: (value: any) => any;
|
54
51
|
"onSort:start"?: () => any;
|
55
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "
|
52
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "itemValue" | "itemTitle" | "disabledItem" | "placeholderClass">;
|
56
53
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
57
54
|
[key: string]: any;
|
58
55
|
}>;
|
package/internal-do-not-import-from-here/ux/versionedlayout/blade/VersionedLayoutBladeBuilder.d.ts
CHANGED
@@ -90,7 +90,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
90
90
|
} & Omit<{
|
91
91
|
default?: import("vue").Slot;
|
92
92
|
}, "navigation" | "bottomNavigationDrawer" | "prependNavigation">;
|
93
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "sort" | "icon" | "title" | "provider" | "settings" | "v-model" | "onUpdate:modelValue" | "modelValue" | "subTitle" | "
|
93
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "sort" | "icon" | "title" | "provider" | "settings" | "v-model" | "onUpdate:modelValue" | "modelValue" | "subTitle" | "hideNavigation" | "selectedLayout">;
|
94
94
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
95
95
|
[key: string]: any;
|
96
96
|
}>;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.246-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,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.246-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
File without changes
|
File without changes
|