@wavemaker/angular-codegen 11.1.0-next.24311 → 11.1.0-next.24314

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.
@@ -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>