@gx-design-vue/pro-table 0.2.0-beta.11 → 0.2.0-beta.13
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/ProTable.d.ts +27 -46
- package/dist/pro-table.mjs +5756 -5741
- package/dist/pro-table.umd.js +40 -40
- package/package.json +4 -4
package/dist/ProTable.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { CSSProperties } from 'vue';
|
|
1
2
|
import type { Key } from './_utils';
|
|
2
3
|
import type { OptionConfig } from './types/TableTypings';
|
|
3
4
|
import type { ProColumnsType } from './types/ColumnTypings';
|
|
@@ -49,7 +50,7 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
49
50
|
};
|
|
50
51
|
tableClassName: import("vue").PropType<string | undefined>;
|
|
51
52
|
tableStyle: {
|
|
52
|
-
type: import("vue").PropType<
|
|
53
|
+
type: import("vue").PropType<CSSProperties | undefined>;
|
|
53
54
|
};
|
|
54
55
|
toolBarBtn: {
|
|
55
56
|
type: import("vue").PropType<ToolBarBtnRender>;
|
|
@@ -206,12 +207,7 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
206
207
|
defaultExpandAllRows: {
|
|
207
208
|
type: BooleanConstructor;
|
|
208
209
|
default: boolean;
|
|
209
|
-
};
|
|
210
|
-
* @Author gx12358
|
|
211
|
-
* @DateTime 2022/1/21
|
|
212
|
-
* @lastTime 2022/1/21
|
|
213
|
-
* @description Tabel-settingColums hooks 方法
|
|
214
|
-
*/
|
|
210
|
+
};
|
|
215
211
|
indentSize: NumberConstructor;
|
|
216
212
|
expandIconColumnIndex: NumberConstructor;
|
|
217
213
|
showExpandColumn: {
|
|
@@ -220,12 +216,7 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
220
216
|
};
|
|
221
217
|
expandedRowClassName: {
|
|
222
218
|
type: import("vue").PropType<import("ant-design-vue/es/vc-table/interface").RowClassName<any>>;
|
|
223
|
-
default: import("ant-design-vue/es/vc-table/interface").RowClassName<any>;
|
|
224
|
-
* @Author gx12358
|
|
225
|
-
* @DateTime 2022/1/21
|
|
226
|
-
* @lastTime 2022/1/21
|
|
227
|
-
* @description Tabel-Form(搜索) hooks 方法
|
|
228
|
-
*/
|
|
219
|
+
default: import("ant-design-vue/es/vc-table/interface").RowClassName<any>;
|
|
229
220
|
};
|
|
230
221
|
childrenColumnName: {
|
|
231
222
|
type: import("vue").PropType<string>;
|
|
@@ -320,12 +311,12 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
320
311
|
color: import("vue").PropType<import("ant-design-vue/es/_util/type").LiteralUnion<import("ant-design-vue/es/_util/colors").PresetColorType>>;
|
|
321
312
|
transitionName: StringConstructor;
|
|
322
313
|
overlayStyle: {
|
|
323
|
-
type: import("vue").PropType<
|
|
324
|
-
default:
|
|
314
|
+
type: import("vue").PropType<CSSProperties>;
|
|
315
|
+
default: CSSProperties;
|
|
325
316
|
};
|
|
326
317
|
overlayInnerStyle: {
|
|
327
|
-
type: import("vue").PropType<
|
|
328
|
-
default:
|
|
318
|
+
type: import("vue").PropType<CSSProperties>;
|
|
319
|
+
default: CSSProperties;
|
|
329
320
|
};
|
|
330
321
|
overlayClassName: StringConstructor;
|
|
331
322
|
openClassName: StringConstructor;
|
|
@@ -374,12 +365,12 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
374
365
|
color: import("vue").PropType<import("ant-design-vue/es/_util/type").LiteralUnion<import("ant-design-vue/es/_util/colors").PresetColorType>>;
|
|
375
366
|
transitionName: StringConstructor;
|
|
376
367
|
overlayStyle: {
|
|
377
|
-
type: import("vue").PropType<
|
|
378
|
-
default:
|
|
368
|
+
type: import("vue").PropType<CSSProperties>;
|
|
369
|
+
default: CSSProperties;
|
|
379
370
|
};
|
|
380
371
|
overlayInnerStyle: {
|
|
381
|
-
type: import("vue").PropType<
|
|
382
|
-
default:
|
|
372
|
+
type: import("vue").PropType<CSSProperties>;
|
|
373
|
+
default: CSSProperties;
|
|
383
374
|
};
|
|
384
375
|
overlayClassName: StringConstructor;
|
|
385
376
|
openClassName: StringConstructor;
|
|
@@ -465,7 +456,7 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
465
456
|
};
|
|
466
457
|
tableClassName: import("vue").PropType<string | undefined>;
|
|
467
458
|
tableStyle: {
|
|
468
|
-
type: import("vue").PropType<
|
|
459
|
+
type: import("vue").PropType<CSSProperties | undefined>;
|
|
469
460
|
};
|
|
470
461
|
toolBarBtn: {
|
|
471
462
|
type: import("vue").PropType<ToolBarBtnRender>;
|
|
@@ -622,12 +613,7 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
622
613
|
defaultExpandAllRows: {
|
|
623
614
|
type: BooleanConstructor;
|
|
624
615
|
default: boolean;
|
|
625
|
-
};
|
|
626
|
-
* @Author gx12358
|
|
627
|
-
* @DateTime 2022/1/21
|
|
628
|
-
* @lastTime 2022/1/21
|
|
629
|
-
* @description Tabel-settingColums hooks 方法
|
|
630
|
-
*/
|
|
616
|
+
};
|
|
631
617
|
indentSize: NumberConstructor;
|
|
632
618
|
expandIconColumnIndex: NumberConstructor;
|
|
633
619
|
showExpandColumn: {
|
|
@@ -636,12 +622,7 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
636
622
|
};
|
|
637
623
|
expandedRowClassName: {
|
|
638
624
|
type: import("vue").PropType<import("ant-design-vue/es/vc-table/interface").RowClassName<any>>;
|
|
639
|
-
default: import("ant-design-vue/es/vc-table/interface").RowClassName<any>;
|
|
640
|
-
* @Author gx12358
|
|
641
|
-
* @DateTime 2022/1/21
|
|
642
|
-
* @lastTime 2022/1/21
|
|
643
|
-
* @description Tabel-Form(搜索) hooks 方法
|
|
644
|
-
*/
|
|
625
|
+
default: import("ant-design-vue/es/vc-table/interface").RowClassName<any>;
|
|
645
626
|
};
|
|
646
627
|
childrenColumnName: {
|
|
647
628
|
type: import("vue").PropType<string>;
|
|
@@ -736,12 +717,12 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
736
717
|
color: import("vue").PropType<import("ant-design-vue/es/_util/type").LiteralUnion<import("ant-design-vue/es/_util/colors").PresetColorType>>;
|
|
737
718
|
transitionName: StringConstructor;
|
|
738
719
|
overlayStyle: {
|
|
739
|
-
type: import("vue").PropType<
|
|
740
|
-
default:
|
|
720
|
+
type: import("vue").PropType<CSSProperties>;
|
|
721
|
+
default: CSSProperties;
|
|
741
722
|
};
|
|
742
723
|
overlayInnerStyle: {
|
|
743
|
-
type: import("vue").PropType<
|
|
744
|
-
default:
|
|
724
|
+
type: import("vue").PropType<CSSProperties>;
|
|
725
|
+
default: CSSProperties;
|
|
745
726
|
};
|
|
746
727
|
overlayClassName: StringConstructor;
|
|
747
728
|
openClassName: StringConstructor;
|
|
@@ -790,12 +771,12 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
790
771
|
color: import("vue").PropType<import("ant-design-vue/es/_util/type").LiteralUnion<import("ant-design-vue/es/_util/colors").PresetColorType>>;
|
|
791
772
|
transitionName: StringConstructor;
|
|
792
773
|
overlayStyle: {
|
|
793
|
-
type: import("vue").PropType<
|
|
794
|
-
default:
|
|
774
|
+
type: import("vue").PropType<CSSProperties>;
|
|
775
|
+
default: CSSProperties;
|
|
795
776
|
};
|
|
796
777
|
overlayInnerStyle: {
|
|
797
|
-
type: import("vue").PropType<
|
|
798
|
-
default:
|
|
778
|
+
type: import("vue").PropType<CSSProperties>;
|
|
779
|
+
default: CSSProperties;
|
|
799
780
|
};
|
|
800
781
|
overlayClassName: StringConstructor;
|
|
801
782
|
openClassName: StringConstructor;
|
|
@@ -918,12 +899,12 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
918
899
|
color: import("vue").PropType<import("ant-design-vue/es/_util/type").LiteralUnion<import("ant-design-vue/es/_util/colors").PresetColorType>>;
|
|
919
900
|
transitionName: StringConstructor;
|
|
920
901
|
overlayStyle: {
|
|
921
|
-
type: import("vue").PropType<
|
|
922
|
-
default:
|
|
902
|
+
type: import("vue").PropType<CSSProperties>;
|
|
903
|
+
default: CSSProperties;
|
|
923
904
|
};
|
|
924
905
|
overlayInnerStyle: {
|
|
925
|
-
type: import("vue").PropType<
|
|
926
|
-
default:
|
|
906
|
+
type: import("vue").PropType<CSSProperties>;
|
|
907
|
+
default: CSSProperties;
|
|
927
908
|
};
|
|
928
909
|
overlayClassName: StringConstructor;
|
|
929
910
|
openClassName: StringConstructor;
|