@omnia/fx 8.0.62-vnext → 8.0.64-vnext
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/Guid.js +1 -1
- package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/models/Validation.d.ts +7 -5
- package/internal-do-not-import-from-here/ux/models/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/permissioninput/PermissionInput.d.ts +25 -0
- package/internal-do-not-import-from-here/ux/use/UseValidation.d.ts +3 -3
- package/package.json +2 -2
@@ -59,7 +59,7 @@ class Guid {
|
|
59
59
|
Guid._empty = new Guid("00000000-0000-0000-0000-000000000000");
|
60
60
|
exports.Guid = Guid;
|
61
61
|
// only add extension methods when running in browser, not in node.js
|
62
|
-
if (globalThis.omnia
|
62
|
+
if (globalThis.omnia) {
|
63
63
|
Object.defineProperty(String.prototype["equals"], "guid", {
|
64
64
|
value: function () {
|
65
65
|
return function (value) {
|
@@ -2,7 +2,7 @@ import { ComputedOptions, MethodOptions, ComponentOptionsMixin, EmitsOptions, Co
|
|
2
2
|
import { LooseRequired, UnionToIntersection, Prettify } from "@vue/shared";
|
3
3
|
import { ThemeableComponentProps, WebComponentBundleManifest } from "@omnia/fx-models";
|
4
4
|
import { useColorSchemaSetup, useBlueprintSetup } from "./use";
|
5
|
-
import {
|
5
|
+
import { IValidatorBase } from "./models/Validation";
|
6
6
|
export declare function definePropFunctionType<T>(): PropType<T>;
|
7
7
|
export declare function definePropObjectType<T>(): PropType<T>;
|
8
8
|
type IfAny<T, Y, N> = 0 extends 1 & T ? Y : N;
|
@@ -97,7 +97,7 @@ type SetupContext<Props, E = EmitsOptions> = E extends any ? {
|
|
97
97
|
models?: Required<ExtractPropModels<Props>>;
|
98
98
|
colors: ReturnType<typeof useColorSchemaSetup>;
|
99
99
|
blueprints: ReturnType<typeof useBlueprintSetup>;
|
100
|
-
validator:
|
100
|
+
validator: IValidatorBase;
|
101
101
|
emit: EmitFn<E>;
|
102
102
|
expose: (exposed?: Record<string, any>) => void;
|
103
103
|
} : never;
|
@@ -6,10 +6,15 @@ export interface IValidationScope {
|
|
6
6
|
validate(): Promise<boolean>;
|
7
7
|
resetValidation(): void;
|
8
8
|
}
|
9
|
-
export interface
|
9
|
+
export interface IValidatorBase extends IValidationScope {
|
10
10
|
createRules(): IValidationRuleBuilder;
|
11
11
|
overrideValidate(func: () => Promise<boolean>): any;
|
12
12
|
}
|
13
|
+
export interface IPublicValidator extends IValidatorBase {
|
14
|
+
register(validation: IValidationScope): any;
|
15
|
+
unregister(validation: IValidationScope): any;
|
16
|
+
destroy(): any;
|
17
|
+
}
|
13
18
|
export interface IValidationRuleBuilder {
|
14
19
|
require<T>(this: T, customMessage?: string): Omit<T, "require">;
|
15
20
|
number<T>(this: T, customMessage?: string): Omit<T, "number">;
|
@@ -20,9 +25,6 @@ export interface IValidationRuleBuilder {
|
|
20
25
|
custom<T>(this: T, callback: ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>)): Omit<T, "custom">;
|
21
26
|
done(): ValidationRule[];
|
22
27
|
}
|
23
|
-
export interface IInternalValidator extends
|
28
|
+
export interface IInternalValidator extends IPublicValidator {
|
24
29
|
builtinValidate(): Promise<boolean>;
|
25
|
-
register(validation: IValidationScope): any;
|
26
|
-
unregister(validation: IValidationScope): any;
|
27
|
-
destroy(): any;
|
28
30
|
}
|
@@ -49,4 +49,4 @@ export * from "./QueryablePropertiesStyles";
|
|
49
49
|
export * from "./SidePanelStyles";
|
50
50
|
export * from "./SharePointVideoSettingsStyles";
|
51
51
|
export * from "./DataTable";
|
52
|
-
export { type IValidationRuleBuilder, type IValidationScope, type IValidator, type ValidationRule, type ValidationResult } from "./Validation";
|
52
|
+
export { type IValidationRuleBuilder, type IValidationScope, type IValidatorBase as IValidator, type ValidationRule, type ValidationResult } from "./Validation";
|
@@ -1,4 +1,7 @@
|
|
1
1
|
import { GuidValue, PermissionBinding, PermissionInputSettings, RolePermissionSetting } from "@omnia/fx-models";
|
2
|
+
export interface IPermissionInputApi {
|
3
|
+
save(): Promise<boolean>;
|
4
|
+
}
|
2
5
|
declare const _default: {
|
3
6
|
new (...args: any[]): {
|
4
7
|
$: import("vue").ComponentInternalInstance;
|
@@ -51,6 +54,8 @@ declare const _default: {
|
|
51
54
|
}>) => void)[];
|
52
55
|
readonly disabled?: boolean;
|
53
56
|
readonly settings?: PermissionInputSettings;
|
57
|
+
readonly getApi?: (api: IPermissionInputApi) => void;
|
58
|
+
readonly "get-api"?: (api: IPermissionInputApi) => void;
|
54
59
|
readonly contextParams?: {
|
55
60
|
[key: string]: string | number;
|
56
61
|
};
|
@@ -135,6 +140,12 @@ declare const _default: {
|
|
135
140
|
} & {
|
136
141
|
type: import("vue").PropType<PermissionInputSettings>;
|
137
142
|
};
|
143
|
+
"get-api": {
|
144
|
+
type: import("vue").PropType<(api: IPermissionInputApi) => void>;
|
145
|
+
};
|
146
|
+
getApi: {
|
147
|
+
type: import("vue").PropType<(api: IPermissionInputApi) => void>;
|
148
|
+
};
|
138
149
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
139
150
|
beforeCreate?: (() => void) | (() => void)[];
|
140
151
|
created?: (() => void) | (() => void)[];
|
@@ -207,6 +218,12 @@ declare const _default: {
|
|
207
218
|
} & {
|
208
219
|
type: import("vue").PropType<PermissionInputSettings>;
|
209
220
|
};
|
221
|
+
"get-api": {
|
222
|
+
type: import("vue").PropType<(api: IPermissionInputApi) => void>;
|
223
|
+
};
|
224
|
+
getApi: {
|
225
|
+
type: import("vue").PropType<(api: IPermissionInputApi) => void>;
|
226
|
+
};
|
210
227
|
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
211
228
|
__isFragment?: never;
|
212
229
|
__isTeleport?: never;
|
@@ -263,11 +280,19 @@ declare const _default: {
|
|
263
280
|
} & {
|
264
281
|
type: import("vue").PropType<PermissionInputSettings>;
|
265
282
|
};
|
283
|
+
"get-api": {
|
284
|
+
type: import("vue").PropType<(api: IPermissionInputApi) => void>;
|
285
|
+
};
|
286
|
+
getApi: {
|
287
|
+
type: import("vue").PropType<(api: IPermissionInputApi) => void>;
|
288
|
+
};
|
266
289
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
267
290
|
propsDefinition: Omit<Readonly<{} & {
|
268
291
|
serviceId?: unknown;
|
269
292
|
disabled?: boolean;
|
270
293
|
settings?: PermissionInputSettings;
|
294
|
+
getApi?: (api: IPermissionInputApi) => void;
|
295
|
+
"get-api"?: (api: IPermissionInputApi) => void;
|
271
296
|
contextParams?: {
|
272
297
|
[key: string]: string | number;
|
273
298
|
};
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { IInternalValidator,
|
2
|
-
export declare function createValidator():
|
1
|
+
import { IInternalValidator, IPublicValidator, IValidatorBase } from "../models/Validation";
|
2
|
+
export declare function createValidator(): IPublicValidator;
|
3
3
|
export declare function useInternalValidator(): {
|
4
|
-
setValidator: (validator:
|
4
|
+
setValidator: (validator: IValidatorBase) => void;
|
5
5
|
validator: IInternalValidator;
|
6
6
|
};
|
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.64-vnext",
|
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.64-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|