flameresttable 1.0.88 → 1.0.90
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 +1 -1
- package/src/Table/Columns.ts +2 -2
package/package.json
CHANGED
package/src/Table/Columns.ts
CHANGED
|
@@ -367,12 +367,12 @@ export interface IColumn {
|
|
|
367
367
|
/**
|
|
368
368
|
* Заголовок фильтра. null - заголовок равен title общему
|
|
369
369
|
*/
|
|
370
|
-
title
|
|
370
|
+
title?: string | null,
|
|
371
371
|
|
|
372
372
|
/**
|
|
373
373
|
* Классы для заголовка
|
|
374
374
|
*/
|
|
375
|
-
titleClasses
|
|
375
|
+
titleClasses?: string
|
|
376
376
|
|
|
377
377
|
|
|
378
378
|
},
|