@cmeslib/components 0.1.0 → 0.1.1
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/DemoTest/label.vue.mjs +6 -0
- package/es/components/DemoTest/label.vue.mjs.map +1 -0
- package/es/components/DemoTest/label.vue2.mjs +15 -0
- package/es/components/DemoTest/label.vue2.mjs.map +1 -0
- package/es/components/DemoTest/mycomp.mjs +11 -0
- package/es/components/DemoTest/mycomp.mjs.map +1 -0
- package/es/components/index.mjs +3 -0
- package/es/components/index.mjs.map +1 -1
- package/es/index.mjs +3 -0
- package/es/index.mjs.map +1 -1
- package/lib/components/DemoTest/label.vue.js +10 -0
- package/lib/components/DemoTest/label.vue.js.map +1 -0
- package/lib/components/DemoTest/label.vue2.js +19 -0
- package/lib/components/DemoTest/label.vue2.js.map +1 -0
- package/lib/components/DemoTest/mycomp.js +15 -0
- package/lib/components/DemoTest/mycomp.js.map +1 -0
- package/lib/components/index.js +5 -0
- package/lib/components/index.js.map +1 -1
- package/lib/index.js +5 -0
- package/lib/index.js.map +1 -1
- package/package.json +4 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"label.vue.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { defineComponent, ref, createBlock, openBlock } from 'vue';
|
|
2
|
+
|
|
3
|
+
var script = /* @__PURE__ */ defineComponent({
|
|
4
|
+
__name: "label",
|
|
5
|
+
setup(__props) {
|
|
6
|
+
const count = ref(0);
|
|
7
|
+
const RenderContent = () => /* @__PURE__ */ h("div", { class: "container" }, /* @__PURE__ */ h("h1", null, "TSX in Script Setup"), /* @__PURE__ */ h("button", { onClick: () => count.value++ }, "Value: ", count.value));
|
|
8
|
+
return (_ctx, _cache) => {
|
|
9
|
+
return openBlock(), createBlock(RenderContent);
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
export { script as default };
|
|
15
|
+
//# sourceMappingURL=label.vue2.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"label.vue2.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { defineComponent, ref } from 'vue';
|
|
2
|
+
|
|
3
|
+
var mycomp = defineComponent({
|
|
4
|
+
setup() {
|
|
5
|
+
const count = ref(0);
|
|
6
|
+
return () => /* @__PURE__ */ h("div", { onClick: () => count.value++ }, count.value);
|
|
7
|
+
}
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
export { mycomp as default };
|
|
11
|
+
//# sourceMappingURL=mycomp.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mycomp.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;"}
|
package/es/components/index.mjs
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import './DemoTest/label.vue.mjs';
|
|
2
|
+
export { default as MyComp } from './DemoTest/mycomp.mjs';
|
|
1
3
|
import './DemoButton/src/button.vue.mjs';
|
|
2
4
|
export { default as DemoButton } from './DemoButton/src/button.vue2.mjs';
|
|
3
5
|
import './DemoPanel/src/panel.vue.mjs';
|
|
4
6
|
export { default as DemoPanel } from './DemoPanel/src/panel.vue2.mjs';
|
|
7
|
+
export { default as Label } from './DemoTest/label.vue2.mjs';
|
|
5
8
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|
package/es/index.mjs
CHANGED
|
@@ -3,4 +3,7 @@ import './components/DemoButton/src/button.vue.mjs';
|
|
|
3
3
|
export { default as DemoButton } from './components/DemoButton/src/button.vue2.mjs';
|
|
4
4
|
import './components/DemoPanel/src/panel.vue.mjs';
|
|
5
5
|
export { default as DemoPanel } from './components/DemoPanel/src/panel.vue2.mjs';
|
|
6
|
+
import './components/DemoTest/label.vue.mjs';
|
|
7
|
+
export { default as Label } from './components/DemoTest/label.vue2.mjs';
|
|
8
|
+
export { default as MyComp } from './components/DemoTest/mycomp.mjs';
|
|
6
9
|
//# sourceMappingURL=index.mjs.map
|
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,10 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var label_vue_vue_type_script_setup_true_lang = require('./label.vue2.js');
|
|
6
|
+
|
|
7
|
+
label_vue_vue_type_script_setup_true_lang.default.__file = "packages/cmeslib-components/components/DemoTest/label.vue";
|
|
8
|
+
|
|
9
|
+
exports.default = label_vue_vue_type_script_setup_true_lang.default;
|
|
10
|
+
//# sourceMappingURL=label.vue.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"label.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var vue = require('vue');
|
|
6
|
+
|
|
7
|
+
var script = /* @__PURE__ */ vue.defineComponent({
|
|
8
|
+
__name: "label",
|
|
9
|
+
setup(__props) {
|
|
10
|
+
const count = vue.ref(0);
|
|
11
|
+
const RenderContent = () => /* @__PURE__ */ h("div", { class: "container" }, /* @__PURE__ */ h("h1", null, "TSX in Script Setup"), /* @__PURE__ */ h("button", { onClick: () => count.value++ }, "Value: ", count.value));
|
|
12
|
+
return (_ctx, _cache) => {
|
|
13
|
+
return vue.openBlock(), vue.createBlock(RenderContent);
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
exports.default = script;
|
|
19
|
+
//# sourceMappingURL=label.vue2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"label.vue2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var vue = require('vue');
|
|
6
|
+
|
|
7
|
+
var mycomp = vue.defineComponent({
|
|
8
|
+
setup() {
|
|
9
|
+
const count = vue.ref(0);
|
|
10
|
+
return () => /* @__PURE__ */ h("div", { onClick: () => count.value++ }, count.value);
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
exports.default = mycomp;
|
|
15
|
+
//# sourceMappingURL=mycomp.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mycomp.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
package/lib/components/index.js
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
require('./DemoTest/label.vue.js');
|
|
4
|
+
var mycomp = require('./DemoTest/mycomp.js');
|
|
3
5
|
require('./DemoButton/src/button.vue.js');
|
|
4
6
|
var button_vue_vue_type_script_setup_true_lang = require('./DemoButton/src/button.vue2.js');
|
|
5
7
|
require('./DemoPanel/src/panel.vue.js');
|
|
6
8
|
var panel_vue_vue_type_script_setup_true_lang = require('./DemoPanel/src/panel.vue2.js');
|
|
9
|
+
var label_vue_vue_type_script_setup_true_lang = require('./DemoTest/label.vue2.js');
|
|
7
10
|
|
|
8
11
|
|
|
9
12
|
|
|
13
|
+
exports.MyComp = mycomp.default;
|
|
10
14
|
exports.DemoButton = button_vue_vue_type_script_setup_true_lang.default;
|
|
11
15
|
exports.DemoPanel = panel_vue_vue_type_script_setup_true_lang.default;
|
|
16
|
+
exports.Label = label_vue_vue_type_script_setup_true_lang.default;
|
|
12
17
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
package/lib/index.js
CHANGED
|
@@ -5,10 +5,15 @@ require('./components/DemoButton/src/button.vue.js');
|
|
|
5
5
|
var button_vue_vue_type_script_setup_true_lang = require('./components/DemoButton/src/button.vue2.js');
|
|
6
6
|
require('./components/DemoPanel/src/panel.vue.js');
|
|
7
7
|
var panel_vue_vue_type_script_setup_true_lang = require('./components/DemoPanel/src/panel.vue2.js');
|
|
8
|
+
require('./components/DemoTest/label.vue.js');
|
|
9
|
+
var label_vue_vue_type_script_setup_true_lang = require('./components/DemoTest/label.vue2.js');
|
|
10
|
+
var mycomp = require('./components/DemoTest/mycomp.js');
|
|
8
11
|
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
exports.DemoDirective = index.DemoDirective;
|
|
12
15
|
exports.DemoButton = button_vue_vue_type_script_setup_true_lang.default;
|
|
13
16
|
exports.DemoPanel = panel_vue_vue_type_script_setup_true_lang.default;
|
|
17
|
+
exports.Label = label_vue_vue_type_script_setup_true_lang.default;
|
|
18
|
+
exports.MyComp = mycomp.default;
|
|
14
19
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cmeslib/components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -21,6 +21,9 @@
|
|
|
21
21
|
"element-plus": "2.11.1",
|
|
22
22
|
"vue": "3.2.47"
|
|
23
23
|
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
24
27
|
"scripts": {
|
|
25
28
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
26
29
|
}
|