@qqt-product/system 16.0.0 → 16.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2691,6 +2691,7 @@ declare const _sfc_main: DefineComponent<{
2691
2691
  field: string;
2692
2692
  fieldType?: string | undefined;
2693
2693
  helpText?: string | undefined;
2694
+ disabled?: boolean | undefined;
2694
2695
  required?: "0" | "1" | undefined;
2695
2696
  regex?: string | {
2696
2697
  exec: (string: string) => RegExpExecArray | null;
@@ -2715,6 +2716,7 @@ declare const _sfc_main: DefineComponent<{
2715
2716
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2716
2717
  } | undefined;
2717
2718
  alertMsg?: string | undefined;
2719
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2718
2720
  callback?: ((ctx: {
2719
2721
  attrs: {
2720
2722
  [x: string]: unknown;
@@ -2742,6 +2744,7 @@ declare const _sfc_main: DefineComponent<{
2742
2744
  fieldLabel: string;
2743
2745
  fieldName: string;
2744
2746
  helpText?: string | undefined;
2747
+ disabled?: boolean | undefined;
2745
2748
  required?: "0" | "1" | undefined;
2746
2749
  regex?: {
2747
2750
  exec: (string: string) => RegExpExecArray | null;
@@ -2766,6 +2769,7 @@ declare const _sfc_main: DefineComponent<{
2766
2769
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2767
2770
  } | undefined;
2768
2771
  alertMsg?: string | undefined;
2772
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2769
2773
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2770
2774
  }[] | undefined;
2771
2775
  }[] | undefined;
@@ -2776,6 +2780,7 @@ declare const _sfc_main: DefineComponent<{
2776
2780
  fieldLabel: string;
2777
2781
  fieldName: string;
2778
2782
  helpText?: string | undefined;
2783
+ disabled?: boolean | undefined;
2779
2784
  required?: "0" | "1" | undefined;
2780
2785
  regex?: {
2781
2786
  exec: (string: string) => RegExpExecArray | null;
@@ -2800,6 +2805,7 @@ declare const _sfc_main: DefineComponent<{
2800
2805
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2801
2806
  } | undefined;
2802
2807
  alertMsg?: string | undefined;
2808
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2803
2809
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2804
2810
  }[] | undefined;
2805
2811
  itemColumns?: {
@@ -2810,6 +2816,7 @@ declare const _sfc_main: DefineComponent<{
2810
2816
  field: string;
2811
2817
  fieldType?: string | undefined;
2812
2818
  helpText?: string | undefined;
2819
+ disabled?: boolean | undefined;
2813
2820
  required?: "0" | "1" | undefined;
2814
2821
  regex?: string | {
2815
2822
  exec: (string: string) => RegExpExecArray | null;
@@ -2834,6 +2841,7 @@ declare const _sfc_main: DefineComponent<{
2834
2841
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2835
2842
  } | undefined;
2836
2843
  alertMsg?: string | undefined;
2844
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2837
2845
  callback?: ((ctx: {
2838
2846
  attrs: {
2839
2847
  [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, ShallowRef, Ref, ComponentOptionsBase, VNode, RendererNode, RendererElement, Slot, ComponentInternalInstance, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComponentPublicInstance } from 'vue';
3
+ import type { DefineComponent, 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,11 +19,9 @@ declare const _sfc_main: DefineComponent<{
19
19
  }, {
20
20
  props: any;
21
21
  qHttp: customConfigEdits.HttpClient;
22
- showEdit: ShallowRef<boolean>;
22
+ showEdit: Ref<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[]>;
27
25
  selectModal: Ref<any>;
28
26
  handleItemListAdd: Ref<((btn: GlobalPageLayoutTypes.PageButtonWithGroupCode) => void) | null>;
29
27
  ok: Ref<((data: GlobalPageLayoutTypes.RecordString[]) => void) | null>;
@@ -2698,6 +2696,7 @@ declare const _sfc_main: DefineComponent<{
2698
2696
  field: string;
2699
2697
  fieldType?: string | undefined;
2700
2698
  helpText?: string | undefined;
2699
+ disabled?: boolean | undefined;
2701
2700
  required?: "0" | "1" | undefined;
2702
2701
  regex?: string | {
2703
2702
  exec: (string: string) => RegExpExecArray | null;
@@ -2722,6 +2721,7 @@ declare const _sfc_main: DefineComponent<{
2722
2721
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2723
2722
  } | undefined;
2724
2723
  alertMsg?: string | undefined;
2724
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2725
2725
  callback?: ((ctx: {
2726
2726
  attrs: {
2727
2727
  [x: string]: unknown;
@@ -2749,6 +2749,7 @@ declare const _sfc_main: DefineComponent<{
2749
2749
  fieldLabel: string;
2750
2750
  fieldName: string;
2751
2751
  helpText?: string | undefined;
2752
+ disabled?: boolean | undefined;
2752
2753
  required?: "0" | "1" | undefined;
2753
2754
  regex?: {
2754
2755
  exec: (string: string) => RegExpExecArray | null;
@@ -2773,6 +2774,7 @@ declare const _sfc_main: DefineComponent<{
2773
2774
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2774
2775
  } | undefined;
2775
2776
  alertMsg?: string | undefined;
2777
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2776
2778
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2777
2779
  }[] | undefined;
2778
2780
  }[] | undefined;
@@ -2783,6 +2785,7 @@ declare const _sfc_main: DefineComponent<{
2783
2785
  fieldLabel: string;
2784
2786
  fieldName: string;
2785
2787
  helpText?: string | undefined;
2788
+ disabled?: boolean | undefined;
2786
2789
  required?: "0" | "1" | undefined;
2787
2790
  regex?: {
2788
2791
  exec: (string: string) => RegExpExecArray | null;
@@ -2807,6 +2810,7 @@ declare const _sfc_main: DefineComponent<{
2807
2810
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2808
2811
  } | undefined;
2809
2812
  alertMsg?: string | undefined;
2813
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2810
2814
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2811
2815
  }[] | undefined;
2812
2816
  itemColumns?: {
@@ -2817,6 +2821,7 @@ declare const _sfc_main: DefineComponent<{
2817
2821
  field: string;
2818
2822
  fieldType?: string | undefined;
2819
2823
  helpText?: string | undefined;
2824
+ disabled?: boolean | undefined;
2820
2825
  required?: "0" | "1" | undefined;
2821
2826
  regex?: string | {
2822
2827
  exec: (string: string) => RegExpExecArray | null;
@@ -2841,6 +2846,7 @@ declare const _sfc_main: DefineComponent<{
2841
2846
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2842
2847
  } | undefined;
2843
2848
  alertMsg?: string | undefined;
2849
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2844
2850
  callback?: ((ctx: {
2845
2851
  attrs: {
2846
2852
  [x: string]: unknown;
@@ -2913,8 +2919,8 @@ declare const _sfc_main: DefineComponent<{
2913
2919
  customLoading: Readonly<Ref<boolean>>;
2914
2920
  handleCustomSave: () => void;
2915
2921
  handleValidateSuccess: (button: GlobalPageLayoutTypes.PageButton) => void;
2916
- getRoleOptains: () => Promise<void>;
2917
- getGroupOptains: () => Promise<void>;
2922
+ getRole: Promise<customConfigEdits.ResponseData>;
2923
+ getGroup: Promise<customConfigEdits.ResponseData>;
2918
2924
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
2919
2925
  currentRow: {
2920
2926
  type: ObjectConstructor;
@@ -2688,6 +2688,7 @@ declare const _sfc_main: DefineComponent<{
2688
2688
  field: string;
2689
2689
  fieldType?: string | undefined;
2690
2690
  helpText?: string | undefined;
2691
+ disabled?: boolean | undefined;
2691
2692
  required?: "0" | "1" | undefined;
2692
2693
  regex?: string | {
2693
2694
  exec: (string: string) => RegExpExecArray | null;
@@ -2712,6 +2713,7 @@ declare const _sfc_main: DefineComponent<{
2712
2713
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2713
2714
  } | undefined;
2714
2715
  alertMsg?: string | undefined;
2716
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2715
2717
  callback?: ((ctx: {
2716
2718
  attrs: {
2717
2719
  [x: string]: unknown;
@@ -2739,6 +2741,7 @@ declare const _sfc_main: DefineComponent<{
2739
2741
  fieldLabel: string;
2740
2742
  fieldName: string;
2741
2743
  helpText?: string | undefined;
2744
+ disabled?: boolean | undefined;
2742
2745
  required?: "0" | "1" | undefined;
2743
2746
  regex?: {
2744
2747
  exec: (string: string) => RegExpExecArray | null;
@@ -2763,6 +2766,7 @@ declare const _sfc_main: DefineComponent<{
2763
2766
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2764
2767
  } | undefined;
2765
2768
  alertMsg?: string | undefined;
2769
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2766
2770
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2767
2771
  }[] | undefined;
2768
2772
  }[] | undefined;
@@ -2773,6 +2777,7 @@ declare const _sfc_main: DefineComponent<{
2773
2777
  fieldLabel: string;
2774
2778
  fieldName: string;
2775
2779
  helpText?: string | undefined;
2780
+ disabled?: boolean | undefined;
2776
2781
  required?: "0" | "1" | undefined;
2777
2782
  regex?: {
2778
2783
  exec: (string: string) => RegExpExecArray | null;
@@ -2797,6 +2802,7 @@ declare const _sfc_main: DefineComponent<{
2797
2802
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2798
2803
  } | undefined;
2799
2804
  alertMsg?: string | undefined;
2805
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2800
2806
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2801
2807
  }[] | undefined;
2802
2808
  itemColumns?: {
@@ -2807,6 +2813,7 @@ declare const _sfc_main: DefineComponent<{
2807
2813
  field: string;
2808
2814
  fieldType?: string | undefined;
2809
2815
  helpText?: string | undefined;
2816
+ disabled?: boolean | undefined;
2810
2817
  required?: "0" | "1" | undefined;
2811
2818
  regex?: string | {
2812
2819
  exec: (string: string) => RegExpExecArray | null;
@@ -2831,6 +2838,7 @@ declare const _sfc_main: DefineComponent<{
2831
2838
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2832
2839
  } | undefined;
2833
2840
  alertMsg?: string | undefined;
2841
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2834
2842
  callback?: ((ctx: {
2835
2843
  attrs: {
2836
2844
  [x: string]: unknown;
@@ -2688,6 +2688,7 @@ declare const _sfc_main: DefineComponent<{
2688
2688
  field: string;
2689
2689
  fieldType?: string | undefined;
2690
2690
  helpText?: string | undefined;
2691
+ disabled?: boolean | undefined;
2691
2692
  required?: "0" | "1" | undefined;
2692
2693
  regex?: string | {
2693
2694
  exec: (string: string) => RegExpExecArray | null;
@@ -2712,6 +2713,7 @@ declare const _sfc_main: DefineComponent<{
2712
2713
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2713
2714
  } | undefined;
2714
2715
  alertMsg?: string | undefined;
2716
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2715
2717
  callback?: ((ctx: {
2716
2718
  attrs: {
2717
2719
  [x: string]: unknown;
@@ -2739,6 +2741,7 @@ declare const _sfc_main: DefineComponent<{
2739
2741
  fieldLabel: string;
2740
2742
  fieldName: string;
2741
2743
  helpText?: string | undefined;
2744
+ disabled?: boolean | undefined;
2742
2745
  required?: "0" | "1" | undefined;
2743
2746
  regex?: {
2744
2747
  exec: (string: string) => RegExpExecArray | null;
@@ -2763,6 +2766,7 @@ declare const _sfc_main: DefineComponent<{
2763
2766
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2764
2767
  } | undefined;
2765
2768
  alertMsg?: string | undefined;
2769
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2766
2770
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2767
2771
  }[] | undefined;
2768
2772
  }[] | undefined;
@@ -2773,6 +2777,7 @@ declare const _sfc_main: DefineComponent<{
2773
2777
  fieldLabel: string;
2774
2778
  fieldName: string;
2775
2779
  helpText?: string | undefined;
2780
+ disabled?: boolean | undefined;
2776
2781
  required?: "0" | "1" | undefined;
2777
2782
  regex?: {
2778
2783
  exec: (string: string) => RegExpExecArray | null;
@@ -2797,6 +2802,7 @@ declare const _sfc_main: DefineComponent<{
2797
2802
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2798
2803
  } | undefined;
2799
2804
  alertMsg?: string | undefined;
2805
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2800
2806
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2801
2807
  }[] | undefined;
2802
2808
  itemColumns?: {
@@ -2807,6 +2813,7 @@ declare const _sfc_main: DefineComponent<{
2807
2813
  field: string;
2808
2814
  fieldType?: string | undefined;
2809
2815
  helpText?: string | undefined;
2816
+ disabled?: boolean | undefined;
2810
2817
  required?: "0" | "1" | undefined;
2811
2818
  regex?: string | {
2812
2819
  exec: (string: string) => RegExpExecArray | null;
@@ -2831,6 +2838,7 @@ declare const _sfc_main: DefineComponent<{
2831
2838
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2832
2839
  } | undefined;
2833
2840
  alertMsg?: string | undefined;
2841
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2834
2842
  callback?: ((ctx: {
2835
2843
  attrs: {
2836
2844
  [x: string]: unknown;
@@ -2694,6 +2694,7 @@ declare const _sfc_main: DefineComponent<{
2694
2694
  field: string;
2695
2695
  fieldType?: string | undefined;
2696
2696
  helpText?: string | undefined;
2697
+ disabled?: boolean | undefined;
2697
2698
  required?: "0" | "1" | undefined;
2698
2699
  regex?: string | {
2699
2700
  exec: (string: string) => RegExpExecArray | null;
@@ -2718,6 +2719,7 @@ declare const _sfc_main: DefineComponent<{
2718
2719
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2719
2720
  } | undefined;
2720
2721
  alertMsg?: string | undefined;
2722
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2721
2723
  callback?: ((ctx: {
2722
2724
  attrs: {
2723
2725
  [x: string]: unknown;
@@ -2745,6 +2747,7 @@ declare const _sfc_main: DefineComponent<{
2745
2747
  fieldLabel: string;
2746
2748
  fieldName: string;
2747
2749
  helpText?: string | undefined;
2750
+ disabled?: boolean | undefined;
2748
2751
  required?: "0" | "1" | undefined;
2749
2752
  regex?: {
2750
2753
  exec: (string: string) => RegExpExecArray | null;
@@ -2769,6 +2772,7 @@ declare const _sfc_main: DefineComponent<{
2769
2772
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2770
2773
  } | undefined;
2771
2774
  alertMsg?: string | undefined;
2775
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2772
2776
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2773
2777
  }[] | undefined;
2774
2778
  }[] | undefined;
@@ -2779,6 +2783,7 @@ declare const _sfc_main: DefineComponent<{
2779
2783
  fieldLabel: string;
2780
2784
  fieldName: string;
2781
2785
  helpText?: string | undefined;
2786
+ disabled?: boolean | undefined;
2782
2787
  required?: "0" | "1" | undefined;
2783
2788
  regex?: {
2784
2789
  exec: (string: string) => RegExpExecArray | null;
@@ -2803,6 +2808,7 @@ declare const _sfc_main: DefineComponent<{
2803
2808
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2804
2809
  } | undefined;
2805
2810
  alertMsg?: string | undefined;
2811
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2806
2812
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2807
2813
  }[] | undefined;
2808
2814
  itemColumns?: {
@@ -2813,6 +2819,7 @@ declare const _sfc_main: DefineComponent<{
2813
2819
  field: string;
2814
2820
  fieldType?: string | undefined;
2815
2821
  helpText?: string | undefined;
2822
+ disabled?: boolean | undefined;
2816
2823
  required?: "0" | "1" | undefined;
2817
2824
  regex?: string | {
2818
2825
  exec: (string: string) => RegExpExecArray | null;
@@ -2837,6 +2844,7 @@ declare const _sfc_main: DefineComponent<{
2837
2844
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2838
2845
  } | undefined;
2839
2846
  alertMsg?: string | undefined;
2847
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2840
2848
  callback?: ((ctx: {
2841
2849
  attrs: {
2842
2850
  [x: string]: unknown;
@@ -2690,6 +2690,7 @@ declare const _sfc_main: DefineComponent<{
2690
2690
  field: string;
2691
2691
  fieldType?: string | undefined;
2692
2692
  helpText?: string | undefined;
2693
+ disabled?: boolean | undefined;
2693
2694
  required?: "0" | "1" | undefined;
2694
2695
  regex?: string | {
2695
2696
  exec: (string: string) => RegExpExecArray | null;
@@ -2714,6 +2715,7 @@ declare const _sfc_main: DefineComponent<{
2714
2715
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2715
2716
  } | undefined;
2716
2717
  alertMsg?: string | undefined;
2718
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2717
2719
  callback?: ((ctx: {
2718
2720
  attrs: {
2719
2721
  [x: string]: unknown;
@@ -2741,6 +2743,7 @@ declare const _sfc_main: DefineComponent<{
2741
2743
  fieldLabel: string;
2742
2744
  fieldName: string;
2743
2745
  helpText?: string | undefined;
2746
+ disabled?: boolean | undefined;
2744
2747
  required?: "0" | "1" | undefined;
2745
2748
  regex?: {
2746
2749
  exec: (string: string) => RegExpExecArray | null;
@@ -2765,6 +2768,7 @@ declare const _sfc_main: DefineComponent<{
2765
2768
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2766
2769
  } | undefined;
2767
2770
  alertMsg?: string | undefined;
2771
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2768
2772
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2769
2773
  }[] | undefined;
2770
2774
  }[] | undefined;
@@ -2775,6 +2779,7 @@ declare const _sfc_main: DefineComponent<{
2775
2779
  fieldLabel: string;
2776
2780
  fieldName: string;
2777
2781
  helpText?: string | undefined;
2782
+ disabled?: boolean | undefined;
2778
2783
  required?: "0" | "1" | undefined;
2779
2784
  regex?: {
2780
2785
  exec: (string: string) => RegExpExecArray | null;
@@ -2799,6 +2804,7 @@ declare const _sfc_main: DefineComponent<{
2799
2804
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2800
2805
  } | undefined;
2801
2806
  alertMsg?: string | undefined;
2807
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2802
2808
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2803
2809
  }[] | undefined;
2804
2810
  itemColumns?: {
@@ -2809,6 +2815,7 @@ declare const _sfc_main: DefineComponent<{
2809
2815
  field: string;
2810
2816
  fieldType?: string | undefined;
2811
2817
  helpText?: string | undefined;
2818
+ disabled?: boolean | undefined;
2812
2819
  required?: "0" | "1" | undefined;
2813
2820
  regex?: string | {
2814
2821
  exec: (string: string) => RegExpExecArray | null;
@@ -2833,6 +2840,7 @@ declare const _sfc_main: DefineComponent<{
2833
2840
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2834
2841
  } | undefined;
2835
2842
  alertMsg?: string | undefined;
2843
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2836
2844
  callback?: ((ctx: {
2837
2845
  attrs: {
2838
2846
  [x: string]: unknown;
@@ -2688,6 +2688,7 @@ declare const _sfc_main: DefineComponent<{
2688
2688
  field: string;
2689
2689
  fieldType?: string | undefined;
2690
2690
  helpText?: string | undefined;
2691
+ disabled?: boolean | undefined;
2691
2692
  required?: "0" | "1" | undefined;
2692
2693
  regex?: string | {
2693
2694
  exec: (string: string) => RegExpExecArray | null;
@@ -2712,6 +2713,7 @@ declare const _sfc_main: DefineComponent<{
2712
2713
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2713
2714
  } | undefined;
2714
2715
  alertMsg?: string | undefined;
2716
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2715
2717
  callback?: ((ctx: {
2716
2718
  attrs: {
2717
2719
  [x: string]: unknown;
@@ -2739,6 +2741,7 @@ declare const _sfc_main: DefineComponent<{
2739
2741
  fieldLabel: string;
2740
2742
  fieldName: string;
2741
2743
  helpText?: string | undefined;
2744
+ disabled?: boolean | undefined;
2742
2745
  required?: "0" | "1" | undefined;
2743
2746
  regex?: {
2744
2747
  exec: (string: string) => RegExpExecArray | null;
@@ -2763,6 +2766,7 @@ declare const _sfc_main: DefineComponent<{
2763
2766
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2764
2767
  } | undefined;
2765
2768
  alertMsg?: string | undefined;
2769
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2766
2770
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2767
2771
  }[] | undefined;
2768
2772
  }[] | undefined;
@@ -2773,6 +2777,7 @@ declare const _sfc_main: DefineComponent<{
2773
2777
  fieldLabel: string;
2774
2778
  fieldName: string;
2775
2779
  helpText?: string | undefined;
2780
+ disabled?: boolean | undefined;
2776
2781
  required?: "0" | "1" | undefined;
2777
2782
  regex?: {
2778
2783
  exec: (string: string) => RegExpExecArray | null;
@@ -2797,6 +2802,7 @@ declare const _sfc_main: DefineComponent<{
2797
2802
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2798
2803
  } | undefined;
2799
2804
  alertMsg?: string | undefined;
2805
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2800
2806
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2801
2807
  }[] | undefined;
2802
2808
  itemColumns?: {
@@ -2807,6 +2813,7 @@ declare const _sfc_main: DefineComponent<{
2807
2813
  field: string;
2808
2814
  fieldType?: string | undefined;
2809
2815
  helpText?: string | undefined;
2816
+ disabled?: boolean | undefined;
2810
2817
  required?: "0" | "1" | undefined;
2811
2818
  regex?: string | {
2812
2819
  exec: (string: string) => RegExpExecArray | null;
@@ -2831,6 +2838,7 @@ declare const _sfc_main: DefineComponent<{
2831
2838
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2832
2839
  } | undefined;
2833
2840
  alertMsg?: string | undefined;
2841
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2834
2842
  callback?: ((ctx: {
2835
2843
  attrs: {
2836
2844
  [x: string]: unknown;
@@ -2694,6 +2694,7 @@ declare const _sfc_main: DefineComponent<{
2694
2694
  field: string;
2695
2695
  fieldType?: string | undefined;
2696
2696
  helpText?: string | undefined;
2697
+ disabled?: boolean | undefined;
2697
2698
  required?: "0" | "1" | undefined;
2698
2699
  regex?: string | {
2699
2700
  exec: (string: string) => RegExpExecArray | null;
@@ -2718,6 +2719,7 @@ declare const _sfc_main: DefineComponent<{
2718
2719
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2719
2720
  } | undefined;
2720
2721
  alertMsg?: string | undefined;
2722
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2721
2723
  callback?: ((ctx: {
2722
2724
  attrs: {
2723
2725
  [x: string]: unknown;
@@ -2745,6 +2747,7 @@ declare const _sfc_main: DefineComponent<{
2745
2747
  fieldLabel: string;
2746
2748
  fieldName: string;
2747
2749
  helpText?: string | undefined;
2750
+ disabled?: boolean | undefined;
2748
2751
  required?: "0" | "1" | undefined;
2749
2752
  regex?: {
2750
2753
  exec: (string: string) => RegExpExecArray | null;
@@ -2769,6 +2772,7 @@ declare const _sfc_main: DefineComponent<{
2769
2772
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2770
2773
  } | undefined;
2771
2774
  alertMsg?: string | undefined;
2775
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2772
2776
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2773
2777
  }[] | undefined;
2774
2778
  }[] | undefined;
@@ -2779,6 +2783,7 @@ declare const _sfc_main: DefineComponent<{
2779
2783
  fieldLabel: string;
2780
2784
  fieldName: string;
2781
2785
  helpText?: string | undefined;
2786
+ disabled?: boolean | undefined;
2782
2787
  required?: "0" | "1" | undefined;
2783
2788
  regex?: {
2784
2789
  exec: (string: string) => RegExpExecArray | null;
@@ -2803,6 +2808,7 @@ declare const _sfc_main: DefineComponent<{
2803
2808
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2804
2809
  } | undefined;
2805
2810
  alertMsg?: string | undefined;
2811
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2806
2812
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2807
2813
  }[] | undefined;
2808
2814
  itemColumns?: {
@@ -2813,6 +2819,7 @@ declare const _sfc_main: DefineComponent<{
2813
2819
  field: string;
2814
2820
  fieldType?: string | undefined;
2815
2821
  helpText?: string | undefined;
2822
+ disabled?: boolean | undefined;
2816
2823
  required?: "0" | "1" | undefined;
2817
2824
  regex?: string | {
2818
2825
  exec: (string: string) => RegExpExecArray | null;
@@ -2837,6 +2844,7 @@ declare const _sfc_main: DefineComponent<{
2837
2844
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2838
2845
  } | undefined;
2839
2846
  alertMsg?: string | undefined;
2847
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2840
2848
  callback?: ((ctx: {
2841
2849
  attrs: {
2842
2850
  [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?: string | number | undefined;
200
+ fieldValue?: unknown;
201
201
  showValue?: string | number | undefined;
202
202
  joiner?: string | number | undefined;
203
203
  dictTable?: string | number | undefined;
@@ -2692,6 +2692,7 @@ declare const _sfc_main: DefineComponent<{
2692
2692
  field: string;
2693
2693
  fieldType?: string | undefined;
2694
2694
  helpText?: string | undefined;
2695
+ disabled?: boolean | undefined;
2695
2696
  required?: "0" | "1" | undefined;
2696
2697
  regex?: string | {
2697
2698
  exec: (string: string) => RegExpExecArray | null;
@@ -2716,6 +2717,7 @@ declare const _sfc_main: DefineComponent<{
2716
2717
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2717
2718
  } | undefined;
2718
2719
  alertMsg?: string | undefined;
2720
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2719
2721
  callback?: ((ctx: {
2720
2722
  attrs: {
2721
2723
  [x: string]: unknown;
@@ -2743,6 +2745,7 @@ declare const _sfc_main: DefineComponent<{
2743
2745
  fieldLabel: string;
2744
2746
  fieldName: string;
2745
2747
  helpText?: string | undefined;
2748
+ disabled?: boolean | undefined;
2746
2749
  required?: "0" | "1" | undefined;
2747
2750
  regex?: {
2748
2751
  exec: (string: string) => RegExpExecArray | null;
@@ -2767,6 +2770,7 @@ declare const _sfc_main: DefineComponent<{
2767
2770
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2768
2771
  } | undefined;
2769
2772
  alertMsg?: string | undefined;
2773
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2770
2774
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2771
2775
  }[] | undefined;
2772
2776
  }[] | undefined;
@@ -2777,6 +2781,7 @@ declare const _sfc_main: DefineComponent<{
2777
2781
  fieldLabel: string;
2778
2782
  fieldName: string;
2779
2783
  helpText?: string | undefined;
2784
+ disabled?: boolean | undefined;
2780
2785
  required?: "0" | "1" | undefined;
2781
2786
  regex?: {
2782
2787
  exec: (string: string) => RegExpExecArray | null;
@@ -2801,6 +2806,7 @@ declare const _sfc_main: DefineComponent<{
2801
2806
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2802
2807
  } | undefined;
2803
2808
  alertMsg?: string | undefined;
2809
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2804
2810
  callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2805
2811
  }[] | undefined;
2806
2812
  itemColumns?: {
@@ -2811,6 +2817,7 @@ declare const _sfc_main: DefineComponent<{
2811
2817
  field: string;
2812
2818
  fieldType?: string | undefined;
2813
2819
  helpText?: string | undefined;
2820
+ disabled?: boolean | undefined;
2814
2821
  required?: "0" | "1" | undefined;
2815
2822
  regex?: string | {
2816
2823
  exec: (string: string) => RegExpExecArray | null;
@@ -2835,6 +2842,7 @@ declare const _sfc_main: DefineComponent<{
2835
2842
  [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2836
2843
  } | undefined;
2837
2844
  alertMsg?: string | undefined;
2845
+ options?: GlobalPageLayoutTypes.RecordString[] | undefined;
2838
2846
  callback?: ((ctx: {
2839
2847
  attrs: {
2840
2848
  [x: string]: unknown;