@asgardeo/vue 0.0.9 → 0.1.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.
Files changed (157) hide show
  1. package/README.md +136 -1
  2. package/dist/AsgardeoVueClient.d.ts +64 -0
  3. package/dist/__temp__/api.d.ts +63 -0
  4. package/dist/__temp__/models.d.ts +43 -0
  5. package/dist/api/getAllOrganizations.d.ts +24 -0
  6. package/dist/api/getMeOrganizations.d.ts +24 -0
  7. package/dist/api/getSchemas.d.ts +24 -0
  8. package/dist/api/getScim2Me.d.ts +24 -0
  9. package/dist/cjs/index.js +10849 -1568
  10. package/dist/cjs/index.js.map +7 -1
  11. package/dist/components/actions/BaseSignInButton.d.ts +34 -0
  12. package/dist/components/actions/BaseSignOutButton.d.ts +34 -0
  13. package/dist/components/actions/BaseSignUpButton.d.ts +34 -0
  14. package/dist/components/actions/SignInButton.d.ts +26 -0
  15. package/dist/components/actions/SignOutButton.d.ts +23 -0
  16. package/dist/components/actions/SignUpButton.d.ts +26 -0
  17. package/dist/{cjs/types/vitest.config.d.ts → components/adapters/FacebookButton.d.ts} +7 -2
  18. package/dist/components/adapters/GitHubButton.d.ts +24 -0
  19. package/dist/components/adapters/GoogleButton.d.ts +24 -0
  20. package/dist/components/adapters/MicrosoftButton.d.ts +24 -0
  21. package/dist/components/auth/Callback.d.ts +31 -0
  22. package/dist/components/control/Loading.d.ts +33 -0
  23. package/dist/components/control/SignedIn.d.ts +33 -0
  24. package/dist/components/control/SignedOut.d.ts +33 -0
  25. package/dist/components/control/organization/Organization.d.ts +38 -0
  26. package/dist/components/control/user/User.d.ts +38 -0
  27. package/dist/components/factories/FieldFactory.d.ts +51 -0
  28. package/dist/components/presentation/accept-invite/AcceptInvite.d.ts +28 -0
  29. package/dist/components/presentation/accept-invite/BaseAcceptInvite.d.ts +82 -0
  30. package/dist/{esm/types/composables/useAsgardeo.d.ts → components/presentation/create-organization/BaseCreateOrganization.d.ts} +5 -4
  31. package/dist/components/presentation/create-organization/CreateOrganization.css.d.ts +34 -0
  32. package/dist/components/presentation/create-organization/CreateOrganization.d.ts +25 -0
  33. package/dist/components/presentation/invite-user/BaseInviteUser.d.ts +80 -0
  34. package/dist/components/presentation/invite-user/InviteUser.d.ts +25 -0
  35. package/dist/components/presentation/language-switcher/BaseLanguageSwitcher.d.ts +25 -0
  36. package/dist/components/presentation/language-switcher/LanguageSwitcher.css.d.ts +36 -0
  37. package/dist/components/presentation/language-switcher/LanguageSwitcher.d.ts +25 -0
  38. package/dist/components/presentation/organization-list/BaseOrganizationList.d.ts +23 -0
  39. package/dist/components/presentation/organization-list/OrganizationList.css.d.ts +32 -0
  40. package/dist/{cjs/types/composables/useAsgardeo.d.ts → components/presentation/organization-list/OrganizationList.d.ts} +5 -4
  41. package/dist/{cjs/types/composables/useAsgardeoContext.d.ts → components/presentation/organization-profile/BaseOrganizationProfile.d.ts} +6 -5
  42. package/dist/components/presentation/organization-profile/OrganizationProfile.css.d.ts +24 -0
  43. package/dist/components/presentation/organization-profile/OrganizationProfile.d.ts +25 -0
  44. package/dist/components/presentation/organization-switcher/BaseOrganizationSwitcher.d.ts +25 -0
  45. package/dist/components/presentation/organization-switcher/OrganizationSwitcher.css.d.ts +39 -0
  46. package/dist/components/presentation/organization-switcher/OrganizationSwitcher.d.ts +25 -0
  47. package/dist/components/presentation/sign-in/AuthOptionFactory.d.ts +18 -0
  48. package/dist/components/presentation/sign-in/AuthOptionFactoryCore.d.ts +68 -0
  49. package/dist/components/presentation/sign-in/BaseSignIn.d.ts +27 -0
  50. package/dist/components/presentation/sign-in/SignIn.d.ts +27 -0
  51. package/dist/components/presentation/sign-in/v1/BaseSignIn.d.ts +26 -0
  52. package/dist/components/presentation/sign-in/v1/SignIn.d.ts +26 -0
  53. package/dist/components/presentation/sign-in/v1/options/SignInOptionFactory.d.ts +46 -0
  54. package/dist/components/presentation/sign-in/v2/AuthOptionFactory.d.ts +18 -0
  55. package/dist/components/presentation/sign-in/v2/BaseSignIn.d.ts +82 -0
  56. package/dist/components/presentation/sign-in/v2/SignIn.d.ts +55 -0
  57. package/dist/components/presentation/sign-up/BaseSignUp.d.ts +72 -0
  58. package/dist/components/presentation/sign-up/SignUp.d.ts +25 -0
  59. package/dist/components/presentation/user-dropdown/BaseUserDropdown.d.ts +33 -0
  60. package/dist/components/presentation/user-dropdown/UserDropdown.css.d.ts +35 -0
  61. package/dist/components/presentation/user-dropdown/UserDropdown.d.ts +25 -0
  62. package/dist/components/presentation/user-profile/BaseUserProfile.d.ts +47 -0
  63. package/dist/components/presentation/user-profile/UserProfile.css.d.ts +24 -0
  64. package/dist/{esm/types/public-api.d.ts → components/presentation/user-profile/UserProfile.d.ts} +3 -2
  65. package/dist/components/primitives/Alert/Alert.css.d.ts +30 -0
  66. package/dist/{cjs/types/public-api.d.ts → components/primitives/Alert/Alert.d.ts} +3 -2
  67. package/dist/components/primitives/Alert/index.d.ts +18 -0
  68. package/dist/components/primitives/Button/Button.css.d.ts +36 -0
  69. package/dist/components/primitives/Button/Button.d.ts +20 -0
  70. package/dist/components/primitives/Button/index.d.ts +18 -0
  71. package/dist/components/primitives/Card/Card.css.d.ts +29 -0
  72. package/dist/{esm/types/index.d.ts → components/primitives/Card/Card.d.ts} +3 -3
  73. package/dist/components/primitives/Card/index.d.ts +18 -0
  74. package/dist/components/primitives/Checkbox/Checkbox.css.d.ts +30 -0
  75. package/dist/components/primitives/Checkbox/Checkbox.d.ts +20 -0
  76. package/dist/components/primitives/Checkbox/index.d.ts +18 -0
  77. package/dist/components/primitives/DatePicker/DatePicker.css.d.ts +30 -0
  78. package/dist/components/primitives/DatePicker/DatePicker.d.ts +20 -0
  79. package/dist/components/primitives/DatePicker/index.d.ts +18 -0
  80. package/dist/components/primitives/Divider/Divider.css.d.ts +32 -0
  81. package/dist/components/primitives/Divider/Divider.d.ts +20 -0
  82. package/dist/components/primitives/Divider/index.d.ts +18 -0
  83. package/dist/components/primitives/Icons.d.ts +34 -0
  84. package/dist/components/primitives/Logo/Logo.css.d.ts +27 -0
  85. package/dist/{cjs/types/index.d.ts → components/primitives/Logo/Logo.d.ts} +3 -3
  86. package/dist/components/primitives/Logo/index.d.ts +18 -0
  87. package/dist/{cjs/types/plugins/AsgardeoPlugin.d.ts → components/primitives/OtpField/OtpField.css.d.ts} +10 -5
  88. package/dist/components/primitives/OtpField/OtpField.d.ts +20 -0
  89. package/dist/components/primitives/OtpField/index.d.ts +18 -0
  90. package/dist/components/primitives/PasswordField/PasswordField.css.d.ts +30 -0
  91. package/dist/components/primitives/PasswordField/PasswordField.d.ts +20 -0
  92. package/dist/components/primitives/PasswordField/index.d.ts +18 -0
  93. package/dist/components/primitives/Select/Select.css.d.ts +30 -0
  94. package/dist/components/primitives/Select/Select.d.ts +25 -0
  95. package/dist/components/primitives/Select/index.d.ts +18 -0
  96. package/dist/{esm/types/composables/useAsgardeoContext.d.ts → components/primitives/Spinner/Spinner.css.d.ts} +13 -5
  97. package/dist/components/primitives/Spinner/Spinner.d.ts +20 -0
  98. package/dist/components/primitives/Spinner/index.d.ts +18 -0
  99. package/dist/components/primitives/TextField/TextField.css.d.ts +30 -0
  100. package/dist/components/primitives/TextField/TextField.d.ts +20 -0
  101. package/dist/components/primitives/TextField/index.d.ts +18 -0
  102. package/dist/components/primitives/Typography/Typography.css.d.ts +30 -0
  103. package/dist/components/primitives/Typography/Typography.d.ts +20 -0
  104. package/dist/components/primitives/Typography/index.d.ts +18 -0
  105. package/dist/composables/useAsgardeo.d.ts +48 -0
  106. package/dist/composables/useBranding.d.ts +43 -0
  107. package/dist/composables/useFlow.d.ts +45 -0
  108. package/dist/composables/useFlowMeta.d.ts +41 -0
  109. package/dist/composables/useI18n.d.ts +45 -0
  110. package/dist/composables/useOAuthCallback.d.ts +65 -0
  111. package/dist/composables/useOrganization.d.ts +41 -0
  112. package/dist/composables/useTheme.d.ts +43 -0
  113. package/dist/composables/useUser.d.ts +44 -0
  114. package/dist/index.d.ts +103 -141
  115. package/dist/index.js +11073 -0
  116. package/dist/index.js.map +7 -0
  117. package/dist/keys.d.ts +51 -0
  118. package/dist/models/config.d.ts +19 -0
  119. package/dist/models/contexts.d.ts +244 -0
  120. package/dist/{esm/types/plugins → plugins}/AsgardeoPlugin.d.ts +28 -4
  121. package/dist/providers/AsgardeoProvider.d.ts +35 -0
  122. package/dist/providers/BrandingProvider.d.ts +29 -0
  123. package/dist/providers/FlowMetaProvider.d.ts +20 -0
  124. package/dist/providers/FlowProvider.d.ts +20 -0
  125. package/dist/providers/I18nProvider.d.ts +20 -0
  126. package/dist/providers/OrganizationProvider.d.ts +20 -0
  127. package/dist/providers/ThemeProvider.d.ts +20 -0
  128. package/dist/providers/UserProvider.d.ts +20 -0
  129. package/dist/router/callbackRoute.d.ts +87 -0
  130. package/dist/router/guard.d.ts +96 -0
  131. package/dist/styles/animations.css.d.ts +28 -0
  132. package/dist/styles/defaults.css.d.ts +31 -0
  133. package/dist/styles/injectStyles.d.ts +23 -0
  134. package/dist/theme/getActiveTheme.d.ts +28 -0
  135. package/dist/theme/themeDetection.d.ts +30 -0
  136. package/dist/utils/handleWebAuthnAuthentication.d.ts +27 -0
  137. package/dist/utils/hasAuthParamsInUrl.d.ts +26 -0
  138. package/dist/utils/http.d.ts +26 -0
  139. package/dist/utils/logger.d.ts +30 -0
  140. package/dist/utils/navigate.d.ts +27 -0
  141. package/dist/utils/oauth.d.ts +24 -0
  142. package/dist/utils/v2/buildThemeConfigFromFlowMeta.d.ts +28 -0
  143. package/dist/utils/v2/flowTransformer.d.ts +96 -0
  144. package/dist/utils/v2/getAuthComponentHeadings.d.ts +40 -0
  145. package/dist/utils/v2/passkey.d.ts +31 -0
  146. package/dist/utils/v2/resolveTranslationsInArray.d.ts +29 -0
  147. package/dist/utils/v2/resolveTranslationsInObject.d.ts +29 -0
  148. package/package.json +54 -67
  149. package/dist/cjs/types/auth-api.d.ts +0 -231
  150. package/dist/cjs/types/tests/mocks/mocks.d.ts +0 -57
  151. package/dist/cjs/types/types.d.ts +0 -107
  152. package/dist/esm/index.js +0 -1590
  153. package/dist/esm/index.js.map +0 -1
  154. package/dist/esm/types/auth-api.d.ts +0 -231
  155. package/dist/esm/types/tests/mocks/mocks.d.ts +0 -57
  156. package/dist/esm/types/types.d.ts +0 -107
  157. package/dist/esm/types/vitest.config.d.ts +0 -19
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ export { default } from './Spinner';
@@ -0,0 +1,30 @@
1
+ /**
2
+ * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ /**
19
+ * Styles for the TextField primitive component.
20
+ *
21
+ * BEM block: `.asgardeo-text-field`
22
+ *
23
+ * Modifiers:
24
+ * --error – shows validation error state
25
+ *
26
+ * Elements:
27
+ * __label | __required | __input | __error | __helper
28
+ */
29
+ declare const TEXT_FIELD_CSS: string;
30
+ export default TEXT_FIELD_CSS;
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ import { type Component } from 'vue';
19
+ declare const TextField: Component;
20
+ export default TextField;
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ export { default } from './TextField';
@@ -0,0 +1,30 @@
1
+ /**
2
+ * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ /**
19
+ * Styles for the Typography primitive component.
20
+ *
21
+ * BEM block: `.asgardeo-typography`
22
+ *
23
+ * Modifiers (variant):
24
+ * --h1 | --h2 | --h3 | --h4 | --h5 | --h6
25
+ * --subtitle1 | --subtitle2
26
+ * --body1 | --body2
27
+ * --caption | --overline
28
+ */
29
+ declare const TYPOGRAPHY_CSS: string;
30
+ export default TYPOGRAPHY_CSS;
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ import { type Component } from 'vue';
19
+ declare const Typography: Component;
20
+ export default Typography;
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ export { default } from './Typography';
@@ -0,0 +1,48 @@
1
+ /**
2
+ * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ import type { AsgardeoContext } from '../models/contexts';
19
+ /**
20
+ * Primary composable for Asgardeo authentication.
21
+ *
22
+ * Must be called inside a component that is a descendant of `<AsgardeoProvider>`.
23
+ * Returns all auth-related reactive state and action methods.
24
+ *
25
+ * @throws Error if called outside of `<AsgardeoProvider>`.
26
+ *
27
+ * @example
28
+ * ```vue
29
+ * <script setup>
30
+ * import { useAsgardeo } from '@asgardeo/vue';
31
+ *
32
+ * const { isSignedIn, isLoading, user, signIn, signOut } = useAsgardeo();
33
+ * </script>
34
+ *
35
+ * <template>
36
+ * <div v-if="isLoading">Loading...</div>
37
+ * <div v-else-if="isSignedIn">
38
+ * <p>Welcome, {{ user?.name }}</p>
39
+ * <button @click="signOut()">Sign Out</button>
40
+ * </div>
41
+ * <div v-else>
42
+ * <button @click="signIn()">Sign In</button>
43
+ * </div>
44
+ * </template>
45
+ * ```
46
+ */
47
+ declare const useAsgardeo: () => AsgardeoContext;
48
+ export default useAsgardeo;
@@ -0,0 +1,43 @@
1
+ /**
2
+ * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ import type { BrandingContextValue } from '../models/contexts';
19
+ /**
20
+ * Composable for accessing branding preference data.
21
+ *
22
+ * Must be called inside a component that is a descendant of `<AsgardeoProvider>`.
23
+ *
24
+ * @returns {BrandingContextValue} The branding context with preferences, theme, and fetch operations.
25
+ * @throws {Error} If called outside of `<AsgardeoProvider>`.
26
+ *
27
+ * @example
28
+ * ```vue
29
+ * <script setup>
30
+ * import { useBranding } from '@asgardeo/vue';
31
+ *
32
+ * const { brandingPreference, theme, isLoading, fetchBranding } = useBranding();
33
+ * </script>
34
+ *
35
+ * <template>
36
+ * <div v-if="!isLoading">
37
+ * <img :src="brandingPreference?.images?.logo?.imgURL" alt="Logo" />
38
+ * </div>
39
+ * </template>
40
+ * ```
41
+ */
42
+ declare const useBranding: () => BrandingContextValue;
43
+ export default useBranding;
@@ -0,0 +1,45 @@
1
+ /**
2
+ * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ import type { FlowContextValue } from '../models/contexts';
19
+ /**
20
+ * Composable for managing authentication flow UI state.
21
+ *
22
+ * Must be called inside a component that is a descendant of `<AsgardeoProvider>`.
23
+ *
24
+ * @returns {FlowContextValue} The flow context with step navigation, messages, and loading state.
25
+ * @throws {Error} If called outside of `<AsgardeoProvider>`.
26
+ *
27
+ * @example
28
+ * ```vue
29
+ * <script setup>
30
+ * import { useFlow } from '@asgardeo/vue';
31
+ *
32
+ * const { currentStep, isLoading, messages, navigateToFlow, reset } = useFlow();
33
+ * </script>
34
+ *
35
+ * <template>
36
+ * <div>
37
+ * <p v-if="isLoading">Loading...</p>
38
+ * <component :is="currentStep?.component" v-else />
39
+ * <p v-for="msg in messages" :key="msg.id">{{ msg.content }}</p>
40
+ * </div>
41
+ * </template>
42
+ * ```
43
+ */
44
+ declare const useFlow: () => FlowContextValue;
45
+ export default useFlow;
@@ -0,0 +1,41 @@
1
+ /**
2
+ * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ import type { FlowMetaContextValue } from '../models/contexts';
19
+ /**
20
+ * Composable for accessing flow metadata.
21
+ *
22
+ * Must be called inside a component that is a descendant of `<AsgardeoProvider>`.
23
+ *
24
+ * @returns {FlowMetaContextValue} The flow meta context with metadata, loading state, and language switching.
25
+ * @throws {Error} If called outside of `<AsgardeoProvider>`.
26
+ *
27
+ * @example
28
+ * ```vue
29
+ * <script setup>
30
+ * import { useFlowMeta } from '@asgardeo/vue';
31
+ *
32
+ * const { meta, isLoading, switchLanguage } = useFlowMeta();
33
+ *
34
+ * async function changeLanguage(lang: string) {
35
+ * await switchLanguage(lang);
36
+ * }
37
+ * </script>
38
+ * ```
39
+ */
40
+ declare const useFlowMeta: () => FlowMetaContextValue;
41
+ export default useFlowMeta;
@@ -0,0 +1,45 @@
1
+ /**
2
+ * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ import type { I18nContextValue } from '../models/contexts';
19
+ /**
20
+ * Composable for accessing internationalization utilities.
21
+ *
22
+ * Must be called inside a component that is a descendant of `<AsgardeoProvider>`.
23
+ *
24
+ * @returns {I18nContextValue} The i18n context with translation function, language management, and bundle injection.
25
+ * @throws {Error} If called outside of `<AsgardeoProvider>`.
26
+ *
27
+ * @example
28
+ * ```vue
29
+ * <script setup>
30
+ * import { useI18n } from '@asgardeo/vue';
31
+ *
32
+ * const { t, currentLanguage, setLanguage } = useI18n();
33
+ * </script>
34
+ *
35
+ * <template>
36
+ * <p>{{ t('common.welcome') }}</p>
37
+ * <select :value="currentLanguage" @change="setLanguage($event.target.value)">
38
+ * <option value="en-US">English</option>
39
+ * <option value="fr-FR">Français</option>
40
+ * </select>
41
+ * </template>
42
+ * ```
43
+ */
44
+ declare const useI18n: () => I18nContextValue;
45
+ export default useI18n;
@@ -0,0 +1,65 @@
1
+ /**
2
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ import { type Ref } from 'vue';
19
+ export interface UseOAuthCallbackOptions {
20
+ /** Current flowId from component state */
21
+ currentFlowId: Ref<string | null>;
22
+ /** SessionStorage key for flowId (defaults to 'asgardeo_flow_id') */
23
+ flowIdStorageKey?: string;
24
+ /** Whether the component is initialized and ready to process OAuth callback */
25
+ isInitialized: Ref<boolean>;
26
+ /** Whether a submission is currently in progress */
27
+ isSubmitting?: Ref<boolean>;
28
+ /** Callback when OAuth flow completes successfully */
29
+ onComplete?: () => void;
30
+ /** Callback when OAuth flow encounters an error */
31
+ onError?: (error: any) => void;
32
+ /** Callback to handle flow response after submission */
33
+ onFlowChange?: (response: any) => void;
34
+ /** Callback to set loading state at the start of OAuth processing */
35
+ onProcessingStart?: () => void;
36
+ /** Function to submit OAuth code to the server */
37
+ onSubmit: (payload: OAuthCallbackPayload) => Promise<any>;
38
+ /** Mutable flag to track whether OAuth has already been processed */
39
+ processedFlag?: {
40
+ value: boolean;
41
+ };
42
+ /** Additional handler for setting state (e.g., setFlowId) */
43
+ setFlowId?: (flowId: string) => void;
44
+ /**
45
+ * Mutable flag for token validation tracking.
46
+ * Used in AcceptInvite to coordinate between OAuth callback and token validation.
47
+ */
48
+ tokenValidationAttemptedFlag?: {
49
+ value: boolean;
50
+ };
51
+ }
52
+ export interface OAuthCallbackPayload {
53
+ flowId: string;
54
+ inputs: {
55
+ code: string;
56
+ nonce?: string;
57
+ };
58
+ }
59
+ /**
60
+ * Processes OAuth callbacks by detecting auth code in URL, resolving flowId, and submitting to server.
61
+ * Used by SignIn, SignUp, and AcceptInvite components.
62
+ *
63
+ * Vue composable equivalent of React's useOAuthCallback hook.
64
+ */
65
+ export declare function useOAuthCallback({ currentFlowId, flowIdStorageKey, isInitialized, isSubmitting, onComplete, onError, onFlowChange, onProcessingStart, onSubmit, processedFlag, setFlowId, tokenValidationAttemptedFlag, }: UseOAuthCallbackOptions): void;
@@ -0,0 +1,41 @@
1
+ /**
2
+ * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ import type { OrganizationContextValue } from '../models/contexts';
19
+ /**
20
+ * Composable for accessing organization data and operations.
21
+ *
22
+ * Must be called inside a component that is a descendant of `<AsgardeoProvider>`.
23
+ *
24
+ * @returns {OrganizationContextValue} The organization context.
25
+ * @throws {Error} If called outside of `<AsgardeoProvider>`.
26
+ *
27
+ * @example
28
+ * ```vue
29
+ * <script setup>
30
+ * import { useOrganization } from '@asgardeo/vue';
31
+ *
32
+ * const { myOrganizations, currentOrganization, switchOrganization } = useOrganization();
33
+ *
34
+ * async function handleSwitch(orgId: string) {
35
+ * await switchOrganization(orgId);
36
+ * }
37
+ * </script>
38
+ * ```
39
+ */
40
+ declare const useOrganization: () => OrganizationContextValue;
41
+ export default useOrganization;
@@ -0,0 +1,43 @@
1
+ /**
2
+ * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ import type { ThemeContextValue } from '../models/contexts';
19
+ /**
20
+ * Composable for accessing and controlling the active theme.
21
+ *
22
+ * Must be called inside a component that is a descendant of `<AsgardeoProvider>`.
23
+ *
24
+ * @returns {ThemeContextValue} The theme context with the active theme, color scheme, and toggle function.
25
+ * @throws {Error} If called outside of `<AsgardeoProvider>`.
26
+ *
27
+ * @example
28
+ * ```vue
29
+ * <script setup>
30
+ * import { useTheme } from '@asgardeo/vue';
31
+ *
32
+ * const { theme, colorScheme, toggleTheme } = useTheme();
33
+ * </script>
34
+ *
35
+ * <template>
36
+ * <button @click="toggleTheme()">
37
+ * Switch to {{ colorScheme === 'light' ? 'dark' : 'light' }} mode
38
+ * </button>
39
+ * </template>
40
+ * ```
41
+ */
42
+ declare const useTheme: () => ThemeContextValue;
43
+ export default useTheme;
@@ -0,0 +1,44 @@
1
+ /**
2
+ * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3
+ *
4
+ * WSO2 LLC. licenses this file to you under the Apache License,
5
+ * Version 2.0 (the "License"); you may not use this file except
6
+ * in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ import type { UserContextValue } from '../models/contexts';
19
+ /**
20
+ * Composable for accessing user profile data.
21
+ *
22
+ * Must be called inside a component that is a descendant of `<AsgardeoProvider>`.
23
+ *
24
+ * @returns {UserContextValue} The user context containing profile, schemas, and update operations.
25
+ * @throws {Error} If called outside of `<AsgardeoProvider>`.
26
+ *
27
+ * @example
28
+ * ```vue
29
+ * <script setup>
30
+ * import { useUser } from '@asgardeo/vue';
31
+ *
32
+ * const { profile, flattenedProfile, schemas, updateProfile, revalidateProfile } = useUser();
33
+ * </script>
34
+ *
35
+ * <template>
36
+ * <div v-if="profile">
37
+ * <p>Name: {{ flattenedProfile?.name }}</p>
38
+ * <button @click="revalidateProfile()">Refresh</button>
39
+ * </div>
40
+ * </template>
41
+ * ```
42
+ */
43
+ declare const useUser: () => UserContextValue;
44
+ export default useUser;