@skyux/tiles 5.0.0-beta.2 → 5.0.3
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/bundles/skyux-tiles.umd.js +181 -187
- package/documentation.json +358 -297
- package/esm2015/modules/shared/sky-tiles-resources.module.js +31 -12
- package/esm2015/modules/tiles/tile/tile-summary.component.js +5 -5
- package/esm2015/modules/tiles/tile/tile-title.component.js +5 -5
- package/esm2015/modules/tiles/tile/tile.component.js +20 -16
- package/esm2015/modules/tiles/tile/tile.module.js +14 -16
- package/esm2015/modules/tiles/tile-content/tile-content-section.component.js +5 -5
- package/esm2015/modules/tiles/tile-content/tile-content.component.js +5 -5
- package/esm2015/modules/tiles/tile-content/tile-content.module.js +8 -23
- package/esm2015/modules/tiles/tile-dashboard/tile-dashboard-message-type.js +1 -1
- package/esm2015/modules/tiles/tile-dashboard/tile-dashboard-message.js +1 -1
- package/esm2015/modules/tiles/tile-dashboard/tile-dashboard.component.js +9 -10
- package/esm2015/modules/tiles/tile-dashboard/tile-dashboard.module.js +15 -19
- package/esm2015/modules/tiles/tile-dashboard/tile-dashboard.service.js +53 -40
- package/esm2015/modules/tiles/tile-dashboard-column/tile-dashboard-column.component.js +7 -7
- package/esm2015/modules/tiles/tile-dashboard-column/tile-dashboard-column.module.js +8 -19
- package/esm2015/modules/tiles/tile-dashboard-config/tile-dashboard-config-tile.js +1 -1
- package/esm2015/modules/tiles/tile-dashboard-config/tile-dashboard-config.js +1 -1
- package/esm2015/modules/tiles/tiles.module.js +8 -12
- package/fesm2015/skyux-tiles.js +170 -174
- package/fesm2015/skyux-tiles.js.map +1 -1
- package/modules/tiles/tile/tile.component.d.ts +5 -1
- package/modules/tiles/tile/tile.module.d.ts +5 -4
- package/modules/tiles/tile-dashboard/tile-dashboard.component.d.ts +1 -0
- package/modules/tiles/tile-dashboard/tile-dashboard.module.d.ts +2 -1
- package/modules/tiles/tile-dashboard-config/tile-dashboard-config-tile.d.ts +1 -5
- package/package.json +8 -8
- package/bundles/skyux-tiles.umd.js.map +0 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/common'), require('@skyux/i18n'), require('@skyux/indicators'), require('@skyux/theme'), require('@skyux/animations'), require('rxjs'), require('rxjs/operators'), require('@skyux/core'), require('ng2-dragula')) :
|
|
3
3
|
typeof define === 'function' && define.amd ? define('@skyux/tiles', ['exports', '@angular/core', '@angular/common', '@skyux/i18n', '@skyux/indicators', '@skyux/theme', '@skyux/animations', 'rxjs', 'rxjs/operators', '@skyux/core', 'ng2-dragula'], factory) :
|
|
4
4
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.skyux = global.skyux || {}, global.skyux.tiles = {}), global.ng.core, global.ng.common, global.i3, global.i2$1, global.i4, global.animations, global.rxjs, global.rxjs.operators, global.i2, global.i1));
|
|
5
|
-
}(this, (function (exports, i0, i3$1, i3, i2$1, i4, animations, rxjs, operators, i2, i1) { 'use strict';
|
|
5
|
+
})(this, (function (exports, i0, i3$1, i3, i2$1, i4, animations, rxjs, operators, i2, i1) { 'use strict';
|
|
6
6
|
|
|
7
7
|
function _interopNamespace(e) {
|
|
8
8
|
if (e && e.__esModule) return e;
|
|
@@ -13,14 +13,12 @@
|
|
|
13
13
|
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
14
14
|
Object.defineProperty(n, k, d.get ? d : {
|
|
15
15
|
enumerable: true,
|
|
16
|
-
get: function () {
|
|
17
|
-
return e[k];
|
|
18
|
-
}
|
|
16
|
+
get: function () { return e[k]; }
|
|
19
17
|
});
|
|
20
18
|
}
|
|
21
19
|
});
|
|
22
20
|
}
|
|
23
|
-
n[
|
|
21
|
+
n["default"] = e;
|
|
24
22
|
return Object.freeze(n);
|
|
25
23
|
}
|
|
26
24
|
|
|
@@ -39,7 +37,22 @@
|
|
|
39
37
|
* To update this file, simply rerun the command.
|
|
40
38
|
*/
|
|
41
39
|
var RESOURCES = {
|
|
42
|
-
'EN-US': {
|
|
40
|
+
'EN-US': {
|
|
41
|
+
skyux_tile_expand: { message: 'Expand or collapse {0}' },
|
|
42
|
+
skyux_tile_expand_default: { message: 'Expand or collapse' },
|
|
43
|
+
skyux_tile_help: { message: '{0} help' },
|
|
44
|
+
skyux_tile_help_default: { message: 'Help' },
|
|
45
|
+
skyux_tile_settings: { message: '{0} settings' },
|
|
46
|
+
skyux_tile_settings_default: { message: 'Settings' },
|
|
47
|
+
skyux_tile_move: { message: 'Move {0}' },
|
|
48
|
+
skyux_tile_move_default: { message: 'Move' },
|
|
49
|
+
skyux_tile_move_instructions: {
|
|
50
|
+
message: "When focus is placed on a tile's move button, use the arrow keys to move it. The up and down keys change its position within a column. The left and right keys move it between columns.",
|
|
51
|
+
},
|
|
52
|
+
skyux_tile_moved_assistive_text: {
|
|
53
|
+
message: '{0} moved. Current column: {1} of {2}. Current position in column: {3} of {4}',
|
|
54
|
+
},
|
|
55
|
+
},
|
|
43
56
|
};
|
|
44
57
|
var SkyTilesResourcesProvider = /** @class */ (function () {
|
|
45
58
|
function SkyTilesResourcesProvider() {
|
|
@@ -57,22 +70,26 @@
|
|
|
57
70
|
}
|
|
58
71
|
return SkyTilesResourcesModule;
|
|
59
72
|
}());
|
|
60
|
-
SkyTilesResourcesModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
61
|
-
SkyTilesResourcesModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.
|
|
62
|
-
SkyTilesResourcesModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.
|
|
73
|
+
SkyTilesResourcesModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTilesResourcesModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
74
|
+
SkyTilesResourcesModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTilesResourcesModule, exports: [i3.SkyI18nModule] });
|
|
75
|
+
SkyTilesResourcesModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTilesResourcesModule, providers: [
|
|
76
|
+
{
|
|
63
77
|
provide: i3.SKY_LIB_RESOURCES_PROVIDERS,
|
|
64
78
|
useClass: SkyTilesResourcesProvider,
|
|
65
|
-
multi: true
|
|
66
|
-
}
|
|
67
|
-
|
|
79
|
+
multi: true,
|
|
80
|
+
},
|
|
81
|
+
], imports: [i3.SkyI18nModule] });
|
|
82
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTilesResourcesModule, decorators: [{
|
|
68
83
|
type: i0.NgModule,
|
|
69
84
|
args: [{
|
|
70
85
|
exports: [i3.SkyI18nModule],
|
|
71
|
-
providers: [
|
|
86
|
+
providers: [
|
|
87
|
+
{
|
|
72
88
|
provide: i3.SKY_LIB_RESOURCES_PROVIDERS,
|
|
73
89
|
useClass: SkyTilesResourcesProvider,
|
|
74
|
-
multi: true
|
|
75
|
-
}
|
|
90
|
+
multi: true,
|
|
91
|
+
},
|
|
92
|
+
],
|
|
76
93
|
}]
|
|
77
94
|
}] });
|
|
78
95
|
|
|
@@ -409,7 +426,7 @@
|
|
|
409
426
|
* Fires when the tile dashboard's initialization is complete.
|
|
410
427
|
*/
|
|
411
428
|
this.dashboardInitialized = new i0.EventEmitter();
|
|
412
|
-
this.bagId = 'sky-tile-dashboard-bag-' +
|
|
429
|
+
this.bagId = 'sky-tile-dashboard-bag-' + ++bagIdIndex;
|
|
413
430
|
this.initDragula();
|
|
414
431
|
}
|
|
415
432
|
/**
|
|
@@ -422,7 +439,9 @@
|
|
|
422
439
|
// the config used inside and vice versa.
|
|
423
440
|
this.defaultConfig = this.config = Object.assign({}, config);
|
|
424
441
|
this.settingsKey = settingsKey;
|
|
425
|
-
this.uiConfigService
|
|
442
|
+
this.uiConfigService
|
|
443
|
+
.getConfig(settingsKey, config)
|
|
444
|
+
.pipe(operators.take(1))
|
|
426
445
|
.subscribe(function (value) {
|
|
427
446
|
if (value.persisted) {
|
|
428
447
|
_this.config.layout = value.layout;
|
|
@@ -579,7 +598,8 @@
|
|
|
579
598
|
try {
|
|
580
599
|
for (var _b = __values(this.tileComponents), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
581
600
|
var tileComponent = _c.value;
|
|
582
|
-
if (tileComponent.location.nativeElement.getAttribute(ATTR_TILE_ID) ===
|
|
601
|
+
if (tileComponent.location.nativeElement.getAttribute(ATTR_TILE_ID) ===
|
|
602
|
+
tileId) {
|
|
583
603
|
return tileComponent;
|
|
584
604
|
}
|
|
585
605
|
}
|
|
@@ -607,8 +627,8 @@
|
|
|
607
627
|
* @internal
|
|
608
628
|
*/
|
|
609
629
|
SkyTileDashboardService.prototype.moveTileOnKeyDown = function (tileCmp, direction, tileDescription) {
|
|
610
|
-
var isSingleColumnMode = this.mediaQuery.current === i2.SkyMediaBreakpoints.xs
|
|
611
|
-
|
|
630
|
+
var isSingleColumnMode = this.mediaQuery.current === i2.SkyMediaBreakpoints.xs ||
|
|
631
|
+
this.mediaQuery.current === i2.SkyMediaBreakpoints.sm;
|
|
612
632
|
var tileId = this.getTileId(tileCmp);
|
|
613
633
|
var tile = this.findTile(tileId);
|
|
614
634
|
var column;
|
|
@@ -620,20 +640,23 @@
|
|
|
620
640
|
column = this.findTileColumn(tileId);
|
|
621
641
|
colIndex = this.config.layout.multiColumn.findIndex(function (value) { return value === column; });
|
|
622
642
|
}
|
|
623
|
-
if ((direction === 'left' || direction === 'right') &&
|
|
643
|
+
if ((direction === 'left' || direction === 'right') &&
|
|
644
|
+
!isSingleColumnMode) {
|
|
624
645
|
var operator = direction === 'left' ? -1 : 1;
|
|
625
646
|
var newColumn = this.config.layout.multiColumn[colIndex + operator];
|
|
626
647
|
if (newColumn) {
|
|
627
648
|
// Move the tile to the end of the new column
|
|
628
649
|
newColumn.tiles.push(tile);
|
|
629
650
|
column.tiles = column.tiles.filter(function (item) { return item !== tile; });
|
|
630
|
-
this.moveTilesToColumn(this.columns.toArray()[colIndex + operator], [
|
|
651
|
+
this.moveTilesToColumn(this.columns.toArray()[colIndex + operator], [
|
|
652
|
+
tile,
|
|
653
|
+
]);
|
|
631
654
|
// Report the change in configuration
|
|
632
655
|
var reportConfig = this.config;
|
|
633
656
|
reportConfig.movedTile = {
|
|
634
657
|
tileDescription: tileDescription || /* istanbul ignore next */ tile.id,
|
|
635
658
|
column: colIndex + operator + 1,
|
|
636
|
-
position: newColumn.tiles.length
|
|
659
|
+
position: newColumn.tiles.length,
|
|
637
660
|
};
|
|
638
661
|
this.configChange.emit(reportConfig);
|
|
639
662
|
}
|
|
@@ -659,14 +682,15 @@
|
|
|
659
682
|
columnEl.appendChild(tileComponentInstance.location.nativeElement);
|
|
660
683
|
}
|
|
661
684
|
else {
|
|
662
|
-
columnEl.insertBefore(tileComponentInstance.location.nativeElement, this.getTileComponent(column.tiles[curIndex + operator + 1].id)
|
|
685
|
+
columnEl.insertBefore(tileComponentInstance.location.nativeElement, this.getTileComponent(column.tiles[curIndex + operator + 1].id)
|
|
686
|
+
.location.nativeElement);
|
|
663
687
|
}
|
|
664
688
|
// Report the change in configuration
|
|
665
689
|
var reportConfig = this.config;
|
|
666
690
|
reportConfig.movedTile = {
|
|
667
691
|
tileDescription: tileDescription || /* istanbul ignore next */ tile.id,
|
|
668
692
|
column: isSingleColumnMode ? undefined : colIndex + 1,
|
|
669
|
-
position: curIndex + operator + 1
|
|
693
|
+
position: curIndex + operator + 1,
|
|
670
694
|
};
|
|
671
695
|
this.configChange.emit(reportConfig);
|
|
672
696
|
}
|
|
@@ -708,7 +732,8 @@
|
|
|
708
732
|
// If the layout tile was not found in the list of tiles, it was removed since last the user updated settings
|
|
709
733
|
/*istanbul ignore else */
|
|
710
734
|
if (this.config.layout.singleColumn) {
|
|
711
|
-
this.config.layout.singleColumn.tiles =
|
|
735
|
+
this.config.layout.singleColumn.tiles =
|
|
736
|
+
this.config.layout.singleColumn.tiles.filter(function (elem) { return elem.id !== layoutTile.id; });
|
|
712
737
|
}
|
|
713
738
|
/*istanbul ignore else */
|
|
714
739
|
if (this.config.layout.multiColumn) {
|
|
@@ -730,8 +755,8 @@
|
|
|
730
755
|
SkyTileDashboardService.prototype.loadTiles = function () {
|
|
731
756
|
var e_7, _a, e_8, _b;
|
|
732
757
|
var layout = this.config.layout;
|
|
733
|
-
if (this.mediaQuery.current === i2.SkyMediaBreakpoints.xs
|
|
734
|
-
|
|
758
|
+
if (this.mediaQuery.current === i2.SkyMediaBreakpoints.xs ||
|
|
759
|
+
this.mediaQuery.current === i2.SkyMediaBreakpoints.sm) {
|
|
735
760
|
try {
|
|
736
761
|
for (var _c = __values(layout.singleColumn.tiles), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
737
762
|
var tile = _d.value;
|
|
@@ -774,7 +799,7 @@
|
|
|
774
799
|
var providers = tile.providers /* istanbul ignore next */ || [];
|
|
775
800
|
var injector = i0.Injector.create({
|
|
776
801
|
providers: providers,
|
|
777
|
-
parent: column.injector
|
|
802
|
+
parent: column.injector,
|
|
778
803
|
});
|
|
779
804
|
var factory = column.resolver.resolveComponentFactory(componentType);
|
|
780
805
|
var componentRef = column.content.createComponent(factory, undefined, injector);
|
|
@@ -822,25 +847,25 @@
|
|
|
822
847
|
tiles: this.config.tiles,
|
|
823
848
|
layout: {
|
|
824
849
|
singleColumn: this.getSingleColumnLayoutForUIState(),
|
|
825
|
-
multiColumn: this.getMultiColumnLayoutForUIState()
|
|
826
|
-
}
|
|
850
|
+
multiColumn: this.getMultiColumnLayoutForUIState(),
|
|
851
|
+
},
|
|
827
852
|
};
|
|
828
853
|
}
|
|
829
854
|
return this.config;
|
|
830
855
|
};
|
|
831
856
|
SkyTileDashboardService.prototype.getSingleColumnLayoutForUIState = function () {
|
|
832
|
-
if (this.mediaQuery.current === i2.SkyMediaBreakpoints.xs
|
|
833
|
-
|
|
857
|
+
if (this.mediaQuery.current === i2.SkyMediaBreakpoints.xs ||
|
|
858
|
+
this.mediaQuery.current === i2.SkyMediaBreakpoints.sm) {
|
|
834
859
|
return {
|
|
835
|
-
tiles: this.getTilesInEl(this.getColumnEl(this.singleColumn))
|
|
860
|
+
tiles: this.getTilesInEl(this.getColumnEl(this.singleColumn)),
|
|
836
861
|
};
|
|
837
862
|
}
|
|
838
863
|
return this.config.layout.singleColumn;
|
|
839
864
|
};
|
|
840
865
|
SkyTileDashboardService.prototype.getMultiColumnLayoutForUIState = function () {
|
|
841
866
|
var e_10, _a;
|
|
842
|
-
if (!(this.mediaQuery.current === i2.SkyMediaBreakpoints.xs
|
|
843
|
-
|
|
867
|
+
if (!(this.mediaQuery.current === i2.SkyMediaBreakpoints.xs ||
|
|
868
|
+
this.mediaQuery.current === i2.SkyMediaBreakpoints.sm)) {
|
|
844
869
|
var layoutColumns = [];
|
|
845
870
|
var columns = this.columns.toArray();
|
|
846
871
|
try {
|
|
@@ -848,7 +873,7 @@
|
|
|
848
873
|
var column = columns_1_1.value;
|
|
849
874
|
if (column !== this.singleColumn) {
|
|
850
875
|
var layoutColumn = {
|
|
851
|
-
tiles: this.getTilesInEl(this.getColumnEl(column))
|
|
876
|
+
tiles: this.getTilesInEl(this.getColumnEl(column)),
|
|
852
877
|
};
|
|
853
878
|
layoutColumns.push(layoutColumn);
|
|
854
879
|
}
|
|
@@ -897,7 +922,7 @@
|
|
|
897
922
|
moves: function (el, container, handle) {
|
|
898
923
|
var target = el.querySelector('.sky-tile-grab-handle');
|
|
899
924
|
return target.contains(handle);
|
|
900
|
-
}
|
|
925
|
+
},
|
|
901
926
|
});
|
|
902
927
|
this.dragulaService.drop.subscribe(function (value) {
|
|
903
928
|
var config = _this.getConfigForUIState();
|
|
@@ -965,11 +990,13 @@
|
|
|
965
990
|
this.checkReadyAndLoadTiles();
|
|
966
991
|
};
|
|
967
992
|
SkyTileDashboardService.prototype.setUserConfig = function (config) {
|
|
968
|
-
this.uiConfigService
|
|
993
|
+
this.uiConfigService
|
|
994
|
+
.setConfig(this.settingsKey, {
|
|
969
995
|
layout: this.config.layout,
|
|
970
996
|
persisted: true,
|
|
971
|
-
tileIds: this.defaultConfig.tiles.map(function (elem) { return elem.id; })
|
|
972
|
-
})
|
|
997
|
+
tileIds: this.defaultConfig.tiles.map(function (elem) { return elem.id; }),
|
|
998
|
+
})
|
|
999
|
+
.subscribe(function () { }, function (err) {
|
|
973
1000
|
console.warn('Could not save tile dashboard settings.');
|
|
974
1001
|
console.warn(err);
|
|
975
1002
|
});
|
|
@@ -995,7 +1022,10 @@
|
|
|
995
1022
|
smallest = item.tiles.length;
|
|
996
1023
|
}
|
|
997
1024
|
});
|
|
998
|
-
multiColumn[locationToAdd].tiles.push({
|
|
1025
|
+
multiColumn[locationToAdd].tiles.push({
|
|
1026
|
+
id: elem.id,
|
|
1027
|
+
isCollapsed: false,
|
|
1028
|
+
});
|
|
999
1029
|
});
|
|
1000
1030
|
}
|
|
1001
1031
|
/*istanbul ignore else */
|
|
@@ -1042,9 +1072,9 @@
|
|
|
1042
1072
|
};
|
|
1043
1073
|
return SkyTileDashboardService;
|
|
1044
1074
|
}());
|
|
1045
|
-
SkyTileDashboardService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
1046
|
-
SkyTileDashboardService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
|
1047
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
1075
|
+
SkyTileDashboardService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardService, deps: [{ token: i1__namespace.DragulaService }, { token: i2__namespace.SkyMediaQueryService }, { token: i2__namespace.SkyUIConfigService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
1076
|
+
SkyTileDashboardService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardService });
|
|
1077
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardService, decorators: [{
|
|
1048
1078
|
type: i0.Injectable
|
|
1049
1079
|
}], ctorParameters: function () { return [{ type: i1__namespace.DragulaService }, { type: i2__namespace.SkyMediaQueryService }, { type: i2__namespace.SkyUIConfigService }]; }, propDecorators: { dashboardInitialized: [{
|
|
1050
1080
|
type: i0.Output
|
|
@@ -1160,13 +1190,14 @@
|
|
|
1160
1190
|
if (this.isInDashboardColumn) {
|
|
1161
1191
|
var direction = event.key.toLowerCase().replace('arrow', '');
|
|
1162
1192
|
/* istanbul ignore else */
|
|
1163
|
-
if (direction === 'up'
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
this.dashboardService.moveTileOnKeyDown(this, direction, this.title
|
|
1168
|
-
|
|
1169
|
-
|
|
1193
|
+
if (direction === 'up' ||
|
|
1194
|
+
direction === 'down' ||
|
|
1195
|
+
direction === 'left' ||
|
|
1196
|
+
direction === 'right') {
|
|
1197
|
+
this.dashboardService.moveTileOnKeyDown(this, direction, this.title
|
|
1198
|
+
? this.title.nativeElement.innerText
|
|
1199
|
+
: /* istanbul ignore next */
|
|
1200
|
+
undefined);
|
|
1170
1201
|
this.focusHandle();
|
|
1171
1202
|
}
|
|
1172
1203
|
}
|
|
@@ -1176,15 +1207,15 @@
|
|
|
1176
1207
|
};
|
|
1177
1208
|
return SkyTileComponent;
|
|
1178
1209
|
}());
|
|
1179
|
-
SkyTileComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
1180
|
-
SkyTileComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.
|
|
1181
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
1210
|
+
SkyTileComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileComponent, deps: [{ token: i0__namespace.ElementRef }, { token: i0__namespace.ChangeDetectorRef }, { token: SkyTileDashboardService, optional: true }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1211
|
+
SkyTileComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SkyTileComponent, selector: "sky-tile", inputs: { showSettings: "showSettings", showHelp: "showHelp", tileName: "tileName", isCollapsed: "isCollapsed" }, outputs: { settingsClick: "settingsClick", isCollapsedChange: "isCollapsedChange", helpClick: "helpClick" }, viewQueries: [{ propertyName: "grabHandle", first: true, predicate: ["grabHandle"], descendants: true, read: i0.ElementRef }, { propertyName: "title", first: true, predicate: ["titleContainer"], descendants: true, read: i0.ElementRef }], ngImport: i0__namespace, template: "<section\n class=\"sky-tile\"\n [ngClass]=\"{\n 'sky-tile-collapsed': isCollapsed\n }\"\n [skyThemeClass]=\"{\n 'sky-box sky-elevation-1-bordered sky-padding-even-xl': 'modern'\n }\"\n>\n <header class=\"sky-tile-header\">\n <div class=\"sky-tile-header-content\" (click)=\"titleClick()\">\n <div class=\"sky-tile-header-title\" #titleContainer>\n <ng-content select=\"sky-tile-title\"></ng-content>\n </div>\n <div\n class=\"sky-tile-summary\"\n [skyThemeClass]=\"{\n 'sky-font-display-3': 'modern',\n 'sky-headline': 'default'\n }\"\n >\n <ng-content select=\"sky-tile-summary\"></ng-content>\n </div>\n </div>\n <div class=\"sky-tile-header-column-tools\">\n <div class=\"sky-tile-tools\">\n <ng-container *skyThemeIf=\"'default'\">\n <button\n *ngIf=\"hasHelp\"\n class=\"sky-btn sky-tile-tools-control sky-tile-help\"\n type=\"button\"\n [attr.aria-label]=\"\n tileName\n ? ('skyux_tile_help' | skyLibResources: tileName)\n : ('skyux_tile_help_default' | skyLibResources)\n \"\n [skyThemeClass]=\"{\n 'sky-btn-icon-borderless': 'modern'\n }\"\n (click)=\"helpButtonClicked()\"\n >\n <sky-icon icon=\"question-circle\"></sky-icon>\n </button>\n </ng-container>\n <sky-chevron\n [ariaControls]=\"tileContent.id\"\n [ariaLabel]=\"\n tileName\n ? ('skyux_tile_expand' | skyLibResources: tileName)\n : ('skyux_tile_expand_default' | skyLibResources)\n \"\n [direction]=\"isCollapsed ? 'down' : 'up'\"\n [skyThemeClass]=\"{\n 'sky-tile-tools-control': 'default',\n 'sky-margin-inline-default': 'modern'\n }\"\n (directionChange)=\"chevronDirectionChange($event)\"\n >\n </sky-chevron>\n <button\n *ngIf=\"hasSettings\"\n class=\"sky-btn sky-tile-settings\"\n type=\"button\"\n [attr.aria-label]=\"\n tileName\n ? ('skyux_tile_settings' | skyLibResources: tileName)\n : ('skyux_tile_settings_default' | skyLibResources)\n \"\n [skyThemeClass]=\"{\n 'sky-tile-tools-control': 'default',\n 'sky-btn-icon-borderless sky-margin-inline-default': 'modern'\n }\"\n (click)=\"settingsButtonClicked()\"\n >\n <sky-icon *skyThemeIf=\"'default'\" icon=\"cog\"></sky-icon>\n <sky-icon\n *skyThemeIf=\"'modern'\"\n icon=\"cog-line\"\n iconType=\"skyux\"\n ></sky-icon>\n </button>\n <button\n *ngIf=\"isInDashboardColumn\"\n class=\"sky-btn sky-tile-grab-handle\"\n [attr.aria-label]=\"\n tileName\n ? ('skyux_tile_move' | skyLibResources: tileName)\n : ('skyux_tile_move_default' | skyLibResources)\n \"\n [attr.aria-describedby]=\"\n dashboardService?.bagId + '-move-instructions'\n \"\n [skyThemeClass]=\"{\n 'sky-tile-tools-control': 'default',\n 'sky-btn-icon-borderless': 'modern'\n }\"\n (click)=\"$event.stopPropagation()\"\n (keydown)=\"moveTile($event)\"\n #grabHandle\n >\n <sky-icon *skyThemeIf=\"'default'\" icon=\"th\"></sky-icon>\n <sky-icon\n *skyThemeIf=\"'modern'\"\n icon=\"tile-drag\"\n iconType=\"skyux\"\n ></sky-icon>\n </button>\n </div>\n </div>\n </header>\n <div\n class=\"sky-tile-content\"\n role=\"region\"\n skyId\n [attr.aria-label]=\"tileName\"\n [@skyAnimationSlide]=\"isCollapsed ? 'up' : 'down'\"\n #tileContent=\"skyId\"\n >\n <ng-content select=\"sky-tile-content\"></ng-content>\n </div>\n</section>\n", styles: [".sky-tile{background-color:#fff;margin-bottom:20px}.sky-tile-header{border-color:#cdcfd2;border-style:solid solid none;border-width:4px 0 0;display:flex}.sky-tile-header-content{display:flex;flex:1;align-items:baseline;cursor:pointer}.sky-tile-header-title{display:inline-flex}.sky-tile-summary{color:#0974a1;opacity:0;padding-right:15px;transition:opacity .25s;max-height:30px;overflow:hidden}.sky-tile-collapsed .sky-tile-summary{opacity:1}.sky-tile-header-column-tools{display:flex;align-items:center;flex:0 0 auto}.sky-tile-tools{display:flex;padding-right:15px}.sky-tile-tools-control{color:#cdcfd2;cursor:pointer;border:0;width:24px;height:24px;padding:0;display:block;margin:0 0 0 9px}.sky-tile-tools-control:hover{color:#979ba2;transition:color .15s}.sky-tile-grab-handle{cursor:move;cursor:-moz-grab;font-size:15px}.sky-tile-content{border-color:#e2e3e4;border-image:none;border-style:solid solid none;border-width:1px 0}:host-context(.sky-theme-modern) .sky-tile-header,:host-context(.sky-theme-modern) .sky-tile-content{border:none}:host-context(.sky-theme-modern) .sky-tile-header-column-tools{align-items:flex-start}:host-context(.sky-theme-modern) .sky-tile-tools{padding:0}:host-context(.sky-theme-modern) .sky-tile-tools-control{font-size:18px;color:#686c73}:host-context(.sky-theme-modern) .sky-tile-grab-handle{font-size:16px}:host-context(.sky-theme-modern) .sky-tile-content ::ng-deep .sky-tile-content-section{border-bottom:1px dotted #c0c2c5}:host-context(.sky-theme-modern) .sky-tile-content ::ng-deep sky-tile-content-section:first-child .sky-tile-content-section{margin-top:15px}:host-context(.sky-theme-modern) .sky-tile-content ::ng-deep sky-tile-content-section:last-child .sky-tile-content-section{padding-bottom:0;border-bottom:none}:host-context(.sky-theme-modern) :host .sky-tile{border-radius:0}:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-xs) .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-sm) .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-md) .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-lg) .sky-tile{border-radius:0}@media (min-width: 768px){:host-context(.sky-theme-modern) :host .sky-tile{border-radius:6px}}:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-sm) .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-md) .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-lg) .sky-tile{border-radius:6px}.sky-theme-modern .sky-tile-header,.sky-theme-modern .sky-tile-content{border:none}.sky-theme-modern .sky-tile-header-column-tools{align-items:flex-start}.sky-theme-modern .sky-tile-tools{padding:0}.sky-theme-modern .sky-tile-tools-control{font-size:18px;color:#686c73}.sky-theme-modern .sky-tile-grab-handle{font-size:16px}.sky-theme-modern .sky-tile-content ::ng-deep .sky-tile-content-section{border-bottom:1px dotted #c0c2c5}.sky-theme-modern .sky-tile-content ::ng-deep sky-tile-content-section:first-child .sky-tile-content-section{margin-top:15px}.sky-theme-modern .sky-tile-content ::ng-deep sky-tile-content-section:last-child .sky-tile-content-section{padding-bottom:0;border-bottom:none}.sky-theme-modern :host .sky-tile{border-radius:0}.sky-theme-modern :host-context(.sky-responsive-container-xs) .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-sm) .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-md) .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-lg) .sky-tile{border-radius:0}@media (min-width: 768px){.sky-theme-modern :host .sky-tile{border-radius:6px}}.sky-theme-modern :host-context(.sky-responsive-container-sm) .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-md) .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-lg) .sky-tile{border-radius:6px}\n"], components: [{ type: i2__namespace$1.λ4, selector: "sky-icon", inputs: ["icon", "iconType", "size", "fixedWidth", "variant"] }, { type: i2__namespace$1.λ2, selector: "sky-chevron", inputs: ["ariaControls", "ariaLabel", "direction", "disabled"], outputs: ["directionChange"] }], directives: [{ type: i3__namespace.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i4__namespace.λ2, selector: "[skyThemeClass]", inputs: ["class", "skyThemeClass"] }, { type: i4__namespace.λ3, selector: "[skyThemeIf]", inputs: ["skyThemeIf"] }, { type: i3__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2__namespace.λ2, selector: "[skyId]", exportAs: ["skyId"] }], pipes: { "skyLibResources": i3__namespace$1.SkyLibResourcesPipe }, animations: [animations.skyAnimationSlide] });
|
|
1212
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileComponent, decorators: [{
|
|
1182
1213
|
type: i0.Component,
|
|
1183
1214
|
args: [{
|
|
1184
1215
|
selector: 'sky-tile',
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
animations: [animations.skyAnimationSlide]
|
|
1216
|
+
styles: [".sky-tile{background-color:#fff;margin-bottom:20px}.sky-tile-header{border-color:#cdcfd2;border-style:solid solid none;border-width:4px 0 0;display:flex}.sky-tile-header-content{display:flex;flex:1;align-items:baseline;cursor:pointer}.sky-tile-header-title{display:inline-flex}.sky-tile-summary{color:#0974a1;opacity:0;padding-right:15px;transition:opacity .25s;max-height:30px;overflow:hidden}.sky-tile-collapsed .sky-tile-summary{opacity:1}.sky-tile-header-column-tools{display:flex;align-items:center;flex:0 0 auto}.sky-tile-tools{display:flex;padding-right:15px}.sky-tile-tools-control{color:#cdcfd2;cursor:pointer;border:0;width:24px;height:24px;padding:0;display:block;margin:0 0 0 9px}.sky-tile-tools-control:hover{color:#979ba2;transition:color .15s}.sky-tile-grab-handle{cursor:move;cursor:-moz-grab;font-size:15px}.sky-tile-content{border-color:#e2e3e4;border-image:none;border-style:solid solid none;border-width:1px 0}:host-context(.sky-theme-modern) .sky-tile-header,:host-context(.sky-theme-modern) .sky-tile-content{border:none}:host-context(.sky-theme-modern) .sky-tile-header-column-tools{align-items:flex-start}:host-context(.sky-theme-modern) .sky-tile-tools{padding:0}:host-context(.sky-theme-modern) .sky-tile-tools-control{font-size:18px;color:#686c73}:host-context(.sky-theme-modern) .sky-tile-grab-handle{font-size:16px}:host-context(.sky-theme-modern) .sky-tile-content ::ng-deep .sky-tile-content-section{border-bottom:1px dotted #c0c2c5}:host-context(.sky-theme-modern) .sky-tile-content ::ng-deep sky-tile-content-section:first-child .sky-tile-content-section{margin-top:15px}:host-context(.sky-theme-modern) .sky-tile-content ::ng-deep sky-tile-content-section:last-child .sky-tile-content-section{padding-bottom:0;border-bottom:none}:host-context(.sky-theme-modern) :host .sky-tile{border-radius:0}:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-xs) .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-sm) .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-md) .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-lg) .sky-tile{border-radius:0}@media (min-width: 768px){:host-context(.sky-theme-modern) :host .sky-tile{border-radius:6px}}:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-sm) .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-md) .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-lg) .sky-tile{border-radius:6px}.sky-theme-modern .sky-tile-header,.sky-theme-modern .sky-tile-content{border:none}.sky-theme-modern .sky-tile-header-column-tools{align-items:flex-start}.sky-theme-modern .sky-tile-tools{padding:0}.sky-theme-modern .sky-tile-tools-control{font-size:18px;color:#686c73}.sky-theme-modern .sky-tile-grab-handle{font-size:16px}.sky-theme-modern .sky-tile-content ::ng-deep .sky-tile-content-section{border-bottom:1px dotted #c0c2c5}.sky-theme-modern .sky-tile-content ::ng-deep sky-tile-content-section:first-child .sky-tile-content-section{margin-top:15px}.sky-theme-modern .sky-tile-content ::ng-deep sky-tile-content-section:last-child .sky-tile-content-section{padding-bottom:0;border-bottom:none}.sky-theme-modern :host .sky-tile{border-radius:0}.sky-theme-modern :host-context(.sky-responsive-container-xs) .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-sm) .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-md) .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-lg) .sky-tile{border-radius:0}@media (min-width: 768px){.sky-theme-modern :host .sky-tile{border-radius:6px}}.sky-theme-modern :host-context(.sky-responsive-container-sm) .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-md) .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-lg) .sky-tile{border-radius:6px}\n"],
|
|
1217
|
+
template: "<section\n class=\"sky-tile\"\n [ngClass]=\"{\n 'sky-tile-collapsed': isCollapsed\n }\"\n [skyThemeClass]=\"{\n 'sky-box sky-elevation-1-bordered sky-padding-even-xl': 'modern'\n }\"\n>\n <header class=\"sky-tile-header\">\n <div class=\"sky-tile-header-content\" (click)=\"titleClick()\">\n <div class=\"sky-tile-header-title\" #titleContainer>\n <ng-content select=\"sky-tile-title\"></ng-content>\n </div>\n <div\n class=\"sky-tile-summary\"\n [skyThemeClass]=\"{\n 'sky-font-display-3': 'modern',\n 'sky-headline': 'default'\n }\"\n >\n <ng-content select=\"sky-tile-summary\"></ng-content>\n </div>\n </div>\n <div class=\"sky-tile-header-column-tools\">\n <div class=\"sky-tile-tools\">\n <ng-container *skyThemeIf=\"'default'\">\n <button\n *ngIf=\"hasHelp\"\n class=\"sky-btn sky-tile-tools-control sky-tile-help\"\n type=\"button\"\n [attr.aria-label]=\"\n tileName\n ? ('skyux_tile_help' | skyLibResources: tileName)\n : ('skyux_tile_help_default' | skyLibResources)\n \"\n [skyThemeClass]=\"{\n 'sky-btn-icon-borderless': 'modern'\n }\"\n (click)=\"helpButtonClicked()\"\n >\n <sky-icon icon=\"question-circle\"></sky-icon>\n </button>\n </ng-container>\n <sky-chevron\n [ariaControls]=\"tileContent.id\"\n [ariaLabel]=\"\n tileName\n ? ('skyux_tile_expand' | skyLibResources: tileName)\n : ('skyux_tile_expand_default' | skyLibResources)\n \"\n [direction]=\"isCollapsed ? 'down' : 'up'\"\n [skyThemeClass]=\"{\n 'sky-tile-tools-control': 'default',\n 'sky-margin-inline-default': 'modern'\n }\"\n (directionChange)=\"chevronDirectionChange($event)\"\n >\n </sky-chevron>\n <button\n *ngIf=\"hasSettings\"\n class=\"sky-btn sky-tile-settings\"\n type=\"button\"\n [attr.aria-label]=\"\n tileName\n ? ('skyux_tile_settings' | skyLibResources: tileName)\n : ('skyux_tile_settings_default' | skyLibResources)\n \"\n [skyThemeClass]=\"{\n 'sky-tile-tools-control': 'default',\n 'sky-btn-icon-borderless sky-margin-inline-default': 'modern'\n }\"\n (click)=\"settingsButtonClicked()\"\n >\n <sky-icon *skyThemeIf=\"'default'\" icon=\"cog\"></sky-icon>\n <sky-icon\n *skyThemeIf=\"'modern'\"\n icon=\"cog-line\"\n iconType=\"skyux\"\n ></sky-icon>\n </button>\n <button\n *ngIf=\"isInDashboardColumn\"\n class=\"sky-btn sky-tile-grab-handle\"\n [attr.aria-label]=\"\n tileName\n ? ('skyux_tile_move' | skyLibResources: tileName)\n : ('skyux_tile_move_default' | skyLibResources)\n \"\n [attr.aria-describedby]=\"\n dashboardService?.bagId + '-move-instructions'\n \"\n [skyThemeClass]=\"{\n 'sky-tile-tools-control': 'default',\n 'sky-btn-icon-borderless': 'modern'\n }\"\n (click)=\"$event.stopPropagation()\"\n (keydown)=\"moveTile($event)\"\n #grabHandle\n >\n <sky-icon *skyThemeIf=\"'default'\" icon=\"th\"></sky-icon>\n <sky-icon\n *skyThemeIf=\"'modern'\"\n icon=\"tile-drag\"\n iconType=\"skyux\"\n ></sky-icon>\n </button>\n </div>\n </div>\n </header>\n <div\n class=\"sky-tile-content\"\n role=\"region\"\n skyId\n [attr.aria-label]=\"tileName\"\n [@skyAnimationSlide]=\"isCollapsed ? 'up' : 'down'\"\n #tileContent=\"skyId\"\n >\n <ng-content select=\"sky-tile-content\"></ng-content>\n </div>\n</section>\n",
|
|
1218
|
+
animations: [animations.skyAnimationSlide],
|
|
1188
1219
|
}]
|
|
1189
1220
|
}], ctorParameters: function () {
|
|
1190
1221
|
return [{ type: i0__namespace.ElementRef }, { type: i0__namespace.ChangeDetectorRef }, { type: SkyTileDashboardService, decorators: [{
|
|
@@ -1194,6 +1225,8 @@
|
|
|
1194
1225
|
type: i0.Input
|
|
1195
1226
|
}], showHelp: [{
|
|
1196
1227
|
type: i0.Input
|
|
1228
|
+
}], tileName: [{
|
|
1229
|
+
type: i0.Input
|
|
1197
1230
|
}], settingsClick: [{
|
|
1198
1231
|
type: i0.Output
|
|
1199
1232
|
}], isCollapsedChange: [{
|
|
@@ -1206,13 +1239,13 @@
|
|
|
1206
1239
|
type: i0.ViewChild,
|
|
1207
1240
|
args: ['grabHandle', {
|
|
1208
1241
|
read: i0.ElementRef,
|
|
1209
|
-
static: false
|
|
1242
|
+
static: false,
|
|
1210
1243
|
}]
|
|
1211
1244
|
}], title: [{
|
|
1212
1245
|
type: i0.ViewChild,
|
|
1213
1246
|
args: ['titleContainer', {
|
|
1214
1247
|
read: i0.ElementRef,
|
|
1215
|
-
static: false
|
|
1248
|
+
static: false,
|
|
1216
1249
|
}]
|
|
1217
1250
|
}] } });
|
|
1218
1251
|
|
|
@@ -1226,13 +1259,13 @@
|
|
|
1226
1259
|
}
|
|
1227
1260
|
return SkyTileSummaryComponent;
|
|
1228
1261
|
}());
|
|
1229
|
-
SkyTileSummaryComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
1230
|
-
SkyTileSummaryComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.
|
|
1231
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
1262
|
+
SkyTileSummaryComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileSummaryComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1263
|
+
SkyTileSummaryComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SkyTileSummaryComponent, selector: "sky-tile-summary", ngImport: i0__namespace, template: "<ng-content></ng-content>\n" });
|
|
1264
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileSummaryComponent, decorators: [{
|
|
1232
1265
|
type: i0.Component,
|
|
1233
1266
|
args: [{
|
|
1234
1267
|
selector: 'sky-tile-summary',
|
|
1235
|
-
|
|
1268
|
+
template: "<ng-content></ng-content>\n",
|
|
1236
1269
|
}]
|
|
1237
1270
|
}] });
|
|
1238
1271
|
|
|
@@ -1244,14 +1277,14 @@
|
|
|
1244
1277
|
}
|
|
1245
1278
|
return SkyTileTitleComponent;
|
|
1246
1279
|
}());
|
|
1247
|
-
SkyTileTitleComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
1248
|
-
SkyTileTitleComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.
|
|
1249
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
1280
|
+
SkyTileTitleComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileTitleComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1281
|
+
SkyTileTitleComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SkyTileTitleComponent, selector: "sky-tile-title", ngImport: i0__namespace, template: "<h2\n class=\"sky-tile-title\"\n [skyThemeClass]=\"{\n 'sky-font-heading-2': 'modern',\n 'sky-section-heading': 'default'\n }\"\n>\n <ng-content></ng-content>\n</h2>\n", styles: [".sky-tile-title{margin:0;padding:10px 15px}:host-context(.sky-theme-modern) .sky-tile-title{margin:0 30px 0 0;padding:0}.sky-theme-modern .sky-tile-title{margin:0 30px 0 0;padding:0}\n"], directives: [{ type: i4__namespace.λ2, selector: "[skyThemeClass]", inputs: ["class", "skyThemeClass"] }] });
|
|
1282
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileTitleComponent, decorators: [{
|
|
1250
1283
|
type: i0.Component,
|
|
1251
1284
|
args: [{
|
|
1252
1285
|
selector: 'sky-tile-title',
|
|
1253
|
-
|
|
1254
|
-
|
|
1286
|
+
template: "<h2\n class=\"sky-tile-title\"\n [skyThemeClass]=\"{\n 'sky-font-heading-2': 'modern',\n 'sky-section-heading': 'default'\n }\"\n>\n <ng-content></ng-content>\n</h2>\n",
|
|
1287
|
+
styles: [".sky-tile-title{margin:0;padding:10px 15px}:host-context(.sky-theme-modern) .sky-tile-title{margin:0 30px 0 0;padding:0}.sky-theme-modern .sky-tile-title{margin:0 30px 0 0;padding:0}\n"],
|
|
1255
1288
|
}]
|
|
1256
1289
|
}] });
|
|
1257
1290
|
|
|
@@ -1260,46 +1293,43 @@
|
|
|
1260
1293
|
}
|
|
1261
1294
|
return SkyTileModule;
|
|
1262
1295
|
}());
|
|
1263
|
-
SkyTileModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
1264
|
-
SkyTileModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.
|
|
1296
|
+
SkyTileModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
1297
|
+
SkyTileModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileModule, declarations: [SkyTileComponent,
|
|
1265
1298
|
SkyTileSummaryComponent,
|
|
1266
1299
|
SkyTileTitleComponent], imports: [i3$1.CommonModule,
|
|
1267
1300
|
i2$1.SkyChevronModule,
|
|
1301
|
+
i2.SkyIdModule,
|
|
1268
1302
|
i3.SkyI18nModule,
|
|
1269
1303
|
i2$1.SkyIconModule,
|
|
1270
1304
|
i4.SkyThemeModule,
|
|
1271
|
-
SkyTilesResourcesModule], exports: [SkyTileComponent,
|
|
1272
|
-
|
|
1273
|
-
SkyTileTitleComponent] });
|
|
1274
|
-
SkyTileModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0__namespace, type: SkyTileModule, imports: [[
|
|
1305
|
+
SkyTilesResourcesModule], exports: [SkyTileComponent, SkyTileSummaryComponent, SkyTileTitleComponent] });
|
|
1306
|
+
SkyTileModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileModule, imports: [[
|
|
1275
1307
|
i3$1.CommonModule,
|
|
1276
1308
|
i2$1.SkyChevronModule,
|
|
1309
|
+
i2.SkyIdModule,
|
|
1277
1310
|
i3.SkyI18nModule,
|
|
1278
1311
|
i2$1.SkyIconModule,
|
|
1279
1312
|
i4.SkyThemeModule,
|
|
1280
|
-
SkyTilesResourcesModule
|
|
1313
|
+
SkyTilesResourcesModule,
|
|
1281
1314
|
]] });
|
|
1282
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
1315
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileModule, decorators: [{
|
|
1283
1316
|
type: i0.NgModule,
|
|
1284
1317
|
args: [{
|
|
1285
1318
|
declarations: [
|
|
1286
1319
|
SkyTileComponent,
|
|
1287
1320
|
SkyTileSummaryComponent,
|
|
1288
|
-
SkyTileTitleComponent
|
|
1321
|
+
SkyTileTitleComponent,
|
|
1289
1322
|
],
|
|
1290
1323
|
imports: [
|
|
1291
1324
|
i3$1.CommonModule,
|
|
1292
1325
|
i2$1.SkyChevronModule,
|
|
1326
|
+
i2.SkyIdModule,
|
|
1293
1327
|
i3.SkyI18nModule,
|
|
1294
1328
|
i2$1.SkyIconModule,
|
|
1295
1329
|
i4.SkyThemeModule,
|
|
1296
|
-
SkyTilesResourcesModule
|
|
1330
|
+
SkyTilesResourcesModule,
|
|
1297
1331
|
],
|
|
1298
|
-
exports: [
|
|
1299
|
-
SkyTileComponent,
|
|
1300
|
-
SkyTileSummaryComponent,
|
|
1301
|
-
SkyTileTitleComponent
|
|
1302
|
-
]
|
|
1332
|
+
exports: [SkyTileComponent, SkyTileSummaryComponent, SkyTileTitleComponent],
|
|
1303
1333
|
}]
|
|
1304
1334
|
}] });
|
|
1305
1335
|
|
|
@@ -1311,14 +1341,14 @@
|
|
|
1311
1341
|
}
|
|
1312
1342
|
return SkyTileContentSectionComponent;
|
|
1313
1343
|
}());
|
|
1314
|
-
SkyTileContentSectionComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
1315
|
-
SkyTileContentSectionComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.
|
|
1316
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
1344
|
+
SkyTileContentSectionComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileContentSectionComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1345
|
+
SkyTileContentSectionComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SkyTileContentSectionComponent, selector: "sky-tile-content-section", ngImport: i0__namespace, template: "<div\n class=\"sky-tile-content-section\"\n [skyThemeClass]=\"{\n 'sky-padding-even-large': 'default'\n }\"\n>\n <ng-content></ng-content>\n</div>\n", styles: [":host-context(.sky-theme-modern) .sky-tile-content-section{padding:15px 0}.sky-theme-modern .sky-tile-content-section{padding:15px 0}\n"], directives: [{ type: i4__namespace.λ2, selector: "[skyThemeClass]", inputs: ["class", "skyThemeClass"] }] });
|
|
1346
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileContentSectionComponent, decorators: [{
|
|
1317
1347
|
type: i0.Component,
|
|
1318
1348
|
args: [{
|
|
1319
1349
|
selector: 'sky-tile-content-section',
|
|
1320
|
-
|
|
1321
|
-
|
|
1350
|
+
styles: [":host-context(.sky-theme-modern) .sky-tile-content-section{padding:15px 0}.sky-theme-modern .sky-tile-content-section{padding:15px 0}\n"],
|
|
1351
|
+
template: "<div\n class=\"sky-tile-content-section\"\n [skyThemeClass]=\"{\n 'sky-padding-even-large': 'default'\n }\"\n>\n <ng-content></ng-content>\n</div>\n",
|
|
1322
1352
|
}]
|
|
1323
1353
|
}] });
|
|
1324
1354
|
|
|
@@ -1330,14 +1360,14 @@
|
|
|
1330
1360
|
}
|
|
1331
1361
|
return SkyTileContentComponent;
|
|
1332
1362
|
}());
|
|
1333
|
-
SkyTileContentComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
1334
|
-
SkyTileContentComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.
|
|
1335
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
1363
|
+
SkyTileContentComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileContentComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1364
|
+
SkyTileContentComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SkyTileContentComponent, selector: "sky-tile-content", ngImport: i0__namespace, template: "<ng-content></ng-content>\n", styles: [":host ::ng-deep sky-tile-content-section:not(:last-child) .sky-tile-content-section{border-bottom:1px solid #e2e3e4}\n"] });
|
|
1365
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileContentComponent, decorators: [{
|
|
1336
1366
|
type: i0.Component,
|
|
1337
1367
|
args: [{
|
|
1338
1368
|
selector: 'sky-tile-content',
|
|
1339
|
-
|
|
1340
|
-
|
|
1369
|
+
styles: [":host ::ng-deep sky-tile-content-section:not(:last-child) .sky-tile-content-section{border-bottom:1px solid #e2e3e4}\n"],
|
|
1370
|
+
template: "<ng-content></ng-content>\n",
|
|
1341
1371
|
}]
|
|
1342
1372
|
}] });
|
|
1343
1373
|
|
|
@@ -1346,30 +1376,15 @@
|
|
|
1346
1376
|
}
|
|
1347
1377
|
return SkyTileContentModule;
|
|
1348
1378
|
}());
|
|
1349
|
-
SkyTileContentModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
1350
|
-
SkyTileContentModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
SkyTileContentSectionComponent] });
|
|
1354
|
-
SkyTileContentModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0__namespace, type: SkyTileContentModule, imports: [[
|
|
1355
|
-
i3$1.CommonModule,
|
|
1356
|
-
i4.SkyThemeModule
|
|
1357
|
-
]] });
|
|
1358
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0__namespace, type: SkyTileContentModule, decorators: [{
|
|
1379
|
+
SkyTileContentModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileContentModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
1380
|
+
SkyTileContentModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileContentModule, declarations: [SkyTileContentComponent, SkyTileContentSectionComponent], imports: [i3$1.CommonModule, i4.SkyThemeModule], exports: [SkyTileContentComponent, SkyTileContentSectionComponent] });
|
|
1381
|
+
SkyTileContentModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileContentModule, imports: [[i3$1.CommonModule, i4.SkyThemeModule]] });
|
|
1382
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileContentModule, decorators: [{
|
|
1359
1383
|
type: i0.NgModule,
|
|
1360
1384
|
args: [{
|
|
1361
|
-
declarations: [
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
],
|
|
1365
|
-
imports: [
|
|
1366
|
-
i3$1.CommonModule,
|
|
1367
|
-
i4.SkyThemeModule
|
|
1368
|
-
],
|
|
1369
|
-
exports: [
|
|
1370
|
-
SkyTileContentComponent,
|
|
1371
|
-
SkyTileContentSectionComponent
|
|
1372
|
-
]
|
|
1385
|
+
declarations: [SkyTileContentComponent, SkyTileContentSectionComponent],
|
|
1386
|
+
imports: [i3$1.CommonModule, i4.SkyThemeModule],
|
|
1387
|
+
exports: [SkyTileContentComponent, SkyTileContentSectionComponent],
|
|
1373
1388
|
}]
|
|
1374
1389
|
}] });
|
|
1375
1390
|
|
|
@@ -1403,20 +1418,20 @@
|
|
|
1403
1418
|
}
|
|
1404
1419
|
return SkyTileDashboardColumnComponent;
|
|
1405
1420
|
}());
|
|
1406
|
-
SkyTileDashboardColumnComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
1407
|
-
SkyTileDashboardColumnComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.
|
|
1408
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
1421
|
+
SkyTileDashboardColumnComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardColumnComponent, deps: [{ token: i0__namespace.ComponentFactoryResolver }, { token: i0__namespace.Injector }, { token: SkyTileDashboardService }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1422
|
+
SkyTileDashboardColumnComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SkyTileDashboardColumnComponent, selector: "sky-tile-dashboard-column", viewQueries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true, read: i0.ViewContainerRef }], ngImport: i0__namespace, template: "<div class=\"sky-tile-dashboard-column\" [dragula]=\"bagId\">\n <div #content></div>\n</div>\n", styles: [":host{display:flex;flex-grow:1;overflow:hidden}:host{padding:0}:host-context(.sky-responsive-container-xs),:host-context(.sky-responsive-container-sm),:host-context(.sky-responsive-container-md),:host-context(.sky-responsive-container-lg){padding:0}@media (min-width: 768px){:host{padding:0 10px}}:host-context(.sky-responsive-container-sm),:host-context(.sky-responsive-container-md),:host-context(.sky-responsive-container-lg){padding:0 10px}.sky-tile-dashboard-column{min-height:100px;width:100%}@media (min-width: 768px){:host-context(.sky-theme-modern) :host{padding:0 15px}}:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-sm),:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-md),:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-lg){padding:0 15px}@media (min-width: 768px){.sky-theme-modern :host{padding:0 15px}}.sky-theme-modern :host-context(.sky-responsive-container-sm),.sky-theme-modern :host-context(.sky-responsive-container-md),.sky-theme-modern :host-context(.sky-responsive-container-lg){padding:0 15px}\n"], directives: [{ type: i1__namespace.DragulaDirective, selector: "[dragula]", inputs: ["dragula", "dragulaModel", "dragulaOptions"] }] });
|
|
1423
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardColumnComponent, decorators: [{
|
|
1409
1424
|
type: i0.Component,
|
|
1410
1425
|
args: [{
|
|
1411
1426
|
selector: 'sky-tile-dashboard-column',
|
|
1412
|
-
|
|
1413
|
-
|
|
1427
|
+
styles: [":host{display:flex;flex-grow:1;overflow:hidden}:host{padding:0}:host-context(.sky-responsive-container-xs),:host-context(.sky-responsive-container-sm),:host-context(.sky-responsive-container-md),:host-context(.sky-responsive-container-lg){padding:0}@media (min-width: 768px){:host{padding:0 10px}}:host-context(.sky-responsive-container-sm),:host-context(.sky-responsive-container-md),:host-context(.sky-responsive-container-lg){padding:0 10px}.sky-tile-dashboard-column{min-height:100px;width:100%}@media (min-width: 768px){:host-context(.sky-theme-modern) :host{padding:0 15px}}:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-sm),:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-md),:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-lg){padding:0 15px}@media (min-width: 768px){.sky-theme-modern :host{padding:0 15px}}.sky-theme-modern :host-context(.sky-responsive-container-sm),.sky-theme-modern :host-context(.sky-responsive-container-md),.sky-theme-modern :host-context(.sky-responsive-container-lg){padding:0 15px}\n"],
|
|
1428
|
+
template: "<div class=\"sky-tile-dashboard-column\" [dragula]=\"bagId\">\n <div #content></div>\n</div>\n",
|
|
1414
1429
|
}]
|
|
1415
1430
|
}], ctorParameters: function () { return [{ type: i0__namespace.ComponentFactoryResolver }, { type: i0__namespace.Injector }, { type: SkyTileDashboardService }]; }, propDecorators: { content: [{
|
|
1416
1431
|
type: i0.ViewChild,
|
|
1417
1432
|
args: ['content', {
|
|
1418
1433
|
read: i0.ViewContainerRef,
|
|
1419
|
-
static: false
|
|
1434
|
+
static: false,
|
|
1420
1435
|
}]
|
|
1421
1436
|
}] } });
|
|
1422
1437
|
|
|
@@ -1440,6 +1455,7 @@
|
|
|
1440
1455
|
* tiles to rearrange them.
|
|
1441
1456
|
*/
|
|
1442
1457
|
this.configChange = new i0.EventEmitter();
|
|
1458
|
+
this.moveInstructionsId = this.dashboardService.bagId + '-move-instructions';
|
|
1443
1459
|
this.configSet = false;
|
|
1444
1460
|
this.ngUnsubscribe = new rxjs.Subject();
|
|
1445
1461
|
this.viewReady = false;
|
|
@@ -1455,9 +1471,7 @@
|
|
|
1455
1471
|
else {
|
|
1456
1472
|
messageObservable = _this.resourcesService.getString('skyux_tile_moved_assistive_text', config.movedTile.tileDescription, config.movedTile.column.toString(), config.layout.multiColumn.length.toString(), config.movedTile.position.toString(), config.layout.multiColumn[config.movedTile.column - 1].tiles.length.toString());
|
|
1457
1473
|
}
|
|
1458
|
-
messageObservable
|
|
1459
|
-
.pipe(operators.take(1))
|
|
1460
|
-
.subscribe(function (message) {
|
|
1474
|
+
messageObservable.pipe(operators.take(1)).subscribe(function (message) {
|
|
1461
1475
|
_this.tileMovedReport = message;
|
|
1462
1476
|
});
|
|
1463
1477
|
}
|
|
@@ -1517,15 +1531,15 @@
|
|
|
1517
1531
|
};
|
|
1518
1532
|
return SkyTileDashboardComponent;
|
|
1519
1533
|
}());
|
|
1520
|
-
SkyTileDashboardComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
1521
|
-
SkyTileDashboardComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.
|
|
1522
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
1534
|
+
SkyTileDashboardComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardComponent, deps: [{ token: SkyTileDashboardService }, { token: i2__namespace.SkyMediaQueryService }, { token: i3__namespace$1.SkyLibResourcesService, optional: true }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1535
|
+
SkyTileDashboardComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SkyTileDashboardComponent, selector: "sky-tile-dashboard", inputs: { config: "config", messageStream: "messageStream", settingsKey: "settingsKey" }, outputs: { configChange: "configChange" }, providers: [SkyTileDashboardService], viewQueries: [{ propertyName: "singleColumn", first: true, predicate: ["singleColumn"], descendants: true, read: SkyTileDashboardColumnComponent }, { propertyName: "columns", predicate: SkyTileDashboardColumnComponent, descendants: true }], ngImport: i0__namespace, template: "<span aria-live=\"assertive\" class=\"sky-assistive-text\">\n {{ tileMovedReport }}\n</span>\n<sky-tile-dashboard-column\n *ngFor=\"let column of config?.layout?.multiColumn\"\n class=\"sky-tile-dashboard-layout-multi\"\n [ngStyle]=\"{\n 'flex-basis': 100 / config?.layout?.multiColumn.length + '%'\n }\"\n>\n</sky-tile-dashboard-column>\n<sky-tile-dashboard-column\n class=\"sky-tile-dashboard-layout-single\"\n #singleColumn\n>\n</sky-tile-dashboard-column>\n<span class=\"sky-screen-reader-only\" [id]=\"moveInstructionsId\">{{\n 'skyux_tile_move_instructions' | skyLibResources\n}}</span>\n<ng-content></ng-content>\n", styles: [":host{display:block;padding:0}:host .sky-tile-dashboard-layout-multi{display:none}:host .sky-tile-dashboard-layout-single{display:block}:host .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:0}:host-context(.sky-responsive-container-xs),:host-context(.sky-responsive-container-sm),:host-context(.sky-responsive-container-md),:host-context(.sky-responsive-container-lg){display:block;padding:0}:host-context(.sky-responsive-container-xs) .sky-tile-dashboard-layout-multi,:host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-multi,:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-multi,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-multi{display:none}:host-context(.sky-responsive-container-xs) .sky-tile-dashboard-layout-single,:host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-single,:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-single,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-single{display:block}:host-context(.sky-responsive-container-xs) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-responsive-container-xs) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,:host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:0}@media (min-width: 768px){:host .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:20px}:host :host-context(.sky-theme-default){padding-top:20px}}:host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:20px}:host-context(.sky-responsive-container-sm) :host-context(.sky-theme-default),:host-context(.sky-responsive-container-md) :host-context(.sky-theme-default),:host-context(.sky-responsive-container-lg) :host-context(.sky-theme-default){padding-top:20px}@media (min-width: 992px){:host{display:flex;padding:0 10px}:host .sky-tile-dashboard-layout-multi{display:block}:host .sky-tile-dashboard-layout-single{display:none}}:host-context(.sky-responsive-container-md),:host-context(.sky-responsive-container-lg){display:flex;padding:0 10px}:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-multi,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-multi{display:block}:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-single,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-single{display:none}@media screen{.sky-assistive-text{width:0;height:0;padding:0;opacity:0;position:absolute;margin:-1px;border:0;overflow:hidden;clip:rect(0,0,0,0);outline:none;white-space:nowrap}}:host-context(.sky-theme-default){background-color:#eeeeef}@media (min-width: 768px){:host-context(.sky-theme-modern) :host .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-theme-modern) :host .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:30px}}:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:30px}@media (min-width: 768px){.sky-theme-modern :host .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,.sky-theme-modern :host .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:30px}}.sky-theme-modern :host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:30px}\n"], components: [{ type: SkyTileDashboardColumnComponent, selector: "sky-tile-dashboard-column" }], directives: [{ type: i3__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i3__namespace.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], pipes: { "skyLibResources": i3__namespace$1.SkyLibResourcesPipe } });
|
|
1536
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardComponent, decorators: [{
|
|
1523
1537
|
type: i0.Component,
|
|
1524
1538
|
args: [{
|
|
1525
1539
|
selector: 'sky-tile-dashboard',
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
providers: [SkyTileDashboardService]
|
|
1540
|
+
styles: [":host{display:block;padding:0}:host .sky-tile-dashboard-layout-multi{display:none}:host .sky-tile-dashboard-layout-single{display:block}:host .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:0}:host-context(.sky-responsive-container-xs),:host-context(.sky-responsive-container-sm),:host-context(.sky-responsive-container-md),:host-context(.sky-responsive-container-lg){display:block;padding:0}:host-context(.sky-responsive-container-xs) .sky-tile-dashboard-layout-multi,:host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-multi,:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-multi,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-multi{display:none}:host-context(.sky-responsive-container-xs) .sky-tile-dashboard-layout-single,:host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-single,:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-single,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-single{display:block}:host-context(.sky-responsive-container-xs) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-responsive-container-xs) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,:host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:0}@media (min-width: 768px){:host .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:20px}:host :host-context(.sky-theme-default){padding-top:20px}}:host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:20px}:host-context(.sky-responsive-container-sm) :host-context(.sky-theme-default),:host-context(.sky-responsive-container-md) :host-context(.sky-theme-default),:host-context(.sky-responsive-container-lg) :host-context(.sky-theme-default){padding-top:20px}@media (min-width: 992px){:host{display:flex;padding:0 10px}:host .sky-tile-dashboard-layout-multi{display:block}:host .sky-tile-dashboard-layout-single{display:none}}:host-context(.sky-responsive-container-md),:host-context(.sky-responsive-container-lg){display:flex;padding:0 10px}:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-multi,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-multi{display:block}:host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-single,:host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-single{display:none}@media screen{.sky-assistive-text{width:0;height:0;padding:0;opacity:0;position:absolute;margin:-1px;border:0;overflow:hidden;clip:rect(0,0,0,0);outline:none;white-space:nowrap}}:host-context(.sky-theme-default){background-color:#eeeeef}@media (min-width: 768px){:host-context(.sky-theme-modern) :host .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-theme-modern) :host .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:30px}}:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,:host-context(.sky-theme-modern) :host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:30px}@media (min-width: 768px){.sky-theme-modern :host .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,.sky-theme-modern :host .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:30px}}.sky-theme-modern :host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-sm) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-md) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-single ::ng-deep .sky-tile,.sky-theme-modern :host-context(.sky-responsive-container-lg) .sky-tile-dashboard-layout-multi ::ng-deep .sky-tile{margin-bottom:30px}\n"],
|
|
1541
|
+
template: "<span aria-live=\"assertive\" class=\"sky-assistive-text\">\n {{ tileMovedReport }}\n</span>\n<sky-tile-dashboard-column\n *ngFor=\"let column of config?.layout?.multiColumn\"\n class=\"sky-tile-dashboard-layout-multi\"\n [ngStyle]=\"{\n 'flex-basis': 100 / config?.layout?.multiColumn.length + '%'\n }\"\n>\n</sky-tile-dashboard-column>\n<sky-tile-dashboard-column\n class=\"sky-tile-dashboard-layout-single\"\n #singleColumn\n>\n</sky-tile-dashboard-column>\n<span class=\"sky-screen-reader-only\" [id]=\"moveInstructionsId\">{{\n 'skyux_tile_move_instructions' | skyLibResources\n}}</span>\n<ng-content></ng-content>\n",
|
|
1542
|
+
providers: [SkyTileDashboardService],
|
|
1529
1543
|
}]
|
|
1530
1544
|
}], ctorParameters: function () {
|
|
1531
1545
|
return [{ type: SkyTileDashboardService }, { type: i2__namespace.SkyMediaQueryService }, { type: i3__namespace$1.SkyLibResourcesService, decorators: [{
|
|
@@ -1546,7 +1560,7 @@
|
|
|
1546
1560
|
type: i0.ViewChild,
|
|
1547
1561
|
args: ['singleColumn', {
|
|
1548
1562
|
read: SkyTileDashboardColumnComponent,
|
|
1549
|
-
static: false
|
|
1563
|
+
static: false,
|
|
1550
1564
|
}]
|
|
1551
1565
|
}] } });
|
|
1552
1566
|
|
|
@@ -1555,26 +1569,15 @@
|
|
|
1555
1569
|
}
|
|
1556
1570
|
return SkyTileDashboardColumnModule;
|
|
1557
1571
|
}());
|
|
1558
|
-
SkyTileDashboardColumnModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
1559
|
-
SkyTileDashboardColumnModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
i3$1.CommonModule,
|
|
1563
|
-
i1.DragulaModule
|
|
1564
|
-
]] });
|
|
1565
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0__namespace, type: SkyTileDashboardColumnModule, decorators: [{
|
|
1572
|
+
SkyTileDashboardColumnModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardColumnModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
1573
|
+
SkyTileDashboardColumnModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardColumnModule, declarations: [SkyTileDashboardColumnComponent], imports: [i3$1.CommonModule, i1.DragulaModule], exports: [SkyTileDashboardColumnComponent] });
|
|
1574
|
+
SkyTileDashboardColumnModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardColumnModule, imports: [[i3$1.CommonModule, i1.DragulaModule]] });
|
|
1575
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardColumnModule, decorators: [{
|
|
1566
1576
|
type: i0.NgModule,
|
|
1567
1577
|
args: [{
|
|
1568
|
-
declarations: [
|
|
1569
|
-
|
|
1570
|
-
],
|
|
1571
|
-
imports: [
|
|
1572
|
-
i3$1.CommonModule,
|
|
1573
|
-
i1.DragulaModule
|
|
1574
|
-
],
|
|
1575
|
-
exports: [
|
|
1576
|
-
SkyTileDashboardColumnComponent
|
|
1577
|
-
]
|
|
1578
|
+
declarations: [SkyTileDashboardColumnComponent],
|
|
1579
|
+
imports: [i3$1.CommonModule, i1.DragulaModule],
|
|
1580
|
+
exports: [SkyTileDashboardColumnComponent],
|
|
1578
1581
|
}]
|
|
1579
1582
|
}] });
|
|
1580
1583
|
|
|
@@ -1583,31 +1586,26 @@
|
|
|
1583
1586
|
}
|
|
1584
1587
|
return SkyTileDashboardModule;
|
|
1585
1588
|
}());
|
|
1586
|
-
SkyTileDashboardModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
1587
|
-
SkyTileDashboardModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.
|
|
1588
|
-
SkyTileDashboardColumnModule
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
], imports: [[
|
|
1589
|
+
SkyTileDashboardModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
1590
|
+
SkyTileDashboardModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardModule, declarations: [SkyTileDashboardComponent], imports: [i3$1.CommonModule,
|
|
1591
|
+
SkyTileDashboardColumnModule,
|
|
1592
|
+
SkyTilesResourcesModule], exports: [SkyTileDashboardComponent] });
|
|
1593
|
+
SkyTileDashboardModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardModule, providers: [i1.DragulaService], imports: [[
|
|
1592
1594
|
i3$1.CommonModule,
|
|
1593
|
-
SkyTileDashboardColumnModule
|
|
1595
|
+
SkyTileDashboardColumnModule,
|
|
1596
|
+
SkyTilesResourcesModule,
|
|
1594
1597
|
]] });
|
|
1595
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
1598
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTileDashboardModule, decorators: [{
|
|
1596
1599
|
type: i0.NgModule,
|
|
1597
1600
|
args: [{
|
|
1598
|
-
declarations: [
|
|
1599
|
-
|
|
1600
|
-
],
|
|
1601
|
-
providers: [
|
|
1602
|
-
i1.DragulaService
|
|
1603
|
-
],
|
|
1601
|
+
declarations: [SkyTileDashboardComponent],
|
|
1602
|
+
providers: [i1.DragulaService],
|
|
1604
1603
|
imports: [
|
|
1605
1604
|
i3$1.CommonModule,
|
|
1606
|
-
SkyTileDashboardColumnModule
|
|
1605
|
+
SkyTileDashboardColumnModule,
|
|
1606
|
+
SkyTilesResourcesModule,
|
|
1607
1607
|
],
|
|
1608
|
-
exports: [
|
|
1609
|
-
SkyTileDashboardComponent
|
|
1610
|
-
]
|
|
1608
|
+
exports: [SkyTileDashboardComponent],
|
|
1611
1609
|
}]
|
|
1612
1610
|
}] });
|
|
1613
1611
|
|
|
@@ -1616,29 +1614,25 @@
|
|
|
1616
1614
|
}
|
|
1617
1615
|
return SkyTilesModule;
|
|
1618
1616
|
}());
|
|
1619
|
-
SkyTilesModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
1620
|
-
SkyTilesModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.
|
|
1617
|
+
SkyTilesModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTilesModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
1618
|
+
SkyTilesModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTilesModule, imports: [i3$1.CommonModule], exports: [SkyTileContentModule,
|
|
1621
1619
|
SkyTileModule,
|
|
1622
1620
|
SkyTileDashboardColumnModule,
|
|
1623
1621
|
SkyTileDashboardModule] });
|
|
1624
|
-
SkyTilesModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.
|
|
1625
|
-
i3$1.CommonModule
|
|
1626
|
-
], SkyTileContentModule,
|
|
1622
|
+
SkyTilesModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTilesModule, imports: [[i3$1.CommonModule], SkyTileContentModule,
|
|
1627
1623
|
SkyTileModule,
|
|
1628
1624
|
SkyTileDashboardColumnModule,
|
|
1629
1625
|
SkyTileDashboardModule] });
|
|
1630
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
1626
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SkyTilesModule, decorators: [{
|
|
1631
1627
|
type: i0.NgModule,
|
|
1632
1628
|
args: [{
|
|
1633
|
-
imports: [
|
|
1634
|
-
i3$1.CommonModule
|
|
1635
|
-
],
|
|
1629
|
+
imports: [i3$1.CommonModule],
|
|
1636
1630
|
exports: [
|
|
1637
1631
|
SkyTileContentModule,
|
|
1638
1632
|
SkyTileModule,
|
|
1639
1633
|
SkyTileDashboardColumnModule,
|
|
1640
|
-
SkyTileDashboardModule
|
|
1641
|
-
]
|
|
1634
|
+
SkyTileDashboardModule,
|
|
1635
|
+
],
|
|
1642
1636
|
}]
|
|
1643
1637
|
}] });
|
|
1644
1638
|
|
|
@@ -1652,15 +1646,15 @@
|
|
|
1652
1646
|
exports.SkyTileDashboardService = SkyTileDashboardService;
|
|
1653
1647
|
exports.SkyTileModule = SkyTileModule;
|
|
1654
1648
|
exports.SkyTilesModule = SkyTilesModule;
|
|
1655
|
-
exports
|
|
1656
|
-
exports
|
|
1657
|
-
exports
|
|
1658
|
-
exports
|
|
1659
|
-
exports
|
|
1660
|
-
exports
|
|
1661
|
-
exports
|
|
1649
|
+
exports["λ1"] = SkyTileComponent;
|
|
1650
|
+
exports["λ2"] = SkyTileSummaryComponent;
|
|
1651
|
+
exports["λ3"] = SkyTileTitleComponent;
|
|
1652
|
+
exports["λ4"] = SkyTileContentSectionComponent;
|
|
1653
|
+
exports["λ5"] = SkyTileContentComponent;
|
|
1654
|
+
exports["λ6"] = SkyTileDashboardColumnComponent;
|
|
1655
|
+
exports["λ7"] = SkyTileDashboardComponent;
|
|
1662
1656
|
|
|
1663
1657
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
1664
1658
|
|
|
1665
|
-
}))
|
|
1659
|
+
}));
|
|
1666
1660
|
//# sourceMappingURL=skyux-tiles.umd.js.map
|