@omnia/fx 8.0.396-dev → 8.0.398-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/mediapicker/ImageTransformerStore.d.ts +3 -3
- package/internal-do-not-import-from-here/stores/mediapicker/MediaPickerGalleryStore.d.ts +10 -6
- package/internal-do-not-import-from-here/stores/mediapicker/ProviderStore.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/admin/system/loc/localize.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/auditlogs/blades/ListingBlade.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/TenantContactConstant.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/MainContactsBlade.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/SecurityContactsBlade.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/SystemUpdateNotificationBlade.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/TenantContactBladeStore.d.ts +27 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/UserSyncContacts.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/UserManagementHelper.d.ts +194 -1
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/store/ColorSchemaPickerStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/containerFillpicker/ContainerFillPicker.d.ts +102 -91
- package/internal-do-not-import-from-here/ux/aurora/components/containerFillpicker/store/ContainerFillPickerStore.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/store/FillPickerStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/ComponentBlueprintStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeStore.d.ts +13 -3
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/FillStyling.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/links/store/LinkPickerStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/selection/Selection.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/selection/store/SelectionStore.d.ts +6 -5
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditorSettings.d.ts +9 -294
- package/internal-do-not-import-from-here/ux/signin/omnia/Renderer.d.ts +4 -5
- package/package.json +3 -3
@@ -1,12 +1,13 @@
|
|
1
1
|
import { OSelectRenderingItem } from "@omnia/fx-models";
|
2
2
|
import { VNodeChild } from "vue";
|
3
|
+
import { ItemValueType } from "@omnia/fx/ux";
|
3
4
|
export declare const useSelectionStore: () => {
|
4
5
|
rules: {};
|
5
6
|
state: {
|
6
7
|
items: any[];
|
7
8
|
propertyMappings: {
|
8
|
-
title:
|
9
|
-
subtitle:
|
9
|
+
title: ItemValueType<any>;
|
10
|
+
subtitle: ItemValueType<any>;
|
10
11
|
icon: string;
|
11
12
|
};
|
12
13
|
};
|
@@ -16,14 +17,14 @@ export declare const useSelectionStore: () => {
|
|
16
17
|
events: import("@omnia/fx/stores").StoreEvents<{
|
17
18
|
items: any[];
|
18
19
|
propertyMappings: {
|
19
|
-
title:
|
20
|
-
subtitle:
|
20
|
+
title: ItemValueType<any>;
|
21
|
+
subtitle: ItemValueType<any>;
|
21
22
|
icon: string;
|
22
23
|
};
|
23
24
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
24
25
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
25
26
|
updateItems(items: Array<any>): void;
|
26
|
-
init(items: Array<any>, itemTitle:
|
27
|
+
init(items: Array<any>, itemTitle: ItemValueType<any>, itemSubtitle: string, itemIcon: string, renderingSlots: any): void;
|
27
28
|
}>;
|
28
29
|
get: {
|
29
30
|
itemTitle(item: any): any;
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { guid } from "@omnia/fx/models";
|
2
|
+
import { DefineVModel, DefineProp } from "@omnia/fx/ux";
|
2
3
|
import { RichTextEditorExtension, RichTextEditorExtensionRegistration, RichTextEditorExtensionSettings } from "../../models/RichTextEditorExtension";
|
3
4
|
import "./RichTextEditorSettings.css";
|
4
5
|
export interface RTFExtensionViewModel {
|
@@ -8,298 +9,12 @@ export interface RTFExtensionViewModel {
|
|
8
9
|
isChecked?: boolean;
|
9
10
|
isSettingsShowed?: boolean;
|
10
11
|
}
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
"
|
17
|
-
|
18
|
-
|
19
|
-
};
|
20
|
-
modelValue: {
|
21
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
22
|
-
required: false;
|
23
|
-
};
|
24
|
-
name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
25
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
26
|
-
}; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
27
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
28
|
-
required: false;
|
29
|
-
}; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
30
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
31
|
-
required: false;
|
32
|
-
}; } & {
|
33
|
-
require(): import("../DefineVueTypings").DefinePropModelRequire<TName, RichTextEditorExtensionRegistration[], {
|
34
|
-
"onUpdate:modelValue": {
|
35
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
36
|
-
};
|
37
|
-
} & {
|
38
|
-
"v-model": {
|
39
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
40
|
-
required: false;
|
41
|
-
};
|
42
|
-
} & {
|
43
|
-
modelValue: {
|
44
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
45
|
-
required: false;
|
46
|
-
};
|
47
|
-
}>;
|
48
|
-
defaultValue(value?: RichTextEditorExtensionRegistration[]): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, RichTextEditorExtensionRegistration[], {
|
49
|
-
"onUpdate:modelValue": {
|
50
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
51
|
-
};
|
52
|
-
} & {
|
53
|
-
"v-model": {
|
54
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
55
|
-
required: false;
|
56
|
-
};
|
57
|
-
} & {
|
58
|
-
modelValue: {
|
59
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
60
|
-
required: false;
|
61
|
-
};
|
62
|
-
}, false>;
|
63
|
-
doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, RichTextEditorExtensionRegistration[], {
|
64
|
-
"onUpdate:modelValue": {
|
65
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
66
|
-
};
|
67
|
-
} & {
|
68
|
-
"v-model": {
|
69
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
70
|
-
required: false;
|
71
|
-
};
|
72
|
-
} & {
|
73
|
-
modelValue: {
|
74
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
75
|
-
required: false;
|
76
|
-
};
|
77
|
-
}>;
|
78
|
-
};
|
79
|
-
showEditorPreview: {
|
80
|
-
type: import("vue").PropType<boolean>;
|
81
|
-
required: false;
|
82
|
-
};
|
83
|
-
}>>, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
84
|
-
P: {};
|
85
|
-
B: {};
|
86
|
-
D: {};
|
87
|
-
C: {};
|
88
|
-
M: {};
|
89
|
-
Defaults: {};
|
90
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
91
|
-
"onUpdate:modelValue": {
|
92
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
93
|
-
};
|
94
|
-
"v-model": {
|
95
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
96
|
-
required: false;
|
97
|
-
};
|
98
|
-
modelValue: {
|
99
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
100
|
-
required: false;
|
101
|
-
};
|
102
|
-
name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
103
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
104
|
-
}; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
105
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
106
|
-
required: false;
|
107
|
-
}; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
108
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
109
|
-
required: false;
|
110
|
-
}; } & {
|
111
|
-
require(): import("../DefineVueTypings").DefinePropModelRequire<TName, RichTextEditorExtensionRegistration[], {
|
112
|
-
"onUpdate:modelValue": {
|
113
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
114
|
-
};
|
115
|
-
} & {
|
116
|
-
"v-model": {
|
117
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
118
|
-
required: false;
|
119
|
-
};
|
120
|
-
} & {
|
121
|
-
modelValue: {
|
122
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
123
|
-
required: false;
|
124
|
-
};
|
125
|
-
}>;
|
126
|
-
defaultValue(value?: RichTextEditorExtensionRegistration[]): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, RichTextEditorExtensionRegistration[], {
|
127
|
-
"onUpdate:modelValue": {
|
128
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
129
|
-
};
|
130
|
-
} & {
|
131
|
-
"v-model": {
|
132
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
133
|
-
required: false;
|
134
|
-
};
|
135
|
-
} & {
|
136
|
-
modelValue: {
|
137
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
138
|
-
required: false;
|
139
|
-
};
|
140
|
-
}, false>;
|
141
|
-
doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, RichTextEditorExtensionRegistration[], {
|
142
|
-
"onUpdate:modelValue": {
|
143
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
144
|
-
};
|
145
|
-
} & {
|
146
|
-
"v-model": {
|
147
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
148
|
-
required: false;
|
149
|
-
};
|
150
|
-
} & {
|
151
|
-
modelValue: {
|
152
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
153
|
-
required: false;
|
154
|
-
};
|
155
|
-
}>;
|
156
|
-
};
|
157
|
-
showEditorPreview: {
|
158
|
-
type: import("vue").PropType<boolean>;
|
159
|
-
required: false;
|
160
|
-
};
|
161
|
-
}>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
|
162
|
-
__isFragment?: never;
|
163
|
-
__isTeleport?: never;
|
164
|
-
__isSuspense?: never;
|
165
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
166
|
-
"onUpdate:modelValue": {
|
167
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
168
|
-
};
|
169
|
-
"v-model": {
|
170
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
171
|
-
required: false;
|
172
|
-
};
|
173
|
-
modelValue: {
|
174
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
175
|
-
required: false;
|
176
|
-
};
|
177
|
-
name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
178
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
179
|
-
}; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
180
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
181
|
-
required: false;
|
182
|
-
}; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
183
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
184
|
-
required: false;
|
185
|
-
}; } & {
|
186
|
-
require(): import("../DefineVueTypings").DefinePropModelRequire<TName, RichTextEditorExtensionRegistration[], {
|
187
|
-
"onUpdate:modelValue": {
|
188
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
189
|
-
};
|
190
|
-
} & {
|
191
|
-
"v-model": {
|
192
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
193
|
-
required: false;
|
194
|
-
};
|
195
|
-
} & {
|
196
|
-
modelValue: {
|
197
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
198
|
-
required: false;
|
199
|
-
};
|
200
|
-
}>;
|
201
|
-
defaultValue(value?: RichTextEditorExtensionRegistration[]): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, RichTextEditorExtensionRegistration[], {
|
202
|
-
"onUpdate:modelValue": {
|
203
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
204
|
-
};
|
205
|
-
} & {
|
206
|
-
"v-model": {
|
207
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
208
|
-
required: false;
|
209
|
-
};
|
210
|
-
} & {
|
211
|
-
modelValue: {
|
212
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
213
|
-
required: false;
|
214
|
-
};
|
215
|
-
}, false>;
|
216
|
-
doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, RichTextEditorExtensionRegistration[], {
|
217
|
-
"onUpdate:modelValue": {
|
218
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
219
|
-
};
|
220
|
-
} & {
|
221
|
-
"v-model": {
|
222
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
223
|
-
required: false;
|
224
|
-
};
|
225
|
-
} & {
|
226
|
-
modelValue: {
|
227
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
228
|
-
required: false;
|
229
|
-
};
|
230
|
-
}>;
|
231
|
-
};
|
232
|
-
showEditorPreview: {
|
233
|
-
type: import("vue").PropType<boolean>;
|
234
|
-
required: false;
|
235
|
-
};
|
236
|
-
}>>, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
237
|
-
propsDefinition: Omit<Readonly<{} & {
|
238
|
-
name?: {
|
239
|
-
[x: `onUpdate:${string}`]: {
|
240
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
241
|
-
};
|
242
|
-
} & {
|
243
|
-
[x: `v-model:${string}`]: {
|
244
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
245
|
-
required: false;
|
246
|
-
};
|
247
|
-
} & {
|
248
|
-
[x: string]: {
|
249
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
250
|
-
required: false;
|
251
|
-
};
|
252
|
-
} & {
|
253
|
-
require(): import("../DefineVueTypings").DefinePropModelRequire<string, RichTextEditorExtensionRegistration[], {
|
254
|
-
"onUpdate:modelValue": {
|
255
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
256
|
-
};
|
257
|
-
} & {
|
258
|
-
"v-model": {
|
259
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
260
|
-
required: false;
|
261
|
-
};
|
262
|
-
} & {
|
263
|
-
modelValue: {
|
264
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
265
|
-
required: false;
|
266
|
-
};
|
267
|
-
}>;
|
268
|
-
defaultValue(value?: RichTextEditorExtensionRegistration[]): import("../DefineVueTypings").DefinePropModelDefaultValue<string, RichTextEditorExtensionRegistration[], {
|
269
|
-
"onUpdate:modelValue": {
|
270
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
271
|
-
};
|
272
|
-
} & {
|
273
|
-
"v-model": {
|
274
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
275
|
-
required: false;
|
276
|
-
};
|
277
|
-
} & {
|
278
|
-
modelValue: {
|
279
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
280
|
-
required: false;
|
281
|
-
};
|
282
|
-
}, false>;
|
283
|
-
doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<string, RichTextEditorExtensionRegistration[], {
|
284
|
-
"onUpdate:modelValue": {
|
285
|
-
type: import("vue").PropType<(value: RichTextEditorExtensionRegistration[]) => any | void>;
|
286
|
-
};
|
287
|
-
} & {
|
288
|
-
"v-model": {
|
289
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
290
|
-
required: false;
|
291
|
-
};
|
292
|
-
} & {
|
293
|
-
modelValue: {
|
294
|
-
type: import("vue").PropType<RichTextEditorExtensionRegistration[]>;
|
295
|
-
required: false;
|
296
|
-
};
|
297
|
-
}>;
|
298
|
-
};
|
299
|
-
modelValue?: RichTextEditorExtensionRegistration[];
|
300
|
-
"onUpdate:modelValue"?: (value: RichTextEditorExtensionRegistration[]) => any | void;
|
301
|
-
"v-model"?: RichTextEditorExtensionRegistration[];
|
302
|
-
showEditorPreview?: boolean;
|
303
|
-
}>, never>;
|
304
|
-
};
|
12
|
+
type Props = DefineVModel<"", RichTextEditorExtensionRegistration[]> & DefineProp<"showEditorPreview", boolean> & DefineProp<"variant", "journey" | "default", false, "default">;
|
13
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Props> & {
|
14
|
+
"onUpdate:modelValue"?: (value: RichTextEditorExtensionRegistration[]) => any;
|
15
|
+
} & {
|
16
|
+
"v-slots"?: {} & Omit<{
|
17
|
+
default?: import("vue").Slot;
|
18
|
+
}, never>;
|
19
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "variant" | "modelValue" | "v-model" | "emit:update:modelValue" | "showEditorPreview"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
305
20
|
export default _default;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
import { PropType } from "vue";
|
2
1
|
import { AuthenticationBlockSettings } from "../Shared";
|
3
2
|
import { AuthenticationOption, AuthenticationMetaData } from "@omnia/fx-models";
|
4
3
|
declare const _default: {
|
@@ -8,7 +7,7 @@ declare const _default: {
|
|
8
7
|
back: import("vue").Prop<() => void, () => void>;
|
9
8
|
onProviderSelected: import("vue").Prop<(authOption: AuthenticationMetaData) => void, (authOption: AuthenticationMetaData) => void>;
|
10
9
|
settings: import("vue").Prop<AuthenticationBlockSettings, AuthenticationBlockSettings>;
|
11
|
-
memorizedProvider:
|
10
|
+
memorizedProvider: import("vue").Prop<AuthenticationMetaData, AuthenticationMetaData>;
|
12
11
|
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
13
12
|
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
14
13
|
onVnodeBeforeUpdate?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
@@ -28,7 +27,7 @@ declare const _default: {
|
|
28
27
|
back: import("vue").Prop<() => void, () => void>;
|
29
28
|
onProviderSelected: import("vue").Prop<(authOption: AuthenticationMetaData) => void, (authOption: AuthenticationMetaData) => void>;
|
30
29
|
settings: import("vue").Prop<AuthenticationBlockSettings, AuthenticationBlockSettings>;
|
31
|
-
memorizedProvider:
|
30
|
+
memorizedProvider: import("vue").Prop<AuthenticationMetaData, AuthenticationMetaData>;
|
32
31
|
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
33
32
|
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
34
33
|
onVnodeBeforeUpdate?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
@@ -45,7 +44,7 @@ declare const _default: {
|
|
45
44
|
back: import("vue").Prop<() => void, () => void>;
|
46
45
|
onProviderSelected: import("vue").Prop<(authOption: AuthenticationMetaData) => void, (authOption: AuthenticationMetaData) => void>;
|
47
46
|
settings: import("vue").Prop<AuthenticationBlockSettings, AuthenticationBlockSettings>;
|
48
|
-
memorizedProvider:
|
47
|
+
memorizedProvider: import("vue").Prop<AuthenticationMetaData, AuthenticationMetaData>;
|
49
48
|
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
50
49
|
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
51
50
|
onVnodeBeforeUpdate?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
@@ -65,7 +64,7 @@ declare const _default: {
|
|
65
64
|
authFlows?: AuthenticationOption[][];
|
66
65
|
back?: () => void;
|
67
66
|
onProviderSelected?: (authOption: AuthenticationMetaData) => void;
|
68
|
-
memorizedProvider?:
|
67
|
+
memorizedProvider?: AuthenticationMetaData;
|
69
68
|
}>, never>;
|
70
69
|
};
|
71
70
|
export default _default;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.398-dev",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Omnia Digital Workplace AB",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.398-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
@@ -28,7 +28,7 @@
|
|
28
28
|
"vue": "3.5.13",
|
29
29
|
"vuetify": "3.7.15",
|
30
30
|
"tslib": "2.6.2",
|
31
|
-
"typescript": "5.
|
31
|
+
"typescript": "5.8.2",
|
32
32
|
"@tiptap/vue-3": "2.1.13",
|
33
33
|
"@tiptap/pm": "2.1.13",
|
34
34
|
"@tiptap/suggestion": "2.1.13",
|