Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@plasmicapp/host

Package Overview
Dependencies
Maintainers
1
Versions
247
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.133 to 1.0.134

2

dist/host.esm.js

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

var hostVersion = "1.0.133";
var hostVersion = "1.0.134";

@@ -467,0 +467,0 @@ var root = globalThis;

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

var hostVersion = "1.0.133";
var hostVersion = "1.0.134";

@@ -497,0 +497,0 @@ var root = globalThis;

@@ -349,2 +349,6 @@ /// <reference types="react" />

renderPropParams?: string[];
/**
* When inserting top-level "page sections", should this slot be the default target?
*/
unstable__isMainContentSlot?: boolean;
} & Omit<DefaultValueOrExpr<P, PlasmicElement | PlasmicElement[]>, "defaultValueHint" | "defaultExpr" | "defaultExprHint">);

@@ -354,3 +358,3 @@ type ImageUrlType<P> = "imageUrl" | ({

} & DefaultValueOrExpr<P, string> & PropTypeBase<P>);
export type PrimitiveType<P = any> = Extract<StringType<P> | BooleanType<P> | NumberType<P> | JSONLikeType<P>, String>;
export type PrimitiveType<P = any> = Extract<StringType<P> | BooleanType<P> | NumberType<P> | JSONLikeType<P>, string>;
type ControlTypeBase = {

@@ -365,3 +369,3 @@ editOnly?: false;

};
export type SupportControlled<T> = Extract<T, String | CustomControl<any>> | (Exclude<T, String | CustomControl<any>> & ControlTypeBase);
export type SupportControlled<T> = Extract<T, string | CustomControl<any>> | (Exclude<T, string | CustomControl<any>> & ControlTypeBase);
export type PropType<P> = SupportControlled<StringType<P> | BooleanType<P> | NumberType<P> | JSONLikeType<P> | ChoiceType<P> | ImageUrlType<P> | CustomType<P> | GraphQLType<P> | DataPickerType<P> | FormValidationRulesType<P> | EventHandlerType<P>> | SlotType<P>;

@@ -368,0 +372,0 @@ type RestrictPropType<T, P> = T extends string ? SupportControlled<StringType<P> | ChoiceType<P> | JSONLikeType<P> | ImageUrlType<P> | CustomType<P> | DataPickerType<P>> : T extends boolean ? SupportControlled<BooleanType<P> | JSONLikeType<P> | CustomType<P> | DataPickerType<P>> : T extends number ? SupportControlled<NumberType<P> | JSONLikeType<P> | CustomType<P> | DataPickerType<P>> : PropType<P>;

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

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

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

"dependencies": {
"@plasmicapp/query": "0.1.63",
"@plasmicapp/query": "0.1.64",
"window-or-global": "^1.0.1"

@@ -84,3 +84,3 @@ },

},
"gitHead": "7922e287e1a83e1ae41044981b7661c787e7b55a"
"gitHead": "411497d52815f71297b6268e358218711ddbb967"
}

@@ -349,2 +349,6 @@ /// <reference types="react" />

renderPropParams?: string[];
/**
* When inserting top-level "page sections", should this slot be the default target?
*/
unstable__isMainContentSlot?: boolean;
} & Omit<DefaultValueOrExpr<P, PlasmicElement | PlasmicElement[]>, "defaultValueHint" | "defaultExpr" | "defaultExprHint">);

@@ -354,3 +358,3 @@ type ImageUrlType<P> = "imageUrl" | ({

} & DefaultValueOrExpr<P, string> & PropTypeBase<P>);
export type PrimitiveType<P = any> = Extract<StringType<P> | BooleanType<P> | NumberType<P> | JSONLikeType<P>, String>;
export type PrimitiveType<P = any> = Extract<StringType<P> | BooleanType<P> | NumberType<P> | JSONLikeType<P>, string>;
type ControlTypeBase = {

@@ -365,3 +369,3 @@ editOnly?: false;

};
export type SupportControlled<T> = Extract<T, String | CustomControl<any>> | (Exclude<T, String | CustomControl<any>> & ControlTypeBase);
export type SupportControlled<T> = Extract<T, string | CustomControl<any>> | (Exclude<T, string | CustomControl<any>> & ControlTypeBase);
export type PropType<P> = SupportControlled<StringType<P> | BooleanType<P> | NumberType<P> | JSONLikeType<P> | ChoiceType<P> | ImageUrlType<P> | CustomType<P> | GraphQLType<P> | DataPickerType<P> | FormValidationRulesType<P> | EventHandlerType<P>> | SlotType<P>;

@@ -368,0 +372,0 @@ type RestrictPropType<T, P> = T extends string ? SupportControlled<StringType<P> | ChoiceType<P> | JSONLikeType<P> | ImageUrlType<P> | CustomType<P> | DataPickerType<P>> : T extends boolean ? SupportControlled<BooleanType<P> | JSONLikeType<P> | CustomType<P> | DataPickerType<P>> : T extends number ? SupportControlled<NumberType<P> | JSONLikeType<P> | CustomType<P> | DataPickerType<P>> : PropType<P>;

@@ -349,2 +349,6 @@ /// <reference types="react" />

renderPropParams?: string[];
/**
* When inserting top-level "page sections", should this slot be the default target?
*/
unstable__isMainContentSlot?: boolean;
} & Omit<DefaultValueOrExpr<P, PlasmicElement | PlasmicElement[]>, "defaultValueHint" | "defaultExpr" | "defaultExprHint">);

@@ -354,3 +358,3 @@ type ImageUrlType<P> = "imageUrl" | ({

} & DefaultValueOrExpr<P, string> & PropTypeBase<P>);
export type PrimitiveType<P = any> = Extract<StringType<P> | BooleanType<P> | NumberType<P> | JSONLikeType<P>, String>;
export type PrimitiveType<P = any> = Extract<StringType<P> | BooleanType<P> | NumberType<P> | JSONLikeType<P>, string>;
type ControlTypeBase = {

@@ -365,3 +369,3 @@ editOnly?: false;

};
export type SupportControlled<T> = Extract<T, String | CustomControl<any>> | (Exclude<T, String | CustomControl<any>> & ControlTypeBase);
export type SupportControlled<T> = Extract<T, string | CustomControl<any>> | (Exclude<T, string | CustomControl<any>> & ControlTypeBase);
export type PropType<P> = SupportControlled<StringType<P> | BooleanType<P> | NumberType<P> | JSONLikeType<P> | ChoiceType<P> | ImageUrlType<P> | CustomType<P> | GraphQLType<P> | DataPickerType<P> | FormValidationRulesType<P> | EventHandlerType<P>> | SlotType<P>;

@@ -368,0 +372,0 @@ type RestrictPropType<T, P> = T extends string ? SupportControlled<StringType<P> | ChoiceType<P> | JSONLikeType<P> | ImageUrlType<P> | CustomType<P> | DataPickerType<P>> : T extends boolean ? SupportControlled<BooleanType<P> | JSONLikeType<P> | CustomType<P> | DataPickerType<P>> : T extends number ? SupportControlled<NumberType<P> | JSONLikeType<P> | CustomType<P> | DataPickerType<P>> : PropType<P>;

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