@fluid-topics/ft-app-context 2.0.15 → 2.0.17

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.
@@ -1,19 +1,17 @@
1
1
  import { deepEqual, FtReduxStore, } from "@fluid-topics/ft-wc-utils";
2
2
  export const FtAppInfoStoreName = "ft-app-info";
3
- class AuthenticationChangeEvent extends CustomEvent {
3
+ export class AuthenticationChangeEvent extends CustomEvent {
4
4
  constructor(session) {
5
5
  super(AuthenticationChangeEvent.eventName, { detail: session });
6
6
  }
7
7
  }
8
8
  AuthenticationChangeEvent.eventName = "authentication-change";
9
- export { AuthenticationChangeEvent };
10
- class UiLocaleChangedEvent extends CustomEvent {
9
+ export class UiLocaleChangedEvent extends CustomEvent {
11
10
  constructor(localeSummary) {
12
11
  super(UiLocaleChangedEvent.eventName, { detail: localeSummary });
13
12
  }
14
13
  }
15
14
  UiLocaleChangedEvent.eventName = "ui-locale-changed";
16
- export { UiLocaleChangedEvent };
17
15
  const reducers = {
18
16
  session: (state, action) => {
19
17
  if (!deepEqual(state.session, action.payload)) {
@@ -1,7 +1,6 @@
1
- class HistoryChangeEvent extends CustomEvent {
1
+ export class HistoryChangeEvent extends CustomEvent {
2
2
  constructor(currentItem) {
3
3
  super(HistoryChangeEvent.eventName, { detail: { currentItem } });
4
4
  }
5
5
  }
6
6
  HistoryChangeEvent.eventName = "change";
7
- export { HistoryChangeEvent };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-topics/ft-app-context",
3
- "version": "2.0.15",
3
+ "version": "2.0.17",
4
4
  "description": "Global application context for Fluid Topics integrations",
5
5
  "keywords": [
6
6
  "Lit"
@@ -19,11 +19,11 @@
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": "2.0.15",
22
+ "@fluid-topics/ft-wc-utils": "2.0.17",
23
23
  "lit": "3.1.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@fluid-topics/public-api": "1.0.120"
27
27
  },
28
- "gitHead": "4ccf89e835f22f2689fc0fe3f97c46671debe98d"
28
+ "gitHead": "630c12bb34a3f0df02b112fc182bbbb97025d959"
29
29
  }