fancy-plugins-components 1.0.9 → 1.0.10
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/es/Button/button.vue.d.ts +3 -0
- package/dist/es/Button/button.vue.js +22 -0
- package/dist/es/Button/button.vue2.js +4 -0
- package/dist/es/Button/types.d.ts +5 -0
- package/dist/es/components.d.ts +1 -0
- package/dist/es/components.js +4 -0
- package/dist/es/index.d.ts +3 -0
- package/dist/es/index.js +6 -0
- package/dist/es/installer.d.ts +2 -0
- package/dist/es/installer.js +12 -0
- package/dist/es/styles/button/index.scss +3 -0
- package/dist/es/styles/index.scss +1 -0
- package/dist/es/types.d.ts +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ButtonProps } from './types';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<ButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { defineComponent as e, createBlock as o, openBlock as n, unref as r, withCtx as p, createTextVNode as a } from "vue";
|
|
2
|
+
import { ElButton as s } from "element-plus";
|
|
3
|
+
const f = /* @__PURE__ */ e({
|
|
4
|
+
name: "FancyButton",
|
|
5
|
+
__name: "button",
|
|
6
|
+
props: {
|
|
7
|
+
type: {},
|
|
8
|
+
size: {},
|
|
9
|
+
loading: {}
|
|
10
|
+
},
|
|
11
|
+
setup(u) {
|
|
12
|
+
return (m, t) => (n(), o(r(s), { class: "test_btn" }, {
|
|
13
|
+
default: p(() => [...t[0] || (t[0] = [
|
|
14
|
+
a("123", -1)
|
|
15
|
+
])]),
|
|
16
|
+
_: 1
|
|
17
|
+
}));
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
export {
|
|
21
|
+
f as default
|
|
22
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as FancyButton } from './Button/button.vue';
|
package/dist/es/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@use './button/index.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Button/types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fancy-plugins-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/es/index.js",
|
|
6
6
|
"module": "./dist/es/index.js",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"./*": "./*"
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
|
-
"
|
|
16
|
+
"dist"
|
|
17
17
|
],
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "vite build"
|