@ory/elements-react 1.0.0-next.28 → 1.0.0-next.29
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 +11 -0
- package/dist/index.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/theme/default/index.css +0 -8
- package/dist/theme/default/index.css.map +1 -1
- package/dist/theme/default/index.js +64 -59
- package/dist/theme/default/index.js.map +1 -1
- package/dist/theme/default/index.mjs +63 -58
- package/dist/theme/default/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1181,14 +1181,14 @@ function AuthMethodList({ options, setSelectedGroup }) {
|
|
|
1181
1181
|
setSelectedGroup(group);
|
|
1182
1182
|
}
|
|
1183
1183
|
};
|
|
1184
|
-
return options.map((option) => /* @__PURE__ */ jsx(
|
|
1184
|
+
return /* @__PURE__ */ jsx(Card.AuthMethodListContainer, { children: options.map((option) => /* @__PURE__ */ jsx(
|
|
1185
1185
|
Card.AuthMethodListItem,
|
|
1186
1186
|
{
|
|
1187
1187
|
group: option,
|
|
1188
1188
|
onClick: () => handleClick(option)
|
|
1189
1189
|
},
|
|
1190
1190
|
option
|
|
1191
|
-
));
|
|
1191
|
+
)) });
|
|
1192
1192
|
}
|
|
1193
1193
|
function OryFormGroupDivider() {
|
|
1194
1194
|
const { Card } = useComponents();
|