@colijnit/extendedcomponents 12.0.8 → 12.0.9
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/colijnit-extendedcomponents.umd.js +4 -56
- package/bundles/colijnit-extendedcomponents.umd.js.map +1 -1
- package/esm2015/lib/components/summary-grid/summary-grid.component.js +5 -57
- package/esm2015/lib/model/icon-svg.js +1 -1
- package/fesm2015/colijnit-extendedcomponents.js +4 -56
- package/fesm2015/colijnit-extendedcomponents.js.map +1 -1
- package/lib/components/summary-grid/components/recursive-list/style/_layout.scss +25 -6
- package/package.json +1 -1
|
@@ -951,63 +951,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
951
951
|
class SummaryGridComponent {
|
|
952
952
|
constructor() {
|
|
953
953
|
this.showClass = true;
|
|
954
|
-
this.columns = [
|
|
955
|
-
this.subColumns = [
|
|
956
|
-
this.tableLegend = "
|
|
954
|
+
this.columns = [];
|
|
955
|
+
this.subColumns = [];
|
|
956
|
+
this.tableLegend = "";
|
|
957
957
|
this.dataPipe = null;
|
|
958
|
-
this.collection = [
|
|
959
|
-
{
|
|
960
|
-
name: 'Root 1',
|
|
961
|
-
expanded: false,
|
|
962
|
-
data: [1, 2],
|
|
963
|
-
children: [
|
|
964
|
-
{
|
|
965
|
-
name: 'Child 1.1',
|
|
966
|
-
expanded: false,
|
|
967
|
-
data: [3, 4],
|
|
968
|
-
children: [
|
|
969
|
-
{
|
|
970
|
-
name: 'Grandchild 1.1.1',
|
|
971
|
-
expanded: false,
|
|
972
|
-
data: [5, 6],
|
|
973
|
-
},
|
|
974
|
-
{
|
|
975
|
-
name: 'Grandchild 1.1.2',
|
|
976
|
-
expanded: false,
|
|
977
|
-
data: [7, 0],
|
|
978
|
-
},
|
|
979
|
-
],
|
|
980
|
-
},
|
|
981
|
-
// ... other nodes
|
|
982
|
-
],
|
|
983
|
-
},
|
|
984
|
-
{
|
|
985
|
-
name: 'Root 2',
|
|
986
|
-
expanded: false,
|
|
987
|
-
data: [9, 10],
|
|
988
|
-
children: [
|
|
989
|
-
{
|
|
990
|
-
name: 'Child 2.1',
|
|
991
|
-
expanded: false,
|
|
992
|
-
data: [11, 12],
|
|
993
|
-
children: [
|
|
994
|
-
{
|
|
995
|
-
name: 'Grandchild 2.1.1',
|
|
996
|
-
expanded: false,
|
|
997
|
-
data: [13, 14],
|
|
998
|
-
},
|
|
999
|
-
{
|
|
1000
|
-
name: 'Grandchild 2.1.2',
|
|
1001
|
-
expanded: false,
|
|
1002
|
-
data: [15, 16],
|
|
1003
|
-
},
|
|
1004
|
-
],
|
|
1005
|
-
},
|
|
1006
|
-
// ... other nodes
|
|
1007
|
-
],
|
|
1008
|
-
},
|
|
1009
|
-
// ... other root nodes
|
|
1010
|
-
];
|
|
958
|
+
this.collection = [];
|
|
1011
959
|
}
|
|
1012
960
|
}
|
|
1013
961
|
SummaryGridComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SummaryGridComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|