@omnia/fx 8.0.38-dev → 8.0.39-dev

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityFeed.d.ts +4 -1
  2. package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.d.ts +4 -0
  3. package/internal-do-not-import-from-here/shared/services/ActivityService.d.ts +2 -2
  4. package/internal-do-not-import-from-here/ux/appprovisioning/approuteinput/AppRouteInput.d.ts +263 -48
  5. package/internal-do-not-import-from-here/ux/appprovisioning/approuteinput/IAppRouteInput.d.ts +0 -12
  6. package/internal-do-not-import-from-here/ux/hub/feed/HubFeed.css.d.ts +4 -0
  7. package/internal-do-not-import-from-here/ux/hub/feed/HubFeed.d.ts +1 -1
  8. package/internal-do-not-import-from-here/ux/hub/feed/components/CategoryItem.d.ts +11 -11
  9. package/internal-do-not-import-from-here/ux/hub/feed/components/FeedItem.css.d.ts +1 -0
  10. package/internal-do-not-import-from-here/ux/hub/feed/components/Header.d.ts +32 -1
  11. package/internal-do-not-import-from-here/ux/hub/feed/components/MeMenu.d.ts +46 -0
  12. package/internal-do-not-import-from-here/ux/hub/feed/components/{MeSenderItem.d.ts → MenuItem.d.ts} +43 -6
  13. package/internal-do-not-import-from-here/ux/hub/feed/components/Social.css.d.ts +0 -5
  14. package/internal-do-not-import-from-here/ux/hub/feed/stores/ActivityFeedStore.d.ts +22 -7
  15. package/internal-do-not-import-from-here/ux/hub/feed/stores/HubFeedChromeStore.d.ts +14 -6
  16. package/internal-do-not-import-from-here/ux/hub/feed/tabs/FeedTab.css.d.ts +2 -2
  17. package/internal-do-not-import-from-here/ux/hub/feed/tabs/FindTab.d.ts +46 -0
  18. package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +1 -1
  19. package/internal-do-not-import-from-here/ux/models/UrlInputStyles.d.ts +1 -15
  20. package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +28 -0
  21. package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +18 -0
  22. package/internal-do-not-import-from-here/ux/oxide/flex/Flex.d.ts +18 -0
  23. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +28 -0
  24. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +18 -0
  25. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +32 -0
  26. package/internal-do-not-import-from-here/ux/social/Reactions.css.d.ts +31 -0
  27. package/internal-do-not-import-from-here/ux/social/Reactions.d.ts +192 -0
  28. package/internal-do-not-import-from-here/ux/social/docs/ExampleComponents.d.ts +1 -0
  29. package/internal-do-not-import-from-here/ux/social/docs/SampleComponent.d.ts +46 -0
  30. package/internal-do-not-import-from-here/ux/social/docs/index.d.ts +1 -0
  31. package/internal-do-not-import-from-here/ux/urlinput/UrlInputLegacy.d.ts +245 -44
  32. package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +7 -0
  33. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/VelcronContentEditor.css.d.ts +1 -0
  34. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +9 -0
  35. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +1 -0
  36. package/internal-do-not-import-from-here/ux/velcron/docs/components/Video.d.ts +1 -0
  37. package/internal-do-not-import-from-here/ux/velcron/docs/components/index.d.ts +1 -0
  38. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Video.d.ts +65 -0
  39. package/internal-do-not-import-from-here/wctypings.d.ts +21 -0
  40. package/package.json +2 -2
  41. package/internal-do-not-import-from-here/ux/urlinput/IUrlInput.d.ts +0 -42
  42. /package/internal-do-not-import-from-here/ux/hub/feed/components/{MeSendersList.d.ts → FindMenu.d.ts} +0 -0
@@ -22,7 +22,12 @@ declare const _default: {
22
22
  readonly toned?: boolean;
23
23
  readonly location?: "left" | "right" | "bottom" | "top" | "end" | "start";
24
24
  readonly overrides?: object;
25
+ readonly customWidth?: number;
25
26
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
27
+ customWidth: {
28
+ type: import("vue").PropType<number>;
29
+ required: false;
30
+ };
26
31
  variant: {
27
32
  type: import("vue").PropType<"default" | "dialog" | "app" | "editor">;
28
33
  };
@@ -72,6 +77,10 @@ declare const _default: {
72
77
  $emit: (event: string, ...args: any[]) => void;
73
78
  $el: any;
74
79
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
80
+ customWidth: {
81
+ type: import("vue").PropType<number>;
82
+ required: false;
83
+ };
75
84
  variant: {
76
85
  type: import("vue").PropType<"default" | "dialog" | "app" | "editor">;
77
86
  };
@@ -133,6 +142,10 @@ declare const _default: {
133
142
  $nextTick: typeof import("vue").nextTick;
134
143
  $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;
135
144
  } & Readonly<import("vue").ExtractPropTypes<{
145
+ customWidth: {
146
+ type: import("vue").PropType<number>;
147
+ required: false;
148
+ };
136
149
  variant: {
137
150
  type: import("vue").PropType<"default" | "dialog" | "app" | "editor">;
138
151
  };
@@ -172,6 +185,10 @@ declare const _default: {
172
185
  __isTeleport?: never;
173
186
  __isSuspense?: never;
174
187
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
188
+ customWidth: {
189
+ type: import("vue").PropType<number>;
190
+ required: false;
191
+ };
175
192
  variant: {
176
193
  type: import("vue").PropType<"default" | "dialog" | "app" | "editor">;
177
194
  };
@@ -228,6 +245,7 @@ declare const _default: {
228
245
  toned?: boolean;
229
246
  location?: "left" | "right" | "bottom" | "top" | "end" | "start";
230
247
  overrides?: object;
248
+ customWidth?: number;
231
249
  }>, never>;
232
250
  };
233
251
  export default _default;
@@ -19,14 +19,23 @@ declare const _default: {
19
19
  readonly "onUpdate:modelValue"?: (value: number) => any;
20
20
  readonly "v-model"?: number;
21
21
  readonly modelValue?: number;
22
+ readonly grow?: boolean;
22
23
  readonly variant?: "navigation" | "default" | "header" | "toolbar" | "settings";
23
24
  readonly toned?: boolean;
24
25
  readonly stacked?: boolean;
25
26
  readonly scrolling?: string;
27
+ readonly alignTabs?: "center" | "end" | "start";
26
28
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
27
29
  scrolling: {
28
30
  type: import("vue").PropType<string>;
29
31
  };
32
+ grow: {
33
+ type: import("vue").PropType<boolean>;
34
+ };
35
+ alignTabs: {
36
+ type: import("vue").PropType<"center" | "end" | "start">;
37
+ required: false;
38
+ };
30
39
  vertical: {
31
40
  type: import("vue").PropType<boolean>;
32
41
  } & {
@@ -82,6 +91,13 @@ declare const _default: {
82
91
  scrolling: {
83
92
  type: import("vue").PropType<string>;
84
93
  };
94
+ grow: {
95
+ type: import("vue").PropType<boolean>;
96
+ };
97
+ alignTabs: {
98
+ type: import("vue").PropType<"center" | "end" | "start">;
99
+ required: false;
100
+ };
85
101
  vertical: {
86
102
  type: import("vue").PropType<boolean>;
87
103
  } & {
@@ -149,6 +165,13 @@ declare const _default: {
149
165
  scrolling: {
150
166
  type: import("vue").PropType<string>;
151
167
  };
168
+ grow: {
169
+ type: import("vue").PropType<boolean>;
170
+ };
171
+ alignTabs: {
172
+ type: import("vue").PropType<"center" | "end" | "start">;
173
+ required: false;
174
+ };
152
175
  vertical: {
153
176
  type: import("vue").PropType<boolean>;
154
177
  } & {
@@ -194,6 +217,13 @@ declare const _default: {
194
217
  scrolling: {
195
218
  type: import("vue").PropType<string>;
196
219
  };
220
+ grow: {
221
+ type: import("vue").PropType<boolean>;
222
+ };
223
+ alignTabs: {
224
+ type: import("vue").PropType<"center" | "end" | "start">;
225
+ required: false;
226
+ };
197
227
  vertical: {
198
228
  type: import("vue").PropType<boolean>;
199
229
  } & {
@@ -250,10 +280,12 @@ declare const _default: {
250
280
  "onUpdate:modelValue"?: (value: number) => any;
251
281
  "v-model"?: number;
252
282
  modelValue?: number;
283
+ grow?: boolean;
253
284
  variant?: "navigation" | "default" | "header" | "toolbar" | "settings";
254
285
  toned?: boolean;
255
286
  stacked?: boolean;
256
287
  scrolling?: string;
288
+ alignTabs?: "center" | "end" | "start";
257
289
  }>, never>;
258
290
  };
259
291
  export default _default;
@@ -0,0 +1,31 @@
1
+ import { ReactionType } from "@omnia/fx-models";
2
+ declare const _default: {
3
+ stackedStyle: (backgroundColor: string) => {
4
+ backgroundColor: string;
5
+ borderRadius: string;
6
+ };
7
+ reactionPickerWrapper: {
8
+ padding: string;
9
+ borderRadius: string;
10
+ };
11
+ socialReactionIconWrapper: (reactionType?: ReactionType, isCompactMode?: boolean, showCursorPointer?: boolean) => {
12
+ $nest: {
13
+ "&:hover": {
14
+ opacity: number;
15
+ cursor: string;
16
+ $nest: {
17
+ "& img": {
18
+ animationTimingFunction: string;
19
+ animationDuration: string;
20
+ animationName: string;
21
+ transform: string;
22
+ animationIterationCount: string;
23
+ animationPlayState: string;
24
+ };
25
+ };
26
+ };
27
+ };
28
+ };
29
+ socialReactionIcon: (isCompactMode?: boolean) => any;
30
+ };
31
+ export default _default;
@@ -0,0 +1,192 @@
1
+ import { ISocialReaction } from "@omnia/fx-models";
2
+ type ReactionVariants = "picker" | "viewer" | "default";
3
+ declare const _default: {
4
+ new (...args: any[]): {
5
+ $: import("vue").ComponentInternalInstance;
6
+ $data: {};
7
+ $props: Partial<{}> & Omit<{
8
+ "onUpdate:modelValue"?: ((value: ISocialReaction[]) => any) & ((value: ISocialReaction[]) => any);
9
+ readonly "v-model"?: ISocialReaction[];
10
+ readonly modelValue?: ISocialReaction[];
11
+ readonly "v-slots"?: {
12
+ default?: import("../DefineVueTypings").Slot<any[]>;
13
+ } & {
14
+ activator: () => JSX.Element;
15
+ };
16
+ readonly variant?: ReactionVariants;
17
+ readonly stacked?: boolean;
18
+ "onReaction:selected"?: (value: ISocialReaction) => any;
19
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
20
+ "v-slots": import("vue").Prop<{
21
+ default?: import("../DefineVueTypings").Slot<any[]>;
22
+ } & {
23
+ activator: () => JSX.Element;
24
+ }>;
25
+ stacked: {
26
+ type: import("vue").PropType<boolean>;
27
+ required: false;
28
+ };
29
+ variant: {
30
+ type: import("vue").PropType<ReactionVariants>;
31
+ required: false;
32
+ };
33
+ "onUpdate:modelValue": {
34
+ type: import("vue").PropType<(value: ISocialReaction[]) => any>;
35
+ };
36
+ "v-model": {
37
+ type: import("vue").PropType<ISocialReaction[]>;
38
+ required: false;
39
+ };
40
+ modelValue: {
41
+ type: import("vue").PropType<ISocialReaction[]>;
42
+ required: false;
43
+ };
44
+ }>> & {
45
+ "onUpdate:modelValue"?: (value: ISocialReaction[]) => any;
46
+ "onReaction:selected"?: (value: ISocialReaction) => any;
47
+ }, never>;
48
+ $attrs: {
49
+ [x: string]: unknown;
50
+ };
51
+ $refs: {
52
+ [x: string]: unknown;
53
+ };
54
+ $slots: Readonly<{
55
+ [name: string]: import("vue").Slot<any>;
56
+ }>;
57
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
58
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
59
+ $emit: ((event: "update:modelValue", value: ISocialReaction[]) => void) & ((event: "reaction:selected", value: ISocialReaction) => void);
60
+ $el: any;
61
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
62
+ "v-slots": import("vue").Prop<{
63
+ default?: import("../DefineVueTypings").Slot<any[]>;
64
+ } & {
65
+ activator: () => JSX.Element;
66
+ }>;
67
+ stacked: {
68
+ type: import("vue").PropType<boolean>;
69
+ required: false;
70
+ };
71
+ variant: {
72
+ type: import("vue").PropType<ReactionVariants>;
73
+ required: false;
74
+ };
75
+ "onUpdate:modelValue": {
76
+ type: import("vue").PropType<(value: ISocialReaction[]) => any>;
77
+ };
78
+ "v-model": {
79
+ type: import("vue").PropType<ISocialReaction[]>;
80
+ required: false;
81
+ };
82
+ modelValue: {
83
+ type: import("vue").PropType<ISocialReaction[]>;
84
+ required: false;
85
+ };
86
+ }>> & {
87
+ "onUpdate:modelValue"?: (value: ISocialReaction[]) => any;
88
+ "onReaction:selected"?: (value: ISocialReaction) => any;
89
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
90
+ "update:modelValue": (value: ISocialReaction[]) => true;
91
+ "reaction:selected": (value: ISocialReaction) => true;
92
+ }, string, {}, {}, string, {}> & {
93
+ beforeCreate?: (() => void) | (() => void)[];
94
+ created?: (() => void) | (() => void)[];
95
+ beforeMount?: (() => void) | (() => void)[];
96
+ mounted?: (() => void) | (() => void)[];
97
+ beforeUpdate?: (() => void) | (() => void)[];
98
+ updated?: (() => void) | (() => void)[];
99
+ activated?: (() => void) | (() => void)[];
100
+ deactivated?: (() => void) | (() => void)[];
101
+ beforeDestroy?: (() => void) | (() => void)[];
102
+ beforeUnmount?: (() => void) | (() => void)[];
103
+ destroyed?: (() => void) | (() => void)[];
104
+ unmounted?: (() => void) | (() => void)[];
105
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
106
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
107
+ 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)[];
108
+ };
109
+ $forceUpdate: () => void;
110
+ $nextTick: typeof import("vue").nextTick;
111
+ $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;
112
+ } & Readonly<import("vue").ExtractPropTypes<{
113
+ "v-slots": import("vue").Prop<{
114
+ default?: import("../DefineVueTypings").Slot<any[]>;
115
+ } & {
116
+ activator: () => JSX.Element;
117
+ }>;
118
+ stacked: {
119
+ type: import("vue").PropType<boolean>;
120
+ required: false;
121
+ };
122
+ variant: {
123
+ type: import("vue").PropType<ReactionVariants>;
124
+ required: false;
125
+ };
126
+ "onUpdate:modelValue": {
127
+ type: import("vue").PropType<(value: ISocialReaction[]) => any>;
128
+ };
129
+ "v-model": {
130
+ type: import("vue").PropType<ISocialReaction[]>;
131
+ required: false;
132
+ };
133
+ modelValue: {
134
+ type: import("vue").PropType<ISocialReaction[]>;
135
+ required: false;
136
+ };
137
+ }>> & {
138
+ "onUpdate:modelValue"?: (value: ISocialReaction[]) => any;
139
+ "onReaction:selected"?: (value: ISocialReaction) => 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
+ activator: () => JSX.Element;
149
+ }>;
150
+ stacked: {
151
+ type: import("vue").PropType<boolean>;
152
+ required: false;
153
+ };
154
+ variant: {
155
+ type: import("vue").PropType<ReactionVariants>;
156
+ required: false;
157
+ };
158
+ "onUpdate:modelValue": {
159
+ type: import("vue").PropType<(value: ISocialReaction[]) => any>;
160
+ };
161
+ "v-model": {
162
+ type: import("vue").PropType<ISocialReaction[]>;
163
+ required: false;
164
+ };
165
+ modelValue: {
166
+ type: import("vue").PropType<ISocialReaction[]>;
167
+ required: false;
168
+ };
169
+ }>> & {
170
+ "onUpdate:modelValue"?: (value: ISocialReaction[]) => any;
171
+ "onReaction:selected"?: (value: ISocialReaction) => any;
172
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
173
+ "update:modelValue": (value: ISocialReaction[]) => true;
174
+ "reaction:selected": (value: ISocialReaction) => true;
175
+ }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
176
+ propsDefinition: Omit<Readonly<{} & {
177
+ "onUpdate:modelValue"?: (value: ISocialReaction[]) => any;
178
+ "v-model"?: ISocialReaction[];
179
+ modelValue?: ISocialReaction[];
180
+ "v-slots"?: {
181
+ default?: import("../DefineVueTypings").Slot<any[]>;
182
+ } & {
183
+ activator: () => JSX.Element;
184
+ };
185
+ variant?: ReactionVariants;
186
+ stacked?: boolean;
187
+ }>, "onUpdate:modelValue" | "onReaction:selected"> & {
188
+ "onUpdate:modelValue"?: (value: ISocialReaction[]) => any;
189
+ "onReaction:selected"?: (value: ISocialReaction) => any;
190
+ };
191
+ };
192
+ 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;