rx-compo 1.0.4 → 1.0.52
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/entry/types/index.d.ts +1 -0
- package/es/components/RxButton/index.d.ts +3 -3
- package/es/components/RxButton/index.js +15 -28
- package/es/components/RxButton/src/index.d.ts +3 -0
- package/es/components/RxButton/src/index.vue.d.ts +10 -0
- package/es/components/index.d.ts +1 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/index.esm.js +17 -29
- package/index.js +18 -31
- package/lib/components/RxButton/index.d.ts +3 -3
- package/lib/components/RxButton/index.js +16 -29
- package/lib/components/RxButton/src/index.d.ts +3 -0
- package/lib/components/RxButton/src/index.vue.d.ts +10 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/package.json +16 -16
- package/theme-chalk/css/icon.css +1 -0
- package/theme-chalk/css/index.css +1 -0
- package/theme-chalk/fonts/iconfont.ttf +0 -0
- package/theme-chalk/fonts/iconfont.woff +0 -0
- package/theme-chalk/fonts/iconfont.woff2 +0 -0
- package/types/components/RxButton/index.d.ts +3 -3
- package/types/components/RxButton/src/index.d.ts +3 -0
- package/types/components/RxButton/src/index.vue.d.ts +10 -0
- package/types/components/index.d.ts +1 -0
- package/es/components/RxButton/src/button.d.ts +0 -8
- package/es/components/RxButton/src/button.vue.d.ts +0 -15
- package/lib/components/RxButton/src/button.d.ts +0 -8
- package/lib/components/RxButton/src/button.vue.d.ts +0 -15
- package/types/components/RxButton/src/button.d.ts +0 -8
- package/types/components/RxButton/src/button.vue.d.ts +0 -15
package/entry/types/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
export {
|
|
3
|
-
export default
|
|
1
|
+
declare const RxButton: import("@vue/runtime-core").Plugin;
|
|
2
|
+
export { RxButton };
|
|
3
|
+
export default RxButton;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { withInstall as withInstall$1 } from 'rx-compo/es/utils/with-install';
|
|
2
2
|
import { openBlock, createElementBlock, createElementVNode, warn, watch, unref, inject, ref, computed, getCurrentInstance, defineComponent, mergeProps, renderSlot, useSlots, Text, createBlock, resolveDynamicComponent, withCtx, Fragment, normalizeClass, createCommentVNode, provide, reactive, toRef, resolveComponent, createTextVNode } from 'vue';
|
|
3
3
|
|
|
4
|
+
const RxButtonProps = {};
|
|
5
|
+
|
|
4
6
|
/**
|
|
5
7
|
* Make a map and return a function for checking if a key
|
|
6
8
|
* is in that map.
|
|
@@ -450,7 +452,7 @@ const buttonTypes = [
|
|
|
450
452
|
""
|
|
451
453
|
];
|
|
452
454
|
const buttonNativeTypes = ["button", "submit", "reset"];
|
|
453
|
-
const buttonProps
|
|
455
|
+
const buttonProps = buildProps({
|
|
454
456
|
size: useSizeProp,
|
|
455
457
|
disabled: Boolean,
|
|
456
458
|
type: {
|
|
@@ -1687,7 +1689,7 @@ const __default__$1 = defineComponent({
|
|
|
1687
1689
|
});
|
|
1688
1690
|
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
1689
1691
|
...__default__$1,
|
|
1690
|
-
props: buttonProps
|
|
1692
|
+
props: buttonProps,
|
|
1691
1693
|
emits: buttonEmits,
|
|
1692
1694
|
setup(__props, { expose, emit }) {
|
|
1693
1695
|
const props = __props;
|
|
@@ -1754,8 +1756,8 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
1754
1756
|
var Button = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "/home/runner/work/element-plus/element-plus/packages/components/button/src/button.vue"]]);
|
|
1755
1757
|
|
|
1756
1758
|
const buttonGroupProps = {
|
|
1757
|
-
size: buttonProps
|
|
1758
|
-
type: buttonProps
|
|
1759
|
+
size: buttonProps.size,
|
|
1760
|
+
type: buttonProps.type
|
|
1759
1761
|
};
|
|
1760
1762
|
|
|
1761
1763
|
const __default__ = defineComponent({
|
|
@@ -1787,48 +1789,33 @@ const ElButton = withInstall(Button, {
|
|
|
1787
1789
|
});
|
|
1788
1790
|
withNoopInstall(ButtonGroup);
|
|
1789
1791
|
|
|
1790
|
-
const buttonProps = {
|
|
1791
|
-
type: {
|
|
1792
|
-
type: String,
|
|
1793
|
-
default: 'text'
|
|
1794
|
-
}
|
|
1795
|
-
};
|
|
1796
|
-
|
|
1797
1792
|
var script = defineComponent({
|
|
1798
|
-
name: '
|
|
1793
|
+
name: 'RxButton',
|
|
1799
1794
|
components: {
|
|
1800
1795
|
ElButton
|
|
1801
1796
|
},
|
|
1802
|
-
props:
|
|
1797
|
+
props: RxButtonProps,
|
|
1803
1798
|
setup() {
|
|
1804
|
-
|
|
1805
|
-
alert('WQ!!!!!!');
|
|
1806
|
-
};
|
|
1807
|
-
return {
|
|
1808
|
-
handlerClick
|
|
1809
|
-
};
|
|
1799
|
+
return {};
|
|
1810
1800
|
}
|
|
1811
1801
|
});
|
|
1812
1802
|
|
|
1813
|
-
const _hoisted_1 = /*#__PURE__*/createTextVNode("
|
|
1803
|
+
const _hoisted_1 = /*#__PURE__*/createTextVNode("我我我");
|
|
1814
1804
|
|
|
1815
1805
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1816
1806
|
const _component_el_button = resolveComponent("el-button");
|
|
1817
1807
|
|
|
1818
|
-
return (openBlock(), createBlock(_component_el_button, {
|
|
1819
|
-
type: _ctx.type,
|
|
1820
|
-
onClick: _ctx.handlerClick
|
|
1821
|
-
}, {
|
|
1808
|
+
return (openBlock(), createBlock(_component_el_button, null, {
|
|
1822
1809
|
default: withCtx(() => [
|
|
1823
1810
|
_hoisted_1
|
|
1824
1811
|
]),
|
|
1825
1812
|
_: 1 /* STABLE */
|
|
1826
|
-
}
|
|
1813
|
+
}))
|
|
1827
1814
|
}
|
|
1828
1815
|
|
|
1829
1816
|
script.render = render;
|
|
1830
|
-
script.__file = "packages/components/RxButton/src/
|
|
1817
|
+
script.__file = "packages/components/RxButton/src/index.vue";
|
|
1831
1818
|
|
|
1832
|
-
const
|
|
1819
|
+
const RxButton = withInstall$1(script);
|
|
1833
1820
|
|
|
1834
|
-
export {
|
|
1821
|
+
export { RxButton, RxButton as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<Readonly<import("vue").ComponentPropsOptions<{
|
|
2
|
+
[x: string]: unknown;
|
|
3
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, readonly string[] | Readonly<{
|
|
4
|
+
[x: string]: unknown;
|
|
5
|
+
} & {} & {
|
|
6
|
+
[x: string]: unknown;
|
|
7
|
+
}>, {
|
|
8
|
+
[x: number]: string;
|
|
9
|
+
} | {}>;
|
|
10
|
+
export default _default;
|
package/es/components/index.d.ts
CHANGED
package/es/index.d.ts
CHANGED
package/es/index.js
CHANGED
package/index.esm.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { openBlock, createElementBlock, createElementVNode, warn, watch, unref, inject, ref, computed, getCurrentInstance, defineComponent, mergeProps, renderSlot, useSlots, Text, createBlock, resolveDynamicComponent, withCtx, Fragment, normalizeClass, createCommentVNode, provide, reactive, toRef, resolveComponent, createTextVNode } from 'vue';
|
|
2
|
+
import 'virtual:windi.css';
|
|
2
3
|
|
|
3
4
|
const withInstall$1 = (comp) => {
|
|
4
5
|
comp.install = function (app) {
|
|
@@ -7,6 +8,8 @@ const withInstall$1 = (comp) => {
|
|
|
7
8
|
return comp;
|
|
8
9
|
};
|
|
9
10
|
|
|
11
|
+
const RxButtonProps = {};
|
|
12
|
+
|
|
10
13
|
/**
|
|
11
14
|
* Make a map and return a function for checking if a key
|
|
12
15
|
* is in that map.
|
|
@@ -456,7 +459,7 @@ const buttonTypes = [
|
|
|
456
459
|
""
|
|
457
460
|
];
|
|
458
461
|
const buttonNativeTypes = ["button", "submit", "reset"];
|
|
459
|
-
const buttonProps
|
|
462
|
+
const buttonProps = buildProps({
|
|
460
463
|
size: useSizeProp,
|
|
461
464
|
disabled: Boolean,
|
|
462
465
|
type: {
|
|
@@ -1693,7 +1696,7 @@ const __default__$1 = defineComponent({
|
|
|
1693
1696
|
});
|
|
1694
1697
|
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
1695
1698
|
...__default__$1,
|
|
1696
|
-
props: buttonProps
|
|
1699
|
+
props: buttonProps,
|
|
1697
1700
|
emits: buttonEmits,
|
|
1698
1701
|
setup(__props, { expose, emit }) {
|
|
1699
1702
|
const props = __props;
|
|
@@ -1760,8 +1763,8 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
1760
1763
|
var Button = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "/home/runner/work/element-plus/element-plus/packages/components/button/src/button.vue"]]);
|
|
1761
1764
|
|
|
1762
1765
|
const buttonGroupProps = {
|
|
1763
|
-
size: buttonProps
|
|
1764
|
-
type: buttonProps
|
|
1766
|
+
size: buttonProps.size,
|
|
1767
|
+
type: buttonProps.type
|
|
1765
1768
|
};
|
|
1766
1769
|
|
|
1767
1770
|
const __default__ = defineComponent({
|
|
@@ -1793,53 +1796,38 @@ const ElButton = withInstall(Button, {
|
|
|
1793
1796
|
});
|
|
1794
1797
|
withNoopInstall(ButtonGroup);
|
|
1795
1798
|
|
|
1796
|
-
const buttonProps = {
|
|
1797
|
-
type: {
|
|
1798
|
-
type: String,
|
|
1799
|
-
default: 'text'
|
|
1800
|
-
}
|
|
1801
|
-
};
|
|
1802
|
-
|
|
1803
1799
|
var script = defineComponent({
|
|
1804
|
-
name: '
|
|
1800
|
+
name: 'RxButton',
|
|
1805
1801
|
components: {
|
|
1806
1802
|
ElButton
|
|
1807
1803
|
},
|
|
1808
|
-
props:
|
|
1804
|
+
props: RxButtonProps,
|
|
1809
1805
|
setup() {
|
|
1810
|
-
|
|
1811
|
-
alert('WQ!!!!!!');
|
|
1812
|
-
};
|
|
1813
|
-
return {
|
|
1814
|
-
handlerClick
|
|
1815
|
-
};
|
|
1806
|
+
return {};
|
|
1816
1807
|
}
|
|
1817
1808
|
});
|
|
1818
1809
|
|
|
1819
|
-
const _hoisted_1 = /*#__PURE__*/createTextVNode("
|
|
1810
|
+
const _hoisted_1 = /*#__PURE__*/createTextVNode("我我我");
|
|
1820
1811
|
|
|
1821
1812
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1822
1813
|
const _component_el_button = resolveComponent("el-button");
|
|
1823
1814
|
|
|
1824
|
-
return (openBlock(), createBlock(_component_el_button, {
|
|
1825
|
-
type: _ctx.type,
|
|
1826
|
-
onClick: _ctx.handlerClick
|
|
1827
|
-
}, {
|
|
1815
|
+
return (openBlock(), createBlock(_component_el_button, null, {
|
|
1828
1816
|
default: withCtx(() => [
|
|
1829
1817
|
_hoisted_1
|
|
1830
1818
|
]),
|
|
1831
1819
|
_: 1 /* STABLE */
|
|
1832
|
-
}
|
|
1820
|
+
}))
|
|
1833
1821
|
}
|
|
1834
1822
|
|
|
1835
1823
|
script.render = render;
|
|
1836
|
-
script.__file = "packages/components/RxButton/src/
|
|
1824
|
+
script.__file = "packages/components/RxButton/src/index.vue";
|
|
1837
1825
|
|
|
1838
|
-
const
|
|
1826
|
+
const RxButton = withInstall$1(script);
|
|
1839
1827
|
|
|
1840
1828
|
var components = /*#__PURE__*/Object.freeze({
|
|
1841
1829
|
__proto__: null,
|
|
1842
|
-
|
|
1830
|
+
RxButton: RxButton
|
|
1843
1831
|
});
|
|
1844
1832
|
|
|
1845
1833
|
const install = (app) => {
|
|
@@ -1851,4 +1839,4 @@ var index = {
|
|
|
1851
1839
|
install
|
|
1852
1840
|
};
|
|
1853
1841
|
|
|
1854
|
-
export {
|
|
1842
|
+
export { RxButton, index as default };
|
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vue')) :
|
|
3
|
-
typeof define === 'function' && define.amd ? define(['exports', 'vue'], factory) :
|
|
2
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vue'), require('virtual:windi.css')) :
|
|
3
|
+
typeof define === 'function' && define.amd ? define(['exports', 'vue', 'virtual:windi.css'], factory) :
|
|
4
4
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.wPlus = {}, global.Vue));
|
|
5
5
|
})(this, (function (exports, vue) { 'use strict';
|
|
6
6
|
|
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
return comp;
|
|
12
12
|
};
|
|
13
13
|
|
|
14
|
+
const RxButtonProps = {};
|
|
15
|
+
|
|
14
16
|
/**
|
|
15
17
|
* Make a map and return a function for checking if a key
|
|
16
18
|
* is in that map.
|
|
@@ -460,7 +462,7 @@ For more detail, please visit: ${ref}
|
|
|
460
462
|
""
|
|
461
463
|
];
|
|
462
464
|
const buttonNativeTypes = ["button", "submit", "reset"];
|
|
463
|
-
const buttonProps
|
|
465
|
+
const buttonProps = buildProps({
|
|
464
466
|
size: useSizeProp,
|
|
465
467
|
disabled: Boolean,
|
|
466
468
|
type: {
|
|
@@ -1697,7 +1699,7 @@ For more detail, please visit: ${ref}
|
|
|
1697
1699
|
});
|
|
1698
1700
|
const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
1699
1701
|
...__default__$1,
|
|
1700
|
-
props: buttonProps
|
|
1702
|
+
props: buttonProps,
|
|
1701
1703
|
emits: buttonEmits,
|
|
1702
1704
|
setup(__props, { expose, emit }) {
|
|
1703
1705
|
const props = __props;
|
|
@@ -1764,8 +1766,8 @@ For more detail, please visit: ${ref}
|
|
|
1764
1766
|
var Button = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "/home/runner/work/element-plus/element-plus/packages/components/button/src/button.vue"]]);
|
|
1765
1767
|
|
|
1766
1768
|
const buttonGroupProps = {
|
|
1767
|
-
size: buttonProps
|
|
1768
|
-
type: buttonProps
|
|
1769
|
+
size: buttonProps.size,
|
|
1770
|
+
type: buttonProps.type
|
|
1769
1771
|
};
|
|
1770
1772
|
|
|
1771
1773
|
const __default__ = vue.defineComponent({
|
|
@@ -1797,53 +1799,38 @@ For more detail, please visit: ${ref}
|
|
|
1797
1799
|
});
|
|
1798
1800
|
withNoopInstall(ButtonGroup);
|
|
1799
1801
|
|
|
1800
|
-
const buttonProps = {
|
|
1801
|
-
type: {
|
|
1802
|
-
type: String,
|
|
1803
|
-
default: 'text'
|
|
1804
|
-
}
|
|
1805
|
-
};
|
|
1806
|
-
|
|
1807
1802
|
var script = vue.defineComponent({
|
|
1808
|
-
name: '
|
|
1803
|
+
name: 'RxButton',
|
|
1809
1804
|
components: {
|
|
1810
1805
|
ElButton
|
|
1811
1806
|
},
|
|
1812
|
-
props:
|
|
1807
|
+
props: RxButtonProps,
|
|
1813
1808
|
setup() {
|
|
1814
|
-
|
|
1815
|
-
alert('WQ!!!!!!');
|
|
1816
|
-
};
|
|
1817
|
-
return {
|
|
1818
|
-
handlerClick
|
|
1819
|
-
};
|
|
1809
|
+
return {};
|
|
1820
1810
|
}
|
|
1821
1811
|
});
|
|
1822
1812
|
|
|
1823
|
-
const _hoisted_1 = /*#__PURE__*/vue.createTextVNode("
|
|
1813
|
+
const _hoisted_1 = /*#__PURE__*/vue.createTextVNode("我我我");
|
|
1824
1814
|
|
|
1825
1815
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1826
1816
|
const _component_el_button = vue.resolveComponent("el-button");
|
|
1827
1817
|
|
|
1828
|
-
return (vue.openBlock(), vue.createBlock(_component_el_button, {
|
|
1829
|
-
type: _ctx.type,
|
|
1830
|
-
onClick: _ctx.handlerClick
|
|
1831
|
-
}, {
|
|
1818
|
+
return (vue.openBlock(), vue.createBlock(_component_el_button, null, {
|
|
1832
1819
|
default: vue.withCtx(() => [
|
|
1833
1820
|
_hoisted_1
|
|
1834
1821
|
]),
|
|
1835
1822
|
_: 1 /* STABLE */
|
|
1836
|
-
}
|
|
1823
|
+
}))
|
|
1837
1824
|
}
|
|
1838
1825
|
|
|
1839
1826
|
script.render = render;
|
|
1840
|
-
script.__file = "packages/components/RxButton/src/
|
|
1827
|
+
script.__file = "packages/components/RxButton/src/index.vue";
|
|
1841
1828
|
|
|
1842
|
-
const
|
|
1829
|
+
const RxButton = withInstall$1(script);
|
|
1843
1830
|
|
|
1844
1831
|
var components = /*#__PURE__*/Object.freeze({
|
|
1845
1832
|
__proto__: null,
|
|
1846
|
-
|
|
1833
|
+
RxButton: RxButton
|
|
1847
1834
|
});
|
|
1848
1835
|
|
|
1849
1836
|
const install = (app) => {
|
|
@@ -1855,7 +1842,7 @@ For more detail, please visit: ${ref}
|
|
|
1855
1842
|
install
|
|
1856
1843
|
};
|
|
1857
1844
|
|
|
1858
|
-
exports.
|
|
1845
|
+
exports.RxButton = RxButton;
|
|
1859
1846
|
exports["default"] = index;
|
|
1860
1847
|
|
|
1861
1848
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
export {
|
|
3
|
-
export default
|
|
1
|
+
declare const RxButton: import("@vue/runtime-core").Plugin;
|
|
2
|
+
export { RxButton };
|
|
3
|
+
export default RxButton;
|
|
@@ -5,6 +5,8 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var withInstall$1 = require('rx-compo/lib/utils/with-install');
|
|
6
6
|
var vue = require('vue');
|
|
7
7
|
|
|
8
|
+
const RxButtonProps = {};
|
|
9
|
+
|
|
8
10
|
/**
|
|
9
11
|
* Make a map and return a function for checking if a key
|
|
10
12
|
* is in that map.
|
|
@@ -454,7 +456,7 @@ const buttonTypes = [
|
|
|
454
456
|
""
|
|
455
457
|
];
|
|
456
458
|
const buttonNativeTypes = ["button", "submit", "reset"];
|
|
457
|
-
const buttonProps
|
|
459
|
+
const buttonProps = buildProps({
|
|
458
460
|
size: useSizeProp,
|
|
459
461
|
disabled: Boolean,
|
|
460
462
|
type: {
|
|
@@ -1691,7 +1693,7 @@ const __default__$1 = vue.defineComponent({
|
|
|
1691
1693
|
});
|
|
1692
1694
|
const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
1693
1695
|
...__default__$1,
|
|
1694
|
-
props: buttonProps
|
|
1696
|
+
props: buttonProps,
|
|
1695
1697
|
emits: buttonEmits,
|
|
1696
1698
|
setup(__props, { expose, emit }) {
|
|
1697
1699
|
const props = __props;
|
|
@@ -1758,8 +1760,8 @@ const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1758
1760
|
var Button = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "/home/runner/work/element-plus/element-plus/packages/components/button/src/button.vue"]]);
|
|
1759
1761
|
|
|
1760
1762
|
const buttonGroupProps = {
|
|
1761
|
-
size: buttonProps
|
|
1762
|
-
type: buttonProps
|
|
1763
|
+
size: buttonProps.size,
|
|
1764
|
+
type: buttonProps.type
|
|
1763
1765
|
};
|
|
1764
1766
|
|
|
1765
1767
|
const __default__ = vue.defineComponent({
|
|
@@ -1791,49 +1793,34 @@ const ElButton = withInstall(Button, {
|
|
|
1791
1793
|
});
|
|
1792
1794
|
withNoopInstall(ButtonGroup);
|
|
1793
1795
|
|
|
1794
|
-
const buttonProps = {
|
|
1795
|
-
type: {
|
|
1796
|
-
type: String,
|
|
1797
|
-
default: 'text'
|
|
1798
|
-
}
|
|
1799
|
-
};
|
|
1800
|
-
|
|
1801
1796
|
var script = vue.defineComponent({
|
|
1802
|
-
name: '
|
|
1797
|
+
name: 'RxButton',
|
|
1803
1798
|
components: {
|
|
1804
1799
|
ElButton
|
|
1805
1800
|
},
|
|
1806
|
-
props:
|
|
1801
|
+
props: RxButtonProps,
|
|
1807
1802
|
setup() {
|
|
1808
|
-
|
|
1809
|
-
alert('WQ!!!!!!');
|
|
1810
|
-
};
|
|
1811
|
-
return {
|
|
1812
|
-
handlerClick
|
|
1813
|
-
};
|
|
1803
|
+
return {};
|
|
1814
1804
|
}
|
|
1815
1805
|
});
|
|
1816
1806
|
|
|
1817
|
-
const _hoisted_1 = /*#__PURE__*/vue.createTextVNode("
|
|
1807
|
+
const _hoisted_1 = /*#__PURE__*/vue.createTextVNode("我我我");
|
|
1818
1808
|
|
|
1819
1809
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1820
1810
|
const _component_el_button = vue.resolveComponent("el-button");
|
|
1821
1811
|
|
|
1822
|
-
return (vue.openBlock(), vue.createBlock(_component_el_button, {
|
|
1823
|
-
type: _ctx.type,
|
|
1824
|
-
onClick: _ctx.handlerClick
|
|
1825
|
-
}, {
|
|
1812
|
+
return (vue.openBlock(), vue.createBlock(_component_el_button, null, {
|
|
1826
1813
|
default: vue.withCtx(() => [
|
|
1827
1814
|
_hoisted_1
|
|
1828
1815
|
]),
|
|
1829
1816
|
_: 1 /* STABLE */
|
|
1830
|
-
}
|
|
1817
|
+
}))
|
|
1831
1818
|
}
|
|
1832
1819
|
|
|
1833
1820
|
script.render = render;
|
|
1834
|
-
script.__file = "packages/components/RxButton/src/
|
|
1821
|
+
script.__file = "packages/components/RxButton/src/index.vue";
|
|
1835
1822
|
|
|
1836
|
-
const
|
|
1823
|
+
const RxButton = withInstall$1.withInstall(script);
|
|
1837
1824
|
|
|
1838
|
-
exports.
|
|
1839
|
-
exports["default"] =
|
|
1825
|
+
exports.RxButton = RxButton;
|
|
1826
|
+
exports["default"] = RxButton;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<Readonly<import("vue").ComponentPropsOptions<{
|
|
2
|
+
[x: string]: unknown;
|
|
3
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, readonly string[] | Readonly<{
|
|
4
|
+
[x: string]: unknown;
|
|
5
|
+
} & {} & {
|
|
6
|
+
[x: string]: unknown;
|
|
7
|
+
}>, {
|
|
8
|
+
[x: number]: string;
|
|
9
|
+
} | {}>;
|
|
10
|
+
export default _default;
|
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "rx-compo",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "",
|
|
6
|
-
"main": "lib/index.js",
|
|
7
|
-
"module": "es/index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"author": "",
|
|
12
|
-
"license": "ISC",
|
|
13
|
-
"dependencies": {
|
|
14
|
-
"element-plus": "^
|
|
15
|
-
}
|
|
16
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "rx-compo",
|
|
3
|
+
"version": "1.0.52",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "",
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"module": "es/index.js",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
+
},
|
|
11
|
+
"author": "",
|
|
12
|
+
"license": "ISC",
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"element-plus": "^2.3.7"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@charset "UTF-8";@font-face{font-family:w-ui-icons;src:url(rx-compo/theme-chalk/fonts/iconfont.woff2) format("woff2"),url(rx-compo/theme-chalk/fonts/iconfont.woff) format("woff"),url(rx-compo/theme-chalk/fonts/iconfont.ttf) format("truetype")}[class*=w-icon],[class^=w-icon]{font-family:w-ui-icons!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.w-icon-customer-service:before{content:"\e682"}.w-icon-delete:before{content:"\e683"}.w-icon-direction-down:before{content:"\e684"}.w-icon-copy:before{content:"\e685"}.w-icon-cut:before{content:"\e686"}.w-icon-data-view:before{content:"\e687"}.w-icon-direction-down-circle:before{content:"\e688"}.w-icon-direction-right:before{content:"\e689"}.w-icon-direction-up:before{content:"\e68a"}.w-icon-discount:before{content:"\e68b"}.w-icon-direction-left:before{content:"\e68c"}.w-icon-download:before{content:"\e68d"}.w-icon-electronics:before{content:"\e68e"}.w-icon-drag:before{content:"\e68f"}.w-icon-elipsis:before{content:"\e690"}.w-icon-export:before{content:"\e691"}.w-icon-explain:before{content:"\e692"}.w-icon-edit:before{content:"\e693"}.w-icon-eye-close:before{content:"\e694"}.w-icon-email:before{content:"\e695"}.w-icon-error:before{content:"\e696"}.w-icon-favorite:before{content:"\e697"}.w-icon-file-common:before{content:"\e698"}.w-icon-file-delete:before{content:"\e699"}.w-icon-file-add:before{content:"\e69a"}.w-icon-film:before{content:"\e69b"}.w-icon-fabulous:before{content:"\e69c"}.w-icon-file:before{content:"\e69d"}.w-icon-folder-close:before{content:"\e69e"}.w-icon-filter:before{content:"\e69f"}.w-icon-good:before{content:"\e6a0"}.w-icon-hide:before{content:"\e6a1"}.w-icon-home:before{content:"\e6a2"}.w-icon-history:before{content:"\e6a3"}.w-icon-file-open:before{content:"\e6a4"}.w-icon-forward:before{content:"\e6a5"}.w-icon-import:before{content:"\e6a6"}.w-icon-image-text:before{content:"\e6a7"}.w-icon-keyboard-26:before{content:"\e6a8"}.w-icon-keyboard-9:before{content:"\e6a9"}.w-icon-link:before{content:"\e6aa"}.w-icon-layout:before{content:"\e6ab"}.w-icon-fullscreen-shrink:before{content:"\e6ac"}.w-icon-layers:before{content:"\e6ad"}.w-icon-lock:before{content:"\e6ae"}.w-icon-fullscreen-expand:before{content:"\e6af"}.w-icon-map:before{content:"\e6b0"}.w-icon-meh:before{content:"\e6b1"}.w-icon-menu:before{content:"\e6b2"}.w-icon-loading:before{content:"\e6b3"}.w-icon-help:before{content:"\e6b4"}.w-icon-minus-circle:before{content:"\e6b5"}.w-icon-modular:before{content:"\e6b6"}.w-icon-notification:before{content:"\e6b7"}.w-icon-mic:before{content:"\e6b8"}.w-icon-more:before{content:"\e6b9"}.w-icon-pad:before{content:"\e6ba"}.w-icon-operation:before{content:"\e6bb"}.w-icon-play:before{content:"\e6bc"}.w-icon-print:before{content:"\e6bd"}.w-icon-mobile-phone:before{content:"\e6be"}.w-icon-minus:before{content:"\e6bf"}.w-icon-navigation:before{content:"\e6c0"}.w-icon-pdf:before{content:"\e6c1"}.w-icon-prompt:before{content:"\e6c2"}.w-icon-move:before{content:"\e6c3"}.w-icon-refresh:before{content:"\e6c4"}.w-icon-run-up:before{content:"\e6c5"}.w-icon-picture:before{content:"\e6c6"}.w-icon-run-in:before{content:"\e6c7"}.w-icon-pin:before{content:"\e6c8"}.w-icon-save:before{content:"\e6c9"}.w-icon-search:before{content:"\e6ca"}.w-icon-share:before{content:"\e6cb"}.w-icon-scanning:before{content:"\e6cc"}.w-icon-security:before{content:"\e6cd"}.w-icon-sign-out:before{content:"\e6ce"}.w-icon-select:before{content:"\e6cf"}.w-icon-stop:before{content:"\e6d0"}.w-icon-success:before{content:"\e6d1"}.w-icon-smile:before{content:"\e6d2"}.w-icon-switch:before{content:"\e6d3"}.w-icon-setting:before{content:"\e6d4"}.w-icon-survey:before{content:"\e6d5"}.w-icon-task:before{content:"\e6d6"}.w-icon-skip:before{content:"\e6d7"}.w-icon-text:before{content:"\e6d8"}.w-icon-time:before{content:"\e6d9"}.w-icon-telephone-out:before{content:"\e6da"}.w-icon-toggle-left:before{content:"\e6db"}.w-icon-toggle-right:before{content:"\e6dc"}.w-icon-telephone:before{content:"\e6dd"}.w-icon-top:before{content:"\e6de"}.w-icon-unlock:before{content:"\e6df"}.w-icon-user:before{content:"\e6e0"}.w-icon-upload:before{content:"\e6e1"}.w-icon-work:before{content:"\e6e2"}.w-icon-training:before{content:"\e6e3"}.w-icon-warning:before{content:"\e6e4"}.w-icon-zoom-in:before{content:"\e6e5"}.w-icon-zoom-out:before{content:"\e6e6"}.w-icon-add-bold:before{content:"\e6e7"}.w-icon-arrow-left-bold:before{content:"\e6e8"}.w-icon-arrow-up-bold:before{content:"\e6e9"}.w-icon-close-bold:before{content:"\e6ea"}.w-icon-arrow-down-bold:before{content:"\e6eb"}.w-icon-minus-bold:before{content:"\e6ec"}.w-icon-arrow-right-bold:before{content:"\e6ed"}.w-icon-select-bold:before{content:"\e6ee"}.w-icon-arrow-up-filling:before{content:"\e6ef"}.w-icon-arrow-down-filling:before{content:"\e6f0"}.w-icon-arrow-left-filling:before{content:"\e6f1"}.w-icon-arrow-right-filling:before{content:"\e6f2"}.w-icon-caps-unlock-filling:before{content:"\e6f3"}.w-icon-comment-filling:before{content:"\e6f4"}.w-icon-check-item-filling:before{content:"\e6f5"}.w-icon-clock-filling:before{content:"\e6f6"}.w-icon-delete-filling:before{content:"\e6f7"}.w-icon-decline-filling:before{content:"\e6f8"}.w-icon-dynamic-filling:before{content:"\e6f9"}.w-icon-intermediate-filling:before{content:"\e6fa"}.w-icon-favorite-filling:before{content:"\e6fb"}.w-icon-layout-filling:before{content:"\e6fc"}.w-icon-help-filling:before{content:"\e6fd"}.w-icon-history-filling:before{content:"\e6fe"}.w-icon-filter-filling:before{content:"\e6ff"}.w-icon-file-common-filling:before{content:"\e700"}.w-icon-news-filling:before{content:"\e701"}.w-icon-edit-filling:before{content:"\e702"}.w-icon-fullscreen-expand-filling:before{content:"\e703"}.w-icon-smile-filling:before{content:"\e704"}.w-icon-rise-filling:before{content:"\e705"}.w-icon-picture-filling:before{content:"\e706"}.w-icon-notification-filling:before{content:"\e707"}.w-icon-user-filling:before{content:"\e708"}.w-icon-setting-filling:before{content:"\e709"}.w-icon-switch-filling:before{content:"\e70a"}.w-icon-work-filling:before{content:"\e70b"}.w-icon-task-filling:before{content:"\e70c"}.w-icon-success-filling:before{content:"\e70d"}.w-icon-warning-filling:before{content:"\e70e"}.w-icon-folder-filling:before{content:"\e70f"}.w-icon-map-filling:before{content:"\e710"}.w-icon-prompt-filling:before{content:"\e711"}.w-icon-meh-filling:before{content:"\e712"}.w-icon-cry-filling:before{content:"\e713"}.w-icon-top-filling:before{content:"\e714"}.w-icon-home-filling:before{content:"\e715"}.w-icon-sorting:before{content:"\e716"}.w-icon-3column:before{content:"\e663"}.w-icon-column-4:before{content:"\e664"}.w-icon-add:before{content:"\e665"}.w-icon-add-circle:before{content:"\e666"}.w-icon-adjust:before{content:"\e667"}.w-icon-arrow-up-circle:before{content:"\e668"}.w-icon-arrow-right-circle:before{content:"\e669"}.w-icon-arrow-down:before{content:"\e66a"}.w-icon-ashbin:before{content:"\e66b"}.w-icon-arrow-right:before{content:"\e66c"}.w-icon-browse:before{content:"\e66d"}.w-icon-bottom:before{content:"\e66e"}.w-icon-back:before{content:"\e66f"}.w-icon-bad:before{content:"\e670"}.w-icon-arrow-double-left:before{content:"\e671"}.w-icon-arrow-left-circle:before{content:"\e672"}.w-icon-arrow-double-right:before{content:"\e673"}.w-icon-caps-lock:before{content:"\e674"}.w-icon-camera:before{content:"\e675"}.w-icon-chart-bar:before{content:"\e676"}.w-icon-attachment:before{content:"\e677"}.w-icon-code:before{content:"\e678"}.w-icon-close:before{content:"\e679"}.w-icon-check-item:before{content:"\e67a"}.w-icon-calendar:before{content:"\e67b"}.w-icon-comment:before{content:"\e67c"}.w-icon-column-vertical:before{content:"\e67d"}.w-icon-column-horizontal:before{content:"\e67e"}.w-icon-complete:before{content:"\e67f"}.w-icon-chart-pie:before{content:"\e680"}.w-icon-cry:before{content:"\e681"}
|