@theseam/ui-common 1.0.2-beta.15 → 1.0.2-beta.17

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.
@@ -551,14 +551,14 @@ const queryProcessingLink = new ApolloLink((operation, forward) => {
551
551
  *
552
552
  * @example
553
553
  * // Simple static mapping
554
- * const mapSorts = createSortsMapper<'id' | 'name'>({
554
+ * const mapSorts = createSortsMapper<MyRow>({
555
555
  * id: 'id',
556
556
  * name: 'name',
557
557
  * })
558
558
  *
559
559
  * @example
560
560
  * // Dynamic mapping with context access
561
- * const mapSorts = createSortsMapper<'id' | 'name' | 'computed'>({
561
+ * const mapSorts = createSortsMapper<MyRow>({
562
562
  * id: 'id',
563
563
  * name: 'name',
564
564
  * computed: (prop, context) =>