@gct-paas/core-web 0.1.4-dev.6 → 0.1.4-dev.7

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.
Files changed (41) hide show
  1. package/dist/index.esm.min.mjs +7926 -0
  2. package/dist/index.min.cjs +12 -12
  3. package/dist/index.min.css.css +1 -0
  4. package/dist/index.system.min.js +12 -12
  5. package/es/components/code-editor/code-editor.d.ts +35 -0
  6. package/es/components/code-editor/code-editor.mjs +6 -10
  7. package/es/components/layout/flex-container/flex-container.d.ts +4 -4
  8. package/es/components/layout/flex-item/flex-item.d.ts +4 -4
  9. package/es/components/layout/grid-container/grid-container.d.ts +4 -4
  10. package/es/components/layout/view-container/view-container.d.ts +4 -4
  11. package/es/editor/gct-form-check-switch/gct-form-check-switch.d.ts +7 -7
  12. package/es/editor/gct-form-checkbox/gct-form-checkbox.d.ts +6 -6
  13. package/es/editor/gct-form-field-select/gct-form-field-select.d.ts +17 -7
  14. package/es/editor/gct-form-field-select/gct-model-select.vue +1 -1
  15. package/es/editor/gct-form-field-select/gct-model-select.vue.d.ts +3 -12
  16. package/es/editor/gct-form-i18n/gct-form-i18n.d.ts +8 -8
  17. package/es/editor/gct-form-icon-select/gct-form-icon-select.d.ts +8 -8
  18. package/es/editor/gct-form-info/gct-form-info.d.ts +7 -7
  19. package/es/editor/gct-form-length-unit/gct-form-length-unit.d.ts +6 -6
  20. package/es/editor/gct-form-modal-select/gct-form-modal-select.d.ts +8 -8
  21. package/es/editor/gct-form-number/gct-form-number.d.ts +7 -7
  22. package/es/editor/gct-form-picker/gct-form-picker.d.ts +8 -8
  23. package/es/editor/gct-form-radio/gct-form-radio.d.ts +7 -7
  24. package/es/editor/gct-form-select/gct-form-select.d.ts +7 -7
  25. package/es/editor/gct-form-span/gct-form-span.d.ts +5 -5
  26. package/es/editor/gct-form-switch/gct-form-switch.d.ts +6 -6
  27. package/es/editor/gct-form-text/gct-form-text.d.ts +7 -7
  28. package/es/editor/gct-form-textarea/gct-form-textarea.d.ts +7 -7
  29. package/es/types/index.d.ts +1 -1
  30. package/es/widgets/gct-edit-form/gct-edit-form.d.ts +9 -9
  31. package/es/widgets/gct-form/gct-form-collapse/gct-form-collapse.d.ts +6 -6
  32. package/es/widgets/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.d.ts +4 -4
  33. package/es/widgets/gct-form/gct-form-group/gct-form-group.d.ts +5 -5
  34. package/es/widgets/gct-form/gct-form-item/gct-form-item.d.ts +4 -4
  35. package/es/widgets/gct-form/gct-form-tab/gct-form-tab.d.ts +4 -4
  36. package/es/widgets/gct-form/gct-form-tab-pane/gct-form-tab-pane.d.ts +4 -4
  37. package/es/widgets/gct-form/gct-form-title-group/gct-form-title-group.d.ts +5 -5
  38. package/es/widgets/gct-form/gct-form.d.ts +5 -5
  39. package/es/widgets/gct-form/gct-form.mjs +3 -1
  40. package/package.json +9 -10
  41. package/dist/core-web.css +0 -1
@@ -0,0 +1,35 @@
1
+ import { PropType } from 'vue';
2
+ import { editor } from 'monaco-editor';
3
+ export declare const CodeEditor: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
+ value: {
5
+ type: StringConstructor;
6
+ default: string;
7
+ };
8
+ config: {
9
+ type: PropType<editor.IStandaloneEditorConstructionOptions>;
10
+ default: () => {};
11
+ };
12
+ language: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
17
+ value: {
18
+ type: StringConstructor;
19
+ default: string;
20
+ };
21
+ config: {
22
+ type: PropType<editor.IStandaloneEditorConstructionOptions>;
23
+ default: () => {};
24
+ };
25
+ language: {
26
+ type: StringConstructor;
27
+ default: string;
28
+ };
29
+ }>> & Readonly<{
30
+ "onUpdate:value"?: ((...args: any[]) => any) | undefined;
31
+ }>, {
32
+ value: string;
33
+ config: editor.IStandaloneEditorConstructionOptions;
34
+ language: string;
35
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -1,4 +1,4 @@
1
- import { defineComponent, createVNode, computed, ref, onMounted, onUnmounted } from 'vue';
1
+ import { defineComponent, computed, ref, onMounted, onUnmounted, createVNode } from 'vue';
2
2
  import { useNamespace, deepMerge } from '@gct-paas/core';
3
3
  import loader from '@monaco-editor/loader';
4
4
  import './code-editor.scss';
@@ -55,16 +55,12 @@ const CodeEditor = /* @__PURE__ */ defineComponent({
55
55
  onUnmounted(() => {
56
56
  monacoEditor?.dispose();
57
57
  });
58
- return {
59
- ns,
60
- el
58
+ return () => {
59
+ return createVNode("div", {
60
+ "ref": el,
61
+ "class": ns.b()
62
+ }, null);
61
63
  };
62
- },
63
- render() {
64
- return createVNode("div", {
65
- "ref": "el",
66
- "class": this.ns.b()
67
- }, null);
68
64
  }
69
65
  });
70
66
 
@@ -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<import('vue').ExtractPropTypes<{
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
- }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
12
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
13
13
  layout: PropType<IFlexContainer>;
14
- }>>, {}, {}>;
14
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
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<import('vue').ExtractPropTypes<{
7
7
  layout: PropType<IFlexItem>;
8
- }, {
8
+ }>, {
9
9
  ns: import('@gct-paas/core').Namespace;
10
10
  getStyle: () => IData;
11
- }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
11
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
12
12
  layout: PropType<IFlexItem>;
13
- }>>, {}, {}>;
13
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
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<import('vue').ExtractPropTypes<{
7
7
  layout: PropType<IGridContainer>;
8
- }, {
8
+ }>, {
9
9
  ns: import('@gct-paas/core').Namespace;
10
- }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
10
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
11
11
  layout: PropType<IGridContainer>;
12
- }>>, {}, {}>;
12
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
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<import('vue').ExtractPropTypes<{
2
2
  context: {
3
3
  type: ObjectConstructor;
4
4
  };
@@ -9,9 +9,9 @@ export declare const ViewContainer: import('vue').DefineComponent<{
9
9
  type: ObjectConstructor;
10
10
  required: true;
11
11
  };
12
- }, {
12
+ }>, {
13
13
  ns: import('@gct-paas/core').Namespace;
14
- }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
14
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
15
15
  context: {
16
16
  type: ObjectConstructor;
17
17
  };
@@ -22,4 +22,4 @@ export declare const ViewContainer: import('vue').DefineComponent<{
22
22
  type: ObjectConstructor;
23
23
  required: true;
24
24
  };
25
- }>>, {}, {}>;
25
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -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<import('vue').ExtractPropTypes<{
7
7
  itemModel: {
8
8
  type: PropType<IFormItem>;
9
9
  required: true;
@@ -16,11 +16,11 @@ export declare const GctFormCheckSwitch: import('vue').DefineComponent<{
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> | 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<{
22
+ val: import('vue').WritableComputedRef<any, any> | null;
23
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, 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<{
33
33
  type: BooleanConstructor;
34
34
  default: boolean;
35
35
  };
36
- }>> & {
36
+ }>> & Readonly<{
37
37
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
38
- }, {
38
+ }>, {
39
39
  value: boolean;
40
- }, {}>;
40
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -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<import('vue').ExtractPropTypes<{
4
4
  c: {
5
5
  type: PropType<IFormItemController>;
6
6
  required: true;
@@ -13,14 +13,14 @@ export declare const GctFormCheckbox: import('vue').DefineComponent<{
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
- }, 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
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, 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<{
33
33
  type: StringConstructor;
34
34
  default: string;
35
35
  };
36
- }>> & {
36
+ }>> & Readonly<{
37
37
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
38
- }, {
38
+ }>, {
39
39
  value: string;
40
- }, {}>;
40
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
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<import('vue').ExtractPropTypes<{
4
4
  c: {
5
5
  type: PropType<IFormItemController>;
6
6
  required: true;
@@ -13,10 +13,10 @@ export declare const GctFormFieldSelect: import('vue').DefineComponent<{
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
- }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
18
+ visible: import('vue').Ref<boolean, boolean>;
19
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
20
20
  c: {
21
21
  type: PropType<IFormItemController>;
22
22
  required: true;
@@ -29,9 +29,19 @@ export declare const GctFormFieldSelect: import('vue').DefineComponent<{
29
29
  type: StringConstructor;
30
30
  default: string;
31
31
  };
32
- }>> & {
32
+ }>> & Readonly<{
33
33
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
34
- }, {
34
+ }>, {
35
35
  value: string;
36
- }, {}>;
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>;
37
47
  export default GctFormFieldSelect;
@@ -62,7 +62,7 @@ function handleOk() {
62
62
  .gct-box {
63
63
  margin-top: 16px;
64
64
 
65
- ::v-deep .ant-transfer-list {
65
+ :deep(.ant-transfer-list) {
66
66
  height: 340px;
67
67
  width: 240px;
68
68
  }
@@ -1,18 +1,9 @@
1
1
  type __VLS_Props = {
2
2
  value: boolean;
3
3
  };
4
- declare const _default: import('vue').DefineComponent<__VLS_TypePropsToOption<__VLS_Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
5
5
  "update:value": (...args: any[]) => void;
6
- }, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & {
6
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
7
7
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
8
- }, {}, {}>;
8
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
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<import('vue').ExtractPropTypes<{
4
4
  c: {
5
5
  type: PropType<IFormItemController>;
6
6
  required: true;
@@ -13,11 +13,11 @@ export declare const GctFormI18n: import('vue').DefineComponent<{
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> | 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<{
18
+ val: import('vue').WritableComputedRef<any, any> | null;
19
+ i18nConfigValue: import('vue').WritableComputedRef<any, any>;
20
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, 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<{
30
30
  type: StringConstructor;
31
31
  default: string;
32
32
  };
33
- }>> & {
33
+ }>> & Readonly<{
34
34
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
35
- }, {
35
+ }>, {
36
36
  value: string;
37
- }, {}>;
37
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
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<import('vue').ExtractPropTypes<{
4
4
  value: {
5
5
  type: PropType<any>;
6
6
  };
@@ -8,15 +8,15 @@ export declare const GctFormIconSelect: import('vue').DefineComponent<{
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, string>;
14
+ color: import('vue').Ref<string, string>;
15
+ background: import('vue').Ref<string, string>;
16
16
  nextPickerStyle: import('vue').ComputedRef<{
17
17
  '--box-size': string;
18
18
  } | undefined>;
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<{
19
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, 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<{
24
24
  type: PropType<IIconSelectEditor>;
25
25
  required: true;
26
26
  };
27
- }>> & {
27
+ }>> & Readonly<{
28
28
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
29
- }, {}, {}>;
29
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -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<import('vue').ExtractPropTypes<{
4
4
  value: {
5
5
  type: StringConstructor;
6
6
  default: string;
@@ -9,10 +9,10 @@ export declare const GctFormInfo: import('vue').DefineComponent<{
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> | 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<{
14
+ val: import('vue').WritableComputedRef<any, any> | null;
15
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, 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<{
21
21
  type: PropType<IInfoEditor>;
22
22
  required: true;
23
23
  };
24
- }>> & {
24
+ }>> & Readonly<{
25
25
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
26
- }, {
26
+ }>, {
27
27
  value: string;
28
- }, {}>;
28
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -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<import('vue').ExtractPropTypes<{
7
7
  itemModel: {
8
8
  type: PropType<IFormItem>;
9
9
  required: true;
@@ -16,11 +16,11 @@ export declare const GctFormLengthUnit: import('vue').DefineComponent<{
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> | 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<{
22
+ val: import('vue').WritableComputedRef<any, any> | null;
23
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, 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<{
33
33
  type: StringConstructor;
34
34
  required: true;
35
35
  };
36
- }>> & {
36
+ }>> & Readonly<{
37
37
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
38
- }, {}, {}>;
38
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
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<import('vue').ExtractPropTypes<{
4
4
  c: {
5
5
  type: PropType<IFormItemController>;
6
6
  required: true;
@@ -13,9 +13,9 @@ export declare const GctFormModalSelect: import('vue').DefineComponent<{
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, 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<{
23
23
  label: string;
24
24
  }[];
25
25
  }[]>;
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<{
26
+ modelCategory: import('vue').Ref<string, string>;
27
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, 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<{
37
37
  type: StringConstructor;
38
38
  default: string;
39
39
  };
40
- }>> & {
40
+ }>> & Readonly<{
41
41
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
42
- }, {
42
+ }>, {
43
43
  value: string;
44
- }, {}>;
44
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
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<import('vue').ExtractPropTypes<{
4
4
  model: {
5
5
  type: PropType<INumberEditor>;
6
6
  required: true;
@@ -9,10 +9,10 @@ export declare const GctFormNumber: import('vue').DefineComponent<{
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> | 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<{
14
+ val: import('vue').WritableComputedRef<any, any> | null;
15
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, 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<{
21
21
  type: StringConstructor;
22
22
  default: string;
23
23
  };
24
- }>> & {
24
+ }>> & Readonly<{
25
25
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
26
- }, {
26
+ }>, {
27
27
  value: string;
28
- }, {}>;
28
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -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<import('vue').ExtractPropTypes<{
4
4
  c: {
5
5
  type: PropType<IFormItemController>;
6
6
  required: true;
@@ -13,13 +13,13 @@ export declare const GctFormPicker: import('vue').DefineComponent<{
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, any>;
19
+ nameVal: import('vue').WritableComputedRef<any, any>;
20
20
  loadOptions: () => Promise<import('@gct-paas/core').IDictionaryItem[]>;
21
21
  onChange: (_val: any, data: any) => void;
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<{
22
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, 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<{
32
32
  type: StringConstructor;
33
33
  default: null;
34
34
  };
35
- }>> & {
35
+ }>> & Readonly<{
36
36
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
37
- }, {
37
+ }>, {
38
38
  value: string;
39
- }, {}>;
39
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -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<import('vue').ExtractPropTypes<{
4
4
  c: {
5
5
  type: PropType<IFormItemController>;
6
6
  required: true;
@@ -13,10 +13,10 @@ export declare const GctFormRadio: import('vue').DefineComponent<{
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> | 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<{
18
+ val: import('vue').WritableComputedRef<any, any> | null;
19
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, 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<{
29
29
  type: StringConstructor;
30
30
  default: string;
31
31
  };
32
- }>> & {
32
+ }>> & Readonly<{
33
33
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
34
- }, {
34
+ }>, {
35
35
  value: string;
36
- }, {}>;
36
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
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<import('vue').ExtractPropTypes<{
4
4
  c: {
5
5
  type: PropType<IFormItemController>;
6
6
  required: true;
@@ -13,11 +13,11 @@ export declare const GctFormSelect: import('vue').DefineComponent<{
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> | null;
18
+ val: import('vue').WritableComputedRef<any, any> | null;
19
19
  options: import('vue').ComputedRef<import('@gct-paas/core').IDictionaryItem[]>;
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<{
20
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, 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<{
30
30
  type: StringConstructor;
31
31
  default: string;
32
32
  };
33
- }>> & {
33
+ }>> & Readonly<{
34
34
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
35
- }, {
35
+ }>, {
36
36
  value: string;
37
- }, {}>;
37
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
38
38
  export default GctFormSelect;