@lynx-js/web-elements-canary 0.10.1-canary-20260104-7634817d → 0.10.1
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 +12 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @lynx-js/web-elements
|
|
2
2
|
|
|
3
|
-
## 0.10.1
|
|
3
|
+
## 0.10.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
### Before
|
|
18
18
|
|
|
19
19
|
```js
|
|
20
|
-
import
|
|
21
|
-
import
|
|
20
|
+
import '@lynx-js/web-elements-template';
|
|
21
|
+
import '@lynx-js/web-elements-compat/LinearContainer';
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
### After
|
|
25
25
|
|
|
26
26
|
```js
|
|
27
|
-
import
|
|
28
|
-
import
|
|
27
|
+
import '@lynx-js/web-elements/html-templates';
|
|
28
|
+
import '@lynx-js/web-elements/compat/LinearContainer';
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
### Patch Changes
|
|
@@ -710,8 +710,8 @@
|
|
|
710
710
|
For compating usage, `@lynx-js/web-elements-compat/LinearContainer` is provided.
|
|
711
711
|
|
|
712
712
|
```javascript
|
|
713
|
-
import
|
|
714
|
-
import
|
|
713
|
+
import '@lynx-js/web-elements-compat/LinearContainer';
|
|
714
|
+
import '@lynx-js/web-elements/all';
|
|
715
715
|
```
|
|
716
716
|
|
|
717
717
|
- f8d1d98: break: rename the `blur` and `focus` event to `lynxblur` and `lynxfocus` for x-input element
|
|
@@ -733,11 +733,11 @@
|
|
|
733
733
|
There is also a simple way to use this feature
|
|
734
734
|
|
|
735
735
|
```javascript
|
|
736
|
-
import { LynxCard } from
|
|
737
|
-
import { loadElement } from
|
|
738
|
-
import
|
|
739
|
-
import
|
|
740
|
-
import
|
|
736
|
+
import { LynxCard } from '@lynx-js/web-core';
|
|
737
|
+
import { loadElement } from '@lynx-js/web-elements/lazy';
|
|
738
|
+
import '@lynx-js/web-elements/index.css';
|
|
739
|
+
import '@lynx-js/web-core/index.css';
|
|
740
|
+
import './index.css';
|
|
741
741
|
|
|
742
742
|
const lynxcard = new LynxCard({
|
|
743
743
|
...beforeConfigs,
|