@danske/sapphire-angular 1.25.1 → 1.26.0
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/esm2020/lib/listbox/src/listbox.component.mjs +2 -2
- package/esm2020/lib/menu/src/menu.component.mjs +2 -2
- package/esm2020/lib/table/src/table-row.directive.mjs +15 -2
- package/esm2020/lib/table/src/table.component.mjs +2 -2
- package/esm2020/lib/theme/src/themes.mjs +4 -4
- package/fesm2015/danske-sapphire-angular.mjs +24 -11
- package/fesm2015/danske-sapphire-angular.mjs.map +1 -1
- package/fesm2020/danske-sapphire-angular.mjs +24 -11
- package/fesm2020/danske-sapphire-angular.mjs.map +1 -1
- package/lib/table/src/table-row.directive.d.ts +8 -1
- package/package.json +3 -3
|
@@ -13,9 +13,16 @@ export declare class TableRowDirective<D = unknown> {
|
|
|
13
13
|
* Applies selected row styles, and marks the row as selected for assistive technology.
|
|
14
14
|
*/
|
|
15
15
|
selected: BooleanInput;
|
|
16
|
+
/**
|
|
17
|
+
* Applies highlighted row styles. Highlighted rows are shown in a selected state
|
|
18
|
+
* which is different from the normal selection with checkboxes. The primary use case is when
|
|
19
|
+
* the row action is to update an external view (such as a row detail view), to
|
|
20
|
+
* show its connection with the selected row.
|
|
21
|
+
*/
|
|
22
|
+
highlighted: BooleanInput;
|
|
16
23
|
private onRowClick;
|
|
17
24
|
getColumnHeadCell(cell: TableCellDirective): import("@danske/sapphire-angular").TableHeadCellComponent | undefined;
|
|
18
25
|
constructor(table: TableComponent);
|
|
19
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableRowDirective<any>, never>;
|
|
20
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TableRowDirective<any>, "tr[sp-table-tr]", never, { "rowData": "rowData"; "disabled": "disabled"; "selected": "selected"; }, {}, ["cells"], never, false, [{ directive: typeof i1.UseComponentStyles; inputs: {}; outputs: {}; }]>;
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableRowDirective<any>, "tr[sp-table-tr]", never, { "rowData": "rowData"; "disabled": "disabled"; "selected": "selected"; "highlighted": "highlighted"; }, {}, ["cells"], never, false, [{ directive: typeof i1.UseComponentStyles; inputs: {}; outputs: {}; }]>;
|
|
21
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danske/sapphire-angular",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.26.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"description": "The Angular implementation of the Sapphire Design System from Danske Bank A/S",
|
|
6
6
|
"module": "fesm2015/danske-sapphire-angular.mjs",
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"@danske/sapphire-icons": "^1.0.2"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@danske/sapphire-css": "^31.
|
|
19
|
+
"@danske/sapphire-css": "^31.2.0",
|
|
20
20
|
"tslib": "^2.3.0"
|
|
21
21
|
},
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "a8ebdf9b67baf003c82173820a5244a9755d7f95",
|
|
23
23
|
"es2020": "fesm2020/danske-sapphire-angular.mjs",
|
|
24
24
|
"esm2020": "esm2020/danske-sapphire-angular.mjs",
|
|
25
25
|
"fesm2020": "fesm2020/danske-sapphire-angular.mjs",
|