ra-element 0.1.87 → 0.1.88
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/docs/ra-select.md +2 -1
- package/lib/components/ra-button/index.vue.d.ts +348 -440
- package/lib/components/ra-date-picker/index.vue.d.ts +482 -646
- package/lib/components/ra-dialog/index.vue.d.ts +516 -764
- package/lib/components/ra-form/index.vue.d.ts +523 -0
- package/lib/components/ra-input/index.vue.d.ts +544 -790
- package/lib/components/ra-table/index.vue.d.ts +3255 -0
- package/lib/components/ra-textarea/index.vue.d.ts +293 -416
- package/lib/components/ra-tool-tip/index.vue.d.ts +806 -1152
- package/lib/components/ra-tree-select/index.vue.d.ts +504 -97
- package/lib/components/ra-upload/index.vue.d.ts +258 -441
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +1095 -1091
- package/lib/ra-element.es.js.map +1 -1
- package/lib/ra-element.umd.js +1 -1
- package/lib/ra-element.umd.js.map +1 -1
- package/package.json +2 -2
package/docs/ra-select.md
CHANGED
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
| name | type | desc | default | required |
|
|
6
6
|
| ---- | ---- | ---- | ------- | -------- |
|
|
7
|
-
| options | Array as
|
|
7
|
+
| options | Array as any | 每项独立配置 label,value | [] | |
|
|
8
|
+
| props | Object | 原属性 | { label: 'label', value: 'value', options: 'options', disabled: 'disabled' } | |
|
|
8
9
|
| collapseTags | Boolean | 原属性,默认设置true | true | |
|
|
9
10
|
| clearable | Boolean | 原属性,默认设置true | true | |
|
|
10
11
|
| multiple | Boolean | 原属性,默认设置true | false | |
|