@lwc/ssr-runtime 8.9.0 → 8.10.0

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.
@@ -1,6 +1,6 @@
1
1
  /// <reference types="node" />
2
2
  import { ClassList } from './class-list';
3
- import { Attributes, Properties } from './types';
3
+ import type { Attributes, Properties } from './types';
4
4
  import type { Stylesheets } from '@lwc/shared';
5
5
  type EventListenerOrEventListenerObject = unknown;
6
6
  type AddEventListenerOptions = unknown;
@@ -12,6 +12,7 @@ interface PropsAvailableAtConstruction {
12
12
  }
13
13
  export declare const SYMBOL__SET_INTERNALS: unique symbol;
14
14
  export declare const SYMBOL__GENERATE_MARKUP: unique symbol;
15
+ export declare const SYMBOL__DEFAULT_TEMPLATE: unique symbol;
15
16
  export declare class LightningElement implements PropsAvailableAtConstruction {
16
17
  #private;
17
18
  static renderMode?: 'light' | 'shadow';
@@ -1,4 +1,4 @@
1
- import { LightningElement } from './lightning-element';
1
+ import type { LightningElement } from './lightning-element';
2
2
  declare class MutationTracker {
3
3
  #private;
4
4
  add(instance: LightningElement, attrName: string): void;
package/dist/render.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- import { LightningElement, LightningElementConstructor, SYMBOL__GENERATE_MARKUP } from './lightning-element';
1
+ import { SYMBOL__GENERATE_MARKUP } from './lightning-element';
2
+ import type { LightningElement, LightningElementConstructor } from './lightning-element';
2
3
  import type { Attributes, Properties } from './types';
3
4
  export declare function renderAttrs(instance: LightningElement, attrs: Attributes, hostScopeToken: string | undefined, scopeToken: string | undefined): Generator<string, void, unknown>;
4
5
  export declare function renderAttrsNoYield(emit: (segment: string) => void, instance: LightningElement, attrs: Attributes, hostScopeToken: string | undefined, scopeToken: string | undefined): void;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
5
5
  ],
6
6
  "name": "@lwc/ssr-runtime",
7
- "version": "8.9.0",
7
+ "version": "8.10.0",
8
8
  "description": "Runtime complement to @lwc/ssr-compiler",
9
9
  "keywords": [
10
10
  "lwc",
@@ -44,8 +44,8 @@
44
44
  }
45
45
  },
46
46
  "devDependencies": {
47
- "@lwc/shared": "8.9.0",
48
- "@lwc/engine-core": "8.9.0",
47
+ "@lwc/shared": "8.10.0",
48
+ "@lwc/engine-core": "8.10.0",
49
49
  "observable-membrane": "2.0.0"
50
50
  }
51
51
  }