@embeddable.com/sdk-react 0.0.8 → 0.0.9

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.
@@ -1,15 +1,15 @@
1
1
 
2
- > @embeddable.com/sdk-react@0.0.8 build
2
+ > @embeddable.com/sdk-react@0.0.9 build
3
3
  > rollup -c
4
4
 
5
- (node:1832) ExperimentalWarning: Import assertions are not a stable feature of the JavaScript language. Avoid relying on their current behavior and syntax as those might change in a future version of Node.js.
5
+ (node:1885) ExperimentalWarning: Import assertions are not a stable feature of the JavaScript language. Avoid relying on their current behavior and syntax as those might change in a future version of Node.js.
6
6
  (Use `node --trace-warnings ...` to show where the warning was created)
7
- (node:1832) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
7
+ (node:1885) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
8
8
  
9
9
  ./src/index.ts → lib/index.umd.js...
10
10
  (!) Plugin typescript: @rollup/plugin-typescript: Rollup 'sourcemap' option must be set to generate source maps.
11
- created lib/index.umd.js in 2.3s
11
+ created lib/index.umd.js in 2.5s
12
12
  
13
13
  ./src/index.ts → lib/index.cjs.js, lib/index.esm.js...
14
14
  (!) Plugin typescript: @rollup/plugin-typescript: Rollup 'sourcemap' option must be set to generate source maps.
15
- created lib/index.cjs.js, lib/index.esm.js in 1.2s
15
+ created lib/index.cjs.js, lib/index.esm.js in 1.5s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @embeddable.com/sdk-react
2
2
 
3
+ ## 0.0.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 124ff74: Move loadData to core. Add axios.
8
+ - Updated dependencies [124ff74]
9
+ - @embeddable.com/sdk-core@0.0.5
10
+
3
11
  ## 0.0.8
4
12
 
5
13
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@embeddable.com/sdk-react",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "Embeddable SDK React plugin/module responsible for React components bundling.",
5
5
  "keywords": [
6
6
  "embeddable",
@@ -28,19 +28,12 @@
28
28
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
29
29
  },
30
30
  "devDependencies": {
31
- "@rollup/plugin-commonjs": "^25.0.2",
32
- "@rollup/plugin-node-resolve": "^15.1.0",
33
- "@rollup/plugin-replace": "^5.0.2",
34
- "@rollup/plugin-typescript": "^11.1.2",
35
31
  "@types/react": "^18.2.14",
36
- "react": "^18.2.0",
37
- "rollup": "^3.26.0",
38
- "typescript": "^5.1.6"
32
+ "react": "^18.2.0"
39
33
  },
40
34
  "dependencies": {
41
35
  "@embeddable.com/sdk-core": "*",
42
36
  "@vitejs/plugin-react": "^4.0.2",
43
- "ora": "^6.3.1",
44
37
  "vite": "^4.4.2"
45
38
  }
46
39
  }
package/tsconfig.json CHANGED
@@ -7,7 +7,12 @@
7
7
  "jsx": "react",
8
8
  "sourceMap": true,
9
9
  "declaration": true,
10
- "outDir": "lib"
10
+ "outDir": "lib",
11
+ "lib": [
12
+ "DOM",
13
+ "DOM.Iterable",
14
+ "ESNext"
15
+ ]
11
16
  },
12
17
  "exclude": [
13
18
  "node_modules",
package/src/index.d.ts DELETED
@@ -1 +0,0 @@
1
- export { connectWidget } from './connectWidget';