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.
Files changed (2) hide show
  1. package/dist/index.d.ts +9 -9
  2. 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: number | string;
252
- tipsTitleIcon: string;
251
+ width?: number | string;
252
+ tipsTitleIcon?: string;
253
253
  setClose?: (closeNextTick: () => void) => void;
254
- tipsTitleIconClass: string;
254
+ tipsTitleIconClass?: string;
255
255
  tipsTitle: string;
256
256
  tipsContent: string;
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';
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 {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "command-center-v3-common",
3
3
  "type": "module",
4
- "version": "0.0.6",
4
+ "version": "0.0.7",
5
5
  "main": "dist/command-center-v3-common.js",
6
6
  "module": "dist/command-center-v3-common.umd.cjs",
7
7
  "types": "dist/index.d.ts",