@recursyve/nice-ui-kit.v2 14.0.0-beta.112 → 14.0.0-beta.114
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/esm2020/lib/components/assets-carousel/assets-carousel.component.mjs +15 -4
- package/esm2020/lib/components/async-typeahead/async-typeahead.component.mjs +13 -4
- package/esm2020/lib/components/async-typeahead/providers/async-typeahead.service.mjs +12 -1
- package/fesm2015/recursyve-nice-ui-kit.v2.mjs +35 -5
- package/fesm2015/recursyve-nice-ui-kit.v2.mjs.map +1 -1
- package/fesm2020/recursyve-nice-ui-kit.v2.mjs +36 -5
- package/fesm2020/recursyve-nice-ui-kit.v2.mjs.map +1 -1
- package/lib/components/assets-carousel/assets-carousel.component.d.ts +3 -1
- package/lib/components/async-typeahead/async-typeahead.component.d.ts +4 -1
- package/package.json +1 -1
|
@@ -48,6 +48,7 @@ export declare class NiceAssetsCarouselComponent implements ControlValueAccessor
|
|
|
48
48
|
edit: boolean;
|
|
49
49
|
accept: string[];
|
|
50
50
|
customActions: NiceAssetsCarouselActions[];
|
|
51
|
+
imagesProcessor: (fileList: FileList) => Promise<FileList>;
|
|
51
52
|
multipleUpload: boolean;
|
|
52
53
|
visiblePreviewAsset: number;
|
|
53
54
|
showAddAssetContainer: boolean;
|
|
@@ -76,6 +77,7 @@ export declare class NiceAssetsCarouselComponent implements ControlValueAccessor
|
|
|
76
77
|
clickRemove(): void;
|
|
77
78
|
clickCustom(action: NiceAssetsCarouselActions): void;
|
|
78
79
|
startSyncVideo(): Promise<void>;
|
|
80
|
+
private getProcessedFiles;
|
|
79
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<NiceAssetsCarouselComponent, [{ optional: true; }]>;
|
|
80
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NiceAssetsCarouselComponent, "nice-assets-carousel", never, { "color": "color"; "edit": "edit"; "accept": "accept"; "customActions": "customActions"; "multipleUpload": "multipleUpload"; "visiblePreviewAsset": "visiblePreviewAsset"; "showAddAssetContainer": "showAddAssetContainer"; "assets": "assets"; }, { "activeChange": "activeChange"; "removedAsset": "removedAsset"; }, ["activeContent"], never, false>;
|
|
82
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NiceAssetsCarouselComponent, "nice-assets-carousel", never, { "color": "color"; "edit": "edit"; "accept": "accept"; "customActions": "customActions"; "imagesProcessor": "imagesProcessor"; "multipleUpload": "multipleUpload"; "visiblePreviewAsset": "visiblePreviewAsset"; "showAddAssetContainer": "showAddAssetContainer"; "assets": "assets"; }, { "activeChange": "activeChange"; "removedAsset": "removedAsset"; }, ["activeContent"], never, false>;
|
|
81
83
|
}
|
|
@@ -45,6 +45,7 @@ export declare class NiceAsyncTypeaheadComponent extends _BaseAsyncTypeaheadComp
|
|
|
45
45
|
entityRemoved: EventEmitter<void>;
|
|
46
46
|
resource: string;
|
|
47
47
|
searchOptions: any;
|
|
48
|
+
autoReload: boolean;
|
|
48
49
|
preloadResource: boolean;
|
|
49
50
|
allowNotFoundItems: boolean;
|
|
50
51
|
panelClass: string | string[];
|
|
@@ -102,12 +103,14 @@ export declare class NiceAsyncTypeaheadComponent extends _BaseAsyncTypeaheadComp
|
|
|
102
103
|
formatLabel(item: any): string;
|
|
103
104
|
onEndScroll(): void;
|
|
104
105
|
focusChanged(isFocused: boolean): void;
|
|
106
|
+
reload(): Promise<void>;
|
|
105
107
|
reloadActive(): Promise<void>;
|
|
108
|
+
setSearchOptions(options: any): void;
|
|
106
109
|
private updateLabel;
|
|
107
110
|
private getObjectItem;
|
|
108
111
|
private updateSearchInput;
|
|
109
112
|
private checkIfValueStillExist;
|
|
110
113
|
static ɵfac: i0.ɵɵFactoryDeclaration<NiceAsyncTypeaheadComponent, [{ optional: true; self: true; }, { optional: true; }, { optional: true; }, null, null, null, null]>;
|
|
111
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NiceAsyncTypeaheadComponent, "nice-async-typeahead", never, { "resource": "resource"; "searchOptions": "searchOptions"; "preloadResource": "preloadResource"; "allowNotFoundItems": "allowNotFoundItems"; "panelClass": "panelClass"; "bindValue": "bindValue"; "bindLabel": "bindLabel"; "placeholder": "placeholder"; "emptyPlaceholder": "emptyPlaceholder"; "optionTemplate": "optionTemplate"; "filterFn": "filterFn"; "labelFormatFn": "labelFormatFn"; "disabled": "disabled"; "value": "value"; "required": "required"; }, { "entityRemoved": "entityRemoved"; "selected": "selected"; }, never, never, false>;
|
|
114
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NiceAsyncTypeaheadComponent, "nice-async-typeahead", never, { "resource": "resource"; "searchOptions": "searchOptions"; "autoReload": "autoReload"; "preloadResource": "preloadResource"; "allowNotFoundItems": "allowNotFoundItems"; "panelClass": "panelClass"; "bindValue": "bindValue"; "bindLabel": "bindLabel"; "placeholder": "placeholder"; "emptyPlaceholder": "emptyPlaceholder"; "optionTemplate": "optionTemplate"; "filterFn": "filterFn"; "labelFormatFn": "labelFormatFn"; "disabled": "disabled"; "value": "value"; "required": "required"; }, { "entityRemoved": "entityRemoved"; "selected": "selected"; }, never, never, false>;
|
|
112
115
|
}
|
|
113
116
|
export {};
|