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 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' | |
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;