@qratilabs/qrati-connect 1.0.0-beta.13 → 1.0.0-beta.15
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 +14 -0
- package/index.js +1 -0
- package/package.json +3 -1
- package/stats.html +1 -1
- package/index.cjs.js +0 -1447
- package/index.cjs.js.map +0 -1
- package/index.esm.js +0 -1447
- package/index.esm.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.0.0-beta.14](https://github.com/qrati-labs/qrati-connect-js/compare/v1.0.0-beta.13...v1.0.0-beta.14) (2025-02-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* enable lazy loading for PublicEvents component and improve console logs for debugging ([6562cdc](https://github.com/qrati-labs/qrati-connect-js/commit/6562cdca503b085caa16f9718a9b6347eadc4c96))
|
|
7
|
+
|
|
8
|
+
# [1.0.0-beta.13](https://github.com/qrati-labs/qrati-connect-js/compare/v1.0.0-beta.12...v1.0.0-beta.13) (2025-02-14)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update header to clarify displayed base URL in QratiConnect component ([f48ba6f](https://github.com/qrati-labs/qrati-connect-js/commit/f48ba6f76ec8ee4a155422a3f98812d56102bae1))
|
|
14
|
+
|
|
1
15
|
# [1.0.0-beta.12](https://github.com/qrati-labs/qrati-connect-js/compare/v1.0.0-beta.11...v1.0.0-beta.12) (2025-02-14)
|
|
2
16
|
|
|
3
17
|
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import e from"react";const t=({})=>e.createElement("div",null,e.createElement("h1",null,"Qrati Connect"));export{t as QratiConnectReact};
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qratilabs/qrati-connect",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.15",
|
|
4
4
|
"description": "Easily integrate Qrati into your React app with a simple but powerful component.",
|
|
5
5
|
"main": "./index.cjs.js",
|
|
6
6
|
"module": "./index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
7
8
|
"exports": {
|
|
8
9
|
"import": "./index.esm.js",
|
|
9
10
|
"require": "./index.cjs.js"
|
|
@@ -29,6 +30,7 @@
|
|
|
29
30
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
30
31
|
},
|
|
31
32
|
"dependencies": {
|
|
33
|
+
"@qratilabs/qrati-connect": "^1.0.0-beta.13",
|
|
32
34
|
"@tanstack/react-query": "^5.66.0",
|
|
33
35
|
"browser-image-compression": "^2.0.2",
|
|
34
36
|
"clsx": "^2.1.1",
|