@zat-design/sisyphus-react 3.13.18-beta.6 → 3.13.18-beta.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.
@@ -94,7 +94,7 @@ interface ProModalPropsType {
|
|
94
94
|
mode?: 'input' | 'select';
|
95
95
|
}
|
96
96
|
/** 模态框选择器属性类型(结合Select和Input属性) */
|
97
|
-
export declare type ProModalSelectPropsType = SelectProps & InputProps & ProModalPropsType;
|
97
|
+
export declare type ProModalSelectPropsType = Omit<SelectProps & InputProps, 'mode'> & ProModalPropsType;
|
98
98
|
/** 配置选项类型 */
|
99
99
|
export type ProModalSelectConfigType = ConfigOption;
|
100
100
|
/** 模态框属性类型 */
|
@@ -102,5 +102,5 @@ export type ProModalType = Omit<ProModalPropsType, 'configOption'> & {
|
|
102
102
|
configOption: ProModalSelectConfigType;
|
103
103
|
};
|
104
104
|
/** 模态框选择器类型(结合Select和Input属性) */
|
105
|
-
export type ProModalSelectType = SelectProps & InputProps & ProModalType;
|
105
|
+
export type ProModalSelectType = Omit<SelectProps & InputProps, 'mode'> & ProModalType;
|
106
106
|
export {};
|
@@ -94,7 +94,7 @@ interface ProModalPropsType {
|
|
94
94
|
mode?: 'input' | 'select';
|
95
95
|
}
|
96
96
|
/** 模态框选择器属性类型(结合Select和Input属性) */
|
97
|
-
export declare type ProModalSelectPropsType = SelectProps & InputProps & ProModalPropsType;
|
97
|
+
export declare type ProModalSelectPropsType = Omit<SelectProps & InputProps, 'mode'> & ProModalPropsType;
|
98
98
|
/** 配置选项类型 */
|
99
99
|
export type ProModalSelectConfigType = ConfigOption;
|
100
100
|
/** 模态框属性类型 */
|
@@ -102,5 +102,5 @@ export type ProModalType = Omit<ProModalPropsType, 'configOption'> & {
|
|
102
102
|
configOption: ProModalSelectConfigType;
|
103
103
|
};
|
104
104
|
/** 模态框选择器类型(结合Select和Input属性) */
|
105
|
-
export type ProModalSelectType = SelectProps & InputProps & ProModalType;
|
105
|
+
export type ProModalSelectType = Omit<SelectProps & InputProps, 'mode'> & ProModalType;
|
106
106
|
export {};
|