@fluid-topics/ft-wc-utils 1.3.5 → 1.3.6
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/CacheRegistry.js +1 -0
- package/build/DynamicImporter.d.ts +4 -0
- package/build/DynamicImporter.js +6 -0
- package/build/globals.min.js +14 -14
- package/build/index.d.ts +1 -0
- package/build/index.js +4 -1
- package/build/redux/FtLitElementRedux.d.ts +1 -1
- package/build/redux/FtLitElementRedux.js +2 -2
- package/package.json +2 -2
package/build/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export * from "./DateFormatter";
|
|
|
18
18
|
export * from "./Debouncer";
|
|
19
19
|
export * from "./decorators";
|
|
20
20
|
export * from "./designSystemVariables";
|
|
21
|
+
export * from "./DynamicImporter";
|
|
21
22
|
export * from "./events";
|
|
22
23
|
export * from "./floating";
|
|
23
24
|
export * from "./FluidTopicsScrollHelper";
|
package/build/index.js
CHANGED
|
@@ -12,6 +12,7 @@ import * as ClusteringHelper from "./ClusteringHelper";
|
|
|
12
12
|
import * as Debouncer from "./Debouncer";
|
|
13
13
|
import * as decorators from "./decorators";
|
|
14
14
|
import * as designSystemVariables from "./designSystemVariables";
|
|
15
|
+
import * as importer from "./DynamicImporter";
|
|
15
16
|
import * as events from "./events";
|
|
16
17
|
import * as floating from "./floating";
|
|
17
18
|
import * as FtCssVariables from "./FtCssVariables";
|
|
@@ -68,6 +69,7 @@ window.ftGlobals = (_d = window.ftGlobals) !== null && _d !== void 0 ? _d : {
|
|
|
68
69
|
...genericTypes,
|
|
69
70
|
...helpers,
|
|
70
71
|
...highlightHtml,
|
|
72
|
+
...importer,
|
|
71
73
|
...mixinsCss,
|
|
72
74
|
...screenReaderStyles,
|
|
73
75
|
...models,
|
|
@@ -80,7 +82,7 @@ window.ftGlobals = (_d = window.ftGlobals) !== null && _d !== void 0 ? _d : {
|
|
|
80
82
|
isSafari,
|
|
81
83
|
isTouchScreen,
|
|
82
84
|
setVariable,
|
|
83
|
-
}
|
|
85
|
+
},
|
|
84
86
|
};
|
|
85
87
|
export * from "./a11y/FluidTopicsA11yEvents";
|
|
86
88
|
export * from "./a11y/FluidTopicsA11yHints";
|
|
@@ -91,6 +93,7 @@ export * from "./DateFormatter";
|
|
|
91
93
|
export * from "./Debouncer";
|
|
92
94
|
export * from "./decorators";
|
|
93
95
|
export * from "./designSystemVariables";
|
|
96
|
+
export * from "./DynamicImporter";
|
|
94
97
|
export * from "./events";
|
|
95
98
|
export * from "./floating";
|
|
96
99
|
export * from "./FluidTopicsScrollHelper";
|
|
@@ -15,7 +15,7 @@ export declare class FtLitElementRedux extends FtLitElement {
|
|
|
15
15
|
private readonly [internalStores];
|
|
16
16
|
private readonly [internalReduxEventsUnsubscribers];
|
|
17
17
|
private get reduxConstructor();
|
|
18
|
-
protected
|
|
18
|
+
protected willUpdate(props: PropertyValues): void;
|
|
19
19
|
private getUnnamedStore;
|
|
20
20
|
getStore<ReturnType = Optional<Store>>(name?: string): ReturnType;
|
|
21
21
|
protected addStore(store: FtReduxStore, name?: string): void;
|
|
@@ -14,8 +14,8 @@ class FtLitElementRedux extends FtLitElement {
|
|
|
14
14
|
get reduxConstructor() {
|
|
15
15
|
return this.constructor;
|
|
16
16
|
}
|
|
17
|
-
|
|
18
|
-
super.
|
|
17
|
+
willUpdate(props) {
|
|
18
|
+
super.willUpdate(props);
|
|
19
19
|
if ([...this.reduxConstructor.reduxReactiveProperties].some(prop => props.has(prop))) {
|
|
20
20
|
this.updateFromStores();
|
|
21
21
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-wc-utils",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"description": "Internal web components tools",
|
|
5
5
|
"author": "Fluid Topics <devtopics@antidot.net>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"mark.js": "8.11.1",
|
|
25
25
|
"moment": "2.29.4"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "595e5b638bbf265e174474722661e26767cfbd9d"
|
|
28
28
|
}
|