@quiltt/vue 5.1.2 → 5.2.0

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 ADDED
@@ -0,0 +1,56 @@
1
+ # @quiltt/vue
2
+
3
+ ## 5.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#427](https://github.com/quiltt/quiltt-js/pull/427) [`6d4b768`](https://github.com/quiltt/quiltt-js/commit/6d4b7683f49d0a6e649a4bdfaff0398669102a63) Thanks [@zubairaziz](https://github.com/zubairaziz)! - Bump minor version to be consistent with SemVer standards
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`6d4b768`](https://github.com/quiltt/quiltt-js/commit/6d4b7683f49d0a6e649a4bdfaff0398669102a63)]:
12
+ - @quiltt/core@5.2.0
13
+
14
+ ## 5.1.3
15
+
16
+ ### Patch Changes
17
+
18
+ - [#425](https://github.com/quiltt/quiltt-js/pull/425) [`c684b3b`](https://github.com/quiltt/quiltt-js/commit/c684b3b5f6ea2829e2abfa2a75c0d430edad66a5) Thanks [@zubairaziz](https://github.com/zubairaziz)! - Add @quiltt/capacitor package for Ionic and Capacitor apps
19
+
20
+ - Framework-agnostic by default — works with Vue, Angular, Svelte, or vanilla JS
21
+ - Vue 3 components via `@quiltt/capacitor/vue` subpath
22
+ - React components via `@quiltt/capacitor/react` subpath
23
+ - Native iOS (Swift) and Android (Kotlin) plugins for OAuth deep linking
24
+ - Supports Capacitor 6, 7, and 8
25
+
26
+ Add @quiltt/vue package for Vue 3 applications
27
+
28
+ - `QuilttPlugin` for session management via Vue's provide/inject
29
+ - `useQuilttSession` composable for authentication
30
+ - `useQuilttConnector` composable for programmatic control
31
+ - `QuilttButton`, `QuilttConnector`, `QuilttContainer` components
32
+ - Add `@quiltt/capacitor/vue` entry point for Capacitor apps
33
+
34
+ Rename `oauthRedirectUrl` to `appLauncherUrl` for mobile OAuth flows
35
+
36
+ This change introduces `appLauncherUrl` as the new preferred property name for specifying the Universal Link (iOS) or App Link (Android) that redirects users back to your app after OAuth authentication.
37
+
38
+ **Deprecation Warning:** The `oauthRedirectUrl` property is now deprecated but remains fully functional for backwards compatibility. Existing code using `oauthRedirectUrl` will continue to work without modifications.
39
+
40
+ **Migration:**
41
+
42
+ - Replace `oauthRedirectUrl` with `appLauncherUrl` in your component props
43
+ - The behavior remains identical; only the property name has changed
44
+
45
+ **Example:**
46
+
47
+ ```tsx
48
+ // Before (deprecated, still works)
49
+ <QuilttConnector oauthRedirectUrl="https://myapp.com/callback" />
50
+
51
+ // After (recommended)
52
+ <QuilttConnector appLauncherUrl="https://myapp.com/callback" />
53
+ ```
54
+
55
+ - Updated dependencies [[`c684b3b`](https://github.com/quiltt/quiltt-js/commit/c684b3b5f6ea2829e2abfa2a75c0d430edad66a5)]:
56
+ - @quiltt/core@5.1.3
@@ -53,7 +53,7 @@ const oauthRedirectUrlDeprecationWarning = '[Quiltt] `oauthRedirectUrl` is depre
53
53
  return utils.getSDKAgent(sdkVersion, platformInfo);
54
54
  };
55
55
 
56
- var version = "5.1.2";
56
+ var version = "5.2.0";
57
57
 
58
58
  /**
59
59
  * Injection keys and types for Quiltt Vue plugin
@@ -51,7 +51,7 @@ const oauthRedirectUrlDeprecationWarning = '[Quiltt] `oauthRedirectUrl` is depre
51
51
  return getSDKAgent$1(sdkVersion, platformInfo);
52
52
  };
53
53
 
54
- var version = "5.1.2";
54
+ var version = "5.2.0";
55
55
 
56
56
  /**
57
57
  * Injection keys and types for Quiltt Vue plugin
@@ -53,7 +53,7 @@ const oauthRedirectUrlDeprecationWarning = '[Quiltt] `oauthRedirectUrl` is depre
53
53
  return utils.getSDKAgent(sdkVersion, platformInfo);
54
54
  };
55
55
 
56
- var version = "5.1.2";
56
+ var version = "5.2.0";
57
57
 
58
58
  /**
59
59
  * Injection keys and types for Quiltt Vue plugin
@@ -51,7 +51,7 @@ const oauthRedirectUrlDeprecationWarning = '[Quiltt] `oauthRedirectUrl` is depre
51
51
  return getSDKAgent$1(sdkVersion, platformInfo);
52
52
  };
53
53
 
54
- var version = "5.1.2";
54
+ var version = "5.2.0";
55
55
 
56
56
  /**
57
57
  * Injection keys and types for Quiltt Vue plugin
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quiltt/vue",
3
- "version": "5.1.2",
3
+ "version": "5.2.0",
4
4
  "description": "Vue 3 Composables and Components for Quiltt Connector",
5
5
  "keywords": [
6
6
  "quiltt",
@@ -51,10 +51,10 @@
51
51
  ],
52
52
  "main": "dist/index.js",
53
53
  "dependencies": {
54
- "@quiltt/core": "5.1.2"
54
+ "@quiltt/core": "5.2.0"
55
55
  },
56
56
  "devDependencies": {
57
- "@biomejs/biome": "2.4.3",
57
+ "@biomejs/biome": "2.4.5",
58
58
  "@types/node": "24.11.0",
59
59
  "bunchee": "6.9.4",
60
60
  "rimraf": "6.1.3",