@gct-paas/core-web 0.1.4-dev.5 → 0.1.4-dev.6
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/dist/index.min.cjs +12 -12
- package/dist/index.system.min.js +12 -12
- package/es/components/layout/flex-container/flex-container.d.ts +4 -4
- package/es/components/layout/flex-item/flex-item.d.ts +4 -4
- package/es/components/layout/grid-container/grid-container.d.ts +4 -4
- package/es/components/layout/view-container/view-container.d.ts +4 -4
- package/es/editor/gct-form-check-switch/gct-form-check-switch.d.ts +7 -7
- package/es/editor/gct-form-checkbox/gct-form-checkbox.d.ts +6 -6
- package/es/editor/gct-form-field-select/gct-form-field-select.d.ts +7 -17
- package/es/editor/gct-form-field-select/gct-model-select.vue.d.ts +12 -3
- package/es/editor/gct-form-i18n/gct-form-i18n.d.ts +8 -8
- package/es/editor/gct-form-icon-select/gct-form-icon-select.d.ts +8 -8
- package/es/editor/gct-form-info/gct-form-info.d.ts +7 -7
- package/es/editor/gct-form-length-unit/gct-form-length-unit.d.ts +6 -6
- package/es/editor/gct-form-modal-select/gct-form-modal-select.d.ts +8 -8
- package/es/editor/gct-form-number/gct-form-number.d.ts +7 -7
- package/es/editor/gct-form-picker/gct-form-picker.d.ts +8 -8
- package/es/editor/gct-form-radio/gct-form-radio.d.ts +7 -7
- package/es/editor/gct-form-select/gct-form-select.d.ts +7 -7
- package/es/editor/gct-form-span/gct-form-span.d.ts +5 -5
- package/es/editor/gct-form-switch/gct-form-switch.d.ts +6 -6
- package/es/editor/gct-form-text/gct-form-text.d.ts +7 -7
- package/es/editor/gct-form-textarea/gct-form-textarea.d.ts +7 -7
- package/es/widgets/gct-edit-form/gct-edit-form.d.ts +9 -9
- package/es/widgets/gct-form/gct-form-collapse/gct-form-collapse.d.ts +6 -6
- package/es/widgets/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.d.ts +4 -4
- package/es/widgets/gct-form/gct-form-group/gct-form-group.d.ts +5 -5
- package/es/widgets/gct-form/gct-form-item/gct-form-item.d.ts +4 -4
- package/es/widgets/gct-form/gct-form-tab/gct-form-tab.d.ts +4 -4
- package/es/widgets/gct-form/gct-form-tab-pane/gct-form-tab-pane.d.ts +4 -4
- package/es/widgets/gct-form/gct-form-title-group/gct-form-title-group.d.ts +5 -5
- package/es/widgets/gct-form/gct-form.d.ts +5 -5
- package/package.json +6 -6
- package/es/components/code-editor/code-editor.d.ts +0 -38
|
@@ -3,13 +3,13 @@ import { IFlexContainer, IFormGroup } from '@gct-paas/core';
|
|
|
3
3
|
/**
|
|
4
4
|
* flex 布局容器
|
|
5
5
|
*/
|
|
6
|
-
export declare const FlexContainer: import('vue').DefineComponent<
|
|
6
|
+
export declare const FlexContainer: import('vue').DefineComponent<{
|
|
7
7
|
layout: PropType<IFlexContainer>;
|
|
8
|
-
}
|
|
8
|
+
}, {
|
|
9
9
|
ns: import('@gct-paas/core').Namespace;
|
|
10
10
|
getStyle: () => IData;
|
|
11
11
|
getItemStyle: (model: IFormGroup) => IData;
|
|
12
|
-
},
|
|
12
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
13
13
|
layout: PropType<IFlexContainer>;
|
|
14
|
-
}
|
|
14
|
+
}>>, {}, {}>;
|
|
15
15
|
export default FlexContainer;
|
|
@@ -3,12 +3,12 @@ import { IFlexItem } from '@gct-paas/core';
|
|
|
3
3
|
/**
|
|
4
4
|
* flex 布局容器项
|
|
5
5
|
*/
|
|
6
|
-
export declare const FlexItem: import('vue').DefineComponent<
|
|
6
|
+
export declare const FlexItem: import('vue').DefineComponent<{
|
|
7
7
|
layout: PropType<IFlexItem>;
|
|
8
|
-
}
|
|
8
|
+
}, {
|
|
9
9
|
ns: import('@gct-paas/core').Namespace;
|
|
10
10
|
getStyle: () => IData;
|
|
11
|
-
},
|
|
11
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
12
12
|
layout: PropType<IFlexItem>;
|
|
13
|
-
}
|
|
13
|
+
}>>, {}, {}>;
|
|
14
14
|
export default FlexItem;
|
|
@@ -3,11 +3,11 @@ import { IGridContainer } from '@gct-paas/core';
|
|
|
3
3
|
/**
|
|
4
4
|
* 栅格布局
|
|
5
5
|
*/
|
|
6
|
-
export declare const GridContainer: import('vue').DefineComponent<
|
|
6
|
+
export declare const GridContainer: import('vue').DefineComponent<{
|
|
7
7
|
layout: PropType<IGridContainer>;
|
|
8
|
-
}
|
|
8
|
+
}, {
|
|
9
9
|
ns: import('@gct-paas/core').Namespace;
|
|
10
|
-
},
|
|
10
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
11
11
|
layout: PropType<IGridContainer>;
|
|
12
|
-
}
|
|
12
|
+
}>>, {}, {}>;
|
|
13
13
|
export default GridContainer;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const ViewContainer: import('vue').DefineComponent<
|
|
1
|
+
export declare const ViewContainer: import('vue').DefineComponent<{
|
|
2
2
|
context: {
|
|
3
3
|
type: ObjectConstructor;
|
|
4
4
|
};
|
|
@@ -9,9 +9,9 @@ export declare const ViewContainer: import('vue').DefineComponent<import('vue').
|
|
|
9
9
|
type: ObjectConstructor;
|
|
10
10
|
required: true;
|
|
11
11
|
};
|
|
12
|
-
}
|
|
12
|
+
}, {
|
|
13
13
|
ns: import('@gct-paas/core').Namespace;
|
|
14
|
-
},
|
|
14
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
15
15
|
context: {
|
|
16
16
|
type: ObjectConstructor;
|
|
17
17
|
};
|
|
@@ -22,4 +22,4 @@ export declare const ViewContainer: import('vue').DefineComponent<import('vue').
|
|
|
22
22
|
type: ObjectConstructor;
|
|
23
23
|
required: true;
|
|
24
24
|
};
|
|
25
|
-
}
|
|
25
|
+
}>>, {}, {}>;
|
|
@@ -3,7 +3,7 @@ import { IFormItem, ICheckSwitchEditor, EditorController } from '@gct-paas/core'
|
|
|
3
3
|
/**
|
|
4
4
|
* 文本编辑器
|
|
5
5
|
*/
|
|
6
|
-
export declare const GctFormCheckSwitch: import('vue').DefineComponent<
|
|
6
|
+
export declare const GctFormCheckSwitch: import('vue').DefineComponent<{
|
|
7
7
|
itemModel: {
|
|
8
8
|
type: PropType<IFormItem>;
|
|
9
9
|
required: true;
|
|
@@ -16,11 +16,11 @@ export declare const GctFormCheckSwitch: import('vue').DefineComponent<import('v
|
|
|
16
16
|
type: BooleanConstructor;
|
|
17
17
|
default: boolean;
|
|
18
18
|
};
|
|
19
|
-
}
|
|
19
|
+
}, {
|
|
20
20
|
ns: import('@gct-paas/core').Namespace;
|
|
21
21
|
c: EditorController<ICheckSwitchEditor>;
|
|
22
|
-
val: import('vue').WritableComputedRef<any
|
|
23
|
-
},
|
|
22
|
+
val: import('vue').WritableComputedRef<any> | null;
|
|
23
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
24
24
|
itemModel: {
|
|
25
25
|
type: PropType<IFormItem>;
|
|
26
26
|
required: true;
|
|
@@ -33,8 +33,8 @@ export declare const GctFormCheckSwitch: import('vue').DefineComponent<import('v
|
|
|
33
33
|
type: BooleanConstructor;
|
|
34
34
|
default: boolean;
|
|
35
35
|
};
|
|
36
|
-
}>> &
|
|
36
|
+
}>> & {
|
|
37
37
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
38
|
-
}
|
|
38
|
+
}, {
|
|
39
39
|
value: boolean;
|
|
40
|
-
}, {}
|
|
40
|
+
}, {}>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { IFormItemController, ICheckboxEditor, IDictionaryItem } from '@gct-paas/core';
|
|
3
|
-
export declare const GctFormCheckbox: import('vue').DefineComponent<
|
|
3
|
+
export declare const GctFormCheckbox: import('vue').DefineComponent<{
|
|
4
4
|
c: {
|
|
5
5
|
type: PropType<IFormItemController>;
|
|
6
6
|
required: true;
|
|
@@ -13,14 +13,14 @@ export declare const GctFormCheckbox: import('vue').DefineComponent<import('vue'
|
|
|
13
13
|
type: StringConstructor;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
16
|
-
}
|
|
16
|
+
}, {
|
|
17
17
|
ns: import('@gct-paas/core').Namespace;
|
|
18
18
|
checked: import('vue').ComputedRef<any>;
|
|
19
19
|
onChange: (checkVal: any) => void;
|
|
20
20
|
options: import('vue').ComputedRef<(IDictionaryItem & {
|
|
21
21
|
checked?: boolean;
|
|
22
22
|
})[]>;
|
|
23
|
-
},
|
|
23
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
24
24
|
c: {
|
|
25
25
|
type: PropType<IFormItemController>;
|
|
26
26
|
required: true;
|
|
@@ -33,9 +33,9 @@ export declare const GctFormCheckbox: import('vue').DefineComponent<import('vue'
|
|
|
33
33
|
type: StringConstructor;
|
|
34
34
|
default: string;
|
|
35
35
|
};
|
|
36
|
-
}>> &
|
|
36
|
+
}>> & {
|
|
37
37
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
38
|
-
}
|
|
38
|
+
}, {
|
|
39
39
|
value: string;
|
|
40
|
-
}, {}
|
|
40
|
+
}, {}>;
|
|
41
41
|
export default GctFormCheckbox;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { IFormItemController, ISelectEditor } from '@gct-paas/core';
|
|
3
|
-
export declare const GctFormFieldSelect: import('vue').DefineComponent<
|
|
3
|
+
export declare const GctFormFieldSelect: import('vue').DefineComponent<{
|
|
4
4
|
c: {
|
|
5
5
|
type: PropType<IFormItemController>;
|
|
6
6
|
required: true;
|
|
@@ -13,10 +13,10 @@ export declare const GctFormFieldSelect: import('vue').DefineComponent<import('v
|
|
|
13
13
|
type: StringConstructor;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
16
|
-
}
|
|
16
|
+
}, {
|
|
17
17
|
ns: import('@gct-paas/core').Namespace;
|
|
18
|
-
visible: import('vue').Ref<boolean
|
|
19
|
-
},
|
|
18
|
+
visible: import('vue').Ref<boolean>;
|
|
19
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
20
20
|
c: {
|
|
21
21
|
type: PropType<IFormItemController>;
|
|
22
22
|
required: true;
|
|
@@ -29,19 +29,9 @@ export declare const GctFormFieldSelect: import('vue').DefineComponent<import('v
|
|
|
29
29
|
type: StringConstructor;
|
|
30
30
|
default: string;
|
|
31
31
|
};
|
|
32
|
-
}>> &
|
|
32
|
+
}>> & {
|
|
33
33
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
34
|
-
}
|
|
34
|
+
}, {
|
|
35
35
|
value: string;
|
|
36
|
-
}, {}
|
|
37
|
-
modal: import('vue').DefineComponent<{
|
|
38
|
-
value: boolean;
|
|
39
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
40
|
-
"update:value": (...args: any[]) => void;
|
|
41
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
42
|
-
value: boolean;
|
|
43
|
-
}> & Readonly<{
|
|
44
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
45
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
46
|
-
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
36
|
+
}, {}>;
|
|
47
37
|
export default GctFormFieldSelect;
|
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
value: boolean;
|
|
3
3
|
};
|
|
4
|
-
declare const _default: import('vue').DefineComponent<__VLS_Props
|
|
4
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToOption<__VLS_Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5
5
|
"update:value": (...args: any[]) => void;
|
|
6
|
-
}, string, import('vue').
|
|
6
|
+
}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & {
|
|
7
7
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
8
|
-
}
|
|
8
|
+
}, {}, {}>;
|
|
9
9
|
export default _default;
|
|
10
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
11
|
+
type __VLS_TypePropsToOption<T> = {
|
|
12
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
13
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
14
|
+
} : {
|
|
15
|
+
type: import('vue').PropType<T[K]>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { IFormItemController, INumberEditor } from '@gct-paas/core';
|
|
3
|
-
export declare const GctFormI18n: import('vue').DefineComponent<
|
|
3
|
+
export declare const GctFormI18n: import('vue').DefineComponent<{
|
|
4
4
|
c: {
|
|
5
5
|
type: PropType<IFormItemController>;
|
|
6
6
|
required: true;
|
|
@@ -13,11 +13,11 @@ export declare const GctFormI18n: import('vue').DefineComponent<import('vue').Ex
|
|
|
13
13
|
type: StringConstructor;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
16
|
-
}
|
|
16
|
+
}, {
|
|
17
17
|
ns: import('@gct-paas/core').Namespace;
|
|
18
|
-
val: import('vue').WritableComputedRef<any
|
|
19
|
-
i18nConfigValue: import('vue').WritableComputedRef<any
|
|
20
|
-
},
|
|
18
|
+
val: import('vue').WritableComputedRef<any> | null;
|
|
19
|
+
i18nConfigValue: import('vue').WritableComputedRef<any>;
|
|
20
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
21
21
|
c: {
|
|
22
22
|
type: PropType<IFormItemController>;
|
|
23
23
|
required: true;
|
|
@@ -30,9 +30,9 @@ export declare const GctFormI18n: import('vue').DefineComponent<import('vue').Ex
|
|
|
30
30
|
type: StringConstructor;
|
|
31
31
|
default: string;
|
|
32
32
|
};
|
|
33
|
-
}>> &
|
|
33
|
+
}>> & {
|
|
34
34
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
35
|
-
}
|
|
35
|
+
}, {
|
|
36
36
|
value: string;
|
|
37
|
-
}, {}
|
|
37
|
+
}, {}>;
|
|
38
38
|
export default GctFormI18n;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { IIconSelectEditor } from '@gct-paas/core';
|
|
3
|
-
export declare const GctFormIconSelect: import('vue').DefineComponent<
|
|
3
|
+
export declare const GctFormIconSelect: import('vue').DefineComponent<{
|
|
4
4
|
value: {
|
|
5
5
|
type: PropType<any>;
|
|
6
6
|
};
|
|
@@ -8,15 +8,15 @@ export declare const GctFormIconSelect: import('vue').DefineComponent<import('vu
|
|
|
8
8
|
type: PropType<IIconSelectEditor>;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
-
}
|
|
11
|
+
}, {
|
|
12
12
|
ns: import('@gct-paas/core').Namespace;
|
|
13
|
-
icon: import('vue').Ref<string
|
|
14
|
-
color: import('vue').Ref<string
|
|
15
|
-
background: import('vue').Ref<string
|
|
13
|
+
icon: import('vue').Ref<string>;
|
|
14
|
+
color: import('vue').Ref<string>;
|
|
15
|
+
background: import('vue').Ref<string>;
|
|
16
16
|
nextPickerStyle: import('vue').ComputedRef<{
|
|
17
17
|
'--box-size': string;
|
|
18
18
|
} | undefined>;
|
|
19
|
-
},
|
|
19
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
20
20
|
value: {
|
|
21
21
|
type: PropType<any>;
|
|
22
22
|
};
|
|
@@ -24,6 +24,6 @@ export declare const GctFormIconSelect: import('vue').DefineComponent<import('vu
|
|
|
24
24
|
type: PropType<IIconSelectEditor>;
|
|
25
25
|
required: true;
|
|
26
26
|
};
|
|
27
|
-
}>> &
|
|
27
|
+
}>> & {
|
|
28
28
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
29
|
-
}
|
|
29
|
+
}, {}, {}>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { IInfoEditor } from '@gct-paas/core';
|
|
3
|
-
export declare const GctFormInfo: import('vue').DefineComponent<
|
|
3
|
+
export declare const GctFormInfo: import('vue').DefineComponent<{
|
|
4
4
|
value: {
|
|
5
5
|
type: StringConstructor;
|
|
6
6
|
default: string;
|
|
@@ -9,10 +9,10 @@ export declare const GctFormInfo: import('vue').DefineComponent<import('vue').Ex
|
|
|
9
9
|
type: PropType<IInfoEditor>;
|
|
10
10
|
required: true;
|
|
11
11
|
};
|
|
12
|
-
}
|
|
12
|
+
}, {
|
|
13
13
|
ns: import('@gct-paas/core').Namespace;
|
|
14
|
-
val: import('vue').WritableComputedRef<any
|
|
15
|
-
},
|
|
14
|
+
val: import('vue').WritableComputedRef<any> | null;
|
|
15
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
16
16
|
value: {
|
|
17
17
|
type: StringConstructor;
|
|
18
18
|
default: string;
|
|
@@ -21,8 +21,8 @@ export declare const GctFormInfo: import('vue').DefineComponent<import('vue').Ex
|
|
|
21
21
|
type: PropType<IInfoEditor>;
|
|
22
22
|
required: true;
|
|
23
23
|
};
|
|
24
|
-
}>> &
|
|
24
|
+
}>> & {
|
|
25
25
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
26
|
-
}
|
|
26
|
+
}, {
|
|
27
27
|
value: string;
|
|
28
|
-
}, {}
|
|
28
|
+
}, {}>;
|
|
@@ -3,7 +3,7 @@ import { LengthUnitEditorController, ILengthUnitEditor, IFormItem } from '@gct-p
|
|
|
3
3
|
/**
|
|
4
4
|
* 带单位长度字符串编辑器
|
|
5
5
|
*/
|
|
6
|
-
export declare const GctFormLengthUnit: import('vue').DefineComponent<
|
|
6
|
+
export declare const GctFormLengthUnit: import('vue').DefineComponent<{
|
|
7
7
|
itemModel: {
|
|
8
8
|
type: PropType<IFormItem>;
|
|
9
9
|
required: true;
|
|
@@ -16,11 +16,11 @@ export declare const GctFormLengthUnit: import('vue').DefineComponent<import('vu
|
|
|
16
16
|
type: StringConstructor;
|
|
17
17
|
required: true;
|
|
18
18
|
};
|
|
19
|
-
}
|
|
19
|
+
}, {
|
|
20
20
|
ns: import('@gct-paas/core').Namespace;
|
|
21
21
|
c: LengthUnitEditorController;
|
|
22
|
-
val: import('vue').WritableComputedRef<any
|
|
23
|
-
},
|
|
22
|
+
val: import('vue').WritableComputedRef<any> | null;
|
|
23
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
24
24
|
itemModel: {
|
|
25
25
|
type: PropType<IFormItem>;
|
|
26
26
|
required: true;
|
|
@@ -33,7 +33,7 @@ export declare const GctFormLengthUnit: import('vue').DefineComponent<import('vu
|
|
|
33
33
|
type: StringConstructor;
|
|
34
34
|
required: true;
|
|
35
35
|
};
|
|
36
|
-
}>> &
|
|
36
|
+
}>> & {
|
|
37
37
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
38
|
-
}
|
|
38
|
+
}, {}, {}>;
|
|
39
39
|
export default GctFormLengthUnit;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { IFormItemController, ISelectEditor } from '@gct-paas/core';
|
|
3
|
-
export declare const GctFormModalSelect: import('vue').DefineComponent<
|
|
3
|
+
export declare const GctFormModalSelect: import('vue').DefineComponent<{
|
|
4
4
|
c: {
|
|
5
5
|
type: PropType<IFormItemController>;
|
|
6
6
|
required: true;
|
|
@@ -13,9 +13,9 @@ export declare const GctFormModalSelect: import('vue').DefineComponent<import('v
|
|
|
13
13
|
type: StringConstructor;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
16
|
-
}
|
|
16
|
+
}, {
|
|
17
17
|
ns: import('@gct-paas/core').Namespace;
|
|
18
|
-
val: import('vue').WritableComputedRef<any
|
|
18
|
+
val: import('vue').WritableComputedRef<any>;
|
|
19
19
|
options: import('vue').ComputedRef<{
|
|
20
20
|
label: string;
|
|
21
21
|
options: {
|
|
@@ -23,8 +23,8 @@ export declare const GctFormModalSelect: import('vue').DefineComponent<import('v
|
|
|
23
23
|
label: string;
|
|
24
24
|
}[];
|
|
25
25
|
}[]>;
|
|
26
|
-
modelCategory: import('vue').Ref<string
|
|
27
|
-
},
|
|
26
|
+
modelCategory: import('vue').Ref<string>;
|
|
27
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
28
28
|
c: {
|
|
29
29
|
type: PropType<IFormItemController>;
|
|
30
30
|
required: true;
|
|
@@ -37,9 +37,9 @@ export declare const GctFormModalSelect: import('vue').DefineComponent<import('v
|
|
|
37
37
|
type: StringConstructor;
|
|
38
38
|
default: string;
|
|
39
39
|
};
|
|
40
|
-
}>> &
|
|
40
|
+
}>> & {
|
|
41
41
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
42
|
-
}
|
|
42
|
+
}, {
|
|
43
43
|
value: string;
|
|
44
|
-
}, {}
|
|
44
|
+
}, {}>;
|
|
45
45
|
export default GctFormModalSelect;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { INumberEditor } from '@gct-paas/core';
|
|
3
|
-
export declare const GctFormNumber: import('vue').DefineComponent<
|
|
3
|
+
export declare const GctFormNumber: import('vue').DefineComponent<{
|
|
4
4
|
model: {
|
|
5
5
|
type: PropType<INumberEditor>;
|
|
6
6
|
required: true;
|
|
@@ -9,10 +9,10 @@ export declare const GctFormNumber: import('vue').DefineComponent<import('vue').
|
|
|
9
9
|
type: StringConstructor;
|
|
10
10
|
default: string;
|
|
11
11
|
};
|
|
12
|
-
}
|
|
12
|
+
}, {
|
|
13
13
|
ns: import('@gct-paas/core').Namespace;
|
|
14
|
-
val: import('vue').WritableComputedRef<any
|
|
15
|
-
},
|
|
14
|
+
val: import('vue').WritableComputedRef<any> | null;
|
|
15
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
16
16
|
model: {
|
|
17
17
|
type: PropType<INumberEditor>;
|
|
18
18
|
required: true;
|
|
@@ -21,8 +21,8 @@ export declare const GctFormNumber: import('vue').DefineComponent<import('vue').
|
|
|
21
21
|
type: StringConstructor;
|
|
22
22
|
default: string;
|
|
23
23
|
};
|
|
24
|
-
}>> &
|
|
24
|
+
}>> & {
|
|
25
25
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
26
|
-
}
|
|
26
|
+
}, {
|
|
27
27
|
value: string;
|
|
28
|
-
}, {}
|
|
28
|
+
}, {}>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { IFormItemController, IPickerEditor } from '@gct-paas/core';
|
|
3
|
-
export declare const GctFormPicker: import('vue').DefineComponent<
|
|
3
|
+
export declare const GctFormPicker: import('vue').DefineComponent<{
|
|
4
4
|
c: {
|
|
5
5
|
type: PropType<IFormItemController>;
|
|
6
6
|
required: true;
|
|
@@ -13,13 +13,13 @@ export declare const GctFormPicker: import('vue').DefineComponent<import('vue').
|
|
|
13
13
|
type: StringConstructor;
|
|
14
14
|
default: null;
|
|
15
15
|
};
|
|
16
|
-
}
|
|
16
|
+
}, {
|
|
17
17
|
ns: import('@gct-paas/core').Namespace;
|
|
18
|
-
val: import('vue').WritableComputedRef<any
|
|
19
|
-
nameVal: import('vue').WritableComputedRef<any
|
|
18
|
+
val: import('vue').WritableComputedRef<any>;
|
|
19
|
+
nameVal: import('vue').WritableComputedRef<any>;
|
|
20
20
|
loadOptions: () => Promise<import('@gct-paas/core').IDictionaryItem[]>;
|
|
21
21
|
onChange: (_val: any, data: any) => void;
|
|
22
|
-
},
|
|
22
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
23
23
|
c: {
|
|
24
24
|
type: PropType<IFormItemController>;
|
|
25
25
|
required: true;
|
|
@@ -32,8 +32,8 @@ export declare const GctFormPicker: import('vue').DefineComponent<import('vue').
|
|
|
32
32
|
type: StringConstructor;
|
|
33
33
|
default: null;
|
|
34
34
|
};
|
|
35
|
-
}>> &
|
|
35
|
+
}>> & {
|
|
36
36
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
37
|
-
}
|
|
37
|
+
}, {
|
|
38
38
|
value: string;
|
|
39
|
-
}, {}
|
|
39
|
+
}, {}>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { IFormItemController, IRadioEditor } from '@gct-paas/core';
|
|
3
|
-
export declare const GctFormRadio: import('vue').DefineComponent<
|
|
3
|
+
export declare const GctFormRadio: import('vue').DefineComponent<{
|
|
4
4
|
c: {
|
|
5
5
|
type: PropType<IFormItemController>;
|
|
6
6
|
required: true;
|
|
@@ -13,10 +13,10 @@ export declare const GctFormRadio: import('vue').DefineComponent<import('vue').E
|
|
|
13
13
|
type: StringConstructor;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
16
|
-
}
|
|
16
|
+
}, {
|
|
17
17
|
ns: import('@gct-paas/core').Namespace;
|
|
18
|
-
val: import('vue').WritableComputedRef<any
|
|
19
|
-
},
|
|
18
|
+
val: import('vue').WritableComputedRef<any> | null;
|
|
19
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
20
20
|
c: {
|
|
21
21
|
type: PropType<IFormItemController>;
|
|
22
22
|
required: true;
|
|
@@ -29,9 +29,9 @@ export declare const GctFormRadio: import('vue').DefineComponent<import('vue').E
|
|
|
29
29
|
type: StringConstructor;
|
|
30
30
|
default: string;
|
|
31
31
|
};
|
|
32
|
-
}>> &
|
|
32
|
+
}>> & {
|
|
33
33
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
34
|
-
}
|
|
34
|
+
}, {
|
|
35
35
|
value: string;
|
|
36
|
-
}, {}
|
|
36
|
+
}, {}>;
|
|
37
37
|
export default GctFormRadio;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { IFormItemController, ISelectEditor } from '@gct-paas/core';
|
|
3
|
-
export declare const GctFormSelect: import('vue').DefineComponent<
|
|
3
|
+
export declare const GctFormSelect: import('vue').DefineComponent<{
|
|
4
4
|
c: {
|
|
5
5
|
type: PropType<IFormItemController>;
|
|
6
6
|
required: true;
|
|
@@ -13,11 +13,11 @@ export declare const GctFormSelect: import('vue').DefineComponent<import('vue').
|
|
|
13
13
|
type: StringConstructor;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
16
|
-
}
|
|
16
|
+
}, {
|
|
17
17
|
ns: import('@gct-paas/core').Namespace;
|
|
18
|
-
val: import('vue').WritableComputedRef<any
|
|
18
|
+
val: import('vue').WritableComputedRef<any> | null;
|
|
19
19
|
options: import('vue').ComputedRef<import('@gct-paas/core').IDictionaryItem[]>;
|
|
20
|
-
},
|
|
20
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
21
21
|
c: {
|
|
22
22
|
type: PropType<IFormItemController>;
|
|
23
23
|
required: true;
|
|
@@ -30,9 +30,9 @@ export declare const GctFormSelect: import('vue').DefineComponent<import('vue').
|
|
|
30
30
|
type: StringConstructor;
|
|
31
31
|
default: string;
|
|
32
32
|
};
|
|
33
|
-
}>> &
|
|
33
|
+
}>> & {
|
|
34
34
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
35
|
-
}
|
|
35
|
+
}, {
|
|
36
36
|
value: string;
|
|
37
|
-
}, {}
|
|
37
|
+
}, {}>;
|
|
38
38
|
export default GctFormSelect;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { IFormItem, IFormItemController, ISpanEditor } from '@gct-paas/core';
|
|
3
|
-
export declare const GctFormSpan: import('vue').DefineComponent<
|
|
3
|
+
export declare const GctFormSpan: import('vue').DefineComponent<{
|
|
4
4
|
c: {
|
|
5
5
|
type: PropType<IFormItemController>;
|
|
6
6
|
required: true;
|
|
@@ -17,11 +17,11 @@ export declare const GctFormSpan: import('vue').DefineComponent<import('vue').Ex
|
|
|
17
17
|
type: StringConstructor;
|
|
18
18
|
default: string;
|
|
19
19
|
};
|
|
20
|
-
}
|
|
20
|
+
}, {
|
|
21
21
|
ns: import('@gct-paas/core').Namespace;
|
|
22
22
|
val: import('vue').ComputedRef<string>;
|
|
23
23
|
handleClipboardKey: () => void;
|
|
24
|
-
},
|
|
24
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
25
25
|
c: {
|
|
26
26
|
type: PropType<IFormItemController>;
|
|
27
27
|
required: true;
|
|
@@ -38,6 +38,6 @@ export declare const GctFormSpan: import('vue').DefineComponent<import('vue').Ex
|
|
|
38
38
|
type: StringConstructor;
|
|
39
39
|
default: string;
|
|
40
40
|
};
|
|
41
|
-
}
|
|
41
|
+
}>>, {
|
|
42
42
|
value: string;
|
|
43
|
-
}, {}
|
|
43
|
+
}, {}>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { ISwitchEditor } from '@gct-paas/core';
|
|
3
|
-
export declare const GctFormSwitch: import('vue').DefineComponent<
|
|
3
|
+
export declare const GctFormSwitch: import('vue').DefineComponent<{
|
|
4
4
|
model: {
|
|
5
5
|
type: PropType<ISwitchEditor>;
|
|
6
6
|
required: true;
|
|
@@ -9,10 +9,10 @@ export declare const GctFormSwitch: import('vue').DefineComponent<import('vue').
|
|
|
9
9
|
type: StringConstructor;
|
|
10
10
|
default: string;
|
|
11
11
|
};
|
|
12
|
-
}
|
|
12
|
+
}, {
|
|
13
13
|
ns: import('@gct-paas/core').Namespace;
|
|
14
|
-
val: import('vue').WritableComputedRef<any
|
|
15
|
-
},
|
|
14
|
+
val: import('vue').WritableComputedRef<any> | null;
|
|
15
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
16
16
|
model: {
|
|
17
17
|
type: PropType<ISwitchEditor>;
|
|
18
18
|
required: true;
|
|
@@ -21,6 +21,6 @@ export declare const GctFormSwitch: import('vue').DefineComponent<import('vue').
|
|
|
21
21
|
type: StringConstructor;
|
|
22
22
|
default: string;
|
|
23
23
|
};
|
|
24
|
-
}
|
|
24
|
+
}>>, {
|
|
25
25
|
value: string;
|
|
26
|
-
}, {}
|
|
26
|
+
}, {}>;
|