@wavemaker/angular-codegen 11.0.1-next.138729 → 11.0.1-next.138732

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. angular-codegen/angular-app/build-scripts/post-build.js +30 -50
  2. angular-codegen/angular-app/package-lock.json +252 -24494
  3. angular-codegen/angular-app/package.json +1 -1
  4. angular-codegen/angular-app/src/assets/styles/css/wm-style.css +1 -1
  5. angular-codegen/dependencies/app.component.html +22 -0
  6. angular-codegen/dependencies/expression-parser.cjs.js +17809 -0
  7. angular-codegen/dependencies/pipe-provider.cjs.js +69090 -0
  8. angular-codegen/dependencies/transpilation-mobile.cjs.js +557 -381
  9. angular-codegen/dependencies/transpilation-web.cjs.js +557 -381
  10. angular-codegen/package-lock.json +18 -5488
  11. angular-codegen/package.json +1 -1
  12. angular-codegen/src/codegen-args-cli.js +1 -1
  13. angular-codegen/src/codegen-cli.js +1 -1
  14. angular-codegen/src/codegen.js +1 -1
  15. angular-codegen/src/expr-parser-utils.js +1 -0
  16. angular-codegen/src/gen-app-skeleton.js +1 -1
  17. angular-codegen/src/gen-app-variables.js +1 -1
  18. angular-codegen/src/gen-components.js +1 -1
  19. angular-codegen/src/gen-layouts.js +1 -0
  20. angular-codegen/src/handlebar-helpers.js +1 -1
  21. angular-codegen/src/pages-util.js +1 -1
  22. angular-codegen/src/wm-utils.js +1 -1
  23. angular-codegen/templates/app-routes.ts.hbs +1 -1
  24. angular-codegen/templates/app.component.script.js.hbs +6 -1
  25. angular-codegen/templates/component.expressions.ts.hbs +3 -0
  26. angular-codegen/templates/expr-vs-fn.hbs +3 -0
  27. angular-codegen/templates/layout/layout.component.ts.hbs +4 -18
  28. angular-codegen/templates/layout/layout.module.ts.hbs +2 -4
  29. angular-codegen/templates/page/page.component.ts.hbs +9 -3
  30. angular-codegen/templates/partial/partial.component.ts.hbs +7 -0
  31. angular-codegen/templates/prefab/prefab.component.ts.hbs +7 -0
  32. angular-codegen/templates/layout/layout.component.script.js.hbs +0 -3
@@ -0,0 +1,22 @@
1
+ <ng-container *ngIf="startApp">
2
+ <router-outlet></router-outlet>
3
+ <div wmContainer partialContainer content="Common" hidden class="ng-hide" *ngIf="isApplicationType"></div>
4
+ <app-spinner name="globalspinner" classname="global-spinner" role="alert" aria-live="assertive" [attr.aria-label]="spinner.arialabel || 'Loading'" [show]="spinner.show" [spinnermessages]="spinner.messages"></app-spinner>
5
+ <div wmDialog name="oAuthLoginDialog" title="Application is requesting you to sign in with"
6
+ close.event="closeOAuthDialog()">
7
+ <ng-template #dialogBody>
8
+ <ul class="list-items">
9
+ <li class="list-item" *ngFor="let provider of providersConfig">
10
+ <button class="btn" (click)="provider.invoke()">{{provider.name}}</button>
11
+ </li>
12
+ </ul>
13
+ </ng-template>
14
+ </div>
15
+ <div wmConfirmDialog name="_app-confirm-dialog" title.bind="title" message.bind="message" oktext.bind="oktext"
16
+ canceltext.bind="canceltext" closable="false" iconclass.bind="iconclass"
17
+ escape.event="onEscape()" ok.event="onOk()" cancel.event="onCancel()" close.event="onClose()" opened.event="onOpen()"></div>
18
+ <div wmAppExt></div>
19
+ <i id="wm-mobile-display"></i>
20
+ </ng-container>
21
+ <!--Dummy container to create the component dynamically-->
22
+ <ng-container #dynamicComponent></ng-container>