@isoftdata/svelte-table 2.9.0 → 2.9.2

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.
@@ -268,9 +268,9 @@
268
268
 
269
269
  <style>
270
270
  .hovered-row-asc {
271
- border-top: 5px solid var(--dark);
271
+ border-top: 5px solid var(--dark, var(--bs-dark, black));
272
272
  }
273
273
  .hovered-row-desc {
274
- border-bottom: 5px solid var(--dark);
274
+ border-bottom: 5px solid var(--dark, var(--bs-dark, black));
275
275
  }
276
276
  </style>
package/dist/Table.svelte CHANGED
@@ -782,7 +782,7 @@
782
782
  property: column.property,
783
783
  value:
784
784
  column.footer.formatCurrency && (typeof value === 'string' || typeof value === 'number')
785
- ? formatCurrency(value, {})
785
+ ? formatCurrency(value)
786
786
  : value,
787
787
  }
788
788
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isoftdata/svelte-table",
3
- "version": "2.9.0",
3
+ "version": "2.9.2",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./dist/index.d.ts",
@@ -55,7 +55,7 @@
55
55
  "@isoftdata/svelte-input": "^2.1.1",
56
56
  "@isoftdata/svelte-store-user-local-writable": "^2.0.0",
57
57
  "@isoftdata/utility-bootstrap": "^2.2.1",
58
- "@isoftdata/utility-currency": "^2.0.2",
58
+ "@isoftdata/utility-currency": "^3.0.0",
59
59
  "@isoftdata/utility-string": "^2.1.0",
60
60
  "@lukeed/uuid": "^2.0.1",
61
61
  "klona": "^2.0.6",