@dsivd/prestations-ng 17.0.1-beta.2 → 17.1.0-beta.1
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 +7 -1
- package/dsivd-prestations-ng-17.1.0-beta.1.tgz +0 -0
- package/esm2022/foehn-feedback-notification/foehn-feedback-notification.component.mjs +46 -35
- package/esm2022/foehn-feedback-notification/foehn-feedback-notification.type.mjs +3 -0
- package/esm2022/supported-browser.mjs +2 -2
- package/fesm2022/dsivd-prestations-ng.mjs +42 -30
- package/fesm2022/dsivd-prestations-ng.mjs.map +1 -1
- package/foehn-feedback-notification/foehn-feedback-notification.component.d.ts +9 -7
- package/foehn-feedback-notification/foehn-feedback-notification.type.d.ts +7 -0
- package/package.json +1 -1
- package/dsivd-prestations-ng-17.0.1-beta.2.tgz +0 -0
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
1
2
|
import { Observable } from 'rxjs';
|
|
3
|
+
import { FoehnFeedbackNotificationType } from '../foehn-feedback-notification/foehn-feedback-notification.type';
|
|
2
4
|
import { GesdemHandlerService } from '../gesdem/gesdem-handler.service';
|
|
3
5
|
import { ApplicationInfoService } from '../sdk-appinfo/application-info.service';
|
|
4
6
|
import { SessionInfo } from '../sdk-session-info/session-info.service';
|
|
@@ -8,23 +10,23 @@ export declare class FoehnFeedbackNotificationComponent {
|
|
|
8
10
|
private applicationInfoService;
|
|
9
11
|
private sessionInfo;
|
|
10
12
|
private gesdemHandlerService;
|
|
13
|
+
private http;
|
|
11
14
|
goodIconName: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
12
15
|
mediumIconName: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
13
16
|
badIconName: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
14
17
|
expanded: boolean;
|
|
15
18
|
isScrollEnded: boolean;
|
|
16
19
|
visible: Observable<boolean>;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
private fullReference;
|
|
22
|
-
constructor(applicationInfoService: ApplicationInfoService, sessionInfo: SessionInfo, gesdemHandlerService: GesdemHandlerService);
|
|
20
|
+
goodUrl: Observable<string>;
|
|
21
|
+
mediumUrl: Observable<string>;
|
|
22
|
+
badUrl: Observable<string>;
|
|
23
|
+
constructor(applicationInfoService: ApplicationInfoService, sessionInfo: SessionInfo, gesdemHandlerService: GesdemHandlerService, http: HttpClient);
|
|
23
24
|
onWindowScroll(): void;
|
|
24
25
|
hideNotification(): void;
|
|
25
|
-
getUrl(answer: string): string
|
|
26
|
+
getUrl(answer: string, feedbackUsager: FoehnFeedbackNotificationType, feedBackFormBaseUrl: string, reference: string): Observable<string>;
|
|
26
27
|
private getCategory;
|
|
27
28
|
private getPortailBaseUrl;
|
|
29
|
+
private getFullReference;
|
|
28
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<FoehnFeedbackNotificationComponent, never>;
|
|
29
31
|
static ɵcmp: i0.ɵɵComponentDeclaration<FoehnFeedbackNotificationComponent, "foehn-feedback-notification", never, {}, {}, never, never, false, never>;
|
|
30
32
|
}
|
package/package.json
CHANGED
|
Binary file
|