@agorapulse/ui-components 21.0.1 → 21.0.2-beta.1
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-21.0.2-beta.1.tgz +0 -0
- package/fesm2022/agorapulse-ui-components-filter-dropdown.mjs +1 -1
- package/fesm2022/agorapulse-ui-components-filter-dropdown.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components-labels-selector.mjs +3 -2
- package/fesm2022/agorapulse-ui-components-labels-selector.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components-legacy-select.mjs +1 -1
- package/fesm2022/agorapulse-ui-components-legacy-select.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components-phone-number-input.mjs +1 -1
- package/fesm2022/agorapulse-ui-components-phone-number-input.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components-select.mjs +29 -44
- package/fesm2022/agorapulse-ui-components-select.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components-snackbars-thread.mjs +1 -15
- package/fesm2022/agorapulse-ui-components-snackbars-thread.mjs.map +1 -1
- package/package.json +2 -2
- package/types/agorapulse-ui-components-select.d.ts +2 -4
- package/types/agorapulse-ui-components-snackbars-thread.d.ts +0 -6
- package/agorapulse-ui-components-21.0.1.tgz +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { AfterViewInit, OnDestroy, EventEmitter, ElementRef,
|
|
2
|
+
import { AfterViewInit, OnDestroy, EventEmitter, ElementRef, OutputRefSubscription } from '@angular/core';
|
|
3
3
|
import { AvatarNetwork } from '@agorapulse/ui-components/avatar';
|
|
4
4
|
import { CheckboxComponent } from '@agorapulse/ui-components/checkbox';
|
|
5
5
|
import { TagColor } from '@agorapulse/ui-components/tag';
|
|
@@ -201,15 +201,13 @@ declare class SelectLabelMultipleComponent {
|
|
|
201
201
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SelectLabelMultipleComponent, "ap-select-label-multiple", never, { "displayType": { "alias": "displayType"; "required": false; "isSignal": true; }; "tagColor": { "alias": "tagColor"; "required": false; "isSignal": true; }; "selectedItems": { "alias": "selectedItems"; "required": true; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "bindAvatarUrl": { "alias": "bindAvatarUrl"; "required": false; "isSignal": true; }; "bindSymbolId": { "alias": "bindSymbolId"; "required": false; "isSignal": true; }; "roundedAvatar": { "alias": "roundedAvatar"; "required": false; "isSignal": true; }; "bindNetwork": { "alias": "bindNetwork"; "required": false; "isSignal": true; }; }, { "removeItem": "removeItem"; }, never, never, true, never>;
|
|
202
202
|
}
|
|
203
203
|
|
|
204
|
+
/** Search input for an ng-select dropdown — place inside its `ng-header-tmp`. */
|
|
204
205
|
declare class DropdownSearchFormComponent implements AfterViewInit, OnDestroy {
|
|
205
206
|
searchPlaceholder: string;
|
|
206
207
|
createNewEnabled: boolean;
|
|
207
208
|
createText: string;
|
|
208
209
|
select: NgSelectComponent;
|
|
209
210
|
inputSearch: InputSearchComponent;
|
|
210
|
-
notFoundTpl: TemplateRef<any>;
|
|
211
|
-
loadingTpl: TemplateRef<any>;
|
|
212
|
-
createNewTpl: TemplateRef<any>;
|
|
213
211
|
createNew: EventEmitter<string>;
|
|
214
212
|
searchTermSignal: _angular_core.WritableSignal<string>;
|
|
215
213
|
searchTerm$: BehaviorSubject<string>;
|
|
@@ -47,13 +47,7 @@ declare class SnackbarsThreadService {
|
|
|
47
47
|
constructor(domSanitizer: DomSanitizer);
|
|
48
48
|
private _emit;
|
|
49
49
|
add(elem: SnackbarsThreadBase, timeout?: number): void;
|
|
50
|
-
addWithId(elem: SnackbarsThreadBase, id: string, timeout?: number): void;
|
|
51
|
-
/**
|
|
52
|
-
* Adds the snackbar and return its ID so it can be closed further
|
|
53
|
-
*/
|
|
54
|
-
addSnackbar(elem: SnackbarsThreadBase, timeout?: number): string;
|
|
55
50
|
remove(id: string | undefined): void;
|
|
56
|
-
private generateId;
|
|
57
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<SnackbarsThreadService, never>;
|
|
58
52
|
static ɵprov: i0.ɵɵInjectableDeclaration<SnackbarsThreadService>;
|
|
59
53
|
}
|
|
Binary file
|