@lynx-js/web-elements-canary 0.8.8 → 0.8.9-canary-20251013-e500bc6e

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,5 +1,14 @@
1
1
  # @lynx-js/web-elements
2
2
 
3
+ ## 0.8.9-canary-20251013040601-e500bc6ee865fe1ab17c2ace77c3bcf8462f74c5
4
+
5
+ ### Patch Changes
6
+
7
+ - textarea placeholder inherits font-size by default ([#1874](https://github.com/lynx-family/lynx-stack/pull/1874))
8
+
9
+ - Updated dependencies []:
10
+ - @lynx-js/web-elements-template@0.8.9-canary-20251013040601-e500bc6ee865fe1ab17c2ace77c3bcf8462f74c5
11
+
3
12
  ## 0.8.8
4
13
 
5
14
  ### Patch Changes
@@ -621,8 +630,8 @@
621
630
  For compating usage, `@lynx-js/web-elements-compat/LinearContainer` is provided.
622
631
 
623
632
  ```javascript
624
- import '@lynx-js/web-elements-compat/LinearContainer';
625
- import '@lynx-js/web-elements/all';
633
+ import "@lynx-js/web-elements-compat/LinearContainer";
634
+ import "@lynx-js/web-elements/all";
626
635
  ```
627
636
 
628
637
  - f8d1d98: break: rename the `blur` and `focus` event to `lynxblur` and `lynxfocus` for x-input element
@@ -644,11 +653,11 @@
644
653
  There is also a simple way to use this feature
645
654
 
646
655
  ```javascript
647
- import { LynxCard } from '@lynx-js/web-core';
648
- import { loadElement } from '@lynx-js/web-elements/lazy';
649
- import '@lynx-js/web-elements/index.css';
650
- import '@lynx-js/web-core/index.css';
651
- import './index.css';
656
+ import { LynxCard } from "@lynx-js/web-core";
657
+ import { loadElement } from "@lynx-js/web-elements/lazy";
658
+ import "@lynx-js/web-elements/index.css";
659
+ import "@lynx-js/web-core/index.css";
660
+ import "./index.css";
652
661
 
653
662
  const lynxcard = new LynxCard({
654
663
  ...beforeConfigs,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lynx-js/web-elements-canary",
3
- "version": "0.8.8",
3
+ "version": "0.8.9-canary-20251013-e500bc6e",
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.8"
104
+ "@lynx-js/web-elements-template": "npm:@lynx-js/web-elements-template-canary@0.8.9-canary-20251013-e500bc6e"
105
105
  },
106
106
  "devDependencies": {
107
107
  "tslib": "^2.8.1"
@@ -5,6 +5,7 @@
5
5
  */
6
6
  x-input {
7
7
  display: contents;
8
+ font-size: 14px;
8
9
  }
9
10
 
10
11
  x-input::part(form) {
@@ -32,13 +33,12 @@ x-input::part(input), x-input::part(form) {
32
33
 
33
34
  x-input::part(input) {
34
35
  --placeholder-color: grey;
35
- --placeholder-font-size: 14px;
36
36
  --placeholder-font-weight: normal;
37
37
  }
38
38
 
39
39
  x-input::part(input)::placeholder {
40
40
  color: var(--placeholder-color);
41
41
  font-family: var(--placeholder-font-family);
42
- font-size: var(--placeholder-font-size);
42
+ font-size: var(--placeholder-font-size, inherit);
43
43
  font-weight: var(--placeholder-font-weight);
44
44
  }
@@ -5,6 +5,7 @@
5
5
  */
6
6
  x-textarea {
7
7
  display: contents;
8
+ font-size: 14px;
8
9
  }
9
10
 
10
11
  x-textarea::part(form) {
@@ -32,7 +33,6 @@ x-textarea::part(textarea), x-textarea::part(form) {
32
33
  }
33
34
  x-textarea::part(textarea) {
34
35
  --placeholder-color: grey;
35
- --placeholder-font-size: 14px;
36
36
  --placeholder-font-weight: normal;
37
37
  --placeholder-font-family: inherit;
38
38
  resize: none;
@@ -40,7 +40,7 @@ x-textarea::part(textarea) {
40
40
 
41
41
  x-textarea::part(textarea)::placeholder {
42
42
  color: var(--placeholder-color);
43
- font-size: var(--placeholder-font-size);
43
+ font-size: var(--placeholder-font-size, inherit);
44
44
  font-weight: var(--placeholder-font-weight);
45
45
  font-family: var(--placeholder-font-family);
46
46
  }