qureal-editor 1.0.0

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/index.cjs ADDED
@@ -0,0 +1,2 @@
1
+ require("react"),module.exports=function(){return h("button",null,"Qureal Button")};
2
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.cjs","sources":["../src/index.js"],"sourcesContent":["import React from \"react\"\n\n\nfunction QButton() {\n return (\n <button>Qureal Button</button>\n )\n}\n\nexport default QButton"],"names":["h"],"mappings":"gCAGA,WACI,OACIA,EAAQ,SAAA,KAAA,gBAEhB"}
@@ -0,0 +1,2 @@
1
+ import"react";function t(){return h("button",null,"Qureal Button")}export{t as default};
2
+ //# sourceMappingURL=index.modern.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.modern.js","sources":["../src/index.js"],"sourcesContent":["import React from \"react\"\n\n\nfunction QButton() {\n return (\n <button>Qureal Button</button>\n )\n}\n\nexport default QButton"],"names":["QButton","h"],"mappings":"cAGA,SAASA,IACL,OACIC,EAAQ,SAAA,KAAA,gBAEhB"}
@@ -0,0 +1,2 @@
1
+ import"react";function t(){return h("button",null,"Qureal Button")}export{t as default};
2
+ //# sourceMappingURL=index.module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.module.js","sources":["../src/index.js"],"sourcesContent":["import React from \"react\"\n\n\nfunction QButton() {\n return (\n <button>Qureal Button</button>\n )\n}\n\nexport default QButton"],"names":["QButton","h"],"mappings":"cAGA,SAASA,IACL,OACIC,EAAQ,SAAA,KAAA,gBAEhB"}
@@ -0,0 +1,2 @@
1
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("react")):"function"==typeof define&&define.amd?define(["react"],t):(e||self).qurealEditor=t()}(this,function(){return function(){return h("button",null,"Qureal Button")}});
2
+ //# sourceMappingURL=index.umd.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.umd.js","sources":["../src/index.js"],"sourcesContent":["import React from \"react\"\n\n\nfunction QButton() {\n return (\n <button>Qureal Button</button>\n )\n}\n\nexport default QButton"],"names":["h"],"mappings":"gQAGA,WACI,OACIA,EAAQ,SAAA,KAAA,gBAEhB"}
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "qureal-editor",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "source": "src/index.js",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.module.js",
8
+ "unpkg": "dist/index.umd.js",
9
+ "scripts": {
10
+ "build": "microbundle",
11
+ "dev": "microbundle watch"
12
+ },
13
+ "devDependencies": {
14
+ "microbundle": "^0.15.1"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/shivampip/qureal-editor.git"
19
+ }
20
+ }
package/src/index.js ADDED
@@ -0,0 +1,10 @@
1
+ import React from "react"
2
+
3
+
4
+ function QButton() {
5
+ return (
6
+ <button>Qureal Button</button>
7
+ )
8
+ }
9
+
10
+ export default QButton