cnhis-design-vue 3.1.26-beta.3 → 3.1.26-beta.4

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 (28) hide show
  1. package/es/components/form-config/index.d.ts +888 -872
  2. package/es/components/form-config/src/FormConfig.vue.d.ts +888 -872
  3. package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +444 -436
  4. package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +444 -436
  5. package/es/components/form-render/index.d.ts +445 -436
  6. package/es/components/form-render/index.js +5 -1
  7. package/es/components/form-render/src/FormRender.js +23 -9
  8. package/es/components/form-render/src/FormRender.vue.d.ts +1 -0
  9. package/es/components/form-render/src/FormRenderWrapper.js +46 -0
  10. package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +621 -0
  11. package/es/components/form-render/src/components/renderer/jsonCombination/index.js +2 -2
  12. package/es/components/form-render/src/components/renderer/simpleComponent.js +2 -2
  13. package/es/components/form-render/src/hooks/useFormContext.js +2 -2
  14. package/es/components/form-render/src/types/index.d.ts +3 -1
  15. package/es/components/form-render/src/utils/index.d.ts +2 -1
  16. package/es/components/form-render/src/utils/index.js +26 -4
  17. package/es/components/iho-table/src/IhoTable.js +2 -1
  18. package/es/components/iho-table/src/constants/index.d.ts +4 -2
  19. package/es/components/iho-table/src/constants/index.js +9 -1
  20. package/es/components/iho-table/src/hooks/useTableContext.d.ts +7 -0
  21. package/es/components/iho-table/src/hooks/useTableContext.js +15 -0
  22. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +1 -1
  23. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.vue.d.ts +1 -1
  24. package/es/components/iho-table/src/types/index.d.ts +6 -2
  25. package/es/components/index.js +4 -0
  26. package/es/components/shortcut-setter/index.d.ts +444 -436
  27. package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +444 -436
  28. package/package.json +2 -2
@@ -1709,38 +1709,256 @@ declare const _default: import("vue").DefineComponent<{}, {
1709
1709
  prevOldField: null;
1710
1710
  onFormChange: ({ fieldKey, value }: FormChangePayload) => void;
1711
1711
  NModal: any;
1712
- CFormRender: import("../../../../../es/shared/types").SFCWithInstall<import("vue").DefineComponent<{
1713
- fieldList: {
1714
- type: import("vue").PropType<FieldItem[]>;
1715
- };
1716
- initialData: {
1717
- type: import("vue").PropType<import("../../../../../es/shared/types").AnyObject>;
1718
- default: () => {};
1719
- };
1720
- fieldVisitor: {
1721
- type: import("vue").PropType<import("../../../../../es/components/form-render").FieldVisitor>;
1722
- };
1723
- column: {
1724
- type: NumberConstructor;
1725
- default: number;
1726
- };
1727
- maxHeight: {
1728
- type: (NumberConstructor | StringConstructor)[];
1729
- default: string;
1730
- };
1731
- anchor: {
1732
- type: BooleanConstructor;
1733
- default: boolean;
1734
- };
1735
- parallelism: {
1736
- type: NumberConstructor;
1737
- default: number;
1738
- };
1739
- businessFormatter: {
1740
- type: import("vue").PropType<import("../../../../../es/components/form-render").FormBusinessFormatter>;
1741
- };
1742
- schema: {
1743
- type: import("vue").PropType<import("@formily/json-schema").Stringify<{
1712
+ CFormRender: import("../../../../../es/shared/types").SFCWithInstall<import("vue").DefineComponent<{}, {
1713
+ formRenderRef: import("vue").Ref<FormRenderExpose | undefined>;
1714
+ key: import("vue").Ref<number>;
1715
+ reload: () => Promise<void>;
1716
+ formRenderExposeKeyList: readonly ["validate", "getFormValues", "setFormValues", "setFieldState", "resetFieldState", "resetFields", "queryWidget"];
1717
+ exposed: import("../../../../../es/shared/types").AnyObject;
1718
+ FormRender: import("vue").DefineComponent<{
1719
+ fieldList: {
1720
+ type: import("vue").PropType<FieldItem[]>;
1721
+ };
1722
+ initialData: {
1723
+ type: import("vue").PropType<import("../../../../../es/shared/types").AnyObject>;
1724
+ default: () => {};
1725
+ };
1726
+ fieldVisitor: {
1727
+ type: import("vue").PropType<import("../../../../../es/components/form-render").FieldVisitor>;
1728
+ };
1729
+ column: {
1730
+ type: NumberConstructor;
1731
+ default: number;
1732
+ };
1733
+ maxHeight: {
1734
+ type: (NumberConstructor | StringConstructor)[];
1735
+ default: string;
1736
+ };
1737
+ anchor: {
1738
+ type: BooleanConstructor;
1739
+ default: boolean;
1740
+ };
1741
+ parallelism: {
1742
+ type: NumberConstructor;
1743
+ default: number;
1744
+ };
1745
+ businessFormatter: {
1746
+ type: import("vue").PropType<import("../../../../../es/components/form-render").FormBusinessFormatter>;
1747
+ };
1748
+ schema: {
1749
+ type: import("vue").PropType<import("@formily/json-schema").Stringify<{
1750
+ [key: symbol]: any;
1751
+ [key: `x-${string}`]: any;
1752
+ [key: `x-${number}`]: any;
1753
+ version?: string | undefined;
1754
+ name?: import("@formily/json-schema").SchemaKey | undefined;
1755
+ title?: any;
1756
+ description?: any;
1757
+ default?: any;
1758
+ readOnly?: boolean | undefined;
1759
+ writeOnly?: boolean | undefined;
1760
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
1761
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
1762
+ const?: any;
1763
+ multipleOf?: number | undefined;
1764
+ maximum?: number | undefined;
1765
+ exclusiveMaximum?: number | undefined;
1766
+ minimum?: number | undefined;
1767
+ exclusiveMinimum?: number | undefined;
1768
+ maxLength?: number | undefined;
1769
+ minLength?: number | undefined;
1770
+ pattern?: string | RegExp | undefined;
1771
+ maxItems?: number | undefined;
1772
+ minItems?: number | undefined;
1773
+ uniqueItems?: boolean | undefined;
1774
+ maxProperties?: number | undefined;
1775
+ minProperties?: number | undefined;
1776
+ required?: string | boolean | string[] | undefined;
1777
+ format?: string | undefined;
1778
+ $ref?: string | undefined;
1779
+ $namespace?: string | undefined;
1780
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1781
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1782
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
1783
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
1784
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1785
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
1786
+ "x-value"?: any;
1787
+ "x-index"?: number | undefined;
1788
+ "x-pattern"?: any;
1789
+ "x-display"?: any;
1790
+ "x-validator"?: any;
1791
+ "x-decorator"?: any;
1792
+ "x-decorator-props"?: any;
1793
+ "x-component"?: any;
1794
+ "x-component-props"?: any;
1795
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
1796
+ "x-content"?: any;
1797
+ "x-data"?: any;
1798
+ "x-visible"?: boolean | undefined;
1799
+ "x-hidden"?: boolean | undefined;
1800
+ "x-disabled"?: boolean | undefined;
1801
+ "x-editable"?: boolean | undefined;
1802
+ "x-read-only"?: boolean | undefined;
1803
+ "x-read-pretty"?: boolean | undefined;
1804
+ "x-compile-omitted"?: string[] | undefined;
1805
+ }>>;
1806
+ };
1807
+ components: {
1808
+ type: import("vue").PropType<Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
1809
+ default: () => {};
1810
+ };
1811
+ scope: {
1812
+ type: import("vue").PropType<import("../../../../../es/shared/types").AnyObject>;
1813
+ default: () => {};
1814
+ };
1815
+ annotation: {
1816
+ type: import("vue").PropType<import("../../../../../es/shared/types").AnyObject>;
1817
+ };
1818
+ consumer: {
1819
+ type: BooleanConstructor;
1820
+ default: boolean;
1821
+ };
1822
+ uuid: {
1823
+ type: StringConstructor;
1824
+ };
1825
+ lifeCycle: {
1826
+ type: import("vue").PropType<Partial<{
1827
+ onSetup(): void;
1828
+ beforeRequest(fieldKey: string, params?: import("../../../../../es/shared/types").AnyObject | undefined): void | import("../../../../../es/shared/types").UndefinedAble<import("../../../../../es/shared/types").AnyObject>;
1829
+ afterRequest(fieldKey: string, payload?: any): import("../../../../../es/shared/types").AnyObject[];
1830
+ }>>;
1831
+ };
1832
+ }, {
1833
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1834
+ fieldList: {
1835
+ type: import("vue").PropType<FieldItem[]>;
1836
+ };
1837
+ initialData: {
1838
+ type: import("vue").PropType<import("../../../../../es/shared/types").AnyObject>;
1839
+ default: () => {};
1840
+ };
1841
+ fieldVisitor: {
1842
+ type: import("vue").PropType<import("../../../../../es/components/form-render").FieldVisitor>;
1843
+ };
1844
+ column: {
1845
+ type: NumberConstructor;
1846
+ default: number;
1847
+ };
1848
+ maxHeight: {
1849
+ type: (NumberConstructor | StringConstructor)[];
1850
+ default: string;
1851
+ };
1852
+ anchor: {
1853
+ type: BooleanConstructor;
1854
+ default: boolean;
1855
+ };
1856
+ parallelism: {
1857
+ type: NumberConstructor;
1858
+ default: number;
1859
+ };
1860
+ businessFormatter: {
1861
+ type: import("vue").PropType<import("../../../../../es/components/form-render").FormBusinessFormatter>;
1862
+ };
1863
+ schema: {
1864
+ type: import("vue").PropType<import("@formily/json-schema").Stringify<{
1865
+ [key: symbol]: any;
1866
+ [key: `x-${string}`]: any;
1867
+ [key: `x-${number}`]: any;
1868
+ version?: string | undefined;
1869
+ name?: import("@formily/json-schema").SchemaKey | undefined;
1870
+ title?: any;
1871
+ description?: any;
1872
+ default?: any;
1873
+ readOnly?: boolean | undefined;
1874
+ writeOnly?: boolean | undefined;
1875
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
1876
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
1877
+ const?: any;
1878
+ multipleOf?: number | undefined;
1879
+ maximum?: number | undefined;
1880
+ exclusiveMaximum?: number | undefined;
1881
+ minimum?: number | undefined;
1882
+ exclusiveMinimum?: number | undefined;
1883
+ maxLength?: number | undefined;
1884
+ minLength?: number | undefined;
1885
+ pattern?: string | RegExp | undefined;
1886
+ maxItems?: number | undefined;
1887
+ minItems?: number | undefined;
1888
+ uniqueItems?: boolean | undefined;
1889
+ maxProperties?: number | undefined;
1890
+ minProperties?: number | undefined;
1891
+ required?: string | boolean | string[] | undefined;
1892
+ format?: string | undefined;
1893
+ $ref?: string | undefined;
1894
+ $namespace?: string | undefined;
1895
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1896
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1897
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
1898
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
1899
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1900
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
1901
+ "x-value"?: any;
1902
+ "x-index"?: number | undefined;
1903
+ "x-pattern"?: any;
1904
+ "x-display"?: any;
1905
+ "x-validator"?: any;
1906
+ "x-decorator"?: any;
1907
+ "x-decorator-props"?: any;
1908
+ "x-component"?: any;
1909
+ "x-component-props"?: any;
1910
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
1911
+ "x-content"?: any;
1912
+ "x-data"?: any;
1913
+ "x-visible"?: boolean | undefined;
1914
+ "x-hidden"?: boolean | undefined;
1915
+ "x-disabled"?: boolean | undefined;
1916
+ "x-editable"?: boolean | undefined;
1917
+ "x-read-only"?: boolean | undefined;
1918
+ "x-read-pretty"?: boolean | undefined;
1919
+ "x-compile-omitted"?: string[] | undefined;
1920
+ }>>;
1921
+ };
1922
+ components: {
1923
+ type: import("vue").PropType<Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
1924
+ default: () => {};
1925
+ };
1926
+ scope: {
1927
+ type: import("vue").PropType<import("../../../../../es/shared/types").AnyObject>;
1928
+ default: () => {};
1929
+ };
1930
+ annotation: {
1931
+ type: import("vue").PropType<import("../../../../../es/shared/types").AnyObject>;
1932
+ };
1933
+ consumer: {
1934
+ type: BooleanConstructor;
1935
+ default: boolean;
1936
+ };
1937
+ uuid: {
1938
+ type: StringConstructor;
1939
+ };
1940
+ lifeCycle: {
1941
+ type: import("vue").PropType<Partial<{
1942
+ onSetup(): void;
1943
+ beforeRequest(fieldKey: string, params?: import("../../../../../es/shared/types").AnyObject | undefined): void | import("../../../../../es/shared/types").UndefinedAble<import("../../../../../es/shared/types").AnyObject>;
1944
+ afterRequest(fieldKey: string, payload?: any): import("../../../../../es/shared/types").AnyObject[];
1945
+ }>>;
1946
+ };
1947
+ }>> & {
1948
+ onFormChange?: ((...args: any[]) => any) | undefined;
1949
+ }>>;
1950
+ emit: (event: "formChange", ...args: any[]) => void;
1951
+ nuiThemeOverrides: import("naive-ui").GlobalThemeOverrides;
1952
+ formModel: import("../../../../../es/components/form-render").Form<{
1953
+ [x: string]: any;
1954
+ }>;
1955
+ SchemaField: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
1956
+ businessCollector: import("../../../../../es/components/form-render").BusinessCollector;
1957
+ formItemDepsCollector: import("../../../../../es/components/form-render").FormItemDepsCollector;
1958
+ changeContextCollector: import("../../../../../es/components/form-render").ContextCollector;
1959
+ formUUID: string;
1960
+ scrollbarRef: import("vue").Ref<HTMLElement | undefined>;
1961
+ schemaAdaptor: (fieldList: FieldItem[]) => Record<string, import("@formily/json-schema").Stringify<{
1744
1962
  [key: symbol]: any;
1745
1963
  [key: `x-${string}`]: any;
1746
1964
  [key: `x-${number}`]: any;
@@ -1797,34 +2015,192 @@ declare const _default: import("vue").DefineComponent<{}, {
1797
2015
  "x-read-pretty"?: boolean | undefined;
1798
2016
  "x-compile-omitted"?: string[] | undefined;
1799
2017
  }>>;
1800
- };
1801
- components: {
1802
- type: import("vue").PropType<Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
1803
- default: () => {};
1804
- };
1805
- scope: {
1806
- type: import("vue").PropType<import("../../../../../es/shared/types").AnyObject>;
1807
- default: () => {};
1808
- };
1809
- annotation: {
1810
- type: import("vue").PropType<import("../../../../../es/shared/types").AnyObject>;
1811
- };
1812
- consumer: {
1813
- type: BooleanConstructor;
1814
- default: boolean;
1815
- };
1816
- uuid: {
1817
- type: StringConstructor;
1818
- };
1819
- lifeCycle: {
1820
- type: import("vue").PropType<Partial<{
1821
- onSetup(): void;
1822
- beforeRequest(fieldKey: string, params?: import("../../../../../es/shared/types").AnyObject | undefined): void | import("../../../../../es/shared/types").UndefinedAble<import("../../../../../es/shared/types").AnyObject>;
1823
- afterRequest(fieldKey: string, payload?: any): import("../../../../../es/shared/types").AnyObject[];
2018
+ _fieldList: FieldItem[];
2019
+ parsedSchema: import("vue").ComputedRef<import("@formily/json-schema").Stringify<{
2020
+ [key: symbol]: any;
2021
+ [key: `x-${string}`]: any;
2022
+ [key: `x-${number}`]: any;
2023
+ version?: string | undefined;
2024
+ name?: import("@formily/json-schema").SchemaKey | undefined;
2025
+ title?: any;
2026
+ description?: any;
2027
+ default?: any;
2028
+ readOnly?: boolean | undefined;
2029
+ writeOnly?: boolean | undefined;
2030
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
2031
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
2032
+ const?: any;
2033
+ multipleOf?: number | undefined;
2034
+ maximum?: number | undefined;
2035
+ exclusiveMaximum?: number | undefined;
2036
+ minimum?: number | undefined;
2037
+ exclusiveMinimum?: number | undefined;
2038
+ maxLength?: number | undefined;
2039
+ minLength?: number | undefined;
2040
+ pattern?: string | RegExp | undefined;
2041
+ maxItems?: number | undefined;
2042
+ minItems?: number | undefined;
2043
+ uniqueItems?: boolean | undefined;
2044
+ maxProperties?: number | undefined;
2045
+ minProperties?: number | undefined;
2046
+ required?: string | boolean | string[] | undefined;
2047
+ format?: string | undefined;
2048
+ $ref?: string | undefined;
2049
+ $namespace?: string | undefined;
2050
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2051
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2052
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
2053
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
2054
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2055
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
2056
+ "x-value"?: any;
2057
+ "x-index"?: number | undefined;
2058
+ "x-pattern"?: any;
2059
+ "x-display"?: any;
2060
+ "x-validator"?: any;
2061
+ "x-decorator"?: any;
2062
+ "x-decorator-props"?: any;
2063
+ "x-component"?: any;
2064
+ "x-component-props"?: any;
2065
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
2066
+ "x-content"?: any;
2067
+ "x-data"?: any;
2068
+ "x-visible"?: boolean | undefined;
2069
+ "x-hidden"?: boolean | undefined;
2070
+ "x-disabled"?: boolean | undefined;
2071
+ "x-editable"?: boolean | undefined;
2072
+ "x-read-only"?: boolean | undefined;
2073
+ "x-read-pretty"?: boolean | undefined;
2074
+ "x-compile-omitted"?: string[] | undefined;
1824
2075
  }>>;
1825
- };
1826
- }, {
1827
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
2076
+ currentAnchor: import("vue").WritableComputedRef<string>;
2077
+ generateAnchorList: (schema: import("@formily/json-schema").Stringify<{
2078
+ [key: symbol]: any;
2079
+ [key: `x-${string}`]: any;
2080
+ [key: `x-${number}`]: any;
2081
+ version?: string | undefined;
2082
+ name?: import("@formily/json-schema").SchemaKey | undefined;
2083
+ title?: any;
2084
+ description?: any;
2085
+ default?: any;
2086
+ readOnly?: boolean | undefined;
2087
+ writeOnly?: boolean | undefined;
2088
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
2089
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
2090
+ const?: any;
2091
+ multipleOf?: number | undefined;
2092
+ maximum?: number | undefined;
2093
+ exclusiveMaximum?: number | undefined;
2094
+ minimum?: number | undefined;
2095
+ exclusiveMinimum?: number | undefined;
2096
+ maxLength?: number | undefined;
2097
+ minLength?: number | undefined;
2098
+ pattern?: string | RegExp | undefined;
2099
+ maxItems?: number | undefined;
2100
+ minItems?: number | undefined;
2101
+ uniqueItems?: boolean | undefined;
2102
+ maxProperties?: number | undefined;
2103
+ minProperties?: number | undefined;
2104
+ required?: string | boolean | string[] | undefined;
2105
+ format?: string | undefined;
2106
+ $ref?: string | undefined;
2107
+ $namespace?: string | undefined;
2108
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2109
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2110
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
2111
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
2112
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2113
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
2114
+ "x-value"?: any;
2115
+ "x-index"?: number | undefined;
2116
+ "x-pattern"?: any;
2117
+ "x-display"?: any;
2118
+ "x-validator"?: any;
2119
+ "x-decorator"?: any;
2120
+ "x-decorator-props"?: any;
2121
+ "x-component"?: any;
2122
+ "x-component-props"?: any;
2123
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
2124
+ "x-content"?: any;
2125
+ "x-data"?: any;
2126
+ "x-visible"?: boolean | undefined;
2127
+ "x-hidden"?: boolean | undefined;
2128
+ "x-disabled"?: boolean | undefined;
2129
+ "x-editable"?: boolean | undefined;
2130
+ "x-read-only"?: boolean | undefined;
2131
+ "x-read-pretty"?: boolean | undefined;
2132
+ "x-compile-omitted"?: string[] | undefined;
2133
+ }>) => void;
2134
+ anchorIdList: import("vue").Ref<{
2135
+ name: string;
2136
+ title: string;
2137
+ }[]>;
2138
+ formHeight: import("vue").ComputedRef<string | undefined>;
2139
+ onScroll: () => void;
2140
+ queryWidget: (key: string, wrapperElement: HTMLElement, fieldList: FieldItem[]) => Promise<{
2141
+ widgetElement: HTMLInputElement | null | undefined;
2142
+ widgetElementList: HTMLInputElement[];
2143
+ decoratorElement: HTMLElement | null | undefined;
2144
+ }>;
2145
+ 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<{}>>, {}>;
2146
+ 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>>>, {
2147
+ form: any;
2148
+ }>;
2149
+ NForm: any;
2150
+ NTabPane: import("vue").DefineComponent<{
2151
+ readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2152
+ [key: string]: any;
2153
+ }> | (() => import("vue").VNodeChild)>;
2154
+ readonly name: {
2155
+ readonly type: import("vue").PropType<string | number>;
2156
+ readonly required: true;
2157
+ };
2158
+ readonly disabled: BooleanConstructor;
2159
+ readonly displayDirective: {
2160
+ readonly type: import("vue").PropType<"if" | "show" | "show:lazy">;
2161
+ readonly default: "if";
2162
+ };
2163
+ readonly closable: {
2164
+ readonly type: import("vue").PropType<boolean | undefined>;
2165
+ readonly default: undefined;
2166
+ };
2167
+ readonly tabProps: import("vue").PropType<import("vue").HTMLAttributes>;
2168
+ readonly label: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2169
+ [key: string]: any;
2170
+ }> | (() => import("vue").VNodeChild)>;
2171
+ }, {
2172
+ style: import("vue").Ref<string | import("vue").CSSProperties | undefined>;
2173
+ class: import("vue").Ref<string | undefined>;
2174
+ mergedClsPrefix: import("vue").Ref<string>;
2175
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2176
+ readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2177
+ [key: string]: any;
2178
+ }> | (() => import("vue").VNodeChild)>;
2179
+ readonly name: {
2180
+ readonly type: import("vue").PropType<string | number>;
2181
+ readonly required: true;
2182
+ };
2183
+ readonly disabled: BooleanConstructor;
2184
+ readonly displayDirective: {
2185
+ readonly type: import("vue").PropType<"if" | "show" | "show:lazy">;
2186
+ readonly default: "if";
2187
+ };
2188
+ readonly closable: {
2189
+ readonly type: import("vue").PropType<boolean | undefined>;
2190
+ readonly default: undefined;
2191
+ };
2192
+ readonly tabProps: import("vue").PropType<import("vue").HTMLAttributes>;
2193
+ readonly label: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2194
+ [key: string]: any;
2195
+ }> | (() => import("vue").VNodeChild)>;
2196
+ }>>, {
2197
+ readonly disabled: boolean;
2198
+ readonly closable: boolean | undefined;
2199
+ readonly displayDirective: "if" | "show" | "show:lazy";
2200
+ }>;
2201
+ NTabs: any;
2202
+ NConfigProvider: any;
2203
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "formChange"[], "formChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1828
2204
  fieldList: {
1829
2205
  type: import("vue").PropType<FieldItem[]>;
1830
2206
  };
@@ -1940,384 +2316,16 @@ declare const _default: import("vue").DefineComponent<{}, {
1940
2316
  };
1941
2317
  }>> & {
1942
2318
  onFormChange?: ((...args: any[]) => any) | undefined;
1943
- }>>;
1944
- emit: (event: "formChange", ...args: any[]) => void;
1945
- nuiThemeOverrides: import("naive-ui").GlobalThemeOverrides;
1946
- formModel: import("../../../../../es/components/form-render").Form<{
1947
- [x: string]: any;
1948
- }>;
1949
- SchemaField: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
1950
- businessCollector: import("../../../../../es/components/form-render").BusinessCollector;
1951
- formItemDepsCollector: import("../../../../../es/components/form-render").FormItemDepsCollector;
1952
- changeContextCollector: import("../../../../../es/components/form-render").ContextCollector;
1953
- formUUID: string;
1954
- scrollbarRef: import("vue").Ref<HTMLElement | undefined>;
1955
- schemaAdaptor: (fieldList: FieldItem[]) => Record<string, import("@formily/json-schema").Stringify<{
1956
- [key: symbol]: any;
1957
- [key: `x-${string}`]: any;
1958
- [key: `x-${number}`]: any;
1959
- version?: string | undefined;
1960
- name?: import("@formily/json-schema").SchemaKey | undefined;
1961
- title?: any;
1962
- description?: any;
1963
- default?: any;
1964
- readOnly?: boolean | undefined;
1965
- writeOnly?: boolean | undefined;
1966
- type?: import("@formily/json-schema").SchemaTypes | undefined;
1967
- enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
1968
- const?: any;
1969
- multipleOf?: number | undefined;
1970
- maximum?: number | undefined;
1971
- exclusiveMaximum?: number | undefined;
1972
- minimum?: number | undefined;
1973
- exclusiveMinimum?: number | undefined;
1974
- maxLength?: number | undefined;
1975
- minLength?: number | undefined;
1976
- pattern?: string | RegExp | undefined;
1977
- maxItems?: number | undefined;
1978
- minItems?: number | undefined;
1979
- uniqueItems?: boolean | undefined;
1980
- maxProperties?: number | undefined;
1981
- minProperties?: number | undefined;
1982
- required?: string | boolean | string[] | undefined;
1983
- format?: string | undefined;
1984
- $ref?: string | undefined;
1985
- $namespace?: string | undefined;
1986
- definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1987
- properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1988
- items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
1989
- additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
1990
- patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1991
- additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
1992
- "x-value"?: any;
1993
- "x-index"?: number | undefined;
1994
- "x-pattern"?: any;
1995
- "x-display"?: any;
1996
- "x-validator"?: any;
1997
- "x-decorator"?: any;
1998
- "x-decorator-props"?: any;
1999
- "x-component"?: any;
2000
- "x-component-props"?: any;
2001
- "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
2002
- "x-content"?: any;
2003
- "x-data"?: any;
2004
- "x-visible"?: boolean | undefined;
2005
- "x-hidden"?: boolean | undefined;
2006
- "x-disabled"?: boolean | undefined;
2007
- "x-editable"?: boolean | undefined;
2008
- "x-read-only"?: boolean | undefined;
2009
- "x-read-pretty"?: boolean | undefined;
2010
- "x-compile-omitted"?: string[] | undefined;
2011
- }>>;
2012
- parsedSchema: import("vue").ComputedRef<import("@formily/json-schema").Stringify<{
2013
- [key: symbol]: any;
2014
- [key: `x-${string}`]: any;
2015
- [key: `x-${number}`]: any;
2016
- version?: string | undefined;
2017
- name?: import("@formily/json-schema").SchemaKey | undefined;
2018
- title?: any;
2019
- description?: any;
2020
- default?: any;
2021
- readOnly?: boolean | undefined;
2022
- writeOnly?: boolean | undefined;
2023
- type?: import("@formily/json-schema").SchemaTypes | undefined;
2024
- enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
2025
- const?: any;
2026
- multipleOf?: number | undefined;
2027
- maximum?: number | undefined;
2028
- exclusiveMaximum?: number | undefined;
2029
- minimum?: number | undefined;
2030
- exclusiveMinimum?: number | undefined;
2031
- maxLength?: number | undefined;
2032
- minLength?: number | undefined;
2033
- pattern?: string | RegExp | undefined;
2034
- maxItems?: number | undefined;
2035
- minItems?: number | undefined;
2036
- uniqueItems?: boolean | undefined;
2037
- maxProperties?: number | undefined;
2038
- minProperties?: number | undefined;
2039
- required?: string | boolean | string[] | undefined;
2040
- format?: string | undefined;
2041
- $ref?: string | undefined;
2042
- $namespace?: string | undefined;
2043
- definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2044
- properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2045
- items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
2046
- additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
2047
- patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2048
- additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
2049
- "x-value"?: any;
2050
- "x-index"?: number | undefined;
2051
- "x-pattern"?: any;
2052
- "x-display"?: any;
2053
- "x-validator"?: any;
2054
- "x-decorator"?: any;
2055
- "x-decorator-props"?: any;
2056
- "x-component"?: any;
2057
- "x-component-props"?: any;
2058
- "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
2059
- "x-content"?: any;
2060
- "x-data"?: any;
2061
- "x-visible"?: boolean | undefined;
2062
- "x-hidden"?: boolean | undefined;
2063
- "x-disabled"?: boolean | undefined;
2064
- "x-editable"?: boolean | undefined;
2065
- "x-read-only"?: boolean | undefined;
2066
- "x-read-pretty"?: boolean | undefined;
2067
- "x-compile-omitted"?: string[] | undefined;
2068
- }>>;
2069
- currentAnchor: import("vue").WritableComputedRef<string>;
2070
- generateAnchorList: (schema: import("@formily/json-schema").Stringify<{
2071
- [key: symbol]: any;
2072
- [key: `x-${string}`]: any;
2073
- [key: `x-${number}`]: any;
2074
- version?: string | undefined;
2075
- name?: import("@formily/json-schema").SchemaKey | undefined;
2076
- title?: any;
2077
- description?: any;
2078
- default?: any;
2079
- readOnly?: boolean | undefined;
2080
- writeOnly?: boolean | undefined;
2081
- type?: import("@formily/json-schema").SchemaTypes | undefined;
2082
- enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
2083
- const?: any;
2084
- multipleOf?: number | undefined;
2085
- maximum?: number | undefined;
2086
- exclusiveMaximum?: number | undefined;
2087
- minimum?: number | undefined;
2088
- exclusiveMinimum?: number | undefined;
2089
- maxLength?: number | undefined;
2090
- minLength?: number | undefined;
2091
- pattern?: string | RegExp | undefined;
2092
- maxItems?: number | undefined;
2093
- minItems?: number | undefined;
2094
- uniqueItems?: boolean | undefined;
2095
- maxProperties?: number | undefined;
2096
- minProperties?: number | undefined;
2097
- required?: string | boolean | string[] | undefined;
2098
- format?: string | undefined;
2099
- $ref?: string | undefined;
2100
- $namespace?: string | undefined;
2101
- definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2102
- properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2103
- items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
2104
- additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
2105
- patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2106
- additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
2107
- "x-value"?: any;
2108
- "x-index"?: number | undefined;
2109
- "x-pattern"?: any;
2110
- "x-display"?: any;
2111
- "x-validator"?: any;
2112
- "x-decorator"?: any;
2113
- "x-decorator-props"?: any;
2114
- "x-component"?: any;
2115
- "x-component-props"?: any;
2116
- "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
2117
- "x-content"?: any;
2118
- "x-data"?: any;
2119
- "x-visible"?: boolean | undefined;
2120
- "x-hidden"?: boolean | undefined;
2121
- "x-disabled"?: boolean | undefined;
2122
- "x-editable"?: boolean | undefined;
2123
- "x-read-only"?: boolean | undefined;
2124
- "x-read-pretty"?: boolean | undefined;
2125
- "x-compile-omitted"?: string[] | undefined;
2126
- }>) => void;
2127
- anchorIdList: import("vue").Ref<{
2128
- name: string;
2129
- title: string;
2130
- }[]>;
2131
- formHeight: import("vue").ComputedRef<string | undefined>;
2132
- onScroll: () => void;
2133
- queryWidget: (key: string, wrapperElement: HTMLElement, fieldList: FieldItem[]) => Promise<{
2134
- widgetElement: HTMLInputElement | null | undefined;
2135
- widgetElementList: HTMLInputElement[];
2136
- decoratorElement: HTMLElement | null | undefined;
2137
- }>;
2138
- 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<{}>>, {}>;
2139
- 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>>>, {
2140
- form: any;
2141
- }>;
2142
- NForm: any;
2143
- NTabPane: import("vue").DefineComponent<{
2144
- readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2145
- [key: string]: any;
2146
- }> | (() => import("vue").VNodeChild)>;
2147
- readonly name: {
2148
- readonly type: import("vue").PropType<string | number>;
2149
- readonly required: true;
2150
- };
2151
- readonly disabled: BooleanConstructor;
2152
- readonly displayDirective: {
2153
- readonly type: import("vue").PropType<"if" | "show" | "show:lazy">;
2154
- readonly default: "if";
2155
- };
2156
- readonly closable: {
2157
- readonly type: import("vue").PropType<boolean | undefined>;
2158
- readonly default: undefined;
2159
- };
2160
- readonly tabProps: import("vue").PropType<import("vue").HTMLAttributes>;
2161
- readonly label: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2162
- [key: string]: any;
2163
- }> | (() => import("vue").VNodeChild)>;
2164
2319
  }, {
2165
- style: import("vue").Ref<string | import("vue").CSSProperties | undefined>;
2166
- class: import("vue").Ref<string | undefined>;
2167
- mergedClsPrefix: import("vue").Ref<string>;
2168
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2169
- readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2170
- [key: string]: any;
2171
- }> | (() => import("vue").VNodeChild)>;
2172
- readonly name: {
2173
- readonly type: import("vue").PropType<string | number>;
2174
- readonly required: true;
2175
- };
2176
- readonly disabled: BooleanConstructor;
2177
- readonly displayDirective: {
2178
- readonly type: import("vue").PropType<"if" | "show" | "show:lazy">;
2179
- readonly default: "if";
2180
- };
2181
- readonly closable: {
2182
- readonly type: import("vue").PropType<boolean | undefined>;
2183
- readonly default: undefined;
2184
- };
2185
- readonly tabProps: import("vue").PropType<import("vue").HTMLAttributes>;
2186
- readonly label: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2187
- [key: string]: any;
2188
- }> | (() => import("vue").VNodeChild)>;
2189
- }>>, {
2190
- readonly disabled: boolean;
2191
- readonly closable: boolean | undefined;
2192
- readonly displayDirective: "if" | "show" | "show:lazy";
2320
+ anchor: boolean;
2321
+ maxHeight: string | number;
2322
+ column: number;
2323
+ components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
2324
+ initialData: import("../../../../../es/shared/types").AnyObject;
2325
+ parallelism: number;
2326
+ scope: import("../../../../../es/shared/types").AnyObject;
2327
+ consumer: boolean;
2193
2328
  }>;
2194
- NTabs: any;
2195
- NConfigProvider: any;
2196
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "formChange"[], "formChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2197
- fieldList: {
2198
- type: import("vue").PropType<FieldItem[]>;
2199
- };
2200
- initialData: {
2201
- type: import("vue").PropType<import("../../../../../es/shared/types").AnyObject>;
2202
- default: () => {};
2203
- };
2204
- fieldVisitor: {
2205
- type: import("vue").PropType<import("../../../../../es/components/form-render").FieldVisitor>;
2206
- };
2207
- column: {
2208
- type: NumberConstructor;
2209
- default: number;
2210
- };
2211
- maxHeight: {
2212
- type: (NumberConstructor | StringConstructor)[];
2213
- default: string;
2214
- };
2215
- anchor: {
2216
- type: BooleanConstructor;
2217
- default: boolean;
2218
- };
2219
- parallelism: {
2220
- type: NumberConstructor;
2221
- default: number;
2222
- };
2223
- businessFormatter: {
2224
- type: import("vue").PropType<import("../../../../../es/components/form-render").FormBusinessFormatter>;
2225
- };
2226
- schema: {
2227
- type: import("vue").PropType<import("@formily/json-schema").Stringify<{
2228
- [key: symbol]: any;
2229
- [key: `x-${string}`]: any;
2230
- [key: `x-${number}`]: any;
2231
- version?: string | undefined;
2232
- name?: import("@formily/json-schema").SchemaKey | undefined;
2233
- title?: any;
2234
- description?: any;
2235
- default?: any;
2236
- readOnly?: boolean | undefined;
2237
- writeOnly?: boolean | undefined;
2238
- type?: import("@formily/json-schema").SchemaTypes | undefined;
2239
- enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
2240
- const?: any;
2241
- multipleOf?: number | undefined;
2242
- maximum?: number | undefined;
2243
- exclusiveMaximum?: number | undefined;
2244
- minimum?: number | undefined;
2245
- exclusiveMinimum?: number | undefined;
2246
- maxLength?: number | undefined;
2247
- minLength?: number | undefined;
2248
- pattern?: string | RegExp | undefined;
2249
- maxItems?: number | undefined;
2250
- minItems?: number | undefined;
2251
- uniqueItems?: boolean | undefined;
2252
- maxProperties?: number | undefined;
2253
- minProperties?: number | undefined;
2254
- required?: string | boolean | string[] | undefined;
2255
- format?: string | undefined;
2256
- $ref?: string | undefined;
2257
- $namespace?: string | undefined;
2258
- definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2259
- properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2260
- items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
2261
- additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
2262
- patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2263
- additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
2264
- "x-value"?: any;
2265
- "x-index"?: number | undefined;
2266
- "x-pattern"?: any;
2267
- "x-display"?: any;
2268
- "x-validator"?: any;
2269
- "x-decorator"?: any;
2270
- "x-decorator-props"?: any;
2271
- "x-component"?: any;
2272
- "x-component-props"?: any;
2273
- "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
2274
- "x-content"?: any;
2275
- "x-data"?: any;
2276
- "x-visible"?: boolean | undefined;
2277
- "x-hidden"?: boolean | undefined;
2278
- "x-disabled"?: boolean | undefined;
2279
- "x-editable"?: boolean | undefined;
2280
- "x-read-only"?: boolean | undefined;
2281
- "x-read-pretty"?: boolean | undefined;
2282
- "x-compile-omitted"?: string[] | undefined;
2283
- }>>;
2284
- };
2285
- components: {
2286
- type: import("vue").PropType<Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
2287
- default: () => {};
2288
- };
2289
- scope: {
2290
- type: import("vue").PropType<import("../../../../../es/shared/types").AnyObject>;
2291
- default: () => {};
2292
- };
2293
- annotation: {
2294
- type: import("vue").PropType<import("../../../../../es/shared/types").AnyObject>;
2295
- };
2296
- consumer: {
2297
- type: BooleanConstructor;
2298
- default: boolean;
2299
- };
2300
- uuid: {
2301
- type: StringConstructor;
2302
- };
2303
- lifeCycle: {
2304
- type: import("vue").PropType<Partial<{
2305
- onSetup(): void;
2306
- beforeRequest(fieldKey: string, params?: import("../../../../../es/shared/types").AnyObject | undefined): void | import("../../../../../es/shared/types").UndefinedAble<import("../../../../../es/shared/types").AnyObject>;
2307
- afterRequest(fieldKey: string, payload?: any): import("../../../../../es/shared/types").AnyObject[];
2308
- }>>;
2309
- };
2310
- }>> & {
2311
- onFormChange?: ((...args: any[]) => any) | undefined;
2312
- }, {
2313
- anchor: boolean;
2314
- maxHeight: string | number;
2315
- column: number;
2316
- components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
2317
- initialData: import("../../../../../es/shared/types").AnyObject;
2318
- parallelism: number;
2319
- scope: import("../../../../../es/shared/types").AnyObject;
2320
- consumer: boolean;
2321
- }>>;
2329
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
2322
2330
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2323
2331
  export default _default;