@decaf-ts/for-angular 0.0.62 → 0.0.63
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/index.d.ts
CHANGED
|
@@ -5092,6 +5092,17 @@ declare class ListComponent extends NgxComponentDirective implements OnInit, OnD
|
|
|
5092
5092
|
* @memberOf ListComponent
|
|
5093
5093
|
*/
|
|
5094
5094
|
showSearchbar: boolean;
|
|
5095
|
+
/**
|
|
5096
|
+
* @description Controls the visibility of the search bar.
|
|
5097
|
+
* @summary When set to true, displays a search bar at the top of the list that allows
|
|
5098
|
+
* users to filter the list items. The search functionality works by filtering the
|
|
5099
|
+
* existing data or by triggering a new data fetch with search parameters.
|
|
5100
|
+
*
|
|
5101
|
+
* @type {boolean}
|
|
5102
|
+
* @default true
|
|
5103
|
+
* @memberOf ListComponent
|
|
5104
|
+
*/
|
|
5105
|
+
searchbarPlaceholder: string;
|
|
5095
5106
|
/**
|
|
5096
5107
|
* @description Direct data input for the list component.
|
|
5097
5108
|
* @summary Provides a way to directly pass data to the list component instead of
|
|
@@ -5806,7 +5817,7 @@ declare class ListComponent extends NgxComponentDirective implements OnInit, OnD
|
|
|
5806
5817
|
mapResults(data: KeyValue[]): KeyValue[];
|
|
5807
5818
|
parseSearchValue(): string | IFilterQuery;
|
|
5808
5819
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
|
|
5809
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "ngx-decaf-list", never, { "type": { "alias": "type"; "required": false; }; "showSearchbar": { "alias": "showSearchbar"; "required": false; }; "data": { "alias": "data"; "required": false; }; "source": { "alias": "source"; "required": false; }; "start": { "alias": "start"; "required": false; }; "limit": { "alias": "limit"; "required": false; }; "loadMoreData": { "alias": "loadMoreData"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "inset": { "alias": "inset"; "required": false; }; "scrollThreshold": { "alias": "scrollThreshold"; "required": false; }; "scrollPosition": { "alias": "scrollPosition"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "showRefresher": { "alias": "showRefresher"; "required": false; }; "createButton": { "alias": "createButton"; "required": false; }; "loadingSpinner": { "alias": "loadingSpinner"; "required": false; }; "enableFilter": { "alias": "enableFilter"; "required": false; }; "sortBy": { "alias": "sortBy"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "disableSort": { "alias": "disableSort"; "required": false; }; "empty": { "alias": "empty"; "required": false; }; }, { "clickEvent": "clickEvent"; }, never, ["*"], true, never>;
|
|
5820
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "ngx-decaf-list", never, { "type": { "alias": "type"; "required": false; }; "showSearchbar": { "alias": "showSearchbar"; "required": false; }; "searchbarPlaceholder": { "alias": "searchbarPlaceholder"; "required": false; }; "data": { "alias": "data"; "required": false; }; "source": { "alias": "source"; "required": false; }; "start": { "alias": "start"; "required": false; }; "limit": { "alias": "limit"; "required": false; }; "loadMoreData": { "alias": "loadMoreData"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "inset": { "alias": "inset"; "required": false; }; "scrollThreshold": { "alias": "scrollThreshold"; "required": false; }; "scrollPosition": { "alias": "scrollPosition"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "showRefresher": { "alias": "showRefresher"; "required": false; }; "createButton": { "alias": "createButton"; "required": false; }; "loadingSpinner": { "alias": "loadingSpinner"; "required": false; }; "enableFilter": { "alias": "enableFilter"; "required": false; }; "sortBy": { "alias": "sortBy"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "disableSort": { "alias": "disableSort"; "required": false; }; "empty": { "alias": "empty"; "required": false; }; }, { "clickEvent": "clickEvent"; }, never, ["*"], true, never>;
|
|
5810
5821
|
}
|
|
5811
5822
|
|
|
5812
5823
|
/**
|
|
@@ -6567,7 +6578,7 @@ declare class SearchbarComponent extends NgxComponentDirective implements OnInit
|
|
|
6567
6578
|
* @default "off"
|
|
6568
6579
|
* @memberOf SearchbarComponent
|
|
6569
6580
|
*/
|
|
6570
|
-
autocorrect:
|
|
6581
|
+
autocorrect: 'on' | 'off';
|
|
6571
6582
|
/**
|
|
6572
6583
|
* @description Whether the searchbar should animate.
|
|
6573
6584
|
* @summary Controls the animation behavior of the searchbar during appearance and disappearance transitions.
|
|
@@ -6630,7 +6641,7 @@ declare class SearchbarComponent extends NgxComponentDirective implements OnInit
|
|
|
6630
6641
|
* @default "enter"
|
|
6631
6642
|
* @memberOf SearchbarComponent
|
|
6632
6643
|
*/
|
|
6633
|
-
enterkeyhint:
|
|
6644
|
+
enterkeyhint: 'search' | 'enter' | 'done' | 'go' | 'next' | 'previous' | 'send' | undefined;
|
|
6634
6645
|
/**
|
|
6635
6646
|
* @description The input mode for the searchbar.
|
|
6636
6647
|
* @summary Specifies the type of data that might be entered by the user while editing the element or its contents.
|
|
@@ -6638,7 +6649,7 @@ declare class SearchbarComponent extends NgxComponentDirective implements OnInit
|
|
|
6638
6649
|
* @default 'search'
|
|
6639
6650
|
* @memberOf SearchbarComponent
|
|
6640
6651
|
*/
|
|
6641
|
-
inputmode:
|
|
6652
|
+
inputmode: 'text' | 'search' | 'none' | 'email' | 'tel' | 'url' | 'numeric' | 'decimal' | undefined;
|
|
6642
6653
|
/**
|
|
6643
6654
|
* @description The placeholder for the searchbar input.
|
|
6644
6655
|
* @summary Specifies the placeholder text to be displayed in the searchbar when it's empty.
|
|
@@ -6662,7 +6673,7 @@ declare class SearchbarComponent extends NgxComponentDirective implements OnInit
|
|
|
6662
6673
|
* @default "never"
|
|
6663
6674
|
* @memberOf SearchbarComponent
|
|
6664
6675
|
*/
|
|
6665
|
-
showCancelButton:
|
|
6676
|
+
showCancelButton: 'always' | 'focus' | 'never';
|
|
6666
6677
|
/**
|
|
6667
6678
|
* @description When to show the clear button.
|
|
6668
6679
|
* @summary Controls the visibility of the clear button in different states of the searchbar.
|
|
@@ -6670,7 +6681,7 @@ declare class SearchbarComponent extends NgxComponentDirective implements OnInit
|
|
|
6670
6681
|
* @default "focus"
|
|
6671
6682
|
* @memberOf SearchbarComponent
|
|
6672
6683
|
*/
|
|
6673
|
-
showClearButton:
|
|
6684
|
+
showClearButton: 'always' | 'focus' | 'never';
|
|
6674
6685
|
/**
|
|
6675
6686
|
* @description Whether to enable spellcheck on the searchbar input.
|
|
6676
6687
|
* @summary Controls whether the browser's spellcheck feature is enabled for the searchbar input.
|
|
@@ -6686,7 +6697,7 @@ declare class SearchbarComponent extends NgxComponentDirective implements OnInit
|
|
|
6686
6697
|
* @default "search"
|
|
6687
6698
|
* @memberOf SearchbarComponent
|
|
6688
6699
|
*/
|
|
6689
|
-
type: 'number' |
|
|
6700
|
+
type: 'number' | 'text' | 'search' | 'email' | 'password' | 'tel' | 'url' | undefined;
|
|
6690
6701
|
/**
|
|
6691
6702
|
* @description The value of the searchbar input.
|
|
6692
6703
|
* @summary Specifies the current value of the searchbar input.
|