@empathyco/x-components 3.0.0-alpha.155 → 3.0.0-alpha.156
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,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.0.0-alpha.156](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.155...@empathyco/x-components@3.0.0-alpha.156) (2022-08-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @empathyco/x-components
|
|
9
|
+
|
|
10
|
+
# Change Log
|
|
11
|
+
|
|
12
|
+
All notable changes to this project will be documented in this file. See
|
|
13
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
14
|
+
|
|
6
15
|
## [3.0.0-alpha.155](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.154...@empathyco/x-components@3.0.0-alpha.155) (2022-08-18)
|
|
7
16
|
|
|
8
17
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@empathyco/x-components",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.156",
|
|
4
4
|
"description": "Empathy X Components",
|
|
5
5
|
"author": "Empathy Systems Corporation S.L.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -59,11 +59,11 @@
|
|
|
59
59
|
"cypress:open:component": "cypress open-ct"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@empathyco/x-adapter": "^8.0.0-alpha.
|
|
62
|
+
"@empathyco/x-adapter": "^8.0.0-alpha.5",
|
|
63
63
|
"@empathyco/x-deep-merge": "^1.3.0-alpha.19",
|
|
64
64
|
"@empathyco/x-logger": "^1.2.0-alpha.3",
|
|
65
65
|
"@empathyco/x-storage-service": "^2.0.0-alpha.2",
|
|
66
|
-
"@empathyco/x-types": "^10.0.0-alpha.
|
|
66
|
+
"@empathyco/x-types": "^10.0.0-alpha.32",
|
|
67
67
|
"@empathyco/x-utils": "^1.0.0-alpha.5",
|
|
68
68
|
"@types/resize-observer-browser": "~0.1.5",
|
|
69
69
|
"rxjs": "~7.4.0",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@cypress/vue": "~2.2.4",
|
|
80
80
|
"@cypress/webpack-dev-server": "~1.8.4",
|
|
81
|
-
"@empathyco/x-adapter-platform": "^1.0.0-alpha.
|
|
81
|
+
"@empathyco/x-adapter-platform": "^1.0.0-alpha.31",
|
|
82
82
|
"@empathyco/x-tailwindcss": "^0.2.0-alpha.10",
|
|
83
83
|
"@microsoft/api-documenter": "~7.15.3",
|
|
84
84
|
"@microsoft/api-extractor": "~7.19.4",
|
|
@@ -128,5 +128,5 @@
|
|
|
128
128
|
"access": "public",
|
|
129
129
|
"directory": "dist"
|
|
130
130
|
},
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "0687f98044c987babc41bb8109b6550f0a9985a1"
|
|
132
132
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { XComponentsAdapter } from '@empathyco/x-types';
|
|
2
|
-
import {
|
|
2
|
+
import { EndpointAdapter, HttpClient } from '@empathyco/x-adapter';
|
|
3
3
|
/**
|
|
4
4
|
* Mock fetch httpClient.
|
|
5
5
|
*
|
|
@@ -8,22 +8,12 @@ import { ExtendableEndpointAdapter, HttpClient } from '@empathyco/x-adapter';
|
|
|
8
8
|
* @returns A promise wrapped object containing the response.
|
|
9
9
|
*/
|
|
10
10
|
export declare const mockedFetchHttpClient: HttpClient;
|
|
11
|
-
/**
|
|
12
|
-
* Mock beacon httpClient.
|
|
13
|
-
*
|
|
14
|
-
* @param endpoint - The endpoint to use.
|
|
15
|
-
* @param _
|
|
16
|
-
* @param options - Additional options to make the request with.
|
|
17
|
-
* @returns A promise wrapped object.
|
|
18
|
-
*/
|
|
19
|
-
export declare const mockedBeaconHttpClient: HttpClient;
|
|
20
11
|
/**
|
|
21
12
|
* Mock EndpointAdapter.
|
|
22
13
|
*
|
|
23
14
|
* @param path - The path of the endpoint to mock.
|
|
24
|
-
* @param httpClient
|
|
25
15
|
* @returns The mocked endpoint adapter.
|
|
26
16
|
*/
|
|
27
|
-
export declare function mockEndpointAdapter<Request, Response>(path: string
|
|
17
|
+
export declare function mockEndpointAdapter<Request, Response>(path: string): EndpointAdapter<Request, Response>;
|
|
28
18
|
export declare const e2eAdapter: XComponentsAdapter;
|
|
29
19
|
//# sourceMappingURL=e2e-adapter.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"e2e-adapter.d.ts","sourceRoot":"","sources":["../../../src/adapter/e2e-adapter.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"e2e-adapter.d.ts","sourceRoot":"","sources":["../../../src/adapter/e2e-adapter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,EAAE,eAAe,EAA0B,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAE3F;;;;;;GAMG;AACH,eAAO,MAAM,qBAAqB,EAAE,UAMnC,CAAC;AAEF;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,QAAQ,EACnD,IAAI,EAAE,MAAM,GACX,eAAe,CAAC,OAAO,EAAE,QAAQ,CAAC,CAKpC;AAED,eAAO,MAAM,UAAU,EAAE,kBAgBxB,CAAC"}
|