@fluid-topics/ft-app-context 1.3.25 → 1.3.26

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,9 +1,10 @@
1
- export type NotificationType = "INFO" | "WARN" | "ERROR" | "FATAL" | "OTHER";
1
+ export type NotificationType = "INFO" | "WARN" | "ERROR" | "FATAL" | "ARIA" | "OTHER";
2
2
  interface FluidTopicsNotificationService {
3
3
  notify(type: NotificationType, message: string): void;
4
4
  info(message: string): void;
5
5
  warn(message: string): void;
6
6
  error(message: string): void;
7
+ aria(message: string): void;
7
8
  }
8
9
  declare global {
9
10
  interface Window {
@@ -15,5 +16,6 @@ export declare class FtWebappNotificationService {
15
16
  static info(message: string): void;
16
17
  static warn(message: string): void;
17
18
  static error(message: string): void;
19
+ static aria(message: string): void;
18
20
  }
19
21
  export {};
@@ -11,4 +11,7 @@ export class FtWebappNotificationService {
11
11
  static error(message) {
12
12
  window.FluidTopicsNotificationService.error(message);
13
13
  }
14
+ static aria(message) {
15
+ window.FluidTopicsNotificationService.aria(message);
16
+ }
14
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-topics/ft-app-context",
3
- "version": "1.3.25",
3
+ "version": "1.3.26",
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.3.25",
22
+ "@fluid-topics/ft-wc-utils": "1.3.26",
23
23
  "lit": "3.1.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@fluid-topics/public-api": "1.0.105"
27
27
  },
28
- "gitHead": "c1db8e8b54f9c8e258d92f0b175253cd7a136afa"
28
+ "gitHead": "2801b1f3a132753af33d5d62b8001164737e2a4f"
29
29
  }