@omnia/fx 8.0.217-dev → 8.0.220-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/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +130 -12
- package/internal-do-not-import-from-here/ux/admin/usermanagement/usertypes/tabs/AuthenticationTab.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStylePicker.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/aurora/styling/UseStyling.d.ts +7 -25
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Blueprints.d.ts +3 -8
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Spacing.d.ts +1 -6
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Typography.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/settings/extendedproperty/ExtendedPropertySettings.d.ts +54 -43
- package/internal-do-not-import-from-here/ux/markdown/patches/EditorScrollPatch.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.stylex.d.ts +53 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.stylex.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.stylex.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +11 -3
- package/internal-do-not-import-from-here/ux/oxide/text/Text.stylex.d.ts +1 -6
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.stylex.d.ts +24 -18
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCardRenderer.d.ts +58 -82
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextEditor.d.ts +47 -51
- package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeEditor.d.ts +47 -51
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/HashTag/HashTagToolbar.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/MediaPickerEditorExtension.d.ts +48 -68
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/MediaPickerToolbar.d.ts +50 -70
- package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutRenderer.d.ts +65 -44
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.d.ts +681 -1061
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentRenderer.d.ts +80 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector copy.d.ts +60 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar copy.d.ts +65 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/models/EditorRenderingHooks.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +135 -203
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/ImageEditor.d.ts +14 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +11 -26
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/oxide/alert/Alert.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.css.d.ts +0 -22
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlock.css.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlock.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlockSettings.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlockSettings.d.ts +0 -16
@@ -61,7 +61,11 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
61
61
|
persistentHint?: boolean;
|
62
62
|
} & {
|
63
63
|
hideSelected?: boolean;
|
64
|
-
} & DefineEmit<"update:modelValue", (value: TModel) => void, "Emit a click event."> & DefineEmit<"click:button", (value: any) => void, "Emit a click event."> &
|
64
|
+
} & DefineEmit<"update:modelValue", (value: TModel) => void, "Emit a click event."> & DefineEmit<"click:button", (value: any) => void, "Emit a click event."> & {
|
65
|
+
errorMessages?: string | readonly string[];
|
66
|
+
} & {
|
67
|
+
error?: boolean;
|
68
|
+
} & DefineEmit<"update:search", (value: string) => void, "Emit when search input value is changed. Only works when searchable prop is true."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineSlot<"chip", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"selection", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"item", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"append-item", () => VNodeChild>>) => {
|
65
69
|
$: import("vue").ComponentInternalInstance;
|
66
70
|
$data: {};
|
67
71
|
$props: {};
|
@@ -151,7 +155,11 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
151
155
|
persistentHint?: boolean;
|
152
156
|
} & {
|
153
157
|
hideSelected?: boolean;
|
154
|
-
} & DefineEmit<"update:modelValue", (value: TModel) => void, "Emit a click event."> & DefineEmit<"click:button", (value: any) => void, "Emit a click event."> &
|
158
|
+
} & DefineEmit<"update:modelValue", (value: TModel) => void, "Emit a click event."> & DefineEmit<"click:button", (value: any) => void, "Emit a click event."> & {
|
159
|
+
errorMessages?: string | readonly string[];
|
160
|
+
} & {
|
161
|
+
error?: boolean;
|
162
|
+
} & DefineEmit<"update:search", (value: string) => void, "Emit when search input value is changed. Only works when searchable prop is true."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineSlot<"chip", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"selection", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"item", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"append-item", () => VNodeChild>> & {
|
155
163
|
"v-slots"?: {
|
156
164
|
default?: import("vue").Slot;
|
157
165
|
} & {
|
@@ -165,7 +173,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
165
173
|
"onUpdate:focused"?: (value: boolean) => any;
|
166
174
|
"onClick:button"?: (value: any) => any;
|
167
175
|
"onUpdate:search"?: (value: string) => any;
|
168
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "label" | "multiple" | "disabled" | "colorSchemaType" | "toned" | "items" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "readonly" | "clearable" | "itemValue" | "returnObject" | "hideNoData" | "itemTitle" | "menuIcon" | "hideSelected">;
|
176
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "error" | "container" | "class" | "label" | "multiple" | "disabled" | "colorSchemaType" | "toned" | "items" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "readonly" | "errorMessages" | "clearable" | "itemValue" | "returnObject" | "hideNoData" | "itemTitle" | "menuIcon" | "hideSelected">;
|
169
177
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
170
178
|
[key: string]: any;
|
171
179
|
}>;
|
@@ -2,10 +2,5 @@
|
|
2
2
|
* Styles for the CommandPalette component
|
3
3
|
*/
|
4
4
|
export declare const TextStyles: {
|
5
|
-
truncateText: (lines: number) => Readonly<
|
6
|
-
className?: string;
|
7
|
-
style?: Readonly<{
|
8
|
-
[$$Key$$: string]: string | number;
|
9
|
-
}>;
|
10
|
-
}>;
|
5
|
+
truncateText: (lines: number) => Readonly<import("../../Styles.stylex").StylexType>;
|
11
6
|
};
|
@@ -1,21 +1,27 @@
|
|
1
|
-
export declare const treeViewStylex:
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
}>, typeof import("@stylexjs/stylex/lib/StyleXTypes").StyleXInlineStylesTag];
|
9
|
-
readonly containerWrapper: (otreeContainerWrapperBackgroundColor: string) => readonly [Readonly<{
|
10
|
-
background: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"background", string>;
|
11
|
-
}>, typeof import("@stylexjs/stylex/lib/StyleXTypes").StyleXInlineStylesTag];
|
12
|
-
readonly expandedAnimation: Readonly<{
|
13
|
-
readonly transition: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"transition", "0.4s">;
|
1
|
+
export declare const treeViewStylex: {
|
2
|
+
titleWrapper: (hoverBackgroundColor: string) => Readonly<import("../../Styles.stylex").StylexType>;
|
3
|
+
containerWrapper: (background: string) => Readonly<{
|
4
|
+
className?: string;
|
5
|
+
style?: Readonly<{
|
6
|
+
[$$Key$$: string]: string | number;
|
7
|
+
}>;
|
14
8
|
}>;
|
15
|
-
|
16
|
-
|
9
|
+
expandedAnimation: Readonly<{
|
10
|
+
className?: string;
|
11
|
+
style?: Readonly<{
|
12
|
+
[$$Key$$: string]: string | number;
|
13
|
+
}>;
|
17
14
|
}>;
|
18
|
-
|
19
|
-
|
15
|
+
expandedIcon: Readonly<{
|
16
|
+
className?: string;
|
17
|
+
style?: Readonly<{
|
18
|
+
[$$Key$$: string]: string | number;
|
19
|
+
}>;
|
20
20
|
}>;
|
21
|
-
|
21
|
+
collapsedIcon: Readonly<{
|
22
|
+
className?: string;
|
23
|
+
style?: Readonly<{
|
24
|
+
[$$Key$$: string]: string | number;
|
25
|
+
}>;
|
26
|
+
}>;
|
27
|
+
};
|
@@ -1,88 +1,64 @@
|
|
1
1
|
import { UserIdentity } from "@omnia/fx-models";
|
2
|
-
declare const _default: {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
required: false;
|
17
|
-
};
|
18
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
19
|
-
removeElementAfterClosing: {
|
20
|
-
type: BooleanConstructor;
|
21
|
-
};
|
22
|
-
"onUpdate:user": {
|
23
|
-
type: import("vue").PropType<(value: UserIdentity) => any>;
|
24
|
-
};
|
25
|
-
"v-model:user": {
|
26
|
-
type: import("vue").PropType<UserIdentity>;
|
27
|
-
required: false;
|
28
|
-
};
|
29
|
-
user: {
|
30
|
-
type: import("vue").PropType<UserIdentity>;
|
31
|
-
required: false;
|
32
|
-
};
|
33
|
-
}>>, {
|
34
|
-
removeElementAfterClosing: boolean;
|
35
|
-
}, true, {}, {}, {
|
36
|
-
P: {};
|
37
|
-
B: {};
|
38
|
-
D: {};
|
39
|
-
C: {};
|
40
|
-
M: {};
|
41
|
-
Defaults: {};
|
42
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
43
|
-
removeElementAfterClosing: {
|
44
|
-
type: BooleanConstructor;
|
45
|
-
};
|
46
|
-
"onUpdate:user": {
|
47
|
-
type: import("vue").PropType<(value: UserIdentity) => any>;
|
48
|
-
};
|
49
|
-
"v-model:user": {
|
50
|
-
type: import("vue").PropType<UserIdentity>;
|
51
|
-
required: false;
|
52
|
-
};
|
53
|
-
user: {
|
54
|
-
type: import("vue").PropType<UserIdentity>;
|
55
|
-
required: false;
|
56
|
-
};
|
57
|
-
}>>, () => JSX.Element, {}, {}, {}, {
|
58
|
-
removeElementAfterClosing: boolean;
|
59
|
-
}>;
|
60
|
-
__isFragment?: never;
|
61
|
-
__isTeleport?: never;
|
62
|
-
__isSuspense?: never;
|
63
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
64
|
-
removeElementAfterClosing: {
|
65
|
-
type: BooleanConstructor;
|
66
|
-
};
|
67
|
-
"onUpdate:user": {
|
68
|
-
type: import("vue").PropType<(value: UserIdentity) => any>;
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
|
+
"v-model"?: UserIdentity;
|
4
|
+
} & {
|
5
|
+
"onUpdate:modelValue"?: (value: UserIdentity) => void;
|
6
|
+
} & {
|
7
|
+
modelValue?: UserIdentity;
|
8
|
+
} & {
|
9
|
+
removeElementAfterClosing?: boolean;
|
10
|
+
}>) => {
|
11
|
+
$: import("vue").ComponentInternalInstance;
|
12
|
+
$data: {};
|
13
|
+
$props: {};
|
14
|
+
$attrs: {
|
15
|
+
[x: string]: unknown;
|
69
16
|
};
|
70
|
-
|
71
|
-
|
72
|
-
required: false;
|
17
|
+
$refs: {
|
18
|
+
[x: string]: unknown;
|
73
19
|
};
|
74
|
-
|
75
|
-
|
76
|
-
|
20
|
+
$slots: Readonly<{
|
21
|
+
[name: string]: import("vue").Slot<any>;
|
22
|
+
}>;
|
23
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
24
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
25
|
+
$emit: (event: string, ...args: any[]) => void;
|
26
|
+
$el: any;
|
27
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
28
|
+
beforeCreate?: (() => void) | (() => void)[];
|
29
|
+
created?: (() => void) | (() => void)[];
|
30
|
+
beforeMount?: (() => void) | (() => void)[];
|
31
|
+
mounted?: (() => void) | (() => void)[];
|
32
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
33
|
+
updated?: (() => void) | (() => void)[];
|
34
|
+
activated?: (() => void) | (() => void)[];
|
35
|
+
deactivated?: (() => void) | (() => void)[];
|
36
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
37
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
38
|
+
destroyed?: (() => void) | (() => void)[];
|
39
|
+
unmounted?: (() => void) | (() => void)[];
|
40
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
41
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
42
|
+
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)[];
|
77
43
|
};
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
44
|
+
$forceUpdate: () => void;
|
45
|
+
$nextTick: typeof import("vue").nextTick;
|
46
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
47
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
48
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
49
|
+
"v-model"?: UserIdentity;
|
50
|
+
} & {
|
51
|
+
"onUpdate:modelValue"?: (value: UserIdentity) => void;
|
52
|
+
} & {
|
53
|
+
modelValue?: UserIdentity;
|
54
|
+
} & {
|
83
55
|
removeElementAfterClosing?: boolean;
|
84
|
-
|
85
|
-
"v-
|
86
|
-
|
87
|
-
};
|
56
|
+
}> & {
|
57
|
+
"v-slots"?: {
|
58
|
+
default?: import("vue").Slot;
|
59
|
+
} & {};
|
60
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "removeElementAfterClosing">;
|
61
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
62
|
+
[key: string]: any;
|
63
|
+
}>;
|
88
64
|
export default _default;
|
@@ -1,55 +1,51 @@
|
|
1
|
-
import { IPropertyEditorRenderer,
|
1
|
+
import { IPropertyEditorRenderer, MultilineTextPropertyDefinition, MultilineTextPropertyValue } from "@omnia/fx-models";
|
2
2
|
export type MultilineTextEditorProps = IPropertyEditorRenderer<MultilineTextPropertyDefinition> & {
|
3
3
|
"v-model": MultilineTextPropertyValue;
|
4
4
|
};
|
5
|
-
declare const _default: {
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
}
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
setupSettings?: never;
|
52
|
-
editorSettings?: MultilineTextEditorSettings;
|
53
|
-
}>, never>;
|
54
|
-
};
|
5
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<MultilineTextEditorProps>) => {
|
6
|
+
$: import("vue").ComponentInternalInstance;
|
7
|
+
$data: {};
|
8
|
+
$props: {};
|
9
|
+
$attrs: {
|
10
|
+
[x: string]: unknown;
|
11
|
+
};
|
12
|
+
$refs: {
|
13
|
+
[x: string]: unknown;
|
14
|
+
};
|
15
|
+
$slots: Readonly<{
|
16
|
+
[name: string]: import("vue").Slot<any>;
|
17
|
+
}>;
|
18
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
19
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
20
|
+
$emit: (event: string, ...args: any[]) => void;
|
21
|
+
$el: any;
|
22
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
23
|
+
beforeCreate?: (() => void) | (() => void)[];
|
24
|
+
created?: (() => void) | (() => void)[];
|
25
|
+
beforeMount?: (() => void) | (() => void)[];
|
26
|
+
mounted?: (() => void) | (() => void)[];
|
27
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
28
|
+
updated?: (() => void) | (() => void)[];
|
29
|
+
activated?: (() => void) | (() => void)[];
|
30
|
+
deactivated?: (() => void) | (() => void)[];
|
31
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
32
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
33
|
+
destroyed?: (() => void) | (() => void)[];
|
34
|
+
unmounted?: (() => void) | (() => void)[];
|
35
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
36
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
37
|
+
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)[];
|
38
|
+
};
|
39
|
+
$forceUpdate: () => void;
|
40
|
+
$nextTick: typeof import("vue").nextTick;
|
41
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
42
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
43
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<MultilineTextEditorProps> & {
|
44
|
+
"v-slots"?: {
|
45
|
+
default?: import("vue").Slot;
|
46
|
+
} & {};
|
47
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | keyof IPropertyEditorRenderer<MultilineTextPropertyDefinition>>;
|
48
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
49
|
+
[key: string]: any;
|
50
|
+
}>;
|
55
51
|
export default _default;
|
package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeEditor.d.ts
CHANGED
@@ -1,55 +1,51 @@
|
|
1
|
-
import { IPropertyEditorRenderer, PropertyValueType, UserTypePropertyDefinition
|
1
|
+
import { IPropertyEditorRenderer, PropertyValueType, UserTypePropertyDefinition } from "@omnia/fx-models";
|
2
2
|
export type UserTypeEditorProps = IPropertyEditorRenderer<UserTypePropertyDefinition> & {
|
3
3
|
"v-model": PropertyValueType<UserTypePropertyDefinition>;
|
4
4
|
};
|
5
|
-
declare const _default: {
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
}
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
setupSettings?: never;
|
52
|
-
editorSettings?: import("@omnia/fx-models").UserTypeEditorSettings;
|
53
|
-
}>, never>;
|
54
|
-
};
|
5
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<UserTypeEditorProps>) => {
|
6
|
+
$: import("vue").ComponentInternalInstance;
|
7
|
+
$data: {};
|
8
|
+
$props: {};
|
9
|
+
$attrs: {
|
10
|
+
[x: string]: unknown;
|
11
|
+
};
|
12
|
+
$refs: {
|
13
|
+
[x: string]: unknown;
|
14
|
+
};
|
15
|
+
$slots: Readonly<{
|
16
|
+
[name: string]: import("vue").Slot<any>;
|
17
|
+
}>;
|
18
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
19
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
20
|
+
$emit: (event: string, ...args: any[]) => void;
|
21
|
+
$el: any;
|
22
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
23
|
+
beforeCreate?: (() => void) | (() => void)[];
|
24
|
+
created?: (() => void) | (() => void)[];
|
25
|
+
beforeMount?: (() => void) | (() => void)[];
|
26
|
+
mounted?: (() => void) | (() => void)[];
|
27
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
28
|
+
updated?: (() => void) | (() => void)[];
|
29
|
+
activated?: (() => void) | (() => void)[];
|
30
|
+
deactivated?: (() => void) | (() => void)[];
|
31
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
32
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
33
|
+
destroyed?: (() => void) | (() => void)[];
|
34
|
+
unmounted?: (() => void) | (() => void)[];
|
35
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
36
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
37
|
+
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)[];
|
38
|
+
};
|
39
|
+
$forceUpdate: () => void;
|
40
|
+
$nextTick: typeof import("vue").nextTick;
|
41
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
42
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
43
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<UserTypeEditorProps> & {
|
44
|
+
"v-slots"?: {
|
45
|
+
default?: import("vue").Slot;
|
46
|
+
} & {};
|
47
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | keyof IPropertyEditorRenderer<UserTypePropertyDefinition>>;
|
48
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
49
|
+
[key: string]: any;
|
50
|
+
}>;
|
55
51
|
export default _default;
|
package/internal-do-not-import-from-here/ux/richtexteditor/extensions/HashTag/HashTagToolbar.d.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
import { ToolbarExtension } from "../../ToolbarExtension";
|
2
|
-
import { HashTagToolbarProperties, HashTagMenuBar, EditorHashTagMenuBar, IHashTagMenuBarDefinition,
|
2
|
+
import { HashTagToolbarProperties, HashTagMenuBar, EditorHashTagMenuBar, IHashTagMenuBarDefinition, Tag, PromotedTagOptions } from "../../../../models";
|
3
3
|
import { RichTextContentExtensionData } from "../../RichTextContentHelper";
|
4
|
+
import { Editor } from "@tiptap/vue-3";
|
4
5
|
export declare class HashTagMenuBarDefinition implements IHashTagMenuBarDefinition {
|
5
6
|
constructor();
|
6
7
|
_items: Array<Tag>;
|
@@ -21,7 +22,7 @@ export declare class HashTagMenuBarDefinition implements IHashTagMenuBarDefiniti
|
|
21
22
|
}
|
22
23
|
export default class HashTagToolbar extends ToolbarExtension implements HashTagToolbarProperties {
|
23
24
|
menubar: EditorHashTagMenuBar;
|
24
|
-
editor:
|
25
|
+
editor: Editor;
|
25
26
|
onContentChanged?: (content: string, extensionName?: string, data?: RichTextContentExtensionData, pushChange?: boolean) => void;
|
26
27
|
menuHandler: (menubar: IHashTagMenuBarDefinition) => void;
|
27
28
|
selectTag: (tag: Tag) => void;
|