svelte-tably 1.0.1-next.0 → 1.0.2-next.0
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/README.md +3 -0
- package/dist/table/Table.svelte +11 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -31,6 +31,9 @@ On top of that, the library API is extensive, so the table can meet your needs.
|
|
|
31
31
|
|
|
32
32
|
`bun add -D svelte-tably`
|
|
33
33
|
|
|
34
|
+
> [!NOTE]
|
|
35
|
+
> If you do SSR, set Node version to [20 or higher](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/toSorted#browser_compatibility)
|
|
36
|
+
|
|
34
37
|
```html
|
|
35
38
|
<script lang='ts'>
|
|
36
39
|
import Table from 'svelte-tably'
|
package/dist/table/Table.svelte
CHANGED
|
@@ -963,6 +963,7 @@
|
|
|
963
963
|
background-color: hsla(0, 0%, 0%, 0.3);
|
|
964
964
|
z-index: 3;
|
|
965
965
|
opacity: 1;
|
|
966
|
+
pointer-events: all;
|
|
966
967
|
transition: 0.15s ease;
|
|
967
968
|
border: none;
|
|
968
969
|
outline: none;
|
|
@@ -980,6 +981,16 @@
|
|
|
980
981
|
opacity: 0;
|
|
981
982
|
pointer-events: none;
|
|
982
983
|
}
|
|
984
|
+
|
|
985
|
+
&[aria-hidden='true'] {
|
|
986
|
+
opacity: 0;
|
|
987
|
+
pointer-events: none;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
@starting-style {
|
|
991
|
+
opacity: 0;
|
|
992
|
+
pointer-events: none;
|
|
993
|
+
}
|
|
983
994
|
}
|
|
984
995
|
|
|
985
996
|
.sticky {
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-tably",
|
|
3
|
+
"version": "1.0.2-next.0",
|
|
3
4
|
"description": "A high performant dynamic table for Svelte 5",
|
|
4
|
-
"
|
|
5
|
+
"license": "MIT",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|
|
7
8
|
"url": "git+https://github.com/Refzlund/svelte-tably.git"
|
|
8
9
|
},
|
|
9
|
-
"license": "MIT",
|
|
10
10
|
"bugs": {
|
|
11
11
|
"url": "https://github.com/Refzlund/svelte-tably/issues"
|
|
12
12
|
},
|