flameresttable 1.0.86 → 1.0.87

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.86",
3
+ "version": "1.0.87",
4
4
  "main": "./src/plugin.ts",
5
5
  "repository": {
6
6
  "type": "git",
@@ -167,6 +167,16 @@ export class Column implements IColumn {
167
167
  */
168
168
  classes: '',
169
169
 
170
+ /**
171
+ * Заголовок фильтра. null - заголовок равен title общему
172
+ */
173
+ title: null,
174
+
175
+ /**
176
+ * Классы для заголовка
177
+ */
178
+ titleClasses: ''
179
+
170
180
  }
171
181
 
172
182
  public Popup = {
@@ -5,7 +5,8 @@
5
5
  class="py-1 mobile:w-full mobile:px-2 mobile:block desktop:inline-block desktop:mx-2">
6
6
 
7
7
  <div class="fc flex-col ">
8
- <div class="text-xs text-slate-400">{{ col.title.toUpperCase() ?? col.name }}</div>
8
+ <div :class="col.Filter.titleClasses" class="text-xs text-slate-400">{{ col.Filter.title ??
9
+ col.title.toUpperCase() ?? col.name }}</div>
9
10
 
10
11
  <!-- ТЕКСТ -->
11
12
  <div class="mobile:w-full"