@lynx-js/web-elements-canary 0.8.9-canary-20251013-e500bc6e → 0.8.9-canary-20251013-e42b906a
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 +4 -2
- package/dist/XText/XText.js +2 -1
- package/package.json +2 -2
- package/src/XText/x-text.css +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
# @lynx-js/web-elements
|
|
2
2
|
|
|
3
|
-
## 0.8.9-canary-
|
|
3
|
+
## 0.8.9-canary-20251013055913-e42b906ae0d771739e0e1897def646ad159274eb
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- textarea placeholder inherits font-size by default ([#1874](https://github.com/lynx-family/lynx-stack/pull/1874))
|
|
8
8
|
|
|
9
|
+
- feat: support <x-text text="content"></x-text> ([#1881](https://github.com/lynx-family/lynx-stack/pull/1881))
|
|
10
|
+
|
|
9
11
|
- Updated dependencies []:
|
|
10
|
-
- @lynx-js/web-elements-template@0.8.9-canary-
|
|
12
|
+
- @lynx-js/web-elements-template@0.8.9-canary-20251013055913-e42b906ae0d771739e0e1897def646ad159274eb
|
|
11
13
|
|
|
12
14
|
## 0.8.8
|
|
13
15
|
|
package/dist/XText/XText.js
CHANGED
|
@@ -7,10 +7,11 @@ import { __esDecorate, __runInitializers } from "tslib";
|
|
|
7
7
|
import { Component } from '@lynx-js/web-elements-reactive';
|
|
8
8
|
import { XTextTruncation } from './XTextTruncation.js';
|
|
9
9
|
import { ScrollIntoView } from '../ScrollView/ScrollIntoView.js';
|
|
10
|
+
import { RawTextAttributes } from './RawText.js';
|
|
10
11
|
import { CommonEventsAndMethods, layoutChangeTarget, } from '../common/CommonEventsAndMethods.js';
|
|
11
12
|
import { templateXText } from '@lynx-js/web-elements-template';
|
|
12
13
|
let XText = (() => {
|
|
13
|
-
let _classDecorators = [Component('x-text', [CommonEventsAndMethods, XTextTruncation], templateXText)];
|
|
14
|
+
let _classDecorators = [Component('x-text', [CommonEventsAndMethods, XTextTruncation, RawTextAttributes], templateXText)];
|
|
14
15
|
let _classDescriptor;
|
|
15
16
|
let _classExtraInitializers = [];
|
|
16
17
|
let _classThis;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/web-elements-canary",
|
|
3
|
-
"version": "0.8.9-canary-20251013-
|
|
3
|
+
"version": "0.8.9-canary-20251013-e42b906a",
|
|
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.9-canary-20251013-
|
|
104
|
+
"@lynx-js/web-elements-template": "npm:@lynx-js/web-elements-template-canary@0.8.9-canary-20251013-e42b906a"
|
|
105
105
|
},
|
|
106
106
|
"devDependencies": {
|
|
107
107
|
"tslib": "^2.8.1"
|
package/src/XText/x-text.css
CHANGED
|
@@ -240,7 +240,8 @@ inline-text > lynx-wrapper > raw-text {
|
|
|
240
240
|
display: contents !important;
|
|
241
241
|
}
|
|
242
242
|
|
|
243
|
-
raw-text:not(:defined)::before
|
|
243
|
+
raw-text:not(:defined)::before,
|
|
244
|
+
x-text:not(:has(x-text, raw-text)):not(:defined)::before {
|
|
244
245
|
content: attr(text);
|
|
245
246
|
display: contents;
|
|
246
247
|
}
|