cnhis-design-vue 3.1.15-beta.9 → 3.1.16-beta.0

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 (38) hide show
  1. package/es/packages/big-table/src/hooks/useAnnotation.js +1 -2
  2. package/es/packages/big-table/src/hooks/useColumnConfigAdaptor.js +7 -2
  3. package/es/packages/big-table/src/hooks/useEdit.js +16 -8
  4. package/es/packages/fabric-chart/src/hooks/useDraw.js +1 -0
  5. package/es/packages/fabric-chart/src/hooks/useLeft.js +1 -2
  6. package/es/packages/form-config/index.d.ts +1749 -0
  7. package/es/packages/form-config/src/FormConfig.vue.d.ts +1749 -0
  8. package/es/packages/form-config/src/components/FormConfigEdit.js +3 -3
  9. package/es/packages/form-config/src/components/FormConfigEdit.vue.d.ts +1747 -0
  10. package/es/packages/form-config/style/index.css +1 -1
  11. package/es/packages/form-render/src/components/renderer/combination/index.js +3 -3
  12. package/es/packages/form-render/src/components/renderer/formItem.js +1 -2
  13. package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +2 -2
  14. package/es/packages/form-render/src/types/fieldItem.d.ts +8 -0
  15. package/es/packages/form-render/src/utils/index.d.ts +1 -0
  16. package/es/packages/form-render/src/utils/index.js +9 -2
  17. package/es/packages/form-table/src/hooks/useNuiThemeOverrides.js +1 -1
  18. package/es/packages/index.css +1 -1
  19. package/es/packages/index.d.ts +1 -0
  20. package/es/packages/index.js +1 -1
  21. package/es/packages/shortcut-provider/index.d.ts +17 -2
  22. package/es/packages/shortcut-provider/index.js +1 -1
  23. package/es/packages/shortcut-provider/src/ShortcutProvider.js +5 -1
  24. package/es/packages/shortcut-provider/src/ShortcutProvider.vue.d.ts +17 -2
  25. package/es/packages/shortcut-provider/src/hooks/index.js +1 -1
  26. package/es/packages/shortcut-provider/src/hooks/useShortcuts.d.ts +10 -10
  27. package/es/packages/shortcut-provider/src/hooks/useShortcuts.js +45 -38
  28. package/es/packages/shortcut-provider/src/types/index.d.ts +2 -19
  29. package/es/packages/shortcut-setter/index.d.ts +2 -6040
  30. package/es/packages/shortcut-setter/src/ShortcutSetter.js +60 -10
  31. package/es/packages/shortcut-setter/src/ShortcutSetter.vue.d.ts +1 -6041
  32. package/es/packages/shortcut-setter/src/ShortcutSetterItem.js +26 -95
  33. package/es/packages/shortcut-setter/src/ShortcutSetterItem.vue.d.ts +30 -3363
  34. package/es/packages/shortcut-setter/src/types/index.d.ts +6 -0
  35. package/es/packages/shortcut-setter/src/types/index.js +1 -0
  36. package/package.json +1 -1
  37. package/es/packages/shortcut-setter/constant/index.d.ts +0 -4
  38. package/es/packages/shortcut-setter/constant/index.js +0 -7
@@ -1,4 +1,6 @@
1
+ /// <reference types="lodash" />
1
2
  import { AnyObject } from '../../../../../es/src/types';
3
+ import { nextTick } from 'vue';
2
4
  import { FieldItem, FormChangePayload, FormRenderExpose } from '../../../../../es/packages/form-render';
3
5
  declare const _default: import("vue").DefineComponent<{}, {
4
6
  key: import("vue").Ref<number>;
@@ -58,6 +60,8 @@ declare const _default: import("vue").DefineComponent<{}, {
58
60
  value: any;
59
61
  children?: any[] | undefined;
60
62
  }[] | undefined;
63
+ multi_select?: import("../../../../../es/packages/form-render").FormCommonState | undefined;
64
+ multi_select_value?: string | number | undefined;
61
65
  wordbook?: {
62
66
  level_num: number;
63
67
  } | undefined;
@@ -3585,5 +3589,1748 @@ declare const _default: import("vue").DefineComponent<{}, {
3585
3589
  maskClosable: boolean;
3586
3590
  closeOnEsc: boolean;
3587
3591
  }>;
3592
+ CFormRender: import("../../../../../es/src/types").SFCWithInstall<import("vue").DefineComponent<{
3593
+ fieldList: {
3594
+ type: import("vue").PropType<FieldItem[]>;
3595
+ };
3596
+ initialData: {
3597
+ type: import("vue").PropType<AnyObject>;
3598
+ default: () => {};
3599
+ };
3600
+ fieldVisitor: {
3601
+ type: import("vue").PropType<import("../../../../../es/packages/form-render").FieldVisitor>;
3602
+ };
3603
+ column: {
3604
+ type: NumberConstructor;
3605
+ default: number;
3606
+ };
3607
+ maxHeight: {
3608
+ type: (NumberConstructor | StringConstructor)[];
3609
+ default: string;
3610
+ };
3611
+ anchor: {
3612
+ type: BooleanConstructor;
3613
+ default: boolean;
3614
+ };
3615
+ parallelism: {
3616
+ type: NumberConstructor;
3617
+ default: number;
3618
+ };
3619
+ schema: {
3620
+ type: import("vue").PropType<import("@formily/json-schema").Stringify<{
3621
+ [key: symbol]: any;
3622
+ [key: `x-${string}`]: any;
3623
+ [key: `x-${number}`]: any;
3624
+ version?: string | undefined;
3625
+ name?: import("@formily/json-schema").SchemaKey | undefined;
3626
+ title?: any;
3627
+ description?: any;
3628
+ default?: any;
3629
+ readOnly?: boolean | undefined;
3630
+ writeOnly?: boolean | undefined;
3631
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
3632
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
3633
+ const?: any;
3634
+ multipleOf?: number | undefined;
3635
+ maximum?: number | undefined;
3636
+ exclusiveMaximum?: number | undefined;
3637
+ minimum?: number | undefined;
3638
+ exclusiveMinimum?: number | undefined;
3639
+ maxLength?: number | undefined;
3640
+ minLength?: number | undefined;
3641
+ pattern?: string | RegExp | undefined;
3642
+ maxItems?: number | undefined;
3643
+ minItems?: number | undefined;
3644
+ uniqueItems?: boolean | undefined;
3645
+ maxProperties?: number | undefined;
3646
+ minProperties?: number | undefined;
3647
+ required?: string | boolean | string[] | undefined;
3648
+ format?: string | undefined;
3649
+ $ref?: string | undefined;
3650
+ $namespace?: string | undefined;
3651
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3652
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3653
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
3654
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
3655
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3656
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
3657
+ "x-value"?: any;
3658
+ "x-index"?: number | undefined;
3659
+ "x-pattern"?: any;
3660
+ "x-display"?: any;
3661
+ "x-validator"?: any;
3662
+ "x-decorator"?: any;
3663
+ "x-decorator-props"?: any;
3664
+ "x-component"?: any;
3665
+ "x-component-props"?: any;
3666
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
3667
+ "x-content"?: any;
3668
+ "x-data"?: any;
3669
+ "x-visible"?: boolean | undefined;
3670
+ "x-hidden"?: boolean | undefined;
3671
+ "x-disabled"?: boolean | undefined;
3672
+ "x-editable"?: boolean | undefined;
3673
+ "x-read-only"?: boolean | undefined;
3674
+ "x-read-pretty"?: boolean | undefined;
3675
+ "x-compile-omitted"?: string[] | undefined;
3676
+ }>>;
3677
+ };
3678
+ components: {
3679
+ type: import("vue").PropType<Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
3680
+ default: () => {};
3681
+ };
3682
+ businessFilter: {
3683
+ type: import("vue").PropType<import("../../../../../es/packages/form-render").FormBusinessFilter>;
3684
+ };
3685
+ scope: {
3686
+ type: import("vue").PropType<AnyObject>;
3687
+ default: () => {};
3688
+ };
3689
+ annotation: {
3690
+ type: import("vue").PropType<AnyObject>;
3691
+ };
3692
+ consumer: {
3693
+ type: BooleanConstructor;
3694
+ default: boolean;
3695
+ };
3696
+ uuid: {
3697
+ type: StringConstructor;
3698
+ };
3699
+ lifeCycle: {
3700
+ type: import("vue").PropType<Partial<{
3701
+ onSetup(): void;
3702
+ beforeRequest(fieldKey: string, params?: AnyObject | undefined): void | import("../../../../../es/src/types").WithUndefined<AnyObject>;
3703
+ afterRequest(fieldKey: string, payload?: any): AnyObject[];
3704
+ }>>;
3705
+ };
3706
+ }, {
3707
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
3708
+ fieldList: {
3709
+ type: import("vue").PropType<FieldItem[]>;
3710
+ };
3711
+ initialData: {
3712
+ type: import("vue").PropType<AnyObject>;
3713
+ default: () => {};
3714
+ };
3715
+ fieldVisitor: {
3716
+ type: import("vue").PropType<import("../../../../../es/packages/form-render").FieldVisitor>;
3717
+ };
3718
+ column: {
3719
+ type: NumberConstructor;
3720
+ default: number;
3721
+ };
3722
+ maxHeight: {
3723
+ type: (NumberConstructor | StringConstructor)[];
3724
+ default: string;
3725
+ };
3726
+ anchor: {
3727
+ type: BooleanConstructor;
3728
+ default: boolean;
3729
+ };
3730
+ parallelism: {
3731
+ type: NumberConstructor;
3732
+ default: number;
3733
+ };
3734
+ schema: {
3735
+ type: import("vue").PropType<import("@formily/json-schema").Stringify<{
3736
+ [key: symbol]: any;
3737
+ [key: `x-${string}`]: any;
3738
+ [key: `x-${number}`]: any;
3739
+ version?: string | undefined;
3740
+ name?: import("@formily/json-schema").SchemaKey | undefined;
3741
+ title?: any;
3742
+ description?: any;
3743
+ default?: any;
3744
+ readOnly?: boolean | undefined;
3745
+ writeOnly?: boolean | undefined;
3746
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
3747
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
3748
+ const?: any;
3749
+ multipleOf?: number | undefined;
3750
+ maximum?: number | undefined;
3751
+ exclusiveMaximum?: number | undefined;
3752
+ minimum?: number | undefined;
3753
+ exclusiveMinimum?: number | undefined;
3754
+ maxLength?: number | undefined;
3755
+ minLength?: number | undefined;
3756
+ pattern?: string | RegExp | undefined;
3757
+ maxItems?: number | undefined;
3758
+ minItems?: number | undefined;
3759
+ uniqueItems?: boolean | undefined;
3760
+ maxProperties?: number | undefined;
3761
+ minProperties?: number | undefined;
3762
+ required?: string | boolean | string[] | undefined;
3763
+ format?: string | undefined;
3764
+ $ref?: string | undefined;
3765
+ $namespace?: string | undefined;
3766
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3767
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3768
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
3769
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
3770
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3771
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
3772
+ "x-value"?: any;
3773
+ "x-index"?: number | undefined;
3774
+ "x-pattern"?: any;
3775
+ "x-display"?: any;
3776
+ "x-validator"?: any;
3777
+ "x-decorator"?: any;
3778
+ "x-decorator-props"?: any;
3779
+ "x-component"?: any;
3780
+ "x-component-props"?: any;
3781
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
3782
+ "x-content"?: any;
3783
+ "x-data"?: any;
3784
+ "x-visible"?: boolean | undefined;
3785
+ "x-hidden"?: boolean | undefined;
3786
+ "x-disabled"?: boolean | undefined;
3787
+ "x-editable"?: boolean | undefined;
3788
+ "x-read-only"?: boolean | undefined;
3789
+ "x-read-pretty"?: boolean | undefined;
3790
+ "x-compile-omitted"?: string[] | undefined;
3791
+ }>>;
3792
+ };
3793
+ components: {
3794
+ type: import("vue").PropType<Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
3795
+ default: () => {};
3796
+ };
3797
+ businessFilter: {
3798
+ type: import("vue").PropType<import("../../../../../es/packages/form-render").FormBusinessFilter>;
3799
+ };
3800
+ scope: {
3801
+ type: import("vue").PropType<AnyObject>;
3802
+ default: () => {};
3803
+ };
3804
+ annotation: {
3805
+ type: import("vue").PropType<AnyObject>;
3806
+ };
3807
+ consumer: {
3808
+ type: BooleanConstructor;
3809
+ default: boolean;
3810
+ };
3811
+ uuid: {
3812
+ type: StringConstructor;
3813
+ };
3814
+ lifeCycle: {
3815
+ type: import("vue").PropType<Partial<{
3816
+ onSetup(): void;
3817
+ beforeRequest(fieldKey: string, params?: AnyObject | undefined): void | import("../../../../../es/src/types").WithUndefined<AnyObject>;
3818
+ afterRequest(fieldKey: string, payload?: any): AnyObject[];
3819
+ }>>;
3820
+ };
3821
+ }>> & {
3822
+ onFormChange?: ((...args: any[]) => any) | undefined;
3823
+ }>>;
3824
+ emit: (event: "formChange", ...args: any[]) => void;
3825
+ nuiThemeOverrides: import("naive-ui").GlobalThemeOverrides;
3826
+ SchemaField: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
3827
+ businessCollector: import("../../../../../es/packages/form-render").BusinessCollector;
3828
+ formItemDepsCollector: import("../../../../../es/packages/form-render").FormItemDepsCollector;
3829
+ changeContextCollector: import("../../../../../es/packages/form-render").ContextCollector;
3830
+ formUUID: string;
3831
+ formModel: import("@formily/core").Form<{
3832
+ [x: string]: any;
3833
+ }>;
3834
+ scrollbarRef: import("vue").Ref<HTMLElement | undefined>;
3835
+ schemaAdaptor: (fieldList: FieldItem[]) => Record<string, import("@formily/json-schema").Stringify<{
3836
+ [key: symbol]: any;
3837
+ [key: `x-${string}`]: any;
3838
+ [key: `x-${number}`]: any;
3839
+ version?: string | undefined;
3840
+ name?: import("@formily/json-schema").SchemaKey | undefined;
3841
+ title?: any;
3842
+ description?: any;
3843
+ default?: any;
3844
+ readOnly?: boolean | undefined;
3845
+ writeOnly?: boolean | undefined;
3846
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
3847
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
3848
+ const?: any;
3849
+ multipleOf?: number | undefined;
3850
+ maximum?: number | undefined;
3851
+ exclusiveMaximum?: number | undefined;
3852
+ minimum?: number | undefined;
3853
+ exclusiveMinimum?: number | undefined;
3854
+ maxLength?: number | undefined;
3855
+ minLength?: number | undefined;
3856
+ pattern?: string | RegExp | undefined;
3857
+ maxItems?: number | undefined;
3858
+ minItems?: number | undefined;
3859
+ uniqueItems?: boolean | undefined;
3860
+ maxProperties?: number | undefined;
3861
+ minProperties?: number | undefined;
3862
+ required?: string | boolean | string[] | undefined;
3863
+ format?: string | undefined;
3864
+ $ref?: string | undefined;
3865
+ $namespace?: string | undefined;
3866
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3867
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3868
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
3869
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
3870
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3871
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
3872
+ "x-value"?: any;
3873
+ "x-index"?: number | undefined;
3874
+ "x-pattern"?: any;
3875
+ "x-display"?: any;
3876
+ "x-validator"?: any;
3877
+ "x-decorator"?: any;
3878
+ "x-decorator-props"?: any;
3879
+ "x-component"?: any;
3880
+ "x-component-props"?: any;
3881
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
3882
+ "x-content"?: any;
3883
+ "x-data"?: any;
3884
+ "x-visible"?: boolean | undefined;
3885
+ "x-hidden"?: boolean | undefined;
3886
+ "x-disabled"?: boolean | undefined;
3887
+ "x-editable"?: boolean | undefined;
3888
+ "x-read-only"?: boolean | undefined;
3889
+ "x-read-pretty"?: boolean | undefined;
3890
+ "x-compile-omitted"?: string[] | undefined;
3891
+ }>>;
3892
+ parsedSchema: import("vue").ComputedRef<import("@formily/json-schema").Stringify<{
3893
+ [key: symbol]: any;
3894
+ [key: `x-${string}`]: any;
3895
+ [key: `x-${number}`]: any;
3896
+ version?: string | undefined;
3897
+ name?: import("@formily/json-schema").SchemaKey | undefined;
3898
+ title?: any;
3899
+ description?: any;
3900
+ default?: any;
3901
+ readOnly?: boolean | undefined;
3902
+ writeOnly?: boolean | undefined;
3903
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
3904
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
3905
+ const?: any;
3906
+ multipleOf?: number | undefined;
3907
+ maximum?: number | undefined;
3908
+ exclusiveMaximum?: number | undefined;
3909
+ minimum?: number | undefined;
3910
+ exclusiveMinimum?: number | undefined;
3911
+ maxLength?: number | undefined;
3912
+ minLength?: number | undefined;
3913
+ pattern?: string | RegExp | undefined;
3914
+ maxItems?: number | undefined;
3915
+ minItems?: number | undefined;
3916
+ uniqueItems?: boolean | undefined;
3917
+ maxProperties?: number | undefined;
3918
+ minProperties?: number | undefined;
3919
+ required?: string | boolean | string[] | undefined;
3920
+ format?: string | undefined;
3921
+ $ref?: string | undefined;
3922
+ $namespace?: string | undefined;
3923
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3924
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3925
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
3926
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
3927
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3928
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
3929
+ "x-value"?: any;
3930
+ "x-index"?: number | undefined;
3931
+ "x-pattern"?: any;
3932
+ "x-display"?: any;
3933
+ "x-validator"?: any;
3934
+ "x-decorator"?: any;
3935
+ "x-decorator-props"?: any;
3936
+ "x-component"?: any;
3937
+ "x-component-props"?: any;
3938
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
3939
+ "x-content"?: any;
3940
+ "x-data"?: any;
3941
+ "x-visible"?: boolean | undefined;
3942
+ "x-hidden"?: boolean | undefined;
3943
+ "x-disabled"?: boolean | undefined;
3944
+ "x-editable"?: boolean | undefined;
3945
+ "x-read-only"?: boolean | undefined;
3946
+ "x-read-pretty"?: boolean | undefined;
3947
+ "x-compile-omitted"?: string[] | undefined;
3948
+ }>>;
3949
+ currentAnchor: import("vue").WritableComputedRef<string>;
3950
+ generateAnchorList: (schema: import("@formily/json-schema").Stringify<{
3951
+ [key: symbol]: any;
3952
+ [key: `x-${string}`]: any;
3953
+ [key: `x-${number}`]: any;
3954
+ version?: string | undefined;
3955
+ name?: import("@formily/json-schema").SchemaKey | undefined;
3956
+ title?: any;
3957
+ description?: any;
3958
+ default?: any;
3959
+ readOnly?: boolean | undefined;
3960
+ writeOnly?: boolean | undefined;
3961
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
3962
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
3963
+ const?: any;
3964
+ multipleOf?: number | undefined;
3965
+ maximum?: number | undefined;
3966
+ exclusiveMaximum?: number | undefined;
3967
+ minimum?: number | undefined;
3968
+ exclusiveMinimum?: number | undefined;
3969
+ maxLength?: number | undefined;
3970
+ minLength?: number | undefined;
3971
+ pattern?: string | RegExp | undefined;
3972
+ maxItems?: number | undefined;
3973
+ minItems?: number | undefined;
3974
+ uniqueItems?: boolean | undefined;
3975
+ maxProperties?: number | undefined;
3976
+ minProperties?: number | undefined;
3977
+ required?: string | boolean | string[] | undefined;
3978
+ format?: string | undefined;
3979
+ $ref?: string | undefined;
3980
+ $namespace?: string | undefined;
3981
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3982
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3983
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
3984
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
3985
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
3986
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
3987
+ "x-value"?: any;
3988
+ "x-index"?: number | undefined;
3989
+ "x-pattern"?: any;
3990
+ "x-display"?: any;
3991
+ "x-validator"?: any;
3992
+ "x-decorator"?: any;
3993
+ "x-decorator-props"?: any;
3994
+ "x-component"?: any;
3995
+ "x-component-props"?: any;
3996
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
3997
+ "x-content"?: any;
3998
+ "x-data"?: any;
3999
+ "x-visible"?: boolean | undefined;
4000
+ "x-hidden"?: boolean | undefined;
4001
+ "x-disabled"?: boolean | undefined;
4002
+ "x-editable"?: boolean | undefined;
4003
+ "x-read-only"?: boolean | undefined;
4004
+ "x-read-pretty"?: boolean | undefined;
4005
+ "x-compile-omitted"?: string[] | undefined;
4006
+ }>) => void;
4007
+ anchorIdList: import("vue").Ref<{
4008
+ name: string;
4009
+ title: string;
4010
+ }[]>;
4011
+ formHeight: import("vue").ComputedRef<string | undefined>;
4012
+ onScroll: () => void;
4013
+ queryWidget: (key: string, wrapperElement: HTMLElement, fieldList: FieldItem[]) => Promise<{
4014
+ widgetElement: HTMLInputElement | null | undefined;
4015
+ widgetElementList: HTMLInputElement[];
4016
+ decoratorElement: HTMLElement | null | undefined;
4017
+ }>;
4018
+ FormConsumer: import("vue").DefineComponent<{}, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
4019
+ FormProvider: import("vue").DefineComponent<Record<"form", any>, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<Record<"form", any>>>, {
4020
+ form: any;
4021
+ }>;
4022
+ NForm: import("vue").DefineComponent<{
4023
+ readonly inline: BooleanConstructor;
4024
+ readonly labelWidth: import("vue").PropType<string | number>;
4025
+ readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
4026
+ readonly labelPlacement: {
4027
+ readonly type: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
4028
+ readonly default: "top";
4029
+ };
4030
+ readonly model: {
4031
+ readonly type: import("vue").PropType<Record<string, any>>;
4032
+ readonly default: () => void;
4033
+ };
4034
+ readonly rules: import("vue").PropType<import("naive-ui").FormRules>;
4035
+ readonly disabled: BooleanConstructor;
4036
+ readonly size: import("vue").PropType<import("naive-ui/es/form/src/interface").Size>;
4037
+ readonly showRequireMark: {
4038
+ readonly type: import("vue").PropType<boolean | undefined>;
4039
+ readonly default: undefined;
4040
+ };
4041
+ readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
4042
+ readonly showFeedback: {
4043
+ readonly type: BooleanConstructor;
4044
+ readonly default: true;
4045
+ };
4046
+ readonly onSubmit: {
4047
+ readonly type: import("vue").PropType<(e: Event) => void>;
4048
+ readonly default: (e: Event) => void;
4049
+ };
4050
+ readonly showLabel: {
4051
+ readonly type: import("vue").PropType<boolean | undefined>;
4052
+ readonly default: undefined;
4053
+ };
4054
+ readonly validateMessages: import("vue").PropType<Partial<import("naive-ui/es/form/src/interface").FormValidateMessages>>;
4055
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
4056
+ blankHeightSmall: string;
4057
+ blankHeightMedium: string;
4058
+ blankHeightLarge: string;
4059
+ lineHeight: string;
4060
+ labelTextColor: string;
4061
+ asteriskColor: string;
4062
+ feedbackTextColorError: string;
4063
+ feedbackTextColorWarning: string;
4064
+ feedbackTextColor: string;
4065
+ feedbackPadding: string;
4066
+ feedbackHeightSmall: string;
4067
+ feedbackHeightMedium: string;
4068
+ feedbackHeightLarge: string;
4069
+ feedbackFontSizeSmall: string;
4070
+ feedbackFontSizeMedium: string;
4071
+ feedbackFontSizeLarge: string;
4072
+ labelFontSizeLeftSmall: string;
4073
+ labelFontSizeLeftMedium: string;
4074
+ labelFontSizeLeftLarge: string;
4075
+ labelFontSizeTopSmall: string;
4076
+ labelFontSizeTopMedium: string;
4077
+ labelFontSizeTopLarge: string;
4078
+ labelHeightSmall: string;
4079
+ labelHeightMedium: string;
4080
+ labelHeightLarge: string;
4081
+ labelPaddingVertical: string;
4082
+ labelPaddingHorizontal: string;
4083
+ labelTextAlignVertical: string;
4084
+ labelTextAlignHorizontal: string;
4085
+ }, any>>;
4086
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
4087
+ blankHeightSmall: string;
4088
+ blankHeightMedium: string;
4089
+ blankHeightLarge: string;
4090
+ lineHeight: string;
4091
+ labelTextColor: string;
4092
+ asteriskColor: string;
4093
+ feedbackTextColorError: string;
4094
+ feedbackTextColorWarning: string;
4095
+ feedbackTextColor: string;
4096
+ feedbackPadding: string;
4097
+ feedbackHeightSmall: string;
4098
+ feedbackHeightMedium: string;
4099
+ feedbackHeightLarge: string;
4100
+ feedbackFontSizeSmall: string;
4101
+ feedbackFontSizeMedium: string;
4102
+ feedbackFontSizeLarge: string;
4103
+ labelFontSizeLeftSmall: string;
4104
+ labelFontSizeLeftMedium: string;
4105
+ labelFontSizeLeftLarge: string;
4106
+ labelFontSizeTopSmall: string;
4107
+ labelFontSizeTopMedium: string;
4108
+ labelFontSizeTopLarge: string;
4109
+ labelHeightSmall: string;
4110
+ labelHeightMedium: string;
4111
+ labelHeightLarge: string;
4112
+ labelPaddingVertical: string;
4113
+ labelPaddingHorizontal: string;
4114
+ labelTextAlignVertical: string;
4115
+ labelTextAlignHorizontal: string;
4116
+ }, any>>>;
4117
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
4118
+ blankHeightSmall: string;
4119
+ blankHeightMedium: string;
4120
+ blankHeightLarge: string;
4121
+ lineHeight: string;
4122
+ labelTextColor: string;
4123
+ asteriskColor: string;
4124
+ feedbackTextColorError: string;
4125
+ feedbackTextColorWarning: string;
4126
+ feedbackTextColor: string;
4127
+ feedbackPadding: string;
4128
+ feedbackHeightSmall: string;
4129
+ feedbackHeightMedium: string;
4130
+ feedbackHeightLarge: string;
4131
+ feedbackFontSizeSmall: string;
4132
+ feedbackFontSizeMedium: string;
4133
+ feedbackFontSizeLarge: string;
4134
+ labelFontSizeLeftSmall: string;
4135
+ labelFontSizeLeftMedium: string;
4136
+ labelFontSizeLeftLarge: string;
4137
+ labelFontSizeTopSmall: string;
4138
+ labelFontSizeTopMedium: string;
4139
+ labelFontSizeTopLarge: string;
4140
+ labelHeightSmall: string;
4141
+ labelHeightMedium: string;
4142
+ labelHeightLarge: string;
4143
+ labelPaddingVertical: string;
4144
+ labelPaddingHorizontal: string;
4145
+ labelTextAlignVertical: string;
4146
+ labelTextAlignHorizontal: string;
4147
+ }, any>>>;
4148
+ }, import("naive-ui").FormInst & {
4149
+ mergedClsPrefix: import("vue").ComputedRef<string>;
4150
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4151
+ readonly inline: BooleanConstructor;
4152
+ readonly labelWidth: import("vue").PropType<string | number>;
4153
+ readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
4154
+ readonly labelPlacement: {
4155
+ readonly type: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
4156
+ readonly default: "top";
4157
+ };
4158
+ readonly model: {
4159
+ readonly type: import("vue").PropType<Record<string, any>>;
4160
+ readonly default: () => void;
4161
+ };
4162
+ readonly rules: import("vue").PropType<import("naive-ui").FormRules>;
4163
+ readonly disabled: BooleanConstructor;
4164
+ readonly size: import("vue").PropType<import("naive-ui/es/form/src/interface").Size>;
4165
+ readonly showRequireMark: {
4166
+ readonly type: import("vue").PropType<boolean | undefined>;
4167
+ readonly default: undefined;
4168
+ };
4169
+ readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
4170
+ readonly showFeedback: {
4171
+ readonly type: BooleanConstructor;
4172
+ readonly default: true;
4173
+ };
4174
+ readonly onSubmit: {
4175
+ readonly type: import("vue").PropType<(e: Event) => void>;
4176
+ readonly default: (e: Event) => void;
4177
+ };
4178
+ readonly showLabel: {
4179
+ readonly type: import("vue").PropType<boolean | undefined>;
4180
+ readonly default: undefined;
4181
+ };
4182
+ readonly validateMessages: import("vue").PropType<Partial<import("naive-ui/es/form/src/interface").FormValidateMessages>>;
4183
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
4184
+ blankHeightSmall: string;
4185
+ blankHeightMedium: string;
4186
+ blankHeightLarge: string;
4187
+ lineHeight: string;
4188
+ labelTextColor: string;
4189
+ asteriskColor: string;
4190
+ feedbackTextColorError: string;
4191
+ feedbackTextColorWarning: string;
4192
+ feedbackTextColor: string;
4193
+ feedbackPadding: string;
4194
+ feedbackHeightSmall: string;
4195
+ feedbackHeightMedium: string;
4196
+ feedbackHeightLarge: string;
4197
+ feedbackFontSizeSmall: string;
4198
+ feedbackFontSizeMedium: string;
4199
+ feedbackFontSizeLarge: string;
4200
+ labelFontSizeLeftSmall: string;
4201
+ labelFontSizeLeftMedium: string;
4202
+ labelFontSizeLeftLarge: string;
4203
+ labelFontSizeTopSmall: string;
4204
+ labelFontSizeTopMedium: string;
4205
+ labelFontSizeTopLarge: string;
4206
+ labelHeightSmall: string;
4207
+ labelHeightMedium: string;
4208
+ labelHeightLarge: string;
4209
+ labelPaddingVertical: string;
4210
+ labelPaddingHorizontal: string;
4211
+ labelTextAlignVertical: string;
4212
+ labelTextAlignHorizontal: string;
4213
+ }, any>>;
4214
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
4215
+ blankHeightSmall: string;
4216
+ blankHeightMedium: string;
4217
+ blankHeightLarge: string;
4218
+ lineHeight: string;
4219
+ labelTextColor: string;
4220
+ asteriskColor: string;
4221
+ feedbackTextColorError: string;
4222
+ feedbackTextColorWarning: string;
4223
+ feedbackTextColor: string;
4224
+ feedbackPadding: string;
4225
+ feedbackHeightSmall: string;
4226
+ feedbackHeightMedium: string;
4227
+ feedbackHeightLarge: string;
4228
+ feedbackFontSizeSmall: string;
4229
+ feedbackFontSizeMedium: string;
4230
+ feedbackFontSizeLarge: string;
4231
+ labelFontSizeLeftSmall: string;
4232
+ labelFontSizeLeftMedium: string;
4233
+ labelFontSizeLeftLarge: string;
4234
+ labelFontSizeTopSmall: string;
4235
+ labelFontSizeTopMedium: string;
4236
+ labelFontSizeTopLarge: string;
4237
+ labelHeightSmall: string;
4238
+ labelHeightMedium: string;
4239
+ labelHeightLarge: string;
4240
+ labelPaddingVertical: string;
4241
+ labelPaddingHorizontal: string;
4242
+ labelTextAlignVertical: string;
4243
+ labelTextAlignHorizontal: string;
4244
+ }, any>>>;
4245
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
4246
+ blankHeightSmall: string;
4247
+ blankHeightMedium: string;
4248
+ blankHeightLarge: string;
4249
+ lineHeight: string;
4250
+ labelTextColor: string;
4251
+ asteriskColor: string;
4252
+ feedbackTextColorError: string;
4253
+ feedbackTextColorWarning: string;
4254
+ feedbackTextColor: string;
4255
+ feedbackPadding: string;
4256
+ feedbackHeightSmall: string;
4257
+ feedbackHeightMedium: string;
4258
+ feedbackHeightLarge: string;
4259
+ feedbackFontSizeSmall: string;
4260
+ feedbackFontSizeMedium: string;
4261
+ feedbackFontSizeLarge: string;
4262
+ labelFontSizeLeftSmall: string;
4263
+ labelFontSizeLeftMedium: string;
4264
+ labelFontSizeLeftLarge: string;
4265
+ labelFontSizeTopSmall: string;
4266
+ labelFontSizeTopMedium: string;
4267
+ labelFontSizeTopLarge: string;
4268
+ labelHeightSmall: string;
4269
+ labelHeightMedium: string;
4270
+ labelHeightLarge: string;
4271
+ labelPaddingVertical: string;
4272
+ labelPaddingHorizontal: string;
4273
+ labelTextAlignVertical: string;
4274
+ labelTextAlignHorizontal: string;
4275
+ }, any>>>;
4276
+ }>>, {
4277
+ readonly inline: boolean;
4278
+ readonly disabled: boolean;
4279
+ readonly onSubmit: (e: Event) => void;
4280
+ readonly labelPlacement: import("naive-ui/es/form/src/interface").LabelPlacement;
4281
+ readonly model: Record<string, any>;
4282
+ readonly showRequireMark: boolean | undefined;
4283
+ readonly showFeedback: boolean;
4284
+ readonly showLabel: boolean | undefined;
4285
+ }>;
4286
+ NTabPane: import("vue").DefineComponent<{
4287
+ readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
4288
+ [key: string]: any;
4289
+ }> | (() => import("vue").VNodeChild)>;
4290
+ readonly name: {
4291
+ readonly type: import("vue").PropType<string | number>;
4292
+ readonly required: true;
4293
+ };
4294
+ readonly disabled: BooleanConstructor;
4295
+ readonly displayDirective: {
4296
+ readonly type: import("vue").PropType<"show" | "if" | "show:lazy">;
4297
+ readonly default: "if";
4298
+ };
4299
+ readonly closable: {
4300
+ readonly type: import("vue").PropType<boolean | undefined>;
4301
+ readonly default: undefined;
4302
+ };
4303
+ readonly tabProps: import("vue").PropType<import("vue").HTMLAttributes>;
4304
+ readonly label: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
4305
+ [key: string]: any;
4306
+ }> | (() => import("vue").VNodeChild)>;
4307
+ }, {
4308
+ style: import("vue").Ref<string | import("vue").CSSProperties | undefined>;
4309
+ class: import("vue").Ref<string | undefined>;
4310
+ mergedClsPrefix: import("vue").Ref<string>;
4311
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4312
+ readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
4313
+ [key: string]: any;
4314
+ }> | (() => import("vue").VNodeChild)>;
4315
+ readonly name: {
4316
+ readonly type: import("vue").PropType<string | number>;
4317
+ readonly required: true;
4318
+ };
4319
+ readonly disabled: BooleanConstructor;
4320
+ readonly displayDirective: {
4321
+ readonly type: import("vue").PropType<"show" | "if" | "show:lazy">;
4322
+ readonly default: "if";
4323
+ };
4324
+ readonly closable: {
4325
+ readonly type: import("vue").PropType<boolean | undefined>;
4326
+ readonly default: undefined;
4327
+ };
4328
+ readonly tabProps: import("vue").PropType<import("vue").HTMLAttributes>;
4329
+ readonly label: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
4330
+ [key: string]: any;
4331
+ }> | (() => import("vue").VNodeChild)>;
4332
+ }>>, {
4333
+ readonly disabled: boolean;
4334
+ readonly closable: boolean | undefined;
4335
+ readonly displayDirective: "show" | "if" | "show:lazy";
4336
+ }>;
4337
+ NTabs: import("vue").DefineComponent<{
4338
+ readonly value: import("vue").PropType<string | number>;
4339
+ readonly defaultValue: import("vue").PropType<string | number>;
4340
+ readonly trigger: {
4341
+ readonly type: import("vue").PropType<"click" | "hover">;
4342
+ readonly default: "click";
4343
+ };
4344
+ readonly type: {
4345
+ readonly type: import("vue").PropType<import("naive-ui/es/tabs/src/interface").TabsType>;
4346
+ readonly default: "bar";
4347
+ };
4348
+ readonly closable: BooleanConstructor;
4349
+ readonly justifyContent: import("vue").PropType<"center" | "start" | "end" | "space-around" | "space-between" | "space-evenly">;
4350
+ readonly size: {
4351
+ readonly type: import("vue").PropType<"small" | "medium" | "large">;
4352
+ readonly default: "medium";
4353
+ };
4354
+ readonly tabStyle: import("vue").PropType<string | import("vue").CSSProperties>;
4355
+ readonly barWidth: NumberConstructor;
4356
+ readonly paneClass: StringConstructor;
4357
+ readonly paneStyle: import("vue").PropType<string | import("vue").CSSProperties>;
4358
+ readonly addable: import("vue").PropType<import("naive-ui/es/tabs/src/interface").Addable>;
4359
+ readonly tabsPadding: {
4360
+ readonly type: NumberConstructor;
4361
+ readonly default: 0;
4362
+ };
4363
+ readonly animated: BooleanConstructor;
4364
+ readonly onBeforeLeave: import("vue").PropType<import("naive-ui/es/tabs/src/interface").OnBeforeLeave>;
4365
+ readonly onAdd: import("vue").PropType<() => void>;
4366
+ readonly 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
4367
+ readonly onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
4368
+ readonly onClose: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnClose>>;
4369
+ readonly labelSize: import("vue").PropType<"small" | "medium" | "large">;
4370
+ readonly activeName: import("vue").PropType<string | number>;
4371
+ readonly onActiveNameChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: never) => void>>;
4372
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tabs", {
4373
+ colorSegment: string;
4374
+ tabFontSizeCard: string;
4375
+ tabTextColorLine: string;
4376
+ tabTextColorActiveLine: string;
4377
+ tabTextColorHoverLine: string;
4378
+ tabTextColorDisabledLine: string;
4379
+ tabTextColorSegment: string;
4380
+ tabTextColorActiveSegment: string;
4381
+ tabTextColorHoverSegment: string;
4382
+ tabTextColorDisabledSegment: string;
4383
+ tabTextColorBar: string;
4384
+ tabTextColorActiveBar: string;
4385
+ tabTextColorHoverBar: string;
4386
+ tabTextColorDisabledBar: string;
4387
+ tabTextColorCard: string;
4388
+ tabTextColorHoverCard: string;
4389
+ tabTextColorActiveCard: string;
4390
+ tabTextColorDisabledCard: string;
4391
+ barColor: string;
4392
+ closeIconColor: string;
4393
+ closeIconColorHover: string;
4394
+ closeIconColorPressed: string;
4395
+ closeColorHover: string;
4396
+ closeColorPressed: string;
4397
+ closeBorderRadius: string;
4398
+ tabColor: string;
4399
+ tabColorSegment: string;
4400
+ tabBorderColor: string;
4401
+ tabFontWeightActive: string;
4402
+ tabFontWeight: string;
4403
+ tabBorderRadius: string;
4404
+ paneTextColor: string;
4405
+ fontWeightStrong: string;
4406
+ tabFontSizeSmall: string;
4407
+ tabFontSizeMedium: string;
4408
+ tabFontSizeLarge: string;
4409
+ tabGapSmallLine: string;
4410
+ tabGapMediumLine: string;
4411
+ tabGapLargeLine: string;
4412
+ tabPaddingSmallLine: string;
4413
+ tabPaddingMediumLine: string;
4414
+ tabPaddingLargeLine: string;
4415
+ tabGapSmallBar: string;
4416
+ tabGapMediumBar: string;
4417
+ tabGapLargeBar: string;
4418
+ tabPaddingSmallBar: string;
4419
+ tabPaddingMediumBar: string;
4420
+ tabPaddingLargeBar: string;
4421
+ tabGapSmallCard: string;
4422
+ tabGapMediumCard: string;
4423
+ tabGapLargeCard: string;
4424
+ tabPaddingSmallCard: string;
4425
+ tabPaddingMediumCard: string;
4426
+ tabPaddingLargeCard: string;
4427
+ tabPaddingSmallSegment: string;
4428
+ tabPaddingMediumSegment: string;
4429
+ tabPaddingLargeSegment: string;
4430
+ tabGapSmallSegment: string;
4431
+ tabGapMediumSegment: string;
4432
+ tabGapLargeSegment: string;
4433
+ panePaddingSmall: string;
4434
+ panePaddingMedium: string;
4435
+ panePaddingLarge: string;
4436
+ closeSize: string;
4437
+ closeIconSize: string;
4438
+ }, any>>;
4439
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
4440
+ colorSegment: string;
4441
+ tabFontSizeCard: string;
4442
+ tabTextColorLine: string;
4443
+ tabTextColorActiveLine: string;
4444
+ tabTextColorHoverLine: string;
4445
+ tabTextColorDisabledLine: string;
4446
+ tabTextColorSegment: string;
4447
+ tabTextColorActiveSegment: string;
4448
+ tabTextColorHoverSegment: string;
4449
+ tabTextColorDisabledSegment: string;
4450
+ tabTextColorBar: string;
4451
+ tabTextColorActiveBar: string;
4452
+ tabTextColorHoverBar: string;
4453
+ tabTextColorDisabledBar: string;
4454
+ tabTextColorCard: string;
4455
+ tabTextColorHoverCard: string;
4456
+ tabTextColorActiveCard: string;
4457
+ tabTextColorDisabledCard: string;
4458
+ barColor: string;
4459
+ closeIconColor: string;
4460
+ closeIconColorHover: string;
4461
+ closeIconColorPressed: string;
4462
+ closeColorHover: string;
4463
+ closeColorPressed: string;
4464
+ closeBorderRadius: string;
4465
+ tabColor: string;
4466
+ tabColorSegment: string;
4467
+ tabBorderColor: string;
4468
+ tabFontWeightActive: string;
4469
+ tabFontWeight: string;
4470
+ tabBorderRadius: string;
4471
+ paneTextColor: string;
4472
+ fontWeightStrong: string;
4473
+ tabFontSizeSmall: string;
4474
+ tabFontSizeMedium: string;
4475
+ tabFontSizeLarge: string;
4476
+ tabGapSmallLine: string;
4477
+ tabGapMediumLine: string;
4478
+ tabGapLargeLine: string;
4479
+ tabPaddingSmallLine: string;
4480
+ tabPaddingMediumLine: string;
4481
+ tabPaddingLargeLine: string;
4482
+ tabGapSmallBar: string;
4483
+ tabGapMediumBar: string;
4484
+ tabGapLargeBar: string;
4485
+ tabPaddingSmallBar: string;
4486
+ tabPaddingMediumBar: string;
4487
+ tabPaddingLargeBar: string;
4488
+ tabGapSmallCard: string;
4489
+ tabGapMediumCard: string;
4490
+ tabGapLargeCard: string;
4491
+ tabPaddingSmallCard: string;
4492
+ tabPaddingMediumCard: string;
4493
+ tabPaddingLargeCard: string;
4494
+ tabPaddingSmallSegment: string;
4495
+ tabPaddingMediumSegment: string;
4496
+ tabPaddingLargeSegment: string;
4497
+ tabGapSmallSegment: string;
4498
+ tabGapMediumSegment: string;
4499
+ tabGapLargeSegment: string;
4500
+ panePaddingSmall: string;
4501
+ panePaddingMedium: string;
4502
+ panePaddingLarge: string;
4503
+ closeSize: string;
4504
+ closeIconSize: string;
4505
+ }, any>>>;
4506
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
4507
+ colorSegment: string;
4508
+ tabFontSizeCard: string;
4509
+ tabTextColorLine: string;
4510
+ tabTextColorActiveLine: string;
4511
+ tabTextColorHoverLine: string;
4512
+ tabTextColorDisabledLine: string;
4513
+ tabTextColorSegment: string;
4514
+ tabTextColorActiveSegment: string;
4515
+ tabTextColorHoverSegment: string;
4516
+ tabTextColorDisabledSegment: string;
4517
+ tabTextColorBar: string;
4518
+ tabTextColorActiveBar: string;
4519
+ tabTextColorHoverBar: string;
4520
+ tabTextColorDisabledBar: string;
4521
+ tabTextColorCard: string;
4522
+ tabTextColorHoverCard: string;
4523
+ tabTextColorActiveCard: string;
4524
+ tabTextColorDisabledCard: string;
4525
+ barColor: string;
4526
+ closeIconColor: string;
4527
+ closeIconColorHover: string;
4528
+ closeIconColorPressed: string;
4529
+ closeColorHover: string;
4530
+ closeColorPressed: string;
4531
+ closeBorderRadius: string;
4532
+ tabColor: string;
4533
+ tabColorSegment: string;
4534
+ tabBorderColor: string;
4535
+ tabFontWeightActive: string;
4536
+ tabFontWeight: string;
4537
+ tabBorderRadius: string;
4538
+ paneTextColor: string;
4539
+ fontWeightStrong: string;
4540
+ tabFontSizeSmall: string;
4541
+ tabFontSizeMedium: string;
4542
+ tabFontSizeLarge: string;
4543
+ tabGapSmallLine: string;
4544
+ tabGapMediumLine: string;
4545
+ tabGapLargeLine: string;
4546
+ tabPaddingSmallLine: string;
4547
+ tabPaddingMediumLine: string;
4548
+ tabPaddingLargeLine: string;
4549
+ tabGapSmallBar: string;
4550
+ tabGapMediumBar: string;
4551
+ tabGapLargeBar: string;
4552
+ tabPaddingSmallBar: string;
4553
+ tabPaddingMediumBar: string;
4554
+ tabPaddingLargeBar: string;
4555
+ tabGapSmallCard: string;
4556
+ tabGapMediumCard: string;
4557
+ tabGapLargeCard: string;
4558
+ tabPaddingSmallCard: string;
4559
+ tabPaddingMediumCard: string;
4560
+ tabPaddingLargeCard: string;
4561
+ tabPaddingSmallSegment: string;
4562
+ tabPaddingMediumSegment: string;
4563
+ tabPaddingLargeSegment: string;
4564
+ tabGapSmallSegment: string;
4565
+ tabGapMediumSegment: string;
4566
+ tabGapLargeSegment: string;
4567
+ panePaddingSmall: string;
4568
+ panePaddingMedium: string;
4569
+ panePaddingLarge: string;
4570
+ closeSize: string;
4571
+ closeIconSize: string;
4572
+ }, any>>>;
4573
+ }, {
4574
+ syncBarPosition: () => void;
4575
+ mergedClsPrefix: import("vue").ComputedRef<string>;
4576
+ mergedValue: import("vue").ComputedRef<string | number | null>;
4577
+ renderedNames: Set<string | number>;
4578
+ tabsRailElRef: import("vue").Ref<HTMLElement | null>;
4579
+ tabsPaneWrapperRef: import("vue").Ref<HTMLElement | null>;
4580
+ tabsElRef: import("vue").Ref<HTMLElement | null>;
4581
+ barElRef: import("vue").Ref<HTMLElement | null>;
4582
+ addTabInstRef: import("vue").Ref<import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null>;
4583
+ xScrollInstRef: import("vue").Ref<(import("vueuc").VXScrollInst & {
4584
+ $: import("vue").ComponentInternalInstance;
4585
+ $data: {};
4586
+ $props: {};
4587
+ $attrs: {
4588
+ [x: string]: unknown;
4589
+ };
4590
+ $refs: {
4591
+ [x: string]: unknown;
4592
+ };
4593
+ $slots: Readonly<{
4594
+ [name: string]: import("vue").Slot | undefined;
4595
+ }>;
4596
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
4597
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
4598
+ $emit: (event: string, ...args: any[]) => void;
4599
+ $el: any;
4600
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}> & {
4601
+ beforeCreate?: (() => void) | (() => void)[] | undefined;
4602
+ created?: (() => void) | (() => void)[] | undefined;
4603
+ beforeMount?: (() => void) | (() => void)[] | undefined;
4604
+ mounted?: (() => void) | (() => void)[] | undefined;
4605
+ beforeUpdate?: (() => void) | (() => void)[] | undefined;
4606
+ updated?: (() => void) | (() => void)[] | undefined;
4607
+ activated?: (() => void) | (() => void)[] | undefined;
4608
+ deactivated?: (() => void) | (() => void)[] | undefined;
4609
+ beforeDestroy?: (() => void) | (() => void)[] | undefined;
4610
+ beforeUnmount?: (() => void) | (() => void)[] | undefined;
4611
+ destroyed?: (() => void) | (() => void)[] | undefined;
4612
+ unmounted?: (() => void) | (() => void)[] | undefined;
4613
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[] | undefined;
4614
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[] | undefined;
4615
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[] | undefined;
4616
+ };
4617
+ $forceUpdate: () => void;
4618
+ $nextTick: typeof nextTick;
4619
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
4620
+ } & import("vue").ShallowUnwrapRef<{}> & import("vue").ComponentCustomProperties) | null>;
4621
+ scrollWrapperElRef: import("vue").Ref<HTMLElement | null>;
4622
+ addTabFixed: import("vue").Ref<boolean>;
4623
+ tabWrapperStyle: import("vue").ComputedRef<{
4624
+ display: string;
4625
+ justifyContent: "center" | "start" | "end" | "space-around" | "space-between" | "space-evenly";
4626
+ } | undefined>;
4627
+ handleNavResize: import("lodash").DebouncedFunc<(entry: ResizeObserverEntry) => void>;
4628
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "large">;
4629
+ handleScroll: import("lodash").DebouncedFunc<(e: Event) => void>;
4630
+ handleTabsResize: import("lodash").DebouncedFunc<(entry: ResizeObserverEntry) => void>;
4631
+ cssVars: import("vue").ComputedRef<{
4632
+ '--n-bezier': string;
4633
+ '--n-color-segment': string;
4634
+ '--n-bar-color': string;
4635
+ '--n-tab-font-size': string;
4636
+ '--n-tab-text-color': string;
4637
+ '--n-tab-text-color-active': string;
4638
+ '--n-tab-text-color-disabled': string;
4639
+ '--n-tab-text-color-hover': string;
4640
+ '--n-pane-text-color': string;
4641
+ '--n-tab-border-color': string;
4642
+ '--n-tab-border-radius': string;
4643
+ '--n-close-size': string;
4644
+ '--n-close-icon-size': string;
4645
+ '--n-close-color-hover': string;
4646
+ '--n-close-color-pressed': string;
4647
+ '--n-close-border-radius': string;
4648
+ '--n-close-icon-color': string;
4649
+ '--n-close-icon-color-hover': string;
4650
+ '--n-close-icon-color-pressed': string;
4651
+ '--n-tab-color': string;
4652
+ '--n-tab-font-weight': string;
4653
+ '--n-tab-font-weight-active': string;
4654
+ '--n-tab-padding': string;
4655
+ '--n-tab-gap': string;
4656
+ '--n-pane-padding': string;
4657
+ '--n-font-weight-strong': string;
4658
+ '--n-tab-color-segment': string;
4659
+ }> | undefined;
4660
+ themeClass: import("vue").Ref<string> | undefined;
4661
+ animationDirection: import("vue").Ref<"prev" | "next">;
4662
+ renderNameListRef: {
4663
+ value: (string | number)[];
4664
+ };
4665
+ onAnimationBeforeLeave: (el: HTMLElement) => void;
4666
+ onAnimationEnter: (el: HTMLElement) => void;
4667
+ onAnimationAfterEnter: () => void;
4668
+ onRender: (() => void) | undefined;
4669
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4670
+ readonly value: import("vue").PropType<string | number>;
4671
+ readonly defaultValue: import("vue").PropType<string | number>;
4672
+ readonly trigger: {
4673
+ readonly type: import("vue").PropType<"click" | "hover">;
4674
+ readonly default: "click";
4675
+ };
4676
+ readonly type: {
4677
+ readonly type: import("vue").PropType<import("naive-ui/es/tabs/src/interface").TabsType>;
4678
+ readonly default: "bar";
4679
+ };
4680
+ readonly closable: BooleanConstructor;
4681
+ readonly justifyContent: import("vue").PropType<"center" | "start" | "end" | "space-around" | "space-between" | "space-evenly">;
4682
+ readonly size: {
4683
+ readonly type: import("vue").PropType<"small" | "medium" | "large">;
4684
+ readonly default: "medium";
4685
+ };
4686
+ readonly tabStyle: import("vue").PropType<string | import("vue").CSSProperties>;
4687
+ readonly barWidth: NumberConstructor;
4688
+ readonly paneClass: StringConstructor;
4689
+ readonly paneStyle: import("vue").PropType<string | import("vue").CSSProperties>;
4690
+ readonly addable: import("vue").PropType<import("naive-ui/es/tabs/src/interface").Addable>;
4691
+ readonly tabsPadding: {
4692
+ readonly type: NumberConstructor;
4693
+ readonly default: 0;
4694
+ };
4695
+ readonly animated: BooleanConstructor;
4696
+ readonly onBeforeLeave: import("vue").PropType<import("naive-ui/es/tabs/src/interface").OnBeforeLeave>;
4697
+ readonly onAdd: import("vue").PropType<() => void>;
4698
+ readonly 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
4699
+ readonly onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
4700
+ readonly onClose: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnClose>>;
4701
+ readonly labelSize: import("vue").PropType<"small" | "medium" | "large">;
4702
+ readonly activeName: import("vue").PropType<string | number>;
4703
+ readonly onActiveNameChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: never) => void>>;
4704
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tabs", {
4705
+ colorSegment: string;
4706
+ tabFontSizeCard: string;
4707
+ tabTextColorLine: string;
4708
+ tabTextColorActiveLine: string;
4709
+ tabTextColorHoverLine: string;
4710
+ tabTextColorDisabledLine: string;
4711
+ tabTextColorSegment: string;
4712
+ tabTextColorActiveSegment: string;
4713
+ tabTextColorHoverSegment: string;
4714
+ tabTextColorDisabledSegment: string;
4715
+ tabTextColorBar: string;
4716
+ tabTextColorActiveBar: string;
4717
+ tabTextColorHoverBar: string;
4718
+ tabTextColorDisabledBar: string;
4719
+ tabTextColorCard: string;
4720
+ tabTextColorHoverCard: string;
4721
+ tabTextColorActiveCard: string;
4722
+ tabTextColorDisabledCard: string;
4723
+ barColor: string;
4724
+ closeIconColor: string;
4725
+ closeIconColorHover: string;
4726
+ closeIconColorPressed: string;
4727
+ closeColorHover: string;
4728
+ closeColorPressed: string;
4729
+ closeBorderRadius: string;
4730
+ tabColor: string;
4731
+ tabColorSegment: string;
4732
+ tabBorderColor: string;
4733
+ tabFontWeightActive: string;
4734
+ tabFontWeight: string;
4735
+ tabBorderRadius: string;
4736
+ paneTextColor: string;
4737
+ fontWeightStrong: string;
4738
+ tabFontSizeSmall: string;
4739
+ tabFontSizeMedium: string;
4740
+ tabFontSizeLarge: string;
4741
+ tabGapSmallLine: string;
4742
+ tabGapMediumLine: string;
4743
+ tabGapLargeLine: string;
4744
+ tabPaddingSmallLine: string;
4745
+ tabPaddingMediumLine: string;
4746
+ tabPaddingLargeLine: string;
4747
+ tabGapSmallBar: string;
4748
+ tabGapMediumBar: string;
4749
+ tabGapLargeBar: string;
4750
+ tabPaddingSmallBar: string;
4751
+ tabPaddingMediumBar: string;
4752
+ tabPaddingLargeBar: string;
4753
+ tabGapSmallCard: string;
4754
+ tabGapMediumCard: string;
4755
+ tabGapLargeCard: string;
4756
+ tabPaddingSmallCard: string;
4757
+ tabPaddingMediumCard: string;
4758
+ tabPaddingLargeCard: string;
4759
+ tabPaddingSmallSegment: string;
4760
+ tabPaddingMediumSegment: string;
4761
+ tabPaddingLargeSegment: string;
4762
+ tabGapSmallSegment: string;
4763
+ tabGapMediumSegment: string;
4764
+ tabGapLargeSegment: string;
4765
+ panePaddingSmall: string;
4766
+ panePaddingMedium: string;
4767
+ panePaddingLarge: string;
4768
+ closeSize: string;
4769
+ closeIconSize: string;
4770
+ }, any>>;
4771
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
4772
+ colorSegment: string;
4773
+ tabFontSizeCard: string;
4774
+ tabTextColorLine: string;
4775
+ tabTextColorActiveLine: string;
4776
+ tabTextColorHoverLine: string;
4777
+ tabTextColorDisabledLine: string;
4778
+ tabTextColorSegment: string;
4779
+ tabTextColorActiveSegment: string;
4780
+ tabTextColorHoverSegment: string;
4781
+ tabTextColorDisabledSegment: string;
4782
+ tabTextColorBar: string;
4783
+ tabTextColorActiveBar: string;
4784
+ tabTextColorHoverBar: string;
4785
+ tabTextColorDisabledBar: string;
4786
+ tabTextColorCard: string;
4787
+ tabTextColorHoverCard: string;
4788
+ tabTextColorActiveCard: string;
4789
+ tabTextColorDisabledCard: string;
4790
+ barColor: string;
4791
+ closeIconColor: string;
4792
+ closeIconColorHover: string;
4793
+ closeIconColorPressed: string;
4794
+ closeColorHover: string;
4795
+ closeColorPressed: string;
4796
+ closeBorderRadius: string;
4797
+ tabColor: string;
4798
+ tabColorSegment: string;
4799
+ tabBorderColor: string;
4800
+ tabFontWeightActive: string;
4801
+ tabFontWeight: string;
4802
+ tabBorderRadius: string;
4803
+ paneTextColor: string;
4804
+ fontWeightStrong: string;
4805
+ tabFontSizeSmall: string;
4806
+ tabFontSizeMedium: string;
4807
+ tabFontSizeLarge: string;
4808
+ tabGapSmallLine: string;
4809
+ tabGapMediumLine: string;
4810
+ tabGapLargeLine: string;
4811
+ tabPaddingSmallLine: string;
4812
+ tabPaddingMediumLine: string;
4813
+ tabPaddingLargeLine: string;
4814
+ tabGapSmallBar: string;
4815
+ tabGapMediumBar: string;
4816
+ tabGapLargeBar: string;
4817
+ tabPaddingSmallBar: string;
4818
+ tabPaddingMediumBar: string;
4819
+ tabPaddingLargeBar: string;
4820
+ tabGapSmallCard: string;
4821
+ tabGapMediumCard: string;
4822
+ tabGapLargeCard: string;
4823
+ tabPaddingSmallCard: string;
4824
+ tabPaddingMediumCard: string;
4825
+ tabPaddingLargeCard: string;
4826
+ tabPaddingSmallSegment: string;
4827
+ tabPaddingMediumSegment: string;
4828
+ tabPaddingLargeSegment: string;
4829
+ tabGapSmallSegment: string;
4830
+ tabGapMediumSegment: string;
4831
+ tabGapLargeSegment: string;
4832
+ panePaddingSmall: string;
4833
+ panePaddingMedium: string;
4834
+ panePaddingLarge: string;
4835
+ closeSize: string;
4836
+ closeIconSize: string;
4837
+ }, any>>>;
4838
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
4839
+ colorSegment: string;
4840
+ tabFontSizeCard: string;
4841
+ tabTextColorLine: string;
4842
+ tabTextColorActiveLine: string;
4843
+ tabTextColorHoverLine: string;
4844
+ tabTextColorDisabledLine: string;
4845
+ tabTextColorSegment: string;
4846
+ tabTextColorActiveSegment: string;
4847
+ tabTextColorHoverSegment: string;
4848
+ tabTextColorDisabledSegment: string;
4849
+ tabTextColorBar: string;
4850
+ tabTextColorActiveBar: string;
4851
+ tabTextColorHoverBar: string;
4852
+ tabTextColorDisabledBar: string;
4853
+ tabTextColorCard: string;
4854
+ tabTextColorHoverCard: string;
4855
+ tabTextColorActiveCard: string;
4856
+ tabTextColorDisabledCard: string;
4857
+ barColor: string;
4858
+ closeIconColor: string;
4859
+ closeIconColorHover: string;
4860
+ closeIconColorPressed: string;
4861
+ closeColorHover: string;
4862
+ closeColorPressed: string;
4863
+ closeBorderRadius: string;
4864
+ tabColor: string;
4865
+ tabColorSegment: string;
4866
+ tabBorderColor: string;
4867
+ tabFontWeightActive: string;
4868
+ tabFontWeight: string;
4869
+ tabBorderRadius: string;
4870
+ paneTextColor: string;
4871
+ fontWeightStrong: string;
4872
+ tabFontSizeSmall: string;
4873
+ tabFontSizeMedium: string;
4874
+ tabFontSizeLarge: string;
4875
+ tabGapSmallLine: string;
4876
+ tabGapMediumLine: string;
4877
+ tabGapLargeLine: string;
4878
+ tabPaddingSmallLine: string;
4879
+ tabPaddingMediumLine: string;
4880
+ tabPaddingLargeLine: string;
4881
+ tabGapSmallBar: string;
4882
+ tabGapMediumBar: string;
4883
+ tabGapLargeBar: string;
4884
+ tabPaddingSmallBar: string;
4885
+ tabPaddingMediumBar: string;
4886
+ tabPaddingLargeBar: string;
4887
+ tabGapSmallCard: string;
4888
+ tabGapMediumCard: string;
4889
+ tabGapLargeCard: string;
4890
+ tabPaddingSmallCard: string;
4891
+ tabPaddingMediumCard: string;
4892
+ tabPaddingLargeCard: string;
4893
+ tabPaddingSmallSegment: string;
4894
+ tabPaddingMediumSegment: string;
4895
+ tabPaddingLargeSegment: string;
4896
+ tabGapSmallSegment: string;
4897
+ tabGapMediumSegment: string;
4898
+ tabGapLargeSegment: string;
4899
+ panePaddingSmall: string;
4900
+ panePaddingMedium: string;
4901
+ panePaddingLarge: string;
4902
+ closeSize: string;
4903
+ closeIconSize: string;
4904
+ }, any>>>;
4905
+ }>>, {
4906
+ readonly type: import("naive-ui/es/tabs/src/interface").TabsType;
4907
+ readonly size: "small" | "medium" | "large";
4908
+ readonly closable: boolean;
4909
+ readonly trigger: "click" | "hover";
4910
+ readonly animated: boolean;
4911
+ readonly tabsPadding: number;
4912
+ }>;
4913
+ NConfigProvider: import("vue").DefineComponent<{
4914
+ readonly abstract: BooleanConstructor;
4915
+ readonly bordered: {
4916
+ readonly type: import("vue").PropType<boolean | undefined>;
4917
+ readonly default: undefined;
4918
+ };
4919
+ readonly clsPrefix: StringConstructor;
4920
+ readonly locale: import("vue").PropType<{
4921
+ name: string;
4922
+ global: {
4923
+ undo: string;
4924
+ redo: string;
4925
+ confirm: string;
4926
+ };
4927
+ Popconfirm: {
4928
+ positiveText: string;
4929
+ negativeText: string;
4930
+ };
4931
+ Cascader: {
4932
+ placeholder: string;
4933
+ loading: string;
4934
+ loadingRequiredMessage: (label: string) => string;
4935
+ };
4936
+ Time: {
4937
+ dateFormat: string;
4938
+ dateTimeFormat: string;
4939
+ };
4940
+ DatePicker: {
4941
+ yearFormat: string;
4942
+ monthFormat: string;
4943
+ dayFormat: string;
4944
+ yearTypeFormat: string;
4945
+ monthTypeFormat: string;
4946
+ dateFormat: string;
4947
+ dateTimeFormat: string;
4948
+ quarterFormat: string;
4949
+ clear: string;
4950
+ now: string;
4951
+ confirm: string;
4952
+ selectTime: string;
4953
+ selectDate: string;
4954
+ datePlaceholder: string;
4955
+ datetimePlaceholder: string;
4956
+ monthPlaceholder: string;
4957
+ yearPlaceholder: string;
4958
+ quarterPlaceholder: string;
4959
+ startDatePlaceholder: string;
4960
+ endDatePlaceholder: string;
4961
+ startDatetimePlaceholder: string;
4962
+ endDatetimePlaceholder: string;
4963
+ startMonthPlaceholder: string;
4964
+ endMonthPlaceholder: string;
4965
+ monthBeforeYear: boolean;
4966
+ firstDayOfWeek: 0 | 2 | 1 | 3 | 4 | 5 | 6;
4967
+ today: string;
4968
+ };
4969
+ DataTable: {
4970
+ checkTableAll: string;
4971
+ uncheckTableAll: string;
4972
+ confirm: string;
4973
+ clear: string;
4974
+ };
4975
+ Transfer: {
4976
+ sourceTitle: string;
4977
+ targetTitle: string;
4978
+ };
4979
+ Empty: {
4980
+ description: string;
4981
+ };
4982
+ Select: {
4983
+ placeholder: string;
4984
+ };
4985
+ TimePicker: {
4986
+ placeholder: string;
4987
+ positiveText: string;
4988
+ negativeText: string;
4989
+ now: string;
4990
+ };
4991
+ Pagination: {
4992
+ goto: string;
4993
+ selectionSuffix: string;
4994
+ };
4995
+ DynamicTags: {
4996
+ add: string;
4997
+ };
4998
+ Log: {
4999
+ loading: string;
5000
+ };
5001
+ Input: {
5002
+ placeholder: string;
5003
+ };
5004
+ InputNumber: {
5005
+ placeholder: string;
5006
+ };
5007
+ DynamicInput: {
5008
+ create: string;
5009
+ };
5010
+ ThemeEditor: {
5011
+ title: string;
5012
+ clearAllVars: string;
5013
+ clearSearch: string;
5014
+ filterCompName: string;
5015
+ filterVarName: string;
5016
+ import: string;
5017
+ export: string;
5018
+ restore: string;
5019
+ };
5020
+ Image: {
5021
+ tipPrevious: string;
5022
+ tipNext: string;
5023
+ tipCounterclockwise: string;
5024
+ tipClockwise: string;
5025
+ tipZoomOut: string;
5026
+ tipZoomIn: string;
5027
+ tipClose: string;
5028
+ tipOriginalSize: string;
5029
+ };
5030
+ } | null>;
5031
+ readonly dateLocale: import("vue").PropType<import("naive-ui/es/locales/date/enUS").NDateLocale | null>;
5032
+ readonly namespace: StringConstructor;
5033
+ readonly rtl: import("vue").PropType<import("naive-ui/es/config-provider/src/internal-interface").RtlProp>;
5034
+ readonly tag: {
5035
+ readonly type: StringConstructor;
5036
+ readonly default: "div";
5037
+ };
5038
+ readonly hljs: import("vue").PropType<import("naive-ui/es/_mixins").Hljs>;
5039
+ readonly theme: import("vue").PropType<import("naive-ui").GlobalTheme | null>;
5040
+ readonly themeOverrides: import("vue").PropType<import("naive-ui").GlobalThemeOverrides | null>;
5041
+ readonly componentOptions: import("vue").PropType<import("naive-ui").GlobalComponentConfig>;
5042
+ readonly icons: import("vue").PropType<import("naive-ui").GlobalIconConfig>;
5043
+ readonly breakpoints: import("vue").PropType<import("naive-ui/es/config-provider/src/internal-interface").Breakpoints>;
5044
+ readonly preflightStyleDisabled: BooleanConstructor;
5045
+ readonly inlineThemeDisabled: {
5046
+ readonly type: BooleanConstructor;
5047
+ readonly default: undefined;
5048
+ };
5049
+ readonly as: {
5050
+ readonly type: import("vue").PropType<string | undefined>;
5051
+ readonly validator: () => boolean;
5052
+ readonly default: undefined;
5053
+ };
5054
+ }, {
5055
+ mergedClsPrefix: import("vue").ComputedRef<string | undefined>;
5056
+ mergedBordered: import("vue").ComputedRef<boolean | undefined>;
5057
+ mergedNamespace: import("vue").ComputedRef<string | undefined>;
5058
+ mergedTheme: import("vue").ComputedRef<import("naive-ui").GlobalTheme | undefined>;
5059
+ mergedThemeOverrides: import("vue").ComputedRef<import("naive-ui").GlobalThemeOverrides | undefined>;
5060
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
5061
+ readonly abstract: BooleanConstructor;
5062
+ readonly bordered: {
5063
+ readonly type: import("vue").PropType<boolean | undefined>;
5064
+ readonly default: undefined;
5065
+ };
5066
+ readonly clsPrefix: StringConstructor;
5067
+ readonly locale: import("vue").PropType<{
5068
+ name: string;
5069
+ global: {
5070
+ undo: string;
5071
+ redo: string;
5072
+ confirm: string;
5073
+ };
5074
+ Popconfirm: {
5075
+ positiveText: string;
5076
+ negativeText: string;
5077
+ };
5078
+ Cascader: {
5079
+ placeholder: string;
5080
+ loading: string;
5081
+ loadingRequiredMessage: (label: string) => string;
5082
+ };
5083
+ Time: {
5084
+ dateFormat: string;
5085
+ dateTimeFormat: string;
5086
+ };
5087
+ DatePicker: {
5088
+ yearFormat: string;
5089
+ monthFormat: string;
5090
+ dayFormat: string;
5091
+ yearTypeFormat: string;
5092
+ monthTypeFormat: string;
5093
+ dateFormat: string;
5094
+ dateTimeFormat: string;
5095
+ quarterFormat: string;
5096
+ clear: string;
5097
+ now: string;
5098
+ confirm: string;
5099
+ selectTime: string;
5100
+ selectDate: string;
5101
+ datePlaceholder: string;
5102
+ datetimePlaceholder: string;
5103
+ monthPlaceholder: string;
5104
+ yearPlaceholder: string;
5105
+ quarterPlaceholder: string;
5106
+ startDatePlaceholder: string;
5107
+ endDatePlaceholder: string;
5108
+ startDatetimePlaceholder: string;
5109
+ endDatetimePlaceholder: string;
5110
+ startMonthPlaceholder: string;
5111
+ endMonthPlaceholder: string;
5112
+ monthBeforeYear: boolean;
5113
+ firstDayOfWeek: 0 | 2 | 1 | 3 | 4 | 5 | 6;
5114
+ today: string;
5115
+ };
5116
+ DataTable: {
5117
+ checkTableAll: string;
5118
+ uncheckTableAll: string;
5119
+ confirm: string;
5120
+ clear: string;
5121
+ };
5122
+ Transfer: {
5123
+ sourceTitle: string;
5124
+ targetTitle: string;
5125
+ };
5126
+ Empty: {
5127
+ description: string;
5128
+ };
5129
+ Select: {
5130
+ placeholder: string;
5131
+ };
5132
+ TimePicker: {
5133
+ placeholder: string;
5134
+ positiveText: string;
5135
+ negativeText: string;
5136
+ now: string;
5137
+ };
5138
+ Pagination: {
5139
+ goto: string;
5140
+ selectionSuffix: string;
5141
+ };
5142
+ DynamicTags: {
5143
+ add: string;
5144
+ };
5145
+ Log: {
5146
+ loading: string;
5147
+ };
5148
+ Input: {
5149
+ placeholder: string;
5150
+ };
5151
+ InputNumber: {
5152
+ placeholder: string;
5153
+ };
5154
+ DynamicInput: {
5155
+ create: string;
5156
+ };
5157
+ ThemeEditor: {
5158
+ title: string;
5159
+ clearAllVars: string;
5160
+ clearSearch: string;
5161
+ filterCompName: string;
5162
+ filterVarName: string;
5163
+ import: string;
5164
+ export: string;
5165
+ restore: string;
5166
+ };
5167
+ Image: {
5168
+ tipPrevious: string;
5169
+ tipNext: string;
5170
+ tipCounterclockwise: string;
5171
+ tipClockwise: string;
5172
+ tipZoomOut: string;
5173
+ tipZoomIn: string;
5174
+ tipClose: string;
5175
+ tipOriginalSize: string;
5176
+ };
5177
+ } | null>;
5178
+ readonly dateLocale: import("vue").PropType<import("naive-ui/es/locales/date/enUS").NDateLocale | null>;
5179
+ readonly namespace: StringConstructor;
5180
+ readonly rtl: import("vue").PropType<import("naive-ui/es/config-provider/src/internal-interface").RtlProp>;
5181
+ readonly tag: {
5182
+ readonly type: StringConstructor;
5183
+ readonly default: "div";
5184
+ };
5185
+ readonly hljs: import("vue").PropType<import("naive-ui/es/_mixins").Hljs>;
5186
+ readonly theme: import("vue").PropType<import("naive-ui").GlobalTheme | null>;
5187
+ readonly themeOverrides: import("vue").PropType<import("naive-ui").GlobalThemeOverrides | null>;
5188
+ readonly componentOptions: import("vue").PropType<import("naive-ui").GlobalComponentConfig>;
5189
+ readonly icons: import("vue").PropType<import("naive-ui").GlobalIconConfig>;
5190
+ readonly breakpoints: import("vue").PropType<import("naive-ui/es/config-provider/src/internal-interface").Breakpoints>;
5191
+ readonly preflightStyleDisabled: BooleanConstructor;
5192
+ readonly inlineThemeDisabled: {
5193
+ readonly type: BooleanConstructor;
5194
+ readonly default: undefined;
5195
+ };
5196
+ readonly as: {
5197
+ readonly type: import("vue").PropType<string | undefined>;
5198
+ readonly validator: () => boolean;
5199
+ readonly default: undefined;
5200
+ };
5201
+ }>>, {
5202
+ readonly abstract: boolean;
5203
+ readonly tag: string;
5204
+ readonly as: string | undefined;
5205
+ readonly bordered: boolean | undefined;
5206
+ readonly preflightStyleDisabled: boolean;
5207
+ readonly inlineThemeDisabled: boolean;
5208
+ }>;
5209
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "formChange"[], "formChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
5210
+ fieldList: {
5211
+ type: import("vue").PropType<FieldItem[]>;
5212
+ };
5213
+ initialData: {
5214
+ type: import("vue").PropType<AnyObject>;
5215
+ default: () => {};
5216
+ };
5217
+ fieldVisitor: {
5218
+ type: import("vue").PropType<import("../../../../../es/packages/form-render").FieldVisitor>;
5219
+ };
5220
+ column: {
5221
+ type: NumberConstructor;
5222
+ default: number;
5223
+ };
5224
+ maxHeight: {
5225
+ type: (NumberConstructor | StringConstructor)[];
5226
+ default: string;
5227
+ };
5228
+ anchor: {
5229
+ type: BooleanConstructor;
5230
+ default: boolean;
5231
+ };
5232
+ parallelism: {
5233
+ type: NumberConstructor;
5234
+ default: number;
5235
+ };
5236
+ schema: {
5237
+ type: import("vue").PropType<import("@formily/json-schema").Stringify<{
5238
+ [key: symbol]: any;
5239
+ [key: `x-${string}`]: any;
5240
+ [key: `x-${number}`]: any;
5241
+ version?: string | undefined;
5242
+ name?: import("@formily/json-schema").SchemaKey | undefined;
5243
+ title?: any;
5244
+ description?: any;
5245
+ default?: any;
5246
+ readOnly?: boolean | undefined;
5247
+ writeOnly?: boolean | undefined;
5248
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
5249
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
5250
+ const?: any;
5251
+ multipleOf?: number | undefined;
5252
+ maximum?: number | undefined;
5253
+ exclusiveMaximum?: number | undefined;
5254
+ minimum?: number | undefined;
5255
+ exclusiveMinimum?: number | undefined;
5256
+ maxLength?: number | undefined;
5257
+ minLength?: number | undefined;
5258
+ pattern?: string | RegExp | undefined;
5259
+ maxItems?: number | undefined;
5260
+ minItems?: number | undefined;
5261
+ uniqueItems?: boolean | undefined;
5262
+ maxProperties?: number | undefined;
5263
+ minProperties?: number | undefined;
5264
+ required?: string | boolean | string[] | undefined;
5265
+ format?: string | undefined;
5266
+ $ref?: string | undefined;
5267
+ $namespace?: string | undefined;
5268
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
5269
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
5270
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
5271
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
5272
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
5273
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
5274
+ "x-value"?: any;
5275
+ "x-index"?: number | undefined;
5276
+ "x-pattern"?: any;
5277
+ "x-display"?: any;
5278
+ "x-validator"?: any;
5279
+ "x-decorator"?: any;
5280
+ "x-decorator-props"?: any;
5281
+ "x-component"?: any;
5282
+ "x-component-props"?: any;
5283
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
5284
+ "x-content"?: any;
5285
+ "x-data"?: any;
5286
+ "x-visible"?: boolean | undefined;
5287
+ "x-hidden"?: boolean | undefined;
5288
+ "x-disabled"?: boolean | undefined;
5289
+ "x-editable"?: boolean | undefined;
5290
+ "x-read-only"?: boolean | undefined;
5291
+ "x-read-pretty"?: boolean | undefined;
5292
+ "x-compile-omitted"?: string[] | undefined;
5293
+ }>>;
5294
+ };
5295
+ components: {
5296
+ type: import("vue").PropType<Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
5297
+ default: () => {};
5298
+ };
5299
+ businessFilter: {
5300
+ type: import("vue").PropType<import("../../../../../es/packages/form-render").FormBusinessFilter>;
5301
+ };
5302
+ scope: {
5303
+ type: import("vue").PropType<AnyObject>;
5304
+ default: () => {};
5305
+ };
5306
+ annotation: {
5307
+ type: import("vue").PropType<AnyObject>;
5308
+ };
5309
+ consumer: {
5310
+ type: BooleanConstructor;
5311
+ default: boolean;
5312
+ };
5313
+ uuid: {
5314
+ type: StringConstructor;
5315
+ };
5316
+ lifeCycle: {
5317
+ type: import("vue").PropType<Partial<{
5318
+ onSetup(): void;
5319
+ beforeRequest(fieldKey: string, params?: AnyObject | undefined): void | import("../../../../../es/src/types").WithUndefined<AnyObject>;
5320
+ afterRequest(fieldKey: string, payload?: any): AnyObject[];
5321
+ }>>;
5322
+ };
5323
+ }>> & {
5324
+ onFormChange?: ((...args: any[]) => any) | undefined;
5325
+ }, {
5326
+ anchor: boolean;
5327
+ maxHeight: string | number;
5328
+ column: number;
5329
+ components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
5330
+ initialData: AnyObject;
5331
+ parallelism: number;
5332
+ scope: AnyObject;
5333
+ consumer: boolean;
5334
+ }>>;
3588
5335
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
3589
5336
  export default _default;