@plasmicpkgs/plasmic-typeform 0.0.1

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 Latipov Abdukhamid
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1 @@
1
+ Plasmic components and registration calls for Typeform
@@ -0,0 +1,7 @@
1
+ import registerComponent from "@plasmicapp/host/registerComponent";
2
+ import registerGlobalContext from "@plasmicapp/host/registerGlobalContext";
3
+ export declare function registerAll(loader?: {
4
+ registerComponent: typeof registerComponent;
5
+ registerGlobalContext: typeof registerGlobalContext;
6
+ }): void;
7
+ export * from "./typeform";
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+
2
+ 'use strict'
3
+
4
+ if (process.env.NODE_ENV === 'production') {
5
+ module.exports = require('./plasmic-typeform.cjs.production.min.js')
6
+ } else {
7
+ module.exports = require('./plasmic-typeform.cjs.development.js')
8
+ }
@@ -0,0 +1,75 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
6
+
7
+ var registerComponent = _interopDefault(require('@plasmicapp/host/registerComponent'));
8
+ var React = _interopDefault(require('react'));
9
+ var embedReact = require('@typeform/embed-react');
10
+
11
+ function ensure(x) {
12
+ if (x === null || x === undefined) {
13
+ debugger;
14
+ throw new Error("Value must not be undefined or null");
15
+ } else {
16
+ return x;
17
+ }
18
+ }
19
+ var modulePath = "@plasmicpkgs/plasmic-typeform";
20
+ var TypeformMeta = {
21
+ name: "TypeForm",
22
+ displayName: "Typeform",
23
+ importName: "Typeform",
24
+ importPath: modulePath,
25
+ providesData: true,
26
+ description: "Embed Typeform on your website",
27
+ defaultStyles: {
28
+ width: "600px",
29
+ height: "700px"
30
+ },
31
+ props: {
32
+ formId: {
33
+ type: "string",
34
+ displayName: "Form ID",
35
+ description: "ID of your form in Typeform",
36
+ defaultValue: "R2s5BM"
37
+ }
38
+ }
39
+ };
40
+ function Typeform(_ref) {
41
+ var className = _ref.className,
42
+ formId = _ref.formId;
43
+ if (!formId) {
44
+ return React.createElement("div", null, "Please specify a Form ID");
45
+ }
46
+ return React.createElement("div", {
47
+ className: className
48
+ }, React.createElement(embedReact.Widget, {
49
+ id: formId,
50
+ style: {
51
+ width: "100%",
52
+ height: "100%"
53
+ },
54
+ className: className
55
+ }));
56
+ }
57
+
58
+ function registerAll(loader) {
59
+ var _registerComponent = function _registerComponent(Component, defaultMeta) {
60
+ if (loader) {
61
+ loader.registerComponent(Component, defaultMeta);
62
+ } else {
63
+ registerComponent(Component, defaultMeta);
64
+ }
65
+ };
66
+ if (loader) {
67
+ _registerComponent(Typeform, TypeformMeta);
68
+ }
69
+ }
70
+
71
+ exports.Typeform = Typeform;
72
+ exports.TypeformMeta = TypeformMeta;
73
+ exports.ensure = ensure;
74
+ exports.registerAll = registerAll;
75
+ //# sourceMappingURL=plasmic-typeform.cjs.development.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plasmic-typeform.cjs.development.js","sources":["../src/typeform.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\nimport { Widget } from \"@typeform/embed-react\";\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-typeform\";\n\ninterface TypeformProps {\n className?: string;\n formId?: string;\n}\n\nexport const TypeformMeta: ComponentMeta<TypeformProps> = {\n name: \"TypeForm\",\n displayName: \"Typeform\",\n importName: \"Typeform\",\n importPath: modulePath,\n providesData: true,\n description: \"Embed Typeform on your website\",\n defaultStyles: {\n width: \"600px\",\n height: \"700px\"\n },\n props: {\n formId: {\n type: \"string\",\n displayName: \"Form ID\",\n description: \"ID of your form in Typeform\",\n defaultValue: \"R2s5BM\"\n },\n },\n};\n\nexport function Typeform({ className, formId }: TypeformProps) {\n if (!formId) {\n return <div>Please specify a Form ID</div>;\n }\n\n return (\n\n <div className={className}>\n <Widget id={formId!} style={{ width: \"100%\", height: \"100%\" }} className={className} />\n </div>\n\n\n );\n}\n","import registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport registerGlobalContext from \"@plasmicapp/host/registerGlobalContext\";\nimport {\n Typeform,\n TypeformMeta,\n\n\n} from \"./typeform\";\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\n _registerComponent(Typeform, TypeformMeta);\n\n }\n}\n\nexport * from \"./typeform\";"],"names":["ensure","x","undefined","Error","modulePath","TypeformMeta","name","displayName","importName","importPath","providesData","description","defaultStyles","width","height","props","formId","type","defaultValue","Typeform","className","React","Widget","id","style","registerAll","loader","_registerComponent","Component","defaultMeta","registerComponent"],"mappings":";;;;;;;;;;SAIgBA,MAAM,CAAIC,CAAuB;EAC/C,IAAIA,CAAC,KAAK,IAAI,IAAIA,CAAC,KAAKC,SAAS,EAAE;IACjC;IACA,MAAM,IAAIC,KAAK,uCAAuC;GACvD,MAAM;IACL,OAAOF,CAAC;;AAEZ;AAEA,IAAMG,UAAU,GAAG,+BAA+B;IAOrCC,YAAY,GAAiC;EACxDC,IAAI,EAAE,UAAU;EAChBC,WAAW,EAAE,UAAU;EACvBC,UAAU,EAAE,UAAU;EACtBC,UAAU,EAAEL,UAAU;EACtBM,YAAY,EAAE,IAAI;EAClBC,WAAW,EAAE,gCAAgC;EAC7CC,aAAa,EAAE;IACbC,KAAK,EAAE,OAAO;IACdC,MAAM,EAAE;GACT;EACDC,KAAK,EAAE;IACLC,MAAM,EAAE;MACNC,IAAI,EAAE,QAAQ;MACdV,WAAW,EAAE,SAAS;MACtBI,WAAW,EAAE,6BAA6B;MAC1CO,YAAY,EAAE;;;;SAKJC,QAAQ;MAAGC,SAAS,QAATA,SAAS;IAAEJ,MAAM,QAANA,MAAM;EAC1C,IAAI,CAACA,MAAM,EAAE;IACX,OAAOK,4DAAmC;;EAG5C,OAEEA;IAAKD,SAAS,EAAEA;KACdC,oBAACC,iBAAM;IAACC,EAAE,EAAEP,MAAO;IAAEQ,KAAK,EAAE;MAAEX,KAAK,EAAE,MAAM;MAAEC,MAAM,EAAE;KAAQ;IAAEM,SAAS,EAAEA;IAAa,CACnF;AAIV;;SC1CgBK,WAAW,CAACC,MAG3B;EACC,IAAMC,kBAAkB,GAAG,SAArBA,kBAAkB,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;IAEVC,kBAAkB,CAACR,QAAQ,EAAEd,YAAY,CAAC;;AAG9C;;;;;;;"}
@@ -0,0 +1,2 @@
1
+ "use strict";function e(e){return e&&"object"==typeof e&&"default"in e?e.default:e}Object.defineProperty(exports,"__esModule",{value:!0});var r=e(require("@plasmicapp/host/registerComponent")),t=e(require("react")),o=require("@typeform/embed-react"),i={name:"TypeForm",displayName:"Typeform",importName:"Typeform",importPath:"@plasmicpkgs/plasmic-typeform",providesData:!0,description:"Embed Typeform on your website",defaultStyles:{width:"600px",height:"700px"},props:{formId:{type:"string",displayName:"Form ID",description:"ID of your form in Typeform",defaultValue:"R2s5BM"}}};function a(e){var r=e.className,i=e.formId;return i?t.createElement("div",{className:r},t.createElement(o.Widget,{id:i,style:{width:"100%",height:"100%"},className:r})):t.createElement("div",null,"Please specify a Form ID")}exports.Typeform=a,exports.TypeformMeta=i,exports.ensure=function(e){if(null==e)throw new Error("Value must not be undefined or null");return e},exports.registerAll=function(e){var t,o;e&&(t=a,o=i,e?e.registerComponent(t,o):r(t,o))};
2
+ //# sourceMappingURL=plasmic-typeform.cjs.production.min.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plasmic-typeform.cjs.production.min.js","sources":["../src/typeform.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\nimport { Widget } from \"@typeform/embed-react\";\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-typeform\";\n\ninterface TypeformProps {\n className?: string;\n formId?: string;\n}\n\nexport const TypeformMeta: ComponentMeta<TypeformProps> = {\n name: \"TypeForm\",\n displayName: \"Typeform\",\n importName: \"Typeform\",\n importPath: modulePath,\n providesData: true,\n description: \"Embed Typeform on your website\",\n defaultStyles: {\n width: \"600px\",\n height: \"700px\"\n },\n props: {\n formId: {\n type: \"string\",\n displayName: \"Form ID\",\n description: \"ID of your form in Typeform\",\n defaultValue: \"R2s5BM\"\n },\n },\n};\n\nexport function Typeform({ className, formId }: TypeformProps) {\n if (!formId) {\n return <div>Please specify a Form ID</div>;\n }\n\n return (\n\n <div className={className}>\n <Widget id={formId!} style={{ width: \"100%\", height: \"100%\" }} className={className} />\n </div>\n\n\n );\n}\n","import registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport registerGlobalContext from \"@plasmicapp/host/registerGlobalContext\";\nimport {\n Typeform,\n TypeformMeta,\n\n\n} from \"./typeform\";\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\n _registerComponent(Typeform, TypeformMeta);\n\n }\n}\n\nexport * from \"./typeform\";"],"names":["TypeformMeta","name","displayName","importName","importPath","providesData","description","defaultStyles","width","height","props","formId","type","defaultValue","Typeform","className","React","Widget","id","style","x","Error","loader","Component","defaultMeta","registerComponent"],"mappings":"0PAoBaA,EAA6C,CACxDC,KAAM,WACNC,YAAa,WACbC,WAAY,WACZC,WAXiB,gCAYjBC,cAAc,EACdC,YAAa,iCACbC,cAAe,CACbC,MAAO,QACPC,OAAQ,SAEVC,MAAO,CACLC,OAAQ,CACNC,KAAM,SACNV,YAAa,UACbI,YAAa,8BACbO,aAAc,qBAKJC,SAAWC,IAAAA,UAAWJ,IAAAA,OACpC,OAAKA,EAMHK,uBAAKD,UAAWA,GACdC,gBAACC,UAAOC,GAAIP,EAASQ,MAAO,CAAEX,MAAO,OAAQC,OAAQ,QAAUM,UAAWA,KANrEC,yHAvCeI,GACxB,GAAIA,MAAAA,EAEF,MAAM,IAAIC,6CAEV,OAAOD,gCCGiBE,GAI1B,IACEC,EACAC,EASEF,IAVFC,EAYmBT,EAXnBU,EAW6BxB,EATzBsB,EACFA,EAAOG,kBAAkBF,EAAWC,GAEpCC,EAAkBF,EAAWC"}
@@ -0,0 +1,66 @@
1
+ import registerComponent from '@plasmicapp/host/registerComponent';
2
+ import React from 'react';
3
+ import { Widget } from '@typeform/embed-react';
4
+
5
+ function ensure(x) {
6
+ if (x === null || x === undefined) {
7
+ debugger;
8
+ throw new Error("Value must not be undefined or null");
9
+ } else {
10
+ return x;
11
+ }
12
+ }
13
+ var modulePath = "@plasmicpkgs/plasmic-typeform";
14
+ var TypeformMeta = {
15
+ name: "TypeForm",
16
+ displayName: "Typeform",
17
+ importName: "Typeform",
18
+ importPath: modulePath,
19
+ providesData: true,
20
+ description: "Embed Typeform on your website",
21
+ defaultStyles: {
22
+ width: "600px",
23
+ height: "700px"
24
+ },
25
+ props: {
26
+ formId: {
27
+ type: "string",
28
+ displayName: "Form ID",
29
+ description: "ID of your form in Typeform",
30
+ defaultValue: "R2s5BM"
31
+ }
32
+ }
33
+ };
34
+ function Typeform(_ref) {
35
+ var className = _ref.className,
36
+ formId = _ref.formId;
37
+ if (!formId) {
38
+ return React.createElement("div", null, "Please specify a Form ID");
39
+ }
40
+ return React.createElement("div", {
41
+ className: className
42
+ }, React.createElement(Widget, {
43
+ id: formId,
44
+ style: {
45
+ width: "100%",
46
+ height: "100%"
47
+ },
48
+ className: className
49
+ }));
50
+ }
51
+
52
+ function registerAll(loader) {
53
+ var _registerComponent = function _registerComponent(Component, defaultMeta) {
54
+ if (loader) {
55
+ loader.registerComponent(Component, defaultMeta);
56
+ } else {
57
+ registerComponent(Component, defaultMeta);
58
+ }
59
+ };
60
+ if (loader) {
61
+ _registerComponent(Typeform, TypeformMeta);
62
+ }
63
+ }
64
+
65
+ export { Typeform, TypeformMeta, ensure, registerAll };
66
+ //# sourceMappingURL=plasmic-typeform.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plasmic-typeform.esm.js","sources":["../src/typeform.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\nimport { Widget } from \"@typeform/embed-react\";\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-typeform\";\n\ninterface TypeformProps {\n className?: string;\n formId?: string;\n}\n\nexport const TypeformMeta: ComponentMeta<TypeformProps> = {\n name: \"TypeForm\",\n displayName: \"Typeform\",\n importName: \"Typeform\",\n importPath: modulePath,\n providesData: true,\n description: \"Embed Typeform on your website\",\n defaultStyles: {\n width: \"600px\",\n height: \"700px\"\n },\n props: {\n formId: {\n type: \"string\",\n displayName: \"Form ID\",\n description: \"ID of your form in Typeform\",\n defaultValue: \"R2s5BM\"\n },\n },\n};\n\nexport function Typeform({ className, formId }: TypeformProps) {\n if (!formId) {\n return <div>Please specify a Form ID</div>;\n }\n\n return (\n\n <div className={className}>\n <Widget id={formId!} style={{ width: \"100%\", height: \"100%\" }} className={className} />\n </div>\n\n\n );\n}\n","import registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport registerGlobalContext from \"@plasmicapp/host/registerGlobalContext\";\nimport {\n Typeform,\n TypeformMeta,\n\n\n} from \"./typeform\";\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\n _registerComponent(Typeform, TypeformMeta);\n\n }\n}\n\nexport * from \"./typeform\";"],"names":["ensure","x","undefined","Error","modulePath","TypeformMeta","name","displayName","importName","importPath","providesData","description","defaultStyles","width","height","props","formId","type","defaultValue","Typeform","className","React","Widget","id","style","registerAll","loader","_registerComponent","Component","defaultMeta","registerComponent"],"mappings":";;;;SAIgBA,MAAM,CAAIC,CAAuB;EAC/C,IAAIA,CAAC,KAAK,IAAI,IAAIA,CAAC,KAAKC,SAAS,EAAE;IACjC;IACA,MAAM,IAAIC,KAAK,uCAAuC;GACvD,MAAM;IACL,OAAOF,CAAC;;AAEZ;AAEA,IAAMG,UAAU,GAAG,+BAA+B;IAOrCC,YAAY,GAAiC;EACxDC,IAAI,EAAE,UAAU;EAChBC,WAAW,EAAE,UAAU;EACvBC,UAAU,EAAE,UAAU;EACtBC,UAAU,EAAEL,UAAU;EACtBM,YAAY,EAAE,IAAI;EAClBC,WAAW,EAAE,gCAAgC;EAC7CC,aAAa,EAAE;IACbC,KAAK,EAAE,OAAO;IACdC,MAAM,EAAE;GACT;EACDC,KAAK,EAAE;IACLC,MAAM,EAAE;MACNC,IAAI,EAAE,QAAQ;MACdV,WAAW,EAAE,SAAS;MACtBI,WAAW,EAAE,6BAA6B;MAC1CO,YAAY,EAAE;;;;SAKJC,QAAQ;MAAGC,SAAS,QAATA,SAAS;IAAEJ,MAAM,QAANA,MAAM;EAC1C,IAAI,CAACA,MAAM,EAAE;IACX,OAAOK,4DAAmC;;EAG5C,OAEEA;IAAKD,SAAS,EAAEA;KACdC,oBAACC,MAAM;IAACC,EAAE,EAAEP,MAAO;IAAEQ,KAAK,EAAE;MAAEX,KAAK,EAAE,MAAM;MAAEC,MAAM,EAAE;KAAQ;IAAEM,SAAS,EAAEA;IAAa,CACnF;AAIV;;SC1CgBK,WAAW,CAACC,MAG3B;EACC,IAAMC,kBAAkB,GAAG,SAArBA,kBAAkB,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;IAEVC,kBAAkB,CAACR,QAAQ,EAAEd,YAAY,CAAC;;AAG9C;;;;"}
@@ -0,0 +1,10 @@
1
+ import { ComponentMeta } from "@plasmicapp/host";
2
+ import React from "react";
3
+ export declare function ensure<T>(x: T | null | undefined): T;
4
+ interface TypeformProps {
5
+ className?: string;
6
+ formId?: string;
7
+ }
8
+ export declare const TypeformMeta: ComponentMeta<TypeformProps>;
9
+ export declare function Typeform({ className, formId }: TypeformProps): React.JSX.Element;
10
+ export {};
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@plasmicpkgs/plasmic-typeform",
3
+ "version": "0.0.1",
4
+ "description": "Plasmic Typeform components.",
5
+ "main": "dist/index.js",
6
+ "typings": "dist/index.d.ts",
7
+ "module": "dist/plasmic-typeform.esm.js",
8
+ "publishConfig": {
9
+ "access": "public"
10
+ },
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "scripts": {
15
+ "start": "tsdx watch",
16
+ "build": "tsdx build",
17
+ "test": "yarn --cwd=../.. test --passWithNoTests",
18
+ "lint": "tsdx lint",
19
+ "prepare": "if-env PREPARE_NO_BUILD=true || yarn build",
20
+ "size": "size-limit",
21
+ "analyze": "size-limit --why"
22
+ },
23
+ "peerDependencies": {
24
+ "react": ">=16"
25
+ },
26
+ "size-limit": [
27
+ {
28
+ "path": "dist/plasmic-typeform.cjs.production.min.js",
29
+ "limit": "10 KB"
30
+ },
31
+ {
32
+ "path": "dist/plasmic-typeform.esm.js",
33
+ "limit": "10 KB"
34
+ }
35
+ ],
36
+ "devDependencies": {
37
+ "@plasmicapp/host": "^1.0.117",
38
+ "@plasmicapp/query": "^0.1.61",
39
+ "@size-limit/preset-small-lib": "^7.0.8",
40
+ "@types/react": "^17.0.43",
41
+ "@types/react-dom": "^17.0.14",
42
+ "husky": "^7.0.4",
43
+ "react": "^18.0.0",
44
+ "react-dom": "^18.0.0",
45
+ "size-limit": "^7.0.8",
46
+ "tsdx": "^0.14.1",
47
+ "tslib": "^2.3.1"
48
+ },
49
+ "dependencies": {
50
+ "@typeform/embed-react": "^2.1.0"
51
+ },
52
+ "gitHead": "6a7364c3fd0b59099a5869f3e99f13b51a391d0a"
53
+ }