ees-jsoneditor 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/LICENSE +21 -0
- package/README.md +183 -0
- package/angular.json +169 -0
- package/e2e/app.e2e-spec.ts +17 -0
- package/e2e/app.po.ts +11 -0
- package/e2e/tsconfig.e2e.json +12 -0
- package/package.json +79 -0
- package/projects/ees-jsoneditor/.eslintrc.json +37 -0
- package/projects/ees-jsoneditor/README.md +200 -0
- package/projects/ees-jsoneditor/ng-package.json +7 -0
- package/projects/ees-jsoneditor/package.json +27 -0
- package/projects/ees-jsoneditor/src/lib/jsoneditor.component.spec.ts +25 -0
- package/projects/ees-jsoneditor/src/lib/jsoneditor.component.ts +269 -0
- package/projects/ees-jsoneditor/src/lib/jsoneditoroptions.ts +166 -0
- package/projects/ees-jsoneditor/src/public-api.ts +6 -0
- package/projects/ees-jsoneditor/tsconfig.lib.json +14 -0
- package/projects/ees-jsoneditor/tsconfig.lib.prod.json +10 -0
- package/projects/ees-jsoneditor/tsconfig.spec.json +14 -0
- package/renovate.json +38 -0
- package/src/app/app.component.css +0 -0
- package/src/app/app.component.html +6 -0
- package/src/app/app.component.spec.ts +27 -0
- package/src/app/app.component.ts +13 -0
- package/src/app/app.config.ts +8 -0
- package/src/app/app.routes.ts +7 -0
- package/src/app/demo/demo.component.css +1 -0
- package/src/app/demo/demo.component.html +65 -0
- package/src/app/demo/demo.component.spec.ts +31 -0
- package/src/app/demo/demo.component.ts +211 -0
- package/src/app/demo/schema.value.ts +111 -0
- package/src/app/demo/show.component.ts +15 -0
- package/src/assets/.gitkeep +0 -0
- package/src/assets/printDemo.png +0 -0
- package/src/environments/environment.prod.ts +3 -0
- package/src/environments/environment.ts +8 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +14 -0
- package/src/main.ts +6 -0
- package/src/styles.scss +2 -0
- package/tsconfig.app.json +14 -0
- package/tsconfig.json +39 -0
- package/tsconfig.spec.json +14 -0
package/tsconfig.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
+
{
|
|
3
|
+
"compileOnSave": false,
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"paths": {
|
|
6
|
+
"ees-jsoneditor": [
|
|
7
|
+
"./dist/ees-jsoneditor"
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
"outDir": "./dist/out-tsc",
|
|
11
|
+
"forceConsistentCasingInFileNames": true,
|
|
12
|
+
"strict": true,
|
|
13
|
+
"noImplicitAny": false,
|
|
14
|
+
"noImplicitOverride": true,
|
|
15
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
16
|
+
"strictPropertyInitialization": false,
|
|
17
|
+
"noImplicitReturns": true,
|
|
18
|
+
"noFallthroughCasesInSwitch": true,
|
|
19
|
+
"esModuleInterop": true,
|
|
20
|
+
"sourceMap": true,
|
|
21
|
+
"declaration": false,
|
|
22
|
+
"experimentalDecorators": true,
|
|
23
|
+
"moduleResolution": "bundler",
|
|
24
|
+
"importHelpers": true,
|
|
25
|
+
"target": "ES2022",
|
|
26
|
+
"module": "ES2022",
|
|
27
|
+
"useDefineForClassFields": false,
|
|
28
|
+
"lib": [
|
|
29
|
+
"ES2022",
|
|
30
|
+
"dom"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
"angularCompilerOptions": {
|
|
34
|
+
"enableI18nLegacyMessageIdFormat": false,
|
|
35
|
+
"strictInjectionParameters": true,
|
|
36
|
+
"strictInputAccessModifiers": true,
|
|
37
|
+
"strictTemplates": true
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
+
{
|
|
3
|
+
"extends": "./tsconfig.json",
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"outDir": "./out-tsc/spec",
|
|
6
|
+
"types": [
|
|
7
|
+
"jasmine"
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"src/**/*.spec.ts",
|
|
12
|
+
"src/**/*.d.ts"
|
|
13
|
+
]
|
|
14
|
+
}
|