@agorapulse/ui-components 13.0.3 → 13.1.2

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.
Files changed (29) hide show
  1. package/agorapulse-ui-components-13.1.2.tgz +0 -0
  2. package/esm2020/index.mjs +1 -3
  3. package/esm2020/src/lib/agorapulse-ui-components.module.mjs +2 -19
  4. package/esm2020/src/lib/avatar/avatar.component.mjs +22 -3
  5. package/esm2020/src/lib/datepicker/datepicker.component.mjs +1 -1
  6. package/esm2020/src/lib/dots-stepper/dots-stepper.component.mjs +2 -2
  7. package/esm2020/src/lib/image-carousel/image-carousel.component.mjs +2 -2
  8. package/esm2020/src/lib/tags/tag-list.component.mjs +24 -5
  9. package/esm2020/src/lib/tags/tag.component.mjs +17 -5
  10. package/esm2020/src/lib/tags-selector/tags-selector.component.mjs +3 -3
  11. package/esm2020/src/lib/tooltip-neo/tooltip-neo.service.mjs +2 -2
  12. package/fesm2015/agorapulse-ui-components.mjs +468 -952
  13. package/fesm2015/agorapulse-ui-components.mjs.map +1 -1
  14. package/fesm2020/agorapulse-ui-components.mjs +469 -949
  15. package/fesm2020/agorapulse-ui-components.mjs.map +1 -1
  16. package/index.d.ts +0 -3
  17. package/package.json +7 -8
  18. package/src/lib/agorapulse-ui-components.module.d.ts +67 -70
  19. package/src/lib/avatar/avatar.component.d.ts +5 -1
  20. package/src/lib/tags/tag-list.component.d.ts +7 -1
  21. package/src/lib/tags/tag.component.d.ts +6 -1
  22. package/src/lib/tooltip-neo/tooltip-neo.service.d.ts +1 -1
  23. package/agorapulse-ui-components-13.0.3.tgz +0 -0
  24. package/esm2020/src/lib/edit-tag-modal/edit-tags-modal.component.mjs +0 -147
  25. package/esm2020/src/lib/edit-tag-modal/model/edit-tags-modal.model.mjs +0 -2
  26. package/esm2020/src/lib/neo-timepicker/neo-timepicker.component.mjs +0 -388
  27. package/src/lib/edit-tag-modal/edit-tags-modal.component.d.ts +0 -32
  28. package/src/lib/edit-tag-modal/model/edit-tags-modal.model.d.ts +0 -21
  29. package/src/lib/neo-timepicker/neo-timepicker.component.d.ts +0 -132
@@ -1,132 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit } from "@angular/core";
2
- import IMask from "imask";
3
- import { Observable, Subject } from "rxjs";
4
- import { Time, TimeFormat } from "../timepicker/timepicker.component";
5
- import * as i0 from "@angular/core";
6
- export interface TimePickerTranslatedStrings {
7
- hourLabel: string;
8
- minuteLabel: string;
9
- meridianLabel: string;
10
- doneLabel: string;
11
- cancelLabel: string;
12
- }
13
- export declare class NeoTimepickerComponent implements OnInit, OnChanges {
14
- changeDetectorRef: ChangeDetectorRef;
15
- inputBox: ElementRef;
16
- hourOptions: ElementRef;
17
- minutesOptions: ElementRef;
18
- meridiansOptions: ElementRef;
19
- timepicker: ElementRef;
20
- i18n: TimePickerTranslatedStrings;
21
- disabled: boolean;
22
- format: TimeFormat;
23
- invalid: boolean;
24
- invalidationMessage: string;
25
- placement: 'top' | 'bottom';
26
- timeModel: string;
27
- timeModelChange: EventEmitter<Time>;
28
- readonly meridians: string[];
29
- readonly imaskDefault: {
30
- mask: string;
31
- blocks: {
32
- HH: {
33
- mask: typeof IMask.MaskedRange;
34
- from: number;
35
- to: number;
36
- autofix: string;
37
- };
38
- MM: {
39
- mask: typeof IMask.MaskedRange;
40
- from: number;
41
- to: number;
42
- autofix: string;
43
- };
44
- };
45
- };
46
- readonly imaskMeridian: {
47
- mask: string;
48
- blocks: {
49
- HH: {
50
- mask: typeof IMask.MaskedRange;
51
- from: number;
52
- to: number;
53
- autofix: string;
54
- };
55
- MM: {
56
- mask: typeof IMask.MaskedRange;
57
- from: number;
58
- to: number;
59
- autofix: string;
60
- };
61
- AMPM: {
62
- mask: typeof IMask.MaskedEnum;
63
- enum: string[];
64
- };
65
- };
66
- lazy: boolean;
67
- prepare: (str: any) => any;
68
- };
69
- readonly ENTER_KEY: string;
70
- readonly ESCAPE_KEY: string;
71
- readonly FIX_NUMBER: number;
72
- readonly HOURS_MAX: number;
73
- readonly HOURS_MERIDIAN_MAX: number;
74
- readonly MARGIN: number;
75
- readonly MINUTES_MAX: number;
76
- readonly TIME_OPTION_HEIGHT: number;
77
- readonly TIME_PICKER_DEFAULT_WIDTH: number;
78
- readonly TIME_PICKER_MERIDIAN_WIDTH: number;
79
- readonly ROW_HEIGHT: number;
80
- destroy$: Subject<void>;
81
- hours: string[];
82
- hoursScrollObserver$: Observable<number>;
83
- meridiansScrollObserver$: Observable<number>;
84
- minutesScrollObserver$: Observable<number>;
85
- minutes: string[];
86
- position: {
87
- top: number;
88
- left: number;
89
- };
90
- previousValue: string;
91
- selectedHour: string;
92
- selectedMinute: string;
93
- selectedMeridian: string;
94
- timepickerClosed: boolean;
95
- timepickerOpened: boolean;
96
- TimeFormat: typeof TimeFormat;
97
- timeFormat: string;
98
- onKeypress(event: KeyboardEvent): void;
99
- constructor(changeDetectorRef: ChangeDetectorRef);
100
- ngOnInit(): void;
101
- ngOnChanges(changes: any): void;
102
- onOpenTimepicker(): void;
103
- onTimepickerOpened(): void;
104
- onObserveElementScroll(element: HTMLElement): Observable<number>;
105
- onTimePickerClosed(): void;
106
- onTimeModelChange(): void;
107
- onSelectHour(hour: string): void;
108
- onSelectMinute(minute: string): void;
109
- onSelectMeridian(meridian: string): void;
110
- onSaveSelection(): void;
111
- onCancelSelection(): void;
112
- onMaskValidateComplete(value: any): void;
113
- updateTimeModel(hour: string, minute: string, meridian?: string): void;
114
- private updateElementPosition;
115
- private scrollToElement;
116
- /**
117
- * Fullfill minutes and hours arrays like [0, 1, 2 ... 12] and [0, 1, 2, ... 59]
118
- */
119
- private generateTimeSlots;
120
- private updateTimePickerPosition;
121
- private static convert12To24;
122
- private static convert24To12;
123
- /**
124
- * Return 08 for 8, 06 for 6
125
- * @param num
126
- * @param fix
127
- * @private
128
- */
129
- private static toFixed;
130
- static ɵfac: i0.ɵɵFactoryDeclaration<NeoTimepickerComponent, never>;
131
- static ɵcmp: i0.ɵɵComponentDeclaration<NeoTimepickerComponent, "ap-neo-timepicker", never, { "i18n": "i18n"; "disabled": "disabled"; "format": "format"; "invalid": "invalid"; "invalidationMessage": "invalidationMessage"; "placement": "placement"; "timeModel": "timeModel"; }, { "timeModelChange": "timeModelChange"; }, never, never>;
132
- }