@fewangsit/wangsvue 1.5.208-alpha.1 → 1.5.208-alpha.2
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.
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Component } from '@fewangsit/workspace-api-services/src/types/componentService.type';
|
|
2
|
+
import { ClassComponent } from '../.././components/ts-helpers';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export interface DialogDetailComponentProps {
|
|
6
|
+
/**
|
|
7
|
+
* The boolean modelValue to show dialog.
|
|
8
|
+
*/
|
|
9
|
+
visible: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* Component data to display on the dialog
|
|
12
|
+
*/
|
|
13
|
+
selectedComponent: Component;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
declare class DialogDetailComponent extends ClassComponent<
|
|
17
|
+
DialogDetailComponentProps,
|
|
18
|
+
unknown,
|
|
19
|
+
unknown
|
|
20
|
+
> {}
|
|
21
|
+
|
|
22
|
+
export default DialogDetailComponent;
|
package/package.json
CHANGED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { DialogDetailComponentProps } from './dialogDetailComponent.vue.d';
|
|
2
|
-
declare let __VLS_typeProps: DialogDetailComponentProps;
|
|
3
|
-
type __VLS_PublicProps = {
|
|
4
|
-
'visible': boolean;
|
|
5
|
-
} & typeof __VLS_typeProps;
|
|
6
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToOption<__VLS_PublicProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
-
"update:visible": (visible: boolean) => void;
|
|
8
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToOption<__VLS_PublicProps>>> & {
|
|
9
|
-
"onUpdate:visible"?: (visible: boolean) => any;
|
|
10
|
-
}, {}, {}>;
|
|
11
|
-
export default _default;
|
|
12
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
13
|
-
type __VLS_TypePropsToOption<T> = {
|
|
14
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
15
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
16
|
-
} : {
|
|
17
|
-
type: import('vue').PropType<T[K]>;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
};
|