synapse-react-client 3.1.47 → 3.1.49
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.d.ts +2 -0
- package/dist/index.js +180 -124
- package/dist/index.mjs +113 -57
- package/dist/umd/synapse-react-client.development.js +70 -21
- package/dist/umd/synapse-react-client.development.js.map +3 -3
- package/dist/umd/synapse-react-client.production.min.js +94 -94
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -666,6 +666,8 @@ type QueryContextType<TIncludedFields extends OptionalQueryBundleRequestFields =
|
|
|
666
666
|
rowSelectionPrimaryKey?: string[];
|
|
667
667
|
/** Whether the user has selected any rows */
|
|
668
668
|
hasSelectedRows: boolean;
|
|
669
|
+
/** Method used to determine if an individual row is selected */
|
|
670
|
+
getIsRowSelected: (row: Row) => boolean;
|
|
669
671
|
/** Combines two faceted columns into a single inclusive range selector */
|
|
670
672
|
combineRangeFacetConfig?: ReadonlyDeep<CombineRangeFacetConfig>;
|
|
671
673
|
};
|