@lwc/ssr-runtime 8.9.0 → 8.10.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/class-list.d.ts +1 -1
- package/dist/index.cjs.js +4 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/lightning-element.d.ts +2 -1
- package/dist/mutation-tracker.d.ts +1 -1
- package/dist/render.d.ts +2 -1
- package/package.json +3 -3
@@ -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';
|
package/dist/render.d.ts
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
import {
|
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.
|
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.
|
48
|
-
"@lwc/engine-core": "8.
|
47
|
+
"@lwc/shared": "8.10.0",
|
48
|
+
"@lwc/engine-core": "8.10.0",
|
49
49
|
"observable-membrane": "2.0.0"
|
50
50
|
}
|
51
51
|
}
|