@pubinfo/module-rbac 2.0.2 → 2.0.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/LICENSE +21 -0
- package/dist/components/ResourceSelector/hooks/useAppAndResource.d.ts +15 -6
- package/dist/components/RoleSelector/useRole.d.ts +68 -4
- package/dist/index.js +4 -7
- package/dist/stores/view.d.ts +126 -21
- package/dist/utils/routeSystem.d.ts +126 -21
- package/dist/views/blackWhiteList/index.vue.d.ts +40 -40
- package/dist/views/data-permission/components/createAndEditDataPermission.vue.d.ts +4 -4
- package/dist/views/data-permission/index.vue.d.ts +44 -44
- package/dist/views/dictionary/index.vue.d.ts +40 -40
- package/dist/views/dictionary/itemlist.vue.d.ts +40 -40
- package/dist/views/group/index.vue.d.ts +40 -40
- package/dist/views/log_center/components/browserType.vue.d.ts +2 -2
- package/dist/views/log_center/components/loginHistoryDetail.vue.d.ts +2 -2
- package/dist/views/log_center/components/operateHistoryDetail.vue.d.ts +2 -2
- package/dist/views/log_center/login_history.vue.d.ts +40 -40
- package/dist/views/log_center/operate_history.vue.d.ts +40 -40
- package/dist/views/position/index.vue.d.ts +40 -40
- package/dist/views/region/index.vue.d.ts +40 -40
- package/dist/views/resource/hooks/useMetaForm.d.ts +8 -1
- package/dist/views/resource/index.vue.d.ts +40 -40
- package/dist/views/role/components/ResourceRelation.vue.d.ts +40 -40
- package/dist/views/role/index.vue.d.ts +80 -80
- package/dist/views/role_group/index.vue.d.ts +40 -40
- package/dist/views/tenant/index.vue.d.ts +40 -40
- package/dist/views/user/index.vue.d.ts +40 -40
- package/package.json +3 -3
- package/src/composables/useWebSocketManager.ts +0 -1
|
@@ -1,49 +1,49 @@
|
|
|
1
1
|
import { ACTION } from './enum';
|
|
2
2
|
declare const _default: import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').DefineComponent<{}, {}, {}, {}, {}, import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').ComponentOptionsMixin, import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').ComponentOptionsMixin, {}, string, import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').ComponentProvideOptions, true, {
|
|
3
|
-
tableRef: import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').CreateComponentPublicInstanceWithMixins<Readonly<
|
|
4
|
-
request:
|
|
3
|
+
tableRef: import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
4
|
+
request: PropType<import('@pubinfo/pro-components').ProTableProps["request"]>;
|
|
5
5
|
dataSource: {
|
|
6
|
-
type:
|
|
6
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["dataSource"]>;
|
|
7
7
|
default: () => never[];
|
|
8
8
|
};
|
|
9
9
|
params: {
|
|
10
|
-
type:
|
|
10
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["params"]>;
|
|
11
11
|
default: () => {};
|
|
12
12
|
};
|
|
13
13
|
columns: {
|
|
14
|
-
type:
|
|
14
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["columns"]>;
|
|
15
15
|
default: () => never[];
|
|
16
16
|
};
|
|
17
17
|
columnsState: {
|
|
18
|
-
type:
|
|
18
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["columnsState"]>;
|
|
19
19
|
default: () => {};
|
|
20
20
|
};
|
|
21
21
|
search: {
|
|
22
|
-
type:
|
|
22
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["search"]>;
|
|
23
23
|
default: boolean;
|
|
24
24
|
};
|
|
25
25
|
toolbar: {
|
|
26
|
-
type:
|
|
26
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["toolbar"]>;
|
|
27
27
|
default: boolean;
|
|
28
28
|
};
|
|
29
29
|
beforeSearchSubmit: {
|
|
30
|
-
type:
|
|
30
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["beforeSearchSubmit"]>;
|
|
31
31
|
default: (arg: import('@pubinfo/pro-components').QueryData) => any;
|
|
32
32
|
};
|
|
33
33
|
postData: {
|
|
34
|
-
type:
|
|
34
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["postData"]>;
|
|
35
35
|
default: (arg: import('@pubinfo/pro-components').Recordable[]) => import('@pubinfo/pro-components').Recordable[];
|
|
36
36
|
};
|
|
37
37
|
cardBordered: {
|
|
38
|
-
type:
|
|
38
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["cardBordered"]>;
|
|
39
39
|
default: boolean;
|
|
40
40
|
};
|
|
41
41
|
autoHeight: {
|
|
42
|
-
type:
|
|
42
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["autoHeight"]>;
|
|
43
43
|
default: boolean;
|
|
44
44
|
};
|
|
45
45
|
manualRequest: {
|
|
46
|
-
type:
|
|
46
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["manualRequest"]>;
|
|
47
47
|
default: boolean;
|
|
48
48
|
};
|
|
49
49
|
prefixCls: {
|
|
@@ -471,26 +471,26 @@ declare const _default: import('../../../../../node_modules/.pnpm/vue@3.5.17_typ
|
|
|
471
471
|
type: NumberConstructor;
|
|
472
472
|
};
|
|
473
473
|
submitter: {
|
|
474
|
-
type:
|
|
474
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["submitter"]>;
|
|
475
475
|
default: () => {};
|
|
476
476
|
};
|
|
477
477
|
onFinish: {
|
|
478
|
-
type:
|
|
478
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["onFinish"]>;
|
|
479
479
|
};
|
|
480
480
|
readonly: {
|
|
481
|
-
type:
|
|
481
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["readonly"]>;
|
|
482
482
|
default: boolean;
|
|
483
483
|
};
|
|
484
484
|
grid: {
|
|
485
|
-
type:
|
|
485
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["grid"]>;
|
|
486
486
|
default: boolean;
|
|
487
487
|
};
|
|
488
488
|
rowProps: {
|
|
489
|
-
type:
|
|
489
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["rowProps"]>;
|
|
490
490
|
default: () => {};
|
|
491
491
|
};
|
|
492
492
|
colProps: {
|
|
493
|
-
type:
|
|
493
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["colProps"]>;
|
|
494
494
|
default: () => {};
|
|
495
495
|
};
|
|
496
496
|
layout: any;
|
|
@@ -715,7 +715,7 @@ declare const _default: import('../../../../../node_modules/.pnpm/vue@3.5.17_typ
|
|
|
715
715
|
toolbar: boolean | Partial<import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').ExtractPropTypes<{
|
|
716
716
|
title: StringConstructor;
|
|
717
717
|
settings: {
|
|
718
|
-
type:
|
|
718
|
+
type: PropType<import('@pubinfo/pro-components').ToolBarSetting[] | boolean>;
|
|
719
719
|
default: () => never[];
|
|
720
720
|
};
|
|
721
721
|
}>> | undefined;
|
|
@@ -757,50 +757,50 @@ declare const _default: import('../../../../../node_modules/.pnpm/vue@3.5.17_typ
|
|
|
757
757
|
C: {};
|
|
758
758
|
M: {};
|
|
759
759
|
Defaults: {};
|
|
760
|
-
}, Readonly<
|
|
761
|
-
request:
|
|
760
|
+
}, Readonly<globalThis.ExtractPropTypes<{
|
|
761
|
+
request: PropType<import('@pubinfo/pro-components').ProTableProps["request"]>;
|
|
762
762
|
dataSource: {
|
|
763
|
-
type:
|
|
763
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["dataSource"]>;
|
|
764
764
|
default: () => never[];
|
|
765
765
|
};
|
|
766
766
|
params: {
|
|
767
|
-
type:
|
|
767
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["params"]>;
|
|
768
768
|
default: () => {};
|
|
769
769
|
};
|
|
770
770
|
columns: {
|
|
771
|
-
type:
|
|
771
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["columns"]>;
|
|
772
772
|
default: () => never[];
|
|
773
773
|
};
|
|
774
774
|
columnsState: {
|
|
775
|
-
type:
|
|
775
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["columnsState"]>;
|
|
776
776
|
default: () => {};
|
|
777
777
|
};
|
|
778
778
|
search: {
|
|
779
|
-
type:
|
|
779
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["search"]>;
|
|
780
780
|
default: boolean;
|
|
781
781
|
};
|
|
782
782
|
toolbar: {
|
|
783
|
-
type:
|
|
783
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["toolbar"]>;
|
|
784
784
|
default: boolean;
|
|
785
785
|
};
|
|
786
786
|
beforeSearchSubmit: {
|
|
787
|
-
type:
|
|
787
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["beforeSearchSubmit"]>;
|
|
788
788
|
default: (arg: import('@pubinfo/pro-components').QueryData) => any;
|
|
789
789
|
};
|
|
790
790
|
postData: {
|
|
791
|
-
type:
|
|
791
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["postData"]>;
|
|
792
792
|
default: (arg: import('@pubinfo/pro-components').Recordable[]) => import('@pubinfo/pro-components').Recordable[];
|
|
793
793
|
};
|
|
794
794
|
cardBordered: {
|
|
795
|
-
type:
|
|
795
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["cardBordered"]>;
|
|
796
796
|
default: boolean;
|
|
797
797
|
};
|
|
798
798
|
autoHeight: {
|
|
799
|
-
type:
|
|
799
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["autoHeight"]>;
|
|
800
800
|
default: boolean;
|
|
801
801
|
};
|
|
802
802
|
manualRequest: {
|
|
803
|
-
type:
|
|
803
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["manualRequest"]>;
|
|
804
804
|
default: boolean;
|
|
805
805
|
};
|
|
806
806
|
prefixCls: {
|
|
@@ -1228,26 +1228,26 @@ declare const _default: import('../../../../../node_modules/.pnpm/vue@3.5.17_typ
|
|
|
1228
1228
|
type: NumberConstructor;
|
|
1229
1229
|
};
|
|
1230
1230
|
submitter: {
|
|
1231
|
-
type:
|
|
1231
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["submitter"]>;
|
|
1232
1232
|
default: () => {};
|
|
1233
1233
|
};
|
|
1234
1234
|
onFinish: {
|
|
1235
|
-
type:
|
|
1235
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["onFinish"]>;
|
|
1236
1236
|
};
|
|
1237
1237
|
readonly: {
|
|
1238
|
-
type:
|
|
1238
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["readonly"]>;
|
|
1239
1239
|
default: boolean;
|
|
1240
1240
|
};
|
|
1241
1241
|
grid: {
|
|
1242
|
-
type:
|
|
1242
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["grid"]>;
|
|
1243
1243
|
default: boolean;
|
|
1244
1244
|
};
|
|
1245
1245
|
rowProps: {
|
|
1246
|
-
type:
|
|
1246
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["rowProps"]>;
|
|
1247
1247
|
default: () => {};
|
|
1248
1248
|
};
|
|
1249
1249
|
colProps: {
|
|
1250
|
-
type:
|
|
1250
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["colProps"]>;
|
|
1251
1251
|
default: () => {};
|
|
1252
1252
|
};
|
|
1253
1253
|
layout: any;
|
|
@@ -1472,7 +1472,7 @@ declare const _default: import('../../../../../node_modules/.pnpm/vue@3.5.17_typ
|
|
|
1472
1472
|
toolbar: boolean | Partial<import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').ExtractPropTypes<{
|
|
1473
1473
|
title: StringConstructor;
|
|
1474
1474
|
settings: {
|
|
1475
|
-
type:
|
|
1475
|
+
type: PropType<import('@pubinfo/pro-components').ToolBarSetting[] | boolean>;
|
|
1476
1476
|
default: () => never[];
|
|
1477
1477
|
};
|
|
1478
1478
|
}>> | undefined;
|
|
@@ -1568,50 +1568,50 @@ declare const _default: import('../../../../../node_modules/.pnpm/vue@3.5.17_typ
|
|
|
1568
1568
|
relationRef: import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1569
1569
|
open: (record: import('./interface').TreeNode) => void;
|
|
1570
1570
|
}, {}, {}, {}, import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').ComponentOptionsMixin, import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').ComponentOptionsMixin, {}, import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').PublicProps, {}, true, {}, {}, import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').GlobalComponents, import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').GlobalDirectives, string, {
|
|
1571
|
-
protable: import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').CreateComponentPublicInstanceWithMixins<Readonly<
|
|
1572
|
-
request:
|
|
1571
|
+
protable: import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
1572
|
+
request: PropType<import('@pubinfo/pro-components').ProTableProps["request"]>;
|
|
1573
1573
|
dataSource: {
|
|
1574
|
-
type:
|
|
1574
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["dataSource"]>;
|
|
1575
1575
|
default: () => never[];
|
|
1576
1576
|
};
|
|
1577
1577
|
params: {
|
|
1578
|
-
type:
|
|
1578
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["params"]>;
|
|
1579
1579
|
default: () => {};
|
|
1580
1580
|
};
|
|
1581
1581
|
columns: {
|
|
1582
|
-
type:
|
|
1582
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["columns"]>;
|
|
1583
1583
|
default: () => never[];
|
|
1584
1584
|
};
|
|
1585
1585
|
columnsState: {
|
|
1586
|
-
type:
|
|
1586
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["columnsState"]>;
|
|
1587
1587
|
default: () => {};
|
|
1588
1588
|
};
|
|
1589
1589
|
search: {
|
|
1590
|
-
type:
|
|
1590
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["search"]>;
|
|
1591
1591
|
default: boolean;
|
|
1592
1592
|
};
|
|
1593
1593
|
toolbar: {
|
|
1594
|
-
type:
|
|
1594
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["toolbar"]>;
|
|
1595
1595
|
default: boolean;
|
|
1596
1596
|
};
|
|
1597
1597
|
beforeSearchSubmit: {
|
|
1598
|
-
type:
|
|
1598
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["beforeSearchSubmit"]>;
|
|
1599
1599
|
default: (arg: import('@pubinfo/pro-components').QueryData) => any;
|
|
1600
1600
|
};
|
|
1601
1601
|
postData: {
|
|
1602
|
-
type:
|
|
1602
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["postData"]>;
|
|
1603
1603
|
default: (arg: import('@pubinfo/pro-components').Recordable[]) => import('@pubinfo/pro-components').Recordable[];
|
|
1604
1604
|
};
|
|
1605
1605
|
cardBordered: {
|
|
1606
|
-
type:
|
|
1606
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["cardBordered"]>;
|
|
1607
1607
|
default: boolean;
|
|
1608
1608
|
};
|
|
1609
1609
|
autoHeight: {
|
|
1610
|
-
type:
|
|
1610
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["autoHeight"]>;
|
|
1611
1611
|
default: boolean;
|
|
1612
1612
|
};
|
|
1613
1613
|
manualRequest: {
|
|
1614
|
-
type:
|
|
1614
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["manualRequest"]>;
|
|
1615
1615
|
default: boolean;
|
|
1616
1616
|
};
|
|
1617
1617
|
prefixCls: {
|
|
@@ -2039,26 +2039,26 @@ declare const _default: import('../../../../../node_modules/.pnpm/vue@3.5.17_typ
|
|
|
2039
2039
|
type: NumberConstructor;
|
|
2040
2040
|
};
|
|
2041
2041
|
submitter: {
|
|
2042
|
-
type:
|
|
2042
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["submitter"]>;
|
|
2043
2043
|
default: () => {};
|
|
2044
2044
|
};
|
|
2045
2045
|
onFinish: {
|
|
2046
|
-
type:
|
|
2046
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["onFinish"]>;
|
|
2047
2047
|
};
|
|
2048
2048
|
readonly: {
|
|
2049
|
-
type:
|
|
2049
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["readonly"]>;
|
|
2050
2050
|
default: boolean;
|
|
2051
2051
|
};
|
|
2052
2052
|
grid: {
|
|
2053
|
-
type:
|
|
2053
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["grid"]>;
|
|
2054
2054
|
default: boolean;
|
|
2055
2055
|
};
|
|
2056
2056
|
rowProps: {
|
|
2057
|
-
type:
|
|
2057
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["rowProps"]>;
|
|
2058
2058
|
default: () => {};
|
|
2059
2059
|
};
|
|
2060
2060
|
colProps: {
|
|
2061
|
-
type:
|
|
2061
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["colProps"]>;
|
|
2062
2062
|
default: () => {};
|
|
2063
2063
|
};
|
|
2064
2064
|
layout: any;
|
|
@@ -2283,7 +2283,7 @@ declare const _default: import('../../../../../node_modules/.pnpm/vue@3.5.17_typ
|
|
|
2283
2283
|
toolbar: boolean | Partial<import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').ExtractPropTypes<{
|
|
2284
2284
|
title: StringConstructor;
|
|
2285
2285
|
settings: {
|
|
2286
|
-
type:
|
|
2286
|
+
type: PropType<import('@pubinfo/pro-components').ToolBarSetting[] | boolean>;
|
|
2287
2287
|
default: () => never[];
|
|
2288
2288
|
};
|
|
2289
2289
|
}>> | undefined;
|
|
@@ -2325,50 +2325,50 @@ declare const _default: import('../../../../../node_modules/.pnpm/vue@3.5.17_typ
|
|
|
2325
2325
|
C: {};
|
|
2326
2326
|
M: {};
|
|
2327
2327
|
Defaults: {};
|
|
2328
|
-
}, Readonly<
|
|
2329
|
-
request:
|
|
2328
|
+
}, Readonly<globalThis.ExtractPropTypes<{
|
|
2329
|
+
request: PropType<import('@pubinfo/pro-components').ProTableProps["request"]>;
|
|
2330
2330
|
dataSource: {
|
|
2331
|
-
type:
|
|
2331
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["dataSource"]>;
|
|
2332
2332
|
default: () => never[];
|
|
2333
2333
|
};
|
|
2334
2334
|
params: {
|
|
2335
|
-
type:
|
|
2335
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["params"]>;
|
|
2336
2336
|
default: () => {};
|
|
2337
2337
|
};
|
|
2338
2338
|
columns: {
|
|
2339
|
-
type:
|
|
2339
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["columns"]>;
|
|
2340
2340
|
default: () => never[];
|
|
2341
2341
|
};
|
|
2342
2342
|
columnsState: {
|
|
2343
|
-
type:
|
|
2343
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["columnsState"]>;
|
|
2344
2344
|
default: () => {};
|
|
2345
2345
|
};
|
|
2346
2346
|
search: {
|
|
2347
|
-
type:
|
|
2347
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["search"]>;
|
|
2348
2348
|
default: boolean;
|
|
2349
2349
|
};
|
|
2350
2350
|
toolbar: {
|
|
2351
|
-
type:
|
|
2351
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["toolbar"]>;
|
|
2352
2352
|
default: boolean;
|
|
2353
2353
|
};
|
|
2354
2354
|
beforeSearchSubmit: {
|
|
2355
|
-
type:
|
|
2355
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["beforeSearchSubmit"]>;
|
|
2356
2356
|
default: (arg: import('@pubinfo/pro-components').QueryData) => any;
|
|
2357
2357
|
};
|
|
2358
2358
|
postData: {
|
|
2359
|
-
type:
|
|
2359
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["postData"]>;
|
|
2360
2360
|
default: (arg: import('@pubinfo/pro-components').Recordable[]) => import('@pubinfo/pro-components').Recordable[];
|
|
2361
2361
|
};
|
|
2362
2362
|
cardBordered: {
|
|
2363
|
-
type:
|
|
2363
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["cardBordered"]>;
|
|
2364
2364
|
default: boolean;
|
|
2365
2365
|
};
|
|
2366
2366
|
autoHeight: {
|
|
2367
|
-
type:
|
|
2367
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["autoHeight"]>;
|
|
2368
2368
|
default: boolean;
|
|
2369
2369
|
};
|
|
2370
2370
|
manualRequest: {
|
|
2371
|
-
type:
|
|
2371
|
+
type: PropType<import('@pubinfo/pro-components').ProTableProps["manualRequest"]>;
|
|
2372
2372
|
default: boolean;
|
|
2373
2373
|
};
|
|
2374
2374
|
prefixCls: {
|
|
@@ -2796,26 +2796,26 @@ declare const _default: import('../../../../../node_modules/.pnpm/vue@3.5.17_typ
|
|
|
2796
2796
|
type: NumberConstructor;
|
|
2797
2797
|
};
|
|
2798
2798
|
submitter: {
|
|
2799
|
-
type:
|
|
2799
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["submitter"]>;
|
|
2800
2800
|
default: () => {};
|
|
2801
2801
|
};
|
|
2802
2802
|
onFinish: {
|
|
2803
|
-
type:
|
|
2803
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["onFinish"]>;
|
|
2804
2804
|
};
|
|
2805
2805
|
readonly: {
|
|
2806
|
-
type:
|
|
2806
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["readonly"]>;
|
|
2807
2807
|
default: boolean;
|
|
2808
2808
|
};
|
|
2809
2809
|
grid: {
|
|
2810
|
-
type:
|
|
2810
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["grid"]>;
|
|
2811
2811
|
default: boolean;
|
|
2812
2812
|
};
|
|
2813
2813
|
rowProps: {
|
|
2814
|
-
type:
|
|
2814
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["rowProps"]>;
|
|
2815
2815
|
default: () => {};
|
|
2816
2816
|
};
|
|
2817
2817
|
colProps: {
|
|
2818
|
-
type:
|
|
2818
|
+
type: PropType<import('node_modules/@pubinfo/pro-components/es/pro-form/components').CommonFormProps["colProps"]>;
|
|
2819
2819
|
default: () => {};
|
|
2820
2820
|
};
|
|
2821
2821
|
layout: any;
|
|
@@ -3040,7 +3040,7 @@ declare const _default: import('../../../../../node_modules/.pnpm/vue@3.5.17_typ
|
|
|
3040
3040
|
toolbar: boolean | Partial<import('../../../../../node_modules/.pnpm/vue@3.5.17_typescript@5.8.3/node_modules/vue').ExtractPropTypes<{
|
|
3041
3041
|
title: StringConstructor;
|
|
3042
3042
|
settings: {
|
|
3043
|
-
type:
|
|
3043
|
+
type: PropType<import('@pubinfo/pro-components').ToolBarSetting[] | boolean>;
|
|
3044
3044
|
default: () => never[];
|
|
3045
3045
|
};
|
|
3046
3046
|
}>> | undefined;
|