@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
|
@@ -1319,63 +1319,11 @@
|
|
|
1319
1319
|
var SummaryGridComponent = /** @class */ (function () {
|
|
1320
1320
|
function SummaryGridComponent() {
|
|
1321
1321
|
this.showClass = true;
|
|
1322
|
-
this.columns = [
|
|
1323
|
-
this.subColumns = [
|
|
1324
|
-
this.tableLegend = "
|
|
1322
|
+
this.columns = [];
|
|
1323
|
+
this.subColumns = [];
|
|
1324
|
+
this.tableLegend = "";
|
|
1325
1325
|
this.dataPipe = null;
|
|
1326
|
-
this.collection = [
|
|
1327
|
-
{
|
|
1328
|
-
name: 'Root 1',
|
|
1329
|
-
expanded: false,
|
|
1330
|
-
data: [1, 2],
|
|
1331
|
-
children: [
|
|
1332
|
-
{
|
|
1333
|
-
name: 'Child 1.1',
|
|
1334
|
-
expanded: false,
|
|
1335
|
-
data: [3, 4],
|
|
1336
|
-
children: [
|
|
1337
|
-
{
|
|
1338
|
-
name: 'Grandchild 1.1.1',
|
|
1339
|
-
expanded: false,
|
|
1340
|
-
data: [5, 6],
|
|
1341
|
-
},
|
|
1342
|
-
{
|
|
1343
|
-
name: 'Grandchild 1.1.2',
|
|
1344
|
-
expanded: false,
|
|
1345
|
-
data: [7, 0],
|
|
1346
|
-
},
|
|
1347
|
-
],
|
|
1348
|
-
},
|
|
1349
|
-
// ... other nodes
|
|
1350
|
-
],
|
|
1351
|
-
},
|
|
1352
|
-
{
|
|
1353
|
-
name: 'Root 2',
|
|
1354
|
-
expanded: false,
|
|
1355
|
-
data: [9, 10],
|
|
1356
|
-
children: [
|
|
1357
|
-
{
|
|
1358
|
-
name: 'Child 2.1',
|
|
1359
|
-
expanded: false,
|
|
1360
|
-
data: [11, 12],
|
|
1361
|
-
children: [
|
|
1362
|
-
{
|
|
1363
|
-
name: 'Grandchild 2.1.1',
|
|
1364
|
-
expanded: false,
|
|
1365
|
-
data: [13, 14],
|
|
1366
|
-
},
|
|
1367
|
-
{
|
|
1368
|
-
name: 'Grandchild 2.1.2',
|
|
1369
|
-
expanded: false,
|
|
1370
|
-
data: [15, 16],
|
|
1371
|
-
},
|
|
1372
|
-
],
|
|
1373
|
-
},
|
|
1374
|
-
// ... other nodes
|
|
1375
|
-
],
|
|
1376
|
-
},
|
|
1377
|
-
// ... other root nodes
|
|
1378
|
-
];
|
|
1326
|
+
this.collection = [];
|
|
1379
1327
|
}
|
|
1380
1328
|
return SummaryGridComponent;
|
|
1381
1329
|
}());
|