Browse Source

docs: remove "What's Next?" from documents

pull/6104/head
Arman Ozak 6 years ago
parent
commit
1903be95cf
  1. 4
      docs/en/UI/Angular/Component-Replacement.md
  2. 4
      docs/en/UI/Angular/Config-State.md
  3. 5
      docs/en/UI/Angular/Confirmation-Service.md
  4. 5
      docs/en/UI/Angular/Content-Projection-Service.md
  5. 7
      docs/en/UI/Angular/Cross-Origin-Strategy.md
  6. 4
      docs/en/UI/Angular/Dom-Insertion-Service.md
  7. 5
      docs/en/UI/Angular/Environment.md
  8. 6
      docs/en/UI/Angular/Feature-Libraries.md
  9. 4
      docs/en/UI/Angular/Features.md
  10. 4
      docs/en/UI/Angular/Form-Validation.md
  11. 4
      docs/en/UI/Angular/HTTP-Requests.md
  12. 7
      docs/en/UI/Angular/Lazy-Load-Service.md
  13. 5
      docs/en/UI/Angular/List-Service.md
  14. 4
      docs/en/UI/Angular/Localization.md
  15. 5
      docs/en/UI/Angular/Migration-Guide-v3.md
  16. 5
      docs/en/UI/Angular/Modifying-the-Menu.md
  17. 4
      docs/en/UI/Angular/Multi-Tenancy.md
  18. 4
      docs/en/UI/Angular/PWA-Configuration.md
  19. 4
      docs/en/UI/Angular/Permission-Management.md
  20. 6
      docs/en/UI/Angular/Quick-Start.md
  21. 4
      docs/en/UI/Angular/Service-Proxies.md
  22. 4
      docs/en/UI/Angular/Settings.md
  23. 4
      docs/en/UI/Angular/Subscription-Service.md
  24. 4
      docs/en/UI/Angular/Toaster-Service.md
  25. 6
      docs/en/UI/Angular/Track-By-Service.md

4
docs/en/UI/Angular/Component-Replacement.md

@ -547,7 +547,3 @@ The final UI looks like below:
## See Also
- [How to Replace PermissionManagementComponent](./Permission-Management-Component-Replacement.md)
## What's Next?
- [Custom Setting Page](./Custom-Setting-Page.md)

4
docs/en/UI/Angular/Config-State.md

@ -190,7 +190,3 @@ Please refer to `Config.Environment` type for all the properties you can pass to
- [Settings](./Settings.md)
- [Features](./Features.md)
## What's Next?
- [HTTP Requests](./Http-Requests)

5
docs/en/UI/Angular/Confirmation-Service.md

@ -180,8 +180,3 @@ clear(
```
- `status` parameter is the value of the confirmation closing event.
## What's Next?
- [Toast Overlay](./Toaster-Service.md)

5
docs/en/UI/Angular/Content-Projection-Service.md

@ -71,8 +71,3 @@ projectContent<T extends Type<any> | TemplateRef<any>>(
- `projectionStrategy` parameter is the primary focus here and is explained above.
- `injector` parameter is the `Injector` instance you can pass to the projected content. It is not used in `TemplateProjectionStrategy`.
## What's Next?
- [Confirmation Popup](./Confirmation-Service.md)

7
docs/en/UI/Angular/Cross-Origin-Strategy.md

@ -51,10 +51,3 @@ CROSS_ORIGIN_STRATEGY.UseCredentials(integrity?: string)
```
`crossorigin` will be set as `"use-credentials"` and `integrity` is optional.
## What's Next?
- [LoadingStrategy](./Loading-Strategy.md)

4
docs/en/UI/Angular/Dom-Insertion-Service.md

@ -134,7 +134,3 @@ has(content: string): boolean
The `has` method returns a boolean value that indicates the given content has already been added to the DOM or not.
- `content` parameter is the content of the inserted `HTMLScriptElement` or `HTMLStyleElement` element.
## What's Next?
- [Lazy Loading Scripts & Styles](./Lazy-Load-Service.md)

5
docs/en/UI/Angular/Environment.md

@ -101,8 +101,3 @@ export interface RemoteEnv {
* `customMergeFn`: You can also provide your own merge function as shown in the example. It will take two parameters, `localEnv: Partial<Config.Environment>` and `remoteEnv` and it needs to return a `Config.Environment` object.
* `method`: HTTP method to be used when retrieving environment config. Default: `GET`
* `headers`: If extra headers are needed for the request, it can be set through this field.
## What's Next?
- [About Feature Libraries](./Feature-Libraries.md)

6
docs/en/UI/Angular/Feature-Libraries.md

@ -90,9 +90,3 @@ Depending on the library, the `.forLazy` static method may also receive some opt
---
<sup id="f-modify-route"><b>1</b></sup> _Libraries expect to work at a predefined path. Please check [how to patch a navigation element](./Modifying-the-Menu.md#how-to-patch-or-remove-a-navigation-element), if you want to use a different path from the default one (e.g. '/identity')._ <sup>[↩](#a-modify-route)</sup>
---
## What's Next?
- [Service Proxies](./Service-Proxies.md)

4
docs/en/UI/Angular/Features.md

@ -31,7 +31,3 @@ const defaultLang = this.config.getFeature("Identity.TwoFactor");
```
You can then check the value of the feature to perform your logic. Please note that **feature keys are case-sensitive**.
## What's Next?
- [Permission Management](./Permission-Management.md)

4
docs/en/UI/Angular/Form-Validation.md

@ -138,7 +138,3 @@ export class AppModule {}
The error message will be bold and italic now:
<img alt="A required field is cleared and a bold and italic error message appears." src="./images/form-validation---custom-error-template.gif" width="990px" style="max-width:100%">
## What's Next?
- [Settings](./Settings.md)

4
docs/en/UI/Angular/HTTP-Requests.md

@ -203,7 +203,3 @@ getSomeCustomHeaderValue() {
You may find `Rest.Observe` enum [here](https://github.com/abpframework/abp/blob/dev/npm/ng-packs/packages/core/src/lib/models/rest.ts#L10).
## What's Next?
* [Localization](./Localization.md)

7
docs/en/UI/Angular/Lazy-Load-Service.md

@ -204,10 +204,3 @@ load(strategy: LoadingStrategy, retryTimes?: number, retryDelay?: number): Obser
- `strategy` parameter is the primary focus here and is explained above.
- `retryTimes` defines how many times the loading will be tried again before fail (_default: 2_).
- `retryDelay` defines how much delay there will be between retries (_default: 1000_).
## What's Next?
- [Projecting Angular Content](./Content-Projection-Service.md)

5
docs/en/UI/Angular/List-Service.md

@ -177,8 +177,3 @@ As of v3.0, with ngx-datatable, the `page` property has to be set as `0` for ini
```
**Important Note:** The `abp-table` is not removed, but is deprecated and will be removed in the future. Please consider switching to ngx-datatable.
## What's Next?
- [Easy *ngFor trackBy](./Track-By-Service.md)

4
docs/en/UI/Angular/Localization.md

@ -234,7 +234,3 @@ import(
## See Also
* [Localization in ASP.NET Core](../../Localization.md)
## What's Next?
* [Form Validation](./Form-Validation.md)

5
docs/en/UI/Angular/Migration-Guide-v3.md

@ -470,8 +470,3 @@ Some interfaces have long been marked as deprecated and now they are removed.
- Please check if you are still using [anything listed in this issue](https://github.com/abpframework/abp/issues/4281)
## What's Next?
* [Quick Start](./Quick-Start.md)

5
docs/en/UI/Angular/Modifying-the-Menu.md

@ -271,8 +271,3 @@ export class AppComponent {
* Patched the languages dropdown element with new `requiredPolicy` and new `order`.
* Removed the current user dropdown element.
## What's Next
* [Component Replacement](./Component-Replacement.md)

4
docs/en/UI/Angular/Multi-Tenancy.md

@ -126,7 +126,3 @@ The app sends the `__tenant` header that contains the current tenant id on each
## See Also
- [Multi Tenancy in ABP](../../Multi-Tenancy.md)
## What's Next?
- [Managing RxJS Subscriptions](./Subscription-Service.md)

4
docs/en/UI/Angular/PWA-Configuration.md

@ -340,7 +340,3 @@ In case you want to cache other static files, please refer to the [service worke
### 3.2 Set Data Groups
This part is unique to your project. We recommend being very careful about which endpoints to cache. Please refer to [service worker configuration document](https://angular.io/guide/service-worker-config#datagroups) on Angular.io for details.
## What's Next?
- [Config State](./Config-State.md)

4
docs/en/UI/Angular/Permission-Management.md

@ -56,7 +56,3 @@ const routes: Routes = [
```
Granted Policies are stored in the `auth` property of `ConfigState`.
## What's Next?
* [Multi Tenancy](./Multi-Tenancy.md)

6
docs/en/UI/Angular/Quick-Start.md

@ -204,9 +204,3 @@ In addition, you can [deploy your application to certain targets using the Angul
---
<sup id="f-dist-folder-name"><b>1</b></sup> _The compiled output will be placed under `/dist` in a folder by the project name._ <sup>[↩](#a-dist-folder-name)</sup>
---
## What's Next?
- [Environment Variables](./Environment.md)

4
docs/en/UI/Angular/Service-Proxies.md

@ -137,7 +137,3 @@ export class BookComponent implements OnInit {
```
> Please [see this article](https://github.com/abpframework/abp/blob/dev/docs/en/Blog-Posts/2020-09-07%20Angular-Service-Proxies/POST.md) to learn more about service proxies.
## What's Next?
- [PWA Configuration](./PWA-Configuration.md)

4
docs/en/UI/Angular/Settings.md

@ -53,7 +53,3 @@ const localizationSettings = this.config.getSettings("Localization");
```
Beware though, **settings search is case-sensitive**.
## What's Next?
- [Features](./Features.md)

4
docs/en/UI/Angular/Subscription-Service.md

@ -197,7 +197,3 @@ class DemoComponent implements OnInit {
}
}
```
## What's Next?
- [Working with Lists](./List-Service.md)

4
docs/en/UI/Angular/Toaster-Service.md

@ -249,7 +249,3 @@ Removes all open toasts.
## See Also
- [Confirmation Popup](./Confirmation-Service.md)
## What's Next?
- [Modifying the Menu](./Modifying-the-Menu.md)

6
docs/en/UI/Angular/Track-By-Service.md

@ -111,9 +111,3 @@ class DemoComponent {
trackByTenantAccountId = trackByDeep<Item>('tenant', 'account', 'id');
}
```
## What's Next?
- [Inserting Scripts & Styles to DOM](./Dom-Insertion-Service.md)

Loading…
Cancel
Save