@omnia/fx 8.0.87-dev → 8.0.88-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/DefineVueTypings.d.ts +8 -4
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +12 -7
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/ActionToolbar.d.ts +18 -18
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/DisplaySettingsToolbar.d.ts +18 -18
- package/internal-do-not-import-from-here/ux/editorchrome/stores/EditorChromeStore.d.ts +1 -15
- package/internal-do-not-import-from-here/ux/editorchrome/stores/EditorSettingsStore.d.ts +16 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +0 -9
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/SizeContainer.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/SizeContainer.d.ts +93 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/store/SizeContainerStore.d.ts +40 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/store/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +44 -4
- package/internal-do-not-import-from-here/ux/models/ActionToolbarStyles.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/multitextinput/MultiTextInput.d.ts +52 -651
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditorSettings.d.ts +10 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Code/Code.d.ts +15 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Code/CodeToolbar.d.ts +16 -9
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/CodeBlock/CodeBlock.d.ts +15 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/CodeBlock/CodeBlockToolbar.d.ts +16 -9
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Strike/Strike.d.ts +15 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Strike/StrikeToolbar.d.ts +16 -9
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Typography.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/use/UseContainerQuery.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/use/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/demo/DemoBlock.d.ts +15 -78
- package/internal-do-not-import-from-here/wctypings.d.ts +362 -102
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/IDisplaySettingsToolbar.d.ts +0 -24
- package/internal-do-not-import-from-here/ux/richtexteditor/IRichTextEditorSettings.d.ts +0 -6
- /package/internal-do-not-import-from-here/ux/{editorchrome/action_toolbar/IActionToolbar.d.ts → layoutcanvas/shared/layoutitemsrenderer/_old/LayoutTabRenderer.d.ts} +0 -0
@@ -6,6 +6,7 @@ declare const _default: {
|
|
6
6
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
7
7
|
} & {
|
8
8
|
item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
|
9
|
+
append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
|
9
10
|
}>;
|
10
11
|
headers: {
|
11
12
|
type: import("vue").PropType<DataTableHeader[]>;
|
@@ -76,6 +77,7 @@ declare const _default: {
|
|
76
77
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
77
78
|
} & {
|
78
79
|
item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
|
80
|
+
append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
|
79
81
|
}>;
|
80
82
|
headers: {
|
81
83
|
type: import("vue").PropType<DataTableHeader[]>;
|
@@ -149,6 +151,7 @@ declare const _default: {
|
|
149
151
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
150
152
|
} & {
|
151
153
|
item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
|
154
|
+
append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
|
152
155
|
}>;
|
153
156
|
headers: {
|
154
157
|
type: import("vue").PropType<DataTableHeader[]>;
|
@@ -219,6 +222,7 @@ declare const _default: {
|
|
219
222
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
220
223
|
} & {
|
221
224
|
item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
|
225
|
+
append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
|
222
226
|
}>;
|
223
227
|
headers: {
|
224
228
|
type: import("vue").PropType<DataTableHeader[]>;
|
@@ -294,6 +298,7 @@ declare const _default: {
|
|
294
298
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
295
299
|
} & {
|
296
300
|
item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
|
301
|
+
append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
|
297
302
|
};
|
298
303
|
variant?: "default" | "element" | "list" | "data-table";
|
299
304
|
itemTitle?: string | ((item: any) => VNodeChild);
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import "
|
2
|
-
import { GuidValue } from "../../models";
|
1
|
+
import { GuidValue } from "@omnia/fx/models";
|
3
2
|
import { RichTextEditorExtension, RichTextEditorExtensionRegistration, RichTextEditorExtensionSettings } from "../../models/RichTextEditorExtension";
|
3
|
+
import "./RichTextEditorSettings.css";
|
4
4
|
export interface RTFExtensionViewModel {
|
5
5
|
id: GuidValue;
|
6
6
|
instance: RichTextEditorExtension;
|
@@ -78,9 +78,11 @@ declare const _default: {
|
|
78
78
|
};
|
79
79
|
"show-editor-preview": {
|
80
80
|
type: import("vue").PropType<boolean>;
|
81
|
+
required: false;
|
81
82
|
};
|
82
83
|
showEditorPreview: {
|
83
84
|
type: import("vue").PropType<boolean>;
|
85
|
+
required: false;
|
84
86
|
};
|
85
87
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
86
88
|
"onUpdate:modelValue": {
|
@@ -151,9 +153,11 @@ declare const _default: {
|
|
151
153
|
};
|
152
154
|
"show-editor-preview": {
|
153
155
|
type: import("vue").PropType<boolean>;
|
156
|
+
required: false;
|
154
157
|
};
|
155
158
|
showEditorPreview: {
|
156
159
|
type: import("vue").PropType<boolean>;
|
160
|
+
required: false;
|
157
161
|
};
|
158
162
|
}>>, {}, true, {}, {}, {
|
159
163
|
P: {};
|
@@ -231,9 +235,11 @@ declare const _default: {
|
|
231
235
|
};
|
232
236
|
"show-editor-preview": {
|
233
237
|
type: import("vue").PropType<boolean>;
|
238
|
+
required: false;
|
234
239
|
};
|
235
240
|
showEditorPreview: {
|
236
241
|
type: import("vue").PropType<boolean>;
|
242
|
+
required: false;
|
237
243
|
};
|
238
244
|
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
239
245
|
__isFragment?: never;
|
@@ -308,9 +314,11 @@ declare const _default: {
|
|
308
314
|
};
|
309
315
|
"show-editor-preview": {
|
310
316
|
type: import("vue").PropType<boolean>;
|
317
|
+
required: false;
|
311
318
|
};
|
312
319
|
showEditorPreview: {
|
313
320
|
type: import("vue").PropType<boolean>;
|
321
|
+
required: false;
|
314
322
|
};
|
315
323
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
316
324
|
propsDefinition: Omit<Readonly<{} & {
|
@@ -1,4 +1,3 @@
|
|
1
|
-
import CodeToolbar from "./CodeToolbar";
|
2
1
|
import { Guid } from "../../../../models";
|
3
2
|
export declare const codeEditorExtension: () => {
|
4
3
|
id: Guid;
|
@@ -6,7 +5,21 @@ export declare const codeEditorExtension: () => {
|
|
6
5
|
getConfiguration(): {
|
7
6
|
nodes: import("@tiptap/core").Mark<import("./CodeNode").CodeOptions, any>[];
|
8
7
|
toolbarItems: {
|
9
|
-
toolbar:
|
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
|
+
};
|
10
23
|
configuration: {};
|
11
24
|
}[];
|
12
25
|
};
|
@@ -1,9 +1,16 @@
|
|
1
|
-
|
2
|
-
import {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
}
|
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;
|
package/internal-do-not-import-from-here/ux/richtexteditor/extensions/CodeBlock/CodeBlock.d.ts
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
import CodeBlockToolbar from "./CodeBlockToolbar";
|
2
1
|
import { Guid } from "../../../../models";
|
3
2
|
export declare const codeBlockEditorExtension: () => {
|
4
3
|
id: Guid;
|
@@ -6,7 +5,21 @@ export declare const codeBlockEditorExtension: () => {
|
|
6
5
|
getConfiguration(): {
|
7
6
|
nodes: import("@tiptap/core").Node<import("./CodeBlockNode").CodeBlockOptions, any>[];
|
8
7
|
toolbarItems: {
|
9
|
-
toolbar:
|
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
|
+
};
|
10
23
|
configuration: {};
|
11
24
|
}[];
|
12
25
|
};
|
@@ -1,9 +1,16 @@
|
|
1
|
-
|
2
|
-
import {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
}
|
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;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
import StrikeToolbar from "./StrikeToolbar";
|
2
1
|
import { Guid } from "../../../../models";
|
3
2
|
export declare const strikeEditorExtension: () => {
|
4
3
|
id: Guid;
|
@@ -6,7 +5,21 @@ export declare const strikeEditorExtension: () => {
|
|
6
5
|
getConfiguration(): {
|
7
6
|
nodes: import("@tiptap/core").Mark<import("./StrikeNode").StrikeOptions, any>[];
|
8
7
|
toolbarItems: {
|
9
|
-
toolbar:
|
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
|
+
};
|
10
23
|
configuration: {};
|
11
24
|
}[];
|
12
25
|
};
|
package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Strike/StrikeToolbar.d.ts
CHANGED
@@ -1,9 +1,16 @@
|
|
1
|
-
|
2
|
-
import {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
}
|
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;
|
@@ -36,6 +36,11 @@ declare function typographyTypeStyling(typographyType: TypographyTypes, size: Ty
|
|
36
36
|
fontWeight: number;
|
37
37
|
lineHeight: string;
|
38
38
|
textDecoration: string;
|
39
|
+
$nest: {
|
40
|
+
"@container (max-width: 800px)": {
|
41
|
+
fontSize: string;
|
42
|
+
};
|
43
|
+
};
|
39
44
|
};
|
40
45
|
mediumStyles: any;
|
41
46
|
smallStyles: any;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { DisplayBreakpointTypes } from "@omnia/fx-models";
|
2
|
+
import { NestedCSSProperties } from "typestyle/lib/types";
|
3
|
+
export declare function useContainerQuery(): {
|
4
|
+
custom: (styles: NestedCSSProperties, breakPoint: {
|
5
|
+
maxWidth?: number;
|
6
|
+
minWidth?: number;
|
7
|
+
}) => any;
|
8
|
+
device: (styles: NestedCSSProperties, breakpoint: DisplayBreakpointTypes) => any;
|
9
|
+
};
|
@@ -1,79 +1,16 @@
|
|
1
|
-
declare const _default:
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
}
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
} & {
|
14
|
-
|
15
|
-
}
|
16
|
-
model2?: T;
|
17
|
-
} & {
|
18
|
-
"onClick:me"?: (value: T) => any;
|
19
|
-
}) => {
|
20
|
-
$: import("vue").ComponentInternalInstance;
|
21
|
-
$data: {};
|
22
|
-
$props: {};
|
23
|
-
$attrs: {
|
24
|
-
[x: string]: unknown;
|
25
|
-
};
|
26
|
-
$refs: {
|
27
|
-
[x: string]: unknown;
|
28
|
-
};
|
29
|
-
$slots: Readonly<{
|
30
|
-
[name: string]: import("vue").Slot<any>;
|
31
|
-
}>;
|
32
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
33
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
34
|
-
$emit: (event: string, ...args: any[]) => void;
|
35
|
-
$el: any;
|
36
|
-
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
37
|
-
beforeCreate?: (() => void) | (() => void)[];
|
38
|
-
created?: (() => void) | (() => void)[];
|
39
|
-
beforeMount?: (() => void) | (() => void)[];
|
40
|
-
mounted?: (() => void) | (() => void)[];
|
41
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
42
|
-
updated?: (() => void) | (() => void)[];
|
43
|
-
activated?: (() => void) | (() => void)[];
|
44
|
-
deactivated?: (() => void) | (() => void)[];
|
45
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
46
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
47
|
-
destroyed?: (() => void) | (() => void)[];
|
48
|
-
unmounted?: (() => void) | (() => void)[];
|
49
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
50
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
51
|
-
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)[];
|
52
|
-
};
|
53
|
-
$forceUpdate: () => void;
|
54
|
-
$nextTick: typeof import("vue").nextTick;
|
55
|
-
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
56
|
-
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
57
|
-
propsDefinition: {
|
58
|
-
msg: T;
|
59
|
-
} & {
|
60
|
-
list?: T[];
|
61
|
-
} & {
|
62
|
-
"v-model"?: T;
|
63
|
-
} & {
|
64
|
-
"onUpdate:modelValue"?: (value: T) => void;
|
65
|
-
} & {
|
66
|
-
modelValue?: T;
|
67
|
-
} & {
|
68
|
-
"v-model:model2"?: T;
|
69
|
-
} & {
|
70
|
-
"onUpdate:model2"?: (value: T) => void;
|
71
|
-
} & {
|
72
|
-
model2?: T;
|
73
|
-
} & {
|
74
|
-
"onClick:me"?: (value: T) => any;
|
75
|
-
};
|
76
|
-
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
77
|
-
[key: string]: any;
|
78
|
-
}>;
|
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
|
+
};
|
79
16
|
export default _default;
|