ra-element 0.1.5 → 0.1.7
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 +1 -1
- package/docs/ra-select.md +1 -0
- package/docs/ra-table.md +1 -0
- package/lib/components/ra-select/index.vue.d.ts +9 -0
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +2938 -2910
- 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,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/ (
|
|
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
package/docs/ra-table.md
CHANGED
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
| tableExportText | String | 导出按钮文字 | '导出清单' | |
|
|
23
23
|
| localExportName | String | 导出文件名称 | '' | |
|
|
24
24
|
| hasIndex | Boolean | 序号 | false | |
|
|
25
|
+
| hasIndexName | String | 序号别名,默认:序号 | '序号' | |
|
|
25
26
|
| hasIndexFixed | Boolean | 序号固定 | false | |
|
|
26
27
|
| paginationButtonNumber | Number | 最大页码按钮数量 | 7 | |
|
|
27
28
|
| smallPagination | Boolean | 是否开启小分页 | false | |
|
|
@@ -36,6 +36,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
36
36
|
type: BooleanConstructor;
|
|
37
37
|
default: boolean;
|
|
38
38
|
};
|
|
39
|
+
cssStyle: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
39
43
|
}>, {
|
|
40
44
|
component: import('vue').Ref<import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
41
45
|
ariaLabel: StringConstructor;
|
|
@@ -1667,9 +1671,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1667
1671
|
type: BooleanConstructor;
|
|
1668
1672
|
default: boolean;
|
|
1669
1673
|
};
|
|
1674
|
+
cssStyle: {
|
|
1675
|
+
type: StringConstructor;
|
|
1676
|
+
default: string;
|
|
1677
|
+
};
|
|
1670
1678
|
}>> & Readonly<{
|
|
1671
1679
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
1672
1680
|
}>, {
|
|
1681
|
+
cssStyle: string;
|
|
1673
1682
|
modelValue: string | number | unknown[];
|
|
1674
1683
|
options: SelectOptions[];
|
|
1675
1684
|
clearable: boolean;
|