@a2simcode/ui 0.0.311 → 0.0.313
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/components/table/index.d.ts +5 -0
- package/dist/components/table/src/table.vue.d.ts +2 -0
- package/dist/simcode-ui.es.js +2788 -2773
- package/dist/simcode-ui.umd.js +2 -2
- package/dist/stats.html +1 -1
- package/docs/components/meta/table-panel.ts +343 -343
- package/docs/components/meta/table.ts +495 -495
- package/package.json +1 -1
|
@@ -185,6 +185,7 @@ declare const JTable: {
|
|
|
185
185
|
selections: Record<string, any>[];
|
|
186
186
|
record: Record<string, any>;
|
|
187
187
|
checked: boolean;
|
|
188
|
+
isInit?: boolean;
|
|
188
189
|
}) => any) | undefined;
|
|
189
190
|
onSelectRecordsChanged?: ((selections: Record<string, any>[]) => any) | undefined;
|
|
190
191
|
"onUpdate:tablePage"?: ((tablePage: number) => any) | undefined;
|
|
@@ -219,6 +220,7 @@ declare const JTable: {
|
|
|
219
220
|
selections: Record<string, any>[];
|
|
220
221
|
record: Record<string, any>;
|
|
221
222
|
checked: boolean;
|
|
223
|
+
isInit?: boolean;
|
|
222
224
|
}) => any;
|
|
223
225
|
selectRecordsChanged: (selections: Record<string, any>[]) => any;
|
|
224
226
|
"update:tablePage": (tablePage: number) => any;
|
|
@@ -472,6 +474,7 @@ declare const JTable: {
|
|
|
472
474
|
selections: Record<string, any>[];
|
|
473
475
|
record: Record<string, any>;
|
|
474
476
|
checked: boolean;
|
|
477
|
+
isInit?: boolean;
|
|
475
478
|
}) => any) | undefined;
|
|
476
479
|
onSelectRecordsChanged?: ((selections: Record<string, any>[]) => any) | undefined;
|
|
477
480
|
"onUpdate:tablePage"?: ((tablePage: number) => any) | undefined;
|
|
@@ -729,6 +732,7 @@ declare const JTable: {
|
|
|
729
732
|
selections: Record<string, any>[];
|
|
730
733
|
record: Record<string, any>;
|
|
731
734
|
checked: boolean;
|
|
735
|
+
isInit?: boolean;
|
|
732
736
|
}) => any) | undefined;
|
|
733
737
|
onSelectRecordsChanged?: ((selections: Record<string, any>[]) => any) | undefined;
|
|
734
738
|
"onUpdate:tablePage"?: ((tablePage: number) => any) | undefined;
|
|
@@ -763,6 +767,7 @@ declare const JTable: {
|
|
|
763
767
|
selections: Record<string, any>[];
|
|
764
768
|
record: Record<string, any>;
|
|
765
769
|
checked: boolean;
|
|
770
|
+
isInit?: boolean;
|
|
766
771
|
}) => any;
|
|
767
772
|
selectRecordsChanged: (selections: Record<string, any>[]) => any;
|
|
768
773
|
"update:tablePage": (tablePage: number) => any;
|
|
@@ -312,6 +312,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
312
312
|
selections: Record<string, any>[];
|
|
313
313
|
record: Record<string, any>;
|
|
314
314
|
checked: boolean;
|
|
315
|
+
isInit?: boolean;
|
|
315
316
|
}) => any;
|
|
316
317
|
selectRecordsChanged: (selections: Record<string, any>[]) => any;
|
|
317
318
|
"update:tablePage": (tablePage: number) => any;
|
|
@@ -621,6 +622,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
621
622
|
selections: Record<string, any>[];
|
|
622
623
|
record: Record<string, any>;
|
|
623
624
|
checked: boolean;
|
|
625
|
+
isInit?: boolean;
|
|
624
626
|
}) => any) | undefined;
|
|
625
627
|
onSelectRecordsChanged?: ((selections: Record<string, any>[]) => any) | undefined;
|
|
626
628
|
"onUpdate:tablePage"?: ((tablePage: number) => any) | undefined;
|