@lwc/engine-core
Advanced tools
@@ -1,2 +0,2 @@ | ||
| import { LightningElement } from './base-lightning-element'; | ||
| import { type LightningElement } from './base-lightning-element'; | ||
| import type { VM } from './vm'; | ||
@@ -3,0 +3,0 @@ import type { LightningElementConstructor } from './base-lightning-element'; |
@@ -21,3 +21,2 @@ export { getComponentHtmlPrototype } from './def'; | ||
| export { getComponentConstructor } from './get-component-constructor'; | ||
| export type { MIR, MIRNode, MIRAction, MIRAttributes, MosaicAction, MosaicActionParams, } from './mosaic'; | ||
| export type { RendererAPI, LifecycleCallback } from './renderer'; | ||
@@ -28,3 +27,2 @@ export type { Template } from './template'; | ||
| export { LightningElement } from './base-lightning-element'; | ||
| export { Mosaic } from './mosaic'; | ||
| export { default as api } from './decorators/api'; | ||
@@ -31,0 +29,0 @@ export { default as track } from './decorators/track'; |
+4
-4
@@ -7,3 +7,3 @@ { | ||
| "name": "@lwc/engine-core", | ||
| "version": "9.1.1-alpha.0", | ||
| "version": "9.1.1", | ||
| "description": "Core LWC engine APIs.", | ||
@@ -55,5 +55,5 @@ "keywords": [ | ||
| "dependencies": { | ||
| "@lwc/features": "9.1.1-alpha.0", | ||
| "@lwc/shared": "9.1.1-alpha.0", | ||
| "@lwc/signals": "9.1.1-alpha.0" | ||
| "@lwc/features": "9.1.1", | ||
| "@lwc/shared": "9.1.1", | ||
| "@lwc/signals": "9.1.1" | ||
| }, | ||
@@ -60,0 +60,0 @@ "devDependencies": { |
| /** | ||
| * Mosaic Intermediate Representation (MIR) and JSON serialization types | ||
| */ | ||
| type JSONPrimitive = string | number | boolean | null | undefined; | ||
| type JSONValue = JSONPrimitive | JSONObject | JSONArray; | ||
| type JSONObject = { | ||
| [key: string]: JSONValue; | ||
| }; | ||
| type JSONArray = JSONValue[]; | ||
| export interface MIRAction extends JSONObject { | ||
| name: string; | ||
| params?: JSONObject; | ||
| } | ||
| export interface MIRAttributes { | ||
| action?: MIRAction; | ||
| [key: string]: JSONValue; | ||
| } | ||
| export interface MIR { | ||
| definition: string; | ||
| children?: MIRNode[]; | ||
| } | ||
| export interface MIRNode extends MIR { | ||
| attributes?: MIRAttributes; | ||
| } | ||
| /** | ||
| * Mosaic class definition and types | ||
| */ | ||
| type TargetHint = 'modal' | 'panel' | 'toast' | 'pip'; | ||
| export interface MosaicActionParams { | ||
| action: { | ||
| value?: JSONObject; | ||
| }; | ||
| client: { | ||
| views: { | ||
| update(args: { | ||
| componentRef?: string; | ||
| props?: JSONObject; | ||
| }): void; | ||
| push(args: { | ||
| componentRef: string; | ||
| props?: JSONObject; | ||
| target?: TargetHint; | ||
| }): void; | ||
| }; | ||
| }; | ||
| } | ||
| export type MosaicAction = (params: MosaicActionParams) => void; | ||
| export declare abstract class Mosaic { | ||
| abstract render(): MIR; | ||
| } | ||
| export {}; | ||
| //# sourceMappingURL=mosaic.d.ts.map |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 5 instances in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 5 instances in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
0
-100%837084
-0.32%74
-1.33%18822
-0.42%481
0.42%+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
Updated
Updated
Updated