@fluid-topics/ft-reader-topic-context 1.3.26 → 1.3.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/registration.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export type FtReaderTopicComponentInterface = {
|
|
|
9
9
|
disableContextInteractions: boolean;
|
|
10
10
|
headingLevelsShift: number;
|
|
11
11
|
};
|
|
12
|
-
export declare
|
|
12
|
+
export declare const toFtReaderTopicComponent: <T extends Constructor<FtLitElement>>(c: T) => T & Constructor<FtReaderTopicComponentInterface>;
|
|
13
13
|
declare const FtReaderTopicComponent_base: typeof FtReaderComponent & Constructor<FtReaderTopicComponentInterface>;
|
|
14
14
|
export declare class FtReaderTopicComponent extends FtReaderTopicComponent_base {
|
|
15
15
|
}
|
package/build/registration.js
CHANGED
|
@@ -5,6 +5,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
5
5
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
6
|
};
|
|
7
7
|
import { state } from "lit/decorators.js";
|
|
8
|
+
import { applyMixinOnce } from "@fluid-topics/ft-wc-utils";
|
|
8
9
|
import { FtReaderComponent } from "@fluid-topics/ft-reader-context/build/registration";
|
|
9
10
|
export class RegisterReaderTopicComponentEvent extends Event {
|
|
10
11
|
constructor() {
|
|
@@ -12,7 +13,7 @@ export class RegisterReaderTopicComponentEvent extends Event {
|
|
|
12
13
|
}
|
|
13
14
|
}
|
|
14
15
|
const registerInterval = Symbol("registerInterval");
|
|
15
|
-
export
|
|
16
|
+
export const toFtReaderTopicComponent = applyMixinOnce(Symbol("toFtReaderTopicComponent"), function (ReduxClass) {
|
|
16
17
|
var _a;
|
|
17
18
|
class FtReaderTopicComponentClass extends ReduxClass {
|
|
18
19
|
constructor() {
|
|
@@ -49,6 +50,6 @@ export function toFtReaderTopicComponent(ReduxClass) {
|
|
|
49
50
|
state()
|
|
50
51
|
], FtReaderTopicComponentClass.prototype, "headingLevelsShift", void 0);
|
|
51
52
|
return FtReaderTopicComponentClass;
|
|
52
|
-
}
|
|
53
|
+
});
|
|
53
54
|
export class FtReaderTopicComponent extends toFtReaderTopicComponent(FtReaderComponent) {
|
|
54
55
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-reader-topic-context",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.28",
|
|
4
4
|
"description": "Context block for integrated reader topic components.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Lit"
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@fluid-topics/ft-wc-utils": "1.3.
|
|
22
|
+
"@fluid-topics/ft-wc-utils": "1.3.28",
|
|
23
23
|
"lit": "3.1.0"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "face2509aeead24e78a16af4ffd2123ef281dac2"
|
|
26
26
|
}
|