@danske/sapphire-angular 1.12.4 → 1.13.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/esm2020/lib/button/src/button.component.mjs +2 -2
- package/esm2020/lib/button/src/toggle-button.component.mjs +2 -2
- package/esm2020/lib/notification-badge/src/notification-badge.component.mjs +12 -3
- package/esm2020/lib/select/src/common/hidden-select.component.mjs +3 -3
- package/esm2020/lib/select/src/common/select-component-base.mjs +4 -2
- package/esm2020/lib/table/src/table.component.mjs +2 -2
- package/fesm2015/danske-sapphire-angular.mjs +21 -11
- package/fesm2015/danske-sapphire-angular.mjs.map +1 -1
- package/fesm2020/danske-sapphire-angular.mjs +21 -11
- package/fesm2020/danske-sapphire-angular.mjs.map +1 -1
- package/lib/notification-badge/src/notification-badge.component.d.ts +7 -1
- package/lib/select/src/common/select-component-base.d.ts +3 -1
- package/package.json +3 -3
|
@@ -5,6 +5,12 @@ export declare class NotificationBadgeComponent {
|
|
|
5
5
|
variant?: 'primary' | 'secondary';
|
|
6
6
|
count?: number;
|
|
7
7
|
show?: boolean;
|
|
8
|
+
/**
|
|
9
|
+
* Flag to toggle the animation of the badge on show/hide.
|
|
10
|
+
*
|
|
11
|
+
* @default 'true'
|
|
12
|
+
*/
|
|
13
|
+
animate?: boolean;
|
|
8
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationBadgeComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationBadgeComponent, "sp-notification-badge", never, { "containerType": "containerType"; "size": "size"; "variant": "variant"; "count": "count"; "show": "show"; }, {}, never, ["*"], false, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationBadgeComponent, "sp-notification-badge", never, { "containerType": "containerType"; "size": "size"; "variant": "variant"; "count": "count"; "show": "show"; "animate": "animate"; }, {}, never, ["*"], false, never>;
|
|
10
16
|
}
|
|
@@ -17,6 +17,8 @@ export declare abstract class SelectComponentBase implements ControlValueAccesso
|
|
|
17
17
|
id: string;
|
|
18
18
|
/** The name of the input, used when submitting an HTML form. */
|
|
19
19
|
name?: string;
|
|
20
|
+
/** The autocomplete behavior */
|
|
21
|
+
autocomplete?: string;
|
|
20
22
|
/**
|
|
21
23
|
* Placeholder to be shown if no value has been selected.
|
|
22
24
|
*/
|
|
@@ -105,5 +107,5 @@ export declare abstract class SelectComponentBase implements ControlValueAccesso
|
|
|
105
107
|
protected getNextEnabledOptionValue(direction?: 'left' | 'right'): string | undefined;
|
|
106
108
|
protected initKeyManager(): void;
|
|
107
109
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponentBase, never>;
|
|
108
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SelectComponentBase, never, never, { "disabled": "disabled"; "id": "id"; "name": "name"; "placeholder": "placeholder"; "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; }, { "opened": "opened"; "closed": "closed"; "selected": "selected"; }, ["selectionText", "options", "listboxChildren"], never, false, never>;
|
|
110
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SelectComponentBase, never, never, { "disabled": "disabled"; "id": "id"; "name": "name"; "autocomplete": "autocomplete"; "placeholder": "placeholder"; "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; }, { "opened": "opened"; "closed": "closed"; "selected": "selected"; }, ["selectionText", "options", "listboxChildren"], never, false, never>;
|
|
109
111
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danske/sapphire-angular",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.3",
|
|
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": "^26.
|
|
19
|
+
"@danske/sapphire-css": "^26.1.3",
|
|
20
20
|
"tslib": "^2.3.0"
|
|
21
21
|
},
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "4bb40c07cda15ff5461bfc2aed65942f060b16ae",
|
|
23
23
|
"es2020": "fesm2020/danske-sapphire-angular.mjs",
|
|
24
24
|
"esm2020": "esm2020/danske-sapphire-angular.mjs",
|
|
25
25
|
"fesm2020": "fesm2020/danske-sapphire-angular.mjs",
|