@wavemaker/angular-codegen 12.0.0-next.142013 → 12.0.0-next.25480
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.
- {angular-codegen → package}/angular-app/angular.json +84 -98
- {angular-codegen → package}/angular-app/build-scripts/build.js +1 -0
- package/angular-app/build-scripts/index-html-transform-ng-serve.ts +20 -0
- {angular-codegen → package}/angular-app/build-scripts/post-build.js +17 -111
- package/angular-app/dependency-report.html +124 -0
- package/angular-app/generate-dependency-report.js +240 -0
- package/angular-app/npm-shrinkwrap.json +23956 -0
- {angular-codegen → package}/angular-app/package-lock.json +14529 -14345
- package/angular-app/package.json +129 -0
- package/angular-app/proxy.conf.js +14 -0
- package/angular-app/src/app/lazy-load-scripts.resolve.ts +13 -0
- package/angular-app/src/assets/styles/css/font/summernote.eot +0 -0
- package/angular-app/src/assets/styles/css/font/summernote.ttf +0 -0
- package/angular-app/src/assets/styles/css/font/summernote.woff +0 -0
- package/angular-app/src/assets/styles/css/font/summernote.woff2 +0 -0
- package/angular-app/src/assets/styles/css/wm-style.css +1 -0
- {angular-codegen → package}/angular-app/src/framework/services/component-ref-provider.service.ts +4 -0
- package/angular-app/src/framework/services/customwidget-config-provider.service.ts +13 -0
- package/angular-app/src/framework/services/lazy-component-ref-provider.service.ts +56 -0
- package/angular-app/src/framework/util/page-util.ts +7 -0
- {angular-codegen → package}/angular-app/src/index.html +1 -1
- package/angular-app/src/main.ts +70 -0
- {angular-codegen → package}/angular-app/src/setup-jest.js +10 -10
- {angular-codegen → package}/angular-app/tsconfig.json +31 -68
- {angular-codegen → package}/angular-app/tsconfig.web-app.json +2 -23
- package/angular-app/wm-custom-webpack.config.js +51 -0
- package/build-angular-app.js +522 -0
- package/dependencies/app.component.html +40 -0
- package/dependencies/custom-widgets-bundle.cjs.js +415 -0
- {angular-codegen → package}/dependencies/expression-parser.cjs.js +20415 -40794
- {angular-codegen → package}/dependencies/pipe-provider.cjs.js +98294 -96239
- {angular-codegen → package}/dependencies/transpilation-web.cjs.js +47588 -45796
- package/download-packages.js +149 -0
- {angular-codegen → package}/generate-angular-app.js +3 -1
- package/npm-shrinkwrap.json +8039 -0
- package/package-lock.json +8039 -0
- {angular-codegen → package}/package.json +10 -4
- package/src/codegen-args-cli.js +1 -0
- package/src/codegen-cli.js +1 -0
- package/src/codegen.js +1 -0
- package/src/copy-utils.js +1 -0
- package/src/eslintrc_config.js +1 -0
- package/src/gen-app-codegen-module.js +1 -0
- package/src/gen-app-override-css.js +1 -0
- package/src/gen-app-routes.js +1 -0
- package/src/gen-app-skeleton.js +1 -0
- package/src/gen-components.js +1 -0
- package/src/gen-customwidget-config.js +1 -0
- package/src/gen-index-html.js +1 -0
- package/src/gen-layouts.js +1 -0
- package/src/gen-lazy-module-routes.js +1 -0
- package/src/handlebar-helpers.js +1 -0
- package/src/pages-util.js +1 -0
- package/src/project-meta.js +1 -0
- package/src/update-angular-json.js +1 -0
- package/src/wm-utils.js +1 -0
- package/templates/app-routes.ts.hbs +14 -0
- package/templates/app.config.ts.hbs +211 -0
- {angular-codegen → package}/templates/app.module.ts.hbs +5 -3
- package/templates/component.config.ts.hbs +1 -0
- package/templates/customwidget/customwidget-config.ts.hbs +6 -0
- package/templates/customwidget/customwidget.component.script.js.hbs +3 -0
- angular-codegen/templates/page/page.component.ts.hbs → package/templates/customwidget/customwidget.component.ts.hbs +11 -14
- {angular-codegen → package}/templates/layout/layout.component.ts.hbs +27 -4
- package/templates/page/page.component.ts.hbs +74 -0
- {angular-codegen → package}/templates/page/page.module.ts.hbs +12 -1
- {angular-codegen → package}/templates/partial/partial.component.ts.hbs +19 -4
- {angular-codegen → package}/templates/prefab/prefab.component.ts.hbs +22 -5
- angular-codegen/angular-app/package.json +0 -136
- angular-codegen/angular-app/src/app/lazy-load-scripts.resolve.ts +0 -20
- angular-codegen/angular-app/src/assets/styles/css/font/summernote.eot +0 -0
- angular-codegen/angular-app/src/assets/styles/css/font/summernote.ttf +0 -0
- angular-codegen/angular-app/src/assets/styles/css/font/summernote.woff +0 -0
- angular-codegen/angular-app/src/assets/styles/css/wm-style.css +0 -1
- angular-codegen/angular-app/src/framework/services/lazy-component-ref-provider.service.ts +0 -64
- angular-codegen/angular-app/src/framework/util/page-util.ts +0 -5
- angular-codegen/angular-app/src/main.ts +0 -30
- angular-codegen/angular-app/wm-custom-webpack.config.js +0 -94
- angular-codegen/build-angular-app.js +0 -79
- angular-codegen/dependencies/app.component.html +0 -28
- angular-codegen/dependencies/transpilation-mobile.cjs.js +0 -93296
- angular-codegen/download-packages.js +0 -69
- angular-codegen/package-lock.json +0 -5746
- angular-codegen/src/codegen-args-cli.js +0 -1
- angular-codegen/src/codegen-cli.js +0 -1
- angular-codegen/src/codegen.js +0 -1
- angular-codegen/src/gen-app-codegen-module.js +0 -1
- angular-codegen/src/gen-app-routes.js +0 -1
- angular-codegen/src/gen-app-skeleton.js +0 -1
- angular-codegen/src/gen-components.js +0 -1
- angular-codegen/src/gen-index-html.js +0 -1
- angular-codegen/src/gen-layouts.js +0 -1
- angular-codegen/src/gen-lazy-module-routes.js +0 -1
- angular-codegen/src/handlebar-helpers.js +0 -1
- angular-codegen/src/pages-util.js +0 -1
- angular-codegen/src/project-meta.js +0 -1
- angular-codegen/src/update-angular-json.js +0 -1
- angular-codegen/src/wm-utils.js +0 -1
- angular-codegen/templates/app-routes.ts.hbs +0 -17
- {angular-codegen → package}/.npmrc +0 -0
- {angular-codegen → package}/angular-app/.npmrc +0 -0
- {angular-codegen → package}/angular-app/build-scripts/index-html-transform.js +0 -0
- {angular-codegen → package}/angular-app/build-scripts/optimize-css.gulpfile.js +0 -0
- {angular-codegen → package}/angular-app/build-scripts/update-version.js +0 -0
- {angular-codegen → package}/angular-app/src/.browserslistrc +0 -0
- {angular-codegen → package}/angular-app/src/app/app-codegen.module.ts +0 -0
- {angular-codegen → package}/angular-app/src/app/app.component.css +0 -0
- {angular-codegen → package}/angular-app/src/app/app.component.script.js +0 -0
- {angular-codegen → package}/angular-app/src/app/app.component.variables.ts +0 -0
- {angular-codegen → package}/angular-app/src/app/app.routes.ts +0 -0
- {angular-codegen → package}/angular-app/src/app/prefabs/prefab-config.js +0 -0
- {angular-codegen → package}/angular-app/src/app/wm-project-properties.ts +0 -0
- {angular-codegen → package}/angular-app/src/assets/.gitkeep +0 -0
- {angular-codegen → package}/angular-app/src/assets/print.css +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/bootstrap.css.map +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-icons_222222_256x240.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-icons_2e83ff_256x240.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-icons_444444_256x240.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-icons_454545_256x240.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-icons_555555_256x240.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-icons_777620_256x240.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-icons_777777_256x240.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-icons_888888_256x240.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-icons_cc0000_256x240.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-icons_cd0a0a_256x240.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/images/ui-icons_ffffff_256x240.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/css/wm-responsive.css +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/FontAwesome.otf +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/fontawesome-webfont.eot +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/fontawesome-webfont.svg +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/fontawesome-webfont.ttf +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/fontawesome-webfont.woff +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/fontawesome-webfont.woff2 +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/glyphicons-halflings-regular.eot +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/glyphicons-halflings-regular.svg +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/glyphicons-halflings-regular.ttf +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/glyphicons-halflings-regular.woff +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/glyphicons-halflings-regular.woff2 +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/wavicon.eot +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/wavicon.ttf +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/wavicon.woff +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/wm-streamline-light-icon.eot +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/wm-streamline-light-icon.ttf +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/wm-streamline-light-icon.woff +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/wm-streamline-regular-icon.eot +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/wm-streamline-regular-icon.ttf +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/fonts/wm-streamline-regular-icon.woff +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/images/live-sync-icon.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/images/live-sync-touch-icon.png +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/images/loader.gif +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/images/spinner-small.gif +0 -0
- {angular-codegen → package}/angular-app/src/assets/styles/images/ui-icons.png +0 -0
- {angular-codegen → package}/angular-app/src/environments/environment.dev.ts +0 -0
- {angular-codegen → package}/angular-app/src/environments/environment.prod.ts +0 -0
- {angular-codegen → package}/angular-app/src/environments/environment.ts +0 -0
- {angular-codegen → package}/angular-app/src/framework/angular1.polyfills.ts +0 -0
- {angular-codegen → package}/angular-app/src/framework/services/app-extension.service.ts +0 -0
- {angular-codegen → package}/angular-app/src/framework/services/app-js-provider.service.ts +0 -0
- {angular-codegen → package}/angular-app/src/framework/services/app-variables-provider.service.ts +0 -0
- {angular-codegen → package}/angular-app/src/framework/services/prefab-config-provider.service.ts +0 -0
- {angular-codegen → package}/angular-app/src/framework/util/lazy-module-routes.ts +0 -0
- {angular-codegen → package}/angular-app/src/polyfills.ts +0 -0
- {angular-codegen → package}/angular-app/src/styles.css +0 -0
- {angular-codegen → package}/angular-app/src/tsconfig.app.json +0 -0
- {angular-codegen → package}/angular-app/src/tslint.json +0 -0
- {angular-codegen → package}/build-util.js +0 -0
- {angular-codegen → package}/pwa-assets/icons/icon-128x128.png +0 -0
- {angular-codegen → package}/pwa-assets/icons/icon-144x144.png +0 -0
- {angular-codegen → package}/pwa-assets/icons/icon-152x152.png +0 -0
- {angular-codegen → package}/pwa-assets/icons/icon-192x192.png +0 -0
- {angular-codegen → package}/pwa-assets/icons/icon-384x384.png +0 -0
- {angular-codegen → package}/pwa-assets/icons/icon-512x512.png +0 -0
- {angular-codegen → package}/pwa-assets/icons/icon-72x72.png +0 -0
- {angular-codegen → package}/pwa-assets/icons/icon-96x96.png +0 -0
- {angular-codegen → package}/pwa-assets/manifest.json +0 -0
- {angular-codegen → package}/pwa-assets/ngsw-config.json +0 -0
- {angular-codegen → package}/pwa-assets/wmsw-worker.js +0 -0
- {angular-codegen → package}/src/expr-parser-utils.js +0 -0
- {angular-codegen → package}/src/gen-app-js.js +0 -0
- {angular-codegen → package}/src/gen-app-prefabs-module.js +0 -0
- {angular-codegen → package}/src/gen-app-variables.js +0 -0
- {angular-codegen → package}/src/gen-prefabs.js +0 -0
- {angular-codegen → package}/src/gen-pwa-files.js +0 -0
- {angular-codegen → package}/src/gen-tsconfig.js +0 -0
- {angular-codegen → package}/src/gen-wm-project-properties.js +0 -0
- {angular-codegen → package}/templates/app-codegen.module.ts.hbs +0 -0
- {angular-codegen → package}/templates/app-prefabs.module.ts.hbs +0 -0
- {angular-codegen → package}/templates/app.component.script.js.hbs +0 -0
- {angular-codegen → package}/templates/component.expressions.ts.hbs +0 -0
- {angular-codegen → package}/templates/component.variables.ts.hbs +0 -0
- {angular-codegen → package}/templates/expr-vs-fn.hbs +0 -0
- {angular-codegen → package}/templates/layout/layout.module.ts.hbs +0 -0
- {angular-codegen → package}/templates/lazy-module-routes.ts.hbs +0 -0
- {angular-codegen → package}/templates/page/page.component.script.js.hbs +0 -0
- {angular-codegen → package}/templates/partial/partial.component.script.js.hbs +0 -0
- {angular-codegen → package}/templates/partial/partial.module.ts.hbs +0 -0
- {angular-codegen → package}/templates/prefab/prefab-config.ts.hbs +0 -0
- {angular-codegen → package}/templates/prefab/prefab.component.script.js.hbs +0 -0
- {angular-codegen → package}/templates/prefab/prefab.module.ts.hbs +0 -0
- {angular-codegen → package}/templates/wm-project-properties.ts.hbs +0 -0
|
@@ -13,36 +13,35 @@
|
|
|
13
13
|
"build": {
|
|
14
14
|
"builder": "@angular-builders/custom-webpack:browser",
|
|
15
15
|
"options": {
|
|
16
|
-
"customWebpackConfig": {
|
|
17
|
-
"path": "./wm-custom-webpack.config.js"
|
|
18
|
-
},
|
|
19
|
-
"indexTransform": "./build-scripts/index-html-transform.js",
|
|
20
|
-
"deployUrl": "ng-bundle/",
|
|
21
|
-
"outputPath": "dist/ng-bundle",
|
|
22
|
-
"index": {
|
|
23
|
-
"input": "src/index.html",
|
|
24
|
-
"output": "../index.html"
|
|
25
|
-
},
|
|
26
16
|
"main": "src/main.ts",
|
|
27
17
|
"polyfills": "src/polyfills.ts",
|
|
28
18
|
"tsConfig": "src/tsconfig.app.json",
|
|
29
19
|
"assets": [
|
|
30
20
|
"src/favicon.ico",
|
|
21
|
+
"src/favicon.png",
|
|
31
22
|
"src/assets",
|
|
32
23
|
{
|
|
33
|
-
"glob": "
|
|
34
|
-
"input": "
|
|
35
|
-
"output": "
|
|
24
|
+
"glob": "**/*",
|
|
25
|
+
"input": "libraries/locales/moment-timezone",
|
|
26
|
+
"output": "/locales/moment-timezone"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"glob": "**/*",
|
|
30
|
+
"input": "node_modules/@wavemaker/app-ng-runtime/locales/moment-timezone",
|
|
31
|
+
"output": "/locales/moment-timezone"
|
|
36
32
|
},
|
|
37
33
|
{
|
|
38
34
|
"glob": "**/*",
|
|
39
|
-
"input": "
|
|
40
|
-
"output": "/
|
|
35
|
+
"input": "src/servicedefs",
|
|
36
|
+
"output": "/servicedefs/"
|
|
41
37
|
},
|
|
42
38
|
{
|
|
43
39
|
"glob": "**/*",
|
|
44
|
-
"input": "
|
|
45
|
-
"output": "/
|
|
40
|
+
"input": "resources",
|
|
41
|
+
"output": "/resources/",
|
|
42
|
+
"ignore": [
|
|
43
|
+
"**/*.txt"
|
|
44
|
+
]
|
|
46
45
|
}
|
|
47
46
|
],
|
|
48
47
|
"styles": [
|
|
@@ -58,13 +57,18 @@
|
|
|
58
57
|
"input": "src/assets/app.css",
|
|
59
58
|
"inject": false,
|
|
60
59
|
"bundleName": "wm-styles"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"input": "src/assets/print.css",
|
|
63
|
+
"inject": false,
|
|
64
|
+
"bundleName": "print"
|
|
61
65
|
}
|
|
62
66
|
],
|
|
63
67
|
"scripts": [
|
|
64
|
-
"./node_modules/x2js/x2js.js",
|
|
65
68
|
"./node_modules/d3/dist/d3.min.js",
|
|
66
69
|
"./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
|
|
67
70
|
"./node_modules/jquery/dist/jquery.min.js",
|
|
71
|
+
"./node_modules/lodash/lodash.min.js",
|
|
68
72
|
"./node_modules/jquery-ui/ui/disable-selection.js",
|
|
69
73
|
"./node_modules/jquery-ui/ui/version.js",
|
|
70
74
|
"./node_modules/jquery-ui/ui/widget.js",
|
|
@@ -79,13 +83,8 @@
|
|
|
79
83
|
"./node_modules/@wavemaker/app-ng-runtime/scripts/datatable/datatable.js",
|
|
80
84
|
"./node_modules/@wavemaker/app-ng-runtime/scripts/swipey/swipey.jquery.plugin.js",
|
|
81
85
|
"./node_modules/@wavemaker/app-ng-runtime/scripts/jquery.ui.touch-punch/jquery.ui.touch-punch.min.js",
|
|
82
|
-
"./node_modules/moment/min/moment.min.js",
|
|
83
|
-
"./node_modules/moment-timezone/builds/moment-timezone.min.js",
|
|
84
|
-
"./node_modules/fullcalendar/main.min.js",
|
|
85
86
|
"./node_modules/summernote/dist/summernote-lite.min.js",
|
|
86
|
-
"./node_modules/hammerjs/hammer.min.js",
|
|
87
87
|
"./node_modules/iscroll/build/iscroll.js",
|
|
88
|
-
"./node_modules/js-cookie/src/js.cookie.js",
|
|
89
88
|
"./node_modules/jssha/dist/sha256.js",
|
|
90
89
|
"./node_modules/@ztree/ztree_v3/js/jquery.ztree.all.js",
|
|
91
90
|
"./node_modules/@wavemaker/app-ng-runtime/scripts/tree-keyboard-navigation/keyboard-navigation.js"
|
|
@@ -93,6 +92,16 @@
|
|
|
93
92
|
},
|
|
94
93
|
"configurations": {
|
|
95
94
|
"production": {
|
|
95
|
+
"customWebpackConfig": {
|
|
96
|
+
"path": "./wm-custom-webpack.config.js"
|
|
97
|
+
},
|
|
98
|
+
"indexTransform": "./build-scripts/index-html-transform.js",
|
|
99
|
+
"deployUrl": "ng-bundle/",
|
|
100
|
+
"outputPath": "dist/ng-bundle",
|
|
101
|
+
"index": {
|
|
102
|
+
"input": "src/index.html",
|
|
103
|
+
"output": "../../index.html"
|
|
104
|
+
},
|
|
96
105
|
"fileReplacements": [
|
|
97
106
|
{
|
|
98
107
|
"replace": "src/environments/environment.ts",
|
|
@@ -122,6 +131,16 @@
|
|
|
122
131
|
]
|
|
123
132
|
},
|
|
124
133
|
"development": {
|
|
134
|
+
"customWebpackConfig": {
|
|
135
|
+
"path": "./wm-custom-webpack.config.js"
|
|
136
|
+
},
|
|
137
|
+
"indexTransform": "./build-scripts/index-html-transform.js",
|
|
138
|
+
"deployUrl": "ng-bundle/",
|
|
139
|
+
"outputPath": "dist/ng-bundle",
|
|
140
|
+
"index": {
|
|
141
|
+
"input": "src/index.html",
|
|
142
|
+
"output": "../../index.html"
|
|
143
|
+
},
|
|
125
144
|
"fileReplacements": [
|
|
126
145
|
{
|
|
127
146
|
"replace": "src/environments/environment.ts",
|
|
@@ -144,6 +163,16 @@
|
|
|
144
163
|
]
|
|
145
164
|
},
|
|
146
165
|
"local": {
|
|
166
|
+
"customWebpackConfig": {
|
|
167
|
+
"path": "./wm-custom-webpack.config.js"
|
|
168
|
+
},
|
|
169
|
+
"indexTransform": "./build-scripts/index-html-transform.js",
|
|
170
|
+
"deployUrl": "ng-bundle/",
|
|
171
|
+
"outputPath": "dist/ng-bundle",
|
|
172
|
+
"index": {
|
|
173
|
+
"input": "src/index.html",
|
|
174
|
+
"output": "../../index.html"
|
|
175
|
+
},
|
|
147
176
|
"fileReplacements": [
|
|
148
177
|
{
|
|
149
178
|
"replace": "src/environments/environment.ts",
|
|
@@ -171,88 +200,45 @@
|
|
|
171
200
|
"maximumWarning": "2mb"
|
|
172
201
|
}
|
|
173
202
|
]
|
|
174
|
-
}
|
|
175
|
-
},
|
|
176
|
-
"defaultConfiguration": "production"
|
|
177
|
-
},
|
|
178
|
-
"build-ng": {
|
|
179
|
-
"builder": "@angular-devkit/build-angular:browser",
|
|
180
|
-
"options": {
|
|
181
|
-
"outputPath": "dist",
|
|
182
|
-
"index": {
|
|
183
|
-
"input": "src/index.html",
|
|
184
|
-
"output": "../index.html"
|
|
185
203
|
},
|
|
186
|
-
"
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
"src/
|
|
191
|
-
"
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
"
|
|
202
|
-
"
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
"
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
"./node_modules/jquery-ui/ui/widget.js",
|
|
212
|
-
"./node_modules/jquery-ui/ui/scroll-parent.js",
|
|
213
|
-
"./node_modules/jquery-ui/ui/plugin.js",
|
|
214
|
-
"./node_modules/jquery-ui/ui/data.js",
|
|
215
|
-
"./node_modules/jquery-ui/ui/widgets/mouse.js",
|
|
216
|
-
"./node_modules/jquery-ui/ui/widgets/resizable.js",
|
|
217
|
-
"./node_modules/jquery-ui/ui/widgets/sortable.js",
|
|
218
|
-
"./node_modules/jquery-ui/ui/widgets/droppable.js",
|
|
219
|
-
"./libraries/scripts/datatable/datatable.js",
|
|
220
|
-
"./node_modules/moment/min/moment.min.js",
|
|
221
|
-
"./node_modules/moment-timezone/builds/moment-timezone.min.js",
|
|
222
|
-
"./node_modules/fullcalendar/main.min.js",
|
|
223
|
-
"./node_modules/summernote/dist/summernote-lite.min.js",
|
|
224
|
-
"./node_modules/hammerjs/hammer.min.js",
|
|
225
|
-
"./node_modules/iscroll/build/iscroll.js",
|
|
226
|
-
"./node_modules/js-cookie/src/js.cookie.js",
|
|
227
|
-
"./node_modules/jssha/dist/sha256.js",
|
|
228
|
-
"./node_modules/@ztree/ztree_v3/js/jquery.ztree.all.js",
|
|
229
|
-
"./libraries/scripts/tree-keyboard-navigation/keyboard-navigation.js"
|
|
230
|
-
],
|
|
231
|
-
"aot": false,
|
|
232
|
-
"vendorChunk": true,
|
|
233
|
-
"extractLicenses": false,
|
|
234
|
-
"buildOptimizer": false,
|
|
235
|
-
"sourceMap": true,
|
|
236
|
-
"optimization": false,
|
|
237
|
-
"namedChunks": true
|
|
238
|
-
},
|
|
239
|
-
"configurations": {
|
|
240
|
-
"production": {
|
|
241
|
-
"browserTarget": "angular-app:build:production"
|
|
204
|
+
"ng-serve": {
|
|
205
|
+
"indexTransform": "./build-scripts/index-html-transform-ng-serve.ts",
|
|
206
|
+
"deployUrl": "ng-bundle/",
|
|
207
|
+
"outputPath": "dist/ng-bundle",
|
|
208
|
+
"index": "src/index.html",
|
|
209
|
+
"fileReplacements": [
|
|
210
|
+
{
|
|
211
|
+
"replace": "src/environments/environment.ts",
|
|
212
|
+
"with": "src/environments/environment.dev.ts"
|
|
213
|
+
}
|
|
214
|
+
],
|
|
215
|
+
"optimization": false,
|
|
216
|
+
"outputHashing": "none",
|
|
217
|
+
"sourceMap": true,
|
|
218
|
+
"namedChunks": true,
|
|
219
|
+
"aot": true,
|
|
220
|
+
"extractLicenses": false,
|
|
221
|
+
"vendorChunk": true,
|
|
222
|
+
"buildOptimizer": false,
|
|
223
|
+
"budgets": [
|
|
224
|
+
{
|
|
225
|
+
"type": "initial",
|
|
226
|
+
"maximumWarning": "2mb"
|
|
227
|
+
}
|
|
228
|
+
]
|
|
242
229
|
}
|
|
243
230
|
},
|
|
244
|
-
"defaultConfiguration": ""
|
|
231
|
+
"defaultConfiguration": "production"
|
|
245
232
|
},
|
|
246
233
|
"serve": {
|
|
247
|
-
"builder": "@angular-
|
|
248
|
-
"options": {
|
|
249
|
-
"buildTarget": "angular-app:build"
|
|
250
|
-
},
|
|
234
|
+
"builder": "@angular-builders/custom-webpack:dev-server",
|
|
251
235
|
"configurations": {
|
|
252
|
-
"
|
|
253
|
-
"buildTarget": "angular-app:build:
|
|
236
|
+
"development": {
|
|
237
|
+
"buildTarget": "angular-app:build:ng-serve",
|
|
238
|
+
"proxyConfig": "proxy.conf.js"
|
|
254
239
|
}
|
|
255
|
-
}
|
|
240
|
+
},
|
|
241
|
+
"defaultConfiguration": "development"
|
|
256
242
|
},
|
|
257
243
|
"extract-i18n": {
|
|
258
244
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
@@ -6,6 +6,7 @@ if (processArgs.findIndex(arg => arg.startsWith('--max-old-space-size')) !== -1)
|
|
|
6
6
|
process.env.NODE_OPTIONS = processArgs.pop();
|
|
7
7
|
console.log("Setting node options: ", process.env.NODE_OPTIONS);
|
|
8
8
|
}
|
|
9
|
+
|
|
9
10
|
const args = processArgs.slice(2);
|
|
10
11
|
const ngBuildArgs = ['build', ...args];
|
|
11
12
|
console.log("\x1b[33m", "Angular build params: ", ngBuildArgs);
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import {TargetOptions} from '@angular-builders/custom-webpack';
|
|
2
|
+
|
|
3
|
+
export default function indexHtmlTransformNgServe(
|
|
4
|
+
targetOptions: TargetOptions,
|
|
5
|
+
indexHtml: string
|
|
6
|
+
): string {
|
|
7
|
+
const deployUrl = 'ng-bundle/';
|
|
8
|
+
const wmStylesHref = `${deployUrl}wm-styles.css`;
|
|
9
|
+
|
|
10
|
+
const metaDeployUrl = `<meta name="deployUrl" content="${deployUrl}">`;
|
|
11
|
+
const linkWmStyles = `<link rel="stylesheet" type="text/css" href="${wmStylesHref}">`;
|
|
12
|
+
|
|
13
|
+
const injectHtml = `${metaDeployUrl}
|
|
14
|
+
${linkWmStyles}`;
|
|
15
|
+
const headCloseIndex = indexHtml.indexOf('</head>');
|
|
16
|
+
|
|
17
|
+
return `${indexHtml.slice(0, headCloseIndex)}
|
|
18
|
+
${injectHtml}
|
|
19
|
+
${indexHtml.slice(headCloseIndex)}`;
|
|
20
|
+
}
|
|
@@ -6,94 +6,11 @@ const copyFile = util.promisify(fs.copyFile);
|
|
|
6
6
|
const exec = util.promisify(require('child_process').exec);
|
|
7
7
|
const cheerio = require(`cheerio`);
|
|
8
8
|
const crypto = require(`crypto`);
|
|
9
|
-
|
|
10
|
-
const copyCssFiles = (hash, updatedFilenames) => {
|
|
11
|
-
const filename = 'wm-styles.css';
|
|
12
|
-
const updatedFilename = `wm-styles.${hash}.css`
|
|
13
|
-
copyFile(`${opPath}/${filename}`, `${opPath}/${updatedFilename}`);
|
|
14
|
-
updatedFilenames[filename] = updatedFilename;
|
|
15
|
-
// copyFile(`${opPath}/wm-styles.br.css`,`${opPath}/wm-styles.${hash}.br.css`);
|
|
16
|
-
// copyFile(`${opPath}/wm-styles.gzip.css`,`${opPath}/wm-styles.${hash}.gzip.css`);
|
|
17
|
-
};
|
|
18
|
-
const copyMobileCssFiles = (hash, fileName) => {
|
|
19
|
-
// const name = filePath.split('.css')[0];
|
|
20
|
-
copyFile(`${opPath}/${fileName}.css`, `${opPath}/${fileName}.${hash}.css`);
|
|
21
|
-
// copyFile(`${opPath}/wm-styles.br.css`,`${opPath}/wm-styles.${hash}.br.css`);
|
|
22
|
-
// copyFile(`${opPath}/wm-styles.gzip.css`,`${opPath}/wm-styles.${hash}.gzip.css`);
|
|
23
|
-
};
|
|
24
|
-
const generateHash = async (filepath) => {
|
|
25
|
-
const cssContent = await readFile(filepath);
|
|
26
|
-
let hash = crypto.createHash('md5');
|
|
27
|
-
hash.update(cssContent);
|
|
28
|
-
return hash.digest('hex');
|
|
29
|
-
};
|
|
30
|
-
const generateHashForScripts = (updatedFilenames) => {
|
|
31
|
-
//from angular 12(IVY), scripts array in angular json, doesn't allow `@` symbol in the name/value
|
|
32
|
-
//so removed `@` from wavemaker.com in the file name and adding it back in the post-build.js file
|
|
33
|
-
const scriptsMap = {};
|
|
34
|
-
return new Promise(resolve => {
|
|
35
|
-
fs.readdir(opPath, (err, items) => {
|
|
36
|
-
const promises = items.map(i => {
|
|
37
|
-
const nohashIndex = i.indexOf('-NOHASH.js');
|
|
38
|
-
if (nohashIndex > 0) {
|
|
39
|
-
const key = i.substring(0, nohashIndex);
|
|
40
|
-
return generateHash(`${opPath}/${i}`).then(hash => {
|
|
41
|
-
const filename = `${key}-NOHASH.js`;
|
|
42
|
-
const updatedFilename = `${key}.${hash}.js`
|
|
43
|
-
scriptsMap[`${key}.js`] = updatedFilename;
|
|
44
|
-
updatedFilenames[filename] = updatedFilename;
|
|
45
|
-
return Promise.all([
|
|
46
|
-
copyFile(`${opPath}/${filename}`, `${opPath}/${updatedFilename}`),
|
|
47
|
-
// copyFile(`${opPath}/${key}-NOHASH.br.js`, `${opPath}/${key}.${hash}.br.js`),
|
|
48
|
-
// copyFile(`${opPath}/${key}-NOHASH.gzip.js`, `${opPath}/${key}.${hash}.gzip.js`)
|
|
49
|
-
]);
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
|
-
});
|
|
53
|
-
Promise.all(promises).then(() => {
|
|
54
|
-
return writeFile(`${opPath}/path_mapping.json`, JSON.stringify(scriptsMap, null, 2));
|
|
55
|
-
}).then(resolve);
|
|
56
|
-
});
|
|
57
|
-
});
|
|
58
|
-
};
|
|
59
|
-
let isMobileProject = false;
|
|
9
|
+
|
|
60
10
|
let isProdBuild;
|
|
61
11
|
let isDevBuild;
|
|
62
12
|
let $;
|
|
63
13
|
|
|
64
|
-
const setMobileProjectType = (angularJson) => {
|
|
65
|
-
let styles = angularJson['projects']['angular-app']['architect']['build']['options']['styles'];
|
|
66
|
-
const androidStyles = styles.find((style) => {
|
|
67
|
-
let isObject = typeof (style) === 'object';
|
|
68
|
-
if (isObject) {
|
|
69
|
-
return style.bundleName === 'wm-android-styles';
|
|
70
|
-
}
|
|
71
|
-
return false;
|
|
72
|
-
});
|
|
73
|
-
isMobileProject = androidStyles ? true : false;
|
|
74
|
-
return isMobileProject;
|
|
75
|
-
}
|
|
76
|
-
const addMobileSpecificStyles = async (deployUrl) => {
|
|
77
|
-
if (isDevBuild) {
|
|
78
|
-
$("body").append(
|
|
79
|
-
`<script type="text/javascript" defer="true" src="${deployUrl}wm-android-styles.js"></script>`
|
|
80
|
-
);
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
if (isProdBuild) {
|
|
84
|
-
let hash = await generateHash(`${opPath}/wm-android-styles.css`);
|
|
85
|
-
copyMobileCssFiles(hash, 'wm-android-styles');
|
|
86
|
-
$("head").append(
|
|
87
|
-
`<link rel="stylesheet" theme="wmtheme" href="${deployUrl}wm-android-styles.${hash}.css" >`
|
|
88
|
-
);
|
|
89
|
-
hash = await generateHash(`${opPath}/wm-ios-styles.css`);
|
|
90
|
-
copyMobileCssFiles(hash, 'wm-ios-styles');
|
|
91
|
-
$("head").append(
|
|
92
|
-
`<link rel="stylesheet" theme="wmtheme" href="${deployUrl}wm-ios-styles.${hash}.css" >`
|
|
93
|
-
);
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
14
|
const addScriptForWMStylesPath = (wm_styles_path) => {
|
|
98
15
|
// wm_styles_path will not be present for mobile apps
|
|
99
16
|
if (wm_styles_path) {
|
|
@@ -201,10 +118,10 @@ const updatePwaAssets = (deployUrl, updatedFileNames, updatedFileHashes) => {
|
|
|
201
118
|
deployUrl = deployUrl === "_cdnUrl_" ? 'ng-bundle/' : deployUrl;
|
|
202
119
|
|
|
203
120
|
// copy service worker and its config to root directory
|
|
204
|
-
fs.copyFileSync(
|
|
205
|
-
fs.copyFileSync(
|
|
206
|
-
fs.copyFileSync(
|
|
207
|
-
fs.copyFileSync(
|
|
121
|
+
fs.copyFileSync(`./dist/ng-bundle/${global.randomHash}/ngsw-worker.js`, './dist/ngsw-worker.js');
|
|
122
|
+
fs.copyFileSync(`./dist/ng-bundle/${global.randomHash}/wmsw-worker.js`, './dist/wmsw-worker.js');
|
|
123
|
+
fs.copyFileSync(`./dist/ng-bundle/${global.randomHash}/ngsw.json`, ngswPath);
|
|
124
|
+
fs.copyFileSync(`./dist/ng-bundle/${global.randomHash}/manifest.json`, manifestPath);
|
|
208
125
|
|
|
209
126
|
// update the icons url in manifest.json
|
|
210
127
|
const manifest = JSON.parse(fs.readFileSync(manifestPath).toString());
|
|
@@ -247,18 +164,13 @@ const generateSha1 = (content) => {
|
|
|
247
164
|
try {
|
|
248
165
|
const angularJson = require(`${process.cwd()}/angular.json`);
|
|
249
166
|
const build = angularJson['projects']['angular-app']['architect']['build'];
|
|
250
|
-
let deployUrl = args['deploy-url'] || build['
|
|
251
|
-
|
|
167
|
+
let deployUrl = args['deploy-url'] || build['configurations']['production']['deployUrl'];
|
|
168
|
+
global.randomHash = deployUrl.split('/')[1];
|
|
169
|
+
let outputPath = global.opPath = args['output-path'] || build['configurations']['production']['outputPath']
|
|
252
170
|
const contents = await readFile(`./dist/index.html`, `utf8`);
|
|
253
171
|
$ = cheerio.load(contents);
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
isProdBuild = fs.existsSync(`${process.cwd()}/dist/ng-bundle/wm-styles.css`);
|
|
257
|
-
isDevBuild = fs.existsSync(`${process.cwd()}/dist/ng-bundle/wm-styles.js`);
|
|
258
|
-
} else {
|
|
259
|
-
isDevBuild = fs.existsSync(`${process.cwd()}/dist/ng-bundle/wm-android-styles.js`);
|
|
260
|
-
isProdBuild = fs.existsSync(`${process.cwd()}/dist/ng-bundle/wm-android-styles.css`);
|
|
261
|
-
}
|
|
172
|
+
isProdBuild = fs.existsSync(`${process.cwd()}/${outputPath}/wm-styles.css`);
|
|
173
|
+
isDevBuild = fs.existsSync(`${process.cwd()}/${outputPath}/wm-styles.js`);
|
|
262
174
|
|
|
263
175
|
if (isProdBuild) {
|
|
264
176
|
const isOptimizeCss = $('meta[optimizecss]').length;
|
|
@@ -275,18 +187,12 @@ const generateSha1 = (content) => {
|
|
|
275
187
|
const updatedFileHashes = {}
|
|
276
188
|
let wm_styles_path;
|
|
277
189
|
|
|
278
|
-
if (
|
|
279
|
-
|
|
190
|
+
if (isDevBuild) {
|
|
191
|
+
wm_styles_path = `${deployUrl}wm-styles.js`;
|
|
280
192
|
} else {
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
const fileName = 'wm-styles';
|
|
285
|
-
const hash = await generateHash(`${opPath}/${fileName}.css`);
|
|
286
|
-
copyCssFiles(hash, updatedFilenames);
|
|
287
|
-
const updatedFileName = `${fileName}.${hash}.css`
|
|
288
|
-
wm_styles_path = `${deployUrl}${updatedFileName}`;
|
|
289
|
-
}
|
|
193
|
+
const fileName = 'wm-styles';
|
|
194
|
+
const updatedFileName = `${fileName}.css`
|
|
195
|
+
wm_styles_path = `${deployUrl}${updatedFileName}`;
|
|
290
196
|
}
|
|
291
197
|
|
|
292
198
|
addScriptForWMStylesPath(wm_styles_path);
|
|
@@ -294,12 +200,12 @@ const generateSha1 = (content) => {
|
|
|
294
200
|
|
|
295
201
|
//this is required to download all the assets
|
|
296
202
|
$('head').append(`<meta name="deployUrl" content=${deployUrl} />`);
|
|
203
|
+
$('script[src$="services/application/wmProperties.js"]').remove();
|
|
204
|
+
$('link[href$="favicon.png"]').attr('href', `${deployUrl}favicon.png`);
|
|
297
205
|
|
|
298
206
|
const htmlContent = $.html();
|
|
299
207
|
await writeFile(`./dist/index.html`, htmlContent);
|
|
300
208
|
|
|
301
|
-
await generateHashForScripts(updatedFilenames);
|
|
302
|
-
|
|
303
209
|
if (serviceWorkerEnabled) {
|
|
304
210
|
// re-generate hash for index.html since its been modified
|
|
305
211
|
updatedFileHashes['index.html'] = generateSha1(htmlContent);
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
|
|
2
|
+
<!DOCTYPE html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
|
+
<title>Angular Dependencies Report</title>
|
|
8
|
+
<style>
|
|
9
|
+
body {
|
|
10
|
+
font-family: Arial, sans-serif;
|
|
11
|
+
line-height: 1.6;
|
|
12
|
+
margin: 0;
|
|
13
|
+
padding: 20px;
|
|
14
|
+
color: #333;
|
|
15
|
+
}
|
|
16
|
+
.header {
|
|
17
|
+
background: #f4f4f4;
|
|
18
|
+
padding: 20px;
|
|
19
|
+
margin-bottom: 20px;
|
|
20
|
+
border-radius: 4px;
|
|
21
|
+
}
|
|
22
|
+
.section {
|
|
23
|
+
margin-bottom: 30px;
|
|
24
|
+
}
|
|
25
|
+
table {
|
|
26
|
+
width: 100%;
|
|
27
|
+
border-collapse: collapse;
|
|
28
|
+
margin-bottom: 20px;
|
|
29
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.2);
|
|
30
|
+
}
|
|
31
|
+
th, td {
|
|
32
|
+
border: 1px solid #ddd;
|
|
33
|
+
padding: 12px;
|
|
34
|
+
text-align: left;
|
|
35
|
+
}
|
|
36
|
+
th {
|
|
37
|
+
background-color: #f8f8f8;
|
|
38
|
+
font-weight: bold;
|
|
39
|
+
}
|
|
40
|
+
tr:nth-child(even) {
|
|
41
|
+
background-color: #f9f9f9;
|
|
42
|
+
}
|
|
43
|
+
tr:hover {
|
|
44
|
+
background-color: #f5f5f5;
|
|
45
|
+
}
|
|
46
|
+
.dependency-type {
|
|
47
|
+
font-size: 1.2em;
|
|
48
|
+
color: #666;
|
|
49
|
+
font-weight: bold;
|
|
50
|
+
margin: 20px 0 10px;
|
|
51
|
+
padding-bottom: 5px;
|
|
52
|
+
border-bottom: 2px solid #eee;
|
|
53
|
+
}
|
|
54
|
+
.transitive {
|
|
55
|
+
margin-left: 20px;
|
|
56
|
+
border-left: 3px solid #eee;
|
|
57
|
+
padding-left: 20px;
|
|
58
|
+
}
|
|
59
|
+
.license-count {
|
|
60
|
+
font-weight: bold;
|
|
61
|
+
color: #2196F3;
|
|
62
|
+
}
|
|
63
|
+
.timestamp {
|
|
64
|
+
color: #666;
|
|
65
|
+
font-style: italic;
|
|
66
|
+
}
|
|
67
|
+
</style>
|
|
68
|
+
</head>
|
|
69
|
+
<body>
|
|
70
|
+
<div class="header">
|
|
71
|
+
<h1>Angular Project Dependencies Report</h1>
|
|
72
|
+
<p class="timestamp">Generated on: 12/15/2025, 9:50:39 AM</p>
|
|
73
|
+
</div>
|
|
74
|
+
|
|
75
|
+
<div class="section">
|
|
76
|
+
<h2>Project Dependencies Overview</h2>
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
</div>
|
|
80
|
+
|
|
81
|
+
<div class="section">
|
|
82
|
+
<h2>Transitive Dependencies</h2>
|
|
83
|
+
|
|
84
|
+
<div class="dependency-type">Transitive Dependencies</div>
|
|
85
|
+
<table>
|
|
86
|
+
<tr>
|
|
87
|
+
<th>Package</th>
|
|
88
|
+
<th>Version</th>
|
|
89
|
+
<th>License</th>
|
|
90
|
+
<th>Repository</th>
|
|
91
|
+
</tr>
|
|
92
|
+
|
|
93
|
+
<tr>
|
|
94
|
+
<td></td>
|
|
95
|
+
<td>wavemaker/angular-app</td>
|
|
96
|
+
<td>UNKNOWN</td>
|
|
97
|
+
<td>N/A</td>
|
|
98
|
+
</tr>
|
|
99
|
+
|
|
100
|
+
</table>
|
|
101
|
+
|
|
102
|
+
</div>
|
|
103
|
+
|
|
104
|
+
<div class="section">
|
|
105
|
+
<h2>License Summary</h2>
|
|
106
|
+
|
|
107
|
+
<table>
|
|
108
|
+
<tr>
|
|
109
|
+
<th>License</th>
|
|
110
|
+
<th>Count</th>
|
|
111
|
+
<th>Packages</th>
|
|
112
|
+
</tr>
|
|
113
|
+
|
|
114
|
+
<tr>
|
|
115
|
+
<td>UNKNOWN</td>
|
|
116
|
+
<td class="license-count">1</td>
|
|
117
|
+
<td></td>
|
|
118
|
+
</tr>
|
|
119
|
+
|
|
120
|
+
</table>
|
|
121
|
+
|
|
122
|
+
</div>
|
|
123
|
+
</body>
|
|
124
|
+
</html>
|