@fluid-topics/ft-reader-context 0.3.22 → 0.3.23
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 +3 -1
- package/build/registration.js +2 -1
- package/package.json +3 -3
package/build/registration.d.ts
CHANGED
|
@@ -14,5 +14,7 @@ export declare type FtReaderComponentInterface = {
|
|
|
14
14
|
declare type Constructor<T> = new (...args: any[]) => T;
|
|
15
15
|
export declare type FtReaderComponentType<T extends Constructor<FtLitElementRedux>> = T & Constructor<FtReaderComponentInterface>;
|
|
16
16
|
export declare function toFtReaderComponent<T extends Constructor<FtLitElementRedux>>(ReduxClass: T): FtReaderComponentType<T>;
|
|
17
|
-
|
|
17
|
+
declare const FtReaderComponent_base: FtReaderComponentType<typeof FtLitElementRedux>;
|
|
18
|
+
export declare class FtReaderComponent extends FtReaderComponent_base {
|
|
19
|
+
}
|
|
18
20
|
//# sourceMappingURL=registration.d.ts.map
|
package/build/registration.js
CHANGED
|
@@ -37,5 +37,6 @@ export function toFtReaderComponent(ReduxClass) {
|
|
|
37
37
|
], FtReaderComponentClass.prototype, "stateManager", void 0);
|
|
38
38
|
return FtReaderComponentClass;
|
|
39
39
|
}
|
|
40
|
-
export
|
|
40
|
+
export class FtReaderComponent extends toFtReaderComponent(FtLitElementRedux) {
|
|
41
|
+
}
|
|
41
42
|
//# sourceMappingURL=registration.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-reader-context",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.23",
|
|
4
4
|
"description": "Context block for integrated reader components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Lit"
|
|
@@ -19,7 +19,7 @@
|
|
|
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": "0.3.
|
|
22
|
+
"@fluid-topics/ft-wc-utils": "0.3.23",
|
|
23
23
|
"@reduxjs/toolkit": "^1.6.2",
|
|
24
24
|
"lit": "2.2.8"
|
|
25
25
|
},
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"@fluid-topics/public-api": "1.0.24"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "7fb0bb52d064423f63bfd9c36c5454d65aa890d6"
|
|
33
33
|
}
|