@mythpe/quasar-ui-qui 0.2.47 → 0.2.48
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/package.json
CHANGED
|
@@ -125,7 +125,7 @@ export const useMyth = () => {
|
|
|
125
125
|
align: 'center'
|
|
126
126
|
// sortable: !0
|
|
127
127
|
}
|
|
128
|
-
const opts = extend<ParseHeaderOptions>(!0, defaultOptions, options)
|
|
128
|
+
const opts = extend<ParseHeaderOptions>(!0, {}, defaultOptions, options)
|
|
129
129
|
let control: string | undefined = defaultOptions.controlKey
|
|
130
130
|
let controlStyle: string | undefined = defaultOptions.controlStyle
|
|
131
131
|
if (opts.controlKey) {
|
|
@@ -18,8 +18,7 @@ import type { GenericFormValues } from './api/MInput'
|
|
|
18
18
|
|
|
19
19
|
export type MDtItem<T extends object = Record<keyof T, any>> = T & {
|
|
20
20
|
id: string | number;
|
|
21
|
-
|
|
22
|
-
}
|
|
21
|
+
} & Record<any, any>;
|
|
23
22
|
|
|
24
23
|
export type MDtItemIndex = number;
|
|
25
24
|
export type MDtExportOptions = 'pdf' | 'excel';
|