@vue-start/pro 0.5.47 → 0.5.48
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/CHANGELOG.md +9 -0
- package/dist/index.css +67 -8
- package/dist/index.d.ts +60 -1
- package/dist/index.es.js +2423 -2153
- package/dist/index.js +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 0.5.48
|
|
7
|
+
|
|
8
|
+
- perf: ProLayout 非 tabs 模式下 keep-live 规则支持;
|
|
9
|
+
- feat: ProCurdListPage 组件;
|
|
10
|
+
- feat: ProCurdPageFormConnect 组件(modal 模式拓展);
|
|
11
|
+
- feat: ProCurdModule 复合组件;
|
|
12
|
+
- perf: ProCurd 新增 title 属性,支持 modal 模式弹出组件标题拼接;
|
|
13
|
+
- perf: ProTable operate 项支持 routeOpts 路由跳转配置;
|
|
14
|
+
|
|
6
15
|
# 0.5.46
|
|
7
16
|
|
|
8
17
|
- perf: ProLayout 左侧菜单添加 key;
|
package/dist/index.css
CHANGED
|
@@ -49,6 +49,9 @@
|
|
|
49
49
|
--pro-spacing-7: 28px;
|
|
50
50
|
--pro-spacing-8: 32px;
|
|
51
51
|
--pro-spacing-9: 36px;
|
|
52
|
+
|
|
53
|
+
/* 变量声明 - 不报错 */
|
|
54
|
+
--pro-table-toolbar-hei: 0px;
|
|
52
55
|
}
|
|
53
56
|
|
|
54
57
|
/********************************** pro-layout ***********************************/
|
|
@@ -273,6 +276,8 @@
|
|
|
273
276
|
|
|
274
277
|
/********************************** pro-search-form ***********************************/
|
|
275
278
|
.pro-search-form {
|
|
279
|
+
display: flex;
|
|
280
|
+
flex-wrap: wrap;
|
|
276
281
|
}
|
|
277
282
|
|
|
278
283
|
.pro-search-form .pro-form-operate {
|
|
@@ -285,6 +290,12 @@
|
|
|
285
290
|
margin-left: 12px;
|
|
286
291
|
}
|
|
287
292
|
|
|
293
|
+
.pro-search-form .pro-curd-list-search-end {
|
|
294
|
+
display: flex;
|
|
295
|
+
flex-direction: row-reverse;
|
|
296
|
+
flex-grow: 1;
|
|
297
|
+
}
|
|
298
|
+
|
|
288
299
|
/********************************** pro-form-list ***********************************/
|
|
289
300
|
|
|
290
301
|
.pro-form-list {
|
|
@@ -345,22 +356,34 @@
|
|
|
345
356
|
/********************************** pro-page ***********************************/
|
|
346
357
|
|
|
347
358
|
.pro-page {
|
|
348
|
-
--pro-page-
|
|
349
|
-
--pro-page-
|
|
359
|
+
--pro-page-hei: var(--pro-secion-hei);
|
|
360
|
+
--pro-page-header-hei: 0px;
|
|
361
|
+
--pro-page-footer-hei: 0px;
|
|
350
362
|
|
|
351
|
-
height: var(--pro-
|
|
352
|
-
max-height: var(--pro-
|
|
363
|
+
height: var(--pro-page-hei);
|
|
364
|
+
max-height: var(--pro-page-hei);
|
|
353
365
|
overflow-y: auto;
|
|
354
366
|
box-sizing: border-box;
|
|
355
367
|
}
|
|
356
368
|
|
|
369
|
+
.pro-page.has-header {
|
|
370
|
+
--pro-page-header-hei: 40px;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.pro-page.has-footer {
|
|
374
|
+
--pro-page-footer-hei: 46px;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
/* 子页模式 */
|
|
378
|
+
|
|
357
379
|
.pro-page-sub {
|
|
358
380
|
position: absolute !important;
|
|
359
381
|
top: 0;
|
|
360
382
|
right: 0;
|
|
361
383
|
bottom: 0;
|
|
362
384
|
left: 0;
|
|
363
|
-
|
|
385
|
+
z-index: 9;
|
|
386
|
+
background-color: white;
|
|
364
387
|
}
|
|
365
388
|
|
|
366
389
|
.pro-page-header {
|
|
@@ -400,6 +423,8 @@
|
|
|
400
423
|
}
|
|
401
424
|
|
|
402
425
|
.pro-page .pro-page-content {
|
|
426
|
+
box-sizing: border-box;
|
|
427
|
+
min-height: calc(var(--pro-page-hei) - var(--pro-page-header-hei) - var(--pro-page-footer-hei));
|
|
403
428
|
}
|
|
404
429
|
|
|
405
430
|
.pro-page .pro-page-footer {
|
|
@@ -421,9 +446,6 @@
|
|
|
421
446
|
background-color: white;
|
|
422
447
|
}
|
|
423
448
|
|
|
424
|
-
.pro-page-fill .pro-page-content {
|
|
425
|
-
}
|
|
426
|
-
|
|
427
449
|
.pro-page-fill .pro-page-footer {
|
|
428
450
|
position: sticky;
|
|
429
451
|
bottom: 0;
|
|
@@ -433,6 +455,43 @@
|
|
|
433
455
|
background-color: white;
|
|
434
456
|
}
|
|
435
457
|
|
|
458
|
+
/********************************** curd-list ***********************************/
|
|
459
|
+
.pro-page.curd-list {
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.pro-page.curd-list .pro-page-content {
|
|
463
|
+
height: calc(100% - var(--pro-page-header-hei));
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.pro-page.curd-list .pro-curd-list {
|
|
467
|
+
height: 100%;
|
|
468
|
+
box-sizing: border-box;
|
|
469
|
+
display: flex;
|
|
470
|
+
flex-direction: column;
|
|
471
|
+
overflow: hidden;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.pro-page.curd-list .pro-curd-list .curd-list-grow {
|
|
475
|
+
flex-grow: 1;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.pro-page.curd-list .pro-curd-list .pro-table {
|
|
479
|
+
overflow: hidden;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.pro-page.curd-list .pro-curd-list .pro-table .el-table {
|
|
483
|
+
height: calc(100% - var(--pro-table-toolbar-hei));
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
.pro-page.curd-list .pro-curd-list.has-pagination .pro-list-pagination {
|
|
487
|
+
height: var(--pro-page-footer-hei);
|
|
488
|
+
min-height: var(--pro-page-footer-hei);
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.pro-curd-list .pro-list-pagination {
|
|
492
|
+
display: flex;
|
|
493
|
+
}
|
|
494
|
+
|
|
436
495
|
/********************************** pro-tip ***********************************/
|
|
437
496
|
.pro-tip-dom {
|
|
438
497
|
display: inline-block;
|
package/dist/index.d.ts
CHANGED
|
@@ -1346,6 +1346,11 @@ interface IOperateItem {
|
|
|
1346
1346
|
perSuffix?: string;
|
|
1347
1347
|
tip?: string | VNode | ((record: Record<string, any>) => string | VNode);
|
|
1348
1348
|
tipProps?: Record<string, any> | ((record: Record<string, any>) => Record<string, any>);
|
|
1349
|
+
title?: string;
|
|
1350
|
+
routeOpts?: {
|
|
1351
|
+
name: string;
|
|
1352
|
+
query: string[];
|
|
1353
|
+
} | ((record: Record<string, any>) => Record<string, any>);
|
|
1349
1354
|
}
|
|
1350
1355
|
/**
|
|
1351
1356
|
* 整个操作栏描述
|
|
@@ -2251,6 +2256,7 @@ interface IProLayoutProvide {
|
|
|
2251
2256
|
convertName: (route: RouteLocationNormalizedLoaded) => string;
|
|
2252
2257
|
convertValue: (menu: TLayoutTabMenu) => string;
|
|
2253
2258
|
menus: Ref<TLayoutMenu[]>;
|
|
2259
|
+
showMenus: Ref<TLayoutMenu[]>;
|
|
2254
2260
|
menuMap: Ref<Record<string, TLayoutMenu>>;
|
|
2255
2261
|
tabs: Ref<TLayoutTabMenu[]>;
|
|
2256
2262
|
showTabs: Ref<boolean>;
|
|
@@ -2263,16 +2269,19 @@ declare const useProLayout: () => IProLayoutProvide;
|
|
|
2263
2269
|
declare const routerViewProps: () => {
|
|
2264
2270
|
includes: {
|
|
2265
2271
|
type: PropType<string[]>;
|
|
2272
|
+
default: never[];
|
|
2266
2273
|
};
|
|
2267
2274
|
};
|
|
2268
2275
|
declare type ProRouterViewProps = Partial<ExtractPropTypes<ReturnType<typeof routerViewProps>>>;
|
|
2269
2276
|
declare const ProRouterView: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
2270
2277
|
includes: {
|
|
2271
2278
|
type: PropType<string[]>;
|
|
2279
|
+
default: never[];
|
|
2272
2280
|
};
|
|
2273
2281
|
}>>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<Partial<ExtractPropTypes<{
|
|
2274
2282
|
includes: {
|
|
2275
2283
|
type: PropType<string[]>;
|
|
2284
|
+
default: never[];
|
|
2276
2285
|
};
|
|
2277
2286
|
}>>>, {}>;
|
|
2278
2287
|
|
|
@@ -2336,6 +2345,7 @@ declare const layoutProps: () => {
|
|
|
2336
2345
|
type: PropType<Partial<ExtractPropTypes<{
|
|
2337
2346
|
includes: {
|
|
2338
2347
|
type: PropType<string[]>;
|
|
2348
|
+
default: never[];
|
|
2339
2349
|
};
|
|
2340
2350
|
}>>>;
|
|
2341
2351
|
default: undefined;
|
|
@@ -2444,6 +2454,7 @@ declare const ProLayout: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
2444
2454
|
type: PropType<Partial<ExtractPropTypes<{
|
|
2445
2455
|
includes: {
|
|
2446
2456
|
type: PropType<string[]>;
|
|
2457
|
+
default: never[];
|
|
2447
2458
|
};
|
|
2448
2459
|
}>>>;
|
|
2449
2460
|
default: undefined;
|
|
@@ -2550,6 +2561,7 @@ declare const ProLayout: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
2550
2561
|
type: PropType<Partial<ExtractPropTypes<{
|
|
2551
2562
|
includes: {
|
|
2552
2563
|
type: PropType<string[]>;
|
|
2564
|
+
default: never[];
|
|
2553
2565
|
};
|
|
2554
2566
|
}>>>;
|
|
2555
2567
|
default: undefined;
|
|
@@ -2760,6 +2772,15 @@ declare const proCurdProps: () => {
|
|
|
2760
2772
|
convertOperate: {
|
|
2761
2773
|
type: PropType<(operate: ICurdOperateOpts, origin: ICurdOperateOpts) => ICurdOperateOpts>;
|
|
2762
2774
|
};
|
|
2775
|
+
defaultAddRecord: {
|
|
2776
|
+
type: PropType<Record<string, any>>;
|
|
2777
|
+
};
|
|
2778
|
+
title: {
|
|
2779
|
+
type: StringConstructor;
|
|
2780
|
+
};
|
|
2781
|
+
useMenuName: {
|
|
2782
|
+
type: BooleanConstructor;
|
|
2783
|
+
};
|
|
2763
2784
|
/************************* 子组件props *******************************/
|
|
2764
2785
|
listProps: {
|
|
2765
2786
|
type: PropType<Record<string, any>>;
|
|
@@ -2773,6 +2794,12 @@ declare const proCurdProps: () => {
|
|
|
2773
2794
|
modalProps: {
|
|
2774
2795
|
type: PropType<Record<string, any>>;
|
|
2775
2796
|
};
|
|
2797
|
+
pageProps: {
|
|
2798
|
+
type: PropType<Record<string, any>>;
|
|
2799
|
+
};
|
|
2800
|
+
subPageProps: {
|
|
2801
|
+
type: PropType<Record<string, any>>;
|
|
2802
|
+
};
|
|
2776
2803
|
};
|
|
2777
2804
|
declare type CurdProps = Partial<ExtractPropTypes<ReturnType<typeof proCurdProps>>> & ProBaseProps;
|
|
2778
2805
|
declare const CurdMethods: string[];
|
|
@@ -2780,6 +2807,11 @@ declare type ProCurdProps = CurdProps & Omit<ProModuleProps, "state" | "requests
|
|
|
2780
2807
|
curdState?: UnwrapNestedRefs<ICurdState>;
|
|
2781
2808
|
};
|
|
2782
2809
|
declare const ProCurd: vue.DefineComponent<ProCurdProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<ProCurdProps>, {}>;
|
|
2810
|
+
declare const useCurdCommon: () => {
|
|
2811
|
+
clearMode: () => void;
|
|
2812
|
+
operate: vue.ComputedRef<ICurdOperateOpts | undefined>;
|
|
2813
|
+
opeTitle: vue.ComputedRef<string>;
|
|
2814
|
+
};
|
|
2783
2815
|
|
|
2784
2816
|
interface IProCurdProvide {
|
|
2785
2817
|
columns: Ref<TColumns>;
|
|
@@ -2796,11 +2828,15 @@ interface IProCurdProvide {
|
|
|
2796
2828
|
operates: ICurdOperateOpts[];
|
|
2797
2829
|
getOperate: (action: ICurdAction) => ICurdOperateOpts | undefined;
|
|
2798
2830
|
refreshList: (extra?: Record<string, any>) => void;
|
|
2831
|
+
defaultAddRecord?: ComputedRef<Record<string, any> | undefined>;
|
|
2832
|
+
title?: string;
|
|
2799
2833
|
/******************子组件参数*******************/
|
|
2800
2834
|
listProps?: ComputedRef<Record<string, any> | undefined>;
|
|
2801
2835
|
formProps?: ComputedRef<Record<string, any> | undefined>;
|
|
2802
2836
|
descProps?: ComputedRef<Record<string, any> | undefined>;
|
|
2803
2837
|
modalProps?: ComputedRef<Record<string, any> | undefined>;
|
|
2838
|
+
pageProps?: ComputedRef<Record<string, any> | undefined>;
|
|
2839
|
+
subPageProps?: ComputedRef<Record<string, any> | undefined>;
|
|
2804
2840
|
}
|
|
2805
2841
|
declare const useProCurd: <T extends IProCurdProvide>() => T;
|
|
2806
2842
|
declare const provideProCurd: (ctx: IProCurdProvide) => void;
|
|
@@ -2878,6 +2914,18 @@ declare type PageCurdProps = Partial<ExtractPropTypes<ReturnType<typeof pageCurd
|
|
|
2878
2914
|
declare type ProPageCurdProps = PageCurdProps & ProCurdProps;
|
|
2879
2915
|
declare const ProPageCurd: vue.DefineComponent<ProPageCurdProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<ProPageCurdProps>, {}>;
|
|
2880
2916
|
|
|
2917
|
+
declare const proCurdModuleProps: () => {
|
|
2918
|
+
listType: {
|
|
2919
|
+
type: PropType<"page" | "list" | "none">;
|
|
2920
|
+
default: string;
|
|
2921
|
+
};
|
|
2922
|
+
modalType: {
|
|
2923
|
+
type: PropType<"page" | "modal">;
|
|
2924
|
+
};
|
|
2925
|
+
};
|
|
2926
|
+
declare type ProCurdModuleProps = Partial<ExtractPropTypes<ReturnType<typeof proCurdModuleProps>>> & ProCurdProps;
|
|
2927
|
+
declare const ProCurdModule: vue.DefineComponent<ProCurdModuleProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<ProCurdModuleProps>, {}>;
|
|
2928
|
+
|
|
2881
2929
|
declare const curdListProps: () => {
|
|
2882
2930
|
addConfig: {
|
|
2883
2931
|
type: PropType<{
|
|
@@ -2900,6 +2948,10 @@ declare type ProCurdListProps = Partial<ExtractPropTypes<ReturnType<typeof curdL
|
|
|
2900
2948
|
*/
|
|
2901
2949
|
declare const ProCurdList: vue.DefineComponent<ProCurdListProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<ProCurdListProps>, {}>;
|
|
2902
2950
|
declare const ProCurdListConnect: vue.DefineComponent<unknown, () => JSX.Element, {}, vue.ComputedOptions, vue.MethodOptions, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<unknown>, {}>;
|
|
2951
|
+
declare const ProCurdListPage: vue.DefineComponent<any, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<any>, {} | {
|
|
2952
|
+
[x: string]: any;
|
|
2953
|
+
}>;
|
|
2954
|
+
declare const ProCurdListPageConnect: vue.DefineComponent<unknown, () => JSX.Element, {}, vue.ComputedOptions, vue.MethodOptions, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<unknown>, {}>;
|
|
2903
2955
|
|
|
2904
2956
|
declare const proCurdFormProps: () => {
|
|
2905
2957
|
signName: {
|
|
@@ -2945,6 +2997,13 @@ declare const ProCurdModalForm: vue.DefineComponent<{
|
|
|
2945
2997
|
formProps: ObjectConstructor;
|
|
2946
2998
|
}>>, {}>;
|
|
2947
2999
|
declare const ProCurdModalFormConnect: vue.DefineComponent<unknown, () => JSX.Element, {}, vue.ComputedOptions, vue.MethodOptions, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<unknown>, {}>;
|
|
3000
|
+
declare const ProCurdPage: vue.DefineComponent<any, () => JSX.Element | null, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<any>, {} | {
|
|
3001
|
+
[x: string]: any;
|
|
3002
|
+
}>;
|
|
3003
|
+
declare const ProCurdFormPage: vue.DefineComponent<any, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<any>, {} | {
|
|
3004
|
+
[x: string]: any;
|
|
3005
|
+
}>;
|
|
3006
|
+
declare const ProCurdPageConnect: vue.DefineComponent<unknown, () => JSX.Element, {}, vue.ComputedOptions, vue.MethodOptions, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<unknown>, {}>;
|
|
2948
3007
|
|
|
2949
3008
|
declare const AddButton: vue.DefineComponent<{
|
|
2950
3009
|
buttonProps: ObjectConstructor;
|
|
@@ -3121,4 +3180,4 @@ declare const ProTheme: vue.DefineComponent<{
|
|
|
3121
3180
|
global: boolean;
|
|
3122
3181
|
}>;
|
|
3123
3182
|
|
|
3124
|
-
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, IProLayoutProvide, IProModuleProvide, IProTableProvide, IProTableProvideExtra, IRequestOpts, ISearchMode, ITableOperate, ITheme, IThemeProvide, IThemeToken, IUser, InternalNamePath, LogonUser, LogonUserKey, ModalCurdOpe, MustLogon, NamePath, PageHeader, 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, ProLayoutKey, ProLayoutProps, ProList, ProListProps, ProModalCurd, ProModalCurdProps, ProModule, ProModuleProps, ProOperate, ProOperateProps, ProPage, ProPageCurd, ProPageCurdProps, ProPageProps, ProRouterView, ProRouterViewProps, ProSearchForm, ProSearchFormProps, ProShowDate, ProShowDigit, ProShowOptions, ProShowText, ProShowTree, ProTable, ProTableProps, ProTheme, ProTip, ProTipProps, ProTypography, ProTypographyProps, ProUploadList, ProUploaderText, ProValue, ProWatermark, ProWatermarkProps, RequestAction, RouterMethods, SearchMode, SearchSlotProps, TAccess, TActionEvent, TActionState, TColor, TColumn, TColumns, TConfigData, TCurdActionEvent, TDark, TDefaultValueType, TElementMap, TExecuteFunName, TExecuteItem, TExecuteName, TFile, TFormExtraMap, TInitialState, TLayoutMenu, TLayoutTabMenu, TLayoutType, TLight, TLogonUserProvide, TMeta, TOpenMenu, TOption, TOptions, TPageState, TProFormOperate, TRegisterStore, TRegisterStoreMap, TRender, TRouter, TSubType, TTableColumn, TTableColumns, TValueType, ThemeKey, ThemeToken, TreeOption, TreeOptions, Wrapper, convertPathToList, convertResData, createExpose, createExposeObj, createFormItemCompFn, createModule, createProConfig, createTheme, defaultPage, filterSlotsByPrefix, getColumnFormItemName, getColumnValueType, getFirstPropName, getRealRender, getSignValue, getValidValues, isValidConfig, isValidNode, mergeState, mergeStateToList, proBaseProps, provideProCurd, provideProFormList, provideProModule, renderColumn, renderElement, renderElements, renderInputColumn, showValue, useAccess, useAccessMgr, useComposeRequestActor, useDispatchStore, useDoneRequestActor, useFailedRequestActor, useFormSubmit, useGetCompByKey, useHasPer, useHasPer2, useLogonUser, useMeta, useMetaRegister, useModuleEvent, useProConfig, useProCurd, useProForm, useProFormList, useProLayout, useProModal, useProModule, useProMsg, useProNotify, useProRouter, useProTable, useReadStore, useTheme };
|
|
3183
|
+
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, IProLayoutProvide, IProModuleProvide, IProTableProvide, IProTableProvideExtra, IRequestOpts, ISearchMode, ITableOperate, ITheme, IThemeProvide, IThemeToken, IUser, InternalNamePath, LogonUser, LogonUserKey, ModalCurdOpe, MustLogon, NamePath, PageHeader, PageHeaderProps, PaginationSlotProps, PerSuffix, Permission, PermissionProps, ProBaseProps, ProColumnSettingProps, ProConfig, ProConfigProps, ProCurd, ProCurdDesc, ProCurdDescConnect, ProCurdDescProps, ProCurdForm, ProCurdFormConnect, ProCurdFormPage, ProCurdFormProps, ProCurdList, ProCurdListConnect, ProCurdListPage, ProCurdListPageConnect, ProCurdListProps, ProCurdModal, ProCurdModalForm, ProCurdModalFormConnect, ProCurdModalProps, ProCurdModule, ProCurdModuleProps, ProCurdPage, ProCurdPageConnect, ProCurdProps, ProDesc, ProDescProps, ProDispatchRequestType, ProForm, ProFormItemProps, ProFormList, ProFormListProps, ProFormProps, ProGrid, ProGridProps, ProLayout, ProLayoutKey, ProLayoutProps, ProList, ProListProps, ProModalCurd, ProModalCurdProps, ProModule, ProModuleProps, ProOperate, ProOperateProps, ProPage, ProPageCurd, ProPageCurdProps, ProPageProps, ProRouterView, ProRouterViewProps, ProSearchForm, ProSearchFormProps, ProShowDate, ProShowDigit, ProShowOptions, ProShowText, ProShowTree, ProTable, ProTableProps, ProTheme, ProTip, ProTipProps, ProTypography, ProTypographyProps, ProUploadList, ProUploaderText, ProValue, ProWatermark, ProWatermarkProps, RequestAction, RouterMethods, SearchMode, SearchSlotProps, TAccess, TActionEvent, TActionState, TColor, TColumn, TColumns, TConfigData, TCurdActionEvent, TDark, TDefaultValueType, TElementMap, TExecuteFunName, TExecuteItem, TExecuteName, TFile, TFormExtraMap, TInitialState, TLayoutMenu, TLayoutTabMenu, TLayoutType, TLight, TLogonUserProvide, TMeta, TOpenMenu, TOption, TOptions, TPageState, TProFormOperate, TRegisterStore, TRegisterStoreMap, TRender, TRouter, TSubType, TTableColumn, TTableColumns, TValueType, ThemeKey, ThemeToken, TreeOption, TreeOptions, Wrapper, convertPathToList, convertResData, createExpose, createExposeObj, createFormItemCompFn, createModule, createProConfig, createTheme, defaultPage, filterSlotsByPrefix, getColumnFormItemName, getColumnValueType, getFirstPropName, getRealRender, getSignValue, getValidValues, isValidConfig, isValidNode, mergeState, mergeStateToList, proBaseProps, provideProCurd, provideProFormList, provideProModule, renderColumn, renderElement, renderElements, renderInputColumn, showValue, useAccess, useAccessMgr, useComposeRequestActor, useCurdCommon, useDispatchStore, useDoneRequestActor, useFailedRequestActor, useFormSubmit, useGetCompByKey, useHasPer, useHasPer2, useLogonUser, useMeta, useMetaRegister, useModuleEvent, useProConfig, useProCurd, useProForm, useProFormList, useProLayout, useProModal, useProModule, useProMsg, useProNotify, useProRouter, useProTable, useReadStore, useTheme };
|