@adobe/create-ccweb-add-on 1.3.0 → 2.0.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/app/WxpAddOnFactory.js +1 -1
- package/dist/commands/create.d.ts +0 -3
- package/dist/commands/create.d.ts.map +1 -1
- package/dist/commands/create.js +1 -17
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +6 -3
- package/dist/templates/javascript-with-document-sandbox/template/src/sandbox/tsconfig.json +1 -1
- package/dist/templates/react-javascript-with-document-sandbox/template/src/sandbox/tsconfig.json +1 -1
- package/dist/templates/react-typescript/template/src/index.html +2 -2
- package/dist/templates/react-typescript-with-document-sandbox/template/src/sandbox/tsconfig.json +1 -1
- package/dist/templates/swc-javascript/template/.babelrc +6 -0
- package/dist/templates/{typescript-with-document-sandbox → swc-javascript}/template/README.md +3 -2
- package/dist/templates/swc-javascript/template/src/components/App.js +42 -0
- package/dist/templates/{typescript-with-document-sandbox → swc-javascript}/template/src/index.html +2 -2
- package/dist/templates/swc-javascript/template/src/index.js +23 -0
- package/dist/templates/swc-javascript/template/tsconfig.json +14 -0
- package/dist/templates/swc-javascript/template/webpack.config.js +46 -0
- package/dist/templates/swc-javascript/template.json +24 -0
- package/dist/templates/swc-javascript-with-document-sandbox/template/.babelrc +6 -0
- package/dist/templates/swc-javascript-with-document-sandbox/template/README.md +16 -0
- package/dist/templates/swc-javascript-with-document-sandbox/template/src/index.html +19 -0
- package/dist/templates/swc-javascript-with-document-sandbox/template/src/sandbox/code.js +38 -0
- package/{templates/typescript-with-document-sandbox → dist/templates/swc-javascript-with-document-sandbox}/template/src/sandbox/tsconfig.json +1 -1
- package/dist/templates/swc-javascript-with-document-sandbox/template/src/ui/components/App.js +54 -0
- package/dist/templates/swc-javascript-with-document-sandbox/template/src/ui/index.js +23 -0
- package/dist/templates/swc-javascript-with-document-sandbox/template/tsconfig.json +14 -0
- package/dist/templates/swc-javascript-with-document-sandbox/template/webpack.config.js +54 -0
- package/dist/templates/swc-javascript-with-document-sandbox/template.json +24 -0
- package/{templates/typescript-with-document-sandbox → dist/templates/swc-typescript}/template/README.md +2 -1
- package/dist/templates/swc-typescript/template/gitignore +3 -0
- package/{templates/typescript-with-document-sandbox → dist/templates/swc-typescript}/template/src/index.html +2 -2
- package/dist/templates/swc-typescript-with-document-sandbox/template/README.md +16 -0
- package/dist/templates/swc-typescript-with-document-sandbox/template/src/index.html +19 -0
- package/dist/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template/src/sandbox/tsconfig.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/validators/AddOnDirectoryValidator.d.ts.map +1 -1
- package/dist/validators/AddOnDirectoryValidator.js +2 -1
- package/package.json +78 -79
- package/src/app/WxpAddOnFactory.ts +1 -1
- package/src/commands/create.ts +2 -23
- package/src/constants.ts +6 -3
- package/src/test/app/WxpAddOnFactory.spec.ts +1 -1
- package/src/test/commands/create.spec.ts +2 -26
- package/src/test/validators/AddOnDirectoryValidator.spec.ts +6 -3
- package/src/validators/AddOnDirectoryValidator.ts +2 -1
- package/templates/javascript-with-document-sandbox/template/src/sandbox/tsconfig.json +1 -1
- package/templates/react-javascript-with-document-sandbox/template/src/sandbox/tsconfig.json +1 -1
- package/templates/react-typescript/template/src/index.html +2 -2
- package/templates/react-typescript-with-document-sandbox/template/src/sandbox/tsconfig.json +1 -1
- package/templates/swc-javascript/template/.babelrc +6 -0
- package/templates/{typescript → swc-javascript}/template/README.md +3 -3
- package/templates/swc-javascript/template/gitignore +3 -0
- package/templates/swc-javascript/template/src/components/App.css.js +9 -0
- package/templates/swc-javascript/template/src/components/App.js +42 -0
- package/{dist/templates/typescript → templates/swc-javascript}/template/src/index.html +5 -2
- package/templates/swc-javascript/template/src/index.js +23 -0
- package/templates/swc-javascript/template/src/manifest.json +21 -0
- package/templates/swc-javascript/template/tsconfig.json +14 -0
- package/templates/swc-javascript/template/webpack.config.js +46 -0
- package/templates/swc-javascript/template.json +24 -0
- package/templates/swc-javascript-with-document-sandbox/template/.babelrc +6 -0
- package/templates/swc-javascript-with-document-sandbox/template/README.md +16 -0
- package/templates/swc-javascript-with-document-sandbox/template/gitignore +3 -0
- package/templates/swc-javascript-with-document-sandbox/template/src/index.html +19 -0
- package/templates/swc-javascript-with-document-sandbox/template/src/manifest.json +22 -0
- package/templates/swc-javascript-with-document-sandbox/template/src/models/DocumentSandboxApi.ts +4 -0
- package/templates/swc-javascript-with-document-sandbox/template/src/sandbox/code.js +38 -0
- package/templates/swc-javascript-with-document-sandbox/template/src/sandbox/tsconfig.json +10 -0
- package/templates/swc-javascript-with-document-sandbox/template/src/ui/components/App.css.js +9 -0
- package/templates/swc-javascript-with-document-sandbox/template/src/ui/components/App.js +54 -0
- package/templates/swc-javascript-with-document-sandbox/template/src/ui/index.js +23 -0
- package/templates/swc-javascript-with-document-sandbox/template/src/ui/tsconfig.json +7 -0
- package/templates/swc-javascript-with-document-sandbox/template/tsconfig.json +14 -0
- package/templates/swc-javascript-with-document-sandbox/template/webpack.config.js +54 -0
- package/templates/swc-javascript-with-document-sandbox/template.json +24 -0
- package/{dist/templates/typescript → templates/swc-typescript}/template/README.md +2 -2
- package/templates/swc-typescript/template/gitignore +3 -0
- package/templates/swc-typescript/template/src/components/App.css.ts +9 -0
- package/templates/{typescript → swc-typescript}/template/src/index.html +5 -2
- package/templates/swc-typescript/template/src/manifest.json +21 -0
- package/templates/swc-typescript-with-document-sandbox/template/README.md +16 -0
- package/templates/swc-typescript-with-document-sandbox/template/src/index.html +19 -0
- package/templates/swc-typescript-with-document-sandbox/template/src/manifest.json +22 -0
- package/templates/swc-typescript-with-document-sandbox/template/src/models/DocumentSandboxApi.ts +4 -0
- package/templates/swc-typescript-with-document-sandbox/template/src/sandbox/tsconfig.json +10 -0
- package/templates/swc-typescript-with-document-sandbox/template/src/ui/components/App.css.ts +9 -0
- package/templates/swc-typescript-with-document-sandbox/template/src/ui/tsconfig.json +7 -0
- package/dist/templates/javascript/template/src/add-on-ui-sdk.d.ts +0 -7
- package/dist/templates/javascript-with-document-sandbox/template/src/sandbox/add-on-sandbox-sdk.d.ts +0 -11
- package/dist/templates/javascript-with-document-sandbox/template/src/ui/add-on-ui-sdk.d.ts +0 -7
- package/dist/templates/react-javascript/template/src/add-on-ui-sdk.d.ts +0 -7
- package/dist/templates/react-javascript-with-document-sandbox/template/src/sandbox/add-on-sandbox-sdk.d.ts +0 -11
- package/dist/templates/react-javascript-with-document-sandbox/template/src/ui/add-on-ui-sdk.d.ts +0 -7
- package/dist/templates/react-typescript/template/src/add-on-ui-sdk.d.ts +0 -7
- package/dist/templates/react-typescript-with-document-sandbox/template/src/sandbox/add-on-sandbox-sdk.d.ts +0 -11
- package/dist/templates/react-typescript-with-document-sandbox/template/src/ui/add-on-ui-sdk.d.ts +0 -7
- package/dist/templates/typescript/template/src/add-on-ui-sdk.d.ts +0 -7
- package/dist/templates/typescript-with-document-sandbox/template/src/sandbox/add-on-sandbox-sdk.d.ts +0 -11
- package/dist/templates/typescript-with-document-sandbox/template/src/ui/add-on-ui-sdk.d.ts +0 -7
- package/templates/javascript/template/src/add-on-ui-sdk.d.ts +0 -7
- package/templates/javascript-with-document-sandbox/template/src/sandbox/add-on-sandbox-sdk.d.ts +0 -11
- package/templates/javascript-with-document-sandbox/template/src/ui/add-on-ui-sdk.d.ts +0 -7
- package/templates/react-javascript/template/src/add-on-ui-sdk.d.ts +0 -7
- package/templates/react-javascript-with-document-sandbox/template/src/sandbox/add-on-sandbox-sdk.d.ts +0 -11
- package/templates/react-javascript-with-document-sandbox/template/src/ui/add-on-ui-sdk.d.ts +0 -7
- package/templates/react-typescript/template/src/add-on-ui-sdk.d.ts +0 -7
- package/templates/react-typescript-with-document-sandbox/template/src/sandbox/add-on-sandbox-sdk.d.ts +0 -11
- package/templates/react-typescript-with-document-sandbox/template/src/ui/add-on-ui-sdk.d.ts +0 -7
- package/templates/typescript/template/src/add-on-ui-sdk.d.ts +0 -7
- package/templates/typescript-with-document-sandbox/template/src/sandbox/add-on-sandbox-sdk.d.ts +0 -11
- package/templates/typescript-with-document-sandbox/template/src/ui/add-on-ui-sdk.d.ts +0 -7
- /package/{templates/typescript → dist/templates/swc-javascript}/template/gitignore +0 -0
- /package/dist/templates/{typescript/template/src/components/App.css.ts → swc-javascript/template/src/components/App.css.js} +0 -0
- /package/dist/templates/{typescript → swc-javascript}/template/src/manifest.json +0 -0
- /package/dist/templates/{typescript → swc-javascript-with-document-sandbox}/template/gitignore +0 -0
- /package/dist/templates/{typescript-with-document-sandbox → swc-javascript-with-document-sandbox}/template/src/manifest.json +0 -0
- /package/dist/templates/{typescript-with-document-sandbox → swc-javascript-with-document-sandbox}/template/src/models/DocumentSandboxApi.ts +0 -0
- /package/dist/templates/{typescript-with-document-sandbox/template/src/ui/components/App.css.ts → swc-javascript-with-document-sandbox/template/src/ui/components/App.css.js} +0 -0
- /package/dist/templates/{typescript-with-document-sandbox → swc-javascript-with-document-sandbox}/template/src/ui/tsconfig.json +0 -0
- /package/{templates/typescript → dist/templates/swc-typescript}/template/src/components/App.css.ts +0 -0
- /package/dist/templates/{typescript → swc-typescript}/template/src/components/App.ts +0 -0
- /package/dist/templates/{typescript → swc-typescript}/template/src/index.ts +0 -0
- /package/{templates/typescript → dist/templates/swc-typescript}/template/src/manifest.json +0 -0
- /package/dist/templates/{typescript → swc-typescript}/template/tsconfig.json +0 -0
- /package/dist/templates/{typescript → swc-typescript}/template/webpack.config.js +0 -0
- /package/dist/templates/{typescript → swc-typescript}/template.json +0 -0
- /package/dist/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template/gitignore +0 -0
- /package/{templates/typescript-with-document-sandbox → dist/templates/swc-typescript-with-document-sandbox}/template/src/manifest.json +0 -0
- /package/{templates/typescript-with-document-sandbox → dist/templates/swc-typescript-with-document-sandbox}/template/src/models/DocumentSandboxApi.ts +0 -0
- /package/dist/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template/src/sandbox/code.ts +0 -0
- /package/{templates/typescript-with-document-sandbox → dist/templates/swc-typescript-with-document-sandbox}/template/src/ui/components/App.css.ts +0 -0
- /package/dist/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template/src/ui/components/App.ts +0 -0
- /package/dist/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template/src/ui/index.ts +0 -0
- /package/{templates/typescript-with-document-sandbox → dist/templates/swc-typescript-with-document-sandbox}/template/src/ui/tsconfig.json +0 -0
- /package/dist/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template/tsconfig.json +0 -0
- /package/dist/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template/webpack.config.js +0 -0
- /package/dist/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template.json +0 -0
- /package/templates/{typescript → swc-typescript}/template/src/components/App.ts +0 -0
- /package/templates/{typescript → swc-typescript}/template/src/index.ts +0 -0
- /package/templates/{typescript → swc-typescript}/template/tsconfig.json +0 -0
- /package/templates/{typescript → swc-typescript}/template/webpack.config.js +0 -0
- /package/templates/{typescript → swc-typescript}/template.json +0 -0
- /package/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template/gitignore +0 -0
- /package/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template/src/sandbox/code.ts +0 -0
- /package/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template/src/ui/components/App.ts +0 -0
- /package/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template/src/ui/index.ts +0 -0
- /package/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template/tsconfig.json +0 -0
- /package/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template/webpack.config.js +0 -0
- /package/templates/{typescript-with-document-sandbox → swc-typescript-with-document-sandbox}/template.json +0 -0
package/dist/templates/react-typescript-with-document-sandbox/template/src/ui/add-on-ui-sdk.d.ts
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "https://new.express.adobe.com/static/add-on-sdk/sdk.js" {
|
|
4
|
-
import { AddOnUISdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnUISdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/ui/ui-sdk";
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "https://new.express.adobe.com/static/add-on-sdk/sdk.js" {
|
|
4
|
-
import { AddOnUISdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnUISdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/ui/ui-sdk";
|
|
7
|
-
}
|
package/dist/templates/typescript-with-document-sandbox/template/src/sandbox/add-on-sandbox-sdk.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "add-on-sdk-document-sandbox" {
|
|
4
|
-
import { AddOnDocumentSandboxSdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnDocumentSandboxSdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/sandbox/add-on-sdk-document-sandbox";
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
declare module "express-document-sdk" {
|
|
10
|
-
export * from "@adobe/ccweb-add-on-sdk-types/sandbox/express-document-sdk";
|
|
11
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "https://new.express.adobe.com/static/add-on-sdk/sdk.js" {
|
|
4
|
-
import { AddOnUISdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnUISdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/ui/ui-sdk";
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "https://new.express.adobe.com/static/add-on-sdk/sdk.js" {
|
|
4
|
-
import { AddOnUISdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnUISdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/ui/ui-sdk";
|
|
7
|
-
}
|
package/templates/javascript-with-document-sandbox/template/src/sandbox/add-on-sandbox-sdk.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "add-on-sdk-document-sandbox" {
|
|
4
|
-
import { AddOnDocumentSandboxSdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnDocumentSandboxSdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/sandbox/add-on-sdk-document-sandbox";
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
declare module "express-document-sdk" {
|
|
10
|
-
export * from "@adobe/ccweb-add-on-sdk-types/sandbox/express-document-sdk";
|
|
11
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "https://new.express.adobe.com/static/add-on-sdk/sdk.js" {
|
|
4
|
-
import { AddOnUISdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnUISdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/ui/ui-sdk";
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "https://new.express.adobe.com/static/add-on-sdk/sdk.js" {
|
|
4
|
-
import { AddOnUISdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnUISdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/ui/ui-sdk";
|
|
7
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "add-on-sdk-document-sandbox" {
|
|
4
|
-
import { AddOnDocumentSandboxSdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnDocumentSandboxSdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/sandbox/add-on-sdk-document-sandbox";
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
declare module "express-document-sdk" {
|
|
10
|
-
export * from "@adobe/ccweb-add-on-sdk-types/sandbox/express-document-sdk";
|
|
11
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "https://new.express.adobe.com/static/add-on-sdk/sdk.js" {
|
|
4
|
-
import { AddOnUISdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnUISdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/ui/ui-sdk";
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "https://new.express.adobe.com/static/add-on-sdk/sdk.js" {
|
|
4
|
-
import { AddOnUISdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnUISdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/ui/ui-sdk";
|
|
7
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "add-on-sdk-document-sandbox" {
|
|
4
|
-
import { AddOnDocumentSandboxSdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnDocumentSandboxSdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/sandbox/add-on-sdk-document-sandbox";
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
declare module "express-document-sdk" {
|
|
10
|
-
export * from "@adobe/ccweb-add-on-sdk-types/sandbox/express-document-sdk";
|
|
11
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "https://new.express.adobe.com/static/add-on-sdk/sdk.js" {
|
|
4
|
-
import { AddOnUISdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnUISdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/ui/ui-sdk";
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "https://new.express.adobe.com/static/add-on-sdk/sdk.js" {
|
|
4
|
-
import { AddOnUISdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnUISdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/ui/ui-sdk";
|
|
7
|
-
}
|
package/templates/typescript-with-document-sandbox/template/src/sandbox/add-on-sandbox-sdk.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "add-on-sdk-document-sandbox" {
|
|
4
|
-
import { AddOnDocumentSandboxSdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnDocumentSandboxSdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/sandbox/add-on-sdk-document-sandbox";
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
declare module "express-document-sdk" {
|
|
10
|
-
export * from "@adobe/ccweb-add-on-sdk-types/sandbox/express-document-sdk";
|
|
11
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// DO NOT modify this file.
|
|
2
|
-
|
|
3
|
-
declare module "https://new.express.adobe.com/static/add-on-sdk/sdk.js" {
|
|
4
|
-
import { AddOnUISdkTypes } from "@adobe/ccweb-add-on-sdk-types";
|
|
5
|
-
export default AddOnUISdkTypes.default;
|
|
6
|
-
export * from "@adobe/ccweb-add-on-sdk-types/ui/ui-sdk";
|
|
7
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/templates/{typescript → swc-javascript-with-document-sandbox}/template/gitignore
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{templates/typescript → dist/templates/swc-typescript}/template/src/components/App.css.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|