halov 0.26.306 → 0.26.401

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.
@@ -241,3 +241,15 @@ export interface PrintModalArgs {
241
241
  copies: number;
242
242
  additionParams?: Record<string, any>;
243
243
  }
244
+ export interface DataGridConfigColumn {
245
+ columnId: string;
246
+ title: string;
247
+ customTitle?: string;
248
+ visible: boolean;
249
+ sortIndex: number;
250
+ }
251
+ export interface DataGridConfig {
252
+ dataGridId: string;
253
+ columns: Array<DataGridConfigColumn>;
254
+ pageSize: number;
255
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "halov",
3
- "version": "0.26.0306",
3
+ "version": "0.26.0401",
4
4
  "type": "module",
5
5
  "main": "dist/halov.umd.cjs",
6
6
  "module": "dist/halov.es.js",