accessify-widget 0.3.23 → 0.3.25
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/accessify.min.js +1 -1
- package/dist/accessify.min.js.map +1 -1
- package/dist/accessify.mjs +1 -1
- package/dist/{index-DtfWwkIc.js → index-to_f6xxD.js} +10 -9
- package/dist/{index-DtfWwkIc.js.map → index-to_f6xxD.js.map} +1 -1
- package/dist/{keyboard-nav-BYxQr4yQ.js → keyboard-nav-OIFhhVgD.js} +2 -2
- package/dist/{keyboard-nav-BYxQr4yQ.js.map → keyboard-nav-OIFhhVgD.js.map} +1 -1
- package/dist/loader.min.js +1 -1
- package/dist/{page-structure-qtN1Cycs.js → page-structure-Cx0dz7cA.js} +2 -2
- package/dist/{page-structure-qtN1Cycs.js.map → page-structure-Cx0dz7cA.js.map} +1 -1
- package/dist/widget.js +1 -1
- package/dist/widget.js.map +1 -1
- package/package.json +1 -1
package/dist/accessify.mjs
CHANGED
|
@@ -6641,14 +6641,14 @@ function FeatureGrid($$anchor, $$props) {
|
|
|
6641
6641
|
const FEATURE_LOADERS = {
|
|
6642
6642
|
contrast: () => import("./contrast-CqsICAkU.js"),
|
|
6643
6643
|
"text-size": () => import("./text-size-m_mHNPWo.js"),
|
|
6644
|
-
"keyboard-nav": () => import("./keyboard-nav-
|
|
6644
|
+
"keyboard-nav": () => import("./keyboard-nav-OIFhhVgD.js"),
|
|
6645
6645
|
"link-highlight": () => import("./link-highlight-DBGm067Y.js"),
|
|
6646
6646
|
"reading-guide": () => import("./reading-guide-VT8NciIL.js"),
|
|
6647
6647
|
"reading-mask": () => import("./reading-mask-BABChuCz.js"),
|
|
6648
6648
|
"animation-stop": () => import("./animation-stop-C0MwseK0.js"),
|
|
6649
6649
|
"hide-images": () => import("./hide-images-B_LeCBcd.js"),
|
|
6650
6650
|
"big-cursor": () => import("./big-cursor-B2UKu9dQ.js"),
|
|
6651
|
-
"page-structure": () => import("./page-structure-
|
|
6651
|
+
"page-structure": () => import("./page-structure-Cx0dz7cA.js"),
|
|
6652
6652
|
tts: () => import("./tts-CjszLRnb.js"),
|
|
6653
6653
|
"text-simplify": () => import("./text-simplify-BH_5q_V4.js"),
|
|
6654
6654
|
"alt-text": () => Promise.resolve().then(() => altText)
|
|
@@ -7787,7 +7787,7 @@ function createWidgetStyles(config2) {
|
|
|
7787
7787
|
position: fixed; top: 0; bottom: 0;
|
|
7788
7788
|
${isRight ? "right: 0" : "left: 0"};
|
|
7789
7789
|
z-index: ${z - 1};
|
|
7790
|
-
width: min(${panelW}, 100vw); height: 100vh;
|
|
7790
|
+
width: min(${panelW}, 100vw); height: 100vh; height: 100dvh;
|
|
7791
7791
|
display: flex; flex-direction: column;
|
|
7792
7792
|
border-radius: ${panelRadius};
|
|
7793
7793
|
background: var(--surface);
|
|
@@ -7930,6 +7930,7 @@ function createWidgetStyles(config2) {
|
|
|
7930
7930
|
/* ─── Scrollable Body ─── */
|
|
7931
7931
|
.accessify-body {
|
|
7932
7932
|
flex: 1 1 auto;
|
|
7933
|
+
min-height: 0;
|
|
7933
7934
|
display: flex; flex-direction: column; gap: var(--gap);
|
|
7934
7935
|
padding: var(--gap) var(--pad);
|
|
7935
7936
|
overflow-y: auto; overscroll-behavior: contain;
|
|
@@ -8056,9 +8057,9 @@ function createWidgetStyles(config2) {
|
|
|
8056
8057
|
.accessify-card-info:hover, .accessify-card-info:focus-visible { opacity: 1; color: var(--accent); }
|
|
8057
8058
|
.accessify-card-tooltip {
|
|
8058
8059
|
display: none; position: absolute;
|
|
8059
|
-
|
|
8060
|
-
width:
|
|
8061
|
-
border-radius: 10px; background: #2a3158; color:
|
|
8060
|
+
bottom: calc(100% + 6px); ${isRight ? "right: 0" : "left: 0"};
|
|
8061
|
+
width: 200px; max-width: 240px; padding: 10px 12px;
|
|
8062
|
+
border-radius: 10px; background: #2a3158; color: #f1f5f9;
|
|
8062
8063
|
font-size: 12px; font-weight: 500; line-height: 1.4;
|
|
8063
8064
|
text-align: left; white-space: normal;
|
|
8064
8065
|
box-shadow: 0 6px 24px rgba(0,0,0,0.5);
|
|
@@ -8069,8 +8070,8 @@ function createWidgetStyles(config2) {
|
|
|
8069
8070
|
display: block;
|
|
8070
8071
|
}
|
|
8071
8072
|
.accessify-card-tooltip::before {
|
|
8072
|
-
content: ''; position: absolute;
|
|
8073
|
-
border: 5px solid transparent; border-
|
|
8073
|
+
content: ''; position: absolute; top: 100%; ${isRight ? "right: 4px" : "left: 4px"};
|
|
8074
|
+
border: 5px solid transparent; border-top-color: #2a3158;
|
|
8074
8075
|
}
|
|
8075
8076
|
|
|
8076
8077
|
/* ─── Section Divider ─── */
|
|
@@ -8957,4 +8958,4 @@ export {
|
|
|
8957
8958
|
init as i,
|
|
8958
8959
|
t
|
|
8959
8960
|
};
|
|
8960
|
-
//# sourceMappingURL=index-
|
|
8961
|
+
//# sourceMappingURL=index-to_f6xxD.js.map
|