@lynx-js/web-elements-compat-canary 0.2.3-canary-20250309-870106fc → 0.2.4-canary-20251104-04f2c39c

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 CHANGED
@@ -1,6 +1,15 @@
1
1
  # @lynx-js/web-elements-compat
2
2
 
3
- ## 0.2.3-canary-20250309084456-870106fcb00d54a9f952be14c9bdcc592099863c
3
+ ## 0.2.4-canary-20251104093621-04f2c39cc028d88b2bc694c32433747e9a468478
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: define x-foldview-slot-drag-ng typo. ([#1915](https://github.com/lynx-family/lynx-stack/pull/1915))
8
+
9
+ - Updated dependencies [[`04f2c39`](https://github.com/lynx-family/lynx-stack/commit/04f2c39cc028d88b2bc694c32433747e9a468478), [`c282f54`](https://github.com/lynx-family/lynx-stack/commit/c282f54b636d64e9cb899faaad7dcd8e5695544a)]:
10
+ - @lynx-js/web-elements@0.8.10-canary-20251104093621-04f2c39cc028d88b2bc694c32433747e9a468478
11
+
12
+ ## 0.2.3
4
13
 
5
14
  ### Patch Changes
6
15
 
@@ -14,9 +23,6 @@
14
23
 
15
24
  The previous version of `@lynx-js/web-core` won't work with current `@lynx-js/web-core` after this change.
16
25
 
17
- - Updated dependencies [[`c617453`](https://github.com/lynx-family/lynx-stack/commit/c617453aea967aba702967deb2916b5c883f03bb), [`399a6d9`](https://github.com/lynx-family/lynx-stack/commit/399a6d973024aa8a46ab2f2f13e7c82214066f9e)]:
18
- - @lynx-js/web-elements@0.3.0-canary-20250309084456-870106fcb00d54a9f952be14c9bdcc592099863c
19
-
20
26
  ## 0.2.2
21
27
 
22
28
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lynx-js/web-elements-compat-canary",
3
- "version": "0.2.3-canary-20250309-870106fc",
3
+ "version": "0.2.4-canary-20251104-04f2c39c",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -28,7 +28,7 @@
28
28
  "**/*.css"
29
29
  ],
30
30
  "devDependencies": {
31
- "@lynx-js/web-elements": "npm:@lynx-js/web-elements-canary@0.3.0-canary-20250309-870106fc"
31
+ "@lynx-js/web-elements": "npm:@lynx-js/web-elements-canary@0.8.10-canary-20251104-04f2c39c"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "@lynx-js/web-elements": "*"
@@ -98,7 +98,7 @@ if (!supportContainerStyleQuery) {
98
98
  'scroll-view',
99
99
  'x-foldview-header-ng',
100
100
  'x-foldview-ng',
101
- 'x-foldivew-slot-drag-ng',
101
+ 'x-foldview-slot-drag-ng',
102
102
  'x-foldview-slot-ng',
103
103
  'x-foldview-toolbar-ng',
104
104
  'x-refresh-footer',
@@ -70,8 +70,15 @@
70
70
  [lynx-computed-display="linear"] > *,
71
71
  [lynx-computed-display="linear"] > lynx-wrapper > * {
72
72
  flex-shrink: 0 !important;
73
- flex-grow: calc(var(--lynx-linear-weight) / var(--lynx-linear-weight-sum))
74
- !important;
73
+ flex-grow: calc(
74
+ var(--lynx-linear-weight) /
75
+ calc(
76
+ var(--lynx-linear-weight-sum) +
77
+ (
78
+ 1 - clamp(0, var(--lynx-linear-weight-sum) * 999999, 1)
79
+ )
80
+ )
81
+ ) !important;
75
82
  flex-basis: var(--lynx-linear-weight-basis) !important;
76
83
  }
77
84