suis 3.0.0 → 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/esm2022/lib/components/suis-input-checkbox/suis-input-checkbox.component.mjs +3 -3
- package/esm2022/lib/components/suis-toggle/suis-toggle.component.mjs +3 -3
- package/esm2022/lib/shared/classes/suis-checkbox.base.mjs +6 -13
- package/fesm2022/suis.mjs +8 -15
- package/fesm2022/suis.mjs.map +1 -1
- package/lib/shared/classes/suis-checkbox.base.d.ts +1 -5
- package/package.json +1 -1
@@ -1,16 +1,12 @@
|
|
1
|
-
import { AfterViewInit, ElementRef } from '@angular/core';
|
2
1
|
import { SuisInputBase } from './suis-input.base';
|
3
2
|
import * as i0 from "@angular/core";
|
4
|
-
export declare abstract class SuisCheckboxBase extends SuisInputBase
|
5
|
-
/** @internal */
|
6
|
-
checkboxInput?: ElementRef;
|
3
|
+
export declare abstract class SuisCheckboxBase extends SuisInputBase {
|
7
4
|
/** @internal */
|
8
5
|
value: boolean;
|
9
6
|
/**
|
10
7
|
* Adds a red colored asterisk after the label. By default set to false.
|
11
8
|
*/
|
12
9
|
required: boolean;
|
13
|
-
ngAfterViewInit(): void;
|
14
10
|
writeValue(obj: boolean): void;
|
15
11
|
onChange(event: Event): void;
|
16
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisCheckboxBase, never>;
|