@fluid-topics/ft-app-context 1.1.40 → 1.1.42

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.
@@ -11,4 +11,5 @@ export interface FtAppContextProperties {
11
11
  messageContexts?: FtMessageContext[];
12
12
  session?: FtSession;
13
13
  metadataConfiguration?: FtMetadataConfiguration;
14
+ openExternalDocumentInNewTab?: boolean;
14
15
  }
package/build/index.d.ts CHANGED
@@ -3,7 +3,7 @@ export * from "./redux-stores/FtUserAssetsStore";
3
3
  export * from "./services/FtServiceWithCache";
4
4
  export * from "./services/FluidTopicsApiProvider";
5
5
  export * from "./services/FtI18nService";
6
- export * from "./ft-app-context.css";
6
+ export * from "./ft-app-context.styles";
7
7
  export * from "./ft-app-context.properties";
8
8
  export * from "./ft-app-context";
9
9
  declare global {
package/build/index.js CHANGED
@@ -5,7 +5,7 @@ export * from "./redux-stores/FtUserAssetsStore";
5
5
  export * from "./services/FtServiceWithCache";
6
6
  export * from "./services/FluidTopicsApiProvider";
7
7
  export * from "./services/FtI18nService";
8
- export * from "./ft-app-context.css";
8
+ export * from "./ft-app-context.styles";
9
9
  export * from "./ft-app-context.properties";
10
10
  export * from "./ft-app-context";
11
11
  customElement("ft-app-context")(FtAppContext);
@@ -11,6 +11,7 @@ export interface FtAppInfoState {
11
11
  noCustom: boolean;
12
12
  noCustomComponent: boolean | string;
13
13
  session: Optional<FtSession>;
14
+ openExternalDocumentInNewTab: boolean;
14
15
  }
15
16
  declare const reducers: {};
16
17
  export type FtAppInfoStateReducers = typeof reducers;
@@ -13,6 +13,7 @@ export const ftAppInfoStore = FtReduxStore.get({
13
13
  editorMode: false,
14
14
  noCustom: false,
15
15
  noCustomComponent: false,
16
- session: undefined
16
+ session: undefined,
17
+ openExternalDocumentInNewTab: false,
17
18
  }
18
19
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-topics/ft-app-context",
3
- "version": "1.1.40",
3
+ "version": "1.1.42",
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": "1.1.40",
22
+ "@fluid-topics/ft-wc-utils": "1.1.42",
23
23
  "lit": "3.1.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@fluid-topics/public-api": "1.0.60"
27
27
  },
28
- "gitHead": "ef5d1fb82ff388535e7a81aa3e8ffdb53c7591b4"
28
+ "gitHead": "057e1248874a9a814a34e0bf75329f963744a5ff"
29
29
  }