@magic-xpa/angular 4.901.0-dev491.335 → 4.901.0-dev491.336
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.
- package/README.md +5 -5
- package/esm2020/src/services/magic-color.service.mjs +1 -1
- package/esm2020/src/services/subform.magic.service.mjs +1 -1
- package/esm2020/src/services/table.magic.service.mjs +1 -1
- package/esm2020/src/ui/components/base-magic-alert.component.mjs +1 -1
- package/esm2020/src/ui/components/base-magic-confirm.component.mjs +1 -1
- package/esm2020/src/ui/components/magic-alert.component.mjs +36 -36
- package/esm2020/src/ui/components/magic-confirmation-box.component.mjs +43 -43
- package/esm2020/src/ui/directives/magic-focus.directive.mjs +1 -1
- package/esm2020/src/ui/directives/magicViewContainerRef.directive.mjs +1 -1
- package/fesm2015/magic-xpa-angular.mjs +77 -77
- package/fesm2015/magic-xpa-angular.mjs.map +1 -1
- package/fesm2020/magic-xpa-angular.mjs +77 -77
- package/fesm2020/magic-xpa-angular.mjs.map +1 -1
- package/package.json +3 -3
@@ -1283,42 +1283,42 @@ MagicAlertComponent.ɵcmp = i0.ɵɵdefineComponent({ type: MagicAlertComponent,
|
|
1283
1283
|
type: Component,
|
1284
1284
|
args: [{
|
1285
1285
|
selector: 'sample-magic-alert-component',
|
1286
|
-
template: `<div>
|
1287
|
-
<div class="mg-message-background">
|
1288
|
-
<h2> {{title}}</h2>
|
1289
|
-
<p>{{message}} </p>
|
1290
|
-
|
1291
|
-
<button (click)="OnClose()">OK</button>
|
1292
|
-
</div>
|
1286
|
+
template: `<div>
|
1287
|
+
<div class="mg-message-background">
|
1288
|
+
<h2> {{title}}</h2>
|
1289
|
+
<p>{{message}} </p>
|
1290
|
+
|
1291
|
+
<button (click)="OnClose()">OK</button>
|
1292
|
+
</div>
|
1293
1293
|
</div>`,
|
1294
|
-
styles: [`
|
1295
|
-
.mg-message-background {
|
1296
|
-
background-color: #F5F5F5;
|
1297
|
-
text-align: center;
|
1298
|
-
width: 40%;
|
1299
|
-
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
1300
|
-
padding: 17px;
|
1301
|
-
border-radius: 5px;
|
1302
|
-
text-align: center;
|
1303
|
-
margin-top: 10% ;
|
1304
|
-
margin-left: auto;
|
1305
|
-
margin-right: auto;
|
1306
|
-
border: 1px solid gray;
|
1307
|
-
}
|
1308
|
-
|
1309
|
-
button {
|
1310
|
-
background-color: #8CD4F5;
|
1311
|
-
color: white;
|
1312
|
-
border: none;
|
1313
|
-
box-shadow: none;
|
1314
|
-
font-size: 17px;
|
1315
|
-
font-weight: 500;
|
1316
|
-
-webkit-border-radius: 4px;
|
1317
|
-
border-radius: 5px;
|
1318
|
-
padding: 10px 32px;
|
1319
|
-
margin: 26px 5px 0 5px;
|
1320
|
-
cursor: pointer;
|
1321
|
-
}
|
1294
|
+
styles: [`
|
1295
|
+
.mg-message-background {
|
1296
|
+
background-color: #F5F5F5;
|
1297
|
+
text-align: center;
|
1298
|
+
width: 40%;
|
1299
|
+
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
1300
|
+
padding: 17px;
|
1301
|
+
border-radius: 5px;
|
1302
|
+
text-align: center;
|
1303
|
+
margin-top: 10% ;
|
1304
|
+
margin-left: auto;
|
1305
|
+
margin-right: auto;
|
1306
|
+
border: 1px solid gray;
|
1307
|
+
}
|
1308
|
+
|
1309
|
+
button {
|
1310
|
+
background-color: #8CD4F5;
|
1311
|
+
color: white;
|
1312
|
+
border: none;
|
1313
|
+
box-shadow: none;
|
1314
|
+
font-size: 17px;
|
1315
|
+
font-weight: 500;
|
1316
|
+
-webkit-border-radius: 4px;
|
1317
|
+
border-radius: 5px;
|
1318
|
+
padding: 10px 32px;
|
1319
|
+
margin: 26px 5px 0 5px;
|
1320
|
+
cursor: pointer;
|
1321
|
+
}
|
1322
1322
|
`]
|
1323
1323
|
}]
|
1324
1324
|
}], null, null);
|
@@ -1355,49 +1355,49 @@ MagicConfirmationBoxComponent.ɵcmp = i0.ɵɵdefineComponent({ type: MagicConfir
|
|
1355
1355
|
type: Component,
|
1356
1356
|
args: [{
|
1357
1357
|
selector: 'sample-magic-confirmation-box',
|
1358
|
-
template: `<div>
|
1359
|
-
<div class="mg-message-background">
|
1360
|
-
<h2> {{title}}</h2>
|
1361
|
-
{{message}}
|
1362
|
-
<br>
|
1363
|
-
<br>
|
1364
|
-
|
1365
|
-
<button (click)="OnClose(true)">OK</button>
|
1366
|
-
<button class="cancel" (click)="OnClose(false)">Cancel</button>
|
1367
|
-
</div>
|
1358
|
+
template: `<div>
|
1359
|
+
<div class="mg-message-background">
|
1360
|
+
<h2> {{title}}</h2>
|
1361
|
+
{{message}}
|
1362
|
+
<br>
|
1363
|
+
<br>
|
1364
|
+
|
1365
|
+
<button (click)="OnClose(true)">OK</button>
|
1366
|
+
<button class="cancel" (click)="OnClose(false)">Cancel</button>
|
1367
|
+
</div>
|
1368
1368
|
</div>`,
|
1369
|
-
styles: [`
|
1370
|
-
.mg-message-background {
|
1371
|
-
background-color: #F5F5F5;
|
1372
|
-
text-align: center;
|
1373
|
-
width: 40%;
|
1374
|
-
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
1375
|
-
padding: 17px;
|
1376
|
-
border-radius: 5px;
|
1377
|
-
text-align: center;
|
1378
|
-
margin-top: 10% ;
|
1379
|
-
margin-left: auto;
|
1380
|
-
margin-right: auto;
|
1381
|
-
border: 1px solid gray;
|
1382
|
-
}
|
1383
|
-
|
1384
|
-
button {
|
1385
|
-
background-color: #8CD4F5;
|
1386
|
-
color: white;
|
1387
|
-
border: none;
|
1388
|
-
box-shadow: none;
|
1389
|
-
font-size: 17px;
|
1390
|
-
font-weight: 500;
|
1391
|
-
-webkit-border-radius: 4px;
|
1392
|
-
border-radius: 5px;
|
1393
|
-
padding: 10px 32px;
|
1394
|
-
margin: 26px 5px 0 5px;
|
1395
|
-
cursor: pointer;
|
1396
|
-
}
|
1397
|
-
|
1398
|
-
button.cancel {
|
1399
|
-
background-color: #C1C1C1;
|
1400
|
-
}
|
1369
|
+
styles: [`
|
1370
|
+
.mg-message-background {
|
1371
|
+
background-color: #F5F5F5;
|
1372
|
+
text-align: center;
|
1373
|
+
width: 40%;
|
1374
|
+
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
1375
|
+
padding: 17px;
|
1376
|
+
border-radius: 5px;
|
1377
|
+
text-align: center;
|
1378
|
+
margin-top: 10% ;
|
1379
|
+
margin-left: auto;
|
1380
|
+
margin-right: auto;
|
1381
|
+
border: 1px solid gray;
|
1382
|
+
}
|
1383
|
+
|
1384
|
+
button {
|
1385
|
+
background-color: #8CD4F5;
|
1386
|
+
color: white;
|
1387
|
+
border: none;
|
1388
|
+
box-shadow: none;
|
1389
|
+
font-size: 17px;
|
1390
|
+
font-weight: 500;
|
1391
|
+
-webkit-border-radius: 4px;
|
1392
|
+
border-radius: 5px;
|
1393
|
+
padding: 10px 32px;
|
1394
|
+
margin: 26px 5px 0 5px;
|
1395
|
+
cursor: pointer;
|
1396
|
+
}
|
1397
|
+
|
1398
|
+
button.cancel {
|
1399
|
+
background-color: #C1C1C1;
|
1400
|
+
}
|
1401
1401
|
`]
|
1402
1402
|
}]
|
1403
1403
|
}], null, null);
|