@indigina/ui-kit 1.1.411 → 1.1.412

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/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.411",
10
+ "version": "1.1.412",
11
11
  "peerDependencies": {
12
12
  "@angular/common": ">=21.0.0 <22.0.0",
13
13
  "@angular/core": ">=21.0.0 <22.0.0",
@@ -2901,11 +2901,11 @@ declare class KitGridComponent<T> {
2901
2901
  /**
2902
2902
  * Sets the data of the grid. Allows user to implement data operations manually
2903
2903
  */
2904
- data?: T[] | KitDataResult<T>;
2904
+ readonly data: InputSignal<T[] | KitDataResult<T> | undefined>;
2905
2905
  /**
2906
2906
  * Sets the data of the grid. Allows user to implement data operations automatically
2907
2907
  */
2908
- gridDataBinding?: T[];
2908
+ readonly gridDataBinding: InputSignal<T[] | undefined>;
2909
2909
  /**
2910
2910
  * Enables the sorting of the grid columns
2911
2911
  */
@@ -2925,11 +2925,11 @@ declare class KitGridComponent<T> {
2925
2925
  /**
2926
2926
  * Defines the number of records to be skipped by the pager
2927
2927
  */
2928
- skip: number;
2928
+ readonly skip: ModelSignal<number>;
2929
2929
  /**
2930
2930
  * Specifies if the loading indicator of the grid will be displayed
2931
2931
  */
2932
- loading: boolean;
2932
+ readonly loading: ModelSignal<boolean>;
2933
2933
  /**
2934
2934
  * Function to determine if the detail template should be visible
2935
2935
  */
@@ -3004,8 +3004,10 @@ declare class KitGridComponent<T> {
3004
3004
  saveAsExcel(): void;
3005
3005
  private collapseAllRows;
3006
3006
  private getPageSizes;
3007
+ private handleDataChange;
3008
+ private handleGridDataBindingChange;
3007
3009
  static ɵfac: i0.ɵɵFactoryDeclaration<KitGridComponent<any>, never>;
3008
- static ɵcmp: i0.ɵɵComponentDeclaration<KitGridComponent<any>, "kit-grid", never, { "data": { "alias": "data"; "required": false; }; "gridDataBinding": { "alias": "gridDataBinding"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "pageable": { "alias": "pageable"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "detailTemplateShowIf": { "alias": "detailTemplateShowIf"; "required": false; }; "detailTemplateExpandDisableIf": { "alias": "detailTemplateExpandDisableIf"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "footerTitle": { "alias": "footerTitle"; "required": false; }; "footerData": { "alias": "footerData"; "required": false; }; "pdfOptions": { "alias": "pdfOptions"; "required": false; }; "pagerButtonCount": { "alias": "pagerButtonCount"; "required": false; "isSignal": true; }; "pageSizes": { "alias": "pageSizes"; "required": false; "isSignal": true; }; "pagerInfoText": { "alias": "pagerInfoText"; "required": false; "isSignal": true; }; "noRecordsText": { "alias": "noRecordsText"; "required": false; "isSignal": true; }; "resizable": { "alias": "resizable"; "required": false; "isSignal": true; }; "gridDetailTemplate": { "alias": "gridDetailTemplate"; "required": false; "isSignal": true; }; "rowClassFn": { "alias": "rowClassFn"; "required": false; "isSignal": true; }; }, { "pageChanged": "pageChanged"; "sortChanged": "sortChanged"; "dataStateChanged": "dataStateChanged"; "detailExpanded": "detailExpanded"; "detailCollapsed": "detailCollapsed"; "cellClicked": "cellClicked"; "excelExport": "excelExport"; }, ["columnsContent"], never, true, never>;
3010
+ static ɵcmp: i0.ɵɵComponentDeclaration<KitGridComponent<any>, "kit-grid", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "gridDataBinding": { "alias": "gridDataBinding"; "required": false; "isSignal": true; }; "sortable": { "alias": "sortable"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "pageable": { "alias": "pageable"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "skip": { "alias": "skip"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "detailTemplateShowIf": { "alias": "detailTemplateShowIf"; "required": false; }; "detailTemplateExpandDisableIf": { "alias": "detailTemplateExpandDisableIf"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "footerTitle": { "alias": "footerTitle"; "required": false; }; "footerData": { "alias": "footerData"; "required": false; }; "pdfOptions": { "alias": "pdfOptions"; "required": false; }; "pagerButtonCount": { "alias": "pagerButtonCount"; "required": false; "isSignal": true; }; "pageSizes": { "alias": "pageSizes"; "required": false; "isSignal": true; }; "pagerInfoText": { "alias": "pagerInfoText"; "required": false; "isSignal": true; }; "noRecordsText": { "alias": "noRecordsText"; "required": false; "isSignal": true; }; "resizable": { "alias": "resizable"; "required": false; "isSignal": true; }; "gridDetailTemplate": { "alias": "gridDetailTemplate"; "required": false; "isSignal": true; }; "rowClassFn": { "alias": "rowClassFn"; "required": false; "isSignal": true; }; }, { "skip": "skipChange"; "loading": "loadingChange"; "pageChanged": "pageChanged"; "sortChanged": "sortChanged"; "dataStateChanged": "dataStateChanged"; "detailExpanded": "detailExpanded"; "detailCollapsed": "detailCollapsed"; "cellClicked": "cellClicked"; "excelExport": "excelExport"; }, ["columnsContent"], never, true, never>;
3009
3011
  }
3010
3012
 
3011
3013
  declare class KitGridCellTemplateDirective {