@lynx-js/web-elements-canary 0.8.4-canary-20250809-c8ce6aa3 → 0.8.5-canary-20250903-f52f8412
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 +11 -2
- package/dist/XCanvas/CanvasAttributes.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
# @lynx-js/web-elements
|
|
2
2
|
|
|
3
|
-
## 0.8.
|
|
3
|
+
## 0.8.5-canary-20250903094640-f52f8412a126ece6c49605372d460eea725757bf
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: register attr of width is set to height incorrectly ([#1649](https://github.com/lynx-family/lynx-stack/pull/1649))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies []:
|
|
10
|
+
- @lynx-js/web-elements-template@0.8.5-canary-20250903094640-f52f8412a126ece6c49605372d460eea725757bf
|
|
11
|
+
|
|
12
|
+
## 0.8.4
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
6
15
|
|
|
@@ -11,7 +20,7 @@
|
|
|
11
20
|
- Add referrerpolicy attribute support to x-image web component ([#1420](https://github.com/lynx-family/lynx-stack/pull/1420))
|
|
12
21
|
|
|
13
22
|
- Updated dependencies []:
|
|
14
|
-
- @lynx-js/web-elements-template@0.8.4
|
|
23
|
+
- @lynx-js/web-elements-template@0.8.4
|
|
15
24
|
|
|
16
25
|
## 0.8.3
|
|
17
26
|
|
|
@@ -21,7 +21,7 @@ let CanvasAttributes = (() => {
|
|
|
21
21
|
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(null) : void 0;
|
|
22
22
|
_handleName_decorators = [registerAttributeHandler('name', true)];
|
|
23
23
|
_handleHeight_decorators = [registerAttributeHandler('height', true)];
|
|
24
|
-
_handleWidth_decorators = [registerAttributeHandler('
|
|
24
|
+
_handleWidth_decorators = [registerAttributeHandler('width', true)];
|
|
25
25
|
__esDecorate(null, null, _handleName_decorators, { kind: "field", name: "handleName", static: false, private: false, access: { has: obj => "handleName" in obj, get: obj => obj.handleName, set: (obj, value) => { obj.handleName = value; } }, metadata: _metadata }, _handleName_initializers, _handleName_extraInitializers);
|
|
26
26
|
__esDecorate(null, null, _handleHeight_decorators, { kind: "field", name: "handleHeight", static: false, private: false, access: { has: obj => "handleHeight" in obj, get: obj => obj.handleHeight, set: (obj, value) => { obj.handleHeight = value; } }, metadata: _metadata }, _handleHeight_initializers, _handleHeight_extraInitializers);
|
|
27
27
|
__esDecorate(null, null, _handleWidth_decorators, { kind: "field", name: "handleWidth", static: false, private: false, access: { has: obj => "handleWidth" in obj, get: obj => obj.handleWidth, set: (obj, value) => { obj.handleWidth = value; } }, metadata: _metadata }, _handleWidth_initializers, _handleWidth_extraInitializers);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/web-elements-canary",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.5-canary-20250903-f52f8412",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
],
|
|
102
102
|
"dependencies": {
|
|
103
103
|
"@lynx-js/web-elements-reactive": "npm:@lynx-js/web-elements-reactive-canary@0.2.2",
|
|
104
|
-
"@lynx-js/web-elements-template": "npm:@lynx-js/web-elements-template-canary@0.8.
|
|
104
|
+
"@lynx-js/web-elements-template": "npm:@lynx-js/web-elements-template-canary@0.8.5-canary-20250903-f52f8412"
|
|
105
105
|
},
|
|
106
106
|
"devDependencies": {
|
|
107
107
|
"tslib": "^2.8.1"
|