@limetech/lime-web-components 4.49.1-alpha.5 → 4.49.1-alpha.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.49.1-alpha.6](https://github.com/Lundalogik/lime-web-components/compare/v4.49.1-alpha.5...v4.49.1-alpha.6) (2022-07-06)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **platform:** create explicit type for names enum ([606bc3b](https://github.com/Lundalogik/lime-web-components/commit/606bc3b5547389366a28dd3a57edb4d322ed7372))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [4.49.1-alpha.5](https://github.com/Lundalogik/lime-web-components/compare/v4.49.1-alpha.4...v4.49.1-alpha.5) (2022-07-06)
7
18
 
8
19
 
@@ -1,14 +1,14 @@
1
1
  import { StateRepository } from '../core';
2
2
  declare const SERVICE_NAME = "state.application";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link StateRepository}
7
7
  */
8
8
  Application: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['Application']): StateRepository;
11
+ get(name: PlatformServiceNameType['Application']): StateRepository;
12
12
  }
13
13
  }
14
14
  export {};
@@ -1,14 +1,14 @@
1
1
  import { CommandBus as Service } from './commandbus';
2
2
  declare const SERVICE_NAME = "commandBus";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link Service CommandBus}
7
7
  */
8
8
  CommandBus: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['CommandBus']): Service;
11
+ get(name: PlatformServiceNameType['CommandBus']): Service;
12
12
  }
13
13
  }
14
14
  export {};
@@ -1,14 +1,14 @@
1
1
  import { ConfigRepository as Service } from './repository';
2
2
  declare const SERVICE_NAME = "state.configs";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link Service ConfigRepository}
7
7
  */
8
8
  ConfigRepository: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['ConfigRepository']): Service;
11
+ get(name: PlatformServiceNameType['ConfigRepository']): Service;
12
12
  }
13
13
  }
14
14
  export {};
@@ -29,8 +29,8 @@ export interface LimeWebComponentPlatform {
29
29
  /**
30
30
  * Core platform service names
31
31
  */
32
- export declare const PlatformServiceName: PlatformServiceName;
33
- export interface PlatformServiceName {
32
+ export declare const PlatformServiceName: PlatformServiceNameType;
33
+ export interface PlatformServiceNameType {
34
34
  /**
35
35
  * @deprecated use the new {@link PlatformServiceName.Navigator} instead
36
36
  */
@@ -1,14 +1,14 @@
1
1
  import { Device as Service } from './device';
2
2
  declare const SERVICE_NAME = "state.device";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link Service Device}
7
7
  */
8
8
  Device: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['Device']): Service;
11
+ get(name: PlatformServiceNameType['Device']): Service;
12
12
  }
13
13
  }
14
14
  export {};
@@ -1,14 +1,14 @@
1
1
  import { DialogRenderer } from './dialog';
2
2
  declare const SERVICE_NAME = "dialog";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link DialogRenderer}
7
7
  */
8
8
  Dialog: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['Dialog']): DialogRenderer;
11
+ get(name: PlatformServiceNameType['Dialog']): DialogRenderer;
12
12
  }
13
13
  }
14
14
  export {};
@@ -1,14 +1,14 @@
1
1
  import { EventDispatcher as Service } from './eventdispatcher';
2
2
  declare const SERVICE_NAME = "eventDispatcher";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link Service EventDispatcher}
7
7
  */
8
8
  EventDispatcher: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['EventDispatcher']): Service;
11
+ get(name: PlatformServiceNameType['EventDispatcher']): Service;
12
12
  }
13
13
  }
14
14
  export {};
@@ -1,14 +1,14 @@
1
1
  import { FilterRepository as Service } from './repository';
2
2
  declare const SERVICE_NAME = "state.filters";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link Service FilterRepository}
7
7
  */
8
8
  FilterRepository: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['FilterRepository']): Service;
11
+ get(name: PlatformServiceNameType['FilterRepository']): Service;
12
12
  }
13
13
  }
14
14
  export {};
@@ -1,14 +1,14 @@
1
1
  import { HttpClient } from './http';
2
2
  declare const SERVICE_NAME = "http";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link HttpClient}
7
7
  */
8
8
  Http: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['Http']): HttpClient;
11
+ get(name: PlatformServiceNameType['Http']): HttpClient;
12
12
  }
13
13
  }
14
14
  export {};
@@ -1,7 +1,7 @@
1
1
  import { KeybindingRegistry as Service } from './registry';
2
2
  declare const SERVICE_NAME = "keybindingRegistry";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link Service KeybindingRegistry}
7
7
  *
@@ -11,7 +11,7 @@ declare module '../core/platform' {
11
11
  KeybindingRegistry: typeof SERVICE_NAME;
12
12
  }
13
13
  interface LimeWebComponentPlatform {
14
- get(name: PlatformServiceName['KeybindingRegistry']): Service;
14
+ get(name: PlatformServiceNameType['KeybindingRegistry']): Service;
15
15
  }
16
16
  }
17
17
  export {};
@@ -1,14 +1,14 @@
1
1
  import { LimeObjectRepository as Service } from './repository';
2
2
  declare const SERVICE_NAME = "state.limeobjects";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link Service LimeObjectRepository}
7
7
  */
8
8
  LimeObjectRepository: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['LimeObjectRepository']): Service;
11
+ get(name: PlatformServiceNameType['LimeObjectRepository']): Service;
12
12
  }
13
13
  }
14
14
  export {};
@@ -1,14 +1,14 @@
1
1
  import { StateRepository } from '../core';
2
2
  declare const SERVICE_NAME = "state.limetypes";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link StateRepository}
7
7
  */
8
8
  LimeTypeRepository: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['LimeTypeRepository']): StateRepository;
11
+ get(name: PlatformServiceNameType['LimeTypeRepository']): StateRepository;
12
12
  }
13
13
  }
14
14
  export {};
@@ -1,7 +1,7 @@
1
1
  import { Navigator as Service } from './navigator';
2
2
  declare const SERVICE_NAME = "navigator";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link Service Navigator}
7
7
  *
@@ -11,7 +11,7 @@ declare module '../core/platform' {
11
11
  Navigator: typeof SERVICE_NAME;
12
12
  }
13
13
  interface LimeWebComponentPlatform {
14
- get(name: PlatformServiceName['Navigator']): Service;
14
+ get(name: PlatformServiceNameType['Navigator']): Service;
15
15
  }
16
16
  }
17
17
  export {};
@@ -1,14 +1,14 @@
1
1
  import { Notifications } from './notifications';
2
2
  declare const SERVICE_NAME = "notifications";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link Notifications}
7
7
  */
8
8
  Notification: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['Notification']): Notifications;
11
+ get(name: PlatformServiceNameType['Notification']): Notifications;
12
12
  }
13
13
  }
14
14
  export {};
@@ -1,14 +1,14 @@
1
1
  import { QueryService } from './service';
2
2
  declare const SERVICE_NAME = "query";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link QueryService}
7
7
  */
8
8
  Query: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['Query']): QueryService;
11
+ get(name: PlatformServiceNameType['Query']): QueryService;
12
12
  }
13
13
  }
14
14
  export {};
@@ -1,7 +1,7 @@
1
1
  import { RouteRegistry as Service } from './registry';
2
2
  declare const SERVICE_NAME = "routeRegistry";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link Service RouteRegistry}
7
7
  *
@@ -11,7 +11,7 @@ declare module '../core/platform' {
11
11
  RouteRegistry: typeof SERVICE_NAME;
12
12
  }
13
13
  interface LimeWebComponentPlatform {
14
- get(name: PlatformServiceName['RouteRegistry']): Service;
14
+ get(name: PlatformServiceNameType['RouteRegistry']): Service;
15
15
  }
16
16
  }
17
17
  export {};
@@ -1,14 +1,14 @@
1
1
  import { TaskRepository as Service } from './repository';
2
2
  declare const SERVICE_NAME = "state.tasks";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link Service TaskRepository}
7
7
  */
8
8
  TaskRepository: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['TaskRepository']): Service;
11
+ get(name: PlatformServiceNameType['TaskRepository']): Service;
12
12
  }
13
13
  }
14
14
  export {};
@@ -1,14 +1,14 @@
1
1
  import { Translator } from './translator';
2
2
  declare const SERVICE_NAME = "translate";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link Translate}
7
7
  */
8
8
  Translate: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['Translate']): Translator;
11
+ get(name: PlatformServiceNameType['Translate']): Translator;
12
12
  }
13
13
  }
14
14
  export {};
@@ -1,14 +1,14 @@
1
1
  import { UserDataRepository } from './repository';
2
2
  declare const SERVICE_NAME = "state.user-data";
3
3
  declare module '../core/platform' {
4
- interface PlatformServiceName {
4
+ interface PlatformServiceNameType {
5
5
  /**
6
6
  * @see {@link UserDataRepository}
7
7
  */
8
8
  UserData: typeof SERVICE_NAME;
9
9
  }
10
10
  interface LimeWebComponentPlatform {
11
- get(name: PlatformServiceName['UserData']): UserDataRepository;
11
+ get(name: PlatformServiceNameType['UserData']): UserDataRepository;
12
12
  }
13
13
  }
14
14
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@limetech/lime-web-components",
3
- "version": "4.49.1-alpha.5",
3
+ "version": "4.49.1-alpha.6",
4
4
  "author": "Lime Technologies",
5
5
  "homepage": "https://github.com/Lundalogik/lime-web-components",
6
6
  "license": "Apache-2.0",
@@ -35,10 +35,10 @@
35
35
  "url": "https://github.com/Lundalogik/lime-web-components/issues"
36
36
  },
37
37
  "dependencies": {
38
- "@limetech/lime-web-components-commands": "^4.49.1-alpha.5",
39
- "@limetech/lime-web-components-decorators": "^4.49.1-alpha.5",
40
- "@limetech/lime-web-components-interfaces": "^4.49.1-alpha.5",
41
- "@limetech/lime-web-components-testing": "^4.49.1-alpha.5"
38
+ "@limetech/lime-web-components-commands": "^4.49.1-alpha.6",
39
+ "@limetech/lime-web-components-decorators": "^4.49.1-alpha.6",
40
+ "@limetech/lime-web-components-interfaces": "^4.49.1-alpha.6",
41
+ "@limetech/lime-web-components-testing": "^4.49.1-alpha.6"
42
42
  },
43
- "gitHead": "49b7b6e4e09348884ee93fe4acf02f84cc2374fe"
43
+ "gitHead": "42e148e673b601fc7874b2f32db860bc3be5841d"
44
44
  }