vue-pancake-icons 2.2.8 → 2.2.9

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.
@@ -1,20 +1,26 @@
1
- const r = (o, n) => {
2
- const e = o.__vccOpts || o;
3
- for (const [t, c] of n)
4
- e[t] = c;
5
- return e;
6
- }, l = {
1
+ const s = (n, e) => {
2
+ const o = n.__vccOpts || n;
3
+ for (const [t, c] of e)
4
+ o[t] = c;
5
+ return o;
6
+ }, a = {
7
7
  name: "hello-world"
8
8
  };
9
- function s(o, n, e, t, c, u) {
9
+ function d(n, e, o, t, c, r) {
10
10
  return " Hello world ";
11
11
  }
12
- const d = /* @__PURE__ */ r(l, [["render", s]]), a = {
13
- install(o) {
14
- o.component("hello-world", d);
12
+ const l = /* @__PURE__ */ s(a, [["render", d]]), _ = {
13
+ name: "icon-test"
14
+ };
15
+ function i(n, e, o, t, c, r) {
16
+ return " Icon test ";
17
+ }
18
+ const p = /* @__PURE__ */ s(_, [["render", i]]), f = {
19
+ install(n) {
20
+ n.component("hello-world", l), n.component("icon-test", p);
15
21
  }
16
22
  };
17
- typeof window < "u" && window.Vue && window.Vue.use(a);
23
+ typeof window < "u" && window.Vue && window.Vue.use(f);
18
24
  export {
19
- a as default
25
+ f as default
20
26
  };
@@ -1 +1 @@
1
- (function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.VuePancakeIcons=n())})(this,function(){"use strict";const e=(o,c)=>{const t=o.__vccOpts||o;for(const[d,i]of c)t[d]=i;return t},n={name:"hello-world"};function f(o,c,t,d,i,u){return" Hello world "}const r=e(n,[["render",f]]),s={install(o){o.component("hello-world",r)}};return typeof window<"u"&&window.Vue&&window.Vue.use(s),s});
1
+ (function(n,o){typeof exports=="object"&&typeof module<"u"?module.exports=o():typeof define=="function"&&define.amd?define(o):(n=typeof globalThis<"u"?globalThis:n||self,n.VuePancakeIcons=o())})(this,function(){"use strict";const n=(e,c)=>{const t=e.__vccOpts||e;for(const[s,i]of c)t[s]=i;return t},o={name:"hello-world"};function d(e,c,t,s,i,a){return" Hello world "}const f=n(o,[["render",d]]),u={name:"icon-test"};function p(e,c,t,s,i,a){return" Icon test "}const l=n(u,[["render",p]]),r={install(e){e.component("hello-world",f),e.component("icon-test",l)}};return typeof window<"u"&&window.Vue&&window.Vue.use(r),r});
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vue-pancake-icons",
3
3
  "private": false,
4
- "version": "2.2.8",
4
+ "version": "2.2.9",
5
5
  "files": [
6
6
  "dist/*",
7
7
  "src/*",
package/src/install.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import * as components from "./components"
2
2
  import HelloWorld from "./components/HelloWorld.vue"
3
+ import IconTest from "./components/IconTest.vue"
3
4
  const VuePancakeIcons = {
4
5
  install(Vue) {
5
6
  // for (let props in components) {
@@ -8,6 +9,7 @@ const VuePancakeIcons = {
8
9
  // Vue.component(component.name, component)
9
10
  // }
10
11
  Vue.component('hello-world', HelloWorld)
12
+ Vue.component('icon-test', IconTest)
11
13
  }
12
14
  }
13
15