onairos 0.1.237 → 0.1.239
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/components/AuthButtons.js +1 -3
- package/dist/components/OthentButton.js +2 -2
- package/dist/onairos.bundle.js +1 -1
- package/dist/onairos.bundle.js.map +1 -1
- package/dist/onairos.js +12 -6
- package/dist/overlay/overlay.js +2 -2
- package/package.json +1 -1
- package/src/components/AuthButtons.jsx +1 -1
- package/src/components/OthentButton.jsx +2 -2
- package/src/onairos.jsx +15 -5
- package/src/overlay/overlay.js +2 -2
|
@@ -39,9 +39,7 @@ function AuthButtons(_ref) {
|
|
|
39
39
|
};
|
|
40
40
|
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
41
41
|
className: "flex flex-row justify-center items-center space-x-4",
|
|
42
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
43
|
-
onSuccess: onLoginSuccess
|
|
44
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_OthentButton.default, {
|
|
42
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_OthentButton.default, {
|
|
45
43
|
onSuccess: handleOthentSuccess,
|
|
46
44
|
onLoginSuccess: othentLogin
|
|
47
45
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_OnairosAppButton.default, {
|
|
@@ -64,7 +64,7 @@ function OthentButton(_ref) {
|
|
|
64
64
|
disabled: loading,
|
|
65
65
|
className: "w-12 h-12 rounded-full shadow-md hover:shadow-lg transition-shadow duration-200 flex items-center justify-center bg-white",
|
|
66
66
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("img", {
|
|
67
|
-
src: "https://
|
|
67
|
+
src: "https://imagepng.org/google-icone-icon/google-icon/" // Replace with actual Othent icon
|
|
68
68
|
,
|
|
69
69
|
alt: "Othent",
|
|
70
70
|
className: "w-6 h-6"
|
|
@@ -76,7 +76,7 @@ function OthentButton(_ref) {
|
|
|
76
76
|
})]
|
|
77
77
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
78
78
|
className: "text-xs mt-2 text-gray-600",
|
|
79
|
-
children: "
|
|
79
|
+
children: "Google"
|
|
80
80
|
})]
|
|
81
81
|
});
|
|
82
82
|
}
|