@fluid-topics/ft-reader-content 1.3.35 → 1.3.37
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-content.d.ts +1 -0
- package/build/ft-reader-content.js +6 -1
- package/build/ft-reader-content.light.js +27 -25
- package/build/ft-reader-content.min.js +34 -32
- package/build/watermark/ft-reader-watermark.d.ts +1 -1
- package/build/watermark/ft-reader-watermark.js +3 -4
- package/build/watermark/index.d.ts +3 -0
- package/build/watermark/index.js +6 -0
- package/package.json +7 -7
|
@@ -3,8 +3,8 @@ import { PropertyValues } from "lit";
|
|
|
3
3
|
import { FtReaderComponent } from "@fluid-topics/ft-reader-context/build/registration";
|
|
4
4
|
export declare class FtReaderWatermark extends FtReaderComponent implements FtReaderWatermarkProperties {
|
|
5
5
|
static styles: import("lit").CSSResult;
|
|
6
|
-
private watermark?;
|
|
7
6
|
private svg;
|
|
7
|
+
private watermark?;
|
|
8
8
|
private height;
|
|
9
9
|
protected render(): unknown;
|
|
10
10
|
protected updated(props: PropertyValues): void;
|
|
@@ -4,7 +4,6 @@ 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 { redux } from "@fluid-topics/ft-wc-utils";
|
|
8
7
|
import { html, nothing, svg } from "lit";
|
|
9
8
|
import { property, query } from "lit/decorators.js";
|
|
10
9
|
import { FtReaderComponent } from "@fluid-topics/ft-reader-context/build/registration";
|
|
@@ -42,12 +41,12 @@ class FtReaderWatermark extends FtReaderComponent {
|
|
|
42
41
|
}
|
|
43
42
|
}
|
|
44
43
|
FtReaderWatermark.styles = styles;
|
|
45
|
-
__decorate([
|
|
46
|
-
redux({ selector: (state) => { var _a; return (_a = state.map) === null || _a === void 0 ? void 0 : _a.watermark; } })
|
|
47
|
-
], FtReaderWatermark.prototype, "watermark", void 0);
|
|
48
44
|
__decorate([
|
|
49
45
|
query(".ft-watermark")
|
|
50
46
|
], FtReaderWatermark.prototype, "svg", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
property()
|
|
49
|
+
], FtReaderWatermark.prototype, "watermark", void 0);
|
|
51
50
|
__decorate([
|
|
52
51
|
property()
|
|
53
52
|
], FtReaderWatermark.prototype, "height", void 0);
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { customElement } from "@fluid-topics/ft-wc-utils";
|
|
2
|
+
import { FtReaderWatermark } from "./ft-reader-watermark";
|
|
3
|
+
export * from "./ft-reader-watermark.styles";
|
|
4
|
+
export * from "./ft-reader-watermark.properties";
|
|
5
|
+
export * from "./ft-reader-watermark";
|
|
6
|
+
customElement("ft-reader-watermark")(FtReaderWatermark);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-reader-content",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.37",
|
|
4
4
|
"description": "Main content for integrated reader",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Lit"
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@fluid-topics/ft-infinite-scroll": "1.3.
|
|
23
|
-
"@fluid-topics/ft-reader-topic-content": "1.3.
|
|
24
|
-
"@fluid-topics/ft-reader-topic-context": "1.3.
|
|
25
|
-
"@fluid-topics/ft-reader-topic-title": "1.3.
|
|
26
|
-
"@fluid-topics/ft-wc-utils": "1.3.
|
|
22
|
+
"@fluid-topics/ft-infinite-scroll": "1.3.37",
|
|
23
|
+
"@fluid-topics/ft-reader-topic-content": "1.3.37",
|
|
24
|
+
"@fluid-topics/ft-reader-topic-context": "1.3.37",
|
|
25
|
+
"@fluid-topics/ft-reader-topic-title": "1.3.37",
|
|
26
|
+
"@fluid-topics/ft-wc-utils": "1.3.37",
|
|
27
27
|
"lit": "3.1.0"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "aa9043de357f7413f8cc934d48d7c43e0df70168"
|
|
30
30
|
}
|