@htmlbricks/hb-table 0.62.28 → 0.62.30

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/manifest.json CHANGED
@@ -575,6 +575,9 @@
575
575
  },
576
576
  "type": "array"
577
577
  },
578
+ "_evidenced": {
579
+ "type": "boolean"
580
+ },
578
581
  "_id": {
579
582
  "type": "string"
580
583
  }
@@ -2537,6 +2540,51 @@
2537
2540
  }
2538
2541
  ]
2539
2542
  }
2543
+ },
2544
+ {
2545
+ "name": "BasicTableWithEvidencedRows",
2546
+ "data": {
2547
+ "headers": [
2548
+ {
2549
+ "label": "title",
2550
+ "key": "title",
2551
+ "tooltip": {
2552
+ "title": "This is the title",
2553
+ "placement": "top"
2554
+ }
2555
+ },
2556
+ {
2557
+ "label": "description",
2558
+ "key": "description"
2559
+ },
2560
+ {
2561
+ "label": "nested",
2562
+ "key": "testnested.nested"
2563
+ }
2564
+ ],
2565
+ "rows": [
2566
+ {
2567
+ "title": "bb9",
2568
+ "time": "2021-08-06T22:46:33.565Z",
2569
+ "_id": "bb9",
2570
+ "status": "active",
2571
+ "_evidenced": true
2572
+ },
2573
+ {
2574
+ "title": "bb10",
2575
+ "time": "2021-08-06T22:46:34.565Z",
2576
+ "_id": "bb10",
2577
+ "status": "active"
2578
+ },
2579
+ {
2580
+ "title": "bb11",
2581
+ "time": "2021-08-06T22:46:34.565Z",
2582
+ "_id": "bb11",
2583
+ "status": "active",
2584
+ "_evidenced": true
2585
+ }
2586
+ ]
2587
+ }
2540
2588
  }
2541
2589
  ],
2542
2590
  "screenshots": [],
@@ -2557,5 +2605,5 @@
2557
2605
  "size": {},
2558
2606
  "iifePath": "main.iife.js",
2559
2607
  "repoName": "@htmlbricks/hb-table",
2560
- "version": "0.62.28"
2608
+ "version": "0.62.30"
2561
2609
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-table",
3
- "version": "0.62.28",
3
+ "version": "0.62.30",
4
4
  "contributors": [],
5
5
  "description": "",
6
6
  "licenses": [
@@ -255,6 +255,9 @@
255
255
  },
256
256
  "type": "array"
257
257
  },
258
+ "_evidenced": {
259
+ "type": "boolean"
260
+ },
258
261
  "_id": {
259
262
  "type": "string"
260
263
  }
@@ -26,6 +26,7 @@ export interface ITableHeader {
26
26
  export interface IRow {
27
27
  _id: string;
28
28
  _actions?: IActionButton[];
29
+ _evidenced?: boolean;
29
30
  [k: string]: string | IActionButton[] | any;
30
31
  }
31
32