@fluid-topics/ft-reader-feedback 1.3.53 → 1.3.55
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/build/ft-reader-feedback.light.js +120 -118
- package/build/ft-reader-feedback.min.js +115 -113
- package/build/ft-reader-map-feedback.js +13 -13
- package/build/ft-reader-topic-feedback.js +12 -12
- package/package.json +6 -6
|
@@ -4,20 +4,20 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
4
4
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
5
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
6
|
};
|
|
7
|
-
import { html } from "lit";
|
|
8
|
-
import { property, query } from "lit/decorators.js";
|
|
9
|
-
import { Debouncer, FtNotificationEvent, redux, reduxEventListener } from "@fluid-topics/ft-wc-utils";
|
|
10
|
-
import { FtReaderComponent } from "@fluid-topics/ft-reader-context/build/registration";
|
|
11
|
-
import { FtReaderFeedback } from "./ft-reader-feedback";
|
|
12
|
-
import { FtRatingType } from "@fluid-topics/public-api";
|
|
7
|
+
import { html, } from "lit";
|
|
8
|
+
import { property, query, } from "lit/decorators.js";
|
|
9
|
+
import { Debouncer, FtNotificationEvent, redux, reduxEventListener, } from "@fluid-topics/ft-wc-utils";
|
|
10
|
+
import { FtReaderComponent, } from "@fluid-topics/ft-reader-context/build/registration";
|
|
11
|
+
import { FtReaderFeedback, } from "./ft-reader-feedback";
|
|
12
|
+
import { FtRatingType, } from "@fluid-topics/public-api";
|
|
13
13
|
import { FtIconVariants } from "@fluid-topics/ft-icon";
|
|
14
14
|
import { FeedbackMailLinkBuilder } from "./utils/mail";
|
|
15
|
-
import { ftAppInfoStore, GuestLocalStorage } from "@fluid-topics/ft-app-context";
|
|
15
|
+
import { ftAppInfoStore, GuestLocalStorage, } from "@fluid-topics/ft-app-context";
|
|
16
16
|
import { server } from "./utils/ServerMessages";
|
|
17
17
|
import { feedback } from "./utils/IntegratedFeedbackComponentMessages";
|
|
18
|
-
import { i18n, withI18n } from "@fluid-topics/ft-i18n";
|
|
19
|
-
import { defaultDesignerMessages, designer } from "./utils/InDesignerFeedbackComponentMessages";
|
|
20
|
-
import { OpenMapFeedbackDrawerEvent, SendMailerMapFeedbackEvent } from "./utils/events";
|
|
18
|
+
import { i18n, withI18n, } from "@fluid-topics/ft-i18n";
|
|
19
|
+
import { defaultDesignerMessages, designer, } from "./utils/InDesignerFeedbackComponentMessages";
|
|
20
|
+
import { OpenMapFeedbackDrawerEvent, SendMailerMapFeedbackEvent, } from "./utils/events";
|
|
21
21
|
class FtReaderMapFeedback extends withI18n(FtReaderComponent) {
|
|
22
22
|
constructor(guestStorage = new GuestLocalStorage()) {
|
|
23
23
|
super();
|
|
@@ -71,9 +71,9 @@ class FtReaderMapFeedback extends withI18n(FtReaderComponent) {
|
|
|
71
71
|
.filledDislikeIcon=${this.filledDislikeIcon}
|
|
72
72
|
.feedbackMailLinkBuilder=${(feedbackMessage) => this.feedbackLinkBuilder.build(feedbackMessage)}
|
|
73
73
|
@rate=${this.rate}
|
|
74
|
-
@send-feedback
|
|
75
|
-
@mailer-feedback
|
|
76
|
-
@open-more-options
|
|
74
|
+
@send-feedback=${this.sendFeedback}
|
|
75
|
+
@mailer-feedback=${this.onMailerFeedbackSent}
|
|
76
|
+
@open-more-options=${this.openMoreOptions}
|
|
77
77
|
></ft-reader-feedback>
|
|
78
78
|
`;
|
|
79
79
|
}
|
|
@@ -4,20 +4,20 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
4
4
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
5
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
6
|
};
|
|
7
|
-
import { html } from "lit";
|
|
8
|
-
import { property, query } from "lit/decorators.js";
|
|
9
|
-
import { Debouncer, FtNotificationEvent, redux, reduxEventListener } from "@fluid-topics/ft-wc-utils";
|
|
10
|
-
import { FtReaderFeedback } from "./ft-reader-feedback";
|
|
7
|
+
import { html, } from "lit";
|
|
8
|
+
import { property, query, } from "lit/decorators.js";
|
|
9
|
+
import { Debouncer, FtNotificationEvent, redux, reduxEventListener, } from "@fluid-topics/ft-wc-utils";
|
|
10
|
+
import { FtReaderFeedback, } from "./ft-reader-feedback";
|
|
11
11
|
import { FtReaderTopicComponent } from "@fluid-topics/ft-reader-topic-context/build/registration";
|
|
12
|
-
import { FtRatingType } from "@fluid-topics/public-api";
|
|
12
|
+
import { FtRatingType, } from "@fluid-topics/public-api";
|
|
13
13
|
import { FtIconVariants } from "@fluid-topics/ft-icon";
|
|
14
14
|
import { FeedbackMailLinkBuilder } from "./utils/mail";
|
|
15
|
-
import { ftAppInfoStore, GuestLocalStorage } from "@fluid-topics/ft-app-context";
|
|
15
|
+
import { ftAppInfoStore, GuestLocalStorage, } from "@fluid-topics/ft-app-context";
|
|
16
16
|
import { feedback } from "./utils/IntegratedFeedbackComponentMessages";
|
|
17
17
|
import { server } from "./utils/ServerMessages";
|
|
18
|
-
import { i18n, withI18n } from "@fluid-topics/ft-i18n";
|
|
19
|
-
import { defaultDesignerMessages, designer } from "./utils/InDesignerFeedbackComponentMessages";
|
|
20
|
-
import { OpenTopicFeedbackDrawerEvent, SendMailerTopicFeedbackEvent } from "./utils/events";
|
|
18
|
+
import { i18n, withI18n, } from "@fluid-topics/ft-i18n";
|
|
19
|
+
import { defaultDesignerMessages, designer, } from "./utils/InDesignerFeedbackComponentMessages";
|
|
20
|
+
import { OpenTopicFeedbackDrawerEvent, SendMailerTopicFeedbackEvent, } from "./utils/events";
|
|
21
21
|
class FtReaderTopicFeedback extends withI18n(FtReaderTopicComponent) {
|
|
22
22
|
constructor(guestStorage = new GuestLocalStorage()) {
|
|
23
23
|
super();
|
|
@@ -72,9 +72,9 @@ class FtReaderTopicFeedback extends withI18n(FtReaderTopicComponent) {
|
|
|
72
72
|
.filledDislikeIcon=${this.filledDislikeIcon}
|
|
73
73
|
.feedbackMailLinkBuilder=${(feedbackMessage) => this.feedbackLinkBuilder.build(feedbackMessage)}
|
|
74
74
|
@rate=${this.rate}
|
|
75
|
-
@send-feedback
|
|
76
|
-
@mailer-feedback
|
|
77
|
-
@open-more-options
|
|
75
|
+
@send-feedback=${this.sendFeedback}
|
|
76
|
+
@mailer-feedback=${this.onMailerFeedbackSent}
|
|
77
|
+
@open-more-options=${this.openMoreOptions}
|
|
78
78
|
></ft-reader-feedback>
|
|
79
79
|
`;
|
|
80
80
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-reader-feedback",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.55",
|
|
4
4
|
"description": "Feedback forms for a map and its topics in an integrated reader",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Lit"
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@fluid-topics/ft-app-context": "1.3.
|
|
23
|
-
"@fluid-topics/ft-reader-context": "1.3.
|
|
24
|
-
"@fluid-topics/ft-wc-utils": "1.3.
|
|
22
|
+
"@fluid-topics/ft-app-context": "1.3.55",
|
|
23
|
+
"@fluid-topics/ft-reader-context": "1.3.55",
|
|
24
|
+
"@fluid-topics/ft-wc-utils": "1.3.55",
|
|
25
25
|
"lit": "3.1.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@fluid-topics/public-api": "1.0.
|
|
28
|
+
"@fluid-topics/public-api": "1.0.113"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "4b1a60c10c8b8d68e0b9075038c0508a94ff7d38"
|
|
31
31
|
}
|