| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519 |
- import type { DefaultRow, Table, TableProps } from '../table/defaults';
- export declare function createStore<T extends DefaultRow>(table: Table<T>, props: TableProps<T>): {
- mutations: {
- setData(states: {
- _currentRowKey: import("vue").Ref<string | null>;
- currentRow: import("vue").Ref<T | null>;
- expandRowKeys: import("vue").Ref<string[]>;
- treeData: import("vue").Ref<Record<string, import("./tree").TreeData>>;
- indent: import("vue").Ref<number>;
- lazy: import("vue").Ref<boolean>;
- lazyTreeNodeMap: import("vue").Ref<Record<string, T[]>>;
- lazyColumnIdentifier: import("vue").Ref<string>;
- childrenColumnName: import("vue").Ref<string>;
- checkStrictly: import("vue").Ref<boolean>;
- expandRows: import("vue").Ref<T[]>;
- defaultExpandAll: import("vue").Ref<boolean>;
- tableSize: import("vue").Ref<any>;
- rowKey: import("vue").Ref<string | null>;
- data: import("vue").Ref<T[]>;
- _data: import("vue").Ref<T[]>;
- isComplex: import("vue").Ref<boolean>;
- _columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- originColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- leafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- updateOrderFns: (() => void)[];
- leafColumnsLength: import("vue").Ref<number>;
- fixedLeafColumnsLength: import("vue").Ref<number>;
- rightFixedLeafColumnsLength: import("vue").Ref<number>;
- isAllSelected: import("vue").Ref<boolean>;
- selection: import("vue").Ref<T[]>;
- reserveSelection: import("vue").Ref<boolean>;
- selectOnIndeterminate: import("vue").Ref<boolean>;
- selectable: import("vue").Ref<((row: T, index: number) => boolean) | null>;
- filters: import("vue").Ref<import(".").StoreFilter>;
- filteredData: import("vue").Ref<T[] | null>;
- sortingColumn: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T> | null>;
- sortProp: import("vue").Ref<string | null>;
- sortOrder: import("vue").Ref<string | number | null>;
- hoverRow: import("vue").Ref<T | null>;
- }, data: T[]): void;
- insertColumn(states: {
- _currentRowKey: import("vue").Ref<string | null>;
- currentRow: import("vue").Ref<T | null>;
- expandRowKeys: import("vue").Ref<string[]>;
- treeData: import("vue").Ref<Record<string, import("./tree").TreeData>>;
- indent: import("vue").Ref<number>;
- lazy: import("vue").Ref<boolean>;
- lazyTreeNodeMap: import("vue").Ref<Record<string, T[]>>;
- lazyColumnIdentifier: import("vue").Ref<string>;
- childrenColumnName: import("vue").Ref<string>;
- checkStrictly: import("vue").Ref<boolean>;
- expandRows: import("vue").Ref<T[]>;
- defaultExpandAll: import("vue").Ref<boolean>;
- tableSize: import("vue").Ref<any>;
- rowKey: import("vue").Ref<string | null>;
- data: import("vue").Ref<T[]>;
- _data: import("vue").Ref<T[]>;
- isComplex: import("vue").Ref<boolean>;
- _columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- originColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- leafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- updateOrderFns: (() => void)[];
- leafColumnsLength: import("vue").Ref<number>;
- fixedLeafColumnsLength: import("vue").Ref<number>;
- rightFixedLeafColumnsLength: import("vue").Ref<number>;
- isAllSelected: import("vue").Ref<boolean>;
- selection: import("vue").Ref<T[]>;
- reserveSelection: import("vue").Ref<boolean>;
- selectOnIndeterminate: import("vue").Ref<boolean>;
- selectable: import("vue").Ref<((row: T, index: number) => boolean) | null>;
- filters: import("vue").Ref<import(".").StoreFilter>;
- filteredData: import("vue").Ref<T[] | null>;
- sortingColumn: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T> | null>;
- sortProp: import("vue").Ref<string | null>;
- sortOrder: import("vue").Ref<string | number | null>;
- hoverRow: import("vue").Ref<T | null>;
- }, column: import("../table-column/defaults").TableColumnCtx<T>, parent: import("../table-column/defaults").TableColumnCtx<T>, updateColumnOrder: () => void): void;
- updateColumnOrder(states: {
- _currentRowKey: import("vue").Ref<string | null>;
- currentRow: import("vue").Ref<T | null>;
- expandRowKeys: import("vue").Ref<string[]>;
- treeData: import("vue").Ref<Record<string, import("./tree").TreeData>>;
- indent: import("vue").Ref<number>;
- lazy: import("vue").Ref<boolean>;
- lazyTreeNodeMap: import("vue").Ref<Record<string, T[]>>;
- lazyColumnIdentifier: import("vue").Ref<string>;
- childrenColumnName: import("vue").Ref<string>;
- checkStrictly: import("vue").Ref<boolean>;
- expandRows: import("vue").Ref<T[]>;
- defaultExpandAll: import("vue").Ref<boolean>;
- tableSize: import("vue").Ref<any>;
- rowKey: import("vue").Ref<string | null>;
- data: import("vue").Ref<T[]>;
- _data: import("vue").Ref<T[]>;
- isComplex: import("vue").Ref<boolean>;
- _columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- originColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- leafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- updateOrderFns: (() => void)[];
- leafColumnsLength: import("vue").Ref<number>;
- fixedLeafColumnsLength: import("vue").Ref<number>;
- rightFixedLeafColumnsLength: import("vue").Ref<number>;
- isAllSelected: import("vue").Ref<boolean>;
- selection: import("vue").Ref<T[]>;
- reserveSelection: import("vue").Ref<boolean>;
- selectOnIndeterminate: import("vue").Ref<boolean>;
- selectable: import("vue").Ref<((row: T, index: number) => boolean) | null>;
- filters: import("vue").Ref<import(".").StoreFilter>;
- filteredData: import("vue").Ref<T[] | null>;
- sortingColumn: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T> | null>;
- sortProp: import("vue").Ref<string | null>;
- sortOrder: import("vue").Ref<string | number | null>;
- hoverRow: import("vue").Ref<T | null>;
- }, column: import("../table-column/defaults").TableColumnCtx<T>): void;
- removeColumn(states: {
- _currentRowKey: import("vue").Ref<string | null>;
- currentRow: import("vue").Ref<T | null>;
- expandRowKeys: import("vue").Ref<string[]>;
- treeData: import("vue").Ref<Record<string, import("./tree").TreeData>>;
- indent: import("vue").Ref<number>;
- lazy: import("vue").Ref<boolean>;
- lazyTreeNodeMap: import("vue").Ref<Record<string, T[]>>;
- lazyColumnIdentifier: import("vue").Ref<string>;
- childrenColumnName: import("vue").Ref<string>;
- checkStrictly: import("vue").Ref<boolean>;
- expandRows: import("vue").Ref<T[]>;
- defaultExpandAll: import("vue").Ref<boolean>;
- tableSize: import("vue").Ref<any>;
- rowKey: import("vue").Ref<string | null>;
- data: import("vue").Ref<T[]>;
- _data: import("vue").Ref<T[]>;
- isComplex: import("vue").Ref<boolean>;
- _columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- originColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- leafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- updateOrderFns: (() => void)[];
- leafColumnsLength: import("vue").Ref<number>;
- fixedLeafColumnsLength: import("vue").Ref<number>;
- rightFixedLeafColumnsLength: import("vue").Ref<number>;
- isAllSelected: import("vue").Ref<boolean>;
- selection: import("vue").Ref<T[]>;
- reserveSelection: import("vue").Ref<boolean>;
- selectOnIndeterminate: import("vue").Ref<boolean>;
- selectable: import("vue").Ref<((row: T, index: number) => boolean) | null>;
- filters: import("vue").Ref<import(".").StoreFilter>;
- filteredData: import("vue").Ref<T[] | null>;
- sortingColumn: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T> | null>;
- sortProp: import("vue").Ref<string | null>;
- sortOrder: import("vue").Ref<string | number | null>;
- hoverRow: import("vue").Ref<T | null>;
- }, column: import("../table-column/defaults").TableColumnCtx<T>, parent: import("../table-column/defaults").TableColumnCtx<T>, updateColumnOrder: () => void): void;
- sort(states: {
- _currentRowKey: import("vue").Ref<string | null>;
- currentRow: import("vue").Ref<T | null>;
- expandRowKeys: import("vue").Ref<string[]>;
- treeData: import("vue").Ref<Record<string, import("./tree").TreeData>>;
- indent: import("vue").Ref<number>;
- lazy: import("vue").Ref<boolean>;
- lazyTreeNodeMap: import("vue").Ref<Record<string, T[]>>;
- lazyColumnIdentifier: import("vue").Ref<string>;
- childrenColumnName: import("vue").Ref<string>;
- checkStrictly: import("vue").Ref<boolean>;
- expandRows: import("vue").Ref<T[]>;
- defaultExpandAll: import("vue").Ref<boolean>;
- tableSize: import("vue").Ref<any>;
- rowKey: import("vue").Ref<string | null>;
- data: import("vue").Ref<T[]>;
- _data: import("vue").Ref<T[]>;
- isComplex: import("vue").Ref<boolean>;
- _columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- originColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- leafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- updateOrderFns: (() => void)[];
- leafColumnsLength: import("vue").Ref<number>;
- fixedLeafColumnsLength: import("vue").Ref<number>;
- rightFixedLeafColumnsLength: import("vue").Ref<number>;
- isAllSelected: import("vue").Ref<boolean>;
- selection: import("vue").Ref<T[]>;
- reserveSelection: import("vue").Ref<boolean>;
- selectOnIndeterminate: import("vue").Ref<boolean>;
- selectable: import("vue").Ref<((row: T, index: number) => boolean) | null>;
- filters: import("vue").Ref<import(".").StoreFilter>;
- filteredData: import("vue").Ref<T[] | null>;
- sortingColumn: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T> | null>;
- sortProp: import("vue").Ref<string | null>;
- sortOrder: import("vue").Ref<string | number | null>;
- hoverRow: import("vue").Ref<T | null>;
- }, options: import("../table/defaults").Sort): void;
- changeSortCondition(states: {
- _currentRowKey: import("vue").Ref<string | null>;
- currentRow: import("vue").Ref<T | null>;
- expandRowKeys: import("vue").Ref<string[]>;
- treeData: import("vue").Ref<Record<string, import("./tree").TreeData>>;
- indent: import("vue").Ref<number>;
- lazy: import("vue").Ref<boolean>;
- lazyTreeNodeMap: import("vue").Ref<Record<string, T[]>>;
- lazyColumnIdentifier: import("vue").Ref<string>;
- childrenColumnName: import("vue").Ref<string>;
- checkStrictly: import("vue").Ref<boolean>;
- expandRows: import("vue").Ref<T[]>;
- defaultExpandAll: import("vue").Ref<boolean>;
- tableSize: import("vue").Ref<any>;
- rowKey: import("vue").Ref<string | null>;
- data: import("vue").Ref<T[]>;
- _data: import("vue").Ref<T[]>;
- isComplex: import("vue").Ref<boolean>;
- _columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- originColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- leafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- updateOrderFns: (() => void)[];
- leafColumnsLength: import("vue").Ref<number>;
- fixedLeafColumnsLength: import("vue").Ref<number>;
- rightFixedLeafColumnsLength: import("vue").Ref<number>;
- isAllSelected: import("vue").Ref<boolean>;
- selection: import("vue").Ref<T[]>;
- reserveSelection: import("vue").Ref<boolean>;
- selectOnIndeterminate: import("vue").Ref<boolean>;
- selectable: import("vue").Ref<((row: T, index: number) => boolean) | null>;
- filters: import("vue").Ref<import(".").StoreFilter>;
- filteredData: import("vue").Ref<T[] | null>;
- sortingColumn: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T> | null>;
- sortProp: import("vue").Ref<string | null>;
- sortOrder: import("vue").Ref<string | number | null>;
- hoverRow: import("vue").Ref<T | null>;
- }, options: import("../table/defaults").Sort): void;
- filterChange(_states: {
- _currentRowKey: import("vue").Ref<string | null>;
- currentRow: import("vue").Ref<T | null>;
- expandRowKeys: import("vue").Ref<string[]>;
- treeData: import("vue").Ref<Record<string, import("./tree").TreeData>>;
- indent: import("vue").Ref<number>;
- lazy: import("vue").Ref<boolean>;
- lazyTreeNodeMap: import("vue").Ref<Record<string, T[]>>;
- lazyColumnIdentifier: import("vue").Ref<string>;
- childrenColumnName: import("vue").Ref<string>;
- checkStrictly: import("vue").Ref<boolean>;
- expandRows: import("vue").Ref<T[]>;
- defaultExpandAll: import("vue").Ref<boolean>;
- tableSize: import("vue").Ref<any>;
- rowKey: import("vue").Ref<string | null>;
- data: import("vue").Ref<T[]>;
- _data: import("vue").Ref<T[]>;
- isComplex: import("vue").Ref<boolean>;
- _columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- originColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- leafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- updateOrderFns: (() => void)[];
- leafColumnsLength: import("vue").Ref<number>;
- fixedLeafColumnsLength: import("vue").Ref<number>;
- rightFixedLeafColumnsLength: import("vue").Ref<number>;
- isAllSelected: import("vue").Ref<boolean>;
- selection: import("vue").Ref<T[]>;
- reserveSelection: import("vue").Ref<boolean>;
- selectOnIndeterminate: import("vue").Ref<boolean>;
- selectable: import("vue").Ref<((row: T, index: number) => boolean) | null>;
- filters: import("vue").Ref<import(".").StoreFilter>;
- filteredData: import("vue").Ref<T[] | null>;
- sortingColumn: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T> | null>;
- sortProp: import("vue").Ref<string | null>;
- sortOrder: import("vue").Ref<string | number | null>;
- hoverRow: import("vue").Ref<T | null>;
- }, options: import("../table/defaults").Filter<T>): void;
- toggleAllSelection(): void;
- rowSelectedChanged(_states: {
- _currentRowKey: import("vue").Ref<string | null>;
- currentRow: import("vue").Ref<T | null>;
- expandRowKeys: import("vue").Ref<string[]>;
- treeData: import("vue").Ref<Record<string, import("./tree").TreeData>>;
- indent: import("vue").Ref<number>;
- lazy: import("vue").Ref<boolean>;
- lazyTreeNodeMap: import("vue").Ref<Record<string, T[]>>;
- lazyColumnIdentifier: import("vue").Ref<string>;
- childrenColumnName: import("vue").Ref<string>;
- checkStrictly: import("vue").Ref<boolean>;
- expandRows: import("vue").Ref<T[]>;
- defaultExpandAll: import("vue").Ref<boolean>;
- tableSize: import("vue").Ref<any>;
- rowKey: import("vue").Ref<string | null>;
- data: import("vue").Ref<T[]>;
- _data: import("vue").Ref<T[]>;
- isComplex: import("vue").Ref<boolean>;
- _columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- originColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- leafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- updateOrderFns: (() => void)[];
- leafColumnsLength: import("vue").Ref<number>;
- fixedLeafColumnsLength: import("vue").Ref<number>;
- rightFixedLeafColumnsLength: import("vue").Ref<number>;
- isAllSelected: import("vue").Ref<boolean>;
- selection: import("vue").Ref<T[]>;
- reserveSelection: import("vue").Ref<boolean>;
- selectOnIndeterminate: import("vue").Ref<boolean>;
- selectable: import("vue").Ref<((row: T, index: number) => boolean) | null>;
- filters: import("vue").Ref<import(".").StoreFilter>;
- filteredData: import("vue").Ref<T[] | null>;
- sortingColumn: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T> | null>;
- sortProp: import("vue").Ref<string | null>;
- sortOrder: import("vue").Ref<string | number | null>;
- hoverRow: import("vue").Ref<T | null>;
- }, row: T): void;
- setHoverRow(states: {
- _currentRowKey: import("vue").Ref<string | null>;
- currentRow: import("vue").Ref<T | null>;
- expandRowKeys: import("vue").Ref<string[]>;
- treeData: import("vue").Ref<Record<string, import("./tree").TreeData>>;
- indent: import("vue").Ref<number>;
- lazy: import("vue").Ref<boolean>;
- lazyTreeNodeMap: import("vue").Ref<Record<string, T[]>>;
- lazyColumnIdentifier: import("vue").Ref<string>;
- childrenColumnName: import("vue").Ref<string>;
- checkStrictly: import("vue").Ref<boolean>;
- expandRows: import("vue").Ref<T[]>;
- defaultExpandAll: import("vue").Ref<boolean>;
- tableSize: import("vue").Ref<any>;
- rowKey: import("vue").Ref<string | null>;
- data: import("vue").Ref<T[]>;
- _data: import("vue").Ref<T[]>;
- isComplex: import("vue").Ref<boolean>;
- _columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- originColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- leafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- updateOrderFns: (() => void)[];
- leafColumnsLength: import("vue").Ref<number>;
- fixedLeafColumnsLength: import("vue").Ref<number>;
- rightFixedLeafColumnsLength: import("vue").Ref<number>;
- isAllSelected: import("vue").Ref<boolean>;
- selection: import("vue").Ref<T[]>;
- reserveSelection: import("vue").Ref<boolean>;
- selectOnIndeterminate: import("vue").Ref<boolean>;
- selectable: import("vue").Ref<((row: T, index: number) => boolean) | null>;
- filters: import("vue").Ref<import(".").StoreFilter>;
- filteredData: import("vue").Ref<T[] | null>;
- sortingColumn: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T> | null>;
- sortProp: import("vue").Ref<string | null>;
- sortOrder: import("vue").Ref<string | number | null>;
- hoverRow: import("vue").Ref<T | null>;
- }, row: T): void;
- setCurrentRow(_states: {
- _currentRowKey: import("vue").Ref<string | null>;
- currentRow: import("vue").Ref<T | null>;
- expandRowKeys: import("vue").Ref<string[]>;
- treeData: import("vue").Ref<Record<string, import("./tree").TreeData>>;
- indent: import("vue").Ref<number>;
- lazy: import("vue").Ref<boolean>;
- lazyTreeNodeMap: import("vue").Ref<Record<string, T[]>>;
- lazyColumnIdentifier: import("vue").Ref<string>;
- childrenColumnName: import("vue").Ref<string>;
- checkStrictly: import("vue").Ref<boolean>;
- expandRows: import("vue").Ref<T[]>;
- defaultExpandAll: import("vue").Ref<boolean>;
- tableSize: import("vue").Ref<any>;
- rowKey: import("vue").Ref<string | null>;
- data: import("vue").Ref<T[]>;
- _data: import("vue").Ref<T[]>;
- isComplex: import("vue").Ref<boolean>;
- _columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- originColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- leafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- updateOrderFns: (() => void)[];
- leafColumnsLength: import("vue").Ref<number>;
- fixedLeafColumnsLength: import("vue").Ref<number>;
- rightFixedLeafColumnsLength: import("vue").Ref<number>;
- isAllSelected: import("vue").Ref<boolean>;
- selection: import("vue").Ref<T[]>;
- reserveSelection: import("vue").Ref<boolean>;
- selectOnIndeterminate: import("vue").Ref<boolean>;
- selectable: import("vue").Ref<((row: T, index: number) => boolean) | null>;
- filters: import("vue").Ref<import(".").StoreFilter>;
- filteredData: import("vue").Ref<T[] | null>;
- sortingColumn: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T> | null>;
- sortProp: import("vue").Ref<string | null>;
- sortOrder: import("vue").Ref<string | number | null>;
- hoverRow: import("vue").Ref<T | null>;
- }, row: T): void;
- };
- commit: (name: "sort" | "setData" | "insertColumn" | "updateColumnOrder" | "removeColumn" | "changeSortCondition" | "filterChange" | "toggleAllSelection" | "rowSelectedChanged" | "setHoverRow" | "setCurrentRow", ...args: any[]) => void;
- updateTableScrollY: () => void;
- assertRowKey: () => void;
- updateColumns: () => void;
- scheduleLayout: (needUpdateColumns?: boolean, immediate?: boolean) => void;
- isSelected: (row: T) => boolean;
- clearSelection: () => void;
- cleanSelection: () => void;
- getSelectionRows: () => T[];
- toggleRowSelection: (row: T, selected?: boolean, emitChange?: boolean, ignoreSelectable?: boolean) => void;
- _toggleAllSelection: () => void;
- toggleAllSelection: (() => void) | null;
- updateAllSelected: () => void;
- updateFilters: (column: import("../table-column/defaults").TableColumnCtx<T>, values: string[]) => Record<string, string[]>;
- updateCurrentRow: (_currentRow: T) => void;
- updateSort: (column: import("../table-column/defaults").TableColumnCtx<T> | null, prop: string | null, order: import("../table/defaults").TableSortOrder | null) => void;
- execFilter: () => void;
- execSort: () => void;
- execQuery: (ignore?: {
- filter: boolean;
- } | undefined) => void;
- clearFilter: (columnKeys?: string[] | string) => void;
- clearSort: () => void;
- toggleRowExpansion: (row: T, expanded?: boolean) => void;
- setExpandRowKeysAdapter: (val: string[]) => void;
- setCurrentRowKey: (key: string) => void;
- toggleRowExpansionAdapter: (row: T, expanded?: boolean) => void;
- isRowExpanded: (row: T) => boolean;
- updateExpandRows: () => void;
- updateCurrentRowData: () => void;
- loadOrToggle: (row: T) => void;
- updateTreeData: (ifChangeExpandRowKeys?: boolean, ifExpandAll?: boolean) => void;
- updateKeyChildren: (key: string, data: T[]) => void;
- states: {
- _currentRowKey: import("vue").Ref<string | null>;
- currentRow: import("vue").Ref<T | null>;
- expandRowKeys: import("vue").Ref<string[]>;
- treeData: import("vue").Ref<Record<string, import("./tree").TreeData>>;
- indent: import("vue").Ref<number>;
- lazy: import("vue").Ref<boolean>;
- lazyTreeNodeMap: import("vue").Ref<Record<string, T[]>>;
- lazyColumnIdentifier: import("vue").Ref<string>;
- childrenColumnName: import("vue").Ref<string>;
- checkStrictly: import("vue").Ref<boolean>;
- expandRows: import("vue").Ref<T[]>;
- defaultExpandAll: import("vue").Ref<boolean>;
- tableSize: import("vue").Ref<any>;
- rowKey: import("vue").Ref<string | null>;
- data: import("vue").Ref<T[]>;
- _data: import("vue").Ref<T[]>;
- isComplex: import("vue").Ref<boolean>;
- _columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- originColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- columns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- leafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- fixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- rightFixedLeafColumns: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T>[]>;
- updateOrderFns: (() => void)[];
- leafColumnsLength: import("vue").Ref<number>;
- fixedLeafColumnsLength: import("vue").Ref<number>;
- rightFixedLeafColumnsLength: import("vue").Ref<number>;
- isAllSelected: import("vue").Ref<boolean>;
- selection: import("vue").Ref<T[]>;
- reserveSelection: import("vue").Ref<boolean>;
- selectOnIndeterminate: import("vue").Ref<boolean>;
- selectable: import("vue").Ref<((row: T, index: number) => boolean) | null>;
- filters: import("vue").Ref<import(".").StoreFilter>;
- filteredData: import("vue").Ref<T[] | null>;
- sortingColumn: import("vue").Ref<import("../table-column/defaults").TableColumnCtx<T> | null>;
- sortProp: import("vue").Ref<string | null>;
- sortOrder: import("vue").Ref<string | number | null>;
- hoverRow: import("vue").Ref<T | null>;
- };
- ns: {
- namespace: import("vue").ComputedRef<string>;
- b: (blockSuffix?: string) => string;
- e: (element?: string) => string;
- m: (modifier?: string) => string;
- be: (blockSuffix?: string, element?: string) => string;
- em: (element?: string, modifier?: string) => string;
- bm: (blockSuffix?: string, modifier?: string) => string;
- bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
- is: {
- (name: string, state: boolean | undefined): string;
- (name: string): string;
- };
- cssVar: (object: Record<string, string>) => Record<string, string>;
- cssVarName: (name: string) => string;
- cssVarBlock: (object: Record<string, string>) => Record<string, string>;
- cssVarBlockName: (name: string) => string;
- };
- };
|