Socket
Socket
Sign inDemoInstall

@plasmicapp/host

Package Overview
Dependencies
Maintainers
1
Versions
246
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@plasmicapp/host - npm Package Compare versions

Comparing version 1.0.205 to 1.0.206

2

dist/exports.d.ts

@@ -7,3 +7,3 @@ export { PlasmicCanvasContext, PlasmicCanvasHost, usePlasmicCanvasComponentInfo, usePlasmicCanvasContext, } from "./canvas-host";

export * from "./link";
export { ContextDependentConfig, PropType } from "./prop-types";
export { ContextDependentConfig, CustomControlProps, ProjectData, PropType, StudioOps, } from "./prop-types";
export { Action, ActionProps, CodeComponentMeta, CodeComponentMode, ComponentHelpers, ComponentMeta, ComponentRegistration, ComponentTemplates, StateHelpers, StateSpec, default as registerComponent, stateHelpersKeys, } from "./registerComponent";

@@ -10,0 +10,0 @@ export { CustomFunctionMeta, CustomFunctionRegistration, ParamType, default as registerFunction, } from "./registerFunction";

@@ -587,3 +587,3 @@ 'use client';

var hostVersion = "1.0.205";
var hostVersion = "1.0.206";

@@ -590,0 +590,0 @@ var _a;

@@ -609,3 +609,3 @@ 'use client';

var hostVersion = "1.0.205";
var hostVersion = "1.0.206";

@@ -612,0 +612,0 @@ var _a;

@@ -415,2 +415,13 @@ /// <reference types="react" />

}
export interface ProjectData {
components: {
name: string;
}[];
pages: {
name: string;
pageMeta: {
path: string;
};
}[];
}
export interface CustomControlProps<P> {

@@ -429,2 +440,6 @@ componentProps: P;

studioOps: StudioOps | null;
/**
* Metadata from the studio project.
*/
projectData: ProjectData;
value: any;

@@ -431,0 +446,0 @@ /**

/// <reference types="react" />
import { CodeComponentElement, CSSProperties } from "./element-types";
import { ContextDependentConfig, InferDataType, PropType, RestrictPropType, StudioOps } from "./prop-types";
import { ContextDependentConfig, InferDataType, ProjectData, PropType, RestrictPropType, StudioOps } from "./prop-types";
import { TupleUnion } from "./type-utils";

@@ -19,2 +19,6 @@ export type * from "./prop-types";

/**
* Metadata from the studio project.
*/
projectData: ProjectData;
/**
* The document that the component will be rendered into; instead of using

@@ -21,0 +25,0 @@ * `document` directly (for, say, `document.querySelector()` etc.), you

@@ -1,1 +0,1 @@

export declare const hostVersion = "1.0.205";
export declare const hostVersion = "1.0.206";
{
"name": "@plasmicapp/host",
"version": "1.0.205",
"version": "1.0.206",
"description": "plasmic library for app hosting",

@@ -69,3 +69,3 @@ "main": "dist/index.cjs.js",

},
"gitHead": "11e5c764dba6541cd5dbb2c07cfec536e8c9082e"
"gitHead": "94d5603125aac87b0d1952dad0241fba1a6be371"
}

@@ -7,3 +7,3 @@ export { PlasmicCanvasContext, PlasmicCanvasHost, usePlasmicCanvasComponentInfo, usePlasmicCanvasContext, } from "./canvas-host";

export * from "./link";
export { ContextDependentConfig, PropType } from "./prop-types";
export { ContextDependentConfig, CustomControlProps, ProjectData, PropType, StudioOps, } from "./prop-types";
export { Action, ActionProps, CodeComponentMeta, CodeComponentMode, ComponentHelpers, ComponentMeta, ComponentRegistration, ComponentTemplates, StateHelpers, StateSpec, default as registerComponent, stateHelpersKeys, } from "./registerComponent";

@@ -10,0 +10,0 @@ export { CustomFunctionMeta, CustomFunctionRegistration, ParamType, default as registerFunction, } from "./registerFunction";

@@ -415,2 +415,13 @@ /// <reference types="react" />

}
export interface ProjectData {
components: {
name: string;
}[];
pages: {
name: string;
pageMeta: {
path: string;
};
}[];
}
export interface CustomControlProps<P> {

@@ -429,2 +440,6 @@ componentProps: P;

studioOps: StudioOps | null;
/**
* Metadata from the studio project.
*/
projectData: ProjectData;
value: any;

@@ -431,0 +446,0 @@ /**

/// <reference types="react" />
import { CodeComponentElement, CSSProperties } from "./element-types";
import { ContextDependentConfig, InferDataType, PropType, RestrictPropType, StudioOps } from "./prop-types";
import { ContextDependentConfig, InferDataType, ProjectData, PropType, RestrictPropType, StudioOps } from "./prop-types";
import { TupleUnion } from "./type-utils";

@@ -19,2 +19,6 @@ export type * from "./prop-types";

/**
* Metadata from the studio project.
*/
projectData: ProjectData;
/**
* The document that the component will be rendered into; instead of using

@@ -21,0 +25,0 @@ * `document` directly (for, say, `document.querySelector()` etc.), you

@@ -1,1 +0,1 @@

export declare const hostVersion = "1.0.205";
export declare const hostVersion = "1.0.206";

@@ -7,3 +7,3 @@ export { PlasmicCanvasContext, PlasmicCanvasHost, usePlasmicCanvasComponentInfo, usePlasmicCanvasContext, } from "./canvas-host";

export * from "./link";
export { ContextDependentConfig, PropType } from "./prop-types";
export { ContextDependentConfig, CustomControlProps, ProjectData, PropType, StudioOps, } from "./prop-types";
export { Action, ActionProps, CodeComponentMeta, CodeComponentMode, ComponentHelpers, ComponentMeta, ComponentRegistration, ComponentTemplates, StateHelpers, StateSpec, default as registerComponent, stateHelpersKeys, } from "./registerComponent";

@@ -10,0 +10,0 @@ export { CustomFunctionMeta, CustomFunctionRegistration, ParamType, default as registerFunction, } from "./registerFunction";

@@ -415,2 +415,13 @@ /// <reference types="react" />

}
export interface ProjectData {
components: {
name: string;
}[];
pages: {
name: string;
pageMeta: {
path: string;
};
}[];
}
export interface CustomControlProps<P> {

@@ -429,2 +440,6 @@ componentProps: P;

studioOps: StudioOps | null;
/**
* Metadata from the studio project.
*/
projectData: ProjectData;
value: any;

@@ -431,0 +446,0 @@ /**

/// <reference types="react" />
import { CodeComponentElement, CSSProperties } from "./element-types";
import { ContextDependentConfig, InferDataType, PropType, RestrictPropType, StudioOps } from "./prop-types";
import { ContextDependentConfig, InferDataType, ProjectData, PropType, RestrictPropType, StudioOps } from "./prop-types";
import { TupleUnion } from "./type-utils";

@@ -19,2 +19,6 @@ export type * from "./prop-types";

/**
* Metadata from the studio project.
*/
projectData: ProjectData;
/**
* The document that the component will be rendered into; instead of using

@@ -21,0 +25,0 @@ * `document` directly (for, say, `document.querySelector()` etc.), you

@@ -1,1 +0,1 @@

export declare const hostVersion = "1.0.205";
export declare const hostVersion = "1.0.206";

@@ -7,3 +7,3 @@ export { PlasmicCanvasContext, PlasmicCanvasHost, usePlasmicCanvasComponentInfo, usePlasmicCanvasContext, } from "./canvas-host";

export * from "./link";
export { ContextDependentConfig, PropType } from "./prop-types";
export { ContextDependentConfig, CustomControlProps, ProjectData, PropType, StudioOps, } from "./prop-types";
export { Action, ActionProps, CodeComponentMeta, CodeComponentMode, ComponentHelpers, ComponentMeta, ComponentRegistration, ComponentTemplates, StateHelpers, StateSpec, default as registerComponent, stateHelpersKeys, } from "./registerComponent";

@@ -10,0 +10,0 @@ export { CustomFunctionMeta, CustomFunctionRegistration, ParamType, default as registerFunction, } from "./registerFunction";

@@ -415,2 +415,13 @@ /// <reference types="react" />

}
export interface ProjectData {
components: {
name: string;
}[];
pages: {
name: string;
pageMeta: {
path: string;
};
}[];
}
export interface CustomControlProps<P> {

@@ -429,2 +440,6 @@ componentProps: P;

studioOps: StudioOps | null;
/**
* Metadata from the studio project.
*/
projectData: ProjectData;
value: any;

@@ -431,0 +446,0 @@ /**

/// <reference types="react" />
import { CodeComponentElement, CSSProperties } from "./element-types";
import { ContextDependentConfig, InferDataType, PropType, RestrictPropType, StudioOps } from "./prop-types";
import { ContextDependentConfig, InferDataType, ProjectData, PropType, RestrictPropType, StudioOps } from "./prop-types";
import { TupleUnion } from "./type-utils";

@@ -19,2 +19,6 @@ export type * from "./prop-types";

/**
* Metadata from the studio project.
*/
projectData: ProjectData;
/**
* The document that the component will be rendered into; instead of using

@@ -21,0 +25,0 @@ * `document` directly (for, say, `document.querySelector()` etc.), you

@@ -1,1 +0,1 @@

export declare const hostVersion = "1.0.205";
export declare const hostVersion = "1.0.206";

@@ -7,3 +7,3 @@ export { PlasmicCanvasContext, PlasmicCanvasHost, usePlasmicCanvasComponentInfo, usePlasmicCanvasContext, } from "./canvas-host";

export * from "./link";
export { ContextDependentConfig, PropType } from "./prop-types";
export { ContextDependentConfig, CustomControlProps, ProjectData, PropType, StudioOps, } from "./prop-types";
export { Action, ActionProps, CodeComponentMeta, CodeComponentMode, ComponentHelpers, ComponentMeta, ComponentRegistration, ComponentTemplates, StateHelpers, StateSpec, default as registerComponent, stateHelpersKeys, } from "./registerComponent";

@@ -10,0 +10,0 @@ export { CustomFunctionMeta, CustomFunctionRegistration, ParamType, default as registerFunction, } from "./registerFunction";

@@ -415,2 +415,13 @@ /// <reference types="react" />

}
export interface ProjectData {
components: {
name: string;
}[];
pages: {
name: string;
pageMeta: {
path: string;
};
}[];
}
export interface CustomControlProps<P> {

@@ -429,2 +440,6 @@ componentProps: P;

studioOps: StudioOps | null;
/**
* Metadata from the studio project.
*/
projectData: ProjectData;
value: any;

@@ -431,0 +446,0 @@ /**

/// <reference types="react" />
import { CodeComponentElement, CSSProperties } from "./element-types";
import { ContextDependentConfig, InferDataType, PropType, RestrictPropType, StudioOps } from "./prop-types";
import { ContextDependentConfig, InferDataType, ProjectData, PropType, RestrictPropType, StudioOps } from "./prop-types";
import { TupleUnion } from "./type-utils";

@@ -19,2 +19,6 @@ export type * from "./prop-types";

/**
* Metadata from the studio project.
*/
projectData: ProjectData;
/**
* The document that the component will be rendered into; instead of using

@@ -21,0 +25,0 @@ * `document` directly (for, say, `document.querySelector()` etc.), you

@@ -1,1 +0,1 @@

export declare const hostVersion = "1.0.205";
export declare const hostVersion = "1.0.206";

@@ -7,3 +7,3 @@ export { PlasmicCanvasContext, PlasmicCanvasHost, usePlasmicCanvasComponentInfo, usePlasmicCanvasContext, } from "./canvas-host";

export * from "./link";
export { ContextDependentConfig, PropType } from "./prop-types";
export { ContextDependentConfig, CustomControlProps, ProjectData, PropType, StudioOps, } from "./prop-types";
export { Action, ActionProps, CodeComponentMeta, CodeComponentMode, ComponentHelpers, ComponentMeta, ComponentRegistration, ComponentTemplates, StateHelpers, StateSpec, default as registerComponent, stateHelpersKeys, } from "./registerComponent";

@@ -10,0 +10,0 @@ export { CustomFunctionMeta, CustomFunctionRegistration, ParamType, default as registerFunction, } from "./registerFunction";

@@ -415,2 +415,13 @@ /// <reference types="react" />

}
export interface ProjectData {
components: {
name: string;
}[];
pages: {
name: string;
pageMeta: {
path: string;
};
}[];
}
export interface CustomControlProps<P> {

@@ -429,2 +440,6 @@ componentProps: P;

studioOps: StudioOps | null;
/**
* Metadata from the studio project.
*/
projectData: ProjectData;
value: any;

@@ -431,0 +446,0 @@ /**

/// <reference types="react" />
import { CodeComponentElement, CSSProperties } from "./element-types";
import { ContextDependentConfig, InferDataType, PropType, RestrictPropType, StudioOps } from "./prop-types";
import { ContextDependentConfig, InferDataType, ProjectData, PropType, RestrictPropType, StudioOps } from "./prop-types";
import { TupleUnion } from "./type-utils";

@@ -19,2 +19,6 @@ export type * from "./prop-types";

/**
* Metadata from the studio project.
*/
projectData: ProjectData;
/**
* The document that the component will be rendered into; instead of using

@@ -21,0 +25,0 @@ * `document` directly (for, say, `document.querySelector()` etc.), you

@@ -1,1 +0,1 @@

export declare const hostVersion = "1.0.205";
export declare const hostVersion = "1.0.206";

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc