@agorapulse/ui-components 14.0.1 → 14.0.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/agorapulse-ui-components-14.0.4.tgz +0 -0
- package/esm2020/src/lib/agorapulse-ui-components.module.mjs +1 -1
- package/esm2020/src/lib/confirm-modal/confirm-modal.component.mjs +1 -1
- package/esm2020/src/lib/datepicker/datepicker.component.mjs +4 -4
- package/esm2020/src/lib/directives/autosize-textarea.directive.mjs +1 -1
- package/esm2020/src/lib/directives/ellipsis.directive.mjs +1 -1
- package/esm2020/src/lib/dots-stepper/dots-stepper.component.mjs +1 -1
- package/esm2020/src/lib/labels/label-list.component.mjs +2 -2
- package/esm2020/src/lib/labels/label.component.mjs +1 -1
- package/esm2020/src/lib/labels-selector/labels-selector.component.mjs +1 -1
- package/esm2020/src/lib/password-input/password-input.component.mjs +3 -3
- package/esm2020/src/lib/popmenu/popmenu.directive.mjs +1 -1
- package/esm2020/src/lib/slide-toggle/slide-toggle.component.mjs +2 -2
- package/esm2020/src/lib/tooltip-neo/tooltip-neo.component.mjs +9 -17
- package/fesm2015/agorapulse-ui-components.mjs +15 -24
- package/fesm2015/agorapulse-ui-components.mjs.map +1 -1
- package/fesm2020/agorapulse-ui-components.mjs +15 -23
- package/fesm2020/agorapulse-ui-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/datepicker/datepicker.component.d.ts +1 -1
- package/src/lib/password-input/password-input.component.d.ts +2 -2
- package/src/lib/tooltip-neo/tooltip-neo.component.d.ts +1 -1
- package/agorapulse-ui-components-14.0.1.tgz +0 -0
package/package.json
CHANGED
|
@@ -55,7 +55,7 @@ export declare class DatepickerComponent implements OnInit, OnChanges, AfterView
|
|
|
55
55
|
ngAfterViewInit(): void;
|
|
56
56
|
initDatePickerLocale(): void;
|
|
57
57
|
initRanges(): void;
|
|
58
|
-
isCustomDate: (date: any) =>
|
|
58
|
+
isCustomDate: (date: any) => string[];
|
|
59
59
|
private isSelected;
|
|
60
60
|
onStartDateChanged(event: any): void;
|
|
61
61
|
onDatesUpdated(event: any): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor,
|
|
2
|
+
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
|
3
3
|
import { Subscription } from 'rxjs';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare const PASSWORD_CONTROL_VALUE_ACCESSOR: any;
|
|
@@ -11,7 +11,7 @@ export declare class PasswordInputComponent implements OnInit, ControlValueAcces
|
|
|
11
11
|
fullWidth: boolean;
|
|
12
12
|
disabled: boolean;
|
|
13
13
|
passwordInput: ElementRef;
|
|
14
|
-
controler:
|
|
14
|
+
controler: FormControl;
|
|
15
15
|
changes: Subscription;
|
|
16
16
|
/**
|
|
17
17
|
* Change between visible and hidden password
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ElementRef, OnInit, TemplateRef } from
|
|
1
|
+
import { ElementRef, OnInit, TemplateRef } from '@angular/core';
|
|
2
2
|
import { TooltipNeoParams } from './tooltip-neo.model';
|
|
3
3
|
import { TooltipNeoService } from './tooltip-neo.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
Binary file
|