@invopop/popui 0.1.3 → 0.1.4

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.
@@ -26,7 +26,7 @@
26
26
 
27
27
  let {
28
28
  sortBy = '',
29
- sortDirection = '',
29
+ sortDirection = $bindable(''),
30
30
  fields = [],
31
31
  data = [],
32
32
  getActions = undefined,
@@ -1,4 +1,4 @@
1
1
  import type { BaseTableProps } from './types.js';
2
- declare const BaseTable: import("svelte").Component<BaseTableProps, {}, "selectedRows">;
2
+ declare const BaseTable: import("svelte").Component<BaseTableProps, {}, "sortDirection" | "selectedRows">;
3
3
  type BaseTable = ReturnType<typeof BaseTable>;
4
4
  export default BaseTable;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@invopop/popui",
3
3
  "license": "MIT",
4
- "version": "0.1.3",
4
+ "version": "0.1.4",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "vite build && npm run package",