@energycap/components 0.45.2-multi-select-component.20260303-1239 → 0.45.2-multi-select-component.20260304-0740
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/package.json
CHANGED
|
@@ -3401,6 +3401,10 @@ declare class CheckboxComponent extends FormControlBase implements AfterViewInit
|
|
|
3401
3401
|
* The name of the checkbox input element
|
|
3402
3402
|
*/
|
|
3403
3403
|
name: string;
|
|
3404
|
+
/**
|
|
3405
|
+
* Optional icon that can show to the left side of the label
|
|
3406
|
+
*/
|
|
3407
|
+
icon?: string;
|
|
3404
3408
|
/**
|
|
3405
3409
|
* An object with a collection of FormControls who can only have a value of true or false.
|
|
3406
3410
|
* A FormGroup or FormArray work fine, or a custom object reference is possible too
|
|
@@ -3449,7 +3453,7 @@ declare class CheckboxComponent extends FormControlBase implements AfterViewInit
|
|
|
3449
3453
|
*/
|
|
3450
3454
|
private updateMasterState;
|
|
3451
3455
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
3452
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ec-checkbox", never, { "name": { "alias": "name"; "required": false; }; "dependentCheckboxesGroup": { "alias": "dependentCheckboxesGroup"; "required": false; }; "ignoreDisabledDependents": { "alias": "ignoreDisabledDependents"; "required": false; }; }, {}, never, never, false, never>;
|
|
3456
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ec-checkbox", never, { "name": { "alias": "name"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "dependentCheckboxesGroup": { "alias": "dependentCheckboxesGroup"; "required": false; }; "ignoreDisabledDependents": { "alias": "ignoreDisabledDependents"; "required": false; }; }, {}, never, never, false, never>;
|
|
3453
3457
|
}
|
|
3454
3458
|
|
|
3455
3459
|
/**
|