ui-core-abv 0.2.0 → 0.2.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.
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class UicMultySearcherComponent {
|
|
4
|
+
itemDisplayFn?: (item: any) => string;
|
|
5
|
+
disabled: boolean;
|
|
6
|
+
values: any[];
|
|
7
|
+
valuesChange: EventEmitter<any[]>;
|
|
8
|
+
removeItem(idx: number): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicMultySearcherComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicMultySearcherComponent, "ui-multy-searcher", never, { "itemDisplayFn": { "alias": "itemDisplayFn"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "values": { "alias": "values"; "required": false; }; }, { "valuesChange": "valuesChange"; }, never, never, true, never>;
|
|
11
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { TemplateRef } from '@angular/core';
|
|
1
|
+
import { EventEmitter, TemplateRef } from '@angular/core';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
declare const base: abstract new () => {
|
|
6
6
|
value: Record<string, any> | null;
|
|
7
|
-
valueChange:
|
|
7
|
+
valueChange: EventEmitter<Record<string, any> | null>;
|
|
8
8
|
onChange: (value: Record<string, any> | null) => void;
|
|
9
9
|
onTouched: () => void;
|
|
10
10
|
writeValue(obj: Record<string, any> | null): void;
|
|
@@ -30,6 +30,8 @@ export declare class UicSearcherComponent extends base {
|
|
|
30
30
|
itemDisplayFn?: (item: any) => string;
|
|
31
31
|
itemIsEnabledFn?: (item: any) => boolean;
|
|
32
32
|
manualSearch: boolean;
|
|
33
|
+
stateless: boolean;
|
|
34
|
+
pickedItem: EventEmitter<Record<string, any>>;
|
|
33
35
|
private readonly searchSubject;
|
|
34
36
|
results$: Observable<any[]>;
|
|
35
37
|
selectedOption: Record<string, any> | null;
|
|
@@ -50,6 +52,6 @@ export declare class UicSearcherComponent extends base {
|
|
|
50
52
|
closeList(): void;
|
|
51
53
|
writeValue(value: Record<string, any>): void;
|
|
52
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicSearcherComponent, never>;
|
|
53
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicSearcherComponent, "ui-searcher", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "showSubtitle": { "alias": "showSubtitle"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "showSelected": { "alias": "showSelected"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "searchFn": { "alias": "searchFn"; "required": false; }; "itemDisplayFn": { "alias": "itemDisplayFn"; "required": false; }; "itemIsEnabledFn": { "alias": "itemIsEnabledFn"; "required": false; }; "manualSearch": { "alias": "manualSearch"; "required": false; }; }, {}, never, never, true, never>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicSearcherComponent, "ui-searcher", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "showSubtitle": { "alias": "showSubtitle"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "showSelected": { "alias": "showSelected"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "searchFn": { "alias": "searchFn"; "required": false; }; "itemDisplayFn": { "alias": "itemDisplayFn"; "required": false; }; "itemIsEnabledFn": { "alias": "itemIsEnabledFn"; "required": false; }; "manualSearch": { "alias": "manualSearch"; "required": false; }; "stateless": { "alias": "stateless"; "required": false; }; }, { "pickedItem": "pickedItem"; }, never, never, true, never>;
|
|
54
56
|
}
|
|
55
57
|
export {};
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export * from './lib/components/dynamic-form/steps-form/steps-form.component';
|
|
|
6
6
|
export * from './lib/components/dynamic-form/steps-form/step-tabs/step-tabs.component';
|
|
7
7
|
export * from './lib/components/inputs/input/input.component';
|
|
8
8
|
export * from './lib/components/inputs/date-picker/date-picker.component';
|
|
9
|
+
export * from './lib/components/inputs/multy-searcher/multy-searcher.component';
|
|
9
10
|
export * from './lib/components/inputs/uic-searcher/uic-searcher.component';
|
|
10
11
|
export * from './lib/components/inputs/file-input/file-input.component';
|
|
11
12
|
export * from './lib/components/inputs/select/select.component';
|