@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
package/internal-do-not-import-from-here/ux/hub/feed/components/{MeSenderItem.d.ts → MenuItem.d.ts}
RENAMED
@@ -9,8 +9,10 @@ declare const _default: {
|
|
9
9
|
} & {
|
10
10
|
avatar?: () => JSX.Element;
|
11
11
|
};
|
12
|
+
readonly selected?: boolean;
|
12
13
|
readonly notificationCount?: number;
|
13
14
|
readonly "notification-count"?: number;
|
15
|
+
"onItem:selected"?: () => any;
|
14
16
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
15
17
|
"v-slots": import("vue").Prop<{
|
16
18
|
default?: import("../../../DefineVueTypings").Slot<any[]>;
|
@@ -23,12 +25,19 @@ declare const _default: {
|
|
23
25
|
notificationCount: {
|
24
26
|
type: import("vue").PropType<number>;
|
25
27
|
};
|
28
|
+
selected: {
|
29
|
+
type: import("vue").PropType<boolean>;
|
30
|
+
} & {
|
31
|
+
type: import("vue").PropType<boolean>;
|
32
|
+
};
|
26
33
|
title: {
|
27
34
|
type: import("vue").PropType<string>;
|
28
35
|
} & {
|
29
36
|
type: import("vue").PropType<string>;
|
30
37
|
};
|
31
|
-
}
|
38
|
+
}>> & {
|
39
|
+
"onItem:selected"?: () => any;
|
40
|
+
}, never>;
|
32
41
|
$attrs: {
|
33
42
|
[x: string]: unknown;
|
34
43
|
};
|
@@ -40,7 +49,7 @@ declare const _default: {
|
|
40
49
|
}>;
|
41
50
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
42
51
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
43
|
-
$emit: (event:
|
52
|
+
$emit: (event: "item:selected") => void;
|
44
53
|
$el: any;
|
45
54
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
46
55
|
"v-slots": import("vue").Prop<{
|
@@ -54,12 +63,21 @@ declare const _default: {
|
|
54
63
|
notificationCount: {
|
55
64
|
type: import("vue").PropType<number>;
|
56
65
|
};
|
66
|
+
selected: {
|
67
|
+
type: import("vue").PropType<boolean>;
|
68
|
+
} & {
|
69
|
+
type: import("vue").PropType<boolean>;
|
70
|
+
};
|
57
71
|
title: {
|
58
72
|
type: import("vue").PropType<string>;
|
59
73
|
} & {
|
60
74
|
type: import("vue").PropType<string>;
|
61
75
|
};
|
62
|
-
}
|
76
|
+
}>> & {
|
77
|
+
"onItem:selected"?: () => any;
|
78
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
79
|
+
"item:selected": () => true;
|
80
|
+
}, string, {}, {}, string, {}> & {
|
63
81
|
beforeCreate?: (() => void) | (() => void)[];
|
64
82
|
created?: (() => void) | (() => void)[];
|
65
83
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -91,12 +109,19 @@ declare const _default: {
|
|
91
109
|
notificationCount: {
|
92
110
|
type: import("vue").PropType<number>;
|
93
111
|
};
|
112
|
+
selected: {
|
113
|
+
type: import("vue").PropType<boolean>;
|
114
|
+
} & {
|
115
|
+
type: import("vue").PropType<boolean>;
|
116
|
+
};
|
94
117
|
title: {
|
95
118
|
type: import("vue").PropType<string>;
|
96
119
|
} & {
|
97
120
|
type: import("vue").PropType<string>;
|
98
121
|
};
|
99
|
-
}>> &
|
122
|
+
}>> & {
|
123
|
+
"onItem:selected"?: () => any;
|
124
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
100
125
|
__isFragment?: never;
|
101
126
|
__isTeleport?: never;
|
102
127
|
__isSuspense?: never;
|
@@ -112,12 +137,21 @@ declare const _default: {
|
|
112
137
|
notificationCount: {
|
113
138
|
type: import("vue").PropType<number>;
|
114
139
|
};
|
140
|
+
selected: {
|
141
|
+
type: import("vue").PropType<boolean>;
|
142
|
+
} & {
|
143
|
+
type: import("vue").PropType<boolean>;
|
144
|
+
};
|
115
145
|
title: {
|
116
146
|
type: import("vue").PropType<string>;
|
117
147
|
} & {
|
118
148
|
type: import("vue").PropType<string>;
|
119
149
|
};
|
120
|
-
}
|
150
|
+
}>> & {
|
151
|
+
"onItem:selected"?: () => any;
|
152
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
153
|
+
"item:selected": () => true;
|
154
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
121
155
|
propsDefinition: Omit<Readonly<{} & {
|
122
156
|
title?: string;
|
123
157
|
"v-slots"?: {
|
@@ -125,8 +159,11 @@ declare const _default: {
|
|
125
159
|
} & {
|
126
160
|
avatar?: () => JSX.Element;
|
127
161
|
};
|
162
|
+
selected?: boolean;
|
128
163
|
notificationCount?: number;
|
129
164
|
"notification-count"?: number;
|
130
|
-
}>,
|
165
|
+
}>, "onItem:selected"> & {
|
166
|
+
"onItem:selected"?: () => any;
|
167
|
+
};
|
131
168
|
};
|
132
169
|
export default _default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Activity, ActivityId, ActivityRenderer, ActivityRendererId, ActivitySender, ActivitySenderId, ChannelId, FeedActivityDefinition, Guid, IdentityActivity, NewActivitiesBySender, NotificationTeaser, RealtimeChannel, RealtimeData, SourceRelatedHubProperty, TemporaryFileId, FeedQuery, IdentityActivityBase, IdentityActivityCategory } from "@omnia/fx-models";
|
1
|
+
import { Activity, ActivityId, ActivityRenderer, ActivityRendererId, ActivitySender, ActivitySenderId, ChannelId, FeedActivityDefinition, Guid, IdentityActivity, NewActivitiesBySender, NotificationTeaser, RealtimeChannel, RealtimeData, SourceRelatedHubProperty, TemporaryFileId, FeedQuery, IdentityActivityBase, ActivityCategoryCount, IdentityActivityCategory } from "@omnia/fx-models";
|
2
2
|
export declare const useActivityFeedStore: () => {
|
3
3
|
state: {
|
4
4
|
selectedActivity: Activity<object>;
|
@@ -8,8 +8,12 @@ export declare const useActivityFeedStore: () => {
|
|
8
8
|
activitiesBySender: {
|
9
9
|
[key: ActivitySenderId]: IdentityActivity<object, object>[];
|
10
10
|
};
|
11
|
+
activitiesByCategory: {
|
12
|
+
[key: number]: IdentityActivity<object, object>[];
|
13
|
+
};
|
11
14
|
senderFilter: ActivitySender;
|
12
|
-
categoryFilter:
|
15
|
+
categoryFilter: ActivityCategoryCount;
|
16
|
+
categories: ActivityCategoryCount[];
|
13
17
|
renderers: {
|
14
18
|
[key: ActivityRendererId]: ActivityRenderer;
|
15
19
|
};
|
@@ -34,8 +38,12 @@ export declare const useActivityFeedStore: () => {
|
|
34
38
|
onMutatedActivitiesBySender: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
35
39
|
[key: ActivitySenderId]: IdentityActivity<object, object>[];
|
36
40
|
}>;
|
41
|
+
onMutatedActivitiesByCategory: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
42
|
+
[key: number]: IdentityActivity<object, object>[];
|
43
|
+
}>;
|
37
44
|
onMutatedSenderFilter: import("@omnia/fx").MessageBusExposeOnlySubscription<ActivitySender>;
|
38
|
-
onMutatedCategoryFilter: import("@omnia/fx").MessageBusExposeOnlySubscription<
|
45
|
+
onMutatedCategoryFilter: import("@omnia/fx").MessageBusExposeOnlySubscription<ActivityCategoryCount>;
|
46
|
+
onMutatedCategories: import("@omnia/fx").MessageBusExposeOnlySubscription<ActivityCategoryCount[]>;
|
39
47
|
onMutatedRenderers: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
40
48
|
[key: ActivityRendererId]: ActivityRenderer;
|
41
49
|
}>;
|
@@ -54,36 +62,40 @@ export declare const useActivityFeedStore: () => {
|
|
54
62
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
55
63
|
actions: {
|
56
64
|
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
65
|
+
toggleCategoryFilter: (filter: ActivityCategoryCount) => void;
|
57
66
|
toggleSenderFilter: (channelId: ChannelId, sender: ActivitySender) => Promise<void>;
|
58
67
|
toggleSelectedActivity: (activity: Activity) => void;
|
59
68
|
enableChannel: (channelId: ChannelId) => Promise<void>;
|
60
69
|
loadActivities: (channelId: ChannelId, options?: FeedQuery) => Promise<boolean>;
|
61
70
|
createActivity: <TRenderState>(channelId: ChannelId, senderId: ActivitySenderId, activityDefinition: FeedActivityDefinition<TRenderState>, targeting: Array<Array<SourceRelatedHubProperty>>, notification: NotificationTeaser, expires?: Date, activityIdPlaceHolder?: TemporaryFileId) => Promise<void>;
|
62
|
-
|
71
|
+
updateIdentityActivityCategory: (channelId: ChannelId, identityActivity: IdentityActivityBase, category: IdentityActivityCategory) => Promise<void>;
|
63
72
|
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
64
73
|
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
74
|
+
toggleCategoryFilter: (filter: ActivityCategoryCount) => void;
|
65
75
|
toggleSenderFilter: (channelId: ChannelId, sender: ActivitySender) => Promise<void>;
|
66
76
|
toggleSelectedActivity: (activity: Activity) => void;
|
67
77
|
enableChannel: (channelId: ChannelId) => Promise<void>;
|
68
78
|
loadActivities: (channelId: ChannelId, options?: FeedQuery) => Promise<boolean>;
|
69
79
|
createActivity: <TRenderState>(channelId: ChannelId, senderId: ActivitySenderId, activityDefinition: FeedActivityDefinition<TRenderState>, targeting: Array<Array<SourceRelatedHubProperty>>, notification: NotificationTeaser, expires?: Date, activityIdPlaceHolder?: TemporaryFileId) => Promise<void>;
|
70
|
-
|
80
|
+
updateIdentityActivityCategory: (channelId: ChannelId, identityActivity: IdentityActivityBase, category: IdentityActivityCategory) => Promise<void>;
|
71
81
|
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
72
82
|
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
83
|
+
toggleCategoryFilter: (filter: ActivityCategoryCount) => void;
|
73
84
|
toggleSenderFilter: (channelId: ChannelId, sender: ActivitySender) => Promise<void>;
|
74
85
|
toggleSelectedActivity: (activity: Activity) => void;
|
75
86
|
enableChannel: (channelId: ChannelId) => Promise<void>;
|
76
87
|
loadActivities: (channelId: ChannelId, options?: FeedQuery) => Promise<boolean>;
|
77
88
|
createActivity: <TRenderState>(channelId: ChannelId, senderId: ActivitySenderId, activityDefinition: FeedActivityDefinition<TRenderState>, targeting: Array<Array<SourceRelatedHubProperty>>, notification: NotificationTeaser, expires?: Date, activityIdPlaceHolder?: TemporaryFileId) => Promise<void>;
|
78
|
-
|
89
|
+
updateIdentityActivityCategory: (channelId: ChannelId, identityActivity: IdentityActivityBase, category: IdentityActivityCategory) => Promise<void>;
|
79
90
|
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
80
91
|
} & {
|
92
|
+
toggleCategoryFilter: (filter: ActivityCategoryCount) => void;
|
81
93
|
toggleSenderFilter: (channelId: ChannelId, sender: ActivitySender) => Promise<void>;
|
82
94
|
toggleSelectedActivity: (activity: Activity) => void;
|
83
95
|
enableChannel: (channelId: ChannelId) => Promise<void>;
|
84
96
|
loadActivities: (channelId: ChannelId, options?: FeedQuery) => Promise<boolean>;
|
85
97
|
createActivity: <TRenderState>(channelId: ChannelId, senderId: ActivitySenderId, activityDefinition: FeedActivityDefinition<TRenderState>, targeting: Array<Array<SourceRelatedHubProperty>>, notification: NotificationTeaser, expires?: Date, activityIdPlaceHolder?: TemporaryFileId) => Promise<void>;
|
86
|
-
|
98
|
+
updateIdentityActivityCategory: (channelId: ChannelId, identityActivity: IdentityActivityBase, category: IdentityActivityCategory) => Promise<void>;
|
87
99
|
};
|
88
100
|
get: {
|
89
101
|
/**
|
@@ -99,6 +111,7 @@ export declare const useActivityFeedStore: () => {
|
|
99
111
|
* @returns {Activity[]} An array of activities associated with the sender.
|
100
112
|
*/
|
101
113
|
activitiesBySender(): IdentityActivity<object, object>[];
|
114
|
+
activitiesByCategory(): IdentityActivity<object, object>[];
|
102
115
|
/**
|
103
116
|
* Retrieves an ActivityRenderer object for the given activity.
|
104
117
|
*
|
@@ -143,6 +156,8 @@ export declare const useActivityFeedStore: () => {
|
|
143
156
|
*/
|
144
157
|
recentSenders(channelId: ChannelId): ActivitySender[];
|
145
158
|
senderName(sender: ActivitySender): string;
|
159
|
+
categories(): ActivityCategoryCount[];
|
160
|
+
totalNewActivities(channelId: ChannelId): number;
|
146
161
|
};
|
147
162
|
};
|
148
163
|
declare class ActivityRealtimeChannel extends RealtimeChannel {
|
@@ -3,30 +3,38 @@ export declare const useHubFeedChromeStore: () => {
|
|
3
3
|
visible: boolean;
|
4
4
|
showSendersDrawer: boolean;
|
5
5
|
showMeDrawer: boolean;
|
6
|
+
showFindDrawer: boolean;
|
6
7
|
activeTab: number;
|
7
8
|
showMainMenu: boolean;
|
8
|
-
|
9
|
+
selectedMeItem: string;
|
10
|
+
selectedFindItem: string;
|
9
11
|
};
|
10
12
|
events: {
|
11
13
|
onMutatedVisible: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
12
14
|
onMutatedShowSendersDrawer: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
13
15
|
onMutatedShowMeDrawer: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
16
|
+
onMutatedShowFindDrawer: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
14
17
|
onMutatedActiveTab: import("@omnia/fx").MessageBusExposeOnlySubscription<number>;
|
15
18
|
onMutatedShowMainMenu: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
16
|
-
|
19
|
+
onMutatedSelectedMeItem: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
20
|
+
onMutatedSelectedFindItem: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
17
21
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
18
22
|
actions: {
|
19
23
|
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
20
|
-
|
24
|
+
toggleSelectedMeItem: (item: string) => void;
|
25
|
+
toggleSelectedFindItem: (item: string) => void;
|
21
26
|
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
22
27
|
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
23
|
-
|
28
|
+
toggleSelectedMeItem: (item: string) => void;
|
29
|
+
toggleSelectedFindItem: (item: string) => void;
|
24
30
|
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
25
31
|
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
26
|
-
|
32
|
+
toggleSelectedMeItem: (item: string) => void;
|
33
|
+
toggleSelectedFindItem: (item: string) => void;
|
27
34
|
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
28
35
|
} & {
|
29
|
-
|
36
|
+
toggleSelectedMeItem: (item: string) => void;
|
37
|
+
toggleSelectedFindItem: (item: string) => void;
|
30
38
|
};
|
31
39
|
get: {};
|
32
40
|
};
|
@@ -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;
|
@@ -133,7 +133,7 @@ export declare const useJourneyStore: () => {
|
|
133
133
|
moveNext(): void;
|
134
134
|
movePrev(): void;
|
135
135
|
travelTo(toBladeId: GuidValue): void;
|
136
|
-
defineValueToSave<T_7>(value
|
136
|
+
defineValueToSave<T_7>(value?: T_7): {
|
137
137
|
value: T_7;
|
138
138
|
setValue: (value: T_7) => void;
|
139
139
|
};
|
@@ -1,15 +1 @@
|
|
1
|
-
|
2
|
-
import { ITheming } from "..";
|
3
|
-
export declare const UrlInputStyles: {
|
4
|
-
inputWrapper?: types.NestedCSSProperties;
|
5
|
-
label?: (themimg: ITheming) => types.NestedCSSProperties;
|
6
|
-
disabledLabel?: (themimg: ITheming) => types.NestedCSSProperties;
|
7
|
-
focusedLabel?: (themimg: ITheming) => types.NestedCSSProperties;
|
8
|
-
switchModeIcon?: (theming: ITheming) => types.NestedCSSProperties;
|
9
|
-
tabViewItemIconsWrapper?: types.NestedCSSProperties;
|
10
|
-
tabItemIconWrapper?: types.NestedCSSProperties;
|
11
|
-
selectedTabItem?: (theming: ITheming) => types.NestedCSSProperties;
|
12
|
-
listViewItemIconWrapper?: types.NestedCSSProperties;
|
13
|
-
defaultUrlIcon?: types.NestedCSSProperties;
|
14
|
-
msTeamsIcon?: types.NestedCSSProperties;
|
15
|
-
};
|
1
|
+
export declare const UrlInputStyles: {};
|
@@ -17,14 +17,22 @@ declare const _default: {
|
|
17
17
|
readonly class?: String | String[];
|
18
18
|
readonly size?: "small" | "default" | "large" | "x-large" | "x-small";
|
19
19
|
readonly color?: string;
|
20
|
+
readonly toned?: boolean;
|
21
|
+
readonly colorType?: "base" | "onBase" | "container" | "onContainer";
|
20
22
|
readonly gradient?: boolean;
|
21
23
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
22
24
|
gradient: {
|
23
25
|
type: import("vue").PropType<boolean>;
|
24
26
|
};
|
27
|
+
colorType: {
|
28
|
+
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
29
|
+
};
|
25
30
|
size: {
|
26
31
|
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
27
32
|
};
|
33
|
+
toned: {
|
34
|
+
type: import("vue").PropType<boolean>;
|
35
|
+
};
|
28
36
|
color: {
|
29
37
|
type: import("vue").PropType<string>;
|
30
38
|
};
|
@@ -55,9 +63,15 @@ declare const _default: {
|
|
55
63
|
gradient: {
|
56
64
|
type: import("vue").PropType<boolean>;
|
57
65
|
};
|
66
|
+
colorType: {
|
67
|
+
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
68
|
+
};
|
58
69
|
size: {
|
59
70
|
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
60
71
|
};
|
72
|
+
toned: {
|
73
|
+
type: import("vue").PropType<boolean>;
|
74
|
+
};
|
61
75
|
color: {
|
62
76
|
type: import("vue").PropType<string>;
|
63
77
|
};
|
@@ -100,9 +114,15 @@ declare const _default: {
|
|
100
114
|
gradient: {
|
101
115
|
type: import("vue").PropType<boolean>;
|
102
116
|
};
|
117
|
+
colorType: {
|
118
|
+
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
119
|
+
};
|
103
120
|
size: {
|
104
121
|
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
105
122
|
};
|
123
|
+
toned: {
|
124
|
+
type: import("vue").PropType<boolean>;
|
125
|
+
};
|
106
126
|
color: {
|
107
127
|
type: import("vue").PropType<string>;
|
108
128
|
};
|
@@ -123,9 +143,15 @@ declare const _default: {
|
|
123
143
|
gradient: {
|
124
144
|
type: import("vue").PropType<boolean>;
|
125
145
|
};
|
146
|
+
colorType: {
|
147
|
+
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
148
|
+
};
|
126
149
|
size: {
|
127
150
|
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
128
151
|
};
|
152
|
+
toned: {
|
153
|
+
type: import("vue").PropType<boolean>;
|
154
|
+
};
|
129
155
|
color: {
|
130
156
|
type: import("vue").PropType<string>;
|
131
157
|
};
|
@@ -155,6 +181,8 @@ declare const _default: {
|
|
155
181
|
class?: String | String[];
|
156
182
|
size?: "small" | "default" | "large" | "x-large" | "x-small";
|
157
183
|
color?: string;
|
184
|
+
toned?: boolean;
|
185
|
+
colorType?: "base" | "onBase" | "container" | "onContainer";
|
158
186
|
gradient?: boolean;
|
159
187
|
}>, never>;
|
160
188
|
};
|
@@ -21,6 +21,7 @@ declare const _default: {
|
|
21
21
|
readonly xl?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
|
22
22
|
readonly class?: String | String[];
|
23
23
|
readonly alignSelf?: "center" | "auto" | "stretch" | "end" | "start" | "baseline";
|
24
|
+
readonly variant?: "default" | "grid";
|
24
25
|
readonly cols?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
|
25
26
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
26
27
|
xl: {
|
@@ -41,6 +42,10 @@ declare const _default: {
|
|
41
42
|
cols: {
|
42
43
|
type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
|
43
44
|
};
|
45
|
+
variant: {
|
46
|
+
type: import("vue").PropType<"default" | "grid">;
|
47
|
+
required: false;
|
48
|
+
};
|
44
49
|
alignSelf: {
|
45
50
|
type: import("vue").PropType<"center" | "auto" | "stretch" | "end" | "start" | "baseline">;
|
46
51
|
};
|
@@ -86,6 +91,10 @@ declare const _default: {
|
|
86
91
|
cols: {
|
87
92
|
type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
|
88
93
|
};
|
94
|
+
variant: {
|
95
|
+
type: import("vue").PropType<"default" | "grid">;
|
96
|
+
required: false;
|
97
|
+
};
|
89
98
|
alignSelf: {
|
90
99
|
type: import("vue").PropType<"center" | "auto" | "stretch" | "end" | "start" | "baseline">;
|
91
100
|
};
|
@@ -143,6 +152,10 @@ declare const _default: {
|
|
143
152
|
cols: {
|
144
153
|
type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
|
145
154
|
};
|
155
|
+
variant: {
|
156
|
+
type: import("vue").PropType<"default" | "grid">;
|
157
|
+
required: false;
|
158
|
+
};
|
146
159
|
alignSelf: {
|
147
160
|
type: import("vue").PropType<"center" | "auto" | "stretch" | "end" | "start" | "baseline">;
|
148
161
|
};
|
@@ -178,6 +191,10 @@ declare const _default: {
|
|
178
191
|
cols: {
|
179
192
|
type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
|
180
193
|
};
|
194
|
+
variant: {
|
195
|
+
type: import("vue").PropType<"default" | "grid">;
|
196
|
+
required: false;
|
197
|
+
};
|
181
198
|
alignSelf: {
|
182
199
|
type: import("vue").PropType<"center" | "auto" | "stretch" | "end" | "start" | "baseline">;
|
183
200
|
};
|
@@ -211,6 +228,7 @@ declare const _default: {
|
|
211
228
|
xl?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
|
212
229
|
class?: String | String[];
|
213
230
|
alignSelf?: "center" | "auto" | "stretch" | "end" | "start" | "baseline";
|
231
|
+
variant?: "default" | "grid";
|
214
232
|
cols?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
|
215
233
|
}>, never>;
|
216
234
|
};
|
@@ -28,6 +28,7 @@ declare const _default: {
|
|
28
28
|
readonly wrap?: boolean;
|
29
29
|
readonly filled?: boolean;
|
30
30
|
readonly grow?: number;
|
31
|
+
readonly variant?: "default" | "grid";
|
31
32
|
readonly alignY?: "center" | "bottom" | "top";
|
32
33
|
readonly toned?: boolean;
|
33
34
|
readonly alignX?: "left" | "center" | "right";
|
@@ -77,6 +78,10 @@ declare const _default: {
|
|
77
78
|
alignY: {
|
78
79
|
type: import("vue").PropType<"center" | "bottom" | "top">;
|
79
80
|
};
|
81
|
+
variant: {
|
82
|
+
type: import("vue").PropType<"default" | "grid">;
|
83
|
+
required: false;
|
84
|
+
};
|
80
85
|
class: {
|
81
86
|
type: import("vue").PropType<String | String[]>;
|
82
87
|
required: boolean;
|
@@ -146,6 +151,10 @@ declare const _default: {
|
|
146
151
|
alignY: {
|
147
152
|
type: import("vue").PropType<"center" | "bottom" | "top">;
|
148
153
|
};
|
154
|
+
variant: {
|
155
|
+
type: import("vue").PropType<"default" | "grid">;
|
156
|
+
required: false;
|
157
|
+
};
|
149
158
|
class: {
|
150
159
|
type: import("vue").PropType<String | String[]>;
|
151
160
|
required: boolean;
|
@@ -227,6 +236,10 @@ declare const _default: {
|
|
227
236
|
alignY: {
|
228
237
|
type: import("vue").PropType<"center" | "bottom" | "top">;
|
229
238
|
};
|
239
|
+
variant: {
|
240
|
+
type: import("vue").PropType<"default" | "grid">;
|
241
|
+
required: false;
|
242
|
+
};
|
230
243
|
class: {
|
231
244
|
type: import("vue").PropType<String | String[]>;
|
232
245
|
required: boolean;
|
@@ -286,6 +299,10 @@ declare const _default: {
|
|
286
299
|
alignY: {
|
287
300
|
type: import("vue").PropType<"center" | "bottom" | "top">;
|
288
301
|
};
|
302
|
+
variant: {
|
303
|
+
type: import("vue").PropType<"default" | "grid">;
|
304
|
+
required: false;
|
305
|
+
};
|
289
306
|
class: {
|
290
307
|
type: import("vue").PropType<String | String[]>;
|
291
308
|
required: boolean;
|
@@ -321,6 +338,7 @@ declare const _default: {
|
|
321
338
|
wrap?: boolean;
|
322
339
|
filled?: boolean;
|
323
340
|
grow?: number;
|
341
|
+
variant?: "default" | "grid";
|
324
342
|
alignY?: "center" | "bottom" | "top";
|
325
343
|
toned?: boolean;
|
326
344
|
alignX?: "left" | "center" | "right";
|
@@ -17,20 +17,28 @@ declare const _default: {
|
|
17
17
|
readonly colors?: any;
|
18
18
|
readonly class?: String | String[];
|
19
19
|
readonly size?: "small" | "default" | "large" | "x-large" | "x-small";
|
20
|
+
readonly animation?: "flip" | "spin" | "beat" | "bounce";
|
20
21
|
readonly icon?: IIcon;
|
21
22
|
readonly variant?: "background" | "default";
|
22
23
|
readonly toned?: boolean;
|
24
|
+
readonly colorType?: "base" | "onBase" | "container" | "onContainer";
|
23
25
|
readonly customSize?: number;
|
24
26
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
25
27
|
customSize: {
|
26
28
|
type: import("vue").PropType<number>;
|
27
29
|
};
|
30
|
+
animation: {
|
31
|
+
type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
|
32
|
+
};
|
28
33
|
size: {
|
29
34
|
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
30
35
|
};
|
31
36
|
variant: {
|
32
37
|
type: import("vue").PropType<"background" | "default">;
|
33
38
|
};
|
39
|
+
colorType: {
|
40
|
+
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
41
|
+
};
|
34
42
|
toned: {
|
35
43
|
type: import("vue").PropType<boolean>;
|
36
44
|
} & {
|
@@ -66,12 +74,18 @@ declare const _default: {
|
|
66
74
|
customSize: {
|
67
75
|
type: import("vue").PropType<number>;
|
68
76
|
};
|
77
|
+
animation: {
|
78
|
+
type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
|
79
|
+
};
|
69
80
|
size: {
|
70
81
|
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
71
82
|
};
|
72
83
|
variant: {
|
73
84
|
type: import("vue").PropType<"background" | "default">;
|
74
85
|
};
|
86
|
+
colorType: {
|
87
|
+
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
88
|
+
};
|
75
89
|
toned: {
|
76
90
|
type: import("vue").PropType<boolean>;
|
77
91
|
} & {
|
@@ -119,12 +133,18 @@ declare const _default: {
|
|
119
133
|
customSize: {
|
120
134
|
type: import("vue").PropType<number>;
|
121
135
|
};
|
136
|
+
animation: {
|
137
|
+
type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
|
138
|
+
};
|
122
139
|
size: {
|
123
140
|
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
124
141
|
};
|
125
142
|
variant: {
|
126
143
|
type: import("vue").PropType<"background" | "default">;
|
127
144
|
};
|
145
|
+
colorType: {
|
146
|
+
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
147
|
+
};
|
128
148
|
toned: {
|
129
149
|
type: import("vue").PropType<boolean>;
|
130
150
|
} & {
|
@@ -150,12 +170,18 @@ declare const _default: {
|
|
150
170
|
customSize: {
|
151
171
|
type: import("vue").PropType<number>;
|
152
172
|
};
|
173
|
+
animation: {
|
174
|
+
type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
|
175
|
+
};
|
153
176
|
size: {
|
154
177
|
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
155
178
|
};
|
156
179
|
variant: {
|
157
180
|
type: import("vue").PropType<"background" | "default">;
|
158
181
|
};
|
182
|
+
colorType: {
|
183
|
+
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
184
|
+
};
|
159
185
|
toned: {
|
160
186
|
type: import("vue").PropType<boolean>;
|
161
187
|
} & {
|
@@ -189,9 +215,11 @@ declare const _default: {
|
|
189
215
|
} & {
|
190
216
|
class?: String | String[];
|
191
217
|
size?: "small" | "default" | "large" | "x-large" | "x-small";
|
218
|
+
animation?: "flip" | "spin" | "beat" | "bounce";
|
192
219
|
icon?: IIcon;
|
193
220
|
variant?: "background" | "default";
|
194
221
|
toned?: boolean;
|
222
|
+
colorType?: "base" | "onBase" | "container" | "onContainer";
|
195
223
|
customSize?: number;
|
196
224
|
}>, never>;
|
197
225
|
};
|