@a2simcode/ui 0.0.308 → 0.0.311

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.
@@ -41,6 +41,10 @@ declare const JTable: {
41
41
  type: StringConstructor;
42
42
  default: string;
43
43
  };
44
+ checkStrictly: {
45
+ type: BooleanConstructor;
46
+ default: boolean;
47
+ };
44
48
  isShowNumber: {
45
49
  type: BooleanConstructor;
46
50
  default: boolean;
@@ -227,6 +231,7 @@ declare const JTable: {
227
231
  label: string;
228
232
  id: string;
229
233
  modelValue: Record<string, any>[];
234
+ checkStrictly: boolean;
230
235
  rowNum: number;
231
236
  isPage: boolean;
232
237
  columns: import('.').ColumnSchemaConfig[];
@@ -323,6 +328,10 @@ declare const JTable: {
323
328
  type: StringConstructor;
324
329
  default: string;
325
330
  };
331
+ checkStrictly: {
332
+ type: BooleanConstructor;
333
+ default: boolean;
334
+ };
326
335
  isShowNumber: {
327
336
  type: BooleanConstructor;
328
337
  default: boolean;
@@ -484,6 +493,7 @@ declare const JTable: {
484
493
  label: string;
485
494
  id: string;
486
495
  modelValue: Record<string, any>[];
496
+ checkStrictly: boolean;
487
497
  rowNum: number;
488
498
  isPage: boolean;
489
499
  columns: import('.').ColumnSchemaConfig[];
@@ -575,6 +585,10 @@ declare const JTable: {
575
585
  type: StringConstructor;
576
586
  default: string;
577
587
  };
588
+ checkStrictly: {
589
+ type: BooleanConstructor;
590
+ default: boolean;
591
+ };
578
592
  isShowNumber: {
579
593
  type: BooleanConstructor;
580
594
  default: boolean;
@@ -761,6 +775,7 @@ declare const JTable: {
761
775
  label: string;
762
776
  id: string;
763
777
  modelValue: Record<string, any>[];
778
+ checkStrictly: boolean;
764
779
  rowNum: number;
765
780
  isPage: boolean;
766
781
  columns: import('.').ColumnSchemaConfig[];
@@ -69,6 +69,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
69
69
  type: StringConstructor;
70
70
  default: string;
71
71
  };
72
+ /**
73
+ * @zh 是否严格的遵循父子不互相关联的做法(仅 isTree 为 true 时生效)
74
+ */
75
+ checkStrictly: {
76
+ type: BooleanConstructor;
77
+ default: boolean;
78
+ };
72
79
  /**
73
80
  * @zh 是否显示序号
74
81
  */
@@ -380,6 +387,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
380
387
  type: StringConstructor;
381
388
  default: string;
382
389
  };
390
+ /**
391
+ * @zh 是否严格的遵循父子不互相关联的做法(仅 isTree 为 true 时生效)
392
+ */
393
+ checkStrictly: {
394
+ type: BooleanConstructor;
395
+ default: boolean;
396
+ };
383
397
  /**
384
398
  * @zh 是否显示序号
385
399
  */
@@ -619,6 +633,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
619
633
  label: string;
620
634
  id: string;
621
635
  modelValue: Record<string, any>[];
636
+ checkStrictly: boolean;
622
637
  rowNum: number;
623
638
  isPage: boolean;
624
639
  columns: ColumnSchemaConfig[];
@@ -33,6 +33,10 @@ declare const JTablePanel: {
33
33
  type: StringConstructor;
34
34
  default: string;
35
35
  };
36
+ checkStrictly: {
37
+ type: BooleanConstructor;
38
+ default: boolean;
39
+ };
36
40
  isShowNumber: {
37
41
  type: BooleanConstructor;
38
42
  default: boolean;
@@ -203,6 +207,7 @@ declare const JTablePanel: {
203
207
  immediate: boolean;
204
208
  buttons: import('..').ButtonCompType[];
205
209
  modelValue: Record<string, any>[];
210
+ checkStrictly: boolean;
206
211
  isPage: boolean;
207
212
  columns: import('..').SchemaConfig[];
208
213
  searchList: Record<string, any>[];
@@ -497,6 +502,10 @@ declare const JTablePanel: {
497
502
  type: StringConstructor;
498
503
  default: string;
499
504
  };
505
+ checkStrictly: {
506
+ type: BooleanConstructor;
507
+ default: boolean;
508
+ };
500
509
  isShowNumber: {
501
510
  type: BooleanConstructor;
502
511
  default: boolean;
@@ -664,6 +673,7 @@ declare const JTablePanel: {
664
673
  immediate: boolean;
665
674
  buttons: import('..').ButtonCompType[];
666
675
  modelValue: Record<string, any>[];
676
+ checkStrictly: boolean;
667
677
  isPage: boolean;
668
678
  columns: import('..').SchemaConfig[];
669
679
  searchList: Record<string, any>[];
@@ -752,6 +762,10 @@ declare const JTablePanel: {
752
762
  type: StringConstructor;
753
763
  default: string;
754
764
  };
765
+ checkStrictly: {
766
+ type: BooleanConstructor;
767
+ default: boolean;
768
+ };
755
769
  isShowNumber: {
756
770
  type: BooleanConstructor;
757
771
  default: boolean;
@@ -922,6 +936,7 @@ declare const JTablePanel: {
922
936
  immediate: boolean;
923
937
  buttons: import('..').ButtonCompType[];
924
938
  modelValue: Record<string, any>[];
939
+ checkStrictly: boolean;
925
940
  isPage: boolean;
926
941
  columns: import('..').SchemaConfig[];
927
942
  searchList: Record<string, any>[];
@@ -61,6 +61,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
61
61
  type: StringConstructor;
62
62
  default: string;
63
63
  };
64
+ /**
65
+ * @zh 是否严格的遵循父子不互相关联的做法(仅 isTree 为 true 时生效)
66
+ */
67
+ checkStrictly: {
68
+ type: BooleanConstructor;
69
+ default: boolean;
70
+ };
64
71
  /**
65
72
  * @zh 是否显示序号
66
73
  */
@@ -403,6 +410,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
403
410
  type: StringConstructor;
404
411
  default: string;
405
412
  };
413
+ /**
414
+ * @zh 是否严格的遵循父子不互相关联的做法(仅 isTree 为 true 时生效)
415
+ */
416
+ checkStrictly: {
417
+ type: BooleanConstructor;
418
+ default: boolean;
419
+ };
406
420
  /**
407
421
  * @zh 是否显示序号
408
422
  */
@@ -682,6 +696,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
682
696
  immediate: boolean;
683
697
  buttons: ButtonCompType[];
684
698
  modelValue: Record<string, any>[];
699
+ checkStrictly: boolean;
685
700
  isPage: boolean;
686
701
  columns: SchemaConfig[];
687
702
  searchList: Record<string, any>[];