@baloise/ds-angular 16.3.0-nightly.20240913 → 16.4.0-nightly.20240916
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-segment.d.ts +18 -0
- package/components/index.d.ts +1 -0
- package/esm2020/bundles.mjs +9 -3
- package/esm2020/components/bal-segment.mjs +55 -0
- package/esm2020/components/index.mjs +2 -1
- package/esm2020/generated/meta.mjs +4 -1
- package/esm2020/generated/proxies.mjs +47 -15
- package/fesm2015/baloise-ds-angular.mjs +208 -121
- package/fesm2015/baloise-ds-angular.mjs.map +1 -1
- package/fesm2020/baloise-ds-angular.mjs +208 -121
- package/fesm2020/baloise-ds-angular.mjs.map +1 -1
- package/generated/meta.d.ts +3 -0
- package/generated/proxies.d.ts +16 -5
- package/package.json +3 -3
package/generated/meta.d.ts
CHANGED
|
@@ -34,6 +34,9 @@ export declare const BalNumberInputMethods: string[];
|
|
|
34
34
|
export declare const BalRadioGroupInputs: string[];
|
|
35
35
|
export declare const BalRadioGroupOutputs: string[];
|
|
36
36
|
export declare const BalRadioGroupMethods: string[];
|
|
37
|
+
export declare const BalSegmentInputs: string[];
|
|
38
|
+
export declare const BalSegmentOutputs: string[];
|
|
39
|
+
export declare const BalSegmentMethods: string[];
|
|
37
40
|
export declare const BalSelectInputs: string[];
|
|
38
41
|
export declare const BalSelectOutputs: string[];
|
|
39
42
|
export declare const BalSelectMethods: string[];
|
package/generated/proxies.d.ts
CHANGED
|
@@ -415,7 +415,7 @@ export declare class BalLabel {
|
|
|
415
415
|
protected el: HTMLElement;
|
|
416
416
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
417
417
|
static ɵfac: i0.ɵɵFactoryDeclaration<BalLabel, never>;
|
|
418
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BalLabel, "bal-label", never, { "disabled": "disabled"; "htmlFor": "htmlFor"; "invalid": "invalid"; "multiline": "multiline"; "noWrap": "noWrap"; "readonly": "readonly"; "required": "required"; "size": "size"; "valid": "valid"; "weight": "weight"; }, {}, never, ["*"], true, never>;
|
|
418
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalLabel, "bal-label", never, { "disabled": "disabled"; "htmlFor": "htmlFor"; "htmlId": "htmlId"; "invalid": "invalid"; "multiline": "multiline"; "noWrap": "noWrap"; "readonly": "readonly"; "required": "required"; "size": "size"; "valid": "valid"; "weight": "weight"; }, {}, never, ["*"], true, never>;
|
|
419
419
|
}
|
|
420
420
|
export declare interface BalList extends Components.BalList {
|
|
421
421
|
}
|
|
@@ -607,7 +607,7 @@ export declare class BalNavMenuFlyout {
|
|
|
607
607
|
protected el: HTMLElement;
|
|
608
608
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
609
609
|
static ɵfac: i0.ɵɵFactoryDeclaration<BalNavMenuFlyout, never>;
|
|
610
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BalNavMenuFlyout, "bal-nav-menu-flyout", never, {}, {}, never, ["*"], true, never>;
|
|
610
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalNavMenuFlyout, "bal-nav-menu-flyout", never, { "navId": "navId"; }, {}, never, ["*"], true, never>;
|
|
611
611
|
}
|
|
612
612
|
export declare interface BalNavMetaBar extends Components.BalNavMetaBar {
|
|
613
613
|
}
|
|
@@ -764,7 +764,7 @@ export declare class BalProgressBar {
|
|
|
764
764
|
protected el: HTMLElement;
|
|
765
765
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
766
766
|
static ɵfac: i0.ɵɵFactoryDeclaration<BalProgressBar, never>;
|
|
767
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BalProgressBar, "bal-progress-bar", never, { "background": "background"; "value": "value"; }, {}, never, ["*"], true, never>;
|
|
767
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalProgressBar, "bal-progress-bar", never, { "background": "background"; "color": "color"; "value": "value"; }, {}, never, ["*"], true, never>;
|
|
768
768
|
}
|
|
769
769
|
export declare interface BalRadio extends Components.BalRadio {
|
|
770
770
|
}
|
|
@@ -796,6 +796,17 @@ export declare class BalRadioButton {
|
|
|
796
796
|
static ɵfac: i0.ɵɵFactoryDeclaration<BalRadioButton, never>;
|
|
797
797
|
static ɵcmp: i0.ɵɵComponentDeclaration<BalRadioButton, "bal-radio-button", never, { "color": "color"; "disabled": "disabled"; "invalid": "invalid"; "readonly": "readonly"; }, { "balFocus": "balFocus"; "balBlur": "balBlur"; "balFormControlDidLoad": "balFormControlDidLoad"; }, never, ["*"], true, never>;
|
|
798
798
|
}
|
|
799
|
+
export declare interface BalSegmentItem extends Components.BalSegmentItem {
|
|
800
|
+
}
|
|
801
|
+
export declare class BalSegmentItem {
|
|
802
|
+
protected z: NgZone;
|
|
803
|
+
/** Emitted when the component was touched */
|
|
804
|
+
balBlur: EventEmitter<BalEvents.BalSegmentItemCustomEvent<FocusEvent>>;
|
|
805
|
+
protected el: HTMLElement;
|
|
806
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
807
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalSegmentItem, never>;
|
|
808
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalSegmentItem, "bal-segment-item", never, { "disabled": "disabled"; "invalid": "invalid"; "label": "label"; "value": "value"; }, { "balBlur": "balBlur"; }, never, ["*"], true, never>;
|
|
809
|
+
}
|
|
799
810
|
export declare interface BalSelectOption extends Components.BalSelectOption {
|
|
800
811
|
}
|
|
801
812
|
export declare class BalSelectOption {
|
|
@@ -928,7 +939,7 @@ export declare class BalSteps {
|
|
|
928
939
|
protected el: HTMLElement;
|
|
929
940
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
930
941
|
static ɵfac: i0.ɵɵFactoryDeclaration<BalSteps, never>;
|
|
931
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BalSteps, "bal-steps", never, { "clickable": "clickable"; "debounce": "debounce"; "options": "options"; "value": "value"; }, { "balChange": "balChange"; }, never, ["*"], true, never>;
|
|
942
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalSteps, "bal-steps", never, { "clickable": "clickable"; "color": "color"; "debounce": "debounce"; "options": "options"; "value": "value"; }, { "balChange": "balChange"; }, never, ["*"], true, never>;
|
|
932
943
|
}
|
|
933
944
|
export declare interface BalTabItem extends Components.BalTabItem {
|
|
934
945
|
}
|
|
@@ -939,7 +950,7 @@ export declare class BalTabItem {
|
|
|
939
950
|
protected el: HTMLElement;
|
|
940
951
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
941
952
|
static ɵfac: i0.ɵɵFactoryDeclaration<BalTabItem, never>;
|
|
942
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BalTabItem, "bal-tab-item", never, { "active": "active"; "bubble": "bubble"; "disabled": "disabled"; "href": "href"; "icon": "icon"; "invisible": "invisible"; "label": "label"; "prevent": "prevent"; "target": "target"; "value": "value"; }, { "balNavigate": "balNavigate"; }, never, ["*"], true, never>;
|
|
953
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalTabItem, "bal-tab-item", never, { "active": "active"; "aria": "aria"; "bubble": "bubble"; "disabled": "disabled"; "href": "href"; "icon": "icon"; "invisible": "invisible"; "label": "label"; "noPanel": "noPanel"; "prevent": "prevent"; "target": "target"; "value": "value"; }, { "balNavigate": "balNavigate"; }, never, ["*"], true, never>;
|
|
943
954
|
}
|
|
944
955
|
export declare interface BalTable extends Components.BalTable {
|
|
945
956
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baloise/ds-angular",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.4.0-nightly.20240916",
|
|
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.
|
|
21
|
-
"@baloise/ds-angular-common": "16.
|
|
20
|
+
"@baloise/ds-core": "16.4.0-nightly.20240916",
|
|
21
|
+
"@baloise/ds-angular-common": "16.4.0-nightly.20240916",
|
|
22
22
|
"tslib": "~2.3.0"
|
|
23
23
|
},
|
|
24
24
|
"sideEffects": false,
|