@zeedhi/teknisa-cli 1.107.2 → 1.108.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.
Files changed (93) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +5 -5
  3. package/bin/teknisa.js +117 -117
  4. package/package.json +2 -2
  5. package/src/create.js +118 -118
  6. package/src/generate.js +20 -20
  7. package/src/util/component/createEmptyComponent.js +145 -145
  8. package/src/util/component/createJest.js +19 -19
  9. package/src/util/component/createNpmignore.js +14 -14
  10. package/src/util/component/createPackage.js +52 -52
  11. package/src/util/component/createReadme.js +15 -15
  12. package/src/util/component/createRollup.js +15 -15
  13. package/src/util/component/createTsConfig.js +24 -24
  14. package/src/util/component/createTsLint.js +18 -18
  15. package/src/util/component/run.js +54 -54
  16. package/src/util/enhanceErrorMessages.js +13 -13
  17. package/src/util/project/editCliVersion.js +17 -17
  18. package/src/util/project/editPackageJson.js +19 -19
  19. package/src/util/project/module/.env.development +1 -1
  20. package/src/util/project/module/.env.production +1 -1
  21. package/src/util/project/module/.eslintrc.js +40 -40
  22. package/src/util/project/module/GruntFile.js +15 -15
  23. package/src/util/project/module/README.md +22 -22
  24. package/src/util/project/module/cliVersion.json +2 -2
  25. package/src/util/project/module/gitignore.template +21 -21
  26. package/src/util/project/module/package.json +68 -68
  27. package/src/util/project/module/postcss.config.js +5 -5
  28. package/src/util/project/module/public/index.html +17 -17
  29. package/src/util/project/module/public/metadata/notfound.json +14 -14
  30. package/src/util/project/module/public/metadata/unauthorized.json +14 -14
  31. package/src/util/project/module/public/robots.txt +2 -2
  32. package/src/util/project/module/src/App.vue +134 -134
  33. package/src/util/project/module/src/config/config.ts +17 -17
  34. package/src/util/project/module/src/config/devEnvironment.json +4 -4
  35. package/src/util/project/module/src/config/prodEnvironment.json +3 -3
  36. package/src/util/project/module/src/controllers/AppController.ts +5 -5
  37. package/src/util/project/module/src/controllers/index.ts +5 -5
  38. package/src/util/project/module/src/main.ts +17 -17
  39. package/src/util/project/module/src/plugins/index.ts +6 -6
  40. package/src/util/project/module/src/plugins/vuetify.ts +11 -11
  41. package/src/util/project/module/src/plugins/zeedhi.ts +50 -50
  42. package/src/util/project/module/src/registerServiceWorker.ts +32 -32
  43. package/src/util/project/module/src/shims-tsx.d.ts +13 -13
  44. package/src/util/project/module/src/shims-vue.d.ts +5 -5
  45. package/src/util/project/module/src/theme/index.ts +12 -12
  46. package/src/util/project/module/tsconfig.json +45 -45
  47. package/src/util/project/module/vue.config.js +107 -107
  48. package/src/util/project/product/.env.development +3 -3
  49. package/src/util/project/product/.env.production +2 -2
  50. package/src/util/project/product/.eslintrc.js +41 -41
  51. package/src/util/project/product/GruntFile.js +15 -15
  52. package/src/util/project/product/README.md +22 -22
  53. package/src/util/project/product/cliVersion.json +2 -2
  54. package/src/util/project/product/gitignore.template +21 -21
  55. package/src/util/project/product/package.json +69 -69
  56. package/src/util/project/product/postcss.config.js +5 -5
  57. package/src/util/project/product/public/assets/img/icons/safari-pinned-tab.svg +33 -33
  58. package/src/util/project/product/public/assets/img/image-not-found.svg +3 -3
  59. package/src/util/project/product/public/index.html +19 -19
  60. package/src/util/project/product/public/metadata/home.json +63 -63
  61. package/src/util/project/product/public/metadata/login.json +6 -6
  62. package/src/util/project/product/public/metadata/menu.json +28 -28
  63. package/src/util/project/product/public/metadata/notfound.json +14 -14
  64. package/src/util/project/product/public/robots.txt +2 -2
  65. package/src/util/project/product/src/App.vue +192 -192
  66. package/src/util/project/product/src/components/img-link/ImgLink.ts +17 -17
  67. package/src/util/project/product/src/components/img-link/ImgLink.vue +7 -7
  68. package/src/util/project/product/src/components/img-link/common/ImgLink.ts +32 -32
  69. package/src/util/project/product/src/components/index.ts +4 -4
  70. package/src/util/project/product/src/config/config.ts +22 -22
  71. package/src/util/project/product/src/config/devEnvironment.json +22 -22
  72. package/src/util/project/product/src/config/prodEnvironment.json +22 -22
  73. package/src/util/project/product/src/controllers/AppController.ts +119 -119
  74. package/src/util/project/product/src/controllers/LoginController.ts +17 -17
  75. package/src/util/project/product/src/controllers/index.ts +7 -7
  76. package/src/util/project/product/src/main.ts +22 -22
  77. package/src/util/project/product/src/plugins/index.ts +11 -11
  78. package/src/util/project/product/src/plugins/vuetify.ts +11 -11
  79. package/src/util/project/product/src/plugins/zeedhi.ts +72 -72
  80. package/src/util/project/product/src/registerServiceWorker.ts +32 -32
  81. package/src/util/project/product/src/router/index.ts +76 -76
  82. package/src/util/project/product/src/router/routes.ts +37 -37
  83. package/src/util/project/product/src/shims-tsx.d.ts +13 -13
  84. package/src/util/project/product/src/shims-vue.d.ts +5 -5
  85. package/src/util/project/product/src/store.ts +26 -26
  86. package/src/util/project/product/src/theme/index.ts +10 -10
  87. package/src/util/project/product/src/views/Microservice.ts +57 -57
  88. package/src/util/project/product/src/views/Microservice.vue +13 -13
  89. package/src/util/project/product/tsconfig.json +46 -46
  90. package/src/util/project/product/vue.config.js +107 -107
  91. package/src/util/project/renameGitIgnore.js +14 -14
  92. package/src/util/project/run.js +15 -15
  93. package/src/util/validateName.js +21 -21
@@ -1,69 +1,69 @@
1
- {
2
- "version": "0.0.0",
3
- "private": true,
4
- "scripts": {
5
- "serve": "vue-cli-service serve",
6
- "build": "vue-cli-service build",
7
- "lint": "vue-cli-service lint"
8
- },
9
- "dependencies": {
10
- "@mdi/font": "^6.5.95",
11
- "@types/execa": "^2.0.0",
12
- "@types/jest": "^26.0.19",
13
- "@types/lodash.merge": "^4.6.6",
14
- "@typescript-eslint/eslint-plugin": "^4.11.1",
15
- "@typescript-eslint/parser": "^4.11.1",
16
- "@vue/cli-plugin-eslint": "^4.5.9",
17
- "@vue/cli-plugin-pwa": "^4.5.9",
18
- "@vue/cli-plugin-typescript": "^4.5.9",
19
- "@vue/cli-plugin-unit-jest": "^4.5.9",
20
- "@vue/cli-service": "^4.5.9",
21
- "@vue/test-utils": "^1.1.2",
22
- "@zeedhi/common": "^1.96.0",
23
- "@zeedhi/core": "^1.96.0",
24
- "@zeedhi/vue": "^1.96.0",
25
- "@zeedhi/vuetify": "^1.96.0",
26
- "@zeedhi/teknisa-components-common": "^1.96.0",
27
- "@zeedhi/teknisa-components-vuetify": "^1.96.0",
28
- "@zeedhi/tek-lib": "*",
29
- "@zeedhi/zd-avatar": "^1.6.0",
30
- "babel-loader": "^8.2.5",
31
- "eslint": "^7.16.0",
32
- "eslint-config-airbnb-typescript": "^12.0.0",
33
- "eslint-plugin-import": "2.22.1",
34
- "eslint-plugin-vue": "^7.4.0",
35
- "execa": "^5.0.0",
36
- "fs": "^0.0.2",
37
- "fs-extra": "^9.0.1",
38
- "register-service-worker": "^1.7.2",
39
- "roboto-fontface": "^0.10.0",
40
- "sass": "^1.32.8",
41
- "sass-loader": "^10.1.1",
42
- "ts-jest": "^26.4.4",
43
- "typescript": "^3.9.7",
44
- "vue": "^2.6.12",
45
- "vue-class-component": "^7.2.6",
46
- "vue-property-decorator": "^9.1.2",
47
- "vue-router": "^3.4.9",
48
- "vue-runtime-helpers": "^1.1.2",
49
- "vue-template-compiler": "^2.6.12",
50
- "vuetify": "^2.4.0",
51
- "vuex": "^3.6.0",
52
- "@babel/plugin-proposal-class-properties": "^7.14.5",
53
- "@babel/plugin-proposal-decorators": "^7.14.5",
54
- "grunt": "^0.4.0",
55
- "grunt-zh-environment-builder": "^0.1.0",
56
- "grunt-zh-id-generator": "^0.1.0"
57
- },
58
- "gitHooks": {
59
- "pre-commit": "lint-staged"
60
- },
61
- "lint-staged": {
62
- "*.{js,jsx,vue,ts,tsx}": [
63
- "vue-cli-service lint",
64
- "git add"
65
- ]
66
- },
67
- "name": "teknisa",
68
- "description": "Powered by Zeedhi"
69
- }
1
+ {
2
+ "version": "0.0.0",
3
+ "private": true,
4
+ "scripts": {
5
+ "serve": "vue-cli-service serve",
6
+ "build": "vue-cli-service build",
7
+ "lint": "vue-cli-service lint"
8
+ },
9
+ "dependencies": {
10
+ "@mdi/font": "^6.5.95",
11
+ "@types/execa": "^2.0.0",
12
+ "@types/jest": "^26.0.19",
13
+ "@types/lodash.merge": "^4.6.6",
14
+ "@typescript-eslint/eslint-plugin": "^4.11.1",
15
+ "@typescript-eslint/parser": "^4.11.1",
16
+ "@vue/cli-plugin-eslint": "^4.5.9",
17
+ "@vue/cli-plugin-pwa": "^4.5.9",
18
+ "@vue/cli-plugin-typescript": "^4.5.9",
19
+ "@vue/cli-plugin-unit-jest": "^4.5.9",
20
+ "@vue/cli-service": "^4.5.9",
21
+ "@vue/test-utils": "^1.1.2",
22
+ "@zeedhi/common": "^1.96.0",
23
+ "@zeedhi/core": "^1.96.0",
24
+ "@zeedhi/vue": "^1.96.0",
25
+ "@zeedhi/vuetify": "^1.96.0",
26
+ "@zeedhi/teknisa-components-common": "^1.96.0",
27
+ "@zeedhi/teknisa-components-vuetify": "^1.96.0",
28
+ "@zeedhi/tek-lib": "*",
29
+ "@zeedhi/zd-avatar": "^1.6.0",
30
+ "babel-loader": "^8.2.5",
31
+ "eslint": "^7.16.0",
32
+ "eslint-config-airbnb-typescript": "^12.0.0",
33
+ "eslint-plugin-import": "2.22.1",
34
+ "eslint-plugin-vue": "^7.4.0",
35
+ "execa": "^5.0.0",
36
+ "fs": "^0.0.2",
37
+ "fs-extra": "^9.0.1",
38
+ "register-service-worker": "^1.7.2",
39
+ "roboto-fontface": "^0.10.0",
40
+ "sass": "^1.32.8",
41
+ "sass-loader": "^10.1.1",
42
+ "ts-jest": "^26.4.4",
43
+ "typescript": "^3.9.7",
44
+ "vue": "^2.6.12",
45
+ "vue-class-component": "^7.2.6",
46
+ "vue-property-decorator": "^9.1.2",
47
+ "vue-router": "^3.4.9",
48
+ "vue-runtime-helpers": "^1.1.2",
49
+ "vue-template-compiler": "^2.6.12",
50
+ "vuetify": "^2.4.0",
51
+ "vuex": "^3.6.0",
52
+ "@babel/plugin-proposal-class-properties": "^7.14.5",
53
+ "@babel/plugin-proposal-decorators": "^7.14.5",
54
+ "grunt": "^0.4.0",
55
+ "grunt-zh-environment-builder": "^0.1.0",
56
+ "grunt-zh-id-generator": "^0.1.0"
57
+ },
58
+ "gitHooks": {
59
+ "pre-commit": "lint-staged"
60
+ },
61
+ "lint-staged": {
62
+ "*.{js,jsx,vue,ts,tsx}": [
63
+ "vue-cli-service lint",
64
+ "git add"
65
+ ]
66
+ },
67
+ "name": "teknisa",
68
+ "description": "Powered by Zeedhi"
69
+ }
@@ -1,5 +1,5 @@
1
- module.exports = {
2
- plugins: {
3
- autoprefixer: {}
4
- }
5
- }
1
+ module.exports = {
2
+ plugins: {
3
+ autoprefixer: {}
4
+ }
5
+ }
@@ -1,33 +1,33 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
- <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
- width="512.000000pt" height="512.000000pt" viewBox="0 0 512.000000 512.000000"
6
- preserveAspectRatio="xMidYMid meet">
7
- <metadata>
8
- Created by potrace 1.11, written by Peter Selinger 2001-2013
9
- </metadata>
10
- <g transform="translate(0.000000,512.000000) scale(0.100000,-0.100000)"
11
- fill="#000000" stroke="none">
12
- <path d="M2380 4949 c-98 -16 -118 -20 -194 -40 -155 -39 -393 -157 -492 -244
13
- -7 -5 -38 -32 -70 -60 -201 -169 -372 -447 -439 -713 -39 -155 -43 -237 -44
14
- -924 l-1 -668 161 -2 c160 -3 160 -3 142 -23 -72 -78 -177 -276 -228 -428 -68
15
- -206 -68 -206 -72 -985 l-4 -702 265 0 266 0 1 658 c0 361 2 666 4 677 2 11 7
16
- 40 10 65 24 161 130 359 257 481 85 82 242 177 334 203 l21 6 1 -787 c0 -434
17
- 1 -793 1 -798 1 -12 498 -15 516 -3 7 4 10 276 10 797 0 787 0 791 20 785 11
18
- -3 52 -20 90 -37 269 -121 463 -385 509 -692 2 -16 5 -328 5 -692 l1 -663 265
19
- 0 265 0 -2 673 c-1 493 -5 696 -14 762 -15 99 -52 255 -66 269 -4 6 -8 16 -8
20
- 23 0 30 -100 223 -163 316 l-66 97 157 0 157 0 0 257 0 258 -24 5 c-14 3 -533
21
- 5 -1154 4 l-1128 0 3 435 4 436 27 88 c75 243 225 430 439 545 138 74 257 101
22
- 433 98 149 -3 165 -6 259 -37 288 -97 493 -310 583 -606 25 -84 27 -100 31
23
- -363 2 -151 8 -277 12 -280 6 -4 484 -5 512 -1 4 1 5 126 4 279 -3 310 -14
24
- 395 -71 568 -130 391 -427 710 -810 869 -75 31 -221 73 -315 90 -53 10 -349
25
- 13 -400 4z"/>
26
- <path d="M2072 3806 c-55 -19 -100 -62 -113 -109 -7 -26 -12 -115 -11 -233 0
27
- -173 2 -195 21 -232 60 -119 224 -127 301 -15 24 35 25 42 28 237 2 128 -1
28
- 215 -8 239 -26 90 -129 143 -218 113z"/>
29
- <path d="M2953 3806 c-54 -14 -109 -67 -119 -115 -11 -50 -12 -389 -2 -428 33
30
- -126 205 -167 295 -71 46 49 51 80 49 298 -1 200 -2 206 -26 242 -44 65 -121
31
- 94 -197 74z"/>
32
- </g>
33
- </svg>
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="512.000000pt" height="512.000000pt" viewBox="0 0 512.000000 512.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <metadata>
8
+ Created by potrace 1.11, written by Peter Selinger 2001-2013
9
+ </metadata>
10
+ <g transform="translate(0.000000,512.000000) scale(0.100000,-0.100000)"
11
+ fill="#000000" stroke="none">
12
+ <path d="M2380 4949 c-98 -16 -118 -20 -194 -40 -155 -39 -393 -157 -492 -244
13
+ -7 -5 -38 -32 -70 -60 -201 -169 -372 -447 -439 -713 -39 -155 -43 -237 -44
14
+ -924 l-1 -668 161 -2 c160 -3 160 -3 142 -23 -72 -78 -177 -276 -228 -428 -68
15
+ -206 -68 -206 -72 -985 l-4 -702 265 0 266 0 1 658 c0 361 2 666 4 677 2 11 7
16
+ 40 10 65 24 161 130 359 257 481 85 82 242 177 334 203 l21 6 1 -787 c0 -434
17
+ 1 -793 1 -798 1 -12 498 -15 516 -3 7 4 10 276 10 797 0 787 0 791 20 785 11
18
+ -3 52 -20 90 -37 269 -121 463 -385 509 -692 2 -16 5 -328 5 -692 l1 -663 265
19
+ 0 265 0 -2 673 c-1 493 -5 696 -14 762 -15 99 -52 255 -66 269 -4 6 -8 16 -8
20
+ 23 0 30 -100 223 -163 316 l-66 97 157 0 157 0 0 257 0 258 -24 5 c-14 3 -533
21
+ 5 -1154 4 l-1128 0 3 435 4 436 27 88 c75 243 225 430 439 545 138 74 257 101
22
+ 433 98 149 -3 165 -6 259 -37 288 -97 493 -310 583 -606 25 -84 27 -100 31
23
+ -363 2 -151 8 -277 12 -280 6 -4 484 -5 512 -1 4 1 5 126 4 279 -3 310 -14
24
+ 395 -71 568 -130 391 -427 710 -810 869 -75 31 -221 73 -315 90 -53 10 -349
25
+ 13 -400 4z"/>
26
+ <path d="M2072 3806 c-55 -19 -100 -62 -113 -109 -7 -26 -12 -115 -11 -233 0
27
+ -173 2 -195 21 -232 60 -119 224 -127 301 -15 24 35 25 42 28 237 2 128 -1
28
+ 215 -8 239 -26 90 -129 143 -218 113z"/>
29
+ <path d="M2953 3806 c-54 -14 -109 -67 -119 -115 -11 -50 -12 -389 -2 -428 33
30
+ -126 205 -167 295 -71 46 49 51 80 49 298 -1 200 -2 206 -26 242 -44 65 -121
31
+ 94 -197 74z"/>
32
+ </g>
33
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="117" height="115" viewBox="0 0 117 115" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M105.694 72.6791V36.1336C105.694 34.2036 104.606 32.4392 102.885 31.5761L56.5873 8.36338C54.8802 7.50743 52.8717 7.50245 51.1604 8.34991L44.378 11.7085L52.0084 19.2959L53.8491 18.3843L89.3454 36.1815L75.9539 43.1067L83.5046 50.6149L95.5309 44.4569V62.5734L105.694 72.6791ZM89.9081 74.5772L95.5309 80.3228C95.5309 80.3228 103.921 88.7296 103.884 88.768C103.922 88.7305 103.847 88.8063 103.884 88.768L115.893 100.81L108.706 108.016L94.5406 93.811L55.6494 113.545C54.2078 114.277 52.5054 114.277 51.0634 113.547L3.34785 89.3712C1.29462 88.3308 0 86.2204 0 83.9137V37.1527C0 35.2507 1.05644 33.507 2.73983 32.6305L23.0059 22.0786L9.11047 8.14473L16.2564 0.979004L89.9081 74.5772ZM16.5107 36.9433L30.5766 29.6196L54.9178 53.5632L53.2722 54.4048L16.5107 36.9433ZM62.5036 61.1235L87.0396 86.1958L58.4364 100.71V63.2034L62.5036 61.1235ZM48.2736 63.3068V100.715L10.1629 81.4062V45.2046L48.2736 63.3068Z" fill="#667080" fill-opacity="0.2"/>
3
- </svg>
1
+ <svg width="117" height="115" viewBox="0 0 117 115" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M105.694 72.6791V36.1336C105.694 34.2036 104.606 32.4392 102.885 31.5761L56.5873 8.36338C54.8802 7.50743 52.8717 7.50245 51.1604 8.34991L44.378 11.7085L52.0084 19.2959L53.8491 18.3843L89.3454 36.1815L75.9539 43.1067L83.5046 50.6149L95.5309 44.4569V62.5734L105.694 72.6791ZM89.9081 74.5772L95.5309 80.3228C95.5309 80.3228 103.921 88.7296 103.884 88.768C103.922 88.7305 103.847 88.8063 103.884 88.768L115.893 100.81L108.706 108.016L94.5406 93.811L55.6494 113.545C54.2078 114.277 52.5054 114.277 51.0634 113.547L3.34785 89.3712C1.29462 88.3308 0 86.2204 0 83.9137V37.1527C0 35.2507 1.05644 33.507 2.73983 32.6305L23.0059 22.0786L9.11047 8.14473L16.2564 0.979004L89.9081 74.5772ZM16.5107 36.9433L30.5766 29.6196L54.9178 53.5632L53.2722 54.4048L16.5107 36.9433ZM62.5036 61.1235L87.0396 86.1958L58.4364 100.71V63.2034L62.5036 61.1235ZM48.2736 63.3068V100.715L10.1629 81.4062V45.2046L48.2736 63.3068Z" fill="#667080" fill-opacity="0.2"/>
3
+ </svg>
@@ -1,19 +1,19 @@
1
- <!DOCTYPE html>
2
- <html lang="pt-br">
3
- <head>
4
- <meta http-equiv="<%= VUE_APP_META_CONTENT_SECURITY_POLICY %>" content="<%= VUE_APP_UPGRADE_INSECURE_REQUESTS %>">
5
- <meta charset="utf-8">
6
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
7
- <meta name="theme-color" content="#772583">
8
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
9
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
10
- <title><%= htmlWebpackPlugin.options.title %></title>
11
- </head>
12
- <body>
13
- <noscript>
14
- <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
15
- </noscript>
16
- <div id="app"></div>
17
- <!-- built files will be auto injected -->
18
- </body>
19
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="pt-br">
3
+ <head>
4
+ <meta http-equiv="<%= VUE_APP_META_CONTENT_SECURITY_POLICY %>" content="<%= VUE_APP_UPGRADE_INSECURE_REQUESTS %>">
5
+ <meta charset="utf-8">
6
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
7
+ <meta name="theme-color" content="#772583">
8
+ <meta name="viewport" content="width=device-width,initial-scale=1.0">
9
+ <link rel="icon" href="<%= BASE_URL %>favicon.ico">
10
+ <title><%= htmlWebpackPlugin.options.title %></title>
11
+ </head>
12
+ <body>
13
+ <noscript>
14
+ <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
15
+ </noscript>
16
+ <div id="app"></div>
17
+ <!-- built files will be auto injected -->
18
+ </body>
19
+ </html>
@@ -1,64 +1,64 @@
1
- {
2
- "name": "home",
3
- "component": "ZdContainer",
4
- "children": [
5
- {
6
- "name": "row1",
7
- "component": "ZdRow",
8
- "children": [
9
- {
10
- "name": "col1",
11
- "component": "ZdCol",
12
- "cols": 12,
13
- "children": [
14
- {
15
- "name": "text",
16
- "component": "ZdText",
17
- "text": "Dashboard",
18
- "tag": "h1"
19
- }
20
- ]
21
- }
22
- ]
23
- },
24
- {
25
- "name": "row2",
26
- "component": "ZdRow",
27
- "children": [
28
- {
29
- "name": "col2",
30
- "component": "ZdCol",
31
- "cols": 12,
32
- "children": [
33
- {
34
- "name": "apex-chart",
35
- "component": "ZdApexChart",
36
- "height": "1000px",
37
- "width": "100%",
38
- "options": {
39
- "chart": {
40
- "id": "basic-chart-bar"
41
- },
42
- "title": {
43
- "text": "Basic chart",
44
- "style": {
45
- "fontSize": "16px"
46
- }
47
- },
48
- "xaxis": {
49
- "categories": [1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998]
50
- }
51
- },
52
- "series": [
53
- {
54
- "name": "series-1",
55
- "data": [30, 40, 45, 50, 49, 60, 70, 91]
56
- }
57
- ]
58
- }
59
- ]
60
- }
61
- ]
62
- }
63
- ]
1
+ {
2
+ "name": "home",
3
+ "component": "ZdContainer",
4
+ "children": [
5
+ {
6
+ "name": "row1",
7
+ "component": "ZdRow",
8
+ "children": [
9
+ {
10
+ "name": "col1",
11
+ "component": "ZdCol",
12
+ "cols": 12,
13
+ "children": [
14
+ {
15
+ "name": "text",
16
+ "component": "ZdText",
17
+ "text": "Dashboard",
18
+ "tag": "h1"
19
+ }
20
+ ]
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "row2",
26
+ "component": "ZdRow",
27
+ "children": [
28
+ {
29
+ "name": "col2",
30
+ "component": "ZdCol",
31
+ "cols": 12,
32
+ "children": [
33
+ {
34
+ "name": "apex-chart",
35
+ "component": "ZdApexChart",
36
+ "height": "1000px",
37
+ "width": "100%",
38
+ "options": {
39
+ "chart": {
40
+ "id": "basic-chart-bar"
41
+ },
42
+ "title": {
43
+ "text": "Basic chart",
44
+ "style": {
45
+ "fontSize": "16px"
46
+ }
47
+ },
48
+ "xaxis": {
49
+ "categories": [1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998]
50
+ }
51
+ },
52
+ "series": [
53
+ {
54
+ "name": "series-1",
55
+ "data": [30, 40, 45, 50, 49, 60, 70, 91]
56
+ }
57
+ ]
58
+ }
59
+ ]
60
+ }
61
+ ]
62
+ }
63
+ ]
64
64
  }
@@ -1,7 +1,7 @@
1
- {
2
- "name": "loginPage",
3
- "component": "TekLogin",
4
- "backgroundStyle": "{{LoginController.backgroundImgUrl}}",
5
- "logo": "{{LoginController.logo}}",
6
- "endPoint": "{{LoginController.endPoint}}"
1
+ {
2
+ "name": "loginPage",
3
+ "component": "TekLogin",
4
+ "backgroundStyle": "{{LoginController.backgroundImgUrl}}",
5
+ "logo": "{{LoginController.logo}}",
6
+ "endPoint": "{{LoginController.endPoint}}"
7
7
  }
@@ -1,29 +1,29 @@
1
- [
2
- {
3
- "name": "home",
4
- "component": "ZdMenuLink",
5
- "icon": "mdi-monitor-dashboard",
6
- "label": "Dashboard",
7
- "route": "/"
8
- },
9
- {
10
- "name": "module",
11
- "component": "ZdMenuGroup",
12
- "icon": "mdi-food-apple-outline",
13
- "label": "Module",
14
- "items": [
15
- {
16
- "name": "mod001",
17
- "component": "ZdMenuLink",
18
- "label": "Page 1",
19
- "route": "/modules/mod/mod001"
20
- },
21
- {
22
- "name": "mod002",
23
- "component": "ZdMenuLink",
24
- "label": "Page 2",
25
- "route": "/modules/mod/mod002"
26
- }
27
- ]
28
- }
1
+ [
2
+ {
3
+ "name": "home",
4
+ "component": "ZdMenuLink",
5
+ "icon": "mdi-monitor-dashboard",
6
+ "label": "Dashboard",
7
+ "route": "/"
8
+ },
9
+ {
10
+ "name": "module",
11
+ "component": "ZdMenuGroup",
12
+ "icon": "mdi-food-apple-outline",
13
+ "label": "Module",
14
+ "items": [
15
+ {
16
+ "name": "mod001",
17
+ "component": "ZdMenuLink",
18
+ "label": "Page 1",
19
+ "route": "/modules/mod/mod001"
20
+ },
21
+ {
22
+ "name": "mod002",
23
+ "component": "ZdMenuLink",
24
+ "label": "Page 2",
25
+ "route": "/modules/mod/mod002"
26
+ }
27
+ ]
28
+ }
29
29
  ]
@@ -1,15 +1,15 @@
1
- {
2
- "name": "notFound",
3
- "component": "ZdRow",
4
- "cssClass": "fill-height",
5
- "justify": "center",
6
- "align": "center",
7
- "children": [
8
- {
9
- "name": "text",
10
- "component": "ZdText",
11
- "text": "NOT FOUND",
12
- "tag": "h1"
13
- }
14
- ]
1
+ {
2
+ "name": "notFound",
3
+ "component": "ZdRow",
4
+ "cssClass": "fill-height",
5
+ "justify": "center",
6
+ "align": "center",
7
+ "children": [
8
+ {
9
+ "name": "text",
10
+ "component": "ZdText",
11
+ "text": "NOT FOUND",
12
+ "tag": "h1"
13
+ }
14
+ ]
15
15
  }
@@ -1,2 +1,2 @@
1
- User-agent: *
2
- Disallow:
1
+ User-agent: *
2
+ Disallow: