juxscript 1.1.214 → 1.1.215

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.
@@ -426,7 +426,7 @@ export class DataFrameComponent extends BaseComponent {
426
426
  striped: this._tableOptions.striped,
427
427
  hoverable: this._tableOptions.hoverable,
428
428
  sortable: this._tableOptions.sortable,
429
- filterable: false,
429
+ filterable: this._tableOptions.filterable, // ✅ Use actual option
430
430
  paginated: this._tableOptions.paginated,
431
431
  rowsPerPage: this._tableOptions.rowsPerPage
432
432
  });
@@ -983,7 +983,7 @@ export class DataFrameComponent extends BaseComponent {
983
983
  striped: this._tableOptions.striped,
984
984
  hoverable: this._tableOptions.hoverable,
985
985
  sortable: this._tableOptions.sortable,
986
- filterable: false,
986
+ filterable: this._tableOptions.filterable, // ✅ Use actual option
987
987
  paginated: this._tableOptions.paginated,
988
988
  rowsPerPage: this._tableOptions.rowsPerPage
989
989
  });
@@ -518,7 +518,7 @@ export class DataFrameComponent extends BaseComponent<DataFrameState> {
518
518
  striped: this._tableOptions.striped,
519
519
  hoverable: this._tableOptions.hoverable,
520
520
  sortable: this._tableOptions.sortable,
521
- filterable: false,
521
+ filterable: this._tableOptions.filterable, // ✅ Use actual option
522
522
  paginated: this._tableOptions.paginated,
523
523
  rowsPerPage: this._tableOptions.rowsPerPage
524
524
  });
@@ -1158,7 +1158,7 @@ export class DataFrameComponent extends BaseComponent<DataFrameState> {
1158
1158
  striped: this._tableOptions.striped,
1159
1159
  hoverable: this._tableOptions.hoverable,
1160
1160
  sortable: this._tableOptions.sortable,
1161
- filterable: false,
1161
+ filterable: this._tableOptions.filterable, // ✅ Use actual option
1162
1162
  paginated: this._tableOptions.paginated,
1163
1163
  rowsPerPage: this._tableOptions.rowsPerPage
1164
1164
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juxscript",
3
- "version": "1.1.214",
3
+ "version": "1.1.215",
4
4
  "type": "module",
5
5
  "description": "A JavaScript UX authorship platform",
6
6
  "main": "index.js",