flameresttable 1.0.23 → 1.0.24

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flameresttable",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "main": "./src/plugin.ts",
5
5
  "repository": {
6
6
  "type": "git",
@@ -303,7 +303,12 @@ export interface IColumn {
303
303
 
304
304
  // Позиция фильтра по порядку
305
305
  filterRow?: number,
306
- filterColumn?: number
306
+ filterColumn?: number,
307
+
308
+ /**
309
+ * CSS-классы, применяемые к фильтру,
310
+ */
311
+ classes?: string,
307
312
 
308
313
  },
309
314