@qratilabs/qrati-connect 2.6.0-beta.1 → 2.6.0-beta.2

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,3 +1,15 @@
1
+ # [2.6.0-beta.1](https://github.com/qrati-labs/qrati-connect-ts/compare/v2.5.4-beta.1...v2.6.0-beta.1) (2026-03-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add comment for clarity in ReactRouterRoutes component ([2be72ef](https://github.com/qrati-labs/qrati-connect-ts/commit/2be72efc762e208f434ce83efb58c0b9fbedf75e))
7
+
8
+
9
+ ### Features
10
+
11
+ * add DescriptionWithSeeMore component and integrate into EventHeader; update example subproject commits and enhance styles ([1507e80](https://github.com/qrati-labs/qrati-connect-ts/commit/1507e80d1de9ee0709f9c69cb196f8e7325ccf9e))
12
+
1
13
  ## [2.5.4-beta.1](https://github.com/qrati-labs/qrati-connect-ts/compare/v2.5.3...v2.5.4-beta.1) (2026-03-24)
2
14
 
3
15
 
package/README.md CHANGED
@@ -76,9 +76,15 @@ Add the following script and stylesheet tags to your HTML:
76
76
 
77
77
  Once imported, you can use the custom element tag `<qrati-connect>` in your HTML:
78
78
 
79
- ```html
80
- <qrati-connect router="hash" organization-id="your-organization-id" />
81
- ```
79
+ | Prop / Attribute | Type | Default | Description |
80
+ | ------------------- | ------------------------ | ---------- | -------------------------------------- |
81
+ | `organizationId` \* | `string` | — | Your Qrati organization ID (required) |
82
+ | `router` | `'memory' \| 'hash'` | `'memory'` | Routing strategy for navigation |
83
+ | `uid` | `string` | — | Pre-authenticated user ID |
84
+ | `fname` | `string` | — | Pre-authenticated user first name |
85
+ | `lname` | `string` | — | Pre-authenticated user last name |
86
+ | `theme` | `'light' \| 'dark'` | `'light'` | Color scheme |
87
+ | `onError` | `(error: Error) => void` | — | Error callback for handling SDK errors |
82
88
 
83
89
  Note: When using the Web Component version, props are passed as HTML attributes with kebab-case naming (e.g., `organization-id` instead of `organizationId`).
84
90
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qratilabs/qrati-connect",
3
- "version": "2.6.0-beta.1",
3
+ "version": "2.6.0-beta.2",
4
4
  "description": "Qrati Connect - A React-based micro frontend component",
5
5
  "author": "Qrati Labs",
6
6
  "license": "MIT",
package/react/index.d.ts CHANGED
@@ -31,9 +31,6 @@ export interface QratiConnectProps {
31
31
 
32
32
  /** Error callback (optional) */
33
33
  onError?: OnErrorCallback;
34
-
35
- /** Disable Sentry initialization when true (optional) */
36
- disableSentry?: boolean;
37
34
  }
38
35
 
39
36
  /**