@pexip-engage-public/plugin 1.0.4 → 1.0.5-canary-20231114200616

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,12 @@
1
1
  # @pexip-engage-public/plugin
2
2
 
3
+ ## 1.0.5-canary-20231114200616
4
+
5
+ ### Patch Changes
6
+
7
+ - 8494ccf0c: chore(deps): update all non-major dependencies
8
+ - @pexip-engage-public/graphql@1.0.3
9
+
3
10
  ## 1.0.4
4
11
 
5
12
  ### Patch Changes
@@ -1,4 +1,4 @@
1
- import resizer, {} from "iframe-resizer/js/iframeResizer.min.js";
1
+ import resizer, {} from "iframe-resizer/js/iframeResizer.js";
2
2
  import { parsePluginConfiguration } from "../configuration-parser/index.js";
3
3
  import { encodeURIParameters, pluginParams } from "../encoding.js";
4
4
  import {} from "../events/index.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pexip-engage-public/plugin",
3
- "version": "1.0.4",
3
+ "version": "1.0.5-canary-20231114200616",
4
4
  "homepage": "https://github.com/skedify/frontend-mono/tree/develop/apps/plugin-remix/packages/plugin-public#readme",
5
5
  "bugs": {
6
6
  "url": "https://github.com/skedify/frontend-mono/issues"
@@ -34,7 +34,7 @@
34
34
  "src"
35
35
  ],
36
36
  "dependencies": {
37
- "iframe-resizer": "^4.3.7",
37
+ "iframe-resizer": "^4.3.9",
38
38
  "skedify-uri-encoding": "^2.1.1",
39
39
  "zod": "^3.22.4",
40
40
  "@pexip-engage-public/graphql": "1.0.3"
@@ -45,7 +45,7 @@
45
45
  "happy-dom": "^12.10.3",
46
46
  "vitest": "^0.34.6",
47
47
  "@pexip-engage/tsconfig": "0.1.0",
48
- "eslint-config-pexip-engage": "0.1.0"
48
+ "eslint-config-pexip-engage": "0.1.1-canary-20231114200616"
49
49
  },
50
50
  "volta": {
51
51
  "extends": "../../../../package.json"
@@ -1,4 +1,4 @@
1
- declare module "iframe-resizer/js/iframeResizer.min.js" {
1
+ declare module "iframe-resizer/js/iframeResizer.js" {
2
2
  export interface IFrameObject {
3
3
  /**
4
4
  * Remove the iFrame from the page.
@@ -1,7 +1,7 @@
1
1
  import resizer, {
2
2
  type IFrameComponent,
3
3
  type IFrameMessageData,
4
- } from "iframe-resizer/js/iframeResizer.min.js";
4
+ } from "iframe-resizer/js/iframeResizer.js";
5
5
 
6
6
  import { parsePluginConfiguration } from "../configuration-parser/index.js";
7
7
  import { encodeURIParameters, pluginParams } from "../encoding.js";