@maxelms/create-plugin-cli 1.1.17 → 1.1.19
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/package.json +1 -1
- package/templates/playground/dist/playground.html +1 -1
- package/templates/playground/dist/vue.runtime.global.js +9054 -0
- package/templates/vue3-micro-button/README.md +24 -0
- package/templates/vue3-micro-button/babel.config.js +8 -0
- package/templates/vue3-micro-button/configuration/App.vue +78 -0
- package/templates/vue3-micro-button/configuration/main.js +11 -0
- package/templates/vue3-micro-button/manifest.json.tpl +3 -0
- package/templates/vue3-micro-button/package.json.tpl +57 -0
- package/templates/vue3-micro-button/public/basicConfiguration.json +34 -0
- package/templates/vue3-micro-button/public/configuration.html +10 -0
- package/templates/vue3-micro-button/public/configuration.json +34 -0
- package/templates/vue3-micro-button/public/index.html +10 -0
- package/templates/vue3-micro-button/scripts/compress.js +32 -0
- package/templates/vue3-micro-button/src/App.vue.tpl +39 -0
- package/templates/vue3-micro-button/src/main.js +41 -0
- package/templates/vue3-micro-button/src/style.less.tpl +16 -0
- package/templates/vue3-micro-button/src/vue.runtime.global.js +9051 -0
- package/templates/vue3-micro-button/vue.config.js +46 -0
- package/templates/vue3-micro-field/configuration/App.vue +78 -0
- package/templates/vue3-micro-field/configuration/main.js +11 -0
- package/templates/vue3-micro-field/public/basicConfiguration.json +34 -0
- package/templates/vue3-micro-field/public/configuration.html +10 -0
- package/templates/vue3-micro-field/public/configuration.json +4 -0
- package/templates/vue3-micro-field/public/index.html +1 -1
- package/templates/vue3-micro-field/src/App.vue.tpl +20 -2
- package/templates/vue3-micro-field/src/vue.runtime.global.js +9051 -0
- package/templates/vue3-micro-field/vue.config.js +1 -1
- package/templates/vue3-micro-plugin/src/App.vue.tpl +4 -0
- package/templates/vue3-micro-plugin/src/vue.runtime.global.js +9051 -0
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html><head><meta charset="utf-8"/><title>Maxelms Plugin Playground</title><script src="./zone.umd.min.js"></script><script src="./react.production.min.js"></script><script src="./react-dom.production.min.js"></script><script defer="defer" src="main.js"></script><link href="main.css" rel="stylesheet"></head><body><div id="root-playground"></div></body></html>
|
|
1
|
+
<!doctype html><html><head><meta charset="utf-8"/><title>Maxelms Plugin Playground</title><script src="./zone.umd.min.js"></script><script src="./react.production.min.js"></script><script src="./react-dom.production.min.js"></script></script><script defer="defer" src="main.js"></script><link href="main.css" rel="stylesheet"></head><body><div id="root-playground"></div></body></html>
|