@a2simcode/ui 0.0.224 → 0.0.226
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.
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
declare const JTablePanel: {
|
|
2
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
3
|
+
modelValue: {
|
|
4
|
+
type: import('vue').PropType<Record<string, any>[]>;
|
|
5
|
+
default: () => never[];
|
|
6
|
+
};
|
|
3
7
|
columns: {
|
|
4
8
|
type: import('vue').PropType<import('..').SchemaConfig[]>;
|
|
5
9
|
required: true;
|
|
@@ -149,6 +153,7 @@ declare const JTablePanel: {
|
|
|
149
153
|
}, import('vue').PublicProps, {
|
|
150
154
|
immediate: boolean;
|
|
151
155
|
buttons: import('..').ButtonCompType[];
|
|
156
|
+
modelValue: Record<string, any>[];
|
|
152
157
|
columns: import('..').SchemaConfig[];
|
|
153
158
|
isTree: boolean;
|
|
154
159
|
defaultExpandAll: boolean;
|
|
@@ -397,6 +402,10 @@ declare const JTablePanel: {
|
|
|
397
402
|
M: {};
|
|
398
403
|
Defaults: {};
|
|
399
404
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
405
|
+
modelValue: {
|
|
406
|
+
type: import('vue').PropType<Record<string, any>[]>;
|
|
407
|
+
default: () => never[];
|
|
408
|
+
};
|
|
400
409
|
columns: {
|
|
401
410
|
type: import('vue').PropType<import('..').SchemaConfig[]>;
|
|
402
411
|
required: true;
|
|
@@ -543,6 +552,7 @@ declare const JTablePanel: {
|
|
|
543
552
|
}, {}, {}, {}, {
|
|
544
553
|
immediate: boolean;
|
|
545
554
|
buttons: import('..').ButtonCompType[];
|
|
555
|
+
modelValue: Record<string, any>[];
|
|
546
556
|
columns: import('..').SchemaConfig[];
|
|
547
557
|
isTree: boolean;
|
|
548
558
|
defaultExpandAll: boolean;
|
|
@@ -586,6 +596,10 @@ declare const JTablePanel: {
|
|
|
586
596
|
__isTeleport?: never;
|
|
587
597
|
__isSuspense?: never;
|
|
588
598
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
599
|
+
modelValue: {
|
|
600
|
+
type: import('vue').PropType<Record<string, any>[]>;
|
|
601
|
+
default: () => never[];
|
|
602
|
+
};
|
|
589
603
|
columns: {
|
|
590
604
|
type: import('vue').PropType<import('..').SchemaConfig[]>;
|
|
591
605
|
required: true;
|
|
@@ -735,6 +749,7 @@ declare const JTablePanel: {
|
|
|
735
749
|
}, string, {
|
|
736
750
|
immediate: boolean;
|
|
737
751
|
buttons: import('..').ButtonCompType[];
|
|
752
|
+
modelValue: Record<string, any>[];
|
|
738
753
|
columns: import('..').SchemaConfig[];
|
|
739
754
|
isTree: boolean;
|
|
740
755
|
defaultExpandAll: boolean;
|
|
@@ -3,6 +3,14 @@ import { SchemaConfig } from '../../comp/src/interface';
|
|
|
3
3
|
import { PropType } from 'vue';
|
|
4
4
|
import { TreeNode } from './column-panel.vue';
|
|
5
5
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
6
|
+
/**
|
|
7
|
+
* @zh 输入值【作为表单的编辑表格使用】
|
|
8
|
+
* @vModel
|
|
9
|
+
*/
|
|
10
|
+
modelValue: {
|
|
11
|
+
type: PropType<Record<string, any>[]>;
|
|
12
|
+
default: () => never[];
|
|
13
|
+
};
|
|
6
14
|
/**
|
|
7
15
|
* @zh 表格列配置
|
|
8
16
|
*/
|
|
@@ -252,6 +260,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
252
260
|
select: (...args: any[]) => void;
|
|
253
261
|
ready: (...args: any[]) => void;
|
|
254
262
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
263
|
+
/**
|
|
264
|
+
* @zh 输入值【作为表单的编辑表格使用】
|
|
265
|
+
* @vModel
|
|
266
|
+
*/
|
|
267
|
+
modelValue: {
|
|
268
|
+
type: PropType<Record<string, any>[]>;
|
|
269
|
+
default: () => never[];
|
|
270
|
+
};
|
|
255
271
|
/**
|
|
256
272
|
* @zh 表格列配置
|
|
257
273
|
*/
|
|
@@ -496,6 +512,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
496
512
|
}>, {
|
|
497
513
|
immediate: boolean;
|
|
498
514
|
buttons: ButtonCompType[];
|
|
515
|
+
modelValue: Record<string, any>[];
|
|
499
516
|
columns: SchemaConfig[];
|
|
500
517
|
isTree: boolean;
|
|
501
518
|
defaultExpandAll: boolean;
|