@baloise/ds-angular 16.0.3 → 16.1.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/bundles.d.ts +5 -4
- package/components/bal-dropdown.d.ts +20 -0
- package/components/index.d.ts +1 -0
- package/esm2020/app-initialize.mjs +5 -2
- package/esm2020/bundles.mjs +8 -3
- package/esm2020/components/bal-dropdown.mjs +61 -0
- package/esm2020/components/index.mjs +2 -1
- package/esm2020/generated/meta.mjs +4 -1
- package/esm2020/generated/proxies.mjs +64 -4
- package/fesm2015/baloise-ds-angular.mjs +240 -123
- package/fesm2015/baloise-ds-angular.mjs.map +1 -1
- package/fesm2020/baloise-ds-angular.mjs +243 -123
- package/fesm2020/baloise-ds-angular.mjs.map +1 -1
- package/generated/meta.d.ts +3 -0
- package/generated/proxies.d.ts +21 -1
- package/package.json +3 -3
package/generated/meta.d.ts
CHANGED
|
@@ -10,6 +10,9 @@ export declare const BalDateMethods: string[];
|
|
|
10
10
|
export declare const BalDatepickerInputs: string[];
|
|
11
11
|
export declare const BalDatepickerOutputs: string[];
|
|
12
12
|
export declare const BalDatepickerMethods: string[];
|
|
13
|
+
export declare const BalDropdownInputs: string[];
|
|
14
|
+
export declare const BalDropdownOutputs: string[];
|
|
15
|
+
export declare const BalDropdownMethods: string[];
|
|
13
16
|
export declare const BalFileUploadInputs: string[];
|
|
14
17
|
export declare const BalFileUploadOutputs: string[];
|
|
15
18
|
export declare const BalFileUploadMethods: string[];
|
package/generated/proxies.d.ts
CHANGED
|
@@ -687,6 +687,26 @@ export declare class BalNotification {
|
|
|
687
687
|
static ɵfac: i0.ɵɵFactoryDeclaration<BalNotification, never>;
|
|
688
688
|
static ɵcmp: i0.ɵɵComponentDeclaration<BalNotification, "bal-notification", never, { "color": "color"; }, {}, never, ["*"], true, never>;
|
|
689
689
|
}
|
|
690
|
+
export declare interface BalOption extends Components.BalOption {
|
|
691
|
+
}
|
|
692
|
+
export declare class BalOption {
|
|
693
|
+
protected z: NgZone;
|
|
694
|
+
/** Emitted when the option gets selected or unselected */
|
|
695
|
+
balOptionChange: EventEmitter<BalEvents.BalOptionCustomEvent<BalEvents.BalOptionChangeDetail>>;
|
|
696
|
+
protected el: HTMLElement;
|
|
697
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
698
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalOption, never>;
|
|
699
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalOption, "bal-option", never, { "disabled": "disabled"; "focused": "focused"; "hidden": "hidden"; "invalid": "invalid"; "label": "label"; "multiline": "multiline"; "selected": "selected"; "value": "value"; }, { "balOptionChange": "balOptionChange"; }, never, ["*"], true, never>;
|
|
700
|
+
}
|
|
701
|
+
export declare interface BalOptionList extends Components.BalOptionList {
|
|
702
|
+
}
|
|
703
|
+
export declare class BalOptionList {
|
|
704
|
+
protected z: NgZone;
|
|
705
|
+
protected el: HTMLElement;
|
|
706
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
707
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalOptionList, never>;
|
|
708
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalOptionList, "bal-option-list", never, { "contentHeight": "contentHeight"; "disabled": "disabled"; "filter": "filter"; "focusIndex": "focusIndex"; "labelledby": "labelledby"; "multiple": "multiple"; "required": "required"; }, {}, never, ["*"], true, never>;
|
|
709
|
+
}
|
|
690
710
|
export declare interface BalPagination extends Components.BalPagination {
|
|
691
711
|
}
|
|
692
712
|
export declare class BalPagination {
|
|
@@ -823,7 +843,7 @@ export declare class BalSpinner {
|
|
|
823
843
|
protected el: HTMLElement;
|
|
824
844
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
825
845
|
static ɵfac: i0.ɵɵFactoryDeclaration<BalSpinner, never>;
|
|
826
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BalSpinner, "bal-spinner", never, { "color": "color"; "deactivated": "deactivated"; "inverted": "inverted"; "small": "small"; }, {}, never, ["*"], true, never>;
|
|
846
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalSpinner, "bal-spinner", never, { "color": "color"; "deactivated": "deactivated"; "inverted": "inverted"; "small": "small"; "variation": "variation"; }, {}, never, ["*"], true, never>;
|
|
827
847
|
}
|
|
828
848
|
export declare interface BalStack extends Components.BalStack {
|
|
829
849
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baloise/ds-angular",
|
|
3
|
-
"version": "16.0
|
|
3
|
+
"version": "16.1.0",
|
|
4
4
|
"description": "The Baloise Design-System is an open source project for styling awesome web applications that follow the Baloise corporate styling guidelines.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"@angular/forms": ">=15.0.0"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@baloise/ds-core": "16.0
|
|
21
|
-
"@baloise/ds-angular-common": "16.0
|
|
20
|
+
"@baloise/ds-core": "16.1.0",
|
|
21
|
+
"@baloise/ds-angular-common": "16.1.0",
|
|
22
22
|
"tslib": "~2.3.0"
|
|
23
23
|
},
|
|
24
24
|
"sideEffects": false,
|