@topvisor/ui 0.0.4 → 0.0.5-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/README.md +0 -1
- package/l/forms/forms.amd.js +2 -14
- package/l/forms/forms.js +2 -14
- package/package.json +1 -1
- package/c/button2/button2.amd.js +0 -15
- package/c/button2/button2.js +0 -15
package/README.md
CHANGED
package/l/forms/forms.amd.js
CHANGED
|
@@ -1,18 +1,7 @@
|
|
|
1
1
|
define(["exports", "vue"], function(exports, vue) {
|
|
2
2
|
"use strict"; vue = vue ?? Vue;
|
|
3
|
-
const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
4
|
-
__name: "button",
|
|
5
|
-
props: {
|
|
6
|
-
label: {}
|
|
7
|
-
},
|
|
8
|
-
setup(__props) {
|
|
9
|
-
return (_ctx, _cache) => {
|
|
10
|
-
return vue.toDisplayString(_ctx.label);
|
|
11
|
-
};
|
|
12
|
-
}
|
|
13
|
-
});
|
|
14
3
|
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
15
|
-
__name: "
|
|
4
|
+
__name: "button",
|
|
16
5
|
props: {
|
|
17
6
|
label: {}
|
|
18
7
|
},
|
|
@@ -22,7 +11,6 @@ define(["exports", "vue"], function(exports, vue) {
|
|
|
22
11
|
};
|
|
23
12
|
}
|
|
24
13
|
});
|
|
25
|
-
exports.Button = _sfc_main
|
|
26
|
-
exports.Button2 = _sfc_main;
|
|
14
|
+
exports.Button = _sfc_main;
|
|
27
15
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
28
16
|
});
|
package/l/forms/forms.js
CHANGED
|
@@ -1,17 +1,6 @@
|
|
|
1
1
|
import { defineComponent, toDisplayString } from "vue";
|
|
2
|
-
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
3
|
-
__name: "button",
|
|
4
|
-
props: {
|
|
5
|
-
label: {}
|
|
6
|
-
},
|
|
7
|
-
setup(__props) {
|
|
8
|
-
return (_ctx, _cache) => {
|
|
9
|
-
return toDisplayString(_ctx.label);
|
|
10
|
-
};
|
|
11
|
-
}
|
|
12
|
-
});
|
|
13
2
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
14
|
-
__name: "
|
|
3
|
+
__name: "button",
|
|
15
4
|
props: {
|
|
16
5
|
label: {}
|
|
17
6
|
},
|
|
@@ -22,6 +11,5 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
22
11
|
}
|
|
23
12
|
});
|
|
24
13
|
export {
|
|
25
|
-
_sfc_main
|
|
26
|
-
_sfc_main as Button2
|
|
14
|
+
_sfc_main as Button
|
|
27
15
|
};
|
package/package.json
CHANGED
package/c/button2/button2.amd.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
define(["vue"], function(vue) {
|
|
2
|
-
"use strict"; vue = vue ?? Vue;
|
|
3
|
-
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
4
|
-
__name: "button2",
|
|
5
|
-
props: {
|
|
6
|
-
label: {}
|
|
7
|
-
},
|
|
8
|
-
setup(__props) {
|
|
9
|
-
return (_ctx, _cache) => {
|
|
10
|
-
return vue.toDisplayString(_ctx.label);
|
|
11
|
-
};
|
|
12
|
-
}
|
|
13
|
-
});
|
|
14
|
-
return _sfc_main;
|
|
15
|
-
});
|
package/c/button2/button2.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { defineComponent, toDisplayString } from "vue";
|
|
2
|
-
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
3
|
-
__name: "button2",
|
|
4
|
-
props: {
|
|
5
|
-
label: {}
|
|
6
|
-
},
|
|
7
|
-
setup(__props) {
|
|
8
|
-
return (_ctx, _cache) => {
|
|
9
|
-
return toDisplayString(_ctx.label);
|
|
10
|
-
};
|
|
11
|
-
}
|
|
12
|
-
});
|
|
13
|
-
export {
|
|
14
|
-
_sfc_main as default
|
|
15
|
-
};
|