@a2simcode/ui 0.0.282 → 0.0.284
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-panel/index.d.ts +3 -0
- package/dist/components/table-panel/src/table-panel.vue.d.ts +1 -0
- package/dist/simcode-ui.es.js +4782 -4762
- package/dist/simcode-ui.umd.js +2 -2
- package/dist/stats.html +1 -1
- package/docs/components/table-panel.md +15 -0
- package/docs/examples/table-panel/pagination-select-state-key.vue +176 -0
- package/package.json +1 -1
|
@@ -189,6 +189,7 @@ declare const JTablePanel: {
|
|
|
189
189
|
resetData: () => Promise<void>;
|
|
190
190
|
getSelection: () => any;
|
|
191
191
|
setSelection: (records: any[]) => void;
|
|
192
|
+
setSelectionById: (ids: (string | number)[]) => void;
|
|
192
193
|
clearSelection: () => void;
|
|
193
194
|
getTableRef: () => any;
|
|
194
195
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -647,6 +648,7 @@ declare const JTablePanel: {
|
|
|
647
648
|
resetData: () => Promise<void>;
|
|
648
649
|
getSelection: () => any;
|
|
649
650
|
setSelection: (records: any[]) => void;
|
|
651
|
+
setSelectionById: (ids: (string | number)[]) => void;
|
|
650
652
|
clearSelection: () => void;
|
|
651
653
|
getTableRef: () => any;
|
|
652
654
|
}, {}, {}, {}, {
|
|
@@ -896,6 +898,7 @@ declare const JTablePanel: {
|
|
|
896
898
|
resetData: () => Promise<void>;
|
|
897
899
|
getSelection: () => any;
|
|
898
900
|
setSelection: (records: any[]) => void;
|
|
901
|
+
setSelectionById: (ids: (string | number)[]) => void;
|
|
899
902
|
clearSelection: () => void;
|
|
900
903
|
getTableRef: () => any;
|
|
901
904
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -331,6 +331,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
331
331
|
resetData: () => Promise<void>;
|
|
332
332
|
getSelection: () => any;
|
|
333
333
|
setSelection: (records: any[]) => void;
|
|
334
|
+
setSelectionById: (ids: (string | number)[]) => void;
|
|
334
335
|
clearSelection: () => void;
|
|
335
336
|
getTableRef: () => any;
|
|
336
337
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|