@vue-start/pro 0.5.26 → 0.5.27
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 +69 -36
- package/dist/index.es.js +432 -414
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -566,6 +566,9 @@ interface IProConfigProvide {
|
|
|
566
566
|
expressionMethods: {
|
|
567
567
|
[key: string]: (...params: any[]) => any;
|
|
568
568
|
};
|
|
569
|
+
showMsg: (opts: Record<string, any>) => any;
|
|
570
|
+
showModal: (opts: Record<string, any>) => any;
|
|
571
|
+
showNotify: (opts: Record<string, any>) => any;
|
|
569
572
|
}
|
|
570
573
|
declare const proConfigProps: () => {
|
|
571
574
|
elementMap: {
|
|
@@ -596,8 +599,20 @@ declare const proConfigProps: () => {
|
|
|
596
599
|
[key: string]: (...params: any[]) => any;
|
|
597
600
|
}>;
|
|
598
601
|
};
|
|
602
|
+
showMsg: {
|
|
603
|
+
type: ObjectConstructor;
|
|
604
|
+
};
|
|
605
|
+
showModal: {
|
|
606
|
+
type: ObjectConstructor;
|
|
607
|
+
};
|
|
608
|
+
showNotify: {
|
|
609
|
+
type: ObjectConstructor;
|
|
610
|
+
};
|
|
599
611
|
};
|
|
600
612
|
declare const useProConfig: () => IProConfigProvide;
|
|
613
|
+
declare const useProMsg: () => (opts: Record<string, any>) => any;
|
|
614
|
+
declare const useProModal: () => (opts: Record<string, any>) => any;
|
|
615
|
+
declare const useProNotify: () => (opts: Record<string, any>) => any;
|
|
601
616
|
declare type ProConfigProps = Partial<ExtractPropTypes<ReturnType<typeof proConfigProps>>>;
|
|
602
617
|
/**
|
|
603
618
|
* 组件方式注册
|
|
@@ -631,6 +646,15 @@ declare const ProConfig: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
631
646
|
[key: string]: (...params: any[]) => any;
|
|
632
647
|
}>;
|
|
633
648
|
};
|
|
649
|
+
showMsg: {
|
|
650
|
+
type: ObjectConstructor;
|
|
651
|
+
};
|
|
652
|
+
showModal: {
|
|
653
|
+
type: ObjectConstructor;
|
|
654
|
+
};
|
|
655
|
+
showNotify: {
|
|
656
|
+
type: ObjectConstructor;
|
|
657
|
+
};
|
|
634
658
|
}>>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, vue.EmitsOptions, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<Partial<ExtractPropTypes<{
|
|
635
659
|
elementMap: {
|
|
636
660
|
type: PropType<TElementMap>;
|
|
@@ -660,6 +684,15 @@ declare const ProConfig: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
660
684
|
[key: string]: (...params: any[]) => any;
|
|
661
685
|
}>;
|
|
662
686
|
};
|
|
687
|
+
showMsg: {
|
|
688
|
+
type: ObjectConstructor;
|
|
689
|
+
};
|
|
690
|
+
showModal: {
|
|
691
|
+
type: ObjectConstructor;
|
|
692
|
+
};
|
|
693
|
+
showNotify: {
|
|
694
|
+
type: ObjectConstructor;
|
|
695
|
+
};
|
|
663
696
|
}>>>, {}>;
|
|
664
697
|
/**
|
|
665
698
|
* app.use 方式注册
|
|
@@ -1413,7 +1446,7 @@ declare const proListProps: () => {
|
|
|
1413
1446
|
type: PropType<Record<string, any>>;
|
|
1414
1447
|
};
|
|
1415
1448
|
paginationProps: {
|
|
1416
|
-
type: (PropType<
|
|
1449
|
+
type: (PropType<Record<string, any>> | PropType<boolean>)[];
|
|
1417
1450
|
default: undefined;
|
|
1418
1451
|
};
|
|
1419
1452
|
pageState: {
|
|
@@ -1464,7 +1497,7 @@ declare const ProList: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
1464
1497
|
type: PropType<Record<string, any>>;
|
|
1465
1498
|
};
|
|
1466
1499
|
paginationProps: {
|
|
1467
|
-
type: (PropType<
|
|
1500
|
+
type: (PropType<Record<string, any>> | PropType<boolean>)[];
|
|
1468
1501
|
default: undefined;
|
|
1469
1502
|
};
|
|
1470
1503
|
pageState: {
|
|
@@ -1501,7 +1534,7 @@ declare const ProList: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
1501
1534
|
type: PropType<Record<string, any>>;
|
|
1502
1535
|
};
|
|
1503
1536
|
paginationProps: {
|
|
1504
|
-
type: (PropType<
|
|
1537
|
+
type: (PropType<Record<string, any>> | PropType<boolean>)[];
|
|
1505
1538
|
default: undefined;
|
|
1506
1539
|
};
|
|
1507
1540
|
pageState: {
|
|
@@ -1540,7 +1573,7 @@ declare const ProDesc: vue.DefineComponent<ProDescProps, {}, {}, {}, {}, vue.Com
|
|
|
1540
1573
|
|
|
1541
1574
|
declare const typographyProps: () => {
|
|
1542
1575
|
content: {
|
|
1543
|
-
type: (
|
|
1576
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1544
1577
|
};
|
|
1545
1578
|
ellipsis: {
|
|
1546
1579
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1553,7 +1586,7 @@ declare const typographyProps: () => {
|
|
|
1553
1586
|
declare type ProTypographyProps = Partial<ExtractPropTypes<ReturnType<typeof typographyProps>>>;
|
|
1554
1587
|
declare const ProTypography: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
1555
1588
|
content: {
|
|
1556
|
-
type: (
|
|
1589
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1557
1590
|
};
|
|
1558
1591
|
ellipsis: {
|
|
1559
1592
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1564,7 +1597,7 @@ declare const ProTypography: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
1564
1597
|
popoverProps: ObjectConstructor;
|
|
1565
1598
|
}>>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, vue.EmitsOptions, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<Partial<ExtractPropTypes<{
|
|
1566
1599
|
content: {
|
|
1567
|
-
type: (
|
|
1600
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1568
1601
|
};
|
|
1569
1602
|
ellipsis: {
|
|
1570
1603
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1577,12 +1610,12 @@ declare const ProTypography: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
1577
1610
|
|
|
1578
1611
|
declare const ProShowText: vue.DefineComponent<{
|
|
1579
1612
|
value: {
|
|
1580
|
-
type: (
|
|
1613
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1581
1614
|
};
|
|
1582
1615
|
showProps: {
|
|
1583
1616
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1584
1617
|
content: {
|
|
1585
|
-
type: (
|
|
1618
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1586
1619
|
};
|
|
1587
1620
|
ellipsis: {
|
|
1588
1621
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1598,12 +1631,12 @@ declare const ProShowText: vue.DefineComponent<{
|
|
|
1598
1631
|
};
|
|
1599
1632
|
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1600
1633
|
value: {
|
|
1601
|
-
type: (
|
|
1634
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1602
1635
|
};
|
|
1603
1636
|
showProps: {
|
|
1604
1637
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1605
1638
|
content: {
|
|
1606
|
-
type: (
|
|
1639
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1607
1640
|
};
|
|
1608
1641
|
ellipsis: {
|
|
1609
1642
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1628,12 +1661,12 @@ declare const ProShowDigit: vue.DefineComponent<{
|
|
|
1628
1661
|
default: boolean;
|
|
1629
1662
|
};
|
|
1630
1663
|
value: {
|
|
1631
|
-
type: (
|
|
1664
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1632
1665
|
};
|
|
1633
1666
|
showProps: {
|
|
1634
1667
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1635
1668
|
content: {
|
|
1636
|
-
type: (
|
|
1669
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1637
1670
|
};
|
|
1638
1671
|
ellipsis: {
|
|
1639
1672
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1657,12 +1690,12 @@ declare const ProShowDigit: vue.DefineComponent<{
|
|
|
1657
1690
|
default: boolean;
|
|
1658
1691
|
};
|
|
1659
1692
|
value: {
|
|
1660
|
-
type: (
|
|
1693
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1661
1694
|
};
|
|
1662
1695
|
showProps: {
|
|
1663
1696
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1664
1697
|
content: {
|
|
1665
|
-
type: (
|
|
1698
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1666
1699
|
};
|
|
1667
1700
|
ellipsis: {
|
|
1668
1701
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1682,7 +1715,7 @@ declare const ProShowDigit: vue.DefineComponent<{
|
|
|
1682
1715
|
}>;
|
|
1683
1716
|
declare const ProShowOptions: vue.DefineComponent<{
|
|
1684
1717
|
value: {
|
|
1685
|
-
type: (
|
|
1718
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1686
1719
|
};
|
|
1687
1720
|
options: PropType<TOptions>;
|
|
1688
1721
|
splitStr: {
|
|
@@ -1695,7 +1728,7 @@ declare const ProShowOptions: vue.DefineComponent<{
|
|
|
1695
1728
|
showProps: {
|
|
1696
1729
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1697
1730
|
content: {
|
|
1698
|
-
type: (
|
|
1731
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1699
1732
|
};
|
|
1700
1733
|
ellipsis: {
|
|
1701
1734
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1711,7 +1744,7 @@ declare const ProShowOptions: vue.DefineComponent<{
|
|
|
1711
1744
|
};
|
|
1712
1745
|
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1713
1746
|
value: {
|
|
1714
|
-
type: (
|
|
1747
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1715
1748
|
};
|
|
1716
1749
|
options: PropType<TOptions>;
|
|
1717
1750
|
splitStr: {
|
|
@@ -1724,7 +1757,7 @@ declare const ProShowOptions: vue.DefineComponent<{
|
|
|
1724
1757
|
showProps: {
|
|
1725
1758
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1726
1759
|
content: {
|
|
1727
|
-
type: (
|
|
1760
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1728
1761
|
};
|
|
1729
1762
|
ellipsis: {
|
|
1730
1763
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1743,7 +1776,7 @@ declare const ProShowOptions: vue.DefineComponent<{
|
|
|
1743
1776
|
}>;
|
|
1744
1777
|
declare const ProShowTree: vue.DefineComponent<{
|
|
1745
1778
|
value: {
|
|
1746
|
-
type: (
|
|
1779
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1747
1780
|
};
|
|
1748
1781
|
splitStr: {
|
|
1749
1782
|
type: StringConstructor;
|
|
@@ -1757,7 +1790,7 @@ declare const ProShowTree: vue.DefineComponent<{
|
|
|
1757
1790
|
showProps: {
|
|
1758
1791
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1759
1792
|
content: {
|
|
1760
|
-
type: (
|
|
1793
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1761
1794
|
};
|
|
1762
1795
|
ellipsis: {
|
|
1763
1796
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1773,7 +1806,7 @@ declare const ProShowTree: vue.DefineComponent<{
|
|
|
1773
1806
|
};
|
|
1774
1807
|
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1775
1808
|
value: {
|
|
1776
|
-
type: (
|
|
1809
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1777
1810
|
};
|
|
1778
1811
|
splitStr: {
|
|
1779
1812
|
type: StringConstructor;
|
|
@@ -1787,7 +1820,7 @@ declare const ProShowTree: vue.DefineComponent<{
|
|
|
1787
1820
|
showProps: {
|
|
1788
1821
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1789
1822
|
content: {
|
|
1790
|
-
type: (
|
|
1823
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1791
1824
|
};
|
|
1792
1825
|
ellipsis: {
|
|
1793
1826
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1806,7 +1839,7 @@ declare const ProShowTree: vue.DefineComponent<{
|
|
|
1806
1839
|
}>;
|
|
1807
1840
|
declare const ProShowDate: vue.DefineComponent<{
|
|
1808
1841
|
value: {
|
|
1809
|
-
type: (
|
|
1842
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1810
1843
|
};
|
|
1811
1844
|
splitStr: {
|
|
1812
1845
|
type: StringConstructor;
|
|
@@ -1823,7 +1856,7 @@ declare const ProShowDate: vue.DefineComponent<{
|
|
|
1823
1856
|
showProps: {
|
|
1824
1857
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1825
1858
|
content: {
|
|
1826
|
-
type: (
|
|
1859
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1827
1860
|
};
|
|
1828
1861
|
ellipsis: {
|
|
1829
1862
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1839,7 +1872,7 @@ declare const ProShowDate: vue.DefineComponent<{
|
|
|
1839
1872
|
};
|
|
1840
1873
|
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1841
1874
|
value: {
|
|
1842
|
-
type: (
|
|
1875
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1843
1876
|
};
|
|
1844
1877
|
splitStr: {
|
|
1845
1878
|
type: StringConstructor;
|
|
@@ -1856,7 +1889,7 @@ declare const ProShowDate: vue.DefineComponent<{
|
|
|
1856
1889
|
showProps: {
|
|
1857
1890
|
type: PropType<Partial<vue.ExtractPropTypes<{
|
|
1858
1891
|
content: {
|
|
1859
|
-
type: (
|
|
1892
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1860
1893
|
};
|
|
1861
1894
|
ellipsis: {
|
|
1862
1895
|
type: (BooleanConstructor | PropType<{
|
|
@@ -1871,8 +1904,8 @@ declare const ProShowDate: vue.DefineComponent<{
|
|
|
1871
1904
|
type: PropType<TConvert>;
|
|
1872
1905
|
};
|
|
1873
1906
|
}>>, {
|
|
1874
|
-
format: string;
|
|
1875
1907
|
splitStr: string;
|
|
1908
|
+
format: string;
|
|
1876
1909
|
isUnix: boolean;
|
|
1877
1910
|
}>;
|
|
1878
1911
|
|
|
@@ -1890,7 +1923,7 @@ declare const ProLayout: vue.DefineComponent<{
|
|
|
1890
1923
|
* compose: 菜单第一级在header中,子级在左侧菜单
|
|
1891
1924
|
*/
|
|
1892
1925
|
layout: {
|
|
1893
|
-
type: PropType<"
|
|
1926
|
+
type: PropType<"vertical" | "horizontal" | "horizontal-v" | "compose">;
|
|
1894
1927
|
default: string;
|
|
1895
1928
|
};
|
|
1896
1929
|
findCurrentTopName: {
|
|
@@ -1938,7 +1971,7 @@ declare const ProLayout: vue.DefineComponent<{
|
|
|
1938
1971
|
* compose: 菜单第一级在header中,子级在左侧菜单
|
|
1939
1972
|
*/
|
|
1940
1973
|
layout: {
|
|
1941
|
-
type: PropType<"
|
|
1974
|
+
type: PropType<"vertical" | "horizontal" | "horizontal-v" | "compose">;
|
|
1942
1975
|
default: string;
|
|
1943
1976
|
};
|
|
1944
1977
|
findCurrentTopName: {
|
|
@@ -1973,13 +2006,13 @@ declare const ProLayout: vue.DefineComponent<{
|
|
|
1973
2006
|
type: FunctionConstructor;
|
|
1974
2007
|
};
|
|
1975
2008
|
}>>, {
|
|
1976
|
-
|
|
2009
|
+
clsName: string;
|
|
1977
2010
|
fieldNames: {
|
|
1978
2011
|
children: string;
|
|
1979
2012
|
value: string;
|
|
1980
2013
|
label: string;
|
|
1981
2014
|
};
|
|
1982
|
-
|
|
2015
|
+
layout: "vertical" | "horizontal" | "horizontal-v" | "compose";
|
|
1983
2016
|
}>;
|
|
1984
2017
|
|
|
1985
2018
|
declare type TFile = {
|
|
@@ -1994,7 +2027,7 @@ declare const ProUploaderText: vue.DefineComponent<Record<string, any>, {}, {},
|
|
|
1994
2027
|
* 文件列表
|
|
1995
2028
|
*/
|
|
1996
2029
|
declare const ProUploadList: vue.DefineComponent<{
|
|
1997
|
-
value: (
|
|
2030
|
+
value: (ArrayConstructor | StringConstructor)[];
|
|
1998
2031
|
fieldNames: {
|
|
1999
2032
|
type: ObjectConstructor;
|
|
2000
2033
|
default: {
|
|
@@ -2004,7 +2037,7 @@ declare const ProUploadList: vue.DefineComponent<{
|
|
|
2004
2037
|
};
|
|
2005
2038
|
};
|
|
2006
2039
|
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
2007
|
-
value: (
|
|
2040
|
+
value: (ArrayConstructor | StringConstructor)[];
|
|
2008
2041
|
fieldNames: {
|
|
2009
2042
|
type: ObjectConstructor;
|
|
2010
2043
|
default: {
|
|
@@ -2266,9 +2299,9 @@ declare const ProCurdModalFormConnect: vue.DefineComponent<unknown, () => JSX.El
|
|
|
2266
2299
|
|
|
2267
2300
|
declare const AddButton: vue.DefineComponent<{
|
|
2268
2301
|
buttonProps: ObjectConstructor;
|
|
2269
|
-
}, () =>
|
|
2302
|
+
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2270
2303
|
[key: string]: any;
|
|
2271
|
-
}>[] | null, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
2304
|
+
}>[] | JSX.Element | null, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
2272
2305
|
buttonProps: ObjectConstructor;
|
|
2273
2306
|
}>>, {}>;
|
|
2274
2307
|
|
|
@@ -2316,4 +2349,4 @@ declare const getSignValue: <T = any>(item: TColumn, signName: string) => T;
|
|
|
2316
2349
|
*/
|
|
2317
2350
|
declare const filterSlotsByPrefix: (slots: Record<string, any>, prefix: string) => lodash.Dictionary<any>;
|
|
2318
2351
|
|
|
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 };
|
|
2352
|
+
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, useProModal, useProModule, useProMsg, useProNotify, useProRouter, useProTable, useReadStore };
|