@firestitch/list 12.3.2 → 12.3.3

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.
@@ -25,6 +25,7 @@ export declare class List {
25
25
  heading: string;
26
26
  trackBy: string;
27
27
  subheading: string;
28
+ autoFocus: boolean;
28
29
  rowActionsRaw: any[];
29
30
  groupActionsRaw: any[];
30
31
  rowClass: any;
@@ -22,6 +22,7 @@ export interface FsListConfig {
22
22
  status?: boolean;
23
23
  chips?: boolean;
24
24
  column?: FsListColumnConfig;
25
+ autoFocus?: boolean;
25
26
  filterInput?: boolean;
26
27
  queryParam?: boolean;
27
28
  paging?: FsPaging | false;
@@ -3674,6 +3674,7 @@
3674
3674
  */
3675
3675
  List.prototype.initialize = function (config) {
3676
3676
  var _a;
3677
+ this.autoFocus = config.autoFocus;
3677
3678
  this.heading = config.heading;
3678
3679
  this.trackBy = config.trackBy;
3679
3680
  this.subheading = config.subheading;
@@ -3985,6 +3986,7 @@
3985
3986
  // inline: this.inlineFilters,
3986
3987
  actions: this.actions.actions,
3987
3988
  queryParam: this.queryParam,
3989
+ autofocus: this.autoFocus,
3988
3990
  sorts: sortValues,
3989
3991
  sort: sortConfig,
3990
3992
  chips: this.chips,