command-center-v3-common 0.0.6 → 0.0.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/dist/index.d.ts +9 -9
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -248,18 +248,18 @@ declare interface ColumnList {
|
|
248
248
|
}
|
249
249
|
|
250
250
|
declare interface ConfigType {
|
251
|
-
width
|
252
|
-
tipsTitleIcon
|
251
|
+
width?: number | string;
|
252
|
+
tipsTitleIcon?: string;
|
253
253
|
setClose?: (closeNextTick: () => void) => void;
|
254
|
-
tipsTitleIconClass
|
254
|
+
tipsTitleIconClass?: string;
|
255
255
|
tipsTitle: string;
|
256
256
|
tipsContent: string;
|
257
|
-
isShowClose
|
258
|
-
isShowSubmit
|
259
|
-
closeBtnText
|
260
|
-
submitBtnText
|
261
|
-
closeBtnType
|
262
|
-
submitBtnType
|
257
|
+
isShowClose?: boolean;
|
258
|
+
isShowSubmit?: boolean;
|
259
|
+
closeBtnText?: string;
|
260
|
+
submitBtnText?: string;
|
261
|
+
closeBtnType?: '' | 'default' | 'success' | 'warning' | 'info' | 'text' | 'primary' | 'danger';
|
262
|
+
submitBtnType?: '' | 'default' | 'success' | 'warning' | 'info' | 'text' | 'primary' | 'danger';
|
263
263
|
}
|
264
264
|
|
265
265
|
declare interface Device {
|