diff --git a/projects/kit/README.md b/projects/kit/README.md index d7d035e..abadc46 100644 --- a/projects/kit/README.md +++ b/projects/kit/README.md @@ -35,15 +35,14 @@ Secondary entry points isolate optional native and SDK dependencies from the cor ## Configure only what you use -Most features expose a provider whose callbacks keep routes, copy, credentials, and application side effects outside the kit. Start with [Storage and Overlays](./docs/storage-overlays.md), then add authentication, offline, or native features as your app needs them. +Most features expose a provider whose callbacks keep routes, copy, credentials, and application side effects outside the kit. Start with [Storage and Overlays](https://docs.rdlabo.dev/projects/ionic-angular-kit/docs/storage-overlays), then add authentication, offline, or native features as your app needs them. ## Documentation -- [Storage and Overlays](./docs/storage-overlays.md) -- [Authentication and HTTP](./docs/auth-http.md) -- [Offline and Realtime](./docs/offline-realtime.md) -- [Optional Features](./docs/optional-features.md) -- [Ionic Signal Forms](./docs/forms.md) +- [Storage and Overlays](https://docs.rdlabo.dev/projects/ionic-angular-kit/docs/storage-overlays) +- [Authentication and HTTP](https://docs.rdlabo.dev/projects/ionic-angular-kit/docs/auth-http) +- [Offline and Realtime](https://docs.rdlabo.dev/projects/ionic-angular-kit/docs/offline-realtime) +- [Optional Features](https://docs.rdlabo.dev/projects/ionic-angular-kit/docs/optional-features) **Full documentation:** [https://docs.rdlabo.dev/projects/ionic-angular-kit](https://docs.rdlabo.dev/projects/ionic-angular-kit) diff --git a/projects/photo-editor/README.md b/projects/photo-editor/README.md index 178a20c..0a2e535 100644 --- a/projects/photo-editor/README.md +++ b/projects/photo-editor/README.md @@ -10,10 +10,10 @@ Photo editor and viewer modal pages for Ionic Angular applications, with Capacit | Goal | Guide | | --------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | -| Load a photo from camera or album | [PhotoFileService](./docs/photo-file.md) | -| Crop and edit in a modal | [Photo Editor](./docs/editor.md) | -| Browse images in a modal | [Photo Viewer](./docs/viewer.md) | -| Override editor colors | [Theme](./docs/theme.md) | +| Load a photo from camera or album | [PhotoFileService](https://docs.rdlabo.dev/projects/ionic-angular-photo-editor/docs/photo-file) | +| Crop and edit in a modal | [Photo Editor](https://docs.rdlabo.dev/projects/ionic-angular-photo-editor/docs/editor) | +| Browse images in a modal | [Photo Viewer](https://docs.rdlabo.dev/projects/ionic-angular-photo-editor/docs/viewer) | +| Override editor colors | [Theme](https://docs.rdlabo.dev/projects/ionic-angular-photo-editor/docs/theme) | | Upgrade from an earlier release | [Migration guide](https://github.com/rdlabo-dev/ionic-angular-library/blob/main/docs/migration.md#rdlaboionic-angular-photo-editor) | ## Quick start @@ -41,7 +41,7 @@ export const appConfig = { const files = await this.photoFileService.loadPhoto({ limit: 1 }); ``` -Present the editor or viewer from their secondary entry points. Details: [PhotoFileService](./docs/photo-file.md), [Photo Editor](./docs/editor.md), [Photo Viewer](./docs/viewer.md). +Present the editor or viewer from their secondary entry points. Details: [PhotoFileService](https://docs.rdlabo.dev/projects/ionic-angular-photo-editor/docs/photo-file), [Photo Editor](https://docs.rdlabo.dev/projects/ionic-angular-photo-editor/docs/editor), [Photo Viewer](https://docs.rdlabo.dev/projects/ionic-angular-photo-editor/docs/viewer). ## Package entry points @@ -85,10 +85,10 @@ The root, `/editor`, and `/file` entry points do not import optional implementat Start with [Installation](#installation), then pick a guide. -- [PhotoFileService](./docs/photo-file.md) — camera and album. -- [Photo Editor](./docs/editor.md) — crop and edit in a modal. -- [Photo Viewer](./docs/viewer.md) — browse images in a modal. -- [Theme](./docs/theme.md) — CSS variables and toolbar color scheme. +- [PhotoFileService](https://docs.rdlabo.dev/projects/ionic-angular-photo-editor/docs/photo-file) — camera and album. +- [Photo Editor](https://docs.rdlabo.dev/projects/ionic-angular-photo-editor/docs/editor) — crop and edit in a modal. +- [Photo Viewer](https://docs.rdlabo.dev/projects/ionic-angular-photo-editor/docs/viewer) — browse images in a modal. +- [Theme](https://docs.rdlabo.dev/projects/ionic-angular-photo-editor/docs/theme) — CSS variables and toolbar color scheme. - [Migration guide](https://github.com/rdlabo-dev/ionic-angular-library/blob/main/docs/migration.md#rdlaboionic-angular-photo-editor) — breaking changes and required consumer updates. diff --git a/projects/scroll-header/README.md b/projects/scroll-header/README.md index d50af54..61641f5 100644 --- a/projects/scroll-header/README.md +++ b/projects/scroll-header/README.md @@ -10,13 +10,13 @@ This is directive for scroll with Header. | Goal | Guide | | --- | --- | -| Hide and reveal headers on IonContent | [IonContent](./docs/ion-content.md) | -| Coordinate headers with CDK virtual scroll | [Virtual Scroll](./docs/virtual-scroll.md) | -| Keep a native header always visible | [Safe Area](./docs/safe-area.md) | +| Hide and reveal headers on IonContent | [IonContent](https://docs.rdlabo.dev/projects/ionic-angular-scroll-header/docs/ion-content) | +| Coordinate headers with CDK virtual scroll | [Virtual Scroll](https://docs.rdlabo.dev/projects/ionic-angular-scroll-header/docs/virtual-scroll) | +| Keep a native header always visible | [Safe Area](https://docs.rdlabo.dev/projects/ionic-angular-scroll-header/docs/safe-area) | ## Quick start -After [Installation](#installation), attach the directive to `ion-content`. See [IonContent](./docs/ion-content.md). +After [Installation](#installation), attach the directive to `ion-content`. See [IonContent](https://docs.rdlabo.dev/projects/ionic-angular-scroll-header/docs/ion-content). ## Installation @@ -44,9 +44,9 @@ And import CSS for directive: Start with [Installation](#installation), then pick a guide. -- [IonContent](./docs/ion-content.md) — scroll-aware Ionic headers. -- [Virtual Scroll](./docs/virtual-scroll.md) — CDK viewports and the flicker fix. -- [Safe Area](./docs/safe-area.md) — hidden and native headers. +- [IonContent](https://docs.rdlabo.dev/projects/ionic-angular-scroll-header/docs/ion-content) — scroll-aware Ionic headers. +- [Virtual Scroll](https://docs.rdlabo.dev/projects/ionic-angular-scroll-header/docs/virtual-scroll) — CDK viewports and the flicker fix. +- [Safe Area](https://docs.rdlabo.dev/projects/ionic-angular-scroll-header/docs/safe-area) — hidden and native headers. **Full documentation:** [https://docs.rdlabo.dev/projects/ionic-angular-scroll-header](https://docs.rdlabo.dev/projects/ionic-angular-scroll-header) diff --git a/projects/scroll-strategies/README.md b/projects/scroll-strategies/README.md index 813d670..d88b752 100644 --- a/projects/scroll-strategies/README.md +++ b/projects/scroll-strategies/README.md @@ -17,7 +17,7 @@ Use this library when: - `scrollToIndex` and scroll positions must use exact variable-height geometry; or - a chat UI needs reverse virtual scrolling. -If an item height is not known in advance, measure it and pass the result as shown in [Advanced Usage](./docs/advanced.md). This is not a drop-in strategy that discovers every unknown DOM height automatically. +If an item height is not known in advance, measure it and pass the result as shown in [Advanced Usage](https://docs.rdlabo.dev/projects/ngx-cdk-scroll-strategies/docs/advanced). This is not a drop-in strategy that discovers every unknown DOM height automatically. The basic Angular CDK variable-height virtual scroll setup is: @@ -43,13 +43,13 @@ This library is based largely on [Virtual scrolling of content with variable hei | Goal | Guide | | --- | --- | -| Specify each item height | [Simple Usage](./docs/simple.md) | -| Measure item components | [Advanced Usage](./docs/advanced.md) | -| Reverse chat-style scrolling | [Reverse Scroll](./docs/reverse.md) | +| Specify each item height | [Simple Usage](https://docs.rdlabo.dev/projects/ngx-cdk-scroll-strategies/docs/simple) | +| Measure item components | [Advanced Usage](https://docs.rdlabo.dev/projects/ngx-cdk-scroll-strategies/docs/advanced) | +| Reverse chat-style scrolling | [Reverse Scroll](https://docs.rdlabo.dev/projects/ngx-cdk-scroll-strategies/docs/reverse) | ## Quick start -After [Installation](#installation), bind `[itemDynamicSizes]` instead of `[itemSize]`. See [Simple Usage](./docs/simple.md). +After [Installation](#installation), bind `[itemDynamicSizes]` instead of `[itemSize]`. See [Simple Usage](https://docs.rdlabo.dev/projects/ngx-cdk-scroll-strategies/docs/simple). ## Installation @@ -62,10 +62,10 @@ npm install @rdlabo/ngx-cdk-scroll-strategies Start with [Installation](#installation), then pick a guide. -- [Simple Usage](./docs/simple.md) — per-item heights. -- [Advanced Usage](./docs/advanced.md) — measured item components. -- [Reverse Scroll](./docs/reverse.md) — chat-style reverse lists. -- [FAQ](./docs/faq.md) — why not `autosize`. +- [Simple Usage](https://docs.rdlabo.dev/projects/ngx-cdk-scroll-strategies/docs/simple) — per-item heights. +- [Advanced Usage](https://docs.rdlabo.dev/projects/ngx-cdk-scroll-strategies/docs/advanced) — measured item components. +- [Reverse Scroll](https://docs.rdlabo.dev/projects/ngx-cdk-scroll-strategies/docs/reverse) — chat-style reverse lists. +- [FAQ](https://docs.rdlabo.dev/projects/ngx-cdk-scroll-strategies/docs/faq) — why not `autosize`. **Full documentation:** [https://docs.rdlabo.dev/projects/ngx-cdk-scroll-strategies](https://docs.rdlabo.dev/projects/ngx-cdk-scroll-strategies)