@fewangsit/wangsvue-fats 1.0.0-alpha.61 → 1.0.0-alpha.63
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/components/dialog/Dialog.vue.d.ts +3 -3
- package/components/dialogform/DialogForm.vue.d.ts +2 -2
- package/package.json +1 -1
- package/stats.html +1 -1
- package/style.css +1 -1
- package/wangsvue-fats.js +270 -269
- package/wangsvue-fats.system.js +2 -2
|
@@ -319,7 +319,7 @@ export interface DialogProps {
|
|
|
319
319
|
/**
|
|
320
320
|
* A string or string array class to append to the root section.
|
|
321
321
|
*/
|
|
322
|
-
class?: string | string[];
|
|
322
|
+
class?: string | string[] | object[];
|
|
323
323
|
/**
|
|
324
324
|
* A string or string array class to append to the dialog header section.
|
|
325
325
|
*/
|
|
@@ -327,11 +327,11 @@ export interface DialogProps {
|
|
|
327
327
|
/**
|
|
328
328
|
* A string or string array class to append to the dialog content section.
|
|
329
329
|
*/
|
|
330
|
-
contentClass?: string | string[];
|
|
330
|
+
contentClass?: string | string[] | object[];
|
|
331
331
|
/**
|
|
332
332
|
* A string or string array class to append to the dialog footer section.
|
|
333
333
|
*/
|
|
334
|
-
footerClass?: string | string[];
|
|
334
|
+
footerClass?: string | string[] | object[];
|
|
335
335
|
}
|
|
336
336
|
|
|
337
337
|
/**
|
|
@@ -86,7 +86,7 @@ export interface DialogFormProps extends FormProps {
|
|
|
86
86
|
* @default 260
|
|
87
87
|
*/
|
|
88
88
|
asideRightWidth?: number;
|
|
89
|
-
class?: string | string[];
|
|
89
|
+
class?: string | string[] | object[];
|
|
90
90
|
|
|
91
91
|
/**
|
|
92
92
|
* Custom button cancel label.
|
|
@@ -118,7 +118,7 @@ export interface DialogFormProps extends FormProps {
|
|
|
118
118
|
/**
|
|
119
119
|
* @deprecated
|
|
120
120
|
*/
|
|
121
|
-
contentClass?: string | string[];
|
|
121
|
+
contentClass?: string | string[] | object[];
|
|
122
122
|
|
|
123
123
|
/**
|
|
124
124
|
* Show Date time on header.
|