poe-svelte-ui-lib 1.8.13 → 1.8.14

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.
@@ -274,7 +274,9 @@
274
274
  class="relative flex w-full min-w-0 items-center gap-x-2 px-2 py-1 wrap-break-word
275
275
  {i % 2 ? 'bg-(--back-color)/40' : 'bg-[#edeef3] dark:bg-[#1f2a3a]'}
276
276
  {column.align === 'center' ? 'justify-center text-center' : column.align === 'right' ? 'justify-end text-right' : 'justify-start text-left'}
277
- border-t {j !== 0 ? ' border-l ' : ''} {outline ? 'border-(--border-color)' : 'border-transparent'}"
277
+ border-t {j !== 0 ? ' border-l ' : ''} {outline ? 'border-(--border-color)' : 'border-transparent'} {column.disableSelect
278
+ ? 'select-none'
279
+ : 'select-all'}"
278
280
  >
279
281
  {#if column.type == "buttons" && column.buttons}
280
282
  {@const buttons = typeof column.buttons === "function" ? column.buttons(row) : column.buttons}
package/dist/types.d.ts CHANGED
@@ -309,6 +309,7 @@ export interface ITableHeader<T extends object> {
309
309
  width?: string;
310
310
  align?: "left" | "center" | "right";
311
311
  type?: "buttons" | "select" | "text" | "image";
312
+ disableSelect?: boolean;
312
313
  text?: {
313
314
  sortable?: boolean;
314
315
  truncated?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "poe-svelte-ui-lib",
3
- "version": "1.8.13",
3
+ "version": "1.8.14",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -42,12 +42,12 @@
42
42
  "@sveltejs/vite-plugin-svelte": "^6.2.4",
43
43
  "@tailwindcss/vite": "^4.2.1",
44
44
  "@types/maplibre-gl": "^1.14.0",
45
- "@types/node": "^25.3.5",
45
+ "@types/node": "^25.4.0",
46
46
  "prettier": "^3.8.1",
47
47
  "prettier-plugin-svelte": "^3.5.1",
48
48
  "prettier-plugin-tailwindcss": "^0.7.2",
49
49
  "publint": "^0.3.18",
50
- "svelte": "^5.53.7",
50
+ "svelte": "^5.53.9",
51
51
  "tailwindcss": "^4.2.1",
52
52
  "tsx": "^4.21.0",
53
53
  "typescript": "^5.9.3",