@agorapulse/ui-components 16.0.7 → 16.1.0-beta

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 (92) hide show
  1. package/agorapulse-ui-components-16.1.0-beta.tgz +0 -0
  2. package/avatar/avatar.component.d.ts +1 -1
  3. package/badge/badge.component.d.ts +7 -0
  4. package/badge/index.d.ts +5 -0
  5. package/badge/public_api.d.ts +1 -0
  6. package/counter/counter.component.d.ts +17 -0
  7. package/counter/index.d.ts +5 -0
  8. package/counter/public_api.d.ts +1 -0
  9. package/esm2022/avatar/avatar.component.mjs +11 -9
  10. package/esm2022/badge/agorapulse-ui-components-badge.mjs +5 -0
  11. package/esm2022/badge/badge.component.mjs +17 -0
  12. package/esm2022/badge/public_api.mjs +2 -0
  13. package/esm2022/checkbox/checkbox.component.mjs +3 -3
  14. package/esm2022/counter/agorapulse-ui-components-counter.mjs +5 -0
  15. package/esm2022/counter/counter.component.mjs +59 -0
  16. package/esm2022/counter/public_api.mjs +2 -0
  17. package/esm2022/index.mjs +9 -1
  18. package/esm2022/input/agorapulse-ui-components-input.mjs +5 -0
  19. package/esm2022/input/input.component.mjs +162 -0
  20. package/esm2022/input/public_api.mjs +2 -0
  21. package/esm2022/labels/label-list.component.mjs +4 -4
  22. package/esm2022/labels/label.component.mjs +18 -25
  23. package/esm2022/labels-selector/labels-selector.component.mjs +2 -2
  24. package/esm2022/select/agorapulse-ui-components-select.mjs +5 -0
  25. package/esm2022/select/public_api.mjs +2 -0
  26. package/esm2022/select/select.component.mjs +347 -0
  27. package/esm2022/snackbars-thread/service/snackbars-thread.service.mjs +5 -3
  28. package/esm2022/status/agorapulse-ui-components-status.mjs +5 -0
  29. package/esm2022/status/public_api.mjs +2 -0
  30. package/esm2022/status/status.component.mjs +22 -0
  31. package/esm2022/status-card/agorapulse-ui-components-status-card.mjs +5 -0
  32. package/esm2022/status-card/public_api.mjs +2 -0
  33. package/esm2022/status-card/status-card.component.mjs +25 -0
  34. package/esm2022/tag/agorapulse-ui-components-tag.mjs +5 -0
  35. package/esm2022/tag/public_api.mjs +2 -0
  36. package/esm2022/tag/tag.component.mjs +33 -0
  37. package/esm2022/textarea/agorapulse-ui-components-textarea.mjs +5 -0
  38. package/esm2022/textarea/public_api.mjs +2 -0
  39. package/esm2022/textarea/textarea.component.mjs +152 -0
  40. package/fesm2022/agorapulse-ui-components-avatar.mjs +8 -6
  41. package/fesm2022/agorapulse-ui-components-avatar.mjs.map +1 -1
  42. package/fesm2022/agorapulse-ui-components-badge.mjs +24 -0
  43. package/fesm2022/agorapulse-ui-components-badge.mjs.map +1 -0
  44. package/fesm2022/agorapulse-ui-components-checkbox.mjs +2 -2
  45. package/fesm2022/agorapulse-ui-components-checkbox.mjs.map +1 -1
  46. package/fesm2022/agorapulse-ui-components-counter.mjs +66 -0
  47. package/fesm2022/agorapulse-ui-components-counter.mjs.map +1 -0
  48. package/fesm2022/agorapulse-ui-components-input.mjs +169 -0
  49. package/fesm2022/agorapulse-ui-components-input.mjs.map +1 -0
  50. package/fesm2022/agorapulse-ui-components-labels-selector.mjs +1 -1
  51. package/fesm2022/agorapulse-ui-components-labels-selector.mjs.map +1 -1
  52. package/fesm2022/agorapulse-ui-components-labels.mjs +22 -30
  53. package/fesm2022/agorapulse-ui-components-labels.mjs.map +1 -1
  54. package/fesm2022/agorapulse-ui-components-select.mjs +354 -0
  55. package/fesm2022/agorapulse-ui-components-select.mjs.map +1 -0
  56. package/fesm2022/agorapulse-ui-components-snackbars-thread.mjs +4 -2
  57. package/fesm2022/agorapulse-ui-components-snackbars-thread.mjs.map +1 -1
  58. package/fesm2022/agorapulse-ui-components-status-card.mjs +32 -0
  59. package/fesm2022/agorapulse-ui-components-status-card.mjs.map +1 -0
  60. package/fesm2022/agorapulse-ui-components-status.mjs +29 -0
  61. package/fesm2022/agorapulse-ui-components-status.mjs.map +1 -0
  62. package/fesm2022/agorapulse-ui-components-tag.mjs +40 -0
  63. package/fesm2022/agorapulse-ui-components-tag.mjs.map +1 -0
  64. package/fesm2022/agorapulse-ui-components-textarea.mjs +159 -0
  65. package/fesm2022/agorapulse-ui-components-textarea.mjs.map +1 -0
  66. package/fesm2022/agorapulse-ui-components.mjs +8 -0
  67. package/fesm2022/agorapulse-ui-components.mjs.map +1 -1
  68. package/index.d.ts +8 -0
  69. package/input/index.d.ts +5 -0
  70. package/input/input.component.d.ts +56 -0
  71. package/input/public_api.d.ts +1 -0
  72. package/labels/label-list.component.d.ts +3 -1
  73. package/labels/label.component.d.ts +11 -9
  74. package/package.json +55 -7
  75. package/select/index.d.ts +5 -0
  76. package/select/public_api.d.ts +1 -0
  77. package/select/select.component.d.ts +96 -0
  78. package/snackbars-thread/component/snackbars-thread.component.d.ts +1 -1
  79. package/snackbars-thread/service/snackbars-thread.service.d.ts +1 -1
  80. package/status/index.d.ts +5 -0
  81. package/status/public_api.d.ts +1 -0
  82. package/status/status.component.d.ts +9 -0
  83. package/status-card/index.d.ts +5 -0
  84. package/status-card/public_api.d.ts +1 -0
  85. package/status-card/status-card.component.d.ts +13 -0
  86. package/tag/index.d.ts +5 -0
  87. package/tag/public_api.d.ts +1 -0
  88. package/tag/tag.component.d.ts +17 -0
  89. package/textarea/index.d.ts +5 -0
  90. package/textarea/public_api.d.ts +1 -0
  91. package/textarea/textarea.component.d.ts +50 -0
  92. package/agorapulse-ui-components-16.0.7.tgz +0 -0
@@ -0,0 +1,56 @@
1
+ import { SymbolComponent, SymbolRegistry } from '@agorapulse/ui-symbol';
2
+ import { AfterContentInit, AfterViewInit, ElementRef, OnInit, QueryList, WritableSignal } from '@angular/core';
3
+ import { ControlValueAccessor, FormControl } from '@angular/forms';
4
+ import * as i0 from "@angular/core";
5
+ type InputType = 'button' | 'checkbox' | 'color' | 'datetime' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'radio' | 'range' | 'reset' | 'search' | 'submit' | 'text' | 'tel' | 'time' | 'url' | 'week';
6
+ export declare const AP_INPUT_CONTROL_VALUE_ACCESSOR: {
7
+ provide: import("@angular/core").InjectionToken<readonly ControlValueAccessor[]>;
8
+ useExisting: import("@angular/core").Type<any>;
9
+ multi: boolean;
10
+ };
11
+ export declare class InputComponent implements OnInit, AfterViewInit, AfterContentInit, ControlValueAccessor {
12
+ readonly elementRef: ElementRef;
13
+ readonly symbolRegistry: SymbolRegistry;
14
+ symbols: QueryList<SymbolComponent>;
15
+ symbolWrapper: ElementRef;
16
+ inputElement: ElementRef;
17
+ ariaLabel: string;
18
+ ariaLabelledBy: string;
19
+ ariaDescribedBy: string;
20
+ disabled: boolean;
21
+ clearable: boolean;
22
+ inputType: InputType;
23
+ inputId?: string;
24
+ name: string;
25
+ label?: string;
26
+ description?: string;
27
+ prefix?: string;
28
+ suffix?: string;
29
+ required: boolean;
30
+ placeholder?: string;
31
+ errorMessage?: string;
32
+ successMessage?: string;
33
+ symbolPosition: 'left' | 'right';
34
+ private _controlValueAccessorChangeFn;
35
+ iconExists: WritableSignal<boolean>;
36
+ hostDataTest: WritableSignal<string | undefined>;
37
+ value: string | null;
38
+ onTouched: () => void;
39
+ ngOnInit(): void;
40
+ ngAfterViewInit(): void;
41
+ ngAfterContentInit(): void;
42
+ validate({ value }: FormControl): false | {
43
+ invalid: boolean;
44
+ };
45
+ onValueChange(): void;
46
+ writeValue(value: string | null): void;
47
+ registerOnChange(fn: (value: string | null) => void): void;
48
+ registerOnTouched(fn: () => void): void;
49
+ setDisabledState(isDisabled: boolean): void;
50
+ focusInput(): void;
51
+ onClear(): void;
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, never>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "ap-input", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "inputType": { "alias": "inputType"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "name": { "alias": "name"; "required": true; }; "label": { "alias": "label"; "required": false; }; "description": { "alias": "description"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; "required": { "alias": "required"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "successMessage": { "alias": "successMessage"; "required": false; }; "symbolPosition": { "alias": "symbolPosition"; "required": false; }; }, {}, ["symbols"], ["ap-symbol"], true, never>;
54
+ static ngAcceptInputType_required: unknown;
55
+ }
56
+ export {};
@@ -0,0 +1 @@
1
+ export * from './input.component';
@@ -22,7 +22,9 @@ export declare class LabelListComponent implements AfterContentInit, OnChanges,
22
22
  ngOnChanges(changes: SimpleChanges): void;
23
23
  ngOnDestroy(): void;
24
24
  onExpand(): void;
25
- onRemoveLabel(label: string): void;
25
+ onRemoveLabel({ content }: {
26
+ content: string;
27
+ }): void;
26
28
  onResize(): void;
27
29
  trackByLabelContent(_: number, entry: string): string;
28
30
  private generateResponsiveLabels;
@@ -1,22 +1,24 @@
1
- import { SymbolRegistry } from '@agorapulse/ui-symbol';
2
- import { AfterViewInit, ElementRef, EventEmitter, NgZone, OnDestroy } from '@angular/core';
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { EventEmitter, OnDestroy } from '@angular/core';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class LabelComponent implements AfterViewInit, OnDestroy {
5
5
  private elementRef;
6
+ private symbolRegistry;
6
7
  private zone;
7
- symbolRegistry: SymbolRegistry;
8
- color: string | 'blue' | 'red' | 'purple' | 'orange' | 'yellow' | 'green';
9
8
  content: string;
10
- onlyText: boolean;
11
9
  selectorWidth: number;
12
10
  removable: boolean;
13
- remove: EventEmitter<string>;
11
+ remove: EventEmitter<{
12
+ content: string;
13
+ $event: MouseEvent;
14
+ }>;
14
15
  private observer;
15
16
  tooltipEnabled: boolean;
16
- constructor(elementRef: ElementRef, zone: NgZone, symbolRegistry: SymbolRegistry);
17
+ constructor();
17
18
  ngAfterViewInit(): void;
18
19
  ngOnDestroy(): void;
19
- onRemoveLabel(): void;
20
+ onClearLabel($event: MouseEvent): void;
20
21
  static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "ap-label", never, { "color": { "alias": "color"; "required": false; }; "content": { "alias": "content"; "required": true; }; "onlyText": { "alias": "onlyText"; "required": false; }; "selectorWidth": { "alias": "selectorWidth"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; }, { "remove": "remove"; }, never, never, true, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "ap-label", never, { "content": { "alias": "content"; "required": true; }; "selectorWidth": { "alias": "selectorWidth"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; }, { "remove": "remove"; }, never, never, true, never>;
23
+ static ngAcceptInputType_removable: unknown;
22
24
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agorapulse/ui-components",
3
3
  "description": "Agorapulse UI Components Library",
4
- "version": "16.0.7",
4
+ "version": "16.1.0-beta",
5
5
  "author": "Benoit Hediard",
6
6
  "repository": {
7
7
  "type": "git",
@@ -49,18 +49,24 @@
49
49
  "esm": "./esm2022/avatar/agorapulse-ui-components-avatar.mjs",
50
50
  "default": "./fesm2022/agorapulse-ui-components-avatar.mjs"
51
51
  },
52
- "./button": {
53
- "types": "./button/index.d.ts",
54
- "esm2022": "./esm2022/button/agorapulse-ui-components-button.mjs",
55
- "esm": "./esm2022/button/agorapulse-ui-components-button.mjs",
56
- "default": "./fesm2022/agorapulse-ui-components-button.mjs"
57
- },
58
52
  "./checkbox": {
59
53
  "types": "./checkbox/index.d.ts",
60
54
  "esm2022": "./esm2022/checkbox/agorapulse-ui-components-checkbox.mjs",
61
55
  "esm": "./esm2022/checkbox/agorapulse-ui-components-checkbox.mjs",
62
56
  "default": "./fesm2022/agorapulse-ui-components-checkbox.mjs"
63
57
  },
58
+ "./badge": {
59
+ "types": "./badge/index.d.ts",
60
+ "esm2022": "./esm2022/badge/agorapulse-ui-components-badge.mjs",
61
+ "esm": "./esm2022/badge/agorapulse-ui-components-badge.mjs",
62
+ "default": "./fesm2022/agorapulse-ui-components-badge.mjs"
63
+ },
64
+ "./button": {
65
+ "types": "./button/index.d.ts",
66
+ "esm2022": "./esm2022/button/agorapulse-ui-components-button.mjs",
67
+ "esm": "./esm2022/button/agorapulse-ui-components-button.mjs",
68
+ "default": "./fesm2022/agorapulse-ui-components-button.mjs"
69
+ },
64
70
  "./confirm-modal": {
65
71
  "types": "./confirm-modal/index.d.ts",
66
72
  "esm2022": "./esm2022/confirm-modal/agorapulse-ui-components-confirm-modal.mjs",
@@ -73,6 +79,12 @@
73
79
  "esm": "./esm2022/datepicker/agorapulse-ui-components-datepicker.mjs",
74
80
  "default": "./fesm2022/agorapulse-ui-components-datepicker.mjs"
75
81
  },
82
+ "./counter": {
83
+ "types": "./counter/index.d.ts",
84
+ "esm2022": "./esm2022/counter/agorapulse-ui-components-counter.mjs",
85
+ "esm": "./esm2022/counter/agorapulse-ui-components-counter.mjs",
86
+ "default": "./fesm2022/agorapulse-ui-components-counter.mjs"
87
+ },
76
88
  "./directives": {
77
89
  "types": "./directives/index.d.ts",
78
90
  "esm2022": "./esm2022/directives/agorapulse-ui-components-directives.mjs",
@@ -91,6 +103,12 @@
91
103
  "esm": "./esm2022/icon-button/agorapulse-ui-components-icon-button.mjs",
92
104
  "default": "./fesm2022/agorapulse-ui-components-icon-button.mjs"
93
105
  },
106
+ "./input": {
107
+ "types": "./input/index.d.ts",
108
+ "esm2022": "./esm2022/input/agorapulse-ui-components-input.mjs",
109
+ "esm": "./esm2022/input/agorapulse-ui-components-input.mjs",
110
+ "default": "./fesm2022/agorapulse-ui-components-input.mjs"
111
+ },
94
112
  "./infobox": {
95
113
  "types": "./infobox/index.d.ts",
96
114
  "esm2022": "./esm2022/infobox/agorapulse-ui-components-infobox.mjs",
@@ -157,6 +175,12 @@
157
175
  "esm": "./esm2022/radio/agorapulse-ui-components-radio.mjs",
158
176
  "default": "./fesm2022/agorapulse-ui-components-radio.mjs"
159
177
  },
178
+ "./select": {
179
+ "types": "./select/index.d.ts",
180
+ "esm2022": "./esm2022/select/agorapulse-ui-components-select.mjs",
181
+ "esm": "./esm2022/select/agorapulse-ui-components-select.mjs",
182
+ "default": "./fesm2022/agorapulse-ui-components-select.mjs"
183
+ },
160
184
  "./slide-toggle": {
161
185
  "types": "./slide-toggle/index.d.ts",
162
186
  "esm2022": "./esm2022/slide-toggle/agorapulse-ui-components-slide-toggle.mjs",
@@ -181,6 +205,18 @@
181
205
  "esm": "./esm2022/split-button/agorapulse-ui-components-split-button.mjs",
182
206
  "default": "./fesm2022/agorapulse-ui-components-split-button.mjs"
183
207
  },
208
+ "./status": {
209
+ "types": "./status/index.d.ts",
210
+ "esm2022": "./esm2022/status/agorapulse-ui-components-status.mjs",
211
+ "esm": "./esm2022/status/agorapulse-ui-components-status.mjs",
212
+ "default": "./fesm2022/agorapulse-ui-components-status.mjs"
213
+ },
214
+ "./status-card": {
215
+ "types": "./status-card/index.d.ts",
216
+ "esm2022": "./esm2022/status-card/agorapulse-ui-components-status-card.mjs",
217
+ "esm": "./esm2022/status-card/agorapulse-ui-components-status-card.mjs",
218
+ "default": "./fesm2022/agorapulse-ui-components-status-card.mjs"
219
+ },
184
220
  "./stepper": {
185
221
  "types": "./stepper/index.d.ts",
186
222
  "esm2022": "./esm2022/stepper/agorapulse-ui-components-stepper.mjs",
@@ -193,6 +229,18 @@
193
229
  "esm": "./esm2022/text-measurement/agorapulse-ui-components-text-measurement.mjs",
194
230
  "default": "./fesm2022/agorapulse-ui-components-text-measurement.mjs"
195
231
  },
232
+ "./tag": {
233
+ "types": "./tag/index.d.ts",
234
+ "esm2022": "./esm2022/tag/agorapulse-ui-components-tag.mjs",
235
+ "esm": "./esm2022/tag/agorapulse-ui-components-tag.mjs",
236
+ "default": "./fesm2022/agorapulse-ui-components-tag.mjs"
237
+ },
238
+ "./textarea": {
239
+ "types": "./textarea/index.d.ts",
240
+ "esm2022": "./esm2022/textarea/agorapulse-ui-components-textarea.mjs",
241
+ "esm": "./esm2022/textarea/agorapulse-ui-components-textarea.mjs",
242
+ "default": "./fesm2022/agorapulse-ui-components-textarea.mjs"
243
+ },
196
244
  "./toggle": {
197
245
  "types": "./toggle/index.d.ts",
198
246
  "esm2022": "./esm2022/toggle/agorapulse-ui-components-toggle.mjs",
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@agorapulse/ui-components/select" />
5
+ export * from './public_api';
@@ -0,0 +1 @@
1
+ export * from './select.component';
@@ -0,0 +1,96 @@
1
+ import { InputComponent } from '@agorapulse/ui-components/input';
2
+ import { AfterViewInit, ElementRef, EventEmitter, OnInit, Provider, Signal, WritableSignal } from '@angular/core';
3
+ import { ControlValueAccessor } from '@angular/forms';
4
+ import { NgOption, NgSelectComponent } from '@ng-select/ng-select';
5
+ import { Observable } from 'rxjs';
6
+ import * as i0 from "@angular/core";
7
+ export type DisplayType = 'text' | 'label' | 'tag' | 'withAvatar';
8
+ export declare const SELECT_VALUE_ACCESSOR: Provider;
9
+ export declare class SelectComponent<T extends Record<string, unknown> | string> implements OnInit, AfterViewInit, ControlValueAccessor {
10
+ private symbolRegistry;
11
+ private destroyRef;
12
+ private elementRef;
13
+ searchInput: InputComponent;
14
+ inlineLabelElement: ElementRef<HTMLDivElement>;
15
+ select: NgSelectComponent;
16
+ hovered: boolean;
17
+ optionsSignal: WritableSignal<T[]>;
18
+ set options(options: T[]);
19
+ ariaLabel: string;
20
+ ariaLabelledBy: string;
21
+ ariaDescribedBy: string;
22
+ appendTo: string;
23
+ clearable: boolean;
24
+ description?: string;
25
+ disabled: boolean;
26
+ selectId?: string;
27
+ private _inline;
28
+ set inlineLabel(inlineLabel: boolean);
29
+ get inlineLabel(): boolean;
30
+ create: boolean;
31
+ createText: string;
32
+ group: boolean;
33
+ selectableGroup: boolean;
34
+ label: string;
35
+ multiple: boolean;
36
+ only: boolean;
37
+ onlyText: string;
38
+ placeholder: string;
39
+ selectAll: boolean;
40
+ selectAllText: string;
41
+ unselectAllText: string;
42
+ searchable: boolean;
43
+ searchPlaceholder: string;
44
+ searchFn: (term: string) => Observable<T[]>;
45
+ notFoundText: string;
46
+ loadingText: string;
47
+ displayType: DisplayType;
48
+ optionLabel?: string;
49
+ optionCaption?: string;
50
+ optionDivider?: string;
51
+ optionProfileImageUrl: string;
52
+ optionBadgeLabel?: string;
53
+ optionValue: string;
54
+ optionDisabled: string;
55
+ optionGroupLabel: string;
56
+ optionGroupTag?: Record<string, string>;
57
+ createNew: EventEmitter<string>;
58
+ private _controlValueAccessorChangeFn;
59
+ onTouched: () => void;
60
+ enabledOptions: Signal<T[]>;
61
+ itemHoveredSignal: WritableSignal<string | null>;
62
+ filteredOptionsSignal: WritableSignal<T[]>;
63
+ loadingSignal: WritableSignal<boolean>;
64
+ selectedValuesSignal: WritableSignal<unknown[]>;
65
+ searchTermSignal: WritableSignal<string>;
66
+ searchTerm$: Observable<string>;
67
+ allSelectedSignal: Signal<boolean>;
68
+ partialySelectedSignal: Signal<boolean>;
69
+ constructor();
70
+ writeValue(selectedValues?: unknown[]): void;
71
+ registerOnChange(fn: (value: unknown[]) => void): void;
72
+ registerOnTouched(fn: () => void): void;
73
+ setDisabledState(isDisabled: boolean): void;
74
+ ngOnInit(): void;
75
+ ngAfterViewInit(): void;
76
+ onSearchTermChange(searchTerm: string): void;
77
+ private defaultSearchFn;
78
+ isGroupIndeterminate(children: NgOption[]): boolean;
79
+ isGroupDisabled(children: NgOption[]): boolean;
80
+ isGroupChecked(children: NgOption[]): boolean;
81
+ onSelectOnly(item: T): void;
82
+ onSelectOpened(): void;
83
+ onHoverItem(htmlid: string): void;
84
+ onLeaveItem(): void;
85
+ onToggleAll(): void;
86
+ onSelectedValuesChange(selectedValues: unknown[]): void;
87
+ onOpenSelect(): void;
88
+ onInlineInputEnter(): void;
89
+ onInlineInputLeave(): void;
90
+ onCreateNew(): void;
91
+ removeSelectedItem({ $event }: {
92
+ $event: PointerEvent | MouseEvent;
93
+ }, item: T): void;
94
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent<any>, never>;
95
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent<any>, "ap-select", never, { "options": { "alias": "options"; "required": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selectId": { "alias": "selectId"; "required": false; }; "inlineLabel": { "alias": "inlineLabel"; "required": false; }; "create": { "alias": "create"; "required": false; }; "createText": { "alias": "createText"; "required": false; }; "group": { "alias": "group"; "required": false; }; "selectableGroup": { "alias": "selectableGroup"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "only": { "alias": "only"; "required": false; }; "onlyText": { "alias": "onlyText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "selectAll": { "alias": "selectAll"; "required": false; }; "selectAllText": { "alias": "selectAllText"; "required": false; }; "unselectAllText": { "alias": "unselectAllText"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; "searchFn": { "alias": "searchFn"; "required": false; }; "notFoundText": { "alias": "notFoundText"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "displayType": { "alias": "displayType"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionCaption": { "alias": "optionCaption"; "required": false; }; "optionDivider": { "alias": "optionDivider"; "required": false; }; "optionProfileImageUrl": { "alias": "optionProfileImageUrl"; "required": false; }; "optionBadgeLabel": { "alias": "optionBadgeLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "optionDisabled": { "alias": "optionDisabled"; "required": false; }; "optionGroupLabel": { "alias": "optionGroupLabel"; "required": false; }; "optionGroupTag": { "alias": "optionGroupTag"; "required": false; }; }, { "createNew": "createNew"; }, never, never, true, never>;
96
+ }
@@ -11,7 +11,7 @@ export declare class SnackbarsThreadComponent {
11
11
  3: string;
12
12
  };
13
13
  SnackbarIconsMap: {
14
- [k: number]: "attachment" | "add" | "view" | "variable" | "close" | "small-caps" | "calendar" | "add-2022" | "add-circle" | "add-circle-bold-alternate" | "add-square-alternate" | "agorapulse-official" | "agorapulse-square-logo" | "ai-magic-wand" | "alarm-bell-1" | "alarm-clock-1-alternate" | "alert-circle" | "alert-triangle" | "ambassador" | "analytics-bars" | "analytics-board-bars" | "analytics-board-graph-line" | "app-window-expand" | "app-window-search-text" | "app-window-link" | "app-window-next" | "arrow-button-down" | "arrow-button-down-2" | "arrow-button-left" | "arrow-button-right" | "arrow-button-up" | "arrow-button-up-2" | "arrow-circle-right" | "arrow-corner-right" | "arrow-down-1" | "arrow-left-1" | "arrow-right" | "arrow-right-1" | "arrow-right-long" | "arrow-thick-circle-bottom-right-corner-2" | "arrow-thick-circle-right-2" | "arrow-thick-circle-top-right-corner-2" | "arrow-thick-down-2" | "arrow-thick-left-2" | "arrow-thick-right-2" | "arrow-thick-up-2" | "arrow-up-1" | "artboard-image-1" | "bag-shop" | "bin" | "bin-1" | "bin-2" | "bitly" | "button-play" | "button-shuffle" | "button-stop-1" | "button-refresh-arrow" | "button-refresh-arrows" | "bookmarks-1" | "bookmarks-1-alternate" | "bookmarks-document" | "calendar-2022" | "calendar-3" | "calendar-add-1" | "calendar-setting" | "canva" | "certified-certificate" | "chat-translate" | "check-1" | "check-2" | "check-circle" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "check-circle-alternate" | "cog" | "cog-1" | "common-file-double" | "common-file-text-alternate" | "common-file-stack-alternate" | "common-file-upload" | "competitors" | "computer-bug" | "content-pencil-write" | "controls-pause" | "controls-play" | "controls-play-3" | "conversation-chat-1" | "conversation-chat-1-alternate" | "copy-paste" | "country-targeting" | "country-targeting-active" | "credit-card-1-alternate" | "crown" | "cursor-double-click-3" | "custom-facebook-comment" | "custom-facebook-like" | "custom-facebook-share" | "custom-facebook-reel-comment" | "custom-facebook-reel-like" | "custom-facebook-reel-share" | "custom-tiktok-like" | "custom-tiktok-comment" | "custom-tiktok-share" | "custom-tiktok-melody" | "custom-twitter-comment" | "custom-twitter-like" | "custom-twitter-retweet" | "custom-twitter-retweet-full" | "custom-twitter-share" | "custom-inbox-post" | "custom-instagram-bookmark" | "custom-instagram-carousel" | "custom-instagram-comment" | "custom-instagram-like" | "custom-instagram-play" | "custom-instagram-reels" | "custom-instagram-share" | "custom-instagram-tags" | "custom-linkedin-comment" | "custom-linkedin-like" | "custom-linkedin-share" | "custom-pinterest-link" | "custom-pinterest-lock" | "custom-pinterest-more" | "custom-pinterest-share" | "data-file-bars-add" | "data-transfer-vertical" | "data-transfer-vertical-bi-color-down" | "data-transfer-vertical-bi-color-up" | "data-transfer-square-horizontal" | "design-file-text-alternate" | "delete" | "delete-2-alternate" | "desktop-computer-pc-1" | "dislike" | "dislike-alternate" | "dislike-1" | "download-bottom" | "drawer-download" | "drawer-open" | "earth-heart" | "earth-search" | "email-action-add" | "email-action-reply" | "email-action-reply-alternate" | "email-action-subtract" | "email-action-sync-1" | "envelope" | "envelope-letter" | "excel" | "expand" | "expand-1" | "external-link" | "facebook" | "famous-people-man-steve-jobs" | "fans-2022" | "faq-2022" | "fast-food-burger-drink" | "feature-icon-market" | "flag-plain-2" | "file-csv-1" | "filter-1" | "filter-2" | "flag-plain" | "flip-right" | "folder-add-alternate" | "folder-alternate" | "folder-empty" | "folder-media-alternate" | "folder-search-alternate" | "gauge-dashboard-alternate" | "gift-box" | "google-analytics" | "google-my-business-icon" | "google-icon" | "group-of-posts" | "hash" | "hashtag" | "headphones-customer-support-human" | "headphones-customer-support-human-1" | "help-wheel" | "hourglass-alternate" | "house-chimney-1" | "human-resources-search-men" | "hyperlink-3" | "icon-gif" | "icon-gif-search" | "icon-product-error" | "ig-grid" | "ig-story" | "ig-reel" | "image-file-bmp" | "image-file-jpg" | "image-file-gif" | "image-file-landscape" | "image-file-landscape-2" | "image-file-png" | "inbox-2022" | "information" | "information-circle" | "instagram" | "instagram-outline" | "instagram-user" | "iris-scan-approved" | "keyboard-3" | "keyboard-arrow-bottom-right" | "keyboard-arrow-right" | "keyboard-arrow-top-right" | "keyword" | "language-targeting" | "language-targeting-active" | "layers-hide" | "layers-show" | "layout-3" | "layout-module" | "layout-module-1" | "layout-agenda" | "layout-bullets" | "layout-top-1" | "library-2022" | "light-bulb" | "like" | "like-alternate" | "like-1" | "linkedin" | "list-bullets" | "listening-2022" | "lock-password" | "logout-1-alternate" | "logout-2" | "love-it" | "love-it-alternate" | "love-it-alternate-bold" | "love-it-circle" | "maximize" | "meetings-camera" | "megaphone" | "mention" | "messages-bubble" | "messages-bubble-alternate" | "messages-bubble-dot" | "messages-bubble-empty-alternate" | "messages-bubble-forward" | "messages-bubble-graph" | "messages-bubble-question-alternate" | "messages-bubble-square-menu-alternate" | "messages-bubble-square-text" | "microsoft-icon" | "minimize" | "mobile-phone" | "module-three-1" | "money-wallet-open" | "move-to-bottom" | "multiple-man-1" | "multiple-users-1" | "natural-disaster-hurricane-radar-1" | "navigation-menu-horizontal" | "navigation-menu-horizontal-1-alternate" | "navigation-menu-vertical" | "network-search" | "notes-add" | "notes-text-flip-3" | "notes-book-text" | "notes-paper" | "notes-paper-approve" | "notes-paper-text-2" | "notif-2022" | "office-outdoors" | "open-new-tab" | "open-quote" | "organization" | "original-sound" | "paginate-filter-picture" | "paginate-filter-plus" | "payment-paypal" | "pencil-1" | "pencil-2" | "pencil-write-2-alternate" | "people-man-graduate" | "performance-increase" | "phone-ring-1" | "picture-landscape" | "picture-polaroid-landscape" | "picture-stack-landscape" | "pin" | "pinterest-icon" | "pin-active" | "pin-location" | "plant-2" | "publishing-2022" | "publishing-list-2022" | "powerpoint" | "premium-star" | "question-circle" | "rating-star" | "read-email-at-alternate" | "remove-bold" | "remove-circle" | "remove-circle-bold-alternate" | "remove-circle-bold-alternate-3" | "reports-2022" | "repost" | "roi-2022" | "rotate-back" | "search-alternate" | "send-email-2-alternate" | "send-email-3" | "send-email-4" | "send-for-approval" | "settings-slider-alternate-1" | "settings-vertical" | "share" | "shared-calendar" | "shorten" | "show-theater-mask-happy" | "single-man" | "single-neutral" | "single-neutral-actions-add" | "single-post" | "user-delete" | "small-arrow-down" | "small-arrow-up" | "small-arrow-left" | "small-arrow-right" | "smiley-happy-alternate" | "smiley-happy-alternate-custom" | "social-media-retweet" | "social-media-retweet-alternate" | "social-profile-smartphone-add" | "space-rocket-flying" | "sparkles" | "subtitle" | "subtract" | "synchronize-arrow-clock" | "synchronize-arrows-1" | "tags-alternate-active" | "tags-add-alternate" | "tags-alternate" | "taking-pictures-circle-alternate" | "taking-pictures-circle-alternate-active" | "taking-videos-circle-alternate" | "taking-videos-circle-alternate-active" | "task-checklist-check" | "task-list-clock" | "task-list-multiple" | "time-clock-circle" | "time-clock-circle-alternate" | "time-clock-circle-1-alternate" | "tools-wrench-2" | "toys-ball" | "trends-hot-flame" | "twitter" | "twitter-official" | "twitter-circle" | "twitter-link-placeholder" | "union" | "upload-bottom" | "upload-button" | "vectors-anchor-square-alternate" | "video-file-avi" | "video-file-disable" | "video-file-flv" | "video-file-mov" | "video-file-mpg" | "video-file-mp-4" | "video-file-m-4-v" | "video-file-play-alternate" | "view-alternate" | "view-off" | "view-off-alternate" | "view-off-full" | "view-on" | "view-on-full" | "vintage-tv" | "volume-control-full" | "volume-control-off" | "wifi-signal-4" | "youtube" | "facebook-official" | "google-official" | "google-my-business-official" | "google-analytics-official" | "hubspot-official" | "linkedin-official" | "pinterest-official" | "tiktok-official" | "microsoft-official" | "salesforce-official" | "tiktok-white-official" | "twitter-plus-official" | "x-official" | "x-plus-official" | "x-white-official" | "youtube-official" | "instagram-official" | "instagram-story-custom" | "agorapulse-en-flag" | "agorapulse-fr-flag" | "agorapulse-pt-flag" | "agorapulse-es-flag" | "agorapulse-de-flag";
14
+ [k: number]: "remove-circle" | "close" | "messages-bubble-dot" | "check-circle" | "alert-circle" | "add-2022" | "add-circle-bold-alternate" | "add-circle" | "add-square-alternate" | "add" | "agorapulse-de-flag" | "agorapulse-en-flag" | "agorapulse-es-flag" | "agorapulse-fr-flag" | "agorapulse-official" | "agorapulse-pt-flag" | "agorapulse-square-logo" | "ai-magic-wand" | "alarm-bell-1" | "alarm-clock-1-alternate" | "alert-triangle" | "ambassador" | "analytics-bars" | "analytics-board-bars" | "analytics-board-graph-line" | "app-window-expand" | "app-window-link" | "app-window-next" | "app-window-search-text" | "arrow-button-down-2" | "arrow-button-down" | "arrow-button-left" | "arrow-button-right" | "arrow-button-up-2" | "arrow-button-up" | "arrow-circle-right" | "arrow-corner-right" | "arrow-down-1" | "arrow-left-1" | "arrow-right-1" | "arrow-right-long" | "arrow-right" | "arrow-thick-circle-bottom-right-corner-2" | "arrow-thick-circle-right-2" | "arrow-thick-circle-top-right-corner-2" | "arrow-thick-down-2" | "arrow-thick-left-2" | "arrow-thick-right-2" | "arrow-thick-up-2" | "arrow-up-1" | "artboard-image-1" | "attachment" | "bag-shop" | "bin-1" | "bin-2" | "bin" | "bitly" | "bookmarks-1-alternate" | "bookmarks-1" | "bookmarks-document" | "button-play" | "button-refresh-arrow" | "button-refresh-arrows" | "button-shuffle" | "button-stop-1" | "calendar-2022" | "calendar-3" | "calendar-add-1" | "calendar-setting" | "calendar" | "canva" | "certified-certificate" | "chat-translate" | "check-1" | "check-2" | "check-circle-alternate" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "cog-1" | "cog" | "common-file-double" | "common-file-stack-alternate" | "common-file-text-alternate" | "common-file-upload" | "competitors" | "computer-bug" | "content-pencil-write" | "controls-pause" | "controls-play-3" | "controls-play" | "conversation-chat-1-alternate" | "conversation-chat-1" | "copy-paste" | "country-targeting-active" | "country-targeting" | "credit-card-1-alternate" | "crown" | "cursor-double-click-3" | "custom-facebook-comment" | "custom-facebook-like" | "custom-facebook-reel-comment" | "custom-facebook-reel-like" | "custom-facebook-reel-share" | "custom-facebook-share" | "custom-inbox-post" | "custom-instagram-bookmark" | "custom-instagram-carousel" | "custom-instagram-comment" | "custom-instagram-like" | "custom-instagram-play" | "custom-instagram-reels" | "custom-instagram-share" | "custom-instagram-tags" | "custom-linkedin-comment" | "custom-linkedin-like" | "custom-linkedin-share" | "custom-pinterest-link" | "custom-pinterest-lock" | "custom-pinterest-more" | "custom-pinterest-share" | "custom-tiktok-comment" | "custom-tiktok-like" | "custom-tiktok-melody" | "custom-tiktok-share" | "custom-twitter-comment" | "custom-twitter-like" | "custom-twitter-retweet-full" | "custom-twitter-retweet" | "custom-twitter-share" | "data-file-bars-add" | "data-transfer-square-horizontal" | "data-transfer-vertical-bi-color-down" | "data-transfer-vertical-bi-color-up" | "data-transfer-vertical" | "delete-2-alternate" | "delete-no-circle" | "delete" | "design-file-text-alternate" | "desktop-computer-pc-1" | "dislike-1" | "dislike-alternate" | "dislike" | "download-bottom" | "drawer-download" | "drawer-open" | "earth-heart" | "earth-search" | "email-action-add" | "email-action-reply-alternate" | "email-action-reply" | "email-action-subtract" | "email-action-sync-1" | "envelope-letter" | "envelope" | "excel" | "expand-1" | "expand" | "external-link" | "facebook-official" | "facebook" | "famous-people-man-steve-jobs" | "fans-2022" | "faq-2022" | "fast-food-burger-drink" | "feature-icon-market" | "file-csv-1" | "filter-1" | "filter-2" | "flag-plain-2" | "flag-plain" | "flip-right" | "folder-add-alternate" | "folder-alternate" | "folder-empty" | "folder-media-alternate" | "folder-search-alternate" | "gauge-dashboard-alternate" | "gift-box" | "google-analytics-official" | "google-analytics" | "google-icon" | "google-my-business-icon" | "google-my-business-official" | "google-official" | "group-of-posts" | "hash" | "hashtag" | "headphones-customer-support-human-1" | "headphones-customer-support-human" | "help-wheel" | "hourglass-alternate" | "house-chimney-1" | "hubspot-official" | "human-resources-search-men" | "hyperlink-3" | "icon-gif-search" | "icon-gif" | "icon-product-error" | "ig-grid" | "ig-reel" | "ig-story" | "image-file-bmp" | "image-file-gif" | "image-file-jpg" | "image-file-landscape-2" | "image-file-landscape" | "image-file-png" | "inbox-2022" | "information-circle" | "information" | "instagram-outline" | "instagram-user" | "instagram" | "iris-scan-approved" | "keyboard-3" | "keyboard-arrow-bottom-right" | "keyboard-arrow-right" | "keyboard-arrow-top-right" | "keyword" | "language-targeting-active" | "language-targeting" | "layers-hide" | "layers-show" | "layout-3" | "layout-agenda" | "layout-bullets" | "layout-module-1" | "layout-module" | "layout-top-1" | "library-2022" | "light-bulb" | "like-1" | "like-alternate" | "like" | "linkedin-official" | "linkedin" | "list-bullets" | "listening-2022" | "lock-password" | "logout-1-alternate" | "logout-2" | "love-it-alternate-bold" | "love-it-alternate" | "love-it-circle" | "love-it" | "maximize" | "meetings-camera" | "megaphone" | "mention" | "messages-bubble-alternate" | "messages-bubble-empty-alternate" | "messages-bubble-forward" | "messages-bubble-graph" | "messages-bubble-question-alternate" | "messages-bubble-square-menu-alternate" | "messages-bubble-square-text" | "messages-bubble" | "microsoft-icon" | "microsoft-official" | "minimize" | "mobile-phone" | "module-three-1" | "money-wallet-open" | "move-to-bottom" | "multiple-man-1" | "multiple-users-1" | "natural-disaster-hurricane-radar-1" | "navigation-menu-horizontal-1-alternate" | "navigation-menu-horizontal" | "navigation-menu-vertical" | "network-search" | "notes-add" | "notes-book-text" | "notes-paper-approve" | "notes-paper-text-2" | "notes-paper" | "notes-text-flip-3" | "notif-2022" | "office-outdoors" | "open-new-tab" | "open-quote" | "organization" | "original-sound" | "paginate-filter-picture" | "paginate-filter-plus" | "payment-paypal" | "pencil-1" | "pencil-2" | "pencil-write-2-alternate" | "people-man-graduate" | "performance-increase" | "phone-ring-1" | "picture-landscape" | "picture-polaroid-landscape" | "picture-stack-landscape" | "pin-active" | "pin-location" | "pin" | "pinterest-icon" | "pinterest-official" | "plant-2" | "powerpoint" | "premium-star" | "publishing-2022" | "publishing-list-2022" | "question-circle" | "rating-star" | "read-email-at-alternate" | "remove-bold" | "remove-circle-bold-alternate-3" | "remove-circle-bold-alternate" | "reports-2022" | "repost" | "roi-2022" | "rotate-back" | "salesforce-official" | "search-alternate" | "send-email-2-alternate" | "send-email-3" | "send-email-4" | "send-for-approval" | "settings-slider-alternate-1" | "settings-vertical" | "share" | "shared-calendar" | "shorten" | "show-theater-mask-happy" | "single-man" | "single-neutral-actions-add" | "single-neutral" | "single-post" | "small-arrow-down" | "small-arrow-left" | "small-arrow-right" | "small-arrow-up" | "small-caps" | "smiley-happy-alternate-custom" | "smiley-happy-alternate" | "social-media-retweet-alternate" | "social-media-retweet" | "social-profile-smartphone-add" | "space-rocket-flying" | "sparkles" | "subtitle" | "subtract" | "synchronize-arrow-clock" | "synchronize-arrows-1" | "tags-add-alternate" | "tags-alternate-active" | "tags-alternate" | "taking-pictures-circle-alternate-active" | "taking-pictures-circle-alternate" | "taking-videos-circle-alternate-active" | "taking-videos-circle-alternate" | "task-checklist-check" | "task-list-clock" | "task-list-multiple" | "tiktok-official" | "tiktok-white-official" | "time-clock-circle-1-alternate" | "time-clock-circle-alternate" | "time-clock-circle" | "tools-wrench-2" | "toys-ball" | "trends-hot-flame" | "twitter-circle" | "twitter-link-placeholder" | "twitter-official" | "twitter-plus-official" | "twitter" | "union" | "upload-bottom" | "upload-button" | "user-delete" | "variable" | "vectors-anchor-square-alternate" | "video-file-avi" | "video-file-disable" | "video-file-flv" | "video-file-m-4-v" | "video-file-mov" | "video-file-mp-4" | "video-file-mpg" | "video-file-play-alternate" | "view-alternate" | "view-off-alternate" | "view-off-full" | "view-off" | "view-on-full" | "view-on" | "view" | "vintage-tv" | "volume-control-full" | "volume-control-off" | "wifi-signal-4" | "x-official" | "x-plus-official" | "x-white-official" | "youtube-official" | "youtube" | "instagram-official" | "instagram-story-custom";
15
15
  };
16
16
  constructor(snackbarsThreadService: SnackbarsThreadService, symbolRegistry: SymbolRegistry);
17
17
  remove(id: string): void;
@@ -8,7 +8,7 @@ export declare class SnackbarsThreadService {
8
8
  snackbarList: BehaviorSubject<SnackbarsThreadComplete[]>;
9
9
  constructor(domSanitizer: DomSanitizer);
10
10
  private _emit;
11
- add(elem: SnackbarsThreadBase): void;
11
+ add(elem: SnackbarsThreadBase, timeout?: number): void;
12
12
  remove(id: string | undefined): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<SnackbarsThreadService, never>;
14
14
  static ɵprov: i0.ɵɵInjectableDeclaration<SnackbarsThreadService>;
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@agorapulse/ui-components/status" />
5
+ export * from './public_api';
@@ -0,0 +1 @@
1
+ export * from './status.component';
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export type StatusColor = 'blue' | 'orange' | 'grey' | 'tagOrange' | 'red' | 'green';
3
+ export declare class StatusComponent {
4
+ color: StatusColor;
5
+ dot: boolean;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<StatusComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<StatusComponent, "ap-status", never, { "color": { "alias": "color"; "required": false; }; "dot": { "alias": "dot"; "required": false; }; }, {}, never, ["*"], true, never>;
8
+ static ngAcceptInputType_dot: unknown;
9
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@agorapulse/ui-components/status-card" />
5
+ export * from './public_api';
@@ -0,0 +1 @@
1
+ export * from './status-card.component';
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ export type StatusCardColor = 'green' | 'red' | 'tagOrange' | 'grey' | 'blue' | 'orange';
3
+ export type StatusCardActor = {
4
+ imageUrl: string;
5
+ name: string;
6
+ };
7
+ export declare class StatusCardComponent {
8
+ color: StatusCardColor;
9
+ linkText?: string;
10
+ linkUrl?: string;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<StatusCardComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<StatusCardComponent, "ap-status-card", never, { "color": { "alias": "color"; "required": false; }; "linkText": { "alias": "linkText"; "required": false; }; "linkUrl": { "alias": "linkUrl"; "required": false; }; }, {}, never, ["ap-symbol", ".flow", "p"], true, never>;
13
+ }
package/tag/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@agorapulse/ui-components/tag" />
5
+ export * from './public_api';
@@ -0,0 +1 @@
1
+ export * from './tag.component';
@@ -0,0 +1,17 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export type TagColor = 'blue' | 'grey' | 'menthol' | 'tagOrange' | 'red' | 'green';
4
+ export declare class TagComponent {
5
+ private readonly elementRef;
6
+ private readonly symbolRegistry;
7
+ constructor();
8
+ clearable: boolean;
9
+ color: TagColor;
10
+ clear: EventEmitter<{
11
+ $event: MouseEvent | PointerEvent;
12
+ }>;
13
+ onClear($event: MouseEvent | PointerEvent): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "ap-tag", never, { "clearable": { "alias": "clearable"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, { "clear": "clear"; }, never, ["ap-symbol", "ap-avatar", "*"], true, never>;
16
+ static ngAcceptInputType_clearable: unknown;
17
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@agorapulse/ui-components/textarea" />
5
+ export * from './public_api';
@@ -0,0 +1 @@
1
+ export * from './textarea.component';
@@ -0,0 +1,50 @@
1
+ import { SymbolComponent, SymbolRegistry } from '@agorapulse/ui-symbol';
2
+ import { AfterViewInit, ElementRef, OnInit, QueryList, WritableSignal } from '@angular/core';
3
+ import { ControlValueAccessor, FormControl } from '@angular/forms';
4
+ import * as i0 from "@angular/core";
5
+ export declare const AP_TEXTAREA_CONTROL_VALUE_ACCESSOR: {
6
+ provide: import("@angular/core").InjectionToken<readonly ControlValueAccessor[]>;
7
+ useExisting: import("@angular/core").Type<any>;
8
+ multi: boolean;
9
+ };
10
+ export declare class TextareaComponent implements OnInit, AfterViewInit, ControlValueAccessor {
11
+ readonly elementRef: ElementRef;
12
+ readonly symbolRegistry: SymbolRegistry;
13
+ symbols: QueryList<SymbolComponent>;
14
+ ariaLabel: string;
15
+ ariaLabelledBy: string;
16
+ ariaDescribedBy: string;
17
+ disabled: boolean;
18
+ textareaId?: string;
19
+ name: string;
20
+ label?: string;
21
+ description?: string;
22
+ rows: number;
23
+ cols: number;
24
+ autoresize: boolean;
25
+ required: boolean;
26
+ placeholder: string;
27
+ errorMessage?: string;
28
+ successMessage?: string;
29
+ resize: boolean;
30
+ symbolPosition: 'left' | 'right';
31
+ private _controlValueAccessorChangeFn;
32
+ hostDataTest: WritableSignal<string | undefined>;
33
+ value: string | null;
34
+ onTouched: () => void;
35
+ constructor();
36
+ ngOnInit(): void;
37
+ ngAfterViewInit(): void;
38
+ validate({ value }: FormControl): false | {
39
+ invalid: boolean;
40
+ };
41
+ onValueChange(): void;
42
+ writeValue(value: string): void;
43
+ registerOnChange(fn: (value: string | null) => void): void;
44
+ registerOnTouched(fn: () => void): void;
45
+ setDisabledState(isDisabled: boolean): void;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextareaComponent, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextareaComponent, "ap-textarea", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "textareaId": { "alias": "textareaId"; "required": false; }; "name": { "alias": "name"; "required": true; }; "label": { "alias": "label"; "required": false; }; "description": { "alias": "description"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "autoresize": { "alias": "autoresize"; "required": false; }; "required": { "alias": "required"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "successMessage": { "alias": "successMessage"; "required": false; }; "resize": { "alias": "resize"; "required": false; }; "symbolPosition": { "alias": "symbolPosition"; "required": false; }; }, {}, ["symbols"], never, true, never>;
48
+ static ngAcceptInputType_autoresize: unknown;
49
+ static ngAcceptInputType_required: unknown;
50
+ }
Binary file