@danske/sapphire-angular 3.4.0 → 3.5.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/button/src/button-group.component.mjs +1 -1
- package/esm2020/lib/checkbox/src/checkbox.component.mjs +11 -6
- package/esm2020/lib/icon/src/icon.component.mjs +1 -1
- package/esm2020/lib/list/public_api.mjs +2 -1
- package/esm2020/lib/list/src/list-item-text-label.component.mjs +22 -0
- package/esm2020/lib/list/src/list.component.mjs +2 -2
- package/esm2020/lib/list/src/list.module.mjs +7 -1
- package/esm2020/lib/modal/public_api.mjs +3 -1
- package/esm2020/lib/modal/src/layout/modal-header-extra.directive.mjs +24 -0
- package/esm2020/lib/modal/src/layout/modal-header-progress.directive.mjs +24 -0
- package/esm2020/lib/modal/src/layout/modal-header.component.mjs +3 -3
- package/esm2020/lib/modal/src/layout/modal-layout.component.mjs +2 -2
- package/esm2020/lib/modal/src/modal.module.mjs +11 -1
- package/esm2020/lib/modal/src/panel/panel.component.mjs +2 -2
- package/esm2020/lib/radio/src/radio.component.mjs +8 -4
- package/esm2020/lib/radio/src/shared/radio-base.mjs +4 -2
- package/esm2020/lib/switch/src/switch.component.mjs +10 -4
- package/esm2020/lib/table/src/table.component.mjs +2 -2
- package/fesm2015/danske-sapphire-angular.mjs +103 -23
- package/fesm2015/danske-sapphire-angular.mjs.map +1 -1
- package/fesm2020/danske-sapphire-angular.mjs +103 -23
- package/fesm2020/danske-sapphire-angular.mjs.map +1 -1
- package/lib/checkbox/src/checkbox.component.d.ts +4 -1
- package/lib/list/public_api.d.ts +1 -0
- package/lib/list/src/list-item-text-label.component.d.ts +6 -0
- package/lib/list/src/list.module.d.ts +4 -3
- package/lib/modal/public_api.d.ts +2 -0
- package/lib/modal/src/layout/modal-header-extra.directive.d.ts +10 -0
- package/lib/modal/src/layout/modal-header-progress.directive.d.ts +10 -0
- package/lib/modal/src/layout/modal-header.component.d.ts +1 -1
- package/lib/modal/src/modal.module.d.ts +4 -2
- package/lib/radio/src/radio.component.d.ts +2 -1
- package/lib/radio/src/shared/radio-base.d.ts +3 -1
- package/lib/switch/src/switch.component.d.ts +4 -1
- package/package.json +3 -3
|
@@ -7,6 +7,7 @@ import { CanDisable } from '../../common/disabled';
|
|
|
7
7
|
import { CheckboxGroupComponent } from './checkbox-group.component';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "../../theme/src/theme-check.directive";
|
|
10
|
+
import * as i2 from "../../common/sapphire-view-encapsulation";
|
|
10
11
|
/** Change event object emitted by checkbox. */
|
|
11
12
|
export declare class CheckboxChange {
|
|
12
13
|
/** The new `selected` value of the checkbox. */
|
|
@@ -64,6 +65,8 @@ export declare class CheckboxComponent extends _CheckboxMixinBase implements Aft
|
|
|
64
65
|
value: string | undefined;
|
|
65
66
|
/** The native `<input type="checkbox">` element */
|
|
66
67
|
_inputElement: ElementRef<HTMLInputElement>;
|
|
68
|
+
/** Optional note text to display below the checkbox label. */
|
|
69
|
+
note?: string;
|
|
67
70
|
/**
|
|
68
71
|
* Called when the checkbox is blurred. Needed to properly implement
|
|
69
72
|
* ControlValueAccessor.
|
|
@@ -116,6 +119,6 @@ export declare class CheckboxComponent extends _CheckboxMixinBase implements Aft
|
|
|
116
119
|
*/
|
|
117
120
|
private syncIndeterminate;
|
|
118
121
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, [{ optional: true; }, null, null, { attribute: "tabindex"; }]>;
|
|
119
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "sp-checkbox", ["spCheckbox"], { "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "ariaDescribedby": "aria-describedby"; "id": "id"; "required": "required"; "necessityIndicator": "necessityIndicator"; "readonly": "readonly"; "name": "name"; "size": "size"; "value": "value"; "selected": "selected"; "disabled": "disabled"; "indeterminate": "indeterminate"; }, { "change": "change"; }, never, ["*"], false, [{ directive: typeof i1.ThemeCheckDirective; inputs: {}; outputs: {}; }]>;
|
|
122
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "sp-checkbox", ["spCheckbox"], { "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "ariaDescribedby": "aria-describedby"; "id": "id"; "required": "required"; "necessityIndicator": "necessityIndicator"; "readonly": "readonly"; "name": "name"; "size": "size"; "value": "value"; "note": "note"; "selected": "selected"; "disabled": "disabled"; "indeterminate": "indeterminate"; }, { "change": "change"; }, never, ["*"], false, [{ directive: typeof i1.ThemeCheckDirective; inputs: {}; outputs: {}; }, { directive: typeof i2.UseComponentStylesOnHost; inputs: {}; outputs: {}; }]>;
|
|
120
123
|
}
|
|
121
124
|
export {};
|
package/lib/list/public_api.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export * from './src/list.component';
|
|
|
2
2
|
export * from './src/list-item.component';
|
|
3
3
|
export * from './src/list-item-content.component';
|
|
4
4
|
export * from './src/list-item-text.component';
|
|
5
|
+
export * from './src/list-item-text-label.component';
|
|
5
6
|
export * from './src/list-item-text-primary.component';
|
|
6
7
|
export * from './src/list-item-text-secondary.component';
|
|
7
8
|
export * from './src/list.module';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "../../common/sapphire-view-encapsulation";
|
|
3
|
+
export declare class ListItemTextLabelComponent {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListItemTextLabelComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListItemTextLabelComponent, "sp-list-item-text-label", never, {}, {}, never, ["*"], true, [{ directive: typeof i1.UseComponentStyles; inputs: {}; outputs: {}; }]>;
|
|
6
|
+
}
|
|
@@ -3,10 +3,11 @@ import * as i1 from "./list.component";
|
|
|
3
3
|
import * as i2 from "./list-item.component";
|
|
4
4
|
import * as i3 from "./list-item-content.component";
|
|
5
5
|
import * as i4 from "./list-item-text.component";
|
|
6
|
-
import * as i5 from "./list-item-text-
|
|
7
|
-
import * as i6 from "./list-item-text-
|
|
6
|
+
import * as i5 from "./list-item-text-label.component";
|
|
7
|
+
import * as i6 from "./list-item-text-primary.component";
|
|
8
|
+
import * as i7 from "./list-item-text-secondary.component";
|
|
8
9
|
export declare class SapphireListModule {
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<SapphireListModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SapphireListModule, never, [typeof i1.ListComponent, typeof i2.ListItemComponent, typeof i3.ListItemContentComponent, typeof i4.ListItemTextComponent, typeof i5.
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SapphireListModule, never, [typeof i1.ListComponent, typeof i2.ListItemComponent, typeof i3.ListItemContentComponent, typeof i4.ListItemTextComponent, typeof i5.ListItemTextLabelComponent, typeof i6.ListItemTextPrimaryComponent, typeof i7.ListItemTextSecondaryComponent], [typeof i1.ListComponent, typeof i2.ListItemComponent, typeof i3.ListItemContentComponent, typeof i4.ListItemTextComponent, typeof i5.ListItemTextLabelComponent, typeof i6.ListItemTextPrimaryComponent, typeof i7.ListItemTextSecondaryComponent]>;
|
|
11
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<SapphireListModule>;
|
|
12
13
|
}
|
|
@@ -9,6 +9,8 @@ export * from './src/layout/modal-section-title.directive';
|
|
|
9
9
|
export * from './src/layout/modal-header.component';
|
|
10
10
|
export * from './src/layout/modal-close-button.directive';
|
|
11
11
|
export * from './src/layout/modal-back-button.directive';
|
|
12
|
+
export * from './src/layout/modal-header-progress.directive';
|
|
13
|
+
export * from './src/layout/modal-header-extra.directive';
|
|
12
14
|
export * from './src/panel/panel.component';
|
|
13
15
|
export * from './src/panel/panel-trigger.directive';
|
|
14
16
|
export * from './src/dialog/dialog.component';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "../../../common/sapphire-view-encapsulation";
|
|
3
|
+
/**
|
|
4
|
+
* Slot for optional extra content (such as {@link BadgeComponent sp-badge}
|
|
5
|
+
* rendered under the heading and subheading.
|
|
6
|
+
*/
|
|
7
|
+
export declare class ModalHeaderExtraDirective {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalHeaderExtraDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ModalHeaderExtraDirective, "sp-modal-header-extra", never, {}, {}, never, never, true, [{ directive: typeof i1.UseComponentStyles; inputs: {}; outputs: {}; }]>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "../../../common/sapphire-view-encapsulation";
|
|
3
|
+
/**
|
|
4
|
+
* Slot for optional progress indicator, rendered along the bottom of the header.
|
|
5
|
+
* Use {@link ProgressIndicatorComponent sp-progress-indicator} to render the content.
|
|
6
|
+
*/
|
|
7
|
+
export declare class ModalHeaderProgressDirective {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalHeaderProgressDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ModalHeaderProgressDirective, "sp-modal-header-progress", never, {}, {}, never, never, true, [{ directive: typeof i1.UseComponentStyles; inputs: {}; outputs: {}; }]>;
|
|
10
|
+
}
|
|
@@ -27,5 +27,5 @@ export declare class ModalHeaderComponent {
|
|
|
27
27
|
closeEventEmitter: EventEmitter<any>;
|
|
28
28
|
close(event: MouseEvent): void;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalHeaderComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ModalHeaderComponent, "sp-modal-header", never, { "subheading": "subheading"; "hideCloseButton": "hideCloseButton"; }, { "closeEventEmitter": "closeClicked"; }, never, ["[spModalBackButton]", "*"], false, [{ directive: typeof ModalHeaderDirective; inputs: { "id": "id"; }; outputs: {}; }, { directive: typeof i1.UseComponentStyles; inputs: {}; outputs: {}; }]>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalHeaderComponent, "sp-modal-header", never, { "subheading": "subheading"; "hideCloseButton": "hideCloseButton"; }, { "closeEventEmitter": "closeClicked"; }, never, ["[spModalBackButton]", "*", "sp-modal-header-extra", "sp-modal-header-progress"], false, [{ directive: typeof ModalHeaderDirective; inputs: { "id": "id"; }; outputs: {}; }, { directive: typeof i1.UseComponentStyles; inputs: {}; outputs: {}; }]>;
|
|
31
31
|
}
|
|
@@ -22,9 +22,11 @@ import * as i20 from "../../icon/src/icon.module";
|
|
|
22
22
|
import * as i21 from "../../button/src/button.module";
|
|
23
23
|
import * as i22 from "../../feedback-message/src/feedback-message.module";
|
|
24
24
|
import * as i23 from "../../common/scroll-monitor.directive";
|
|
25
|
-
import * as i24 from "
|
|
25
|
+
import * as i24 from "./layout/modal-header-extra.directive";
|
|
26
|
+
import * as i25 from "./layout/modal-header-progress.directive";
|
|
27
|
+
import * as i26 from "../../common/sapphire-view-encapsulation";
|
|
26
28
|
export declare class SapphireModalModule {
|
|
27
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<SapphireModalModule, never>;
|
|
28
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SapphireModalModule, [typeof i1.ModalLayoutComponent, typeof i2.ModalHeaderComponent, typeof i3.ModalBodyComponent, typeof i4.ModalFooterComponent, typeof i5.ModalCloseButtonDirective, typeof i6.ModalBackButtonDirective, typeof i7.ModalSectionComponent, typeof i8.ModalSectionTitleDirective, typeof i9.DialogComponent, typeof i10.DialogTriggerDirective, typeof i11.ConfirmationDialogComponent, typeof i12.DangerDialogComponent, typeof i13.AlertDialogComponent, typeof i13.AlertDialogIcon, typeof i13.AlertDialogBody, typeof i13.AlertDialogHeading, typeof i13.AlertDialogActions, typeof i14.PanelComponent, typeof i15.PanelTriggerDirective], [typeof i16.CommonModule, typeof i16.NgIf, typeof i17.DialogModule, typeof i18.SapphireThemeModule, typeof i19.SapphireTypographyModule, typeof i20.SapphireIconModule, typeof i21.SapphireButtonModule, typeof i22.SapphireFeedbackMessageModule, typeof i23.ScrollMonitorDirective, typeof i2.ModalHeaderDirective, typeof i4.ModalFooterDirective, typeof i24.UseComponentStyles], [typeof i1.ModalLayoutComponent, typeof i2.ModalHeaderComponent, typeof i3.ModalBodyComponent, typeof i4.ModalFooterComponent, typeof i2.ModalHeaderDirective, typeof i4.ModalFooterDirective, typeof i6.ModalBackButtonDirective, typeof i5.ModalCloseButtonDirective, typeof i7.ModalSectionComponent, typeof i8.ModalSectionTitleDirective, typeof i9.DialogComponent, typeof i10.DialogTriggerDirective, typeof i11.ConfirmationDialogComponent, typeof i12.DangerDialogComponent, typeof i13.AlertDialogComponent, typeof i13.AlertDialogIcon, typeof i13.AlertDialogBody, typeof i13.AlertDialogHeading, typeof i13.AlertDialogActions, typeof i14.PanelComponent, typeof i15.PanelTriggerDirective]>;
|
|
30
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SapphireModalModule, [typeof i1.ModalLayoutComponent, typeof i2.ModalHeaderComponent, typeof i3.ModalBodyComponent, typeof i4.ModalFooterComponent, typeof i5.ModalCloseButtonDirective, typeof i6.ModalBackButtonDirective, typeof i7.ModalSectionComponent, typeof i8.ModalSectionTitleDirective, typeof i9.DialogComponent, typeof i10.DialogTriggerDirective, typeof i11.ConfirmationDialogComponent, typeof i12.DangerDialogComponent, typeof i13.AlertDialogComponent, typeof i13.AlertDialogIcon, typeof i13.AlertDialogBody, typeof i13.AlertDialogHeading, typeof i13.AlertDialogActions, typeof i14.PanelComponent, typeof i15.PanelTriggerDirective], [typeof i16.CommonModule, typeof i16.NgIf, typeof i17.DialogModule, typeof i18.SapphireThemeModule, typeof i19.SapphireTypographyModule, typeof i20.SapphireIconModule, typeof i21.SapphireButtonModule, typeof i22.SapphireFeedbackMessageModule, typeof i23.ScrollMonitorDirective, typeof i2.ModalHeaderDirective, typeof i4.ModalFooterDirective, typeof i24.ModalHeaderExtraDirective, typeof i25.ModalHeaderProgressDirective, typeof i26.UseComponentStyles], [typeof i1.ModalLayoutComponent, typeof i2.ModalHeaderComponent, typeof i3.ModalBodyComponent, typeof i4.ModalFooterComponent, typeof i2.ModalHeaderDirective, typeof i4.ModalFooterDirective, typeof i6.ModalBackButtonDirective, typeof i5.ModalCloseButtonDirective, typeof i7.ModalSectionComponent, typeof i8.ModalSectionTitleDirective, typeof i24.ModalHeaderExtraDirective, typeof i25.ModalHeaderProgressDirective, typeof i9.DialogComponent, typeof i10.DialogTriggerDirective, typeof i11.ConfirmationDialogComponent, typeof i12.DangerDialogComponent, typeof i13.AlertDialogComponent, typeof i13.AlertDialogIcon, typeof i13.AlertDialogBody, typeof i13.AlertDialogHeading, typeof i13.AlertDialogActions, typeof i14.PanelComponent, typeof i15.PanelTriggerDirective]>;
|
|
29
31
|
static ɵinj: i0.ɵɵInjectorDeclaration<SapphireModalModule>;
|
|
30
32
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { RadioBase } from './shared/radio-base';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
import * as i1 from "../../theme/src/theme-check.directive";
|
|
4
|
+
import * as i2 from "../../common/sapphire-view-encapsulation";
|
|
4
5
|
export declare class RadioComponent extends RadioBase {
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioComponent, "sp-radio", never, { "tabIndex": "tabIndex"; }, {}, never, ["*"], false, [{ directive: typeof i1.ThemeCheckDirective; inputs: {}; outputs: {}; }]>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioComponent, "sp-radio", never, { "tabIndex": "tabIndex"; }, {}, never, ["*"], false, [{ directive: typeof i1.ThemeCheckDirective; inputs: {}; outputs: {}; }, { directive: typeof i2.UseComponentStylesOnHost; inputs: {}; outputs: {}; }]>;
|
|
7
8
|
}
|
|
@@ -59,6 +59,8 @@ export declare class RadioBase extends _RadioMixinBase implements OnInit, AfterV
|
|
|
59
59
|
private removeUniqueSelectionListener;
|
|
60
60
|
/** The native `<input type="radio">` element */
|
|
61
61
|
_inputElement: ElementRef<HTMLInputElement>;
|
|
62
|
+
/** Optional note text to display below the checkbox label. */
|
|
63
|
+
note?: string;
|
|
62
64
|
/** The value of this radio button. */
|
|
63
65
|
get value(): any;
|
|
64
66
|
set value(value: any);
|
|
@@ -98,6 +100,6 @@ export declare class RadioBase extends _RadioMixinBase implements OnInit, AfterV
|
|
|
98
100
|
/** Triggered when the radio button receives an interaction from the user. */
|
|
99
101
|
_onInputInteraction(event: Event): void;
|
|
100
102
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioBase, [{ optional: true; }, null, { attribute: "tabindex"; }, null, null]>;
|
|
101
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<RadioBase, never, never, { "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "ariaDescribedby": "aria-describedby"; "name": "name"; "autofocus": "autofocus"; "id": "id"; "value": "value"; "checked": "checked"; "disabled": "disabled"; "readonly": "readonly"; "required": "required"; }, { "change": "change"; }, never, never, false, never>;
|
|
103
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RadioBase, never, never, { "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "ariaDescribedby": "aria-describedby"; "name": "name"; "autofocus": "autofocus"; "id": "id"; "note": "note"; "value": "value"; "checked": "checked"; "disabled": "disabled"; "readonly": "readonly"; "required": "required"; }, { "change": "change"; }, never, never, false, never>;
|
|
102
104
|
}
|
|
103
105
|
export {};
|
|
@@ -6,6 +6,7 @@ import { HasTabIndex } from '../../common/tabindex';
|
|
|
6
6
|
import { CanDisable } from '../../common/disabled';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
import * as i1 from "../../theme/src/theme-check.directive";
|
|
9
|
+
import * as i2 from "../../common/sapphire-view-encapsulation";
|
|
9
10
|
/** Change event object emitted by switch. */
|
|
10
11
|
export declare class SapphireSwitchChange {
|
|
11
12
|
/** The new `selected` value of the switch. */
|
|
@@ -73,6 +74,8 @@ export declare class SwitchComponent extends _SwitchMixinBase implements Control
|
|
|
73
74
|
private controlValueAccessorChangeFn;
|
|
74
75
|
/** The native `<input type="checkbox">` element */
|
|
75
76
|
_inputElement: ElementRef<HTMLInputElement>;
|
|
77
|
+
/** Optional note text to display below the checkbox label. */
|
|
78
|
+
note?: string;
|
|
76
79
|
constructor(elementRef: ElementRef<HTMLElement>, changeDetectorRef: ChangeDetectorRef, tabIndex: string);
|
|
77
80
|
writeValue(value: any): void;
|
|
78
81
|
registerOnChange(fn: (value: any) => void): void;
|
|
@@ -86,6 +89,6 @@ export declare class SwitchComponent extends _SwitchMixinBase implements Control
|
|
|
86
89
|
_onBlur(): void;
|
|
87
90
|
private emitChangeEvent;
|
|
88
91
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchComponent, [null, null, { attribute: "tabindex"; }]>;
|
|
89
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "sp-switch", never, { "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "ariaDescribedby": "aria-describedby"; "name": "name"; "size": "size"; "id": "id"; "value": "value"; "required": "required"; "selected": "selected"; "disabled": "disabled"; "readonly": "readonly"; }, { "change": "change"; }, never, ["*"], false, [{ directive: typeof i1.ThemeCheckDirective; inputs: {}; outputs: {}; }]>;
|
|
92
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "sp-switch", never, { "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "ariaDescribedby": "aria-describedby"; "name": "name"; "size": "size"; "id": "id"; "value": "value"; "required": "required"; "selected": "selected"; "disabled": "disabled"; "readonly": "readonly"; "note": "note"; }, { "change": "change"; }, never, ["*"], false, [{ directive: typeof i1.ThemeCheckDirective; inputs: {}; outputs: {}; }, { directive: typeof i2.UseComponentStylesOnHost; inputs: {}; outputs: {}; }]>;
|
|
90
93
|
}
|
|
91
94
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danske/sapphire-angular",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.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,12 +16,12 @@
|
|
|
16
16
|
"@danske/sapphire-icons": "^3.1.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@danske/sapphire-css": "^
|
|
19
|
+
"@danske/sapphire-css": "^44.0.0",
|
|
20
20
|
"@internationalized/message": "^3.1.5",
|
|
21
21
|
"dompurify": "^3.2.6",
|
|
22
22
|
"tslib": "^2.3.0"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "8e444e6b304060b29ba5ba3485086b0eddae52e1",
|
|
25
25
|
"es2020": "fesm2020/danske-sapphire-angular.mjs",
|
|
26
26
|
"esm2020": "esm2020/danske-sapphire-angular.mjs",
|
|
27
27
|
"fesm2020": "fesm2020/danske-sapphire-angular.mjs",
|