@mc20230601/keep-up 1.0.13 → 1.0.15
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/components/button/index.d.ts +2 -0
- package/es/components/button/index.mjs +8 -16
- package/es/components/button/index.mjs.map +1 -1
- package/es/components/index.d.ts +1 -1
- package/es/index.d.ts +2 -2
- package/es/index.mjs +2 -1
- package/es/index.mjs.map +1 -1
- package/es/keepUp/index.d.ts +1 -0
- package/package.json +1 -1
- package/es/_virtual/plugin-vue_export-helper.mjs +0 -10
- package/es/_virtual/plugin-vue_export-helper.mjs.map +0 -1
- package/es/components/button/index.vue.d.ts +0 -3
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -1,19 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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"]]);
|
|
1
|
+
import { defineComponent, createVNode, createTextVNode } from 'vue';
|
|
2
|
+
|
|
3
|
+
var index = defineComponent({
|
|
4
|
+
name: "Space",
|
|
5
|
+
setup() {
|
|
6
|
+
return () => createVNode("div", null, [createTextVNode("\u597D\u6709\u610F\u601D")]);
|
|
7
|
+
}
|
|
8
|
+
});
|
|
17
9
|
|
|
18
10
|
export { index as default };
|
|
19
11
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../../../../../packages/components/button/index.
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../../../../packages/components/button/index.tsx"],"sourcesContent":["import { defineComponent } from 'vue'\n\nexport default defineComponent({\n name: 'Space',\n setup() {\n return () => <div>好有意思</div>\n },\n})\n"],"names":["defineComponent","name","setup","_createVNode","_createTextVNode"],"mappings":";;AAEA,YAAeA,eAAgB,CAAA;AAAA,EAC7BC,IAAM,EAAA,OAAA;AAAA,EACNC,KAAQ,GAAA;AACN,IAAO,OAAA,MAAAC,YAAAC,KAAAA,EAAAA,IAAAA,EAAAA,CAAAA,eAAqB,CAAA,0BAAA,CAAA,CAAA,CAAA,CAAA;AAAA,GAC9B;AACF,CAAC,CAAA;;;;"}
|
package/es/components/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as Button } from './button
|
|
1
|
+
export { default as Button } from './button';
|
|
2
2
|
export { default as Space } from './space';
|
package/es/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './
|
|
1
|
+
export * from './components/button'
|
|
2
|
+
export * from './components/space'
|
package/es/index.mjs
CHANGED
package/es/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../components';
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
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;;;;"}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
declare const _default: typeof __VLS_export;
|
|
2
|
-
export default _default;
|
|
3
|
-
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|