@lynx-js/web-constants-canary 0.16.0-canary-20250828-ff4ede60 → 0.16.0-canary-20250828-cd0303c9

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,6 +1,6 @@
1
1
  # @lynx-js/web-constants
2
2
 
3
- ## 0.16.0-canary-20250828083326-ff4ede6056e7c71eca0ee72b4ee6ca3ee6b52120
3
+ ## 0.16.0-canary-20250828125620-cd0303c989f4f4e24a928910c7d9702826d380b9
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -16,10 +16,12 @@
16
16
 
17
17
  ### Patch Changes
18
18
 
19
+ - refactor: add `:not([l-e-name])` at the end of selector for lazy component ([#1622](https://github.com/lynx-family/lynx-stack/pull/1622))
20
+
19
21
  - fix: the SystemInfo in bts should be assigned to the globalThis ([#1599](https://github.com/lynx-family/lynx-stack/pull/1599))
20
22
 
21
23
  - Updated dependencies [[`c1f8715`](https://github.com/lynx-family/lynx-stack/commit/c1f8715a81b2e69ff46fc363013626db4468c209)]:
22
- - @lynx-js/web-worker-rpc@0.16.0-canary-20250828083326-ff4ede6056e7c71eca0ee72b4ee6ca3ee6b52120
24
+ - @lynx-js/web-worker-rpc@0.16.0-canary-20250828125620-cd0303c989f4f4e24a928910c7d9702826d380b9
23
25
 
24
26
  ## 0.15.7
25
27
 
@@ -2,6 +2,7 @@ export declare const lynxUniqueIdAttribute: "l-uid";
2
2
  export declare const cssIdAttribute: "l-css-id";
3
3
  export declare const componentIdAttribute: "l-comp-id";
4
4
  export declare const parentComponentUniqueIdAttribute: "l-p-comp-uid";
5
+ export declare const lynxEntryNameAttribute: "l-e-name";
5
6
  export declare const lynxTagAttribute: "lynx-tag";
6
7
  export declare const lynxDatasetAttribute: "l-dset";
7
8
  export declare const lynxComponentConfigAttribute: "l-comp-cfg";
package/dist/constants.js CHANGED
@@ -5,6 +5,7 @@ export const lynxUniqueIdAttribute = 'l-uid';
5
5
  export const cssIdAttribute = 'l-css-id';
6
6
  export const componentIdAttribute = 'l-comp-id';
7
7
  export const parentComponentUniqueIdAttribute = 'l-p-comp-uid';
8
+ export const lynxEntryNameAttribute = 'l-e-name';
8
9
  export const lynxTagAttribute = 'lynx-tag';
9
10
  export const lynxDatasetAttribute = 'l-dset';
10
11
  export const lynxComponentConfigAttribute = 'l-comp-cfg';
@@ -52,7 +52,7 @@ export interface WebFiberElementImpl {
52
52
  removeEventListener: (type: string, handler: (ev: Event) => void, options?: {
53
53
  capture?: boolean;
54
54
  }) => void;
55
- innerHTML: string;
55
+ textContent: string;
56
56
  readonly tagName: string;
57
57
  readonly firstElementChild: WebFiberElementImpl | null;
58
58
  readonly children: WebFiberElementImpl[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lynx-js/web-constants-canary",
3
- "version": "0.16.0-canary-20250828-ff4ede60",
3
+ "version": "0.16.0-canary-20250828-cd0303c9",
4
4
  "private": false,
5
5
  "description": "",
6
6
  "keywords": [],
@@ -23,9 +23,9 @@
23
23
  "**/*.css"
24
24
  ],
25
25
  "dependencies": {
26
- "@lynx-js/web-worker-rpc": "npm:@lynx-js/web-worker-rpc-canary@0.16.0-canary-20250828-ff4ede60"
26
+ "@lynx-js/web-worker-rpc": "npm:@lynx-js/web-worker-rpc-canary@0.16.0-canary-20250828-cd0303c9"
27
27
  },
28
28
  "devDependencies": {
29
- "@lynx-js/offscreen-document": "npm:@lynx-js/offscreen-document-canary@0.1.3"
29
+ "@lynx-js/offscreen-document": "npm:@lynx-js/offscreen-document-canary@0.1.4-canary-20250828-cd0303c9"
30
30
  }
31
31
  }