@fluid-topics/ft-reader-feedback 2.0.27 → 2.0.28
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/define.js +3 -5
- package/build/definitions.d.ts +7 -0
- package/build/definitions.js +6 -0
- package/build/ft-reader-feedback.light.js +124 -124
- package/build/ft-reader-feedback.min.js +136 -250
- package/build/ft-reader-map-feedback.d.ts +1 -1
- package/build/ft-reader-topic-feedback.d.ts +1 -1
- package/package.json +5 -5
|
@@ -12,6 +12,7 @@ declare const FtReaderMapFeedback_base: typeof FtReaderComponent & import("@flui
|
|
|
12
12
|
export declare class FtReaderMapFeedback extends FtReaderMapFeedback_base implements FtReaderFeedbackProperties {
|
|
13
13
|
private readonly guestStorage;
|
|
14
14
|
static elementDefinitions: ElementDefinitionsMap;
|
|
15
|
+
private static storedRatingIfAuthenticated;
|
|
15
16
|
session?: FtSession;
|
|
16
17
|
map?: FtMap;
|
|
17
18
|
editorMode: boolean;
|
|
@@ -30,7 +31,6 @@ export declare class FtReaderMapFeedback extends FtReaderMapFeedback_base implem
|
|
|
30
31
|
feedbackLinkBuilder: FeedbackMailLinkBuilder;
|
|
31
32
|
mailSubject: string;
|
|
32
33
|
i18nProperties: FeedbackI18nProperties;
|
|
33
|
-
private static storedRatingIfAuthenticated;
|
|
34
34
|
constructor(guestStorage?: GuestLocalStorage<FtPublicationRatingSummary>);
|
|
35
35
|
protected render(): import("lit-html").TemplateResult<1>;
|
|
36
36
|
protected willUpdate(props: PropertyValues): void;
|
|
@@ -13,6 +13,7 @@ declare const FtReaderTopicFeedback_base: typeof FtReaderTopicComponent & import
|
|
|
13
13
|
export declare class FtReaderTopicFeedback extends FtReaderTopicFeedback_base implements FtReaderFeedbackProperties {
|
|
14
14
|
private readonly guestStorage;
|
|
15
15
|
static elementDefinitions: ElementDefinitionsMap;
|
|
16
|
+
private static storedRatingIfAuthenticated;
|
|
16
17
|
session?: FtSession;
|
|
17
18
|
map?: FtMap;
|
|
18
19
|
editorMode: boolean;
|
|
@@ -31,7 +32,6 @@ export declare class FtReaderTopicFeedback extends FtReaderTopicFeedback_base im
|
|
|
31
32
|
feedbackLinkBuilder: FeedbackMailLinkBuilder;
|
|
32
33
|
mailSubject: string;
|
|
33
34
|
i18nProperties: FeedbackI18nProperties;
|
|
34
|
-
private static storedRatingIfAuthenticated;
|
|
35
35
|
constructor(guestStorage?: GuestLocalStorage<FtTopicRatingSummary>);
|
|
36
36
|
protected render(): import("lit-html").TemplateResult<1>;
|
|
37
37
|
protected willUpdate(props: PropertyValues): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-reader-feedback",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.28",
|
|
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": "2.0.
|
|
23
|
-
"@fluid-topics/ft-reader-context": "2.0.
|
|
24
|
-
"@fluid-topics/ft-wc-utils": "2.0.
|
|
22
|
+
"@fluid-topics/ft-app-context": "2.0.28",
|
|
23
|
+
"@fluid-topics/ft-reader-context": "2.0.28",
|
|
24
|
+
"@fluid-topics/ft-wc-utils": "2.0.28",
|
|
25
25
|
"lit": "3.1.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@fluid-topics/public-api": "1.0.122"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "c81a78f103c19425eb2eac2675a6dd8396e2aa4e"
|
|
31
31
|
}
|