ra-element 0.1.4 → 0.1.6
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 +8 -1
- package/docs/ra-select.md +1 -0
- package/lib/components/index.d.ts +20 -1
- package/lib/components/ra-auto-scroll/index.vue.d.ts +100 -76
- package/lib/components/ra-button/index.vue.d.ts +772 -599
- package/lib/components/ra-checkbox-group/index.vue.d.ts +442 -329
- package/lib/components/ra-date-picker/index.vue.d.ts +1261 -1062
- package/lib/components/ra-dialog/index.vue.d.ts +1130 -931
- package/lib/components/ra-dialog-select/index.vue.d.ts +81 -57
- package/lib/components/ra-help-tip/index.vue.d.ts +65 -41
- package/lib/components/ra-input/index.vue.d.ts +1256 -1042
- package/lib/components/ra-pagination/index.vue.d.ts +643 -528
- package/lib/components/ra-radio-group/index.vue.d.ts +538 -425
- package/lib/components/ra-select/index.vue.d.ts +1759 -1647
- package/lib/components/ra-svg/index.vue.d.ts +35 -11
- package/lib/components/ra-table/component/pagination-group.vue.d.ts +104 -80
- package/lib/components/ra-textarea/index.vue.d.ts +55 -31
- package/lib/components/ra-tool-tip/index.vue.d.ts +38 -14
- package/lib/components/ra-tree-select/index.vue.d.ts +59 -35
- package/lib/components/ra-upload/index.vue.d.ts +173 -149
- package/lib/index.d.ts +6 -6
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +2078 -2072
- package/lib/ra-element.umd.js +13 -13
- package/package.json +1 -1
- package/lib/index-CkAUSFIX.js +0 -4
package/README.md
CHANGED
|
@@ -14,7 +14,14 @@ pnpm
|
|
|
14
14
|
2、npm config set registry https://registry.npmjs.org (修改为发版包地址)
|
|
15
15
|
3、npm login
|
|
16
16
|
4、npm publish
|
|
17
|
-
5、npm config set registry http://registry.npmmirror.com/ (
|
|
17
|
+
5、npm config set registry http://registry.npmmirror.com/ (还原阿里源镜像)
|
|
18
|
+
|
|
19
|
+
## npm代理
|
|
20
|
+
npm config set proxy http://127.0.0.1:7890
|
|
21
|
+
npm config set https-proxy http://127.0.0.1:7890
|
|
22
|
+
## 取消npm代理
|
|
23
|
+
npm config delete proxy
|
|
24
|
+
npm config delete https-proxy
|
|
18
25
|
|
|
19
26
|
(发布后,引用项目使用镜像源安装不一定能立即下载到,就是官网下载可能都需要等一会才会有新版本)
|
|
20
27
|
|
package/docs/ra-select.md
CHANGED
|
@@ -18,5 +18,24 @@ import { default as RaToolTip } from './ra-tool-tip/index.vue';
|
|
|
18
18
|
import { default as RaTreeSelect } from './ra-tree-select/index.vue';
|
|
19
19
|
import { default as RaUpload } from './ra-upload/index.vue';
|
|
20
20
|
declare const install: (app: App) => void;
|
|
21
|
-
export {
|
|
21
|
+
export {
|
|
22
|
+
RaAutoScroll,
|
|
23
|
+
RaButton,
|
|
24
|
+
RaCheckboxGroup,
|
|
25
|
+
RaDatePicker,
|
|
26
|
+
RaDialog,
|
|
27
|
+
RaDialogSelect,
|
|
28
|
+
RaForm,
|
|
29
|
+
RaHelpTip,
|
|
30
|
+
RaInput,
|
|
31
|
+
RaPagination,
|
|
32
|
+
RaRadioGroup,
|
|
33
|
+
RaSelect,
|
|
34
|
+
RaSvg,
|
|
35
|
+
RaTable,
|
|
36
|
+
RaTextarea,
|
|
37
|
+
RaToolTip,
|
|
38
|
+
RaTreeSelect,
|
|
39
|
+
RaUpload,
|
|
40
|
+
};
|
|
22
41
|
export default install;
|
|
@@ -10,82 +10,106 @@ declare function __VLS_template(): {
|
|
|
10
10
|
rootEl: HTMLDivElement;
|
|
11
11
|
};
|
|
12
12
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
}
|
|
88
|
-
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<
|
|
14
|
+
import('vue').ExtractPropTypes<{
|
|
15
|
+
showItems: {
|
|
16
|
+
type: NumberConstructor;
|
|
17
|
+
default: number;
|
|
18
|
+
};
|
|
19
|
+
speed: {
|
|
20
|
+
type: NumberConstructor;
|
|
21
|
+
default: number;
|
|
22
|
+
};
|
|
23
|
+
direction: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
validator: (value: string) => boolean;
|
|
27
|
+
};
|
|
28
|
+
pauseOnHover: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
disabled: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
itemWidth: {
|
|
37
|
+
type: NumberConstructor;
|
|
38
|
+
default: number;
|
|
39
|
+
};
|
|
40
|
+
itemGap: {
|
|
41
|
+
type: NumberConstructor;
|
|
42
|
+
default: number;
|
|
43
|
+
};
|
|
44
|
+
}>,
|
|
45
|
+
{
|
|
46
|
+
start: () => void;
|
|
47
|
+
stop: () => void;
|
|
48
|
+
},
|
|
49
|
+
{},
|
|
50
|
+
{},
|
|
51
|
+
{},
|
|
52
|
+
import('vue').ComponentOptionsMixin,
|
|
53
|
+
import('vue').ComponentOptionsMixin,
|
|
54
|
+
{},
|
|
55
|
+
string,
|
|
56
|
+
import('vue').PublicProps,
|
|
57
|
+
Readonly<
|
|
58
|
+
import('vue').ExtractPropTypes<{
|
|
59
|
+
showItems: {
|
|
60
|
+
type: NumberConstructor;
|
|
61
|
+
default: number;
|
|
62
|
+
};
|
|
63
|
+
speed: {
|
|
64
|
+
type: NumberConstructor;
|
|
65
|
+
default: number;
|
|
66
|
+
};
|
|
67
|
+
direction: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
default: string;
|
|
70
|
+
validator: (value: string) => boolean;
|
|
71
|
+
};
|
|
72
|
+
pauseOnHover: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
default: boolean;
|
|
75
|
+
};
|
|
76
|
+
disabled: {
|
|
77
|
+
type: BooleanConstructor;
|
|
78
|
+
default: boolean;
|
|
79
|
+
};
|
|
80
|
+
itemWidth: {
|
|
81
|
+
type: NumberConstructor;
|
|
82
|
+
default: number;
|
|
83
|
+
};
|
|
84
|
+
itemGap: {
|
|
85
|
+
type: NumberConstructor;
|
|
86
|
+
default: number;
|
|
87
|
+
};
|
|
88
|
+
}>
|
|
89
|
+
> &
|
|
90
|
+
Readonly<{}>,
|
|
91
|
+
{
|
|
92
|
+
showItems: number;
|
|
93
|
+
speed: number;
|
|
94
|
+
direction: string;
|
|
95
|
+
pauseOnHover: boolean;
|
|
96
|
+
disabled: boolean;
|
|
97
|
+
itemWidth: number;
|
|
98
|
+
itemGap: number;
|
|
99
|
+
},
|
|
100
|
+
{},
|
|
101
|
+
{},
|
|
102
|
+
{},
|
|
103
|
+
string,
|
|
104
|
+
import('vue').ComponentProvideOptions,
|
|
105
|
+
true,
|
|
106
|
+
{
|
|
107
|
+
containerRef: HTMLDivElement;
|
|
108
|
+
wrapperRef: HTMLDivElement;
|
|
109
|
+
},
|
|
110
|
+
HTMLDivElement
|
|
111
|
+
>;
|
|
112
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult['slots']>;
|
|
89
113
|
export default _default;
|
|
90
114
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
91
115
|
new (): {
|