@pexip-engage-public/plugin 1.1.32 → 1.1.33
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
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @pexip-engage-public/plugin
|
|
2
2
|
|
|
3
|
+
## 1.1.33
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 971251e: chore(deps): update dependency happy-dom to v20 [security]
|
|
8
|
+
- c979bae: chore(deps): update dependency vitest to v4
|
|
9
|
+
- Updated dependencies [c979bae]
|
|
10
|
+
- @pexip-engage-public/utils@0.1.48
|
|
11
|
+
- @pexip-engage-public/graphql@1.2.1
|
|
12
|
+
|
|
3
13
|
## 1.1.32
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -4,7 +4,7 @@ export function createFakeHash(obj) {
|
|
|
4
4
|
return `#skedify${values}`;
|
|
5
5
|
}
|
|
6
6
|
export function createFakeElement(attributes) {
|
|
7
|
-
const element =
|
|
7
|
+
const element = window.document.createElement("div");
|
|
8
8
|
Object.entries(attributes).forEach(([key, value]) => element.setAttribute(key, value));
|
|
9
9
|
return element;
|
|
10
10
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test-utils.js","sourceRoot":"","sources":["../../../src/configuration-parser-legacy/tests/test-utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAI3D,MAAM,UAAU,cAAc,CAAC,GAAmC;IAChE,MAAM,MAAM,GAAG,mBAAmB,CAAC,GAAG,IAAI,EAAE,CAAC,CAAC;IAE9C,OAAO,WAAW,MAAM,EAAE,CAAC;AAC7B,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,UAAkC;IAClE,MAAM,OAAO,GAAG,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"test-utils.js","sourceRoot":"","sources":["../../../src/configuration-parser-legacy/tests/test-utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAI3D,MAAM,UAAU,cAAc,CAAC,GAAmC;IAChE,MAAM,MAAM,GAAG,mBAAmB,CAAC,GAAG,IAAI,EAAE,CAAC,CAAC;IAE9C,OAAO,WAAW,MAAM,EAAE,CAAC;AAC7B,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,UAAkC;IAClE,MAAM,OAAO,GAAG,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IACrD,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC,CAAC;IAEvF,OAAO,OAAO,CAAC;AACjB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pexip-engage-public/plugin",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.33",
|
|
4
4
|
"homepage": "https://github.com/skedify/frontend-mono/tree/develop/apps/booking-plugin/packages/plugin-public#readme",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/skedify/frontend-mono/issues"
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"skedify-uri-encoding": "^2.1.2",
|
|
41
41
|
"zod": "^3.25.76",
|
|
42
|
-
"@pexip-engage-public/graphql": "1.2.
|
|
43
|
-
"@pexip-engage-public/utils": "0.1.
|
|
42
|
+
"@pexip-engage-public/graphql": "1.2.1",
|
|
43
|
+
"@pexip-engage-public/utils": "0.1.48"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@total-typescript/ts-reset": "^0.6.1",
|
|
47
|
-
"happy-dom": "^
|
|
48
|
-
"vitest": "^
|
|
47
|
+
"happy-dom": "^20.0.8",
|
|
48
|
+
"vitest": "^4.0.3",
|
|
49
49
|
"@pexip-engage/tsconfig": "0.1.1",
|
|
50
50
|
"eslint-config-pexip-engage": "1.1.36"
|
|
51
51
|
},
|
|
@@ -9,7 +9,7 @@ export function createFakeHash(obj?: LegacyPluginHashConfiguration) {
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
export function createFakeElement(attributes: Record<string, string>) {
|
|
12
|
-
const element =
|
|
12
|
+
const element = window.document.createElement("div");
|
|
13
13
|
Object.entries(attributes).forEach(([key, value]) => element.setAttribute(key, value));
|
|
14
14
|
|
|
15
15
|
return element;
|