@ttoss/react-auth-core 0.4.34 → 0.4.36

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/index.cjs CHANGED
@@ -35,7 +35,7 @@ let react = require("react");
35
35
  let react$1 = __toESM(react, 1);
36
36
  react = __toESM(react);
37
37
  let react_jsx_runtime = require("react/jsx-runtime");
38
- let _ttoss_components_NotificationCard = require("@ttoss/components/NotificationCard");
38
+ let _ttoss_components = require("@ttoss/components");
39
39
  let _ttoss_react_i18n = require("@ttoss/react-i18n");
40
40
  let _ttoss_forms = require("@ttoss/forms");
41
41
  let _ttoss_logger = require("@ttoss/logger");
@@ -146,7 +146,7 @@ var AuthConfirmSignUpCheckEmail = ({
146
146
  "value": "Confirmation"
147
147
  }]
148
148
  }),
149
- children: /* @__PURE__ */(0, react_jsx_runtime.jsx)(_ttoss_components_NotificationCard.NotificationCard, {
149
+ children: /* @__PURE__ */(0, react_jsx_runtime.jsx)(_ttoss_components.NotificationCard, {
150
150
  type: "info",
151
151
  message: intl.formatMessage({
152
152
  id: "qTQ4hP",
@@ -220,7 +220,7 @@ var AuthConfirmSignUpWithCode = ({
220
220
  "value": "Confirmation"
221
221
  }]
222
222
  }),
223
- children: [/* @__PURE__ */(0, react_jsx_runtime.jsx)(_ttoss_components_NotificationCard.NotificationCard, {
223
+ children: [/* @__PURE__ */(0, react_jsx_runtime.jsx)(_ttoss_components.NotificationCard, {
224
224
  type: "info",
225
225
  message: intl.formatMessage({
226
226
  id: "pwv2cR",
@@ -826,7 +826,7 @@ var ErrorFallback = ({
826
826
  } = (0, _ttoss_react_i18n.useI18n)();
827
827
  return /* @__PURE__ */(0, react_jsx_runtime.jsx)("div", {
828
828
  role: "alert",
829
- children: /* @__PURE__ */(0, react_jsx_runtime.jsx)(_ttoss_components_NotificationCard.NotificationCard, {
829
+ children: /* @__PURE__ */(0, react_jsx_runtime.jsx)(_ttoss_components.NotificationCard, {
830
830
  type: "error",
831
831
  message: intl.formatMessage({
832
832
  id: "khMx/2",
package/dist/index.mjs CHANGED
@@ -3,7 +3,7 @@ import { NotificationsBox, useNotifications } from "@ttoss/react-notifications";
3
3
  import { Box, Button, Flex, Heading, Link, Text } from "@ttoss/ui";
4
4
  import * as React from "react";
5
5
  import { Fragment, jsx, jsxs } from "react/jsx-runtime";
6
- import { NotificationCard } from "@ttoss/components/NotificationCard";
6
+ import { NotificationCard } from "@ttoss/components";
7
7
  import { useI18n } from "@ttoss/react-i18n";
8
8
  import { Form, FormFieldCheckbox, FormFieldInput, FormFieldPassword, useForm, yup, yupResolver } from "@ttoss/forms";
9
9
  import { notify } from "@ttoss/logger";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttoss/react-auth-core",
3
- "version": "0.4.34",
3
+ "version": "0.4.36",
4
4
  "description": "Core authentication components and abstractions for React apps.",
5
5
  "keywords": [
6
6
  "React",
@@ -23,6 +23,9 @@
23
23
  "exports": {
24
24
  ".": {
25
25
  "types": "./dist/index.d.mts",
26
+ "module": "./dist/index.mjs",
27
+ "browser": "./dist/index.mjs",
28
+ "import": "./dist/index.mjs",
26
29
  "default": "./dist/index.mjs"
27
30
  }
28
31
  },
@@ -39,24 +42,24 @@
39
42
  "jest": "^30.4.2",
40
43
  "react": "^19.2.6",
41
44
  "tsdown": "^0.22.2",
42
- "@ttoss/components": "^2.14.25",
43
- "@ttoss/i18n-cli": "^0.8.16",
44
- "@ttoss/forms": "^0.43.29",
45
+ "@ttoss/forms": "^0.43.31",
46
+ "@ttoss/components": "^2.14.27",
45
47
  "@ttoss/config": "^1.37.16",
46
- "@ttoss/logger": "^0.8.17",
47
- "@ttoss/react-notifications": "^2.7.25",
48
- "@ttoss/react-i18n": "^2.2.18",
49
- "@ttoss/ui": "^6.9.24",
50
- "@ttoss/test-utils": "^4.2.16"
48
+ "@ttoss/i18n-cli": "^0.8.16",
49
+ "@ttoss/react-i18n": "^2.2.20",
50
+ "@ttoss/logger": "^0.8.18",
51
+ "@ttoss/react-notifications": "^2.7.27",
52
+ "@ttoss/test-utils": "^4.2.17",
53
+ "@ttoss/ui": "^6.9.26"
51
54
  },
52
55
  "peerDependencies": {
53
56
  "react": ">=16.8.0",
54
- "@ttoss/components": "^2.14.25",
55
- "@ttoss/forms": "^0.43.29",
56
- "@ttoss/react-notifications": "^2.7.25",
57
- "@ttoss/ui": "^6.9.24",
58
- "@ttoss/react-i18n": "^2.2.18",
59
- "@ttoss/logger": "^0.8.17"
57
+ "@ttoss/components": "^2.14.27",
58
+ "@ttoss/logger": "^0.8.18",
59
+ "@ttoss/forms": "^0.43.31",
60
+ "@ttoss/react-i18n": "^2.2.20",
61
+ "@ttoss/react-notifications": "^2.7.27",
62
+ "@ttoss/ui": "^6.9.26"
60
63
  },
61
64
  "publishConfig": {
62
65
  "access": "public",