Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 404 on Gesture/intro and mergeFrom documentation #401

Merged
merged 2 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/content/docs/es/utilities/Gesture/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ sidebar:

### Comparación al Angular CDK

[Angular CDK](https://cdk.angular.io) ofrece características como [Drag and Drop](https://material.angular.io/cdk/drag-drop/overview) y [Scrolling](https://material.angular.io/cdk/scrolling/overview),
[Angular CDK](https://material.angular.io/cdk/categories) ofrece características como [Drag and Drop](https://material.angular.io/cdk/drag-drop/overview) y [Scrolling](https://material.angular.io/cdk/scrolling/overview),
mientras que `ngxtension/gestures` se especializa en capturar gestos exclusivamente en elementos. En esencia, `ngxtension/gestures` opera desde una perspectiva más granular y de bajo nivel en comparación con Angular CDK.
Su control detallado sobre los datos de los gestos te permite crear una amplia gama de interacciones y facilita la integración perfecta con bibliotecas de animación como [GSAP](https://greensock.com/gsap/).

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/utilities/Gesture/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ sidebar:

### Comparison to Angular CDK

[Angular CDK](https://cdk.angular.io) offers features like [Drag & Drop](https://material.angular.io/cdk/drag-drop/overview) and [Scrolling](https://material.angular.io/cdk/scrolling/overview),
[Angular CDK](https://material.angular.io/cdk/categories) offers features like [Drag & Drop](https://material.angular.io/cdk/drag-drop/overview) and [Scrolling](https://material.angular.io/cdk/scrolling/overview),
while `ngxtension/gestures` specializes in capturing gestures on elements exclusively. In essence, `ngxtension/gestures` operates at a more granular, low-level perspective compared to Angular CDK.
Its fine-grained control over Gesture data empowers you to craft a broader range of interactions and facilitates seamless integration with animation libraries such as [GSAP](https://greensock.com/gsap/).

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/utilities/Signals/merge-from.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ It also gives us the possibility to change the emitted value before emitting it

It is similar to `merge()`, but it also takes `Signals` into consideration.

From `ngxtension` perspective, `mergeFrom` is similar to [`derivedFrom`](./derived-from.md), but it doesn't emit the combined value, but the latest emitted value by using the `merge` operator instead of `combineLatest`.
From `ngxtension` perspective, `mergeFrom` is similar to [`derivedFrom`](/utilities/signals/derived-from), but it doesn't emit the combined value, but the latest emitted value by using the `merge` operator instead of `combineLatest`.

```ts
import { mergeFrom } from 'ngxtension/merge-from';
Expand Down
Loading