@plasmicpkgs/plasmic-hubspot 0.0.4 → 0.0.6
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.
package/dist/hubspot.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { ComponentMeta } from "@plasmicapp/host";
|
|
2
|
+
import React from "react";
|
|
2
3
|
export declare function ensure<T>(x: T | null | undefined): T;
|
|
3
4
|
interface HubspotSignupFormProps {
|
|
4
5
|
className?: string;
|
|
5
6
|
url?: string;
|
|
6
7
|
}
|
|
7
8
|
export declare const HubspotSignupFormMeta: ComponentMeta<HubspotSignupFormProps>;
|
|
8
|
-
export declare function HubspotSignupForm({ className, url }: HubspotSignupFormProps): JSX.Element;
|
|
9
|
+
export declare function HubspotSignupForm({ className, url }: HubspotSignupFormProps): React.JSX.Element;
|
|
9
10
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plasmic-hubspot.cjs.development.js","sources":["../src/hubspot.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\n\nexport function ensure<T>(x: T | null | undefined): T {\n if (x === null || x === undefined) {\n debugger;\n throw new Error(`Value must not be undefined or null`);\n } else {\n return x;\n }\n}\n\nconst modulePath = \"@plasmicpkgs/plasmic-hubspot\";\n\ninterface HubspotSignupFormProps {\n className?: string;\n url?: string;\n}\n\nexport const HubspotSignupFormMeta: ComponentMeta<HubspotSignupFormProps> = {\n name: \"HubspotSignupForm\",\n displayName: \"Hubspot Signup Form\",\n importName: \"HubspotSignupForm\",\n importPath: modulePath,\n providesData: true,\n description: \"Shows a sign up form to users for subscribe your to newsletter\",\n props: {\n url: {\n type: \"string\",\n displayName: \"URL\",\n description: `Copy your share link from your Hubspot form.Learn how (\"https://knowledge.hubspot.com/forms/how-can-i-share-a-hubspot-form-if-im-using-an-external-site\")`,\n defaultValue: \"https://share.hsforms.com/1Y7nnYY8aSkuXgoeWA16-ZQdvi9r\",\n helpText:`You can learn how to get share link.(\"https://knowledge.hubspot.com/forms/how-can-i-share-a-hubspot-form-if-im-using-an-external-site\")`\n \n },\n },\n};\n\nexport function HubspotSignupForm({ className, url }: HubspotSignupFormProps) {\n return (\n <iframe\n src={url}\n width=\"100%\"\n frameBorder=\"0\"\n marginHeight={0}\n scrolling=\"no\"\n marginWidth={0}\n height=\"600px\"\n className={className}\n />\n );\n}\n","import registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport registerGlobalContext from \"@plasmicapp/host/registerGlobalContext\";\nimport {\n HubspotSignupForm,\n HubspotSignupFormMeta,\n} from \"./hubspot\";\n\n\nexport function registerAll(loader?: {\n registerComponent: typeof registerComponent;\n registerGlobalContext: typeof registerGlobalContext;\n}) {\n const _registerComponent = <T extends React.ComponentType<any>>(\n Component: T,\n defaultMeta: ComponentMeta<React.ComponentProps<T>>\n ) => {\n if (loader) {\n loader.registerComponent(Component, defaultMeta);\n } else {\n registerComponent(Component, defaultMeta);\n }\n };\n\n if (loader) {\n _registerComponent(HubspotSignupForm, HubspotSignupFormMeta);\n\n\n }\n}\nexport * from \"./hubspot\";"],"names":["ensure","x","undefined","Error","modulePath","HubspotSignupFormMeta","name","displayName","importName","importPath","providesData","description","props","url","type","defaultValue","helpText","HubspotSignupForm","className","React","src","width","frameBorder","marginHeight","scrolling","marginWidth","height","registerAll","loader","_registerComponent","Component","defaultMeta","registerComponent"],"mappings":";;;;;;;;;SAIgBA,
|
|
1
|
+
{"version":3,"file":"plasmic-hubspot.cjs.development.js","sources":["../src/hubspot.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\n\nexport function ensure<T>(x: T | null | undefined): T {\n if (x === null || x === undefined) {\n debugger;\n throw new Error(`Value must not be undefined or null`);\n } else {\n return x;\n }\n}\n\nconst modulePath = \"@plasmicpkgs/plasmic-hubspot\";\n\ninterface HubspotSignupFormProps {\n className?: string;\n url?: string;\n}\n\nexport const HubspotSignupFormMeta: ComponentMeta<HubspotSignupFormProps> = {\n name: \"HubspotSignupForm\",\n displayName: \"Hubspot Signup Form\",\n importName: \"HubspotSignupForm\",\n importPath: modulePath,\n providesData: true,\n description: \"Shows a sign up form to users for subscribe your to newsletter\",\n props: {\n url: {\n type: \"string\",\n displayName: \"URL\",\n description: `Copy your share link from your Hubspot form.Learn how (\"https://knowledge.hubspot.com/forms/how-can-i-share-a-hubspot-form-if-im-using-an-external-site\")`,\n defaultValue: \"https://share.hsforms.com/1Y7nnYY8aSkuXgoeWA16-ZQdvi9r\",\n helpText:`You can learn how to get share link.(\"https://knowledge.hubspot.com/forms/how-can-i-share-a-hubspot-form-if-im-using-an-external-site\")`\n \n },\n },\n};\n\nexport function HubspotSignupForm({ className, url }: HubspotSignupFormProps) {\n return (\n <iframe\n src={url}\n width=\"100%\"\n frameBorder=\"0\"\n marginHeight={0}\n scrolling=\"no\"\n marginWidth={0}\n height=\"600px\"\n className={className}\n />\n );\n}\n","import registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport registerGlobalContext from \"@plasmicapp/host/registerGlobalContext\";\nimport {\n HubspotSignupForm,\n HubspotSignupFormMeta,\n} from \"./hubspot\";\n\n\nexport function registerAll(loader?: {\n registerComponent: typeof registerComponent;\n registerGlobalContext: typeof registerGlobalContext;\n}) {\n const _registerComponent = <T extends React.ComponentType<any>>(\n Component: T,\n defaultMeta: ComponentMeta<React.ComponentProps<T>>\n ) => {\n if (loader) {\n loader.registerComponent(Component, defaultMeta);\n } else {\n registerComponent(Component, defaultMeta);\n }\n };\n\n if (loader) {\n _registerComponent(HubspotSignupForm, HubspotSignupFormMeta);\n\n\n }\n}\nexport * from \"./hubspot\";"],"names":["ensure","x","undefined","Error","modulePath","HubspotSignupFormMeta","name","displayName","importName","importPath","providesData","description","props","url","type","defaultValue","helpText","HubspotSignupForm","_ref","className","React","src","width","frameBorder","marginHeight","scrolling","marginWidth","height","registerAll","loader","_registerComponent","Component","defaultMeta","registerComponent"],"mappings":";;;;;;;;;SAIgBA,MAAMA,CAAIC,CAAuB;EAC/C,IAAIA,CAAC,KAAK,IAAI,IAAIA,CAAC,KAAKC,SAAS,EAAE;IACjC;IACA,MAAM,IAAIC,KAAK,sCAAsC,CAAC;GACvD,MAAM;IACL,OAAOF,CAAC;;AAEZ;AAEA,IAAMG,UAAU,GAAG,8BAA8B;IAOpCC,qBAAqB,GAA0C;EAC1EC,IAAI,EAAE,mBAAmB;EACzBC,WAAW,EAAE,qBAAqB;EAClCC,UAAU,EAAE,mBAAmB;EAC/BC,UAAU,EAAEL,UAAU;EACtBM,YAAY,EAAE,IAAI;EAClBC,WAAW,EAAE,gEAAgE;EAC7EC,KAAK,EAAE;IACLC,GAAG,EAAE;MACHC,IAAI,EAAE,QAAQ;MACdP,WAAW,EAAE,KAAK;MAClBI,WAAW,+JAA6J;MACxKI,YAAY,EAAE,wDAAwD;MACtEC,QAAQ;;;;SAMEC,iBAAiBA,CAAAC,IAAA;MAAGC,SAAS,GAAAD,IAAA,CAATC,SAAS;IAAEN,GAAG,GAAAK,IAAA,CAAHL,GAAG;EAChD,OACEO;IACEC,GAAG,EAAER,GAAG;IACRS,KAAK,EAAC,MAAM;IACZC,WAAW,EAAC,GAAG;IACfC,YAAY,EAAE,CAAC;IACfC,SAAS,EAAC,IAAI;IACdC,WAAW,EAAE,CAAC;IACdC,MAAM,EAAC,OAAO;IACdR,SAAS,EAAEA;IACX;AAEN;;SC1CgBS,WAAWA,CAACC,MAG3B;EACC,IAAMC,kBAAkB,GAAG,SAArBA,kBAAkBA,CACtBC,SAAY,EACZC,WAAmD;IAEnD,IAAIH,MAAM,EAAE;MACVA,MAAM,CAACI,iBAAiB,CAACF,SAAS,EAAEC,WAAW,CAAC;KACjD,MAAM;MACLC,iBAAiB,CAACF,SAAS,EAAEC,WAAW,CAAC;;GAE5C;EAED,IAAIH,MAAM,EAAE;IACVC,kBAAkB,CAACb,iBAAiB,EAAEZ,qBAAqB,CAAC;;AAIhE;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plasmic-hubspot.cjs.production.min.js","sources":["../src/hubspot.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\n\nexport function ensure<T>(x: T | null | undefined): T {\n if (x === null || x === undefined) {\n debugger;\n throw new Error(`Value must not be undefined or null`);\n } else {\n return x;\n }\n}\n\nconst modulePath = \"@plasmicpkgs/plasmic-hubspot\";\n\ninterface HubspotSignupFormProps {\n className?: string;\n url?: string;\n}\n\nexport const HubspotSignupFormMeta: ComponentMeta<HubspotSignupFormProps> = {\n name: \"HubspotSignupForm\",\n displayName: \"Hubspot Signup Form\",\n importName: \"HubspotSignupForm\",\n importPath: modulePath,\n providesData: true,\n description: \"Shows a sign up form to users for subscribe your to newsletter\",\n props: {\n url: {\n type: \"string\",\n displayName: \"URL\",\n description: `Copy your share link from your Hubspot form.Learn how (\"https://knowledge.hubspot.com/forms/how-can-i-share-a-hubspot-form-if-im-using-an-external-site\")`,\n defaultValue: \"https://share.hsforms.com/1Y7nnYY8aSkuXgoeWA16-ZQdvi9r\",\n helpText:`You can learn how to get share link.(\"https://knowledge.hubspot.com/forms/how-can-i-share-a-hubspot-form-if-im-using-an-external-site\")`\n \n },\n },\n};\n\nexport function HubspotSignupForm({ className, url }: HubspotSignupFormProps) {\n return (\n <iframe\n src={url}\n width=\"100%\"\n frameBorder=\"0\"\n marginHeight={0}\n scrolling=\"no\"\n marginWidth={0}\n height=\"600px\"\n className={className}\n />\n );\n}\n","import registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport registerGlobalContext from \"@plasmicapp/host/registerGlobalContext\";\nimport {\n HubspotSignupForm,\n HubspotSignupFormMeta,\n} from \"./hubspot\";\n\n\nexport function registerAll(loader?: {\n registerComponent: typeof registerComponent;\n registerGlobalContext: typeof registerGlobalContext;\n}) {\n const _registerComponent = <T extends React.ComponentType<any>>(\n Component: T,\n defaultMeta: ComponentMeta<React.ComponentProps<T>>\n ) => {\n if (loader) {\n loader.registerComponent(Component, defaultMeta);\n } else {\n registerComponent(Component, defaultMeta);\n }\n };\n\n if (loader) {\n _registerComponent(HubspotSignupForm, HubspotSignupFormMeta);\n\n\n }\n}\nexport * from \"./hubspot\";"],"names":["HubspotSignupFormMeta","name","displayName","importName","importPath","providesData","description","props","url","type","defaultValue","helpText","HubspotSignupForm","React","src","width","frameBorder","marginHeight","scrolling","marginWidth","height","className","x","Error","loader","Component","defaultMeta","registerComponent"],"mappings":"uNAoBaA,EAA+D,CAC1EC,KAAM,oBACNC,YAAa,sBACbC,WAAY,oBACZC,WAXiB,+BAYjBC,cAAc,EACdC,YAAa,iEACbC,MAAO,CACLC,IAAK,CACHC,KAAM,SACNP,YAAa,MACbI,wKACAI,aAAc,yDACdC,+JAMUC,
|
|
1
|
+
{"version":3,"file":"plasmic-hubspot.cjs.production.min.js","sources":["../src/hubspot.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\n\nexport function ensure<T>(x: T | null | undefined): T {\n if (x === null || x === undefined) {\n debugger;\n throw new Error(`Value must not be undefined or null`);\n } else {\n return x;\n }\n}\n\nconst modulePath = \"@plasmicpkgs/plasmic-hubspot\";\n\ninterface HubspotSignupFormProps {\n className?: string;\n url?: string;\n}\n\nexport const HubspotSignupFormMeta: ComponentMeta<HubspotSignupFormProps> = {\n name: \"HubspotSignupForm\",\n displayName: \"Hubspot Signup Form\",\n importName: \"HubspotSignupForm\",\n importPath: modulePath,\n providesData: true,\n description: \"Shows a sign up form to users for subscribe your to newsletter\",\n props: {\n url: {\n type: \"string\",\n displayName: \"URL\",\n description: `Copy your share link from your Hubspot form.Learn how (\"https://knowledge.hubspot.com/forms/how-can-i-share-a-hubspot-form-if-im-using-an-external-site\")`,\n defaultValue: \"https://share.hsforms.com/1Y7nnYY8aSkuXgoeWA16-ZQdvi9r\",\n helpText:`You can learn how to get share link.(\"https://knowledge.hubspot.com/forms/how-can-i-share-a-hubspot-form-if-im-using-an-external-site\")`\n \n },\n },\n};\n\nexport function HubspotSignupForm({ className, url }: HubspotSignupFormProps) {\n return (\n <iframe\n src={url}\n width=\"100%\"\n frameBorder=\"0\"\n marginHeight={0}\n scrolling=\"no\"\n marginWidth={0}\n height=\"600px\"\n className={className}\n />\n );\n}\n","import registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport registerGlobalContext from \"@plasmicapp/host/registerGlobalContext\";\nimport {\n HubspotSignupForm,\n HubspotSignupFormMeta,\n} from \"./hubspot\";\n\n\nexport function registerAll(loader?: {\n registerComponent: typeof registerComponent;\n registerGlobalContext: typeof registerGlobalContext;\n}) {\n const _registerComponent = <T extends React.ComponentType<any>>(\n Component: T,\n defaultMeta: ComponentMeta<React.ComponentProps<T>>\n ) => {\n if (loader) {\n loader.registerComponent(Component, defaultMeta);\n } else {\n registerComponent(Component, defaultMeta);\n }\n };\n\n if (loader) {\n _registerComponent(HubspotSignupForm, HubspotSignupFormMeta);\n\n\n }\n}\nexport * from \"./hubspot\";"],"names":["HubspotSignupFormMeta","name","displayName","importName","importPath","providesData","description","props","url","type","defaultValue","helpText","HubspotSignupForm","_ref","React","src","width","frameBorder","marginHeight","scrolling","marginWidth","height","className","x","Error","loader","Component","defaultMeta","registerComponent"],"mappings":"uNAoBaA,EAA+D,CAC1EC,KAAM,oBACNC,YAAa,sBACbC,WAAY,oBACZC,WAXiB,+BAYjBC,cAAc,EACdC,YAAa,iEACbC,MAAO,CACLC,IAAK,CACHC,KAAM,SACNP,YAAa,MACbI,wKACAI,aAAc,yDACdC,+JAMUC,EAAiBC,GAC/B,OACEC,0BACEC,IAH4CF,EAAHL,IAIzCQ,MAAM,OACNC,YAAY,IACZC,aAAc,EACdC,UAAU,KACVC,YAAa,EACbC,OAAO,QACPC,UAVuCT,EAATS,gGAnCVC,GACxB,GAAIA,MAAAA,EAEF,MAAM,IAAIC,6CAEV,OAAOD,gCCCiBE,GAI1B,IACEC,EACAC,EASEF,IAVFC,EAWmBd,EAVnBe,EAUsC3B,EARlCyB,EACFA,EAAOG,kBAAkBF,EAAWC,GAEpCC,EAAkBF,EAAWC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plasmic-hubspot.esm.js","sources":["../src/hubspot.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\n\nexport function ensure<T>(x: T | null | undefined): T {\n if (x === null || x === undefined) {\n debugger;\n throw new Error(`Value must not be undefined or null`);\n } else {\n return x;\n }\n}\n\nconst modulePath = \"@plasmicpkgs/plasmic-hubspot\";\n\ninterface HubspotSignupFormProps {\n className?: string;\n url?: string;\n}\n\nexport const HubspotSignupFormMeta: ComponentMeta<HubspotSignupFormProps> = {\n name: \"HubspotSignupForm\",\n displayName: \"Hubspot Signup Form\",\n importName: \"HubspotSignupForm\",\n importPath: modulePath,\n providesData: true,\n description: \"Shows a sign up form to users for subscribe your to newsletter\",\n props: {\n url: {\n type: \"string\",\n displayName: \"URL\",\n description: `Copy your share link from your Hubspot form.Learn how (\"https://knowledge.hubspot.com/forms/how-can-i-share-a-hubspot-form-if-im-using-an-external-site\")`,\n defaultValue: \"https://share.hsforms.com/1Y7nnYY8aSkuXgoeWA16-ZQdvi9r\",\n helpText:`You can learn how to get share link.(\"https://knowledge.hubspot.com/forms/how-can-i-share-a-hubspot-form-if-im-using-an-external-site\")`\n \n },\n },\n};\n\nexport function HubspotSignupForm({ className, url }: HubspotSignupFormProps) {\n return (\n <iframe\n src={url}\n width=\"100%\"\n frameBorder=\"0\"\n marginHeight={0}\n scrolling=\"no\"\n marginWidth={0}\n height=\"600px\"\n className={className}\n />\n );\n}\n","import registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport registerGlobalContext from \"@plasmicapp/host/registerGlobalContext\";\nimport {\n HubspotSignupForm,\n HubspotSignupFormMeta,\n} from \"./hubspot\";\n\n\nexport function registerAll(loader?: {\n registerComponent: typeof registerComponent;\n registerGlobalContext: typeof registerGlobalContext;\n}) {\n const _registerComponent = <T extends React.ComponentType<any>>(\n Component: T,\n defaultMeta: ComponentMeta<React.ComponentProps<T>>\n ) => {\n if (loader) {\n loader.registerComponent(Component, defaultMeta);\n } else {\n registerComponent(Component, defaultMeta);\n }\n };\n\n if (loader) {\n _registerComponent(HubspotSignupForm, HubspotSignupFormMeta);\n\n\n }\n}\nexport * from \"./hubspot\";"],"names":["ensure","x","undefined","Error","modulePath","HubspotSignupFormMeta","name","displayName","importName","importPath","providesData","description","props","url","type","defaultValue","helpText","HubspotSignupForm","className","React","src","width","frameBorder","marginHeight","scrolling","marginWidth","height","registerAll","loader","_registerComponent","Component","defaultMeta","registerComponent"],"mappings":";;;SAIgBA,
|
|
1
|
+
{"version":3,"file":"plasmic-hubspot.esm.js","sources":["../src/hubspot.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\n\nexport function ensure<T>(x: T | null | undefined): T {\n if (x === null || x === undefined) {\n debugger;\n throw new Error(`Value must not be undefined or null`);\n } else {\n return x;\n }\n}\n\nconst modulePath = \"@plasmicpkgs/plasmic-hubspot\";\n\ninterface HubspotSignupFormProps {\n className?: string;\n url?: string;\n}\n\nexport const HubspotSignupFormMeta: ComponentMeta<HubspotSignupFormProps> = {\n name: \"HubspotSignupForm\",\n displayName: \"Hubspot Signup Form\",\n importName: \"HubspotSignupForm\",\n importPath: modulePath,\n providesData: true,\n description: \"Shows a sign up form to users for subscribe your to newsletter\",\n props: {\n url: {\n type: \"string\",\n displayName: \"URL\",\n description: `Copy your share link from your Hubspot form.Learn how (\"https://knowledge.hubspot.com/forms/how-can-i-share-a-hubspot-form-if-im-using-an-external-site\")`,\n defaultValue: \"https://share.hsforms.com/1Y7nnYY8aSkuXgoeWA16-ZQdvi9r\",\n helpText:`You can learn how to get share link.(\"https://knowledge.hubspot.com/forms/how-can-i-share-a-hubspot-form-if-im-using-an-external-site\")`\n \n },\n },\n};\n\nexport function HubspotSignupForm({ className, url }: HubspotSignupFormProps) {\n return (\n <iframe\n src={url}\n width=\"100%\"\n frameBorder=\"0\"\n marginHeight={0}\n scrolling=\"no\"\n marginWidth={0}\n height=\"600px\"\n className={className}\n />\n );\n}\n","import registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport registerGlobalContext from \"@plasmicapp/host/registerGlobalContext\";\nimport {\n HubspotSignupForm,\n HubspotSignupFormMeta,\n} from \"./hubspot\";\n\n\nexport function registerAll(loader?: {\n registerComponent: typeof registerComponent;\n registerGlobalContext: typeof registerGlobalContext;\n}) {\n const _registerComponent = <T extends React.ComponentType<any>>(\n Component: T,\n defaultMeta: ComponentMeta<React.ComponentProps<T>>\n ) => {\n if (loader) {\n loader.registerComponent(Component, defaultMeta);\n } else {\n registerComponent(Component, defaultMeta);\n }\n };\n\n if (loader) {\n _registerComponent(HubspotSignupForm, HubspotSignupFormMeta);\n\n\n }\n}\nexport * from \"./hubspot\";"],"names":["ensure","x","undefined","Error","modulePath","HubspotSignupFormMeta","name","displayName","importName","importPath","providesData","description","props","url","type","defaultValue","helpText","HubspotSignupForm","_ref","className","React","src","width","frameBorder","marginHeight","scrolling","marginWidth","height","registerAll","loader","_registerComponent","Component","defaultMeta","registerComponent"],"mappings":";;;SAIgBA,MAAMA,CAAIC,CAAuB;EAC/C,IAAIA,CAAC,KAAK,IAAI,IAAIA,CAAC,KAAKC,SAAS,EAAE;IACjC;IACA,MAAM,IAAIC,KAAK,sCAAsC,CAAC;GACvD,MAAM;IACL,OAAOF,CAAC;;AAEZ;AAEA,IAAMG,UAAU,GAAG,8BAA8B;IAOpCC,qBAAqB,GAA0C;EAC1EC,IAAI,EAAE,mBAAmB;EACzBC,WAAW,EAAE,qBAAqB;EAClCC,UAAU,EAAE,mBAAmB;EAC/BC,UAAU,EAAEL,UAAU;EACtBM,YAAY,EAAE,IAAI;EAClBC,WAAW,EAAE,gEAAgE;EAC7EC,KAAK,EAAE;IACLC,GAAG,EAAE;MACHC,IAAI,EAAE,QAAQ;MACdP,WAAW,EAAE,KAAK;MAClBI,WAAW,+JAA6J;MACxKI,YAAY,EAAE,wDAAwD;MACtEC,QAAQ;;;;SAMEC,iBAAiBA,CAAAC,IAAA;MAAGC,SAAS,GAAAD,IAAA,CAATC,SAAS;IAAEN,GAAG,GAAAK,IAAA,CAAHL,GAAG;EAChD,OACEO;IACEC,GAAG,EAAER,GAAG;IACRS,KAAK,EAAC,MAAM;IACZC,WAAW,EAAC,GAAG;IACfC,YAAY,EAAE,CAAC;IACfC,SAAS,EAAC,IAAI;IACdC,WAAW,EAAE,CAAC;IACdC,MAAM,EAAC,OAAO;IACdR,SAAS,EAAEA;IACX;AAEN;;SC1CgBS,WAAWA,CAACC,MAG3B;EACC,IAAMC,kBAAkB,GAAG,SAArBA,kBAAkBA,CACtBC,SAAY,EACZC,WAAmD;IAEnD,IAAIH,MAAM,EAAE;MACVA,MAAM,CAACI,iBAAiB,CAACF,SAAS,EAAEC,WAAW,CAAC;KACjD,MAAM;MACLC,iBAAiB,CAACF,SAAS,EAAEC,WAAW,CAAC;;GAE5C;EAED,IAAIH,MAAM,EAAE;IACVC,kBAAkB,CAACb,iBAAiB,EAAEZ,qBAAqB,CAAC;;AAIhE;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicpkgs/plasmic-hubspot",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Plasmic Hubspot components.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@plasmicapp/host": "1.0.
|
|
37
|
+
"@plasmicapp/host": "1.0.164",
|
|
38
38
|
"@size-limit/preset-small-lib": "^7.0.8",
|
|
39
39
|
"@types/react": "^18.0.27",
|
|
40
40
|
"@types/react-dom": "^18.0.10",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"change-case": "^4.1.2"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "83b92a98990acc021cc904ef919c6176e88a3238"
|
|
52
52
|
}
|