@datarailsshared/datarailsshared 1.6.83 → 1.6.87
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.6.87.tgz +0 -0
- package/esm2022/lib/dr-inputs/dr-select/dr-select.component.mjs +5 -1
- package/esm2022/lib/dr-tooltip/components/tooltip-default/tooltip-default.component.mjs +2 -2
- package/esm2022/lib/dr-tooltip/dr-tooltip.component.mjs +10 -4
- package/fesm2022/datarailsshared-datarailsshared.mjs +13 -3
- package/fesm2022/datarailsshared-datarailsshared.mjs.map +1 -1
- package/lib/dr-inputs/dr-select/dr-select.component.d.ts +3 -2
- package/lib/dr-tooltip/components/tooltip-default/tooltip-default.component.d.ts +0 -1
- package/lib/dr-tooltip/dr-tooltip.component.d.ts +1 -1
- package/package.json +1 -1
- package/datarailsshared-datarailsshared-1.6.83.tgz +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, Renderer2, TemplateRef } from '@angular/core';
|
|
1
|
+
import { ElementRef, EventEmitter, OnDestroy, Renderer2, TemplateRef } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class DrSelectComponent implements ControlValueAccessor {
|
|
4
|
+
export declare class DrSelectComponent implements ControlValueAccessor, OnDestroy {
|
|
5
5
|
private elementRef;
|
|
6
6
|
private renderer;
|
|
7
7
|
type: 'select' | 'search-input';
|
|
@@ -65,6 +65,7 @@ export declare class DrSelectComponent implements ControlValueAccessor {
|
|
|
65
65
|
removeBackdrop(): void;
|
|
66
66
|
private getHostElement;
|
|
67
67
|
private hasHostAttributes;
|
|
68
|
+
ngOnDestroy(): void;
|
|
68
69
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrSelectComponent, never>;
|
|
69
70
|
static ɵcmp: i0.ɵɵComponentDeclaration<DrSelectComponent, "dr-select", never, { "type": { "alias": "type"; "required": false; }; "clearInputTextAfterSelection": { "alias": "clearInputTextAfterSelection"; "required": false; }; "className": { "alias": "className"; "required": false; }; "items": { "alias": "items"; "required": false; }; "addTag": { "alias": "addTag"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "isDisplayingSearchInHeader": { "alias": "isDisplayingSearchInHeader"; "required": false; }; "minItemsToDisplaySearchInHeader": { "alias": "minItemsToDisplaySearchInHeader"; "required": false; }; "searchFn": { "alias": "searchFn"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "multipleHeightIncreased": { "alias": "multipleHeightIncreased"; "required": false; }; "hideSelected": { "alias": "hideSelected"; "required": false; }; "maxSelectedItems": { "alias": "maxSelectedItems"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "groupBy": { "alias": "groupBy"; "required": false; }; "optionWithDescription": { "alias": "optionWithDescription"; "required": false; }; "id": { "alias": "id"; "required": false; }; "keyDownFn": { "alias": "keyDownFn"; "required": false; }; "selectedItem": { "alias": "selectedItem"; "required": false; }; "dropdownClass": { "alias": "dropdownClass"; "required": false; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; }; "textView": { "alias": "textView"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "noValuePadding": { "alias": "noValuePadding"; "required": false; }; "selectOnTabKeyPress": { "alias": "selectOnTabKeyPress"; "required": false; }; }, { "change": "change"; "open": "open"; "closeUp": "closeUp"; }, ["labelTemplate", "multiLabelTemplate", "optionTemplate", "optionHeaderTemplate", "optionFooterTemplate"], never, false, never>;
|
|
70
71
|
}
|
|
@@ -3,7 +3,6 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class TooltipDefaultComponent {
|
|
4
4
|
content: string;
|
|
5
5
|
theme: TooltipTheme;
|
|
6
|
-
constructor();
|
|
7
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDefaultComponent, never>;
|
|
8
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipDefaultComponent, "dr-tooltip-default", never, { "content": { "alias": "content"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
9
8
|
}
|
|
@@ -14,8 +14,8 @@ export declare class TooltipComponent implements OnInit {
|
|
|
14
14
|
class: string;
|
|
15
15
|
theme: TooltipTheme;
|
|
16
16
|
isContentTemplate: boolean;
|
|
17
|
+
readonly role = "tooltip";
|
|
17
18
|
isMouseOn$: BehaviorSubject<boolean>;
|
|
18
|
-
constructor();
|
|
19
19
|
ngOnInit(): void;
|
|
20
20
|
setMouseOn(): void;
|
|
21
21
|
unsetMouseOn(): void;
|
package/package.json
CHANGED
|
Binary file
|