@isoftdata/svelte-table 2.9.4 → 2.9.5

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/dist/Td.svelte CHANGED
@@ -30,7 +30,7 @@
30
30
  enterGoesDown?: boolean | ((ctx: { event: KeyboardEvent; tr: HTMLTableRowElement }) => void)
31
31
  /** If enabled, keypress (enter only) and click events on the Td's contents will have `stopPropagation`/`preventDefault` called on them. */
32
32
  stopPropagation?: boolean
33
- tagName?: 'TD' | 'TH'
33
+ tagName?: 'td' | 'th'
34
34
  children?: Snippet
35
35
  }
36
36
 
@@ -41,7 +41,7 @@
41
41
  align = $bindable(columnInfo.current[property]?.align),
42
42
  enterGoesDown = false,
43
43
  stopPropagation = false,
44
- tagName = 'TD',
44
+ tagName = 'td',
45
45
  children,
46
46
  ...rest
47
47
  }: Props = $props()
@@ -22,7 +22,7 @@ declare class __sveltets_Render<R extends UuidRowProps = any> {
22
22
  }) => void) | undefined;
23
23
  /** If enabled, keypress (enter only) and click events on the Td's contents will have `stopPropagation`/`preventDefault` called on them. */
24
24
  stopPropagation?: boolean;
25
- tagName?: "TD" | "TH";
25
+ tagName?: "td" | "th";
26
26
  children?: Snippet;
27
27
  };
28
28
  events(): {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isoftdata/svelte-table",
3
- "version": "2.9.4",
3
+ "version": "2.9.5",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./dist/index.d.ts",
@@ -37,7 +37,7 @@
37
37
  "prettier": "^3.5.3",
38
38
  "prettier-plugin-svelte": "^3.3.3",
39
39
  "publint": "^0.1.16",
40
- "svelte": "^5.22.1",
40
+ "svelte": "5.50.2",
41
41
  "svelte-check": "^4.1.4",
42
42
  "tslib": "^2.8.1",
43
43
  "type-fest": "^4.41.0",