@omnia/fx 8.0.57-dev → 8.0.58-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/stores/oxide/ComponentHostStore.d.ts +4 -4
- package/internal-do-not-import-from-here/stores/oxide/ScrollContainerStore.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +34 -46
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +194 -223
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +146 -175
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +51 -66
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +115 -14
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +44 -0
- package/internal-do-not-import-from-here/ux/oxide/form/Form.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/form/Form.d.ts +119 -0
- package/internal-do-not-import-from-here/ux/oxide/form/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/form/docs/SampleComponent.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/oxide/form/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/hostprovider/HostProvider.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/oxide/notification/Notification.css.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/oxide/notification/Notification.d.ts +196 -0
- package/internal-do-not-import-from-here/ux/oxide/notification/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/notification/docs/SampleComponent.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/oxide/notification/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.d.ts +127 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/docs/SampleComponent.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +21 -0
- package/package.json +2 -2
- /package/internal-do-not-import-from-here/ux/datetimezonepicker/docs/{DateTimeZonePickerExample.d.ts → SampleComponent.d.ts} +0 -0
@@ -0,0 +1,46 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): {
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
4
|
+
$data: {};
|
5
|
+
$props: Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, never>;
|
6
|
+
$attrs: {
|
7
|
+
[x: string]: unknown;
|
8
|
+
};
|
9
|
+
$refs: {
|
10
|
+
[x: string]: unknown;
|
11
|
+
};
|
12
|
+
$slots: Readonly<{
|
13
|
+
[name: string]: import("vue").Slot<any>;
|
14
|
+
}>;
|
15
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
16
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
17
|
+
$emit: (event: string, ...args: any[]) => void;
|
18
|
+
$el: any;
|
19
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
20
|
+
beforeCreate?: (() => void) | (() => void)[];
|
21
|
+
created?: (() => void) | (() => void)[];
|
22
|
+
beforeMount?: (() => void) | (() => void)[];
|
23
|
+
mounted?: (() => void) | (() => void)[];
|
24
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
25
|
+
updated?: (() => void) | (() => void)[];
|
26
|
+
activated?: (() => void) | (() => void)[];
|
27
|
+
deactivated?: (() => void) | (() => void)[];
|
28
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
29
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
30
|
+
destroyed?: (() => void) | (() => void)[];
|
31
|
+
unmounted?: (() => void) | (() => void)[];
|
32
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
33
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
34
|
+
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)[];
|
35
|
+
};
|
36
|
+
$forceUpdate: () => void;
|
37
|
+
$nextTick: typeof import("vue").nextTick;
|
38
|
+
$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;
|
39
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
40
|
+
__isFragment?: never;
|
41
|
+
__isTeleport?: never;
|
42
|
+
__isSuspense?: never;
|
43
|
+
} & 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 & {
|
44
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
45
|
+
};
|
46
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -5,8 +5,8 @@ declare const _default: {
|
|
5
5
|
$props: Partial<{}> & Omit<{
|
6
6
|
readonly host?: "admin" | "editor" | "docs";
|
7
7
|
readonly variant?: "section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section";
|
8
|
-
readonly componentHost?: "dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx";
|
9
|
-
readonly "component-host"?: "dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx";
|
8
|
+
readonly componentHost?: "dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx";
|
9
|
+
readonly "component-host"?: "dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx";
|
10
10
|
readonly force?: boolean;
|
11
11
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
12
12
|
force: {
|
@@ -20,10 +20,10 @@ declare const _default: {
|
|
20
20
|
type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section">;
|
21
21
|
};
|
22
22
|
"component-host": {
|
23
|
-
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
23
|
+
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
24
24
|
};
|
25
25
|
componentHost: {
|
26
|
-
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
26
|
+
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
27
27
|
};
|
28
28
|
host: {
|
29
29
|
type: import("vue").PropType<"admin" | "editor" | "docs">;
|
@@ -56,10 +56,10 @@ declare const _default: {
|
|
56
56
|
type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section">;
|
57
57
|
};
|
58
58
|
"component-host": {
|
59
|
-
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
59
|
+
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
60
60
|
};
|
61
61
|
componentHost: {
|
62
|
-
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
62
|
+
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
63
63
|
};
|
64
64
|
host: {
|
65
65
|
type: import("vue").PropType<"admin" | "editor" | "docs">;
|
@@ -100,10 +100,10 @@ declare const _default: {
|
|
100
100
|
type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section">;
|
101
101
|
};
|
102
102
|
"component-host": {
|
103
|
-
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
103
|
+
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
104
104
|
};
|
105
105
|
componentHost: {
|
106
|
-
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
106
|
+
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
107
107
|
};
|
108
108
|
host: {
|
109
109
|
type: import("vue").PropType<"admin" | "editor" | "docs">;
|
@@ -128,10 +128,10 @@ declare const _default: {
|
|
128
128
|
type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section">;
|
129
129
|
};
|
130
130
|
"component-host": {
|
131
|
-
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
131
|
+
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
132
132
|
};
|
133
133
|
componentHost: {
|
134
|
-
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
134
|
+
type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
135
135
|
};
|
136
136
|
host: {
|
137
137
|
type: import("vue").PropType<"admin" | "editor" | "docs">;
|
@@ -144,8 +144,8 @@ declare const _default: {
|
|
144
144
|
propsDefinition: Omit<Readonly<{} & {
|
145
145
|
host?: "admin" | "editor" | "docs";
|
146
146
|
variant?: "section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section";
|
147
|
-
componentHost?: "dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx";
|
148
|
-
"component-host"?: "dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx";
|
147
|
+
componentHost?: "dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx";
|
148
|
+
"component-host"?: "dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx";
|
149
149
|
force?: boolean;
|
150
150
|
}>, never>;
|
151
151
|
};
|
@@ -0,0 +1,196 @@
|
|
1
|
+
import { Func } from "@omnia/fx-models";
|
2
|
+
import { VNodeChild } from "vue";
|
3
|
+
declare const _default: {
|
4
|
+
new (...args: any[]): {
|
5
|
+
$: import("vue").ComponentInternalInstance;
|
6
|
+
$data: {};
|
7
|
+
$props: Partial<{
|
8
|
+
container?: any;
|
9
|
+
blueprint?: any;
|
10
|
+
colorSchemaType?: any;
|
11
|
+
blueprintType?: any;
|
12
|
+
colors?: any;
|
13
|
+
}> & Omit<{
|
14
|
+
readonly container?: any;
|
15
|
+
readonly blueprint?: any;
|
16
|
+
readonly colorSchemaType?: any;
|
17
|
+
readonly blueprintType?: any;
|
18
|
+
readonly colors?: any;
|
19
|
+
readonly value?: string;
|
20
|
+
readonly size?: "small" | "default" | "medium" | "large" | "x-large" | "x-small";
|
21
|
+
readonly "v-slots"?: {
|
22
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
23
|
+
} & {
|
24
|
+
prependAvatar?: Func<[VNodeChild]>;
|
25
|
+
appendAvatar?: Func<[VNodeChild]>;
|
26
|
+
};
|
27
|
+
readonly toned?: boolean;
|
28
|
+
"onClick:close"?: (e: MouseEvent) => any;
|
29
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
30
|
+
"v-slots": import("vue").Prop<{
|
31
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
32
|
+
} & {
|
33
|
+
prependAvatar?: Func<[VNodeChild]>;
|
34
|
+
appendAvatar?: Func<[VNodeChild]>;
|
35
|
+
}>;
|
36
|
+
value: {
|
37
|
+
type: import("vue").PropType<string>;
|
38
|
+
};
|
39
|
+
size: {
|
40
|
+
type: import("vue").PropType<"small" | "default" | "medium" | "large" | "x-large" | "x-small">;
|
41
|
+
};
|
42
|
+
toned: {
|
43
|
+
type: import("vue").PropType<boolean>;
|
44
|
+
};
|
45
|
+
colorSchemaType?: any;
|
46
|
+
container?: any;
|
47
|
+
colors?: any;
|
48
|
+
blueprintType?: any;
|
49
|
+
blueprint?: any;
|
50
|
+
}>> & {
|
51
|
+
"onClick:close"?: (e: MouseEvent) => any;
|
52
|
+
}, "container" | "blueprint" | "colorSchemaType" | "blueprintType" | "colors">;
|
53
|
+
$attrs: {
|
54
|
+
[x: string]: unknown;
|
55
|
+
};
|
56
|
+
$refs: {
|
57
|
+
[x: string]: unknown;
|
58
|
+
};
|
59
|
+
$slots: Readonly<{
|
60
|
+
[name: string]: import("vue").Slot<any>;
|
61
|
+
}>;
|
62
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
63
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
64
|
+
$emit: (event: "click:close", e: MouseEvent) => void;
|
65
|
+
$el: any;
|
66
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
67
|
+
"v-slots": import("vue").Prop<{
|
68
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
69
|
+
} & {
|
70
|
+
prependAvatar?: Func<[VNodeChild]>;
|
71
|
+
appendAvatar?: Func<[VNodeChild]>;
|
72
|
+
}>;
|
73
|
+
value: {
|
74
|
+
type: import("vue").PropType<string>;
|
75
|
+
};
|
76
|
+
size: {
|
77
|
+
type: import("vue").PropType<"small" | "default" | "medium" | "large" | "x-large" | "x-small">;
|
78
|
+
};
|
79
|
+
toned: {
|
80
|
+
type: import("vue").PropType<boolean>;
|
81
|
+
};
|
82
|
+
colorSchemaType?: any;
|
83
|
+
container?: any;
|
84
|
+
colors?: any;
|
85
|
+
blueprintType?: any;
|
86
|
+
blueprint?: any;
|
87
|
+
}>> & {
|
88
|
+
"onClick:close"?: (e: MouseEvent) => any;
|
89
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
90
|
+
"click:close": (e: MouseEvent) => true;
|
91
|
+
}, string, {
|
92
|
+
container?: any;
|
93
|
+
blueprint?: any;
|
94
|
+
colorSchemaType?: any;
|
95
|
+
blueprintType?: any;
|
96
|
+
colors?: any;
|
97
|
+
}, {}, string, {}> & {
|
98
|
+
beforeCreate?: (() => void) | (() => void)[];
|
99
|
+
created?: (() => void) | (() => void)[];
|
100
|
+
beforeMount?: (() => void) | (() => void)[];
|
101
|
+
mounted?: (() => void) | (() => void)[];
|
102
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
103
|
+
updated?: (() => void) | (() => void)[];
|
104
|
+
activated?: (() => void) | (() => void)[];
|
105
|
+
deactivated?: (() => void) | (() => void)[];
|
106
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
107
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
108
|
+
destroyed?: (() => void) | (() => void)[];
|
109
|
+
unmounted?: (() => void) | (() => void)[];
|
110
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
111
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
112
|
+
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)[];
|
113
|
+
};
|
114
|
+
$forceUpdate: () => void;
|
115
|
+
$nextTick: typeof import("vue").nextTick;
|
116
|
+
$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;
|
117
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
118
|
+
"v-slots": import("vue").Prop<{
|
119
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
120
|
+
} & {
|
121
|
+
prependAvatar?: Func<[VNodeChild]>;
|
122
|
+
appendAvatar?: Func<[VNodeChild]>;
|
123
|
+
}>;
|
124
|
+
value: {
|
125
|
+
type: import("vue").PropType<string>;
|
126
|
+
};
|
127
|
+
size: {
|
128
|
+
type: import("vue").PropType<"small" | "default" | "medium" | "large" | "x-large" | "x-small">;
|
129
|
+
};
|
130
|
+
toned: {
|
131
|
+
type: import("vue").PropType<boolean>;
|
132
|
+
};
|
133
|
+
colorSchemaType?: any;
|
134
|
+
container?: any;
|
135
|
+
colors?: any;
|
136
|
+
blueprintType?: any;
|
137
|
+
blueprint?: any;
|
138
|
+
}>> & {
|
139
|
+
"onClick:close"?: (e: MouseEvent) => any;
|
140
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
141
|
+
__isFragment?: never;
|
142
|
+
__isTeleport?: never;
|
143
|
+
__isSuspense?: never;
|
144
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
145
|
+
"v-slots": import("vue").Prop<{
|
146
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
147
|
+
} & {
|
148
|
+
prependAvatar?: Func<[VNodeChild]>;
|
149
|
+
appendAvatar?: Func<[VNodeChild]>;
|
150
|
+
}>;
|
151
|
+
value: {
|
152
|
+
type: import("vue").PropType<string>;
|
153
|
+
};
|
154
|
+
size: {
|
155
|
+
type: import("vue").PropType<"small" | "default" | "medium" | "large" | "x-large" | "x-small">;
|
156
|
+
};
|
157
|
+
toned: {
|
158
|
+
type: import("vue").PropType<boolean>;
|
159
|
+
};
|
160
|
+
colorSchemaType?: any;
|
161
|
+
container?: any;
|
162
|
+
colors?: any;
|
163
|
+
blueprintType?: any;
|
164
|
+
blueprint?: any;
|
165
|
+
}>> & {
|
166
|
+
"onClick:close"?: (e: MouseEvent) => any;
|
167
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
168
|
+
"click:close": (e: MouseEvent) => true;
|
169
|
+
}, string, {
|
170
|
+
container?: any;
|
171
|
+
blueprint?: any;
|
172
|
+
colorSchemaType?: any;
|
173
|
+
blueprintType?: any;
|
174
|
+
colors?: any;
|
175
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
176
|
+
propsDefinition: Omit<Readonly<{
|
177
|
+
container?: any;
|
178
|
+
blueprint?: any;
|
179
|
+
colorSchemaType?: any;
|
180
|
+
blueprintType?: any;
|
181
|
+
colors?: any;
|
182
|
+
} & {
|
183
|
+
value?: string;
|
184
|
+
size?: "small" | "default" | "medium" | "large" | "x-large" | "x-small";
|
185
|
+
"v-slots"?: {
|
186
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
187
|
+
} & {
|
188
|
+
prependAvatar?: Func<[VNodeChild]>;
|
189
|
+
appendAvatar?: Func<[VNodeChild]>;
|
190
|
+
};
|
191
|
+
toned?: boolean;
|
192
|
+
}>, "onClick:close"> & {
|
193
|
+
"onClick:close"?: (e: MouseEvent) => any;
|
194
|
+
};
|
195
|
+
};
|
196
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -0,0 +1,46 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): {
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
4
|
+
$data: {};
|
5
|
+
$props: Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, never>;
|
6
|
+
$attrs: {
|
7
|
+
[x: string]: unknown;
|
8
|
+
};
|
9
|
+
$refs: {
|
10
|
+
[x: string]: unknown;
|
11
|
+
};
|
12
|
+
$slots: Readonly<{
|
13
|
+
[name: string]: import("vue").Slot<any>;
|
14
|
+
}>;
|
15
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
16
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
17
|
+
$emit: (event: string, ...args: any[]) => void;
|
18
|
+
$el: any;
|
19
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
20
|
+
beforeCreate?: (() => void) | (() => void)[];
|
21
|
+
created?: (() => void) | (() => void)[];
|
22
|
+
beforeMount?: (() => void) | (() => void)[];
|
23
|
+
mounted?: (() => void) | (() => void)[];
|
24
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
25
|
+
updated?: (() => void) | (() => void)[];
|
26
|
+
activated?: (() => void) | (() => void)[];
|
27
|
+
deactivated?: (() => void) | (() => void)[];
|
28
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
29
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
30
|
+
destroyed?: (() => void) | (() => void)[];
|
31
|
+
unmounted?: (() => void) | (() => void)[];
|
32
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
33
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
34
|
+
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)[];
|
35
|
+
};
|
36
|
+
$forceUpdate: () => void;
|
37
|
+
$nextTick: typeof import("vue").nextTick;
|
38
|
+
$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;
|
39
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
40
|
+
__isFragment?: never;
|
41
|
+
__isTeleport?: never;
|
42
|
+
__isSuspense?: never;
|
43
|
+
} & 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 & {
|
44
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
45
|
+
};
|
46
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -0,0 +1,127 @@
|
|
1
|
+
import { OScrollTypesCombination } from "@omnia/fx-models";
|
2
|
+
declare const _default: {
|
3
|
+
new (...args: any[]): {
|
4
|
+
$: import("vue").ComponentInternalInstance;
|
5
|
+
$data: {};
|
6
|
+
$props: Partial<{}> & Omit<{
|
7
|
+
readonly scroll?: OScrollTypesCombination;
|
8
|
+
readonly class?: String | String[];
|
9
|
+
readonly id?: string;
|
10
|
+
readonly width?: string;
|
11
|
+
readonly height?: string;
|
12
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
13
|
+
scroll: {
|
14
|
+
type: import("vue").PropType<OScrollTypesCombination>;
|
15
|
+
};
|
16
|
+
width: {
|
17
|
+
type: import("vue").PropType<string>;
|
18
|
+
};
|
19
|
+
height: {
|
20
|
+
type: import("vue").PropType<string>;
|
21
|
+
};
|
22
|
+
id: {
|
23
|
+
type: import("vue").PropType<string>;
|
24
|
+
};
|
25
|
+
class: {
|
26
|
+
type: import("vue").PropType<String | String[]>;
|
27
|
+
required: boolean;
|
28
|
+
};
|
29
|
+
}>>, never>;
|
30
|
+
$attrs: {
|
31
|
+
[x: string]: unknown;
|
32
|
+
};
|
33
|
+
$refs: {
|
34
|
+
[x: string]: unknown;
|
35
|
+
};
|
36
|
+
$slots: Readonly<{
|
37
|
+
[name: string]: import("vue").Slot<any>;
|
38
|
+
}>;
|
39
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
40
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
41
|
+
$emit: (event: string, ...args: any[]) => void;
|
42
|
+
$el: any;
|
43
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
44
|
+
scroll: {
|
45
|
+
type: import("vue").PropType<OScrollTypesCombination>;
|
46
|
+
};
|
47
|
+
width: {
|
48
|
+
type: import("vue").PropType<string>;
|
49
|
+
};
|
50
|
+
height: {
|
51
|
+
type: import("vue").PropType<string>;
|
52
|
+
};
|
53
|
+
id: {
|
54
|
+
type: import("vue").PropType<string>;
|
55
|
+
};
|
56
|
+
class: {
|
57
|
+
type: import("vue").PropType<String | String[]>;
|
58
|
+
required: boolean;
|
59
|
+
};
|
60
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
61
|
+
beforeCreate?: (() => void) | (() => void)[];
|
62
|
+
created?: (() => void) | (() => void)[];
|
63
|
+
beforeMount?: (() => void) | (() => void)[];
|
64
|
+
mounted?: (() => void) | (() => void)[];
|
65
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
66
|
+
updated?: (() => void) | (() => void)[];
|
67
|
+
activated?: (() => void) | (() => void)[];
|
68
|
+
deactivated?: (() => void) | (() => void)[];
|
69
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
70
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
71
|
+
destroyed?: (() => void) | (() => void)[];
|
72
|
+
unmounted?: (() => void) | (() => void)[];
|
73
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
74
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
75
|
+
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)[];
|
76
|
+
};
|
77
|
+
$forceUpdate: () => void;
|
78
|
+
$nextTick: typeof import("vue").nextTick;
|
79
|
+
$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;
|
80
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
81
|
+
scroll: {
|
82
|
+
type: import("vue").PropType<OScrollTypesCombination>;
|
83
|
+
};
|
84
|
+
width: {
|
85
|
+
type: import("vue").PropType<string>;
|
86
|
+
};
|
87
|
+
height: {
|
88
|
+
type: import("vue").PropType<string>;
|
89
|
+
};
|
90
|
+
id: {
|
91
|
+
type: import("vue").PropType<string>;
|
92
|
+
};
|
93
|
+
class: {
|
94
|
+
type: import("vue").PropType<String | String[]>;
|
95
|
+
required: boolean;
|
96
|
+
};
|
97
|
+
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
98
|
+
__isFragment?: never;
|
99
|
+
__isTeleport?: never;
|
100
|
+
__isSuspense?: never;
|
101
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
102
|
+
scroll: {
|
103
|
+
type: import("vue").PropType<OScrollTypesCombination>;
|
104
|
+
};
|
105
|
+
width: {
|
106
|
+
type: import("vue").PropType<string>;
|
107
|
+
};
|
108
|
+
height: {
|
109
|
+
type: import("vue").PropType<string>;
|
110
|
+
};
|
111
|
+
id: {
|
112
|
+
type: import("vue").PropType<string>;
|
113
|
+
};
|
114
|
+
class: {
|
115
|
+
type: import("vue").PropType<String | String[]>;
|
116
|
+
required: boolean;
|
117
|
+
};
|
118
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
119
|
+
propsDefinition: Omit<Readonly<{} & {
|
120
|
+
scroll?: OScrollTypesCombination;
|
121
|
+
class?: String | String[];
|
122
|
+
id?: string;
|
123
|
+
width?: string;
|
124
|
+
height?: string;
|
125
|
+
}>, never>;
|
126
|
+
};
|
127
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -0,0 +1,46 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): {
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
4
|
+
$data: {};
|
5
|
+
$props: Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, never>;
|
6
|
+
$attrs: {
|
7
|
+
[x: string]: unknown;
|
8
|
+
};
|
9
|
+
$refs: {
|
10
|
+
[x: string]: unknown;
|
11
|
+
};
|
12
|
+
$slots: Readonly<{
|
13
|
+
[name: string]: import("vue").Slot<any>;
|
14
|
+
}>;
|
15
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
16
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
17
|
+
$emit: (event: string, ...args: any[]) => void;
|
18
|
+
$el: any;
|
19
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
20
|
+
beforeCreate?: (() => void) | (() => void)[];
|
21
|
+
created?: (() => void) | (() => void)[];
|
22
|
+
beforeMount?: (() => void) | (() => void)[];
|
23
|
+
mounted?: (() => void) | (() => void)[];
|
24
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
25
|
+
updated?: (() => void) | (() => void)[];
|
26
|
+
activated?: (() => void) | (() => void)[];
|
27
|
+
deactivated?: (() => void) | (() => void)[];
|
28
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
29
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
30
|
+
destroyed?: (() => void) | (() => void)[];
|
31
|
+
unmounted?: (() => void) | (() => void)[];
|
32
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
33
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
34
|
+
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)[];
|
35
|
+
};
|
36
|
+
$forceUpdate: () => void;
|
37
|
+
$nextTick: typeof import("vue").nextTick;
|
38
|
+
$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;
|
39
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
40
|
+
__isFragment?: never;
|
41
|
+
__isTeleport?: never;
|
42
|
+
__isSuspense?: never;
|
43
|
+
} & 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 & {
|
44
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
45
|
+
};
|
46
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|