@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.
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityFeed.d.ts +4 -1
- package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.d.ts +4 -0
- package/internal-do-not-import-from-here/shared/services/ActivityService.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/approuteinput/AppRouteInput.d.ts +263 -48
- package/internal-do-not-import-from-here/ux/appprovisioning/approuteinput/IAppRouteInput.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/hub/feed/HubFeed.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/hub/feed/HubFeed.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/hub/feed/components/CategoryItem.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/hub/feed/components/FeedItem.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/hub/feed/components/Header.d.ts +32 -1
- package/internal-do-not-import-from-here/ux/hub/feed/components/MeMenu.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/hub/feed/components/{MeSenderItem.d.ts → MenuItem.d.ts} +43 -6
- package/internal-do-not-import-from-here/ux/hub/feed/components/Social.css.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/hub/feed/stores/ActivityFeedStore.d.ts +22 -7
- package/internal-do-not-import-from-here/ux/hub/feed/stores/HubFeedChromeStore.d.ts +14 -6
- package/internal-do-not-import-from-here/ux/hub/feed/tabs/FeedTab.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/hub/feed/tabs/FindTab.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/models/UrlInputStyles.d.ts +1 -15
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/oxide/flex/Flex.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/social/Reactions.css.d.ts +31 -0
- package/internal-do-not-import-from-here/ux/social/Reactions.d.ts +192 -0
- package/internal-do-not-import-from-here/ux/social/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/social/docs/SampleComponent.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/social/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/urlinput/UrlInputLegacy.d.ts +245 -44
- package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/VelcronContentEditor.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/components/Video.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/components/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Video.d.ts +65 -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/urlinput/IUrlInput.d.ts +0 -42
- /package/internal-do-not-import-from-here/ux/hub/feed/components/{MeSendersList.d.ts → FindMenu.d.ts} +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
import { Activity, ActivityId, ActivityWithJson } from "./Activity";
|
2
2
|
import { ActivityRenderer, ActivityRendererId, ActivityRendererWithJson } from "./ActivityRenderer";
|
3
3
|
import { ActivitySenderId } from "./ActivitySender";
|
4
|
-
import { IdentityActivity, IdentityActivityWithJson, NewActivitiesBySenderBase } from "./IdentityActivity";
|
4
|
+
import { ActivityCategoryCount, IdentityActivity, IdentityActivityCategory, IdentityActivityWithJson, NewActivitiesBySenderBase } from "./IdentityActivity";
|
5
5
|
export interface ActivityFeed extends ActivityFeedBase {
|
6
6
|
renderers: {
|
7
7
|
[key: ActivityRendererId]: ActivityRenderer;
|
@@ -20,10 +20,13 @@ export interface ActivityFeedBase {
|
|
20
20
|
newActivities: Array<NewActivitiesBySenderBase>;
|
21
21
|
nextStartingFromId: ActivityId;
|
22
22
|
recentSenders: Array<ActivitySenderId>;
|
23
|
+
categories: Array<ActivityCategoryCount>;
|
23
24
|
}
|
24
25
|
export interface FeedQuery {
|
25
26
|
newerThenId?: ActivityId;
|
26
27
|
olderThenId?: ActivityId;
|
27
28
|
filterBySenderId?: ActivitySenderId;
|
29
|
+
filterByCategory?: IdentityActivityCategory;
|
28
30
|
includeRecentSenders?: number;
|
31
|
+
includeCategories?: boolean;
|
29
32
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ChannelId, ActivityFeed, ActivityId, ActivitySenderId, FeedActivityDefinition, SourceRelatedHubProperty, NotificationTeaser, ActivitySender, FeedQuery, TemporaryFileId, IdentityActivityBase } from "../models";
|
1
|
+
import { ChannelId, ActivityFeed, ActivityId, ActivitySenderId, FeedActivityDefinition, SourceRelatedHubProperty, NotificationTeaser, ActivitySender, FeedQuery, TemporaryFileId, IdentityActivityBase, ActivityCategoryCount } from "../models";
|
2
2
|
export declare const activityService: () => {
|
3
3
|
getFeed: (channelId: ChannelId, options?: FeedQuery) => Promise<ActivityFeed>;
|
4
4
|
createActivity: <TRenderState>(channelId: ChannelId, senderId: ActivitySenderId, activityDefinition: FeedActivityDefinition<TRenderState>, targeting: Array<Array<SourceRelatedHubProperty>>, notification: NotificationTeaser, expires?: Date, activityIdPlaceHolder?: TemporaryFileId) => Promise<void>;
|
@@ -19,5 +19,5 @@ export declare const activityService: () => {
|
|
19
19
|
takeOwnership: (tempFilesId: TemporaryFileId, subPath: string[]) => Promise<void>;
|
20
20
|
upload: (uniqueGuid: TemporaryFileId, files: File[]) => Promise<TemporaryFileId>;
|
21
21
|
};
|
22
|
-
updateIdentityActivity: (channelId: ChannelId, identityActivity: IdentityActivityBase) => Promise<
|
22
|
+
updateIdentityActivity: (channelId: ChannelId, identityActivity: IdentityActivityBase) => Promise<ActivityCategoryCount[]>;
|
23
23
|
};
|
package/internal-do-not-import-from-here/ux/appprovisioning/approuteinput/AppRouteInput.d.ts
CHANGED
@@ -1,49 +1,264 @@
|
|
1
1
|
import { GuidValue } from "@omnia/fx-models";
|
2
|
-
|
3
|
-
|
4
|
-
import
|
5
|
-
|
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
|
-
|
2
|
+
declare const _default: {
|
3
|
+
new (...args: any[]): {
|
4
|
+
$: import("vue").ComponentInternalInstance;
|
5
|
+
$data: {};
|
6
|
+
$props: Partial<{}> & Omit<{
|
7
|
+
readonly label?: string;
|
8
|
+
readonly alias?: string;
|
9
|
+
readonly ignoreFromAppId?: unknown;
|
10
|
+
readonly routePrefix?: string;
|
11
|
+
readonly "route-prefix"?: string;
|
12
|
+
readonly showStartWith?: boolean;
|
13
|
+
readonly "show-start-with"?: boolean;
|
14
|
+
readonly "ignore-from-app-id"?: unknown;
|
15
|
+
readonly tryoutPolicyMode?: boolean;
|
16
|
+
readonly "tryout-policy-mode"?: boolean;
|
17
|
+
readonly wrapperClass?: string;
|
18
|
+
readonly "wrapper-class"?: string;
|
19
|
+
onDoc$?: (description?: string) => any;
|
20
|
+
onAliasChanged?: (alias: string) => any;
|
21
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
22
|
+
"wrapper-class": {
|
23
|
+
type: import("vue").PropType<string>;
|
24
|
+
};
|
25
|
+
wrapperClass: {
|
26
|
+
type: import("vue").PropType<string>;
|
27
|
+
};
|
28
|
+
label: {
|
29
|
+
type: import("vue").PropType<string>;
|
30
|
+
} & {
|
31
|
+
type: import("vue").PropType<string>;
|
32
|
+
};
|
33
|
+
"tryout-policy-mode": {
|
34
|
+
type: import("vue").PropType<boolean>;
|
35
|
+
};
|
36
|
+
tryoutPolicyMode: {
|
37
|
+
type: import("vue").PropType<boolean>;
|
38
|
+
};
|
39
|
+
"ignore-from-app-id": {
|
40
|
+
type: import("vue").PropType<GuidValue>;
|
41
|
+
};
|
42
|
+
ignoreFromAppId: {
|
43
|
+
type: import("vue").PropType<GuidValue>;
|
44
|
+
};
|
45
|
+
"show-start-with": {
|
46
|
+
type: import("vue").PropType<boolean>;
|
47
|
+
};
|
48
|
+
showStartWith: {
|
49
|
+
type: import("vue").PropType<boolean>;
|
50
|
+
};
|
51
|
+
"route-prefix": {
|
52
|
+
type: import("vue").PropType<string>;
|
53
|
+
};
|
54
|
+
routePrefix: {
|
55
|
+
type: import("vue").PropType<string>;
|
56
|
+
};
|
57
|
+
alias: {
|
58
|
+
type: import("vue").PropType<string>;
|
59
|
+
} & {
|
60
|
+
type: import("vue").PropType<string>;
|
61
|
+
};
|
62
|
+
}>> & {
|
63
|
+
onDoc$?: (description?: string) => any;
|
64
|
+
onAliasChanged?: (alias: string) => any;
|
65
|
+
}, never>;
|
66
|
+
$attrs: {
|
67
|
+
[x: string]: unknown;
|
68
|
+
};
|
69
|
+
$refs: {
|
70
|
+
[x: string]: unknown;
|
71
|
+
};
|
72
|
+
$slots: Readonly<{
|
73
|
+
[name: string]: import("vue").Slot<any>;
|
74
|
+
}>;
|
75
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
76
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
77
|
+
$emit: ((event: "doc$", description?: string) => void) & ((event: "aliasChanged", alias: string) => void);
|
78
|
+
$el: any;
|
79
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
80
|
+
"wrapper-class": {
|
81
|
+
type: import("vue").PropType<string>;
|
82
|
+
};
|
83
|
+
wrapperClass: {
|
84
|
+
type: import("vue").PropType<string>;
|
85
|
+
};
|
86
|
+
label: {
|
87
|
+
type: import("vue").PropType<string>;
|
88
|
+
} & {
|
89
|
+
type: import("vue").PropType<string>;
|
90
|
+
};
|
91
|
+
"tryout-policy-mode": {
|
92
|
+
type: import("vue").PropType<boolean>;
|
93
|
+
};
|
94
|
+
tryoutPolicyMode: {
|
95
|
+
type: import("vue").PropType<boolean>;
|
96
|
+
};
|
97
|
+
"ignore-from-app-id": {
|
98
|
+
type: import("vue").PropType<GuidValue>;
|
99
|
+
};
|
100
|
+
ignoreFromAppId: {
|
101
|
+
type: import("vue").PropType<GuidValue>;
|
102
|
+
};
|
103
|
+
"show-start-with": {
|
104
|
+
type: import("vue").PropType<boolean>;
|
105
|
+
};
|
106
|
+
showStartWith: {
|
107
|
+
type: import("vue").PropType<boolean>;
|
108
|
+
};
|
109
|
+
"route-prefix": {
|
110
|
+
type: import("vue").PropType<string>;
|
111
|
+
};
|
112
|
+
routePrefix: {
|
113
|
+
type: import("vue").PropType<string>;
|
114
|
+
};
|
115
|
+
alias: {
|
116
|
+
type: import("vue").PropType<string>;
|
117
|
+
} & {
|
118
|
+
type: import("vue").PropType<string>;
|
119
|
+
};
|
120
|
+
}>> & {
|
121
|
+
onDoc$?: (description?: string) => any;
|
122
|
+
onAliasChanged?: (alias: string) => any;
|
123
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
124
|
+
aliasChanged: (alias: string) => void;
|
125
|
+
doc$(description?: string): {
|
126
|
+
aliasChanged: (alias: string) => void;
|
127
|
+
};
|
128
|
+
}, string, {}, {}, string, {}> & {
|
129
|
+
beforeCreate?: (() => void) | (() => void)[];
|
130
|
+
created?: (() => void) | (() => void)[];
|
131
|
+
beforeMount?: (() => void) | (() => void)[];
|
132
|
+
mounted?: (() => void) | (() => void)[];
|
133
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
134
|
+
updated?: (() => void) | (() => void)[];
|
135
|
+
activated?: (() => void) | (() => void)[];
|
136
|
+
deactivated?: (() => void) | (() => void)[];
|
137
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
138
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
139
|
+
destroyed?: (() => void) | (() => void)[];
|
140
|
+
unmounted?: (() => void) | (() => void)[];
|
141
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
142
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
143
|
+
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)[];
|
144
|
+
};
|
145
|
+
$forceUpdate: () => void;
|
146
|
+
$nextTick: typeof import("vue").nextTick;
|
147
|
+
$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;
|
148
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
149
|
+
"wrapper-class": {
|
150
|
+
type: import("vue").PropType<string>;
|
151
|
+
};
|
152
|
+
wrapperClass: {
|
153
|
+
type: import("vue").PropType<string>;
|
154
|
+
};
|
155
|
+
label: {
|
156
|
+
type: import("vue").PropType<string>;
|
157
|
+
} & {
|
158
|
+
type: import("vue").PropType<string>;
|
159
|
+
};
|
160
|
+
"tryout-policy-mode": {
|
161
|
+
type: import("vue").PropType<boolean>;
|
162
|
+
};
|
163
|
+
tryoutPolicyMode: {
|
164
|
+
type: import("vue").PropType<boolean>;
|
165
|
+
};
|
166
|
+
"ignore-from-app-id": {
|
167
|
+
type: import("vue").PropType<GuidValue>;
|
168
|
+
};
|
169
|
+
ignoreFromAppId: {
|
170
|
+
type: import("vue").PropType<GuidValue>;
|
171
|
+
};
|
172
|
+
"show-start-with": {
|
173
|
+
type: import("vue").PropType<boolean>;
|
174
|
+
};
|
175
|
+
showStartWith: {
|
176
|
+
type: import("vue").PropType<boolean>;
|
177
|
+
};
|
178
|
+
"route-prefix": {
|
179
|
+
type: import("vue").PropType<string>;
|
180
|
+
};
|
181
|
+
routePrefix: {
|
182
|
+
type: import("vue").PropType<string>;
|
183
|
+
};
|
184
|
+
alias: {
|
185
|
+
type: import("vue").PropType<string>;
|
186
|
+
} & {
|
187
|
+
type: import("vue").PropType<string>;
|
188
|
+
};
|
189
|
+
}>> & {
|
190
|
+
onDoc$?: (description?: string) => any;
|
191
|
+
onAliasChanged?: (alias: string) => any;
|
192
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
193
|
+
__isFragment?: never;
|
194
|
+
__isTeleport?: never;
|
195
|
+
__isSuspense?: never;
|
196
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
197
|
+
"wrapper-class": {
|
198
|
+
type: import("vue").PropType<string>;
|
199
|
+
};
|
200
|
+
wrapperClass: {
|
201
|
+
type: import("vue").PropType<string>;
|
202
|
+
};
|
203
|
+
label: {
|
204
|
+
type: import("vue").PropType<string>;
|
205
|
+
} & {
|
206
|
+
type: import("vue").PropType<string>;
|
207
|
+
};
|
208
|
+
"tryout-policy-mode": {
|
209
|
+
type: import("vue").PropType<boolean>;
|
210
|
+
};
|
211
|
+
tryoutPolicyMode: {
|
212
|
+
type: import("vue").PropType<boolean>;
|
213
|
+
};
|
214
|
+
"ignore-from-app-id": {
|
215
|
+
type: import("vue").PropType<GuidValue>;
|
216
|
+
};
|
217
|
+
ignoreFromAppId: {
|
218
|
+
type: import("vue").PropType<GuidValue>;
|
219
|
+
};
|
220
|
+
"show-start-with": {
|
221
|
+
type: import("vue").PropType<boolean>;
|
222
|
+
};
|
223
|
+
showStartWith: {
|
224
|
+
type: import("vue").PropType<boolean>;
|
225
|
+
};
|
226
|
+
"route-prefix": {
|
227
|
+
type: import("vue").PropType<string>;
|
228
|
+
};
|
229
|
+
routePrefix: {
|
230
|
+
type: import("vue").PropType<string>;
|
231
|
+
};
|
232
|
+
alias: {
|
233
|
+
type: import("vue").PropType<string>;
|
234
|
+
} & {
|
235
|
+
type: import("vue").PropType<string>;
|
236
|
+
};
|
237
|
+
}>> & {
|
238
|
+
onDoc$?: (description?: string) => any;
|
239
|
+
onAliasChanged?: (alias: string) => any;
|
240
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
241
|
+
aliasChanged: (alias: string) => void;
|
242
|
+
doc$(description?: string): {
|
243
|
+
aliasChanged: (alias: string) => void;
|
244
|
+
};
|
245
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
246
|
+
propsDefinition: Omit<Readonly<{} & {
|
247
|
+
label?: string;
|
248
|
+
alias?: string;
|
249
|
+
ignoreFromAppId?: unknown;
|
250
|
+
routePrefix?: string;
|
251
|
+
"route-prefix"?: string;
|
252
|
+
showStartWith?: boolean;
|
253
|
+
"show-start-with"?: boolean;
|
254
|
+
"ignore-from-app-id"?: unknown;
|
255
|
+
tryoutPolicyMode?: boolean;
|
256
|
+
"tryout-policy-mode"?: boolean;
|
257
|
+
wrapperClass?: string;
|
258
|
+
"wrapper-class"?: string;
|
259
|
+
}>, "onDoc$" | "onAliasChanged"> & {
|
260
|
+
onDoc$?: (description?: string) => any;
|
261
|
+
onAliasChanged?: (alias: string) => any;
|
262
|
+
};
|
263
|
+
};
|
264
|
+
export default _default;
|
package/internal-do-not-import-from-here/ux/appprovisioning/approuteinput/IAppRouteInput.d.ts
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
import { GuidValue } from "../../../models";
|
2
|
-
import { TsxAllowUnknowProperties } from "../../TsxAllowUnknowProperties";
|
3
2
|
export interface IAppRouteInput {
|
4
3
|
/**
|
5
4
|
* Initial alias
|
@@ -25,14 +24,3 @@ export interface IAppRouteInput {
|
|
25
24
|
wrapperClass?: string;
|
26
25
|
tryoutPolicyMode?: boolean;
|
27
26
|
}
|
28
|
-
declare global {
|
29
|
-
namespace JSX {
|
30
|
-
interface Element {
|
31
|
-
}
|
32
|
-
interface ElementClass {
|
33
|
-
}
|
34
|
-
interface IntrinsicElements {
|
35
|
-
"omfx-app-route-input": TsxAllowUnknowProperties<IAppRouteInput>;
|
36
|
-
}
|
37
|
-
}
|
38
|
-
}
|
@@ -1,15 +1,15 @@
|
|
1
|
-
import {
|
1
|
+
import { ActivityCategoryCount } from "@omnia/fx-models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): {
|
4
4
|
$: import("vue").ComponentInternalInstance;
|
5
5
|
$data: {};
|
6
6
|
$props: Partial<{}> & Omit<{
|
7
|
-
readonly category?:
|
7
|
+
readonly category?: ActivityCategoryCount;
|
8
8
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
9
9
|
category: {
|
10
|
-
type: import("vue").PropType<
|
10
|
+
type: import("vue").PropType<ActivityCategoryCount>;
|
11
11
|
} & {
|
12
|
-
type: import("vue").PropType<
|
12
|
+
type: import("vue").PropType<ActivityCategoryCount>;
|
13
13
|
};
|
14
14
|
}>>, never>;
|
15
15
|
$attrs: {
|
@@ -27,9 +27,9 @@ declare const _default: {
|
|
27
27
|
$el: any;
|
28
28
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
29
29
|
category: {
|
30
|
-
type: import("vue").PropType<
|
30
|
+
type: import("vue").PropType<ActivityCategoryCount>;
|
31
31
|
} & {
|
32
|
-
type: import("vue").PropType<
|
32
|
+
type: import("vue").PropType<ActivityCategoryCount>;
|
33
33
|
};
|
34
34
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
35
35
|
beforeCreate?: (() => void) | (() => void)[];
|
@@ -53,9 +53,9 @@ declare const _default: {
|
|
53
53
|
$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;
|
54
54
|
} & Readonly<import("vue").ExtractPropTypes<{
|
55
55
|
category: {
|
56
|
-
type: import("vue").PropType<
|
56
|
+
type: import("vue").PropType<ActivityCategoryCount>;
|
57
57
|
} & {
|
58
|
-
type: import("vue").PropType<
|
58
|
+
type: import("vue").PropType<ActivityCategoryCount>;
|
59
59
|
};
|
60
60
|
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
61
61
|
__isFragment?: never;
|
@@ -63,13 +63,13 @@ declare const _default: {
|
|
63
63
|
__isSuspense?: never;
|
64
64
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
65
65
|
category: {
|
66
|
-
type: import("vue").PropType<
|
66
|
+
type: import("vue").PropType<ActivityCategoryCount>;
|
67
67
|
} & {
|
68
|
-
type: import("vue").PropType<
|
68
|
+
type: import("vue").PropType<ActivityCategoryCount>;
|
69
69
|
};
|
70
70
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
71
71
|
propsDefinition: Omit<Readonly<{} & {
|
72
|
-
category?:
|
72
|
+
category?: ActivityCategoryCount;
|
73
73
|
}>, never>;
|
74
74
|
};
|
75
75
|
export default _default;
|
@@ -6,7 +6,17 @@ declare const _default: {
|
|
6
6
|
$props: Partial<{}> & Omit<{
|
7
7
|
readonly channelId: ChannelId;
|
8
8
|
readonly identityActivity: IdentityActivity<object, object>;
|
9
|
+
readonly "v-slots"?: {
|
10
|
+
default?: import("../../../DefineVueTypings").Slot<any[]>;
|
11
|
+
} & {
|
12
|
+
categoryRenderer: () => JSX.Element;
|
13
|
+
};
|
9
14
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
15
|
+
"v-slots": import("vue").Prop<{
|
16
|
+
default?: import("../../../DefineVueTypings").Slot<any[]>;
|
17
|
+
} & {
|
18
|
+
categoryRenderer: () => JSX.Element;
|
19
|
+
}>;
|
10
20
|
channelId: {
|
11
21
|
type: import("vue").PropType<ChannelId>;
|
12
22
|
required: true;
|
@@ -30,6 +40,11 @@ declare const _default: {
|
|
30
40
|
$emit: (event: string, ...args: any[]) => void;
|
31
41
|
$el: any;
|
32
42
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
43
|
+
"v-slots": import("vue").Prop<{
|
44
|
+
default?: import("../../../DefineVueTypings").Slot<any[]>;
|
45
|
+
} & {
|
46
|
+
categoryRenderer: () => JSX.Element;
|
47
|
+
}>;
|
33
48
|
channelId: {
|
34
49
|
type: import("vue").PropType<ChannelId>;
|
35
50
|
required: true;
|
@@ -59,6 +74,11 @@ declare const _default: {
|
|
59
74
|
$nextTick: typeof import("vue").nextTick;
|
60
75
|
$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;
|
61
76
|
} & Readonly<import("vue").ExtractPropTypes<{
|
77
|
+
"v-slots": import("vue").Prop<{
|
78
|
+
default?: import("../../../DefineVueTypings").Slot<any[]>;
|
79
|
+
} & {
|
80
|
+
categoryRenderer: () => JSX.Element;
|
81
|
+
}>;
|
62
82
|
channelId: {
|
63
83
|
type: import("vue").PropType<ChannelId>;
|
64
84
|
required: true;
|
@@ -72,6 +92,11 @@ declare const _default: {
|
|
72
92
|
__isTeleport?: never;
|
73
93
|
__isSuspense?: never;
|
74
94
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
95
|
+
"v-slots": import("vue").Prop<{
|
96
|
+
default?: import("../../../DefineVueTypings").Slot<any[]>;
|
97
|
+
} & {
|
98
|
+
categoryRenderer: () => JSX.Element;
|
99
|
+
}>;
|
75
100
|
channelId: {
|
76
101
|
type: import("vue").PropType<ChannelId>;
|
77
102
|
required: true;
|
@@ -84,6 +109,12 @@ declare const _default: {
|
|
84
109
|
propsDefinition: Omit<Readonly<{
|
85
110
|
channelId: ChannelId;
|
86
111
|
identityActivity: IdentityActivity<object, object>;
|
87
|
-
} & {
|
112
|
+
} & {
|
113
|
+
"v-slots"?: {
|
114
|
+
default?: import("../../../DefineVueTypings").Slot<any[]>;
|
115
|
+
} & {
|
116
|
+
categoryRenderer: () => JSX.Element;
|
117
|
+
};
|
118
|
+
}>, never>;
|
88
119
|
};
|
89
120
|
export default _default;
|
@@ -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;
|