@omnia/fx 8.0.62-vnext → 8.0.63-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/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,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.63-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.63-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|