@lumx/vue 4.14.0-alpha.0 → 4.14.0-alpha.1
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.d.ts +2 -2
- package/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -2,7 +2,7 @@ import { Ref } from 'vue';
|
|
|
2
2
|
import { BaseDialogProps, DialogSizes } from '@lumx/core/js/components/Dialog';
|
|
3
3
|
import { GenericProps, HasCloseMode } from '@lumx/core/js/types';
|
|
4
4
|
import { ClassValue } from '../../utils/VueToJSX';
|
|
5
|
-
export type DialogProps =
|
|
5
|
+
export type DialogProps = Pick<BaseDialogProps, 'forceFooterDivider' | 'forceHeaderDivider' | 'isLoading'> & HasCloseMode & {
|
|
6
6
|
/** Additional class name. */
|
|
7
7
|
class?: ClassValue;
|
|
8
8
|
/** Whether the dialog is open. */
|
|
@@ -35,7 +35,7 @@ export declare const emitSchema: {
|
|
|
35
35
|
declare const Dialog: import('vue').DefineSetupFnComponent<DialogProps, {
|
|
36
36
|
close: () => boolean;
|
|
37
37
|
visibilityChange: (isVisible: boolean) => boolean;
|
|
38
|
-
}, {},
|
|
38
|
+
}, {}, Pick<BaseDialogProps, "forceFooterDivider" | "forceHeaderDivider" | "isLoading"> & HasCloseMode & {
|
|
39
39
|
/** Additional class name. */
|
|
40
40
|
class?: ClassValue;
|
|
41
41
|
/** Whether the dialog is open. */
|