@datarailsshared/datarailsshared 1.5.406 → 1.5.412
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/assets/styles/colors.scss +1 -0
- package/datarailsshared-datarailsshared-1.5.412.tgz +0 -0
- package/esm2022/lib/dr-dropdown/dr-dropdown.component.mjs +18 -18
- package/esm2022/lib/dr-inputs/checkbox/checkbox.component.mjs +7 -19
- package/fesm2022/datarailsshared-datarailsshared.mjs +40 -49
- package/fesm2022/datarailsshared-datarailsshared.mjs.map +1 -1
- package/lib/dr-dropdown/dr-dropdown.component.d.ts +1 -1
- package/lib/dr-inputs/checkbox/checkbox.component.d.ts +2 -6
- package/package.json +1 -1
- package/datarailsshared-datarailsshared-1.5.406.tgz +0 -0
|
@@ -4,7 +4,6 @@ import { DropdownInstanceRef } from './dr-dropdown.service';
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class DrDropdownComponent implements DropdownInstanceRef {
|
|
6
6
|
private readonly cdr;
|
|
7
|
-
private readonly dataAnalyticsService;
|
|
8
7
|
private readonly popoverRef;
|
|
9
8
|
private readonly dropdownInstanceService;
|
|
10
9
|
private readonly destroy$;
|
|
@@ -30,6 +29,7 @@ export declare class DrDropdownComponent implements DropdownInstanceRef {
|
|
|
30
29
|
onMouseenter(): void;
|
|
31
30
|
onMouseleave(): void;
|
|
32
31
|
active(): boolean;
|
|
32
|
+
getDataAnalyticsTag(act: IDropdownItem<unknown>, index: number): string;
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrDropdownComponent, never>;
|
|
34
34
|
static ɵcmp: i0.ɵɵComponentDeclaration<DrDropdownComponent, "dr-dropdown", never, { "options": { "alias": "options"; "required": false; }; }, { "onAction": "action"; }, never, ["dr-dropdown-item"], false, never>;
|
|
35
35
|
}
|
|
@@ -1,25 +1,21 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import { DataAnalyticsService } from '../../utils/data-analytics.service';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class CheckboxComponent implements ControlValueAccessor, AfterViewInit {
|
|
6
5
|
private cdr;
|
|
7
|
-
private dataAnalyticsService;
|
|
8
6
|
tooltip: string;
|
|
9
7
|
checkedStatus: boolean;
|
|
10
8
|
disabled: boolean;
|
|
11
9
|
icon: 'cross' | '';
|
|
12
10
|
get indeterminate(): boolean;
|
|
13
11
|
textNowrap: boolean;
|
|
14
|
-
dataAnalytics: string;
|
|
15
|
-
dataAnalyticsDetails: any;
|
|
16
12
|
set indeterminate(value: boolean);
|
|
17
13
|
private _indeterminate;
|
|
18
14
|
checkedChange: EventEmitter<any>;
|
|
19
15
|
checkboxContent: ElementRef;
|
|
20
16
|
onChange: (value: boolean) => void;
|
|
21
17
|
onTouched: () => void;
|
|
22
|
-
constructor(cdr: ChangeDetectorRef
|
|
18
|
+
constructor(cdr: ChangeDetectorRef);
|
|
23
19
|
ngAfterViewInit(): void;
|
|
24
20
|
writeValue(value: boolean): void;
|
|
25
21
|
registerOnChange(fn: any): void;
|
|
@@ -27,5 +23,5 @@ export declare class CheckboxComponent implements ControlValueAccessor, AfterVie
|
|
|
27
23
|
setDisabledState?(isDisabled: boolean): void;
|
|
28
24
|
setValue(event: any): void;
|
|
29
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "dr-checkbox", never, { "checkedStatus": { "alias": "checkedStatus"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "textNowrap": { "alias": "textNowrap"; "required": false; };
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "dr-checkbox", never, { "checkedStatus": { "alias": "checkedStatus"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "textNowrap": { "alias": "textNowrap"; "required": false; }; }, { "checkedChange": "checkedChange"; }, never, ["*"], false, never>;
|
|
31
27
|
}
|
package/package.json
CHANGED
|
Binary file
|