@wavemaker/angular-codegen 12.0.0-next.140534 → 12.0.0-next.141130
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/angular-app/angular.json +2 -0
- angular-codegen/angular-app/package-lock.json +8449 -3742
- angular-codegen/angular-app/package.json +12 -8
- angular-codegen/angular-app/src/framework/services/customwidget-config-provider.service.ts +13 -0
- angular-codegen/angular-app/src/framework/util/page-util.ts +3 -1
- angular-codegen/angular-app/src/setup-jest.js +0 -1
- angular-codegen/angular-app/tsconfig.json +3 -0
- angular-codegen/dependencies/custom-widgets-bundle.cjs.js +390 -0
- angular-codegen/dependencies/expression-parser.cjs.js +40 -1
- angular-codegen/dependencies/pipe-provider.cjs.js +300 -12060
- angular-codegen/dependencies/transpilation-mobile.cjs.js +602 -1180
- angular-codegen/dependencies/transpilation-web.cjs.js +602 -6425
- angular-codegen/package.json +1 -1
- angular-codegen/src/codegen.js +1 -1
- angular-codegen/src/gen-components.js +1 -1
- angular-codegen/src/gen-customwidget-config.js +1 -0
- angular-codegen/src/gen-index-html.js +1 -1
- angular-codegen/src/handlebar-helpers.js +1 -1
- angular-codegen/src/pages-util.js +1 -1
- angular-codegen/src/update-angular-json.js +1 -1
- angular-codegen/templates/app.module.ts.hbs +5 -1
- angular-codegen/templates/component.config.ts.hbs +1 -0
- angular-codegen/templates/customwidget/customwidget-config.ts.hbs +6 -0
- angular-codegen/templates/customwidget/customwidget.component.script.js.hbs +3 -0
- angular-codegen/templates/customwidget/customwidget.component.ts.hbs +42 -0
- angular-codegen/templates/page/page.module.ts.hbs +11 -0
- angular-codegen/angular-app/build-scripts/update-version.js +0 -24
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
}
|
|
62
62
|
],
|
|
63
63
|
"scripts": [
|
|
64
|
+
"./node_modules/x2js/x2js.js",
|
|
64
65
|
"./node_modules/d3/dist/d3.min.js",
|
|
65
66
|
"./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
|
|
66
67
|
"./node_modules/jquery/dist/jquery.min.js",
|
|
@@ -201,6 +202,7 @@
|
|
|
201
202
|
"src/assets/app.css"
|
|
202
203
|
],
|
|
203
204
|
"scripts": [
|
|
205
|
+
"./node_modules/x2js/x2js.js",
|
|
204
206
|
"./node_modules/d3/dist/d3.min.js",
|
|
205
207
|
"./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
|
|
206
208
|
"./node_modules/jquery/dist/jquery.min.js",
|