@lynx-js/web-core-server-canary 0.16.1-canary-20250911-1d97fce6 → 0.16.1-canary-20250911-d6183049
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/CHANGELOG.md +1 -1
- package/dist/index.js +23 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -2459,13 +2459,35 @@ const templateXOverlayNg = `<style>
|
|
|
2459
2459
|
right: 0;
|
|
2460
2460
|
bottom: 0;
|
|
2461
2461
|
position: fixed;
|
|
2462
|
+
overscroll-behavior: contain;
|
|
2463
|
+
scrollbar-width: none;
|
|
2464
|
+
}
|
|
2465
|
+
#dialog[open]::-webkit-scrollbar {
|
|
2466
|
+
display: none;
|
|
2462
2467
|
}
|
|
2463
2468
|
#dialog::backdrop {
|
|
2464
2469
|
background-color: transparent;
|
|
2465
2470
|
}
|
|
2471
|
+
.overlay-inner {
|
|
2472
|
+
position: sticky;
|
|
2473
|
+
top: 0;
|
|
2474
|
+
width: 100%;
|
|
2475
|
+
height: 100%;
|
|
2476
|
+
pointer-events: none;
|
|
2477
|
+
}
|
|
2478
|
+
.overlay-inner > * {
|
|
2479
|
+
pointer-events: auto;
|
|
2480
|
+
}
|
|
2481
|
+
.overlay-placeholder {
|
|
2482
|
+
width: 100%;
|
|
2483
|
+
height: 1px;
|
|
2484
|
+
}
|
|
2466
2485
|
</style>
|
|
2467
2486
|
<dialog id="dialog" part="dialog">
|
|
2468
|
-
<
|
|
2487
|
+
<div class="overlay-inner">
|
|
2488
|
+
<slot></slot>
|
|
2489
|
+
</div>
|
|
2490
|
+
<div class="overlay-placeholder"></div>
|
|
2469
2491
|
</dialog>`;
|
|
2470
2492
|
const templateXRefreshView = `<style>
|
|
2471
2493
|
.bounce-container {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/web-core-server-canary",
|
|
3
|
-
"version": "0.16.1-canary-20250911-
|
|
3
|
+
"version": "0.16.1-canary-20250911-d6183049",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [],
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"rsbuild-plugin-arethetypeswrong": "0.1.1",
|
|
27
27
|
"rsbuild-plugin-publint": "0.3.3",
|
|
28
|
-
"@lynx-js/web-constants": "npm:@lynx-js/web-constants-canary@0.16.1-canary-20250911-1d97fce6",
|
|
29
28
|
"@lynx-js/offscreen-document": "npm:@lynx-js/offscreen-document-canary@0.1.4",
|
|
30
|
-
"@lynx-js/web-
|
|
31
|
-
"@lynx-js/web-mainthread-apis": "npm:@lynx-js/web-mainthread-apis-canary@0.16.1-canary-20250911-
|
|
32
|
-
"@lynx-js/web-worker-rpc": "npm:@lynx-js/web-worker-rpc-canary@0.16.1-canary-20250911-
|
|
29
|
+
"@lynx-js/web-constants": "npm:@lynx-js/web-constants-canary@0.16.1-canary-20250911-d6183049",
|
|
30
|
+
"@lynx-js/web-mainthread-apis": "npm:@lynx-js/web-mainthread-apis-canary@0.16.1-canary-20250911-d6183049",
|
|
31
|
+
"@lynx-js/web-worker-rpc": "npm:@lynx-js/web-worker-rpc-canary@0.16.1-canary-20250911-d6183049",
|
|
32
|
+
"@lynx-js/web-elements-template": "npm:@lynx-js/web-elements-template-canary@0.8.6-canary-20250911-d6183049"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "rslib build",
|