morghulis 2.0.19 → 2.0.20
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/morghulis.js +4 -4
- package/dist/morghulis.umd.cjs +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +5 -3
package/dist/morghulis.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { defineComponent as c, ref as l, createElementBlock as m, openBlock as r, Fragment as a, createElementVNode as e, toDisplayString as s } from "vue";
|
2
|
-
const
|
2
|
+
const p = { class: "my" }, i = { class: "card" }, u = /* @__PURE__ */ c({
|
3
3
|
__name: "MyComp",
|
4
4
|
props: {
|
5
5
|
msg: { type: String }
|
@@ -7,8 +7,8 @@ const i = { class: "my" }, p = { class: "card" }, u = /* @__PURE__ */ c({
|
|
7
7
|
setup(t) {
|
8
8
|
const n = l(0);
|
9
9
|
return (d, o) => (r(), m(a, null, [
|
10
|
-
e("h1",
|
11
|
-
e("div",
|
10
|
+
e("h1", p, s(t.msg), 1),
|
11
|
+
e("div", i, [
|
12
12
|
e("button", {
|
13
13
|
type: "button",
|
14
14
|
onClick: o[0] || (o[0] = (_) => n.value++)
|
@@ -18,7 +18,7 @@ const i = { class: "my" }, p = { class: "card" }, u = /* @__PURE__ */ c({
|
|
18
18
|
}
|
19
19
|
}), f = {
|
20
20
|
install: (t) => {
|
21
|
-
t.component("
|
21
|
+
t.component("MyComp", u);
|
22
22
|
}
|
23
23
|
};
|
24
24
|
export {
|
package/dist/morghulis.umd.cjs
CHANGED
@@ -1 +1 @@
|
|
1
|
-
(function(t,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],e):(t=typeof globalThis<"u"?globalThis:t||self,e(t.morghulis={},t.Vue))})(this,function(t,e){"use strict";const l={class:"my"},c={class:"card"},o=e.defineComponent({__name:"MyComp",props:{msg:{type:String}},setup(n){const i=e.ref(0);return(r,s)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("h1",l,e.toDisplayString(n.msg),1),e.createElementVNode("div",c,[e.createElementVNode("button",{type:"button",onClick:s[0]||(s[0]=m=>i.value++)},"count is "+e.toDisplayString(i.value),1)])],64))}}),d={install:n=>{n.component("
|
1
|
+
(function(t,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],e):(t=typeof globalThis<"u"?globalThis:t||self,e(t.morghulis={},t.Vue))})(this,function(t,e){"use strict";const l={class:"my"},c={class:"card"},o=e.defineComponent({__name:"MyComp",props:{msg:{type:String}},setup(n){const i=e.ref(0);return(r,s)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("h1",l,e.toDisplayString(n.msg),1),e.createElementVNode("div",c,[e.createElementVNode("button",{type:"button",onClick:s[0]||(s[0]=m=>i.value++)},"count is "+e.toDisplayString(i.value),1)])],64))}}),d={install:n=>{n.component("MyComp",o)}};t.MyComp=o,t.default=d,Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
|
package/dist/types/index.d.ts
CHANGED
package/package.json
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "morghulis",
|
3
|
-
"version": "2.0.
|
3
|
+
"version": "2.0.20",
|
4
4
|
"type": "module",
|
5
|
-
"files": [
|
5
|
+
"files": [
|
6
|
+
"dist"
|
7
|
+
],
|
6
8
|
"main": "./dist/morghulis.umd.cjs",
|
7
9
|
"module": "./dist/morghulis.js",
|
8
10
|
"types": "./dist/types/index.d.ts",
|
@@ -22,7 +24,7 @@
|
|
22
24
|
"vue": "^3.5.13"
|
23
25
|
},
|
24
26
|
"devDependencies": {
|
25
|
-
|
27
|
+
"@types/node": "^22.14.0",
|
26
28
|
"@vitejs/plugin-vue": "^5.2.3",
|
27
29
|
"typescript": "~5.8.0",
|
28
30
|
"vite": "^6.2.4",
|