ra-element 0.1.5 → 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 CHANGED
@@ -14,7 +14,7 @@ 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/ (还原阿里源镜像,如果有设置npm代理无需还原)
17
+ 5、npm config set registry http://registry.npmmirror.com/ (还原阿里源镜像)
18
18
 
19
19
  ## npm代理
20
20
  npm config set proxy http://127.0.0.1:7890
package/docs/ra-select.md CHANGED
@@ -8,3 +8,4 @@
8
8
  | collapseTags | Boolean | 原属性,默认设置true | true | |
9
9
  | clearable | Boolean | 原属性,默认设置true | true | |
10
10
  | multiple | Boolean | 原属性,默认设置true | false | |
11
+ | cssStyle | String | 样式属性,1为通用版基础默认样式,如果是传空走默认样式 | '1' | |
@@ -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 { RaAutoScroll, RaButton, RaCheckboxGroup, RaDatePicker, RaDialog, RaDialogSelect, RaForm, RaHelpTip, RaInput, RaPagination, RaRadioGroup, RaSelect, RaSvg, RaTable, RaTextarea, RaToolTip, RaTreeSelect, RaUpload, };
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<import('vue').ExtractPropTypes<{
14
- showItems: {
15
- type: NumberConstructor;
16
- default: number;
17
- };
18
- speed: {
19
- type: NumberConstructor;
20
- default: number;
21
- };
22
- direction: {
23
- type: StringConstructor;
24
- default: string;
25
- validator: (value: string) => boolean;
26
- };
27
- pauseOnHover: {
28
- type: BooleanConstructor;
29
- default: boolean;
30
- };
31
- disabled: {
32
- type: BooleanConstructor;
33
- default: boolean;
34
- };
35
- itemWidth: {
36
- type: NumberConstructor;
37
- default: number;
38
- };
39
- itemGap: {
40
- type: NumberConstructor;
41
- default: number;
42
- };
43
- }>, {
44
- start: () => void;
45
- stop: () => void;
46
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
47
- showItems: {
48
- type: NumberConstructor;
49
- default: number;
50
- };
51
- speed: {
52
- type: NumberConstructor;
53
- default: number;
54
- };
55
- direction: {
56
- type: StringConstructor;
57
- default: string;
58
- validator: (value: string) => boolean;
59
- };
60
- pauseOnHover: {
61
- type: BooleanConstructor;
62
- default: boolean;
63
- };
64
- disabled: {
65
- type: BooleanConstructor;
66
- default: boolean;
67
- };
68
- itemWidth: {
69
- type: NumberConstructor;
70
- default: number;
71
- };
72
- itemGap: {
73
- type: NumberConstructor;
74
- default: number;
75
- };
76
- }>> & Readonly<{}>, {
77
- showItems: number;
78
- speed: number;
79
- direction: string;
80
- pauseOnHover: boolean;
81
- disabled: boolean;
82
- itemWidth: number;
83
- itemGap: number;
84
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
85
- containerRef: HTMLDivElement;
86
- wrapperRef: HTMLDivElement;
87
- }, HTMLDivElement>;
88
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
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 (): {