@mc20230601/keep-up 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/es/_virtual/plugin-vue_export-helper.mjs +10 -0
- package/es/_virtual/plugin-vue_export-helper.mjs.map +1 -0
- package/es/components/button/index.mjs +19 -0
- package/es/components/button/index.mjs.map +1 -0
- package/es/components/index.mjs +3 -0
- package/es/components/index.mjs.map +1 -0
- package/es/components/space/index.mjs +14 -0
- package/es/components/space/index.mjs.map +1 -0
- package/es/components/space/index.module.mjs +4 -0
- package/es/components/space/index.module.mjs.map +1 -0
- package/es/directives/index.mjs +2 -0
- package/es/directives/index.mjs.map +1 -0
- package/es/index.mjs +3 -0
- package/es/index.mjs.map +1 -0
- package/es/styles/index.css +6 -0
- package/package.json +26 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin-vue_export-helper.mjs","sources":["../../../../internal/build/plugin-vue:export-helper"],"sourcesContent":["\nexport default (sfc, props) => {\n const target = sfc.__vccOpts || sfc;\n for (const [key, val] of props) {\n target[key] = val;\n }\n return target;\n}\n"],"names":[],"mappings":"AACA,kBAAe,CAAC,GAAG,EAAE,KAAK,KAAK;AAC/B,EAAE,MAAM,MAAM,GAAG,GAAG,CAAC,SAAS,IAAI,GAAG,CAAC;AACtC,EAAE,KAAK,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,IAAI,KAAK,EAAE;AAClC,IAAI,MAAM,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC;AACtB,GAAG;AACH,EAAE,OAAO,MAAM,CAAC;AAChB;;;;"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ref, toDisplayString } from 'vue';
|
|
2
|
+
import _export_sfc from '../../_virtual/plugin-vue_export-helper.mjs';
|
|
3
|
+
|
|
4
|
+
const _sfc_main = {
|
|
5
|
+
__name: 'index',
|
|
6
|
+
setup(__props) {
|
|
7
|
+
|
|
8
|
+
const test = ref('name');
|
|
9
|
+
|
|
10
|
+
return (_ctx, _cache) => {
|
|
11
|
+
return "222112" + toDisplayString(test.value)
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
};
|
|
16
|
+
var index = /*#__PURE__*/_export_sfc(_sfc_main, [['__file',"/Users/mazhiyuan/Desktop/mzy-projects/Singapore/KeepUp/packages/components/button/index.vue"]]);
|
|
17
|
+
|
|
18
|
+
export { index as default };
|
|
19
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../../../../packages/components/button/index.vue"],"sourcesContent":["<template>222112{{ test }}</template>\n\n<script setup>\nimport { ref } from 'vue'\nconst test = ref('name')\n</script>\n"],"names":[],"mappings":";;;;;;;AAIA,MAAM,IAAI,GAAG,GAAG,CAAC,MAAM,EAAA;;;AAJb,EAAA,OAAA,QAAM,mBAAG,IAAI,CAAA,KAAA,CAAA;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { defineComponent, createVNode, createTextVNode } from 'vue';
|
|
2
|
+
import styles from './index.module.mjs';
|
|
3
|
+
|
|
4
|
+
var index = defineComponent({
|
|
5
|
+
name: "Space",
|
|
6
|
+
setup() {
|
|
7
|
+
return () => createVNode("div", {
|
|
8
|
+
"class": [styles.container, styles.text]
|
|
9
|
+
}, [createTextVNode("2321321")]);
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
export { index as default };
|
|
14
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../../../../packages/components/space/index.tsx"],"sourcesContent":["import { defineComponent } from 'vue'\nimport styles from './index.module.scss'\n\nexport default defineComponent({\n name: 'Space',\n setup() {\n return () => <div class={[styles.container, styles.text]}>2321321</div>\n },\n})\n"],"names":["defineComponent","name","setup","_createVNode","styles","container","text","_createTextVNode"],"mappings":";;;AAGA,YAAeA,eAAgB,CAAA;AAAA,EAC7BC,IAAM,EAAA,OAAA;AAAA,EACNC,KAAQ,GAAA;AACN,IAAO,OAAA,MAAAC,YAAA,KAAA,EAAA;AAAA,MAAA,OAAkB,EAAA,CAACC,MAAOC,CAAAA,SAAAA,EAAWD,OAAOE,IAAI,CAAA;AAAA,KAAC,EAAA,CAAAC,eAAe,CAAA,SAAA,CAAA,CAAA,CAAA,CAAA;AAAA,GACzE;AACF,CAAC,CAAA;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.module.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
package/es/index.mjs
ADDED
package/es/index.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mc20230601/keep-up",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"author": "mc20230601",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./es/index.d.ts",
|
|
13
|
+
"import": "./es/index.mjs",
|
|
14
|
+
"require": "./lib/index.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"peerDependencies": {
|
|
18
|
+
"vue": "^3.2.0"
|
|
19
|
+
},
|
|
20
|
+
"license": "ISC",
|
|
21
|
+
"packageManager": "pnpm@10.20.0",
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=22.17.0",
|
|
24
|
+
"pnpm": ">=10.20.0"
|
|
25
|
+
}
|
|
26
|
+
}
|