@open-rlb/ng-bootstrap 2.3.2 → 2.3.4
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/index.d.ts
CHANGED
|
@@ -1375,7 +1375,7 @@ declare class PopoverDirective implements DoCheck, AfterViewInit {
|
|
|
1375
1375
|
static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverDirective, "[popover]", never, { "popover": { "alias": "popover"; "required": true; }; "placement": { "alias": "popover-placement"; "required": false; }; "customClass": { "alias": "popover-class"; "required": false; }; "title": { "alias": "popover-title"; "required": false; }; }, {}, never, never, false, never>;
|
|
1376
1376
|
}
|
|
1377
1377
|
|
|
1378
|
-
declare class TooltipDirective implements OnInit, OnChanges {
|
|
1378
|
+
declare class TooltipDirective implements OnInit, OnChanges, OnDestroy {
|
|
1379
1379
|
private elementRef;
|
|
1380
1380
|
private renderer;
|
|
1381
1381
|
static bsInit: boolean;
|
|
@@ -1385,6 +1385,7 @@ declare class TooltipDirective implements OnInit, OnChanges {
|
|
|
1385
1385
|
customClass: string;
|
|
1386
1386
|
html?: boolean;
|
|
1387
1387
|
constructor(elementRef: ElementRef, renderer: Renderer2);
|
|
1388
|
+
ngOnDestroy(): void;
|
|
1388
1389
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1389
1390
|
ngOnInit(): void;
|
|
1390
1391
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, never>;
|
|
@@ -2026,16 +2027,18 @@ declare class SelectComponent extends AbstractComponent<string | string[]> imple
|
|
|
2026
2027
|
static ngAcceptInputType_enableValidation: unknown;
|
|
2027
2028
|
}
|
|
2028
2029
|
|
|
2029
|
-
declare class SwitchComponent extends AbstractComponent<boolean> implements ControlValueAccessor {
|
|
2030
|
+
declare class SwitchComponent extends AbstractComponent<boolean> implements ControlValueAccessor, AfterViewInit {
|
|
2030
2031
|
control?: NgControl | undefined;
|
|
2031
2032
|
disabled?: boolean;
|
|
2032
2033
|
readonly?: boolean;
|
|
2033
2034
|
size?: 'small' | 'large';
|
|
2034
2035
|
userDefinedId: string;
|
|
2035
2036
|
el: ElementRef<HTMLInputElement>;
|
|
2037
|
+
private data;
|
|
2036
2038
|
constructor(idService: UniqueIdService, control?: NgControl | undefined);
|
|
2037
2039
|
update(ev: EventTarget | null): void;
|
|
2038
2040
|
onWrite(data: boolean): void;
|
|
2041
|
+
ngAfterViewInit(): void;
|
|
2039
2042
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchComponent, [null, { optional: true; self: true; }]>;
|
|
2040
2043
|
static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "rlb-switch", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "size": { "alias": "size"; "required": false; }; "userDefinedId": { "alias": "id"; "required": false; }; }, {}, never, ["[before]", "[after]"], false, never>;
|
|
2041
2044
|
static ngAcceptInputType_disabled: unknown;
|