svelte-tably 1.0.2-next.0 → 1.0.2-next.1

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.
@@ -962,8 +962,8 @@
962
962
  right: 0px;
963
963
  background-color: hsla(0, 0%, 0%, 0.3);
964
964
  z-index: 3;
965
- opacity: 1;
966
- pointer-events: all;
965
+ opacity: 0;
966
+ pointer-events: none;
967
967
  transition: 0.15s ease;
968
968
  border: none;
969
969
  outline: none;
@@ -977,14 +977,9 @@
977
977
  right: 0px;
978
978
  }
979
979
 
980
- &[aria-hidden='true'] {
981
- opacity: 0;
982
- pointer-events: none;
983
- }
984
-
985
- &[aria-hidden='true'] {
986
- opacity: 0;
987
- pointer-events: none;
980
+ &[aria-hidden='false'], &:not([aria-hidden]) {
981
+ opacity: 1;
982
+ pointer-events: all;
988
983
  }
989
984
 
990
985
  @starting-style {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-tably",
3
- "version": "1.0.2-next.0",
3
+ "version": "1.0.2-next.1",
4
4
  "description": "A high performant dynamic table for Svelte 5",
5
5
  "license": "MIT",
6
6
  "repository": {