@myhealth-belgium/webcomponent-therapeutic-relations 1.0.0 → 1.0.2
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/CHANGELOG.md +12 -0
- package/README.md +2 -0
- package/lib/components/therapeutic-relations-web.component.d.ts +1 -2
- package/main.mjs +16383 -18141
- package/main.umd.js +152 -146
- package/package.json +1 -1
- package/styles.css +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# 1.0.2
|
|
2
|
+
|
|
3
|
+
**Bug fixes:**
|
|
4
|
+
|
|
5
|
+
- Added additional support for icons imported through the component's stylesheet & added documentation for the `useIcons` option in `bootstrap()`.
|
|
6
|
+
|
|
7
|
+
# 1.0.1
|
|
8
|
+
|
|
9
|
+
**Bug fixes:**
|
|
10
|
+
|
|
11
|
+
- Remove infinite scrolling to avoid scrolling in scrolling
|
|
12
|
+
|
|
1
13
|
# 1.0.0
|
|
2
14
|
|
|
3
15
|
**Bug fixes:**
|
package/README.md
CHANGED
|
@@ -30,6 +30,8 @@ The `bootstrap()` function is called with 2 objects, `HostSettings` and `HostSer
|
|
|
30
30
|
|
|
31
31
|
The `HostSettings` will define the component's inputs, however these can be overriden by passing these settings as attributes to the component's HTML implementation.
|
|
32
32
|
|
|
33
|
+
Additionally, there is an optional boolean `useIcons` that can be passed to the bootstrap function. By default, this is set to `false` as icons preferrably are initialized top-level in the app using the [MyHealth - Angular design kit](https://www.npmjs.com/package/@myhealth-belgium/design-kit). Setting this setting to `true` while importing the component's stylesheet, will create a new font for the component's icons.
|
|
34
|
+
|
|
33
35
|
### Manifest, inputs & outputs
|
|
34
36
|
|
|
35
37
|
Each MyHealth webcomponent provides a `manifest` constant that is compliant with the guidelines provided by the [MyHealth - Web Component Integration](https://www.npmjs.com/package/@smals-belgium/myhealth-wc-integration).
|
|
@@ -4,8 +4,7 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class TherapeuticRelationsWebComponent extends BaseWebComponent implements OnInit {
|
|
5
5
|
private readonly healthcarePartyService;
|
|
6
6
|
private readonly therapeuticRelationService;
|
|
7
|
-
readonly cdkScrollViewHeight: import("@angular/core").InputSignal<string>;
|
|
8
7
|
ngOnInit(): void;
|
|
9
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<TherapeuticRelationsWebComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TherapeuticRelationsWebComponent, "mh-web-component-therapeutic-relations", never, {
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TherapeuticRelationsWebComponent, "mh-web-component-therapeutic-relations", never, {}, {}, never, never, true, never>;
|
|
11
10
|
}
|