@lynx-js/web-elements-compat-canary 0.2.4-canary-20251108-3bc8903d → 0.2.5-canary-20251223-71b9083d
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,13 +1,24 @@
|
|
|
1
1
|
# @lynx-js/web-elements-compat
|
|
2
2
|
|
|
3
|
-
## 0.2.
|
|
3
|
+
## 0.2.5-canary-20251223075424-71b9083d7c117666ae815e62ced38709c3d207e6
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- refactor: change code structure for improved readability and maintainability ([#2004](https://github.com/lynx-family/lynx-stack/pull/2004))
|
|
8
|
+
|
|
9
|
+
- enable noUnusedLocals for web-elements
|
|
10
|
+
- add source field for supporting @rsbuild/plugin-source-build
|
|
11
|
+
|
|
12
|
+
This is a part of #1937
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`e51b080`](https://github.com/lynx-family/lynx-stack/commit/e51b080350101c40fbae8443a23372bd3169c717)]:
|
|
15
|
+
- @lynx-js/web-elements@0.9.1-canary-20251223075424-71b9083d7c117666ae815e62ced38709c3d207e6
|
|
8
16
|
|
|
9
|
-
|
|
10
|
-
|
|
17
|
+
## 0.2.4
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- fix: define x-foldview-slot-drag-ng typo. ([#1915](https://github.com/lynx-family/lynx-stack/pull/1915))
|
|
11
22
|
|
|
12
23
|
## 0.2.3
|
|
13
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/web-elements-compat-canary",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5-canary-20251223-71b9083d",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,6 +14,10 @@
|
|
|
14
14
|
"./LinearContainer": {
|
|
15
15
|
"types": "./src/LinearContainer/LinearContainer.ts",
|
|
16
16
|
"default": "./src/LinearContainer/LinearContainer.ts"
|
|
17
|
+
},
|
|
18
|
+
"./LinearContainer/*": {
|
|
19
|
+
"types": "./src/LinearContainer/*",
|
|
20
|
+
"default": "./src/LinearContainer/*"
|
|
17
21
|
}
|
|
18
22
|
},
|
|
19
23
|
"main": "dist/index.js",
|
|
@@ -28,7 +32,7 @@
|
|
|
28
32
|
"**/*.css"
|
|
29
33
|
],
|
|
30
34
|
"devDependencies": {
|
|
31
|
-
"@lynx-js/web-elements": "npm:@lynx-js/web-elements-canary@0.
|
|
35
|
+
"@lynx-js/web-elements": "npm:@lynx-js/web-elements-canary@0.9.1-canary-20251223-71b9083d"
|
|
32
36
|
},
|
|
33
37
|
"peerDependencies": {
|
|
34
38
|
"@lynx-js/web-elements": "*"
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
|
|
63
63
|
[lynx-computed-display="flex"] > *,
|
|
64
64
|
[lynx-computed-display="flex"] > lynx-wrapper > * {
|
|
65
|
-
flex
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
65
|
+
flex: var(
|
|
66
|
+
--flex,
|
|
67
|
+
var(--flex-grow) var(--flex-shrink) var(--flex-basis)
|
|
68
|
+
);
|
|
69
69
|
}
|
|
70
70
|
[lynx-computed-display="linear"] > *,
|
|
71
71
|
[lynx-computed-display="linear"] > lynx-wrapper > * {
|