@vue-start/pro 0.5.25 → 0.5.26
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/dist/index.d.ts +57 -40
- package/dist/index.es.js +1145 -1134
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -8,8 +8,8 @@ import { IRequestActor } from '@vue-start/request';
|
|
|
8
8
|
import * as _vue_start_store from '@vue-start/store';
|
|
9
9
|
import { TUpdater } from '@vue-start/store';
|
|
10
10
|
import { Router, RouteLocationNormalizedLoaded } from 'vue-router';
|
|
11
|
-
import { TConvert } from '@vue-start/hooks';
|
|
12
11
|
import * as lodash from 'lodash';
|
|
12
|
+
import { TConvert } from '@vue-start/hooks';
|
|
13
13
|
|
|
14
14
|
declare type TDefaultValueType = "text" | "textarea" | "password" | "digit" | "date" | "dateRange" | "time" | "timeRange" | "select" | "treeSelect" | "checkbox" | "radio" | "slider" | "switch" | "rate" | "cascader";
|
|
15
15
|
declare type TValueType = TDefaultValueType | string;
|
|
@@ -796,15 +796,22 @@ interface IProFormProvide extends IProFormProvideExtra {
|
|
|
796
796
|
columns: Ref<TColumns>;
|
|
797
797
|
}
|
|
798
798
|
declare const useProForm: () => IProFormProvide;
|
|
799
|
+
declare const useFormSubmit: (cb: (...e: any[]) => void, wait?: number, options?: Record<string, any>) => lodash.DebouncedFunc<(...e: any[]) => void>;
|
|
799
800
|
declare enum FormAction {
|
|
800
801
|
RESET = "RESET",
|
|
801
802
|
SUBMIT = "SUBMIT",
|
|
802
803
|
CONTINUE = "CONTINUE"
|
|
803
804
|
}
|
|
804
805
|
declare type TProFormOperate = ProOperateProps & {
|
|
805
|
-
onReset?: (
|
|
806
|
-
|
|
807
|
-
|
|
806
|
+
onReset?: ({ form }: {
|
|
807
|
+
form: any;
|
|
808
|
+
}) => void;
|
|
809
|
+
onSubmit?: ({ form }: {
|
|
810
|
+
form: any;
|
|
811
|
+
}) => void;
|
|
812
|
+
onContinue?: ({ form }: {
|
|
813
|
+
form: any;
|
|
814
|
+
}) => void;
|
|
808
815
|
};
|
|
809
816
|
declare const proFormProps: () => {
|
|
810
817
|
/**
|
|
@@ -876,6 +883,16 @@ declare const proFormProps: () => {
|
|
|
876
883
|
formMethods: {
|
|
877
884
|
type: PropType<string[]>;
|
|
878
885
|
};
|
|
886
|
+
/**
|
|
887
|
+
* 防抖提交
|
|
888
|
+
*/
|
|
889
|
+
debounceSubmit: {
|
|
890
|
+
type: PropType<number | {
|
|
891
|
+
wait: number;
|
|
892
|
+
options?: Record<string, any> | undefined;
|
|
893
|
+
}>;
|
|
894
|
+
default: undefined;
|
|
895
|
+
};
|
|
879
896
|
};
|
|
880
897
|
declare type ProFormProps = Partial<ExtractPropTypes<ReturnType<typeof proFormProps>>> & ProBaseProps & Omit<ProGridProps, "items"> & {
|
|
881
898
|
onFinish?: (showValues?: Record<string, any>, values?: Record<string, any>) => void;
|
|
@@ -1396,7 +1413,7 @@ declare const proListProps: () => {
|
|
|
1396
1413
|
type: PropType<Record<string, any>>;
|
|
1397
1414
|
};
|
|
1398
1415
|
paginationProps: {
|
|
1399
|
-
type: (PropType<Record<string, any>>
|
|
1416
|
+
type: (PropType<boolean> | PropType<Record<string, any>>)[];
|
|
1400
1417
|
default: undefined;
|
|
1401
1418
|
};
|
|
1402
1419
|
pageState: {
|
|
@@ -1447,7 +1464,7 @@ declare const ProList: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
1447
1464
|
type: PropType<Record<string, any>>;
|
|
1448
1465
|
};
|
|
1449
1466
|
paginationProps: {
|
|
1450
|
-
type: (PropType<Record<string, any>>
|
|
1467
|
+
type: (PropType<boolean> | PropType<Record<string, any>>)[];
|
|
1451
1468
|
default: undefined;
|
|
1452
1469
|
};
|
|
1453
1470
|
pageState: {
|
|
@@ -1484,7 +1501,7 @@ declare const ProList: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
1484
1501
|
type: PropType<Record<string, any>>;
|
|
1485
1502
|
};
|
|
1486
1503
|
paginationProps: {
|
|
1487
|
-
type: (PropType<Record<string, any>>
|
|
1504
|
+
type: (PropType<boolean> | PropType<Record<string, any>>)[];
|
|
1488
1505
|
default: undefined;
|
|
1489
1506
|
};
|
|
1490
1507
|
pageState: {
|
|
@@ -1523,7 +1540,7 @@ declare const ProDesc: vue.DefineComponent<ProDescProps, {}, {}, {}, {}, vue.Com
|
|
|
1523
1540
|
|
|
1524
1541
|
declare const typographyProps: () => {
|
|
1525
1542
|
content: {
|
|
1526
|
-
type: (
|
|
1543
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1527
1544
|
};
|
|
1528
1545
|
ellipsis: {
|
|
1529
1546
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1536,7 +1553,7 @@ declare const typographyProps: () => {
|
|
|
1536
1553
|
declare type ProTypographyProps = Partial<ExtractPropTypes<ReturnType<typeof typographyProps>>>;
|
|
1537
1554
|
declare const ProTypography: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
1538
1555
|
content: {
|
|
1539
|
-
type: (
|
|
1556
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1540
1557
|
};
|
|
1541
1558
|
ellipsis: {
|
|
1542
1559
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1547,7 +1564,7 @@ declare const ProTypography: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
1547
1564
|
popoverProps: ObjectConstructor;
|
|
1548
1565
|
}>>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, vue.EmitsOptions, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<Partial<ExtractPropTypes<{
|
|
1549
1566
|
content: {
|
|
1550
|
-
type: (
|
|
1567
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1551
1568
|
};
|
|
1552
1569
|
ellipsis: {
|
|
1553
1570
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1560,12 +1577,12 @@ declare const ProTypography: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
1560
1577
|
|
|
1561
1578
|
declare const ProShowText: vue.DefineComponent<{
|
|
1562
1579
|
value: {
|
|
1563
|
-
type: (
|
|
1580
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1564
1581
|
};
|
|
1565
1582
|
showProps: {
|
|
1566
1583
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1567
1584
|
content: {
|
|
1568
|
-
type: (
|
|
1585
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1569
1586
|
};
|
|
1570
1587
|
ellipsis: {
|
|
1571
1588
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1581,12 +1598,12 @@ declare const ProShowText: vue.DefineComponent<{
|
|
|
1581
1598
|
};
|
|
1582
1599
|
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1583
1600
|
value: {
|
|
1584
|
-
type: (
|
|
1601
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1585
1602
|
};
|
|
1586
1603
|
showProps: {
|
|
1587
1604
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1588
1605
|
content: {
|
|
1589
|
-
type: (
|
|
1606
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1590
1607
|
};
|
|
1591
1608
|
ellipsis: {
|
|
1592
1609
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1611,12 +1628,12 @@ declare const ProShowDigit: vue.DefineComponent<{
|
|
|
1611
1628
|
default: boolean;
|
|
1612
1629
|
};
|
|
1613
1630
|
value: {
|
|
1614
|
-
type: (
|
|
1631
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1615
1632
|
};
|
|
1616
1633
|
showProps: {
|
|
1617
1634
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1618
1635
|
content: {
|
|
1619
|
-
type: (
|
|
1636
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1620
1637
|
};
|
|
1621
1638
|
ellipsis: {
|
|
1622
1639
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1640,12 +1657,12 @@ declare const ProShowDigit: vue.DefineComponent<{
|
|
|
1640
1657
|
default: boolean;
|
|
1641
1658
|
};
|
|
1642
1659
|
value: {
|
|
1643
|
-
type: (
|
|
1660
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1644
1661
|
};
|
|
1645
1662
|
showProps: {
|
|
1646
1663
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1647
1664
|
content: {
|
|
1648
|
-
type: (
|
|
1665
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1649
1666
|
};
|
|
1650
1667
|
ellipsis: {
|
|
1651
1668
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1665,7 +1682,7 @@ declare const ProShowDigit: vue.DefineComponent<{
|
|
|
1665
1682
|
}>;
|
|
1666
1683
|
declare const ProShowOptions: vue.DefineComponent<{
|
|
1667
1684
|
value: {
|
|
1668
|
-
type: (
|
|
1685
|
+
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
1669
1686
|
};
|
|
1670
1687
|
options: PropType<TOptions>;
|
|
1671
1688
|
splitStr: {
|
|
@@ -1678,7 +1695,7 @@ declare const ProShowOptions: vue.DefineComponent<{
|
|
|
1678
1695
|
showProps: {
|
|
1679
1696
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1680
1697
|
content: {
|
|
1681
|
-
type: (
|
|
1698
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1682
1699
|
};
|
|
1683
1700
|
ellipsis: {
|
|
1684
1701
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1694,7 +1711,7 @@ declare const ProShowOptions: vue.DefineComponent<{
|
|
|
1694
1711
|
};
|
|
1695
1712
|
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1696
1713
|
value: {
|
|
1697
|
-
type: (
|
|
1714
|
+
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
1698
1715
|
};
|
|
1699
1716
|
options: PropType<TOptions>;
|
|
1700
1717
|
splitStr: {
|
|
@@ -1707,7 +1724,7 @@ declare const ProShowOptions: vue.DefineComponent<{
|
|
|
1707
1724
|
showProps: {
|
|
1708
1725
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1709
1726
|
content: {
|
|
1710
|
-
type: (
|
|
1727
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1711
1728
|
};
|
|
1712
1729
|
ellipsis: {
|
|
1713
1730
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1726,7 +1743,7 @@ declare const ProShowOptions: vue.DefineComponent<{
|
|
|
1726
1743
|
}>;
|
|
1727
1744
|
declare const ProShowTree: vue.DefineComponent<{
|
|
1728
1745
|
value: {
|
|
1729
|
-
type: (
|
|
1746
|
+
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
1730
1747
|
};
|
|
1731
1748
|
splitStr: {
|
|
1732
1749
|
type: StringConstructor;
|
|
@@ -1740,7 +1757,7 @@ declare const ProShowTree: vue.DefineComponent<{
|
|
|
1740
1757
|
showProps: {
|
|
1741
1758
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1742
1759
|
content: {
|
|
1743
|
-
type: (
|
|
1760
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1744
1761
|
};
|
|
1745
1762
|
ellipsis: {
|
|
1746
1763
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1756,7 +1773,7 @@ declare const ProShowTree: vue.DefineComponent<{
|
|
|
1756
1773
|
};
|
|
1757
1774
|
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1758
1775
|
value: {
|
|
1759
|
-
type: (
|
|
1776
|
+
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
1760
1777
|
};
|
|
1761
1778
|
splitStr: {
|
|
1762
1779
|
type: StringConstructor;
|
|
@@ -1770,7 +1787,7 @@ declare const ProShowTree: vue.DefineComponent<{
|
|
|
1770
1787
|
showProps: {
|
|
1771
1788
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1772
1789
|
content: {
|
|
1773
|
-
type: (
|
|
1790
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1774
1791
|
};
|
|
1775
1792
|
ellipsis: {
|
|
1776
1793
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1789,7 +1806,7 @@ declare const ProShowTree: vue.DefineComponent<{
|
|
|
1789
1806
|
}>;
|
|
1790
1807
|
declare const ProShowDate: vue.DefineComponent<{
|
|
1791
1808
|
value: {
|
|
1792
|
-
type: (
|
|
1809
|
+
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
1793
1810
|
};
|
|
1794
1811
|
splitStr: {
|
|
1795
1812
|
type: StringConstructor;
|
|
@@ -1806,7 +1823,7 @@ declare const ProShowDate: vue.DefineComponent<{
|
|
|
1806
1823
|
showProps: {
|
|
1807
1824
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1808
1825
|
content: {
|
|
1809
|
-
type: (
|
|
1826
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1810
1827
|
};
|
|
1811
1828
|
ellipsis: {
|
|
1812
1829
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1822,7 +1839,7 @@ declare const ProShowDate: vue.DefineComponent<{
|
|
|
1822
1839
|
};
|
|
1823
1840
|
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1824
1841
|
value: {
|
|
1825
|
-
type: (
|
|
1842
|
+
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
1826
1843
|
};
|
|
1827
1844
|
splitStr: {
|
|
1828
1845
|
type: StringConstructor;
|
|
@@ -1839,7 +1856,7 @@ declare const ProShowDate: vue.DefineComponent<{
|
|
|
1839
1856
|
showProps: {
|
|
1840
1857
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1841
1858
|
content: {
|
|
1842
|
-
type: (
|
|
1859
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1843
1860
|
};
|
|
1844
1861
|
ellipsis: {
|
|
1845
1862
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1854,8 +1871,8 @@ declare const ProShowDate: vue.DefineComponent<{
|
|
|
1854
1871
|
type: PropType<TConvert>;
|
|
1855
1872
|
};
|
|
1856
1873
|
}>>, {
|
|
1857
|
-
splitStr: string;
|
|
1858
1874
|
format: string;
|
|
1875
|
+
splitStr: string;
|
|
1859
1876
|
isUnix: boolean;
|
|
1860
1877
|
}>;
|
|
1861
1878
|
|
|
@@ -1873,7 +1890,7 @@ declare const ProLayout: vue.DefineComponent<{
|
|
|
1873
1890
|
* compose: 菜单第一级在header中,子级在左侧菜单
|
|
1874
1891
|
*/
|
|
1875
1892
|
layout: {
|
|
1876
|
-
type: PropType<"
|
|
1893
|
+
type: PropType<"horizontal" | "vertical" | "horizontal-v" | "compose">;
|
|
1877
1894
|
default: string;
|
|
1878
1895
|
};
|
|
1879
1896
|
findCurrentTopName: {
|
|
@@ -1921,7 +1938,7 @@ declare const ProLayout: vue.DefineComponent<{
|
|
|
1921
1938
|
* compose: 菜单第一级在header中,子级在左侧菜单
|
|
1922
1939
|
*/
|
|
1923
1940
|
layout: {
|
|
1924
|
-
type: PropType<"
|
|
1941
|
+
type: PropType<"horizontal" | "vertical" | "horizontal-v" | "compose">;
|
|
1925
1942
|
default: string;
|
|
1926
1943
|
};
|
|
1927
1944
|
findCurrentTopName: {
|
|
@@ -1956,13 +1973,13 @@ declare const ProLayout: vue.DefineComponent<{
|
|
|
1956
1973
|
type: FunctionConstructor;
|
|
1957
1974
|
};
|
|
1958
1975
|
}>>, {
|
|
1959
|
-
|
|
1976
|
+
layout: "horizontal" | "vertical" | "horizontal-v" | "compose";
|
|
1960
1977
|
fieldNames: {
|
|
1961
1978
|
children: string;
|
|
1962
1979
|
value: string;
|
|
1963
1980
|
label: string;
|
|
1964
1981
|
};
|
|
1965
|
-
|
|
1982
|
+
clsName: string;
|
|
1966
1983
|
}>;
|
|
1967
1984
|
|
|
1968
1985
|
declare type TFile = {
|
|
@@ -1977,7 +1994,7 @@ declare const ProUploaderText: vue.DefineComponent<Record<string, any>, {}, {},
|
|
|
1977
1994
|
* 文件列表
|
|
1978
1995
|
*/
|
|
1979
1996
|
declare const ProUploadList: vue.DefineComponent<{
|
|
1980
|
-
value: (
|
|
1997
|
+
value: (StringConstructor | ArrayConstructor)[];
|
|
1981
1998
|
fieldNames: {
|
|
1982
1999
|
type: ObjectConstructor;
|
|
1983
2000
|
default: {
|
|
@@ -1987,7 +2004,7 @@ declare const ProUploadList: vue.DefineComponent<{
|
|
|
1987
2004
|
};
|
|
1988
2005
|
};
|
|
1989
2006
|
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1990
|
-
value: (
|
|
2007
|
+
value: (StringConstructor | ArrayConstructor)[];
|
|
1991
2008
|
fieldNames: {
|
|
1992
2009
|
type: ObjectConstructor;
|
|
1993
2010
|
default: {
|
|
@@ -2249,9 +2266,9 @@ declare const ProCurdModalFormConnect: vue.DefineComponent<unknown, () => JSX.El
|
|
|
2249
2266
|
|
|
2250
2267
|
declare const AddButton: vue.DefineComponent<{
|
|
2251
2268
|
buttonProps: ObjectConstructor;
|
|
2252
|
-
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2269
|
+
}, () => JSX.Element | vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2253
2270
|
[key: string]: any;
|
|
2254
|
-
}>[] |
|
|
2271
|
+
}>[] | null, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
2255
2272
|
buttonProps: ObjectConstructor;
|
|
2256
2273
|
}>>, {}>;
|
|
2257
2274
|
|
|
@@ -2299,4 +2316,4 @@ declare const getSignValue: <T = any>(item: TColumn, signName: string) => T;
|
|
|
2299
2316
|
*/
|
|
2300
2317
|
declare const filterSlotsByPrefix: (slots: Record<string, any>, prefix: string) => lodash.Dictionary<any>;
|
|
2301
2318
|
|
|
2302
|
-
export { AddButton, BooleanObjType, BooleanRulesObjType, ColumnSetting, CurdAction, CurdAddAction, CurdCurrentMode, CurdMethods, CurdSubAction, ElementKeys, FieldNames, FormAction, FormItemProps, FormRulePrefixMap, IAccess, ICurdAction, ICurdAddAction, ICurdCurrentMode, ICurdOperateOpts, ICurdState, ICurdSubAction, IElementConfig, IHighConfig, IListData, IOpeItem, IOperateItem, IPer, IProConfigProvide, IProCurdProvide, IProFormProvideExtra, IProModuleProvide, IProTableProvide, IProTableProvideExtra, IRequestOpts, ISearchMode, ITableOperate, IUser, InternalNamePath, LogonUser, LogonUserKey, MustLogon, NamePath, PageHeaderProps, PaginationSlotProps, PerSuffix, Permission, PermissionProps, ProBaseProps, ProColumnSettingProps, ProConfig, ProConfigProps, ProCurd, ProCurdDesc, ProCurdDescConnect, ProCurdDescProps, ProCurdForm, ProCurdFormConnect, ProCurdFormProps, ProCurdList, ProCurdListConnect, ProCurdListProps, ProCurdModal, ProCurdModalForm, ProCurdModalFormConnect, ProCurdModalProps, ProCurdProps, ProDesc, ProDescProps, ProDispatchRequestType, ProForm, ProFormItemProps, ProFormList, ProFormListProps, ProFormProps, ProGrid, ProGridProps, ProLayout, ProList, ProListProps, ProModalCurd, ProModalCurdProps, ProModule, ProModuleProps, ProOperate, ProOperateProps, ProPage, ProPageCurd, ProPageCurdProps, ProPageProps, ProSearchForm, ProSearchFormProps, ProShowDate, ProShowDigit, ProShowOptions, ProShowText, ProShowTree, ProTable, ProTableProps, ProTypography, ProTypographyProps, ProUploadList, ProUploaderText, RequestAction, SearchMode, SearchSlotProps, TAccess, TActionEvent, TActionState, TColumn, TColumns, TConfigData, TCurdActionEvent, TDefaultValueType, TElementMap, TExecuteFunName, TExecuteItem, TExecuteName, TFile, TFormExtraMap, TInitialState, TLogonUserProvide, TMeta, TOpen, TOpenMenu, TOption, TOptions, TPageState, TProFormOperate, TRegisterStore, TRegisterStoreMap, TRouter, TTableColumn, TTableColumns, TValueType, TreeOption, TreeOptions, Wrapper, convertPathToList, convertResData, createExpose, createExposeObj, createFormItemCompFn, createModule, createProConfig, defaultPage, filterSlotsByPrefix, getColumnFormItemName, getColumnValueType, getFirstPropName, getFormItemEl, getItemEl, getSignValue, getValidValues, isValidConfig, mergeStateToList, proBaseProps, provideProCurd, provideProFormList, provideProModule, renderElement, renderElements, useAccess, useAccessMgr, useComposeRequestActor, useDispatchMeta, useDispatchStore, useDoneRequestActor, useFailedRequestActor, useGetCompByKey, useHasPer, useLogonUser, useMetaRegister, useModuleEvent, useProConfig, useProCurd, useProForm, useProFormList, useProModule, useProRouter, useProTable, useReadStore };
|
|
2319
|
+
export { AddButton, BooleanObjType, BooleanRulesObjType, ColumnSetting, CurdAction, CurdAddAction, CurdCurrentMode, CurdMethods, CurdSubAction, ElementKeys, FieldNames, FormAction, FormItemProps, FormRulePrefixMap, IAccess, ICurdAction, ICurdAddAction, ICurdCurrentMode, ICurdOperateOpts, ICurdState, ICurdSubAction, IElementConfig, IHighConfig, IListData, IOpeItem, IOperateItem, IPer, IProConfigProvide, IProCurdProvide, IProFormProvideExtra, IProModuleProvide, IProTableProvide, IProTableProvideExtra, IRequestOpts, ISearchMode, ITableOperate, IUser, InternalNamePath, LogonUser, LogonUserKey, MustLogon, NamePath, PageHeaderProps, PaginationSlotProps, PerSuffix, Permission, PermissionProps, ProBaseProps, ProColumnSettingProps, ProConfig, ProConfigProps, ProCurd, ProCurdDesc, ProCurdDescConnect, ProCurdDescProps, ProCurdForm, ProCurdFormConnect, ProCurdFormProps, ProCurdList, ProCurdListConnect, ProCurdListProps, ProCurdModal, ProCurdModalForm, ProCurdModalFormConnect, ProCurdModalProps, ProCurdProps, ProDesc, ProDescProps, ProDispatchRequestType, ProForm, ProFormItemProps, ProFormList, ProFormListProps, ProFormProps, ProGrid, ProGridProps, ProLayout, ProList, ProListProps, ProModalCurd, ProModalCurdProps, ProModule, ProModuleProps, ProOperate, ProOperateProps, ProPage, ProPageCurd, ProPageCurdProps, ProPageProps, ProSearchForm, ProSearchFormProps, ProShowDate, ProShowDigit, ProShowOptions, ProShowText, ProShowTree, ProTable, ProTableProps, ProTypography, ProTypographyProps, ProUploadList, ProUploaderText, RequestAction, SearchMode, SearchSlotProps, TAccess, TActionEvent, TActionState, TColumn, TColumns, TConfigData, TCurdActionEvent, TDefaultValueType, TElementMap, TExecuteFunName, TExecuteItem, TExecuteName, TFile, TFormExtraMap, TInitialState, TLogonUserProvide, TMeta, TOpen, TOpenMenu, TOption, TOptions, TPageState, TProFormOperate, TRegisterStore, TRegisterStoreMap, TRouter, TTableColumn, TTableColumns, TValueType, TreeOption, TreeOptions, Wrapper, convertPathToList, convertResData, createExpose, createExposeObj, createFormItemCompFn, createModule, createProConfig, defaultPage, filterSlotsByPrefix, getColumnFormItemName, getColumnValueType, getFirstPropName, getFormItemEl, getItemEl, getSignValue, getValidValues, isValidConfig, mergeStateToList, proBaseProps, provideProCurd, provideProFormList, provideProModule, renderElement, renderElements, useAccess, useAccessMgr, useComposeRequestActor, useDispatchMeta, useDispatchStore, useDoneRequestActor, useFailedRequestActor, useFormSubmit, useGetCompByKey, useHasPer, useLogonUser, useMetaRegister, useModuleEvent, useProConfig, useProCurd, useProForm, useProFormList, useProModule, useProRouter, useProTable, useReadStore };
|