@omnia/fx-models 7.10.0-preview.28 → 7.10.0-preview.29
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/ManifestIds.d.ts +1 -0
- package/ManifestIds.js +3 -0
- package/package.json +1 -1
- package/ux/WCAGPageCheckerApi.d.ts +21 -0
- package/ux/WCAGPageCheckerApi.js +2 -0
- package/ux/index.d.ts +1 -0
- package/ux/index.js +1 -0
package/ManifestIds.d.ts
CHANGED
|
@@ -81,6 +81,7 @@ export declare class OmniaResourceManifests {
|
|
|
81
81
|
static get ActionHandlerEvents(): Guid;
|
|
82
82
|
static get LikeTopicIdProviderRegistration(): Guid;
|
|
83
83
|
static get LinkHandlerRegistration(): Guid;
|
|
84
|
+
static get WCAGPageCheckerContext(): Guid;
|
|
84
85
|
static get EnterpriseGlossaryRegistrationApi(): Guid;
|
|
85
86
|
static get AppProvisioningValidatorApi(): Guid;
|
|
86
87
|
static get SidePanelRegistrationApi(): Guid;
|
package/ManifestIds.js
CHANGED
|
@@ -271,6 +271,9 @@ class OmniaResourceManifests {
|
|
|
271
271
|
static get LinkHandlerRegistration() {
|
|
272
272
|
return new models_1.Guid("34cf3a27-5b97-4555-8695-a92e8c16d7e1");
|
|
273
273
|
}
|
|
274
|
+
static get WCAGPageCheckerContext() {
|
|
275
|
+
return new models_1.Guid("33548668-eff6-49d1-8fbd-a34b372abb83");
|
|
276
|
+
}
|
|
274
277
|
static get EnterpriseGlossaryRegistrationApi() {
|
|
275
278
|
return new models_1.Guid("248d7062-6ed7-4f1c-bb5e-3b78f765a107");
|
|
276
279
|
}
|
package/package.json
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ApiPath } from "../Extends";
|
|
2
|
+
export interface IWCAGPageCheckerApi {
|
|
3
|
+
context: Promise<IWCAGPageCheckerContextApi>;
|
|
4
|
+
}
|
|
5
|
+
declare module "./UxApi" {
|
|
6
|
+
interface IOmniaUxApi {
|
|
7
|
+
wcag: {
|
|
8
|
+
pageChecker: IWCAGPageCheckerApi;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
interface IOmniaUxExtendApiManifest {
|
|
12
|
+
wcag: {
|
|
13
|
+
pageChecker: {
|
|
14
|
+
context: ApiPath;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export interface IWCAGPageCheckerContextApi {
|
|
20
|
+
initializeInstance(elementToCheck: string, lang?: string): Promise<void>;
|
|
21
|
+
}
|
package/ux/index.d.ts
CHANGED
package/ux/index.js
CHANGED
|
@@ -22,3 +22,4 @@ tslib_1.__exportStar(require("./EnterprisePropertyToPropertySettingMappingApi"),
|
|
|
22
22
|
tslib_1.__exportStar(require("./MediaGalleryApi"), exports);
|
|
23
23
|
tslib_1.__exportStar(require("./MediaPickerFileHandlerApi"), exports);
|
|
24
24
|
tslib_1.__exportStar(require("./BlockGalleryApi"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./WCAGPageCheckerApi"), exports);
|