@lavalogic/scoria 0.0.44 → 0.0.45

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.
@@ -638,7 +638,7 @@ export class TableContext {
638
638
  const rightVisibleCells = $derived([...(this.columnPinning.right?.keys() ?? [])].map(makeCellFromId) ?? []);
639
639
  const centerVisibleCells = $derived(this.columnDefs
640
640
  .filter((it) => {
641
- if (this.columnPinning.left && typeof this.columnPinning.left.has == 'function') {
641
+ if (this.columnPinning.left && typeof this.columnPinning.left.has != 'function') {
642
642
  // eslint-disable-next-line no-debugger
643
643
  debugger;
644
644
  }
@@ -1617,7 +1617,7 @@ export class TableContext {
1617
1617
  const rightVisibleCells = $derived([...(this.columnPinning.right?.keys() ?? [])].map(makeCellFromId) ?? []);
1618
1618
  const centerVisibleCells = $derived(this.columnDefs
1619
1619
  .filter((it) => {
1620
- if (this.columnPinning.left && typeof this.columnPinning.left.has == 'function') {
1620
+ if (this.columnPinning.left && typeof this.columnPinning.left.has != 'function') {
1621
1621
  // eslint-disable-next-line no-debugger
1622
1622
  debugger;
1623
1623
  }
@@ -1846,7 +1846,7 @@ export class TableContext {
1846
1846
  const midDefs = [];
1847
1847
  const rightDefs = [];
1848
1848
  this.columnDefs.forEach((def) => {
1849
- if (this.columnPinning.left && typeof this.columnPinning.left.has == 'function') {
1849
+ if (this.columnPinning.left && typeof this.columnPinning.left.has != 'function') {
1850
1850
  // eslint-disable-next-line no-debugger
1851
1851
  debugger;
1852
1852
  }
@@ -1981,7 +1981,7 @@ export class TableContext {
1981
1981
  left: new Map(this.columnPinning.left &&
1982
1982
  this.columnDefs
1983
1983
  .filter((col) => {
1984
- if (this.columnPinning.left && typeof this.columnPinning.left.has == 'function') {
1984
+ if (this.columnPinning.left && typeof this.columnPinning.left.has != 'function') {
1985
1985
  // eslint-disable-next-line no-debugger
1986
1986
  debugger;
1987
1987
  }
@@ -2175,7 +2175,7 @@ function generateTableOptions(contextObj) {
2175
2175
  const headers = contextObj.columnDefs
2176
2176
  .filter((it) => {
2177
2177
  if (contextObj.columnPinning.left &&
2178
- typeof contextObj.columnPinning.left.has == 'function') {
2178
+ typeof contextObj.columnPinning.left.has != 'function') {
2179
2179
  // eslint-disable-next-line no-debugger
2180
2180
  debugger;
2181
2181
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lavalogic/scoria",
3
3
  "description": "Svelte components used for the FloWMS Web Frontend",
4
- "version": "0.0.44",
4
+ "version": "0.0.45",
5
5
  "publishConfig": {
6
6
  "access": "restricted"
7
7
  },