@byteluck-fe/model-driven-controls 7.0.0-props.24 → 7.0.0-props.25
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/dist/esm/formControls/Select/property.js +6 -6
- package/dist/esm/formControls/SelectMultiple/property.js +6 -6
- package/dist/index.umd.js +1 -1
- package/dist/types/formControls/Select/property.d.ts +0 -7
- package/dist/types/formControls/SelectMultiple/property.d.ts +0 -7
- package/package.json +2 -2
|
@@ -86,12 +86,6 @@ interface SelectPropertyInterface extends BaseControlPropertyInterface {
|
|
|
86
86
|
* @public
|
|
87
87
|
*/
|
|
88
88
|
type: 'default' | 'button';
|
|
89
|
-
/**
|
|
90
|
-
* 是否开启设置选项自定义颜色;仅当选项设置为自定义时该设置生效;
|
|
91
|
-
* @defaultValue false
|
|
92
|
-
* @public
|
|
93
|
-
*/
|
|
94
|
-
isUseCustomColor: boolean;
|
|
95
89
|
}
|
|
96
90
|
declare class SelectProperty extends BaseControlProperty implements SelectPropertyInterface {
|
|
97
91
|
static readonly Rules: typeof SelectControlPropertyRules;
|
|
@@ -108,7 +102,6 @@ declare class SelectProperty extends BaseControlProperty implements SelectProper
|
|
|
108
102
|
formBind?: FormBind;
|
|
109
103
|
aiContentSearch: boolean;
|
|
110
104
|
type: 'default' | 'button';
|
|
111
|
-
isUseCustomColor: boolean;
|
|
112
105
|
constructor(props?: Partial<SelectProperty>);
|
|
113
106
|
}
|
|
114
107
|
export default SelectProperty;
|
|
@@ -83,12 +83,6 @@ interface SelectMultiplePropertyInterface extends BaseControlPropertyInterface {
|
|
|
83
83
|
* @public
|
|
84
84
|
*/
|
|
85
85
|
type: 'default' | 'button';
|
|
86
|
-
/**
|
|
87
|
-
* 是否开启设置选项自定义颜色;仅当选项设置为自定义时该设置生效;
|
|
88
|
-
* @defaultValue false
|
|
89
|
-
* @public
|
|
90
|
-
*/
|
|
91
|
-
isUseCustomColor: boolean;
|
|
92
86
|
}
|
|
93
87
|
declare class SelectMultipleProperty extends BaseControlProperty implements SelectMultiplePropertyInterface {
|
|
94
88
|
static readonly Rules: typeof SelectMultipleControlPropertyRules;
|
|
@@ -105,7 +99,6 @@ declare class SelectMultipleProperty extends BaseControlProperty implements Sele
|
|
|
105
99
|
formBind?: FormBind;
|
|
106
100
|
aiContentSearch: boolean;
|
|
107
101
|
type: 'default' | 'button';
|
|
108
|
-
isUseCustomColor: boolean;
|
|
109
102
|
constructor(props?: Partial<SelectMultipleProperty>);
|
|
110
103
|
}
|
|
111
104
|
export default SelectMultipleProperty;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-controls",
|
|
3
|
-
"version": "7.0.0-props.
|
|
3
|
+
"version": "7.0.0-props.25",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"@byteluck-fe/model-driven-shared": "7.0.0-props.19",
|
|
32
32
|
"async-validator": "3.5.1"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "d09fe2bfefd789b34b4304f62db2942dd2fd683c"
|
|
35
35
|
}
|