@asgardeo/react 0.5.23 → 0.5.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asgardeo/react",
3
- "version": "0.5.23",
3
+ "version": "0.5.24",
4
4
  "description": "React implementation of Asgardeo JavaScript SDK.",
5
5
  "keywords": [
6
6
  "asgardeo",
@@ -59,7 +59,7 @@
59
59
  "esbuild": "^0.25.9",
60
60
  "react-dom": "^19.1.0",
61
61
  "tslib": "^2.8.1",
62
- "@asgardeo/browser": "^0.1.16"
62
+ "@asgardeo/browser": "^0.1.17"
63
63
  },
64
64
  "publishConfig": {
65
65
  "access": "public"
@@ -1,25 +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 { FC } from 'react';
19
- import { BaseSignUpOptionProps } from './SignUpOptionFactory';
20
- /**
21
- * Google Sign-Up Button Component.
22
- * Handles registration with Google identity provider.
23
- */
24
- declare const GoogleButton: FC<BaseSignUpOptionProps>;
25
- export default GoogleButton;
@@ -1,26 +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
- export { default as TextInput } from './TextInput';
19
- export { default as EmailInput } from './EmailInput';
20
- export { default as PasswordInput } from './PasswordInput';
21
- export { default as SubmitButton } from './SubmitButton';
22
- export { default as SocialButton } from './SocialButton';
23
- export { default as GoogleButton } from './GoogleButton';
24
- export { default as Typography } from './Typography';
25
- export { default as FormContainer } from './FormContainer';
26
- export { createSignUpComponent, createSignUpOptionFromComponent, renderSignUpComponents, type BaseSignUpOptionProps, } from './SignUpOptionFactory';