@microsoft/sp-module-interfaces 1.20.1 → 1.21.0-beta.0
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/dist/index-internal-beta.d.ts +47 -1
- package/dist/index-internal-public.d.ts +8 -1
- package/dist/index-internal.d.ts +748 -15
- package/dist/tsdoc-metadata.json +1 -1
- package/lib-commonjs/index.d.ts +1 -0
- package/lib-commonjs/index.d.ts.map +1 -1
- package/lib-commonjs/index.js +1 -0
- package/lib-commonjs/manifestSchemaValidator.d.ts +3 -0
- package/lib-commonjs/manifestSchemaValidator.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemaValidator.js +52 -1
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts +6 -0
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts +35 -0
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.js +1 -1
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.d.ts +76 -0
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.d.ts.map +1 -0
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.js +3 -0
- package/lib-commonjs/manifestSchemas/ManifestType.js +1 -1
- package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.d.ts +4 -0
- package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.d.ts.map +1 -0
- package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.js +334 -0
- package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.d.ts +4 -0
- package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.d.ts.map +1 -0
- package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.js +339 -0
- package/lib-commonjs/manifestSchemas/examples/prefabapp.manifest.json +345 -0
- package/lib-commonjs/manifestSchemas/jsonSchemas/adaptive-card-extension-manifest.schema.json +8 -0
- package/lib-commonjs/manifestSchemas/jsonSchemas/client-side-component-manifest.schema.json +5 -2
- package/lib-commonjs/manifestSchemas/jsonSchemas/client-side-web-part-manifest.schema.json +23 -0
- package/lib-commonjs/manifestSchemas/jsonSchemas/localized-string.schema.json +6 -10
- package/lib-commonjs/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +72 -0
- package/lib-commonjs/manifestSchemas/remote/draft-04.schema.json +137 -0
- package/lib-commonjs/manifestSchemas/remote/site-design-script-actions.schema.json +1158 -0
- package/package.json +9 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/sp-module-interfaces",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.0-beta.0",
|
|
4
4
|
"description": "SharePoint Framework module interfaces",
|
|
5
5
|
"license": "https://aka.ms/spfx/license",
|
|
6
6
|
"homepage": "http://aka.ms/spfx",
|
|
@@ -14,21 +14,22 @@
|
|
|
14
14
|
"tsdocFlavor": "AEDoc"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@rushstack/node-core-library": "
|
|
18
|
-
"z-schema": "
|
|
17
|
+
"@rushstack/node-core-library": "5.10.2",
|
|
18
|
+
"z-schema": "6.0.2"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@rushstack/heft": "0.
|
|
22
|
-
"eslint": "8.
|
|
21
|
+
"@rushstack/heft": "0.68.13",
|
|
22
|
+
"eslint": "8.57.1",
|
|
23
23
|
"@odsp-web-tools/internal-node-rig": "0.1.0"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "heft test --clean",
|
|
27
27
|
"test": "heft run --only test",
|
|
28
28
|
"test-watch": "heft test-watch",
|
|
29
|
-
"_phase:
|
|
29
|
+
"_phase:depscan": "heft depscan",
|
|
30
30
|
"_phase:test": "heft run --only test -- --clean",
|
|
31
|
-
"_phase:
|
|
32
|
-
"_phase:
|
|
31
|
+
"_phase:test:incremental": "heft run --only test --",
|
|
32
|
+
"_phase:tool-build": "heft run --only build -- --clean",
|
|
33
|
+
"_phase:tool-build:incremental": "heft run --only build --"
|
|
33
34
|
}
|
|
34
35
|
}
|