@omnia/fx 8.0.231-dev → 8.0.232-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/{users/active/DetailBlade.d.ts → shared/UserDetailBlade.d.ts} +3 -6
- package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/UserDetailStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +56 -158
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +13 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +1 -1
- package/package.json +2 -2
- /package/internal-do-not-import-from-here/ux/admin/usermanagement/{users/active/AuthenticationBlade.d.ts → shared/UserAuthenticationBlade.d.ts} +0 -0
@@ -1,5 +1,4 @@
|
|
1
|
-
|
2
|
-
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<DefineEmit<"delete", (uidToRemove: string) => void>>) => {
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<Record<string, any>>) => {
|
3
2
|
$: import("vue").ComponentInternalInstance;
|
4
3
|
$data: {};
|
5
4
|
$props: {};
|
@@ -37,13 +36,11 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<D
|
|
37
36
|
$nextTick: typeof import("vue").nextTick;
|
38
37
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
39
38
|
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
40
|
-
propsDefinition: import("@omnia/fx/ux").ExtractProps<
|
39
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {
|
41
40
|
"v-slots"?: {
|
42
41
|
default?: import("vue").Slot;
|
43
42
|
} & {};
|
44
|
-
} & {
|
45
|
-
onDelete?: (uidToRemove: string) => any;
|
46
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, never>;
|
43
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string | number>;
|
47
44
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
48
45
|
[key: string]: any;
|
49
46
|
}>;
|
package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/UserDetailStore.d.ts
CHANGED
@@ -11,6 +11,7 @@ export interface UserDetailState {
|
|
11
11
|
hasAdminPermission?: boolean;
|
12
12
|
groupId?: guid;
|
13
13
|
onSave: (...params: any[]) => Promise<void> | void;
|
14
|
+
onDelete: (...params: any[]) => Promise<void> | void;
|
14
15
|
isDeleted?: boolean;
|
15
16
|
addedOrUpdatedUserIdentity?: ResolvedUserIdentity;
|
16
17
|
}
|
@@ -1,160 +1,58 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
colorSchemaType: {
|
23
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
24
|
-
required: boolean;
|
25
|
-
};
|
26
|
-
container: {
|
27
|
-
type: BooleanConstructor;
|
28
|
-
required: boolean;
|
29
|
-
};
|
30
|
-
colors: {
|
31
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
32
|
-
required: boolean;
|
33
|
-
};
|
34
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
35
|
-
variant: {
|
36
|
-
type: import("vue").PropType<"navigation" | "default" | "options">;
|
37
|
-
};
|
38
|
-
divider: {
|
39
|
-
type: import("vue").PropType<boolean>;
|
40
|
-
};
|
41
|
-
toned: {
|
42
|
-
type: import("vue").PropType<boolean>;
|
43
|
-
};
|
44
|
-
nav: {
|
45
|
-
type: import("vue").PropType<boolean>;
|
46
|
-
};
|
47
|
-
lines: {
|
48
|
-
type: import("vue").PropType<false | "one" | "two" | "three">;
|
49
|
-
};
|
50
|
-
class: {
|
51
|
-
type: import("vue").PropType<String | String[]>;
|
52
|
-
required: boolean;
|
53
|
-
};
|
54
|
-
colorSchemaType: {
|
55
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
56
|
-
required: boolean;
|
57
|
-
};
|
58
|
-
container: {
|
59
|
-
type: BooleanConstructor;
|
60
|
-
required: boolean;
|
61
|
-
};
|
62
|
-
colors: {
|
63
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
64
|
-
required: boolean;
|
65
|
-
};
|
66
|
-
}>>, {
|
67
|
-
container: boolean;
|
68
|
-
}, true, {}, {}, {
|
69
|
-
P: {};
|
70
|
-
B: {};
|
71
|
-
D: {};
|
72
|
-
C: {};
|
73
|
-
M: {};
|
74
|
-
Defaults: {};
|
75
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
76
|
-
variant: {
|
77
|
-
type: import("vue").PropType<"navigation" | "default" | "options">;
|
78
|
-
};
|
79
|
-
divider: {
|
80
|
-
type: import("vue").PropType<boolean>;
|
81
|
-
};
|
82
|
-
toned: {
|
83
|
-
type: import("vue").PropType<boolean>;
|
84
|
-
};
|
85
|
-
nav: {
|
86
|
-
type: import("vue").PropType<boolean>;
|
87
|
-
};
|
88
|
-
lines: {
|
89
|
-
type: import("vue").PropType<false | "one" | "two" | "three">;
|
90
|
-
};
|
91
|
-
class: {
|
92
|
-
type: import("vue").PropType<String | String[]>;
|
93
|
-
required: boolean;
|
94
|
-
};
|
95
|
-
colorSchemaType: {
|
96
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
97
|
-
required: boolean;
|
98
|
-
};
|
99
|
-
container: {
|
100
|
-
type: BooleanConstructor;
|
101
|
-
required: boolean;
|
102
|
-
};
|
103
|
-
colors: {
|
104
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
105
|
-
required: boolean;
|
106
|
-
};
|
107
|
-
}>>, () => JSX.Element, {}, {}, {}, {
|
108
|
-
container: boolean;
|
1
|
+
import { DefineProp, DefinePropClass, DefinePropTheming, DefineSlot, DefineVModel } from "@omnia/fx/ux";
|
2
|
+
import { Ref } from "vue";
|
3
|
+
import { OListLineTypes, OListTypes } from "@omnia/fx-models";
|
4
|
+
export interface IListItem<T> {
|
5
|
+
value: T;
|
6
|
+
index: number;
|
7
|
+
Item: typeof o.list.item;
|
8
|
+
}
|
9
|
+
export type OListProps<T> = DefinePropTheming & DefinePropClass & DefineVModel<"items", T[], false, null, "An array of strings or objects used for automatically generating children components."> & DefineProp<"lines", OListLineTypes, false, null, "Designates a minimum-height for all the children o-list-item components. THis props uses line-clamp."> & DefineProp<"nav", boolean, false, false, "An alternative styling that reduces o-list-item width and rounds the corners. Typically used with o-navigation-drawer."> & DefineProp<"toned", boolean, false, false> & DefineProp<"divider", boolean, false, false, "If true, each item will have a bottom divider"> & DefineProp<"variant", OListTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"draggable", boolean | Ref<boolean>, false, false, "Enable draggable row."> & DefineSlot<"item", (item: IListItem<T>) => JSX.Element>;
|
10
|
+
declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").ConstructComponentProps<OListProps<T>>) => {
|
11
|
+
$: import("vue").ComponentInternalInstance;
|
12
|
+
$data: {};
|
13
|
+
$props: {};
|
14
|
+
$attrs: {
|
15
|
+
[x: string]: unknown;
|
16
|
+
};
|
17
|
+
$refs: {
|
18
|
+
[x: string]: unknown;
|
19
|
+
};
|
20
|
+
$slots: Readonly<{
|
21
|
+
[name: string]: import("vue").Slot<any>;
|
109
22
|
}>;
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
colors:
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
146
|
-
container: boolean;
|
147
|
-
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
148
|
-
propsDefinition: Omit<Readonly<{} & {
|
149
|
-
container?: boolean;
|
150
|
-
class?: String | String[];
|
151
|
-
nav?: boolean;
|
152
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
153
|
-
toned?: boolean;
|
154
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
155
|
-
variant?: "navigation" | "default" | "options";
|
156
|
-
divider?: boolean;
|
157
|
-
lines?: false | "one" | "two" | "three";
|
158
|
-
}>, never>;
|
159
|
-
};
|
23
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
24
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
25
|
+
$emit: (event: string, ...args: any[]) => void;
|
26
|
+
$el: any;
|
27
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
28
|
+
beforeCreate?: (() => void) | (() => void)[];
|
29
|
+
created?: (() => void) | (() => void)[];
|
30
|
+
beforeMount?: (() => void) | (() => void)[];
|
31
|
+
mounted?: (() => void) | (() => void)[];
|
32
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
33
|
+
updated?: (() => void) | (() => void)[];
|
34
|
+
activated?: (() => void) | (() => void)[];
|
35
|
+
deactivated?: (() => void) | (() => void)[];
|
36
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
37
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
38
|
+
destroyed?: (() => void) | (() => void)[];
|
39
|
+
unmounted?: (() => void) | (() => void)[];
|
40
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
41
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
42
|
+
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)[];
|
43
|
+
};
|
44
|
+
$forceUpdate: () => void;
|
45
|
+
$nextTick: typeof import("vue").nextTick;
|
46
|
+
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
47
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
48
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<OListProps<T>> & {
|
49
|
+
"v-slots"?: {
|
50
|
+
default?: import("vue").Slot;
|
51
|
+
} & {
|
52
|
+
item?: (item: IListItem<T>) => JSX.Element;
|
53
|
+
};
|
54
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "nav" | "colorSchemaType" | "toned" | "items" | "colors" | "draggable" | "variant" | "divider" | "v-model:items" | "onUpdate:items" | "lines">;
|
55
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
56
|
+
[key: string]: any;
|
57
|
+
}>;
|
160
58
|
export default _default;
|
@@ -9,6 +9,9 @@ declare const _default: {
|
|
9
9
|
variant: {
|
10
10
|
type: import("vue").PropType<"navigation" | "default" | "content" | "delete">;
|
11
11
|
};
|
12
|
+
removeable: {
|
13
|
+
type: import("vue").PropType<boolean>;
|
14
|
+
};
|
12
15
|
disabled: {
|
13
16
|
type: import("vue").PropType<boolean>;
|
14
17
|
};
|
@@ -53,6 +56,9 @@ declare const _default: {
|
|
53
56
|
variant: {
|
54
57
|
type: import("vue").PropType<"navigation" | "default" | "content" | "delete">;
|
55
58
|
};
|
59
|
+
removeable: {
|
60
|
+
type: import("vue").PropType<boolean>;
|
61
|
+
};
|
56
62
|
disabled: {
|
57
63
|
type: import("vue").PropType<boolean>;
|
58
64
|
};
|
@@ -103,6 +109,9 @@ declare const _default: {
|
|
103
109
|
variant: {
|
104
110
|
type: import("vue").PropType<"navigation" | "default" | "content" | "delete">;
|
105
111
|
};
|
112
|
+
removeable: {
|
113
|
+
type: import("vue").PropType<boolean>;
|
114
|
+
};
|
106
115
|
disabled: {
|
107
116
|
type: import("vue").PropType<boolean>;
|
108
117
|
};
|
@@ -150,6 +159,9 @@ declare const _default: {
|
|
150
159
|
variant: {
|
151
160
|
type: import("vue").PropType<"navigation" | "default" | "content" | "delete">;
|
152
161
|
};
|
162
|
+
removeable: {
|
163
|
+
type: import("vue").PropType<boolean>;
|
164
|
+
};
|
153
165
|
disabled: {
|
154
166
|
type: import("vue").PropType<boolean>;
|
155
167
|
};
|
@@ -204,6 +216,7 @@ declare const _default: {
|
|
204
216
|
} & VListItemSlots;
|
205
217
|
variant?: "navigation" | "default" | "content" | "delete";
|
206
218
|
subtitle?: VNodeChild;
|
219
|
+
removeable?: boolean;
|
207
220
|
}>, "onClick:navigate" | "onClick:delete"> & {
|
208
221
|
"onClick:navigate"?: (value: any) => any;
|
209
222
|
"onClick:delete"?: (value: any) => any;
|
@@ -158,7 +158,7 @@ import wc6a15d7edea3d4b548b71d8a7f3e50295 from './ux/admin/usermanagement/synchr
|
|
158
158
|
import wce77bbdc8d37d4449b3515d9f408e7ec8 from './ux/admin/usermanagement/synchronization/OmniaSearchUserLogsBlade';
|
159
159
|
import wcf5842aadad834b4bb7b8ef9d6eb8b8e1 from './ux/admin/usermanagement/users/UserJourney';
|
160
160
|
import wc6f1fc2596ddb411abf1741ed422947e3 from './ux/admin/usermanagement/users/active/Journey';
|
161
|
-
import wcfb9aa542fd414c5f8468aa0ad67d11f7 from './ux/admin/usermanagement/
|
161
|
+
import wcfb9aa542fd414c5f8468aa0ad67d11f7 from './ux/admin/usermanagement/shared/UserDetailBlade';
|
162
162
|
import wc6f3f70caafc54724b3f8405986a21717 from './ux/admin/usermanagement/users/pending_approval/Journey';
|
163
163
|
import wc4c9410c586ff49a6a493f8a35bb3f990 from './ux/admin/usermanagement/authentication/BusinessProfileAuthentication';
|
164
164
|
import wca7dfb3df024c49aca5f06dfd46c2ab65 from './ux/admin/usermanagement/users/delete/Journey';
|
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.232-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": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.232-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|