@qqt-product/system 16.0.2 → 16.0.3

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.
@@ -2691,7 +2691,6 @@ declare const _sfc_main: DefineComponent<{
2691
2691
  field: string;
2692
2692
  fieldType?: string | undefined;
2693
2693
  helpText?: string | undefined;
2694
- disabled?: boolean | undefined;
2695
2694
  required?: "0" | "1" | undefined;
2696
2695
  regex?: string | {
2697
2696
  exec: (string: string) => RegExpExecArray | null;
@@ -2716,7 +2715,6 @@ declare const _sfc_main: DefineComponent<{
2716
2715
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2717
2716
  } | undefined;
2718
2717
  alertMsg?: string | undefined;
2719
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2720
2718
  callback?: ((ctx: {
2721
2719
  attrs: {
2722
2720
  [x: string]: unknown;
@@ -2744,7 +2742,6 @@ declare const _sfc_main: DefineComponent<{
2744
2742
  fieldLabel: string;
2745
2743
  fieldName: string;
2746
2744
  helpText?: string | undefined;
2747
- disabled?: boolean | undefined;
2748
2745
  required?: "0" | "1" | undefined;
2749
2746
  regex?: {
2750
2747
  exec: (string: string) => RegExpExecArray | null;
@@ -2769,7 +2766,6 @@ declare const _sfc_main: DefineComponent<{
2769
2766
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2770
2767
  } | undefined;
2771
2768
  alertMsg?: string | undefined;
2772
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2773
2769
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2774
2770
  }[] | undefined;
2775
2771
  }[] | undefined;
@@ -2780,7 +2776,6 @@ declare const _sfc_main: DefineComponent<{
2780
2776
  fieldLabel: string;
2781
2777
  fieldName: string;
2782
2778
  helpText?: string | undefined;
2783
- disabled?: boolean | undefined;
2784
2779
  required?: "0" | "1" | undefined;
2785
2780
  regex?: {
2786
2781
  exec: (string: string) => RegExpExecArray | null;
@@ -2805,7 +2800,6 @@ declare const _sfc_main: DefineComponent<{
2805
2800
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2806
2801
  } | undefined;
2807
2802
  alertMsg?: string | undefined;
2808
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2809
2803
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2810
2804
  }[] | undefined;
2811
2805
  itemColumns?: {
@@ -2816,7 +2810,6 @@ declare const _sfc_main: DefineComponent<{
2816
2810
  field: string;
2817
2811
  fieldType?: string | undefined;
2818
2812
  helpText?: string | undefined;
2819
- disabled?: boolean | undefined;
2820
2813
  required?: "0" | "1" | undefined;
2821
2814
  regex?: string | {
2822
2815
  exec: (string: string) => RegExpExecArray | null;
@@ -2841,7 +2834,6 @@ declare const _sfc_main: DefineComponent<{
2841
2834
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2842
2835
  } | undefined;
2843
2836
  alertMsg?: string | undefined;
2844
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2845
2837
  callback?: ((ctx: {
2846
2838
  attrs: {
2847
2839
  [x: string]: unknown;
@@ -1,6 +1,6 @@
1
1
  import type { VxeTableDataRow, SizeType, VxePagerPropTypes, VxeColumnSlotTypes, SlotVNodeType, VxeColumnPropTypes, VxeTablePropTypes, VxeTooltipPropTypes, VxeTableDefines, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams } from 'vxe-table';
2
2
  import type { FileDataType } from '@qqt-product/ui/dist/lib/components/upload-file';
3
- import type { DefineComponent, Ref, ComponentOptionsBase, VNode, RendererNode, RendererElement, Slot, ComponentInternalInstance, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComponentPublicInstance } from 'vue';
3
+ import type { DefineComponent, ShallowRef, Ref, ComponentOptionsBase, VNode, RendererNode, RendererElement, Slot, ComponentInternalInstance, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComponentPublicInstance } from 'vue';
4
4
  import type { GlobalPageLayoutTypes } from '@qqt-product/ui';
5
5
  import * as customConfigEdits from '../../../utils/global.types';
6
6
  declare const _sfc_main: DefineComponent<{
@@ -19,9 +19,11 @@ declare const _sfc_main: DefineComponent<{
19
19
  }, {
20
20
  props: any;
21
21
  qHttp: customConfigEdits.HttpClient;
22
- showEdit: Ref<boolean>;
22
+ showEdit: ShallowRef<boolean>;
23
23
  currentRow: any;
24
24
  layoutRef: Ref<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null>;
25
+ roleOptains: Ref<never[]>;
26
+ groupOptains: Ref<never[]>;
25
27
  selectModal: Ref<any>;
26
28
  handleItemListAdd: Ref<((btn: GlobalPageLayoutTypes.PageButtonWithGroupCode) => void) | null>;
27
29
  ok: Ref<((data: GlobalPageLayoutTypes.RecordString[]) => void) | null>;
@@ -2696,7 +2698,6 @@ declare const _sfc_main: DefineComponent<{
2696
2698
  field: string;
2697
2699
  fieldType?: string | undefined;
2698
2700
  helpText?: string | undefined;
2699
- disabled?: boolean | undefined;
2700
2701
  required?: "0" | "1" | undefined;
2701
2702
  regex?: string | {
2702
2703
  exec: (string: string) => RegExpExecArray | null;
@@ -2721,7 +2722,6 @@ declare const _sfc_main: DefineComponent<{
2721
2722
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2722
2723
  } | undefined;
2723
2724
  alertMsg?: string | undefined;
2724
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2725
2725
  callback?: ((ctx: {
2726
2726
  attrs: {
2727
2727
  [x: string]: unknown;
@@ -2749,7 +2749,6 @@ declare const _sfc_main: DefineComponent<{
2749
2749
  fieldLabel: string;
2750
2750
  fieldName: string;
2751
2751
  helpText?: string | undefined;
2752
- disabled?: boolean | undefined;
2753
2752
  required?: "0" | "1" | undefined;
2754
2753
  regex?: {
2755
2754
  exec: (string: string) => RegExpExecArray | null;
@@ -2774,7 +2773,6 @@ declare const _sfc_main: DefineComponent<{
2774
2773
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2775
2774
  } | undefined;
2776
2775
  alertMsg?: string | undefined;
2777
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2778
2776
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2779
2777
  }[] | undefined;
2780
2778
  }[] | undefined;
@@ -2785,7 +2783,6 @@ declare const _sfc_main: DefineComponent<{
2785
2783
  fieldLabel: string;
2786
2784
  fieldName: string;
2787
2785
  helpText?: string | undefined;
2788
- disabled?: boolean | undefined;
2789
2786
  required?: "0" | "1" | undefined;
2790
2787
  regex?: {
2791
2788
  exec: (string: string) => RegExpExecArray | null;
@@ -2810,7 +2807,6 @@ declare const _sfc_main: DefineComponent<{
2810
2807
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2811
2808
  } | undefined;
2812
2809
  alertMsg?: string | undefined;
2813
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2814
2810
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2815
2811
  }[] | undefined;
2816
2812
  itemColumns?: {
@@ -2821,7 +2817,6 @@ declare const _sfc_main: DefineComponent<{
2821
2817
  field: string;
2822
2818
  fieldType?: string | undefined;
2823
2819
  helpText?: string | undefined;
2824
- disabled?: boolean | undefined;
2825
2820
  required?: "0" | "1" | undefined;
2826
2821
  regex?: string | {
2827
2822
  exec: (string: string) => RegExpExecArray | null;
@@ -2846,7 +2841,6 @@ declare const _sfc_main: DefineComponent<{
2846
2841
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2847
2842
  } | undefined;
2848
2843
  alertMsg?: string | undefined;
2849
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2850
2844
  callback?: ((ctx: {
2851
2845
  attrs: {
2852
2846
  [x: string]: unknown;
@@ -2919,8 +2913,8 @@ declare const _sfc_main: DefineComponent<{
2919
2913
  customLoading: Readonly<Ref<boolean>>;
2920
2914
  handleCustomSave: () => void;
2921
2915
  handleValidateSuccess: (button: GlobalPageLayoutTypes.PageButton) => void;
2922
- getRole: Promise<customConfigEdits.ResponseData>;
2923
- getGroup: Promise<customConfigEdits.ResponseData>;
2916
+ getRoleOptains: () => Promise<void>;
2917
+ getGroupOptains: () => Promise<void>;
2924
2918
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
2925
2919
  currentRow: {
2926
2920
  type: ObjectConstructor;
@@ -2688,7 +2688,6 @@ declare const _sfc_main: DefineComponent<{
2688
2688
  field: string;
2689
2689
  fieldType?: string | undefined;
2690
2690
  helpText?: string | undefined;
2691
- disabled?: boolean | undefined;
2692
2691
  required?: "0" | "1" | undefined;
2693
2692
  regex?: string | {
2694
2693
  exec: (string: string) => RegExpExecArray | null;
@@ -2713,7 +2712,6 @@ declare const _sfc_main: DefineComponent<{
2713
2712
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2714
2713
  } | undefined;
2715
2714
  alertMsg?: string | undefined;
2716
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2717
2715
  callback?: ((ctx: {
2718
2716
  attrs: {
2719
2717
  [x: string]: unknown;
@@ -2741,7 +2739,6 @@ declare const _sfc_main: DefineComponent<{
2741
2739
  fieldLabel: string;
2742
2740
  fieldName: string;
2743
2741
  helpText?: string | undefined;
2744
- disabled?: boolean | undefined;
2745
2742
  required?: "0" | "1" | undefined;
2746
2743
  regex?: {
2747
2744
  exec: (string: string) => RegExpExecArray | null;
@@ -2766,7 +2763,6 @@ declare const _sfc_main: DefineComponent<{
2766
2763
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2767
2764
  } | undefined;
2768
2765
  alertMsg?: string | undefined;
2769
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2770
2766
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2771
2767
  }[] | undefined;
2772
2768
  }[] | undefined;
@@ -2777,7 +2773,6 @@ declare const _sfc_main: DefineComponent<{
2777
2773
  fieldLabel: string;
2778
2774
  fieldName: string;
2779
2775
  helpText?: string | undefined;
2780
- disabled?: boolean | undefined;
2781
2776
  required?: "0" | "1" | undefined;
2782
2777
  regex?: {
2783
2778
  exec: (string: string) => RegExpExecArray | null;
@@ -2802,7 +2797,6 @@ declare const _sfc_main: DefineComponent<{
2802
2797
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2803
2798
  } | undefined;
2804
2799
  alertMsg?: string | undefined;
2805
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2806
2800
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2807
2801
  }[] | undefined;
2808
2802
  itemColumns?: {
@@ -2813,7 +2807,6 @@ declare const _sfc_main: DefineComponent<{
2813
2807
  field: string;
2814
2808
  fieldType?: string | undefined;
2815
2809
  helpText?: string | undefined;
2816
- disabled?: boolean | undefined;
2817
2810
  required?: "0" | "1" | undefined;
2818
2811
  regex?: string | {
2819
2812
  exec: (string: string) => RegExpExecArray | null;
@@ -2838,7 +2831,6 @@ declare const _sfc_main: DefineComponent<{
2838
2831
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2839
2832
  } | undefined;
2840
2833
  alertMsg?: string | undefined;
2841
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2842
2834
  callback?: ((ctx: {
2843
2835
  attrs: {
2844
2836
  [x: string]: unknown;
@@ -2688,7 +2688,6 @@ declare const _sfc_main: DefineComponent<{
2688
2688
  field: string;
2689
2689
  fieldType?: string | undefined;
2690
2690
  helpText?: string | undefined;
2691
- disabled?: boolean | undefined;
2692
2691
  required?: "0" | "1" | undefined;
2693
2692
  regex?: string | {
2694
2693
  exec: (string: string) => RegExpExecArray | null;
@@ -2713,7 +2712,6 @@ declare const _sfc_main: DefineComponent<{
2713
2712
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2714
2713
  } | undefined;
2715
2714
  alertMsg?: string | undefined;
2716
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2717
2715
  callback?: ((ctx: {
2718
2716
  attrs: {
2719
2717
  [x: string]: unknown;
@@ -2741,7 +2739,6 @@ declare const _sfc_main: DefineComponent<{
2741
2739
  fieldLabel: string;
2742
2740
  fieldName: string;
2743
2741
  helpText?: string | undefined;
2744
- disabled?: boolean | undefined;
2745
2742
  required?: "0" | "1" | undefined;
2746
2743
  regex?: {
2747
2744
  exec: (string: string) => RegExpExecArray | null;
@@ -2766,7 +2763,6 @@ declare const _sfc_main: DefineComponent<{
2766
2763
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2767
2764
  } | undefined;
2768
2765
  alertMsg?: string | undefined;
2769
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2770
2766
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2771
2767
  }[] | undefined;
2772
2768
  }[] | undefined;
@@ -2777,7 +2773,6 @@ declare const _sfc_main: DefineComponent<{
2777
2773
  fieldLabel: string;
2778
2774
  fieldName: string;
2779
2775
  helpText?: string | undefined;
2780
- disabled?: boolean | undefined;
2781
2776
  required?: "0" | "1" | undefined;
2782
2777
  regex?: {
2783
2778
  exec: (string: string) => RegExpExecArray | null;
@@ -2802,7 +2797,6 @@ declare const _sfc_main: DefineComponent<{
2802
2797
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2803
2798
  } | undefined;
2804
2799
  alertMsg?: string | undefined;
2805
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2806
2800
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2807
2801
  }[] | undefined;
2808
2802
  itemColumns?: {
@@ -2813,7 +2807,6 @@ declare const _sfc_main: DefineComponent<{
2813
2807
  field: string;
2814
2808
  fieldType?: string | undefined;
2815
2809
  helpText?: string | undefined;
2816
- disabled?: boolean | undefined;
2817
2810
  required?: "0" | "1" | undefined;
2818
2811
  regex?: string | {
2819
2812
  exec: (string: string) => RegExpExecArray | null;
@@ -2838,7 +2831,6 @@ declare const _sfc_main: DefineComponent<{
2838
2831
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2839
2832
  } | undefined;
2840
2833
  alertMsg?: string | undefined;
2841
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2842
2834
  callback?: ((ctx: {
2843
2835
  attrs: {
2844
2836
  [x: string]: unknown;
@@ -2694,7 +2694,6 @@ declare const _sfc_main: DefineComponent<{
2694
2694
  field: string;
2695
2695
  fieldType?: string | undefined;
2696
2696
  helpText?: string | undefined;
2697
- disabled?: boolean | undefined;
2698
2697
  required?: "0" | "1" | undefined;
2699
2698
  regex?: string | {
2700
2699
  exec: (string: string) => RegExpExecArray | null;
@@ -2719,7 +2718,6 @@ declare const _sfc_main: DefineComponent<{
2719
2718
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2720
2719
  } | undefined;
2721
2720
  alertMsg?: string | undefined;
2722
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2723
2721
  callback?: ((ctx: {
2724
2722
  attrs: {
2725
2723
  [x: string]: unknown;
@@ -2747,7 +2745,6 @@ declare const _sfc_main: DefineComponent<{
2747
2745
  fieldLabel: string;
2748
2746
  fieldName: string;
2749
2747
  helpText?: string | undefined;
2750
- disabled?: boolean | undefined;
2751
2748
  required?: "0" | "1" | undefined;
2752
2749
  regex?: {
2753
2750
  exec: (string: string) => RegExpExecArray | null;
@@ -2772,7 +2769,6 @@ declare const _sfc_main: DefineComponent<{
2772
2769
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2773
2770
  } | undefined;
2774
2771
  alertMsg?: string | undefined;
2775
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2776
2772
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2777
2773
  }[] | undefined;
2778
2774
  }[] | undefined;
@@ -2783,7 +2779,6 @@ declare const _sfc_main: DefineComponent<{
2783
2779
  fieldLabel: string;
2784
2780
  fieldName: string;
2785
2781
  helpText?: string | undefined;
2786
- disabled?: boolean | undefined;
2787
2782
  required?: "0" | "1" | undefined;
2788
2783
  regex?: {
2789
2784
  exec: (string: string) => RegExpExecArray | null;
@@ -2808,7 +2803,6 @@ declare const _sfc_main: DefineComponent<{
2808
2803
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2809
2804
  } | undefined;
2810
2805
  alertMsg?: string | undefined;
2811
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2812
2806
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2813
2807
  }[] | undefined;
2814
2808
  itemColumns?: {
@@ -2819,7 +2813,6 @@ declare const _sfc_main: DefineComponent<{
2819
2813
  field: string;
2820
2814
  fieldType?: string | undefined;
2821
2815
  helpText?: string | undefined;
2822
- disabled?: boolean | undefined;
2823
2816
  required?: "0" | "1" | undefined;
2824
2817
  regex?: string | {
2825
2818
  exec: (string: string) => RegExpExecArray | null;
@@ -2844,7 +2837,6 @@ declare const _sfc_main: DefineComponent<{
2844
2837
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2845
2838
  } | undefined;
2846
2839
  alertMsg?: string | undefined;
2847
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2848
2840
  callback?: ((ctx: {
2849
2841
  attrs: {
2850
2842
  [x: string]: unknown;
@@ -2690,7 +2690,6 @@ declare const _sfc_main: DefineComponent<{
2690
2690
  field: string;
2691
2691
  fieldType?: string | undefined;
2692
2692
  helpText?: string | undefined;
2693
- disabled?: boolean | undefined;
2694
2693
  required?: "0" | "1" | undefined;
2695
2694
  regex?: string | {
2696
2695
  exec: (string: string) => RegExpExecArray | null;
@@ -2715,7 +2714,6 @@ declare const _sfc_main: DefineComponent<{
2715
2714
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2716
2715
  } | undefined;
2717
2716
  alertMsg?: string | undefined;
2718
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2719
2717
  callback?: ((ctx: {
2720
2718
  attrs: {
2721
2719
  [x: string]: unknown;
@@ -2743,7 +2741,6 @@ declare const _sfc_main: DefineComponent<{
2743
2741
  fieldLabel: string;
2744
2742
  fieldName: string;
2745
2743
  helpText?: string | undefined;
2746
- disabled?: boolean | undefined;
2747
2744
  required?: "0" | "1" | undefined;
2748
2745
  regex?: {
2749
2746
  exec: (string: string) => RegExpExecArray | null;
@@ -2768,7 +2765,6 @@ declare const _sfc_main: DefineComponent<{
2768
2765
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2769
2766
  } | undefined;
2770
2767
  alertMsg?: string | undefined;
2771
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2772
2768
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2773
2769
  }[] | undefined;
2774
2770
  }[] | undefined;
@@ -2779,7 +2775,6 @@ declare const _sfc_main: DefineComponent<{
2779
2775
  fieldLabel: string;
2780
2776
  fieldName: string;
2781
2777
  helpText?: string | undefined;
2782
- disabled?: boolean | undefined;
2783
2778
  required?: "0" | "1" | undefined;
2784
2779
  regex?: {
2785
2780
  exec: (string: string) => RegExpExecArray | null;
@@ -2804,7 +2799,6 @@ declare const _sfc_main: DefineComponent<{
2804
2799
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2805
2800
  } | undefined;
2806
2801
  alertMsg?: string | undefined;
2807
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2808
2802
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2809
2803
  }[] | undefined;
2810
2804
  itemColumns?: {
@@ -2815,7 +2809,6 @@ declare const _sfc_main: DefineComponent<{
2815
2809
  field: string;
2816
2810
  fieldType?: string | undefined;
2817
2811
  helpText?: string | undefined;
2818
- disabled?: boolean | undefined;
2819
2812
  required?: "0" | "1" | undefined;
2820
2813
  regex?: string | {
2821
2814
  exec: (string: string) => RegExpExecArray | null;
@@ -2840,7 +2833,6 @@ declare const _sfc_main: DefineComponent<{
2840
2833
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2841
2834
  } | undefined;
2842
2835
  alertMsg?: string | undefined;
2843
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2844
2836
  callback?: ((ctx: {
2845
2837
  attrs: {
2846
2838
  [x: string]: unknown;
@@ -2688,7 +2688,6 @@ declare const _sfc_main: DefineComponent<{
2688
2688
  field: string;
2689
2689
  fieldType?: string | undefined;
2690
2690
  helpText?: string | undefined;
2691
- disabled?: boolean | undefined;
2692
2691
  required?: "0" | "1" | undefined;
2693
2692
  regex?: string | {
2694
2693
  exec: (string: string) => RegExpExecArray | null;
@@ -2713,7 +2712,6 @@ declare const _sfc_main: DefineComponent<{
2713
2712
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2714
2713
  } | undefined;
2715
2714
  alertMsg?: string | undefined;
2716
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2717
2715
  callback?: ((ctx: {
2718
2716
  attrs: {
2719
2717
  [x: string]: unknown;
@@ -2741,7 +2739,6 @@ declare const _sfc_main: DefineComponent<{
2741
2739
  fieldLabel: string;
2742
2740
  fieldName: string;
2743
2741
  helpText?: string | undefined;
2744
- disabled?: boolean | undefined;
2745
2742
  required?: "0" | "1" | undefined;
2746
2743
  regex?: {
2747
2744
  exec: (string: string) => RegExpExecArray | null;
@@ -2766,7 +2763,6 @@ declare const _sfc_main: DefineComponent<{
2766
2763
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2767
2764
  } | undefined;
2768
2765
  alertMsg?: string | undefined;
2769
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2770
2766
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2771
2767
  }[] | undefined;
2772
2768
  }[] | undefined;
@@ -2777,7 +2773,6 @@ declare const _sfc_main: DefineComponent<{
2777
2773
  fieldLabel: string;
2778
2774
  fieldName: string;
2779
2775
  helpText?: string | undefined;
2780
- disabled?: boolean | undefined;
2781
2776
  required?: "0" | "1" | undefined;
2782
2777
  regex?: {
2783
2778
  exec: (string: string) => RegExpExecArray | null;
@@ -2802,7 +2797,6 @@ declare const _sfc_main: DefineComponent<{
2802
2797
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2803
2798
  } | undefined;
2804
2799
  alertMsg?: string | undefined;
2805
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2806
2800
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2807
2801
  }[] | undefined;
2808
2802
  itemColumns?: {
@@ -2813,7 +2807,6 @@ declare const _sfc_main: DefineComponent<{
2813
2807
  field: string;
2814
2808
  fieldType?: string | undefined;
2815
2809
  helpText?: string | undefined;
2816
- disabled?: boolean | undefined;
2817
2810
  required?: "0" | "1" | undefined;
2818
2811
  regex?: string | {
2819
2812
  exec: (string: string) => RegExpExecArray | null;
@@ -2838,7 +2831,6 @@ declare const _sfc_main: DefineComponent<{
2838
2831
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2839
2832
  } | undefined;
2840
2833
  alertMsg?: string | undefined;
2841
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2842
2834
  callback?: ((ctx: {
2843
2835
  attrs: {
2844
2836
  [x: string]: unknown;
@@ -2694,7 +2694,6 @@ declare const _sfc_main: DefineComponent<{
2694
2694
  field: string;
2695
2695
  fieldType?: string | undefined;
2696
2696
  helpText?: string | undefined;
2697
- disabled?: boolean | undefined;
2698
2697
  required?: "0" | "1" | undefined;
2699
2698
  regex?: string | {
2700
2699
  exec: (string: string) => RegExpExecArray | null;
@@ -2719,7 +2718,6 @@ declare const _sfc_main: DefineComponent<{
2719
2718
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2720
2719
  } | undefined;
2721
2720
  alertMsg?: string | undefined;
2722
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2723
2721
  callback?: ((ctx: {
2724
2722
  attrs: {
2725
2723
  [x: string]: unknown;
@@ -2747,7 +2745,6 @@ declare const _sfc_main: DefineComponent<{
2747
2745
  fieldLabel: string;
2748
2746
  fieldName: string;
2749
2747
  helpText?: string | undefined;
2750
- disabled?: boolean | undefined;
2751
2748
  required?: "0" | "1" | undefined;
2752
2749
  regex?: {
2753
2750
  exec: (string: string) => RegExpExecArray | null;
@@ -2772,7 +2769,6 @@ declare const _sfc_main: DefineComponent<{
2772
2769
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2773
2770
  } | undefined;
2774
2771
  alertMsg?: string | undefined;
2775
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2776
2772
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2777
2773
  }[] | undefined;
2778
2774
  }[] | undefined;
@@ -2783,7 +2779,6 @@ declare const _sfc_main: DefineComponent<{
2783
2779
  fieldLabel: string;
2784
2780
  fieldName: string;
2785
2781
  helpText?: string | undefined;
2786
- disabled?: boolean | undefined;
2787
2782
  required?: "0" | "1" | undefined;
2788
2783
  regex?: {
2789
2784
  exec: (string: string) => RegExpExecArray | null;
@@ -2808,7 +2803,6 @@ declare const _sfc_main: DefineComponent<{
2808
2803
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2809
2804
  } | undefined;
2810
2805
  alertMsg?: string | undefined;
2811
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2812
2806
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2813
2807
  }[] | undefined;
2814
2808
  itemColumns?: {
@@ -2819,7 +2813,6 @@ declare const _sfc_main: DefineComponent<{
2819
2813
  field: string;
2820
2814
  fieldType?: string | undefined;
2821
2815
  helpText?: string | undefined;
2822
- disabled?: boolean | undefined;
2823
2816
  required?: "0" | "1" | undefined;
2824
2817
  regex?: string | {
2825
2818
  exec: (string: string) => RegExpExecArray | null;
@@ -2844,7 +2837,6 @@ declare const _sfc_main: DefineComponent<{
2844
2837
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2845
2838
  } | undefined;
2846
2839
  alertMsg?: string | undefined;
2847
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2848
2840
  callback?: ((ctx: {
2849
2841
  attrs: {
2850
2842
  [x: string]: unknown;
@@ -197,7 +197,7 @@ declare const _sfc_main: DefineComponent<{
197
197
  fieldCode?: string | undefined;
198
198
  dictCode?: string | undefined;
199
199
  fieldType?: string | undefined;
200
- fieldValue?: unknown;
200
+ fieldValue?: string | number | undefined;
201
201
  showValue?: string | number | undefined;
202
202
  joiner?: string | number | undefined;
203
203
  dictTable?: string | number | undefined;
@@ -2692,7 +2692,6 @@ declare const _sfc_main: DefineComponent<{
2692
2692
  field: string;
2693
2693
  fieldType?: string | undefined;
2694
2694
  helpText?: string | undefined;
2695
- disabled?: boolean | undefined;
2696
2695
  required?: "0" | "1" | undefined;
2697
2696
  regex?: string | {
2698
2697
  exec: (string: string) => RegExpExecArray | null;
@@ -2717,7 +2716,6 @@ declare const _sfc_main: DefineComponent<{
2717
2716
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2718
2717
  } | undefined;
2719
2718
  alertMsg?: string | undefined;
2720
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2721
2719
  callback?: ((ctx: {
2722
2720
  attrs: {
2723
2721
  [x: string]: unknown;
@@ -2745,7 +2743,6 @@ declare const _sfc_main: DefineComponent<{
2745
2743
  fieldLabel: string;
2746
2744
  fieldName: string;
2747
2745
  helpText?: string | undefined;
2748
- disabled?: boolean | undefined;
2749
2746
  required?: "0" | "1" | undefined;
2750
2747
  regex?: {
2751
2748
  exec: (string: string) => RegExpExecArray | null;
@@ -2770,7 +2767,6 @@ declare const _sfc_main: DefineComponent<{
2770
2767
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2771
2768
  } | undefined;
2772
2769
  alertMsg?: string | undefined;
2773
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2774
2770
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2775
2771
  }[] | undefined;
2776
2772
  }[] | undefined;
@@ -2781,7 +2777,6 @@ declare const _sfc_main: DefineComponent<{
2781
2777
  fieldLabel: string;
2782
2778
  fieldName: string;
2783
2779
  helpText?: string | undefined;
2784
- disabled?: boolean | undefined;
2785
2780
  required?: "0" | "1" | undefined;
2786
2781
  regex?: {
2787
2782
  exec: (string: string) => RegExpExecArray | null;
@@ -2806,7 +2801,6 @@ declare const _sfc_main: DefineComponent<{
2806
2801
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2807
2802
  } | undefined;
2808
2803
  alertMsg?: string | undefined;
2809
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2810
2804
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2811
2805
  }[] | undefined;
2812
2806
  itemColumns?: {
@@ -2817,7 +2811,6 @@ declare const _sfc_main: DefineComponent<{
2817
2811
  field: string;
2818
2812
  fieldType?: string | undefined;
2819
2813
  helpText?: string | undefined;
2820
- disabled?: boolean | undefined;
2821
2814
  required?: "0" | "1" | undefined;
2822
2815
  regex?: string | {
2823
2816
  exec: (string: string) => RegExpExecArray | null;
@@ -2842,7 +2835,6 @@ declare const _sfc_main: DefineComponent<{
2842
2835
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2843
2836
  } | undefined;
2844
2837
  alertMsg?: string | undefined;
2845
- options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2846
2838
  callback?: ((ctx: {
2847
2839
  attrs: {
2848
2840
  [x: string]: unknown;