@tempots/beatui 1.6.0 → 1.6.1
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/index.cjs.js +4 -4
- package/dist/index.es.js +3800 -3797
- package/dist/types/components/data/data-source.d.ts +2 -0
- package/package.json +1 -1
|
@@ -63,6 +63,8 @@ export interface DataSourceOptions<T, C extends string = string> {
|
|
|
63
63
|
multiSort?: Value<boolean>;
|
|
64
64
|
/** When true, skips client-side sort/filter/paginate (caller drives rows externally). @default false */
|
|
65
65
|
serverSide?: Value<boolean>;
|
|
66
|
+
/** Total row count for server-side pagination. When provided (and serverSide is true), overrides the client-side row count for pagination calculations. */
|
|
67
|
+
totalRows?: Value<number>;
|
|
66
68
|
/** Column to group rows by. `undefined` disables grouping. */
|
|
67
69
|
groupBy?: Value<C | undefined>;
|
|
68
70
|
/** Called whenever sort state changes */
|