@ardimedia/angular-portal-azure 0.2.345 → 0.2.346

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/apn.d.ts CHANGED
@@ -8,11 +8,14 @@ declare namespace angularportalazure {
8
8
  class UserAccount {
9
9
  constructor(username: string, firstName?: string, lastName?: string);
10
10
  private _firstName;
11
- firstName: string;
11
+ get firstName(): string;
12
+ set firstName(value: string);
12
13
  private _lastName;
13
- lastName: string;
14
+ get lastName(): string;
15
+ set lastName(value: string);
14
16
  private _name;
15
- name: string;
17
+ get name(): string;
18
+ set name(value: string);
16
19
  userName: string;
17
20
  emailAddress: string;
18
21
  }
@@ -73,15 +76,16 @@ declare namespace angularportalazure {
73
76
  title: string;
74
77
  subTitle: string;
75
78
  width: {
76
- 'width': string;
79
+ width: string;
77
80
  };
78
81
  widthStackLayout: {
79
- 'width': string;
82
+ width: string;
80
83
  };
81
84
  isInnerHtml: boolean;
82
85
  formblade: any;
83
86
  private _path;
84
- path: string;
87
+ get path(): string;
88
+ set path(newPath: string);
85
89
  isCommandBrowse: boolean;
86
90
  isCommandBrowseEnabled: boolean;
87
91
  commandBrowse: () => void;
@@ -358,9 +362,11 @@ declare namespace angularportalazure {
358
362
  widthAreaUsed: number;
359
363
  private areaNotification;
360
364
  private _width;
361
- width: number;
365
+ get width(): number;
366
+ set width(value: number);
362
367
  private _backgroundColor;
363
- backgroundColor: string;
368
+ get backgroundColor(): string;
369
+ set backgroundColor(value: string);
364
370
  hide(): void;
365
371
  show(width?: number): void;
366
372
  onHide(): boolean;
@@ -406,7 +412,8 @@ declare namespace angularportalazure {
406
412
  portalService: angularportalazure.PortalService;
407
413
  title: string;
408
414
  subTitle: string;
409
- bladePath: string;
415
+ get bladePath(): string;
416
+ set bladePath(newBladePath: string);
410
417
  private _bladePath;
411
418
  tileSize: angularportalazure.TileSizes;
412
419
  size: string;
package/apn.js CHANGED
@@ -12,8 +12,7 @@ var angularportalazure;
12
12
  'angulartics.google.analytics'
13
13
  ]);
14
14
  /** Configure Angular: $translateProvider */
15
- angularModule.config(['$translateProvider',
16
- function ($translateProvider) {
15
+ angularModule.config(['$translateProvider', function ($translateProvider) {
17
16
  $translateProvider.useSanitizeValueStrategy('escape');
18
17
  $translateProvider.fallbackLanguage('de');
19
18
  $translateProvider.use(readCookie('SAMPLE_TRANSLATE_LANG_KEY'));
@@ -57,7 +56,7 @@ var angularportalazure;
57
56
  this._firstName = value;
58
57
  this._name = (this._firstName || '') + ' ' + (this._lastName || '');
59
58
  },
60
- enumerable: true,
59
+ enumerable: false,
61
60
  configurable: true
62
61
  });
63
62
  Object.defineProperty(UserAccount.prototype, "lastName", {
@@ -68,7 +67,7 @@ var angularportalazure;
68
67
  this._lastName = value;
69
68
  this._name = (this._firstName || '') + ' ' + (this._lastName || '');
70
69
  },
71
- enumerable: true,
70
+ enumerable: false,
72
71
  configurable: true
73
72
  });
74
73
  Object.defineProperty(UserAccount.prototype, "name", {
@@ -78,7 +77,7 @@ var angularportalazure;
78
77
  set: function (value) {
79
78
  throw new Error('[angularportalazure.UserAccount] \'name\' is a calculated value from \'firsName\' and \'lastName\'. Assignment not allowed.');
80
79
  },
81
- enumerable: true,
80
+ enumerable: false,
82
81
  configurable: true
83
82
  });
84
83
  return UserAccount;
@@ -218,7 +217,7 @@ var __extends = (this && this.__extends) || (function () {
218
217
  ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
219
218
  function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
220
219
  return extendStatics(d, b);
221
- }
220
+ };
222
221
  return function (d, b) {
223
222
  extendStatics(d, b);
224
223
  function __() { this.constructor = d; }
@@ -374,7 +373,7 @@ var angularportalazure;
374
373
  }
375
374
  this._path = newPath.toLowerCase();
376
375
  },
377
- enumerable: true,
376
+ enumerable: false,
378
377
  configurable: true
379
378
  });
380
379
  // #endregion
@@ -1132,7 +1131,7 @@ var angularportalazure;
1132
1131
  this._width = value;
1133
1132
  this.calcualteCssStyles();
1134
1133
  },
1135
- enumerable: true,
1134
+ enumerable: false,
1136
1135
  configurable: true
1137
1136
  });
1138
1137
  Object.defineProperty(AreaNotification.prototype, "backgroundColor", {
@@ -1143,7 +1142,7 @@ var angularportalazure;
1143
1142
  this._backgroundColor = value;
1144
1143
  this.calcualteCssStyles();
1145
1144
  },
1146
- enumerable: true,
1145
+ enumerable: false,
1147
1146
  configurable: true
1148
1147
  });
1149
1148
  // #endregion
@@ -1273,7 +1272,7 @@ var angularportalazure;
1273
1272
  set: function (newBladePath) {
1274
1273
  this._bladePath = newBladePath.toLowerCase();
1275
1274
  },
1276
- enumerable: true,
1275
+ enumerable: false,
1277
1276
  configurable: true
1278
1277
  });
1279
1278
  // #endregion
@@ -1,3 +1,3 @@
1
- # ngDialog
2
-
3
- http://www.cssscript.com/modals-and-popups-provider-for-angular-js-applications-ngdialog/
1
+ # ngDialog
2
+
3
+ http://www.cssscript.com/modals-and-popups-provider-for-angular-js-applications-ngdialog/
@@ -1,74 +1,74 @@
1
- <div class="fxs-portal fxs-theme-blue">
2
- <!-- fxs-topbar -->
3
- <div class="fxs-topbar container-fluid row">
4
- <div class="col-6" style="padding-left: 25px;">
5
- <a href="#" class="fxs-topbar-home fxs-has-hover">{{$ctrl.vm.portalService.panorama.title}}</a>
6
- </div>
7
- <div class="col-6 fxs-avatarmenu-tenant-container" style="padding-right:10px;">
8
- <a class="fxs-has-hover" href="/Account/Manage">
9
- <span>{{$ctrl.vm.portalService.panorama.avatarMenu.userAccount.name}}</span><br />
10
- <span>{{$ctrl.vm.portalService.panorama.avatarMenu.userAccount.userName}}</span>
11
- </a>
12
- </div>
13
- </div>
14
- <div id="apa-portal-scroll" class="fxs-portal-content fxs-panorama" style="height:calc(100% - 40px)">
15
- <!-- fxs-panorama-homearea -->
16
- <div class="fxs-panorama-homearea" ng-class="{collapsed: !$ctrl.vm.portalService.panorama.startboard.tiles.showTiles}" ng-show="$ctrl.vm.portalService.panorama.isVisible" style="padding-top:45px;">
17
- <div class="fxs-startboard-target fxs-startboard fx-rightClick" ng-class="{collapsed: !$ctrl.vm.portalService.panorama.startboard.tiles.showTiles}">
18
- <!-- HEADER INFO AREA -->
19
- <!--<div class="xfxs-part fxs-part-clickable" style="background-color:#293644; padding:25px; max-width: 800px;margin-bottom:15px;">
20
- <header class="xfxs-part-title" style="color:white">
21
- <h3 class="xmsportalfx-tooltip-overflow">Redesign</h3>
22
- <p class="xmsportalfx-tooltip-overflow" style="margin:0;padding:0">
23
- Zur Zeit stehen nicht alle Applikation in der PREVIEW-Umgebung zur Verfügung. <b>
24
- Falls Ihre Applikation unten nicht aufgelistet wird,
25
- entfernen sie in der URL den Teil mit [.preview] und navigieren Sie somit zur STANDARD-Umgebung.
26
- In der STANDARD-Umgebung können Sie wie gewohnt weiterarbeiten.
27
- </b>
28
- In den kommenden Monaten werden alle Applikationen auf das neue Layout angepasst.
29
- <br /><br />Bei Fragen stehen wir gerne zur Verfügung.
30
- <br />Ihr Ardimedia Team
31
- </p>
32
- </header>
33
- <section class="fxs-part-content css-scope-HubsExtension"></section>
34
- </div>-->
35
- <!-- !$ctrl.vm.portalService.panorama.startboard.tiles.isTilesLoaded -->
36
- <div ng-if="$ctrl.vm.portalService.panorama.startboard.tiles.tiles.length === 0" class="xfxs-part fxs-part-clickable" style="background-color:#293644; padding:25px; max-width: 800px;margin-bottom:15px;height:auto;">
37
- <header class="xfxs-part-title" style="color:white">
38
- <h3 class="xmsportalfx-tooltip-overflow">Keine Applikationen zugeordnet</h3>
39
- <p class="xmsportalfx-tooltip-overflow" style="margin:0;padding:0">
40
- Wenden Sie sich bitte an den Administrator damit die entsprechenden Applikationen zugeordnet werden können.
41
- <br />Ihr Ardimedia Team
42
- </p>
43
- </header>
44
- </div>
45
- <div class="fxs-startboard-layout fxs-flowlayout">
46
- <div class="fxs-flowlayout-childcontainer">
47
- <section data-ng-repeat="tile in $ctrl.vm.portalService.panorama.startboard.tiles.tiles track by $index" class="fxs-tile fx-rightClick fxs-flowlayout-element" data-ng-class="{'fxs-tilesize-normal':tile.size=='normal', 'fxs-tilesize-mini':tile.size=='mini', 'fxs-tilesize-herowide':tile.size=='herowide'}" data-ng-style="{'left': tile.left, 'top': tile.top}">
48
- <div class="fxs-part fxs-part-clickable" ng-click="tile.clicked();" style="cursor:pointer;">
49
- <header class="fxs-part-title">
50
- <h2 class="msportalfx-tooltip-overflow">{{tile.title}}</h2>
51
- <h3 class="msportalfx-tooltip-overflow">{{tile.subTitle}}</h3>
52
- </header>
53
- <section class="fxs-part-content css-scope-HubsExtension"></section>
54
- </div>
55
- <div class="fxs-title-overlay"></div>
56
- </section>
57
- </div>
58
- </div>
59
- </div>
60
- </div>
61
- <!-- apa-blade-area -->
62
- <div id="apa-blade-area" class="fxs-journey-target fxs-journey">
63
- <div class="fxs-journey-layout fxs-stacklayout fxs-stacklayout-horizontal">
64
- <div data-ng-repeat="blade in $ctrl.vm.portalService.areaBlades.blades track by $index" class="azureportalblade fxs-stacklayout-child" ng-include="blade.path"></div>
65
- </div>
66
- </div>
67
- <!--apa-notification-area-->
68
- <div id="apa-notification-area" style="display: none;">
69
- <div style="height:40px;background-color:#202428"></div>
70
- <button ng-if="!$ctrl.vm.portalService.areaNotification.path" ng-click="$ctrl.vm.portalService.areaNotification.hide();">CLOSE</button>
71
- <div ng-include="$ctrl.vm.portalService.areaNotification.path"></div>
72
- </div>
73
- </div>
74
- </div>
1
+ <div class="fxs-portal fxs-theme-blue">
2
+ <!-- fxs-topbar -->
3
+ <div class="fxs-topbar container-fluid row">
4
+ <div class="col-6" style="padding-left: 25px;">
5
+ <a href="#" class="fxs-topbar-home fxs-has-hover">{{$ctrl.vm.portalService.panorama.title}}</a>
6
+ </div>
7
+ <div class="col-6 fxs-avatarmenu-tenant-container" style="padding-right:10px;">
8
+ <a class="fxs-has-hover" href="/Account/Manage">
9
+ <span>{{$ctrl.vm.portalService.panorama.avatarMenu.userAccount.name}}</span><br />
10
+ <span>{{$ctrl.vm.portalService.panorama.avatarMenu.userAccount.userName}}</span>
11
+ </a>
12
+ </div>
13
+ </div>
14
+ <div id="apa-portal-scroll" class="fxs-portal-content fxs-panorama" style="height:calc(100% - 40px)">
15
+ <!-- fxs-panorama-homearea -->
16
+ <div class="fxs-panorama-homearea" ng-class="{collapsed: !$ctrl.vm.portalService.panorama.startboard.tiles.showTiles}" ng-show="$ctrl.vm.portalService.panorama.isVisible" style="padding-top:45px;">
17
+ <div class="fxs-startboard-target fxs-startboard fx-rightClick" ng-class="{collapsed: !$ctrl.vm.portalService.panorama.startboard.tiles.showTiles}">
18
+ <!-- HEADER INFO AREA -->
19
+ <!--<div class="xfxs-part fxs-part-clickable" style="background-color:#293644; padding:25px; max-width: 800px;margin-bottom:15px;">
20
+ <header class="xfxs-part-title" style="color:white">
21
+ <h3 class="xmsportalfx-tooltip-overflow">Redesign</h3>
22
+ <p class="xmsportalfx-tooltip-overflow" style="margin:0;padding:0">
23
+ Zur Zeit stehen nicht alle Applikation in der PREVIEW-Umgebung zur Verfügung. <b>
24
+ Falls Ihre Applikation unten nicht aufgelistet wird,
25
+ entfernen sie in der URL den Teil mit [.preview] und navigieren Sie somit zur STANDARD-Umgebung.
26
+ In der STANDARD-Umgebung können Sie wie gewohnt weiterarbeiten.
27
+ </b>
28
+ In den kommenden Monaten werden alle Applikationen auf das neue Layout angepasst.
29
+ <br /><br />Bei Fragen stehen wir gerne zur Verfügung.
30
+ <br />Ihr Ardimedia Team
31
+ </p>
32
+ </header>
33
+ <section class="fxs-part-content css-scope-HubsExtension"></section>
34
+ </div>-->
35
+ <!-- !$ctrl.vm.portalService.panorama.startboard.tiles.isTilesLoaded -->
36
+ <div ng-if="$ctrl.vm.portalService.panorama.startboard.tiles.tiles.length === 0" class="xfxs-part fxs-part-clickable" style="background-color:#293644; padding:25px; max-width: 800px;margin-bottom:15px;height:auto;">
37
+ <header class="xfxs-part-title" style="color:white">
38
+ <h3 class="xmsportalfx-tooltip-overflow">Keine Applikationen zugeordnet</h3>
39
+ <p class="xmsportalfx-tooltip-overflow" style="margin:0;padding:0">
40
+ Wenden Sie sich bitte an den Administrator damit die entsprechenden Applikationen zugeordnet werden können.
41
+ <br />Ihr Ardimedia Team
42
+ </p>
43
+ </header>
44
+ </div>
45
+ <div class="fxs-startboard-layout fxs-flowlayout">
46
+ <div class="fxs-flowlayout-childcontainer">
47
+ <section data-ng-repeat="tile in $ctrl.vm.portalService.panorama.startboard.tiles.tiles track by $index" class="fxs-tile fx-rightClick fxs-flowlayout-element" data-ng-class="{'fxs-tilesize-normal':tile.size=='normal', 'fxs-tilesize-mini':tile.size=='mini', 'fxs-tilesize-herowide':tile.size=='herowide'}" data-ng-style="{'left': tile.left, 'top': tile.top}">
48
+ <div class="fxs-part fxs-part-clickable" ng-click="tile.clicked();" style="cursor:pointer;">
49
+ <header class="fxs-part-title">
50
+ <h2 class="msportalfx-tooltip-overflow">{{tile.title}}</h2>
51
+ <h3 class="msportalfx-tooltip-overflow">{{tile.subTitle}}</h3>
52
+ </header>
53
+ <section class="fxs-part-content css-scope-HubsExtension"></section>
54
+ </div>
55
+ <div class="fxs-title-overlay"></div>
56
+ </section>
57
+ </div>
58
+ </div>
59
+ </div>
60
+ </div>
61
+ <!-- apa-blade-area -->
62
+ <div id="apa-blade-area" class="fxs-journey-target fxs-journey">
63
+ <div class="fxs-journey-layout fxs-stacklayout fxs-stacklayout-horizontal">
64
+ <div data-ng-repeat="blade in $ctrl.vm.portalService.areaBlades.blades track by $index" class="azureportalblade fxs-stacklayout-child" ng-include="blade.path"></div>
65
+ </div>
66
+ </div>
67
+ <!--apa-notification-area-->
68
+ <div id="apa-notification-area" style="display: none;">
69
+ <div style="height:40px;background-color:#202428"></div>
70
+ <button ng-if="!$ctrl.vm.portalService.areaNotification.path" ng-click="$ctrl.vm.portalService.areaNotification.hide();">CLOSE</button>
71
+ <div ng-include="$ctrl.vm.portalService.areaNotification.path"></div>
72
+ </div>
73
+ </div>
74
+ </div>
package/index.js CHANGED
@@ -11,4 +11,4 @@ module.exports = angularportalazure;
11
11
  } else {
12
12
  root.returnExports = factory(root.libName);
13
13
  }
14
- }(this, function (b) { console.log(b); }))
14
+ }(this, function (b) { console.log(b); }));
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@ardimedia/angular-portal-azure",
3
3
  "description": "Angular Portal Azure - GUI Framework.",
4
4
  "author": "Ardimedia Anstalt <info@ardimedia.com> (http://www.ardimedia.com)",
5
- "version": "0.2.345",
5
+ "version": "0.2.346",
6
6
  "main": "index.js",
7
7
  "typings": "apn.d.ts",
8
8
  "dependencies": {
@@ -12,32 +12,32 @@
12
12
  "@angular/compiler": "^7.0.0",
13
13
  "@angular/core": "^7.0.0",
14
14
  "@angular/forms": "^7.0.0",
15
- "@angular/http": "^7.0.0",
15
+ "@angular/http": "^7.2.16",
16
16
  "@angular/platform-browser": "^7.0.0",
17
17
  "@angular/platform-browser-dynamic": "^7.0.0",
18
18
  "@angular/platform-server": "^7.0.0",
19
19
  "@angular/router": "^7.0.0",
20
20
  "@angular/upgrade": "^7.0.0",
21
- "angular": "^1.7.5",
22
- "angular-resource": "^1.7.5",
23
- "angular-translate": "^2.18.1",
24
- "angular-translate-storage-cookie": "^2.18.1",
21
+ "@types/node": "^14.0.14",
22
+ "angular": "^1.8.0",
23
+ "angular-resource": "^1.8.0",
24
+ "angular-translate": "^2.18.2",
25
+ "angular-translate-storage-cookie": "^2.18.2",
25
26
  "angulartics": "^1.6.0",
26
27
  "angulartics-google-analytics": "^0.5.0",
27
- "bootstrap": "^4.1.3",
28
+ "bootstrap": "^4.5.0",
28
29
  "ng-dialog": "^1.4.0",
29
- "rxjs": "^6.3.3",
30
+ "rxjs": "^6.5.5",
30
31
  "zone.js": "^0.8.26"
31
32
  },
32
33
  "devDependencies": {
33
34
  "@angular/compiler-cli": "^7.0.0",
34
- "@types/angular": "1.6.51",
35
- "@types/angular-resource": "^1.5.14",
36
- "@types/angular-translate": "^2.16.0",
35
+ "@types/angular": "^1.7.2",
36
+ "@types/angular-resource": "^1.5.15",
37
+ "@types/angular-translate": "^2.16.2",
37
38
  "@types/angulartics": "^1.4.1",
38
- "@types/ng-dialog": "^0.6.2",
39
- "@types/node": "^10.12.0",
39
+ "@types/ng-dialog": "^0.6.3",
40
40
  "tslint": "^5.11.0",
41
- "typescript": "^3.1.3"
41
+ "typescript": "^3.9.5"
42
42
  }
43
43
  }