@omnia/fx 8.0.438-dev → 8.0.439-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/ux/admin/usermanagement/dynamicgroups/DynamicGroupDetailBlade.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/admin/usermanagement/loc/localize.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncAddCondition.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/identities/loc/Localize.d.ts +2 -1
- package/package.json +2 -2
@@ -1,11 +1,13 @@
|
|
1
1
|
import { ImagePropertyDefinition, MultilingualTextPropertyDefinition, PropertyValueBinding, TextPropertyDefinition, UserType, guid } from "@omnia/fx-models";
|
2
2
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
3
|
itemId?: guid;
|
4
|
+
} & {
|
5
|
+
itemRemovingDict: Record<string, boolean>;
|
4
6
|
}> & {} & {
|
5
7
|
"v-slots"?: {} & Omit<{
|
6
8
|
default?: import("vue").Slot;
|
7
9
|
}, never>;
|
8
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "itemId"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
10
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "itemId" | "itemRemovingDict"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
9
11
|
export default _default;
|
10
12
|
export interface DynamicGroupModel {
|
11
13
|
id: guid;
|
@@ -149,10 +149,10 @@ export declare namespace UserManagementLocalization {
|
|
149
149
|
};
|
150
150
|
DynamicGroups: {
|
151
151
|
Title: string;
|
152
|
-
DeleteDynamicGroup: string;
|
153
152
|
DeleteDynamicGroupConfirmation: string;
|
154
|
-
|
153
|
+
CreateDynamicGroup: string;
|
155
154
|
EditDynamicGroup: string;
|
155
|
+
AddUserTypes: string;
|
156
156
|
Name: string;
|
157
157
|
Description: string;
|
158
158
|
Icon: string;
|
@@ -12,6 +12,8 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
12
12
|
modelValue?: EvaluationSetClient;
|
13
13
|
} & {
|
14
14
|
getSyncPropertiesApi: () => Promise<IdentityProviderProperty[]>;
|
15
|
+
} & {
|
16
|
+
editMode: boolean;
|
15
17
|
} & {
|
16
18
|
getSyncPropertyDisplayName: (property: IdentityProviderProperty) => string;
|
17
19
|
} & DefineEmit<"add", (set: EvaluationSetClient) => void> & DefineEmit<"update", (set: EvaluationSetClient) => void> & DefineEmit<"remove", (set: EvaluationSetClient) => void>> & {
|
@@ -23,5 +25,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
23
25
|
"v-slots"?: {} & Omit<{
|
24
26
|
default?: import("vue").Slot;
|
25
27
|
}, never>;
|
26
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "modelValue" | "emit:update:modelValue" | "v-model" | "getSyncPropertiesApi" | "getSyncPropertyDisplayName" | "emit:add" | "emit:update" | "emit:remove"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
28
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "modelValue" | "emit:update:modelValue" | "v-model" | "editMode" | "getSyncPropertiesApi" | "getSyncPropertyDisplayName" | "emit:add" | "emit:update" | "emit:remove"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
27
29
|
export default _default;
|
@@ -28,7 +28,7 @@ export declare namespace IdentitiesLocalization {
|
|
28
28
|
UserProperty: string;
|
29
29
|
};
|
30
30
|
Settings: {
|
31
|
-
|
31
|
+
CreateRule: string;
|
32
32
|
AddFilter: string;
|
33
33
|
EditRule: string;
|
34
34
|
UserType: string;
|
@@ -57,6 +57,7 @@ export declare namespace IdentitiesLocalization {
|
|
57
57
|
TextMapping: string;
|
58
58
|
MicrosoftGraphProperty: string;
|
59
59
|
UserProperty: string;
|
60
|
+
DeleteUserTypeConfirmation: string;
|
60
61
|
};
|
61
62
|
IsExternal: string;
|
62
63
|
};
|
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.439-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.439-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|