unpoly-rails 3.9.3 → 3.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c6831a0bfebe95987455e4915056cf4ad5825ee247f90dfdceecf19a28eefea
4
- data.tar.gz: 35b6daab0dee551131eb7b37c6ea395412b518e5278748dce5d6d6fab6b17409
3
+ metadata.gz: db77fc71d911cda5f3d79585de6de6fdff1dda7854bf4ea11eb0fbd4da3ae0fb
4
+ data.tar.gz: 4e60b6c26eb9278c16e2b0294649e2de4c7d01b14184b35fb323c8dadee1ed03
5
5
  SHA512:
6
- metadata.gz: e3fca5ae5d5803d90bb4e245aee670303798005c4eb1d5cebb046eafe4414eec4e62e9a6bce17574a24e35a3d5cdde0320f6eca578285b53d56d915a8a8032f4
7
- data.tar.gz: eed4b071eaea2b83ebdc3e63bea474303a1ff0a0c2f4eb512b9b0a4caba877daa2b627a62799f334c5a4657f70d03d1491b57c727d0f311d4d0d479e2d7196a4
6
+ metadata.gz: 937f29deac6d335d7bad44e5b878954cb100096ba7add8be3924e216e94bdb96c9b6a6bb47f968ba55ab70605e56dcc9cf5391da5cfc384623ab91af15ec44a0
7
+ data.tar.gz: a2625bf2852695e57889d7748184c6e643e732f5c02c61ef6e0801765d7cdebc6bbba72cb51d66963d2a1dff20093b1c6720e6c0e2b3cdbd1845935046259695
@@ -9,13 +9,16 @@ up-bounds {
9
9
  }
10
10
 
11
11
  .up-focus-hidden:focus-visible {
12
- outline: none !important;
12
+ outline-color: transparent !important;
13
+ outline-style: none !important;
13
14
  }
14
15
 
15
16
  body.up-scrollbar-away {
16
- overflow-y: hidden !important;
17
17
  padding-right: calc(var(--up-scrollbar-width) + var(--up-original-padding-right)) !important;
18
18
  }
19
+ body.up-scrollbar-away, html:has(> body.up-scrollbar-away) {
20
+ overflow-y: hidden !important;
21
+ }
19
22
  body.up-scrollbar-away .up-scrollbar-away {
20
23
  right: calc(var(--up-scrollbar-width) + var(--up-original-right)) !important;
21
24
  }
@@ -5,7 +5,7 @@
5
5
  /***/ (() => {
6
6
 
7
7
  window.up = {
8
- version: '3.9.3'
8
+ version: '3.9.5'
9
9
  };
10
10
 
11
11
 
@@ -9936,7 +9936,7 @@ up.link = (function () {
9936
9936
  const DEFAULT_INTERACTIVE_ELEMENT = 'a[href], button';
9937
9937
  const config = new up.Config(() => ({
9938
9938
  followSelectors: ['[up-follow]', `a:is(${ATTRS_SUGGESTING_FOLLOW})`],
9939
- noFollowSelectors: ['[up-follow=false]', 'a[download]', 'a[target]', 'a[href^="javascript:"]', 'a[href^="mailto:"]', `a[href^="#"]:not(${ATTRS_WITH_LOCAL_HTML})`, e.crossOriginSelector('href'), e.crossOriginSelector('up-href')],
9939
+ noFollowSelectors: ['[up-follow=false]', 'a[download]', 'a[target]', 'a[href^="javascript:"]', 'a[href^="mailto:"]', 'a[href^="tel:"]', `a[href^="#"]:not(${ATTRS_WITH_LOCAL_HTML})`, e.crossOriginSelector('href'), e.crossOriginSelector('up-href')],
9940
9940
  instantSelectors: ['[up-instant]'],
9941
9941
  noInstantSelectors: ['[up-instant=false]', '[onclick]'],
9942
9942
  preloadSelectors: ['[up-preload]'],