@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.
- package/fesm2022/theseam-ui-common-framework.mjs +150 -2
- package/fesm2022/theseam-ui-common-framework.mjs.map +1 -1
- package/fesm2022/theseam-ui-common-graphql.mjs +2 -2
- package/fesm2022/theseam-ui-common-graphql.mjs.map +1 -1
- package/framework/index.d.ts +89 -3
- package/framework/route-transitions/route-transitions.css +166 -0
- package/graphql/index.d.ts +10 -8
- package/package.json +1 -1
|
@@ -551,14 +551,14 @@ const queryProcessingLink = new ApolloLink((operation, forward) => {
|
|
|
551
551
|
*
|
|
552
552
|
* @example
|
|
553
553
|
* // Simple static mapping
|
|
554
|
-
* const mapSorts = createSortsMapper<
|
|
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<
|
|
561
|
+
* const mapSorts = createSortsMapper<MyRow>({
|
|
562
562
|
* id: 'id',
|
|
563
563
|
* name: 'name',
|
|
564
564
|
* computed: (prop, context) =>
|