@limetech/lime-web-components 4.49.1-alpha.4 → 4.50.0-alpha.0

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,45 @@
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.50.0-alpha.0](https://github.com/Lundalogik/lime-web-components/compare/v4.49.1-alpha.6...v4.50.0-alpha.0) (2022-07-07)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **package.json:** set correct entry points ([3dedd2f](https://github.com/Lundalogik/lime-web-components/commit/3dedd2fbf5cc1473a4e37a34f15092bad90eb009))
12
+
13
+
14
+ ### Features
15
+
16
+ * **testing:** expose testing package in a better way ([f52321f](https://github.com/Lundalogik/lime-web-components/commit/f52321f0388c39996296fb8ab542f03b426e5017))
17
+
18
+
19
+
20
+
21
+
22
+ ## [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)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **platform:** create explicit type for names enum ([606bc3b](https://github.com/Lundalogik/lime-web-components/commit/606bc3b5547389366a28dd3a57edb4d322ed7372))
28
+
29
+
30
+
31
+
32
+
33
+ ## [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)
34
+
35
+
36
+
37
+ ## [4.48.2](https://github.com/Lundalogik/lime-web-components/compare/v4.49.1-alpha.2...v4.48.2) (2022-07-05)
38
+
39
+ **Note:** Version bump only for package @limetech/lime-web-components
40
+
41
+
42
+
43
+
44
+
6
45
  ## [4.49.1-alpha.4](https://github.com/Lundalogik/lime-web-components/compare/v4.49.1-alpha.3...v4.49.1-alpha.4) (2022-07-05)
7
46
 
8
47
 
@@ -155,6 +194,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
155
194
 
156
195
 
157
196
 
197
+ ## [4.48.2](https://github.com/Lundalogik/lime-web-components/compare/v4.48.1...v4.48.2) (2022-07-05)
198
+
199
+ **Note:** Version bump only for package @limetech/lime-web-components
200
+
201
+
202
+
203
+
204
+
158
205
  ## [4.48.1](https://github.com/Lundalogik/lime-web-components/compare/v4.48.0...v4.48.1) (2022-06-21)
159
206
 
160
207
  **Note:** Version bump only for package @limetech/lime-web-components
@@ -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,18 +1,19 @@
1
1
  {
2
2
  "name": "@limetech/lime-web-components",
3
- "version": "4.49.1-alpha.4",
3
+ "version": "4.50.0-alpha.0",
4
4
  "author": "Lime Technologies",
5
5
  "homepage": "https://github.com/Lundalogik/lime-web-components",
6
6
  "license": "Apache-2.0",
7
- "main": "dist/index.js",
8
- "module": "dist/index.esm.js",
7
+ "main": "dist/es5/index.js",
8
+ "module": "dist/index.js",
9
9
  "types": "dist/index.d.ts",
10
10
  "keywords": [
11
11
  "lime web components",
12
12
  "lime crm"
13
13
  ],
14
14
  "files": [
15
- "dist"
15
+ "dist",
16
+ "testing"
16
17
  ],
17
18
  "scripts": {
18
19
  "build": "tsc && tsc -p tsconfig.es5.json",
@@ -35,10 +36,10 @@
35
36
  "url": "https://github.com/Lundalogik/lime-web-components/issues"
36
37
  },
37
38
  "dependencies": {
38
- "@limetech/lime-web-components-commands": "^4.49.1-alpha.4",
39
- "@limetech/lime-web-components-decorators": "^4.49.1-alpha.4",
40
- "@limetech/lime-web-components-interfaces": "^4.49.1-alpha.4",
41
- "@limetech/lime-web-components-testing": "^4.49.1-alpha.4"
39
+ "@limetech/lime-web-components-commands": "^4.49.1-alpha.6",
40
+ "@limetech/lime-web-components-decorators": "^4.49.1-alpha.6",
41
+ "@limetech/lime-web-components-interfaces": "^4.49.1-alpha.6",
42
+ "@limetech/lime-web-components-testing": "^4.49.1-alpha.6"
42
43
  },
43
- "gitHead": "86f23f6c8a4e993d3b9e3307c978a2bb36dc2e95"
44
+ "gitHead": "3487a0fe8c6bcea547a9831e38f6bbcdd59fd9d3"
44
45
  }
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@limetech/lime-web-components",
3
+ "author": "Lime Technologies",
4
+ "main": "../dist/es5/testing/index.js",
5
+ "module": "../dist/testing/index.es.js",
6
+ "types": "../dist/testing/index.d.ts",
7
+ "keywords": [
8
+ "lime web components",
9
+ "lime crm"
10
+ ],
11
+ "files": [
12
+ "../dist/testing"
13
+ ]
14
+ }