Insights dependency and documentation improvements (#9815)

This commit is contained in:
Denys Vuika
2024-06-14 15:44:15 -04:00
committed by GitHub
parent c7592c561e
commit 04f82fac34
25 changed files with 227 additions and 509 deletions

View File

@@ -19,7 +19,7 @@ This is an example of replacing the standard `Text` [widget](../../lib/testing/s
![default text widget](../docassets/images/apa-simple-form.png)
Every custom widget component must inherit the [`WidgetComponent`](../insights/components/widget.component.md) class in order to function properly:
Every custom widget component must inherit the [`WidgetComponent`](../core/services/widget.component.md) class in order to function properly:
```ts
import { Component } from '@angular/core';
@@ -169,4 +169,4 @@ At runtime you should now see your custom Angular component rendered in place of
- [Form field model](../core/models/form-field.model.md)
- [Form rendering service](../core/services/form-rendering.service.md)
- [Form component](../core/components/form.component.md)
- [Widget component](../insights/components/widget.component.md)
- [Widget component](../core/services/widget.component.md)

View File

@@ -19,7 +19,7 @@ This is an example of replacing the standard `Text` [widget](../../lib/testing/s
![default text widget](../docassets/images/text-default-widget.png)
Every custom [widget](../../lib/testing/src/lib/core/pages/form/widgets/widget.ts) must inherit the [`WidgetComponent`](../insights/components/widget.component.md) class in order to function properly:
Every custom [widget](../../lib/testing/src/lib/core/pages/form/widgets/widget.ts) must inherit the [`WidgetComponent`](../core/services/widget.component.md) class in order to function properly:
```ts
import { Component } from '@angular/core';
@@ -181,4 +181,4 @@ This is an example of rendering custom APS stencils using custom Angular compone
- [Form field model](../core/models/form-field.model.md)
- [Form rendering service](../core/services/form-rendering.service.md)
- [Form component](../core/components/form.component.md)
- [Widget component](../insights/components/widget.component.md)
- [Widget component](../core/services/widget.component.md)

View File

@@ -109,4 +109,4 @@ formRenderingService.setComponentTypeResolver('text', customResolver, true);
- [Form field model](../core/models/form-field.model.md)
- [Form rendering service](../core/services/form-rendering.service.md)
- [Form component](../core/components/form.component.md)
- [Widget component](../insights/components/widget.component.md)
- [Widget component](../core/services/widget.component.md)