@asgardeo/react 0.6.1 → 0.6.3
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/dist/cjs/index.js +831 -956
- package/dist/cjs/index.js.map +4 -4
- package/dist/components/presentation/SignIn/component-driven/BaseSignIn.d.ts +12 -4
- package/dist/components/presentation/SignIn/component-driven/SignInOptionFactory.d.ts +0 -1
- package/dist/components/presentation/SignIn/non-component-driven/BaseSignIn.d.ts +12 -0
- package/dist/components/presentation/SignUp/BaseSignUp.d.ts +12 -0
- package/dist/components/presentation/SignUp/BaseSignUp.styles.d.ts +0 -1
- package/dist/index.js +656 -781
- package/dist/index.js.map +4 -4
- package/package.json +3 -3
- package/dist/components/presentation/SignIn/non-component-driven/BaseSignIn.styles.d.ts +0 -52
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asgardeo/react",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "React implementation of Asgardeo JavaScript SDK.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"asgardeo",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"esbuild": "^0.25.9",
|
|
60
60
|
"react-dom": "^19.1.0",
|
|
61
61
|
"tslib": "^2.8.1",
|
|
62
|
-
"@asgardeo/i18n": "^0.3.
|
|
63
|
-
"@asgardeo/browser": "^0.1.
|
|
62
|
+
"@asgardeo/i18n": "^0.3.3",
|
|
63
|
+
"@asgardeo/browser": "^0.1.27"
|
|
64
64
|
},
|
|
65
65
|
"publishConfig": {
|
|
66
66
|
"access": "public"
|
|
@@ -1,52 +0,0 @@
|
|
|
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 { Theme } from '@asgardeo/browser';
|
|
19
|
-
/**
|
|
20
|
-
* Creates styles for the BaseSignIn component
|
|
21
|
-
* @param theme - The theme object containing design tokens
|
|
22
|
-
* @param colorScheme - The current color scheme (used for memoization)
|
|
23
|
-
* @returns Object containing CSS class names for component styling
|
|
24
|
-
*/
|
|
25
|
-
declare const useStyles: (theme: Theme, colorScheme: string) => {
|
|
26
|
-
signIn: string;
|
|
27
|
-
card: string;
|
|
28
|
-
logoContainer: string;
|
|
29
|
-
header: string;
|
|
30
|
-
title: string;
|
|
31
|
-
subtitle: string;
|
|
32
|
-
messagesContainer: string;
|
|
33
|
-
messageItem: string;
|
|
34
|
-
errorContainer: string;
|
|
35
|
-
contentContainer: string;
|
|
36
|
-
loadingContainer: string;
|
|
37
|
-
loadingText: string;
|
|
38
|
-
divider: string;
|
|
39
|
-
centeredContainer: string;
|
|
40
|
-
passkeyContainer: string;
|
|
41
|
-
passkeyText: string;
|
|
42
|
-
form: string;
|
|
43
|
-
formDivider: string;
|
|
44
|
-
authenticatorSection: string;
|
|
45
|
-
authenticatorItem: string;
|
|
46
|
-
noAuthenticatorCard: string;
|
|
47
|
-
errorAlert: string;
|
|
48
|
-
messagesAlert: string;
|
|
49
|
-
flowMessagesContainer: string;
|
|
50
|
-
flowMessageItem: string;
|
|
51
|
-
};
|
|
52
|
-
export default useStyles;
|