@datarailsshared/datarailsshared 1.5.263 → 1.5.264
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/datarailsshared-datarailsshared-1.5.264.tgz +0 -0
- package/esm2022/lib/dr-inputs/checkbox/checkbox.component.mjs +18 -5
- package/fesm2022/datarailsshared-datarailsshared.mjs +15 -3
- package/fesm2022/datarailsshared-datarailsshared.mjs.map +1 -1
- package/lib/dr-inputs/checkbox/checkbox.component.d.ts +5 -2
- package/package.json +1 -1
- package/datarailsshared-datarailsshared-1.5.263.tgz +0 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CheckboxComponent implements ControlValueAccessor {
|
|
4
|
+
export declare class CheckboxComponent implements ControlValueAccessor, AfterViewInit {
|
|
5
5
|
private cdr;
|
|
6
|
+
tooltip: string;
|
|
6
7
|
checkedStatus: boolean;
|
|
7
8
|
disabled: boolean;
|
|
8
9
|
icon: 'cross' | '';
|
|
@@ -11,9 +12,11 @@ export declare class CheckboxComponent implements ControlValueAccessor {
|
|
|
11
12
|
set indeterminate(value: boolean);
|
|
12
13
|
private _indeterminate;
|
|
13
14
|
checkedChange: EventEmitter<any>;
|
|
15
|
+
checkboxContent: ElementRef;
|
|
14
16
|
onChange: (value: boolean) => void;
|
|
15
17
|
onTouched: () => void;
|
|
16
18
|
constructor(cdr: ChangeDetectorRef);
|
|
19
|
+
ngAfterViewInit(): void;
|
|
17
20
|
writeValue(value: boolean): void;
|
|
18
21
|
registerOnChange(fn: any): void;
|
|
19
22
|
registerOnTouched(fn: any): void;
|
package/package.json
CHANGED
|
Binary file
|