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