@poly-x/react 0.1.0-alpha.13 → 0.1.0-alpha.14

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
@@ -1024,7 +1024,7 @@ const DEFAULT_LABELS$2 = {
1024
1024
  submit: "Send reset link",
1025
1025
  submitting: "Sending…",
1026
1026
  sentHeading: "Check your email",
1027
- sentSubheading: "If an account exists for {email}, a password reset link is on its way. It expires in 30 minutes.",
1027
+ sentSubheading: "If an account exists for {email}, a password reset link is on its way it expires in 30 minutes. If it doesn't arrive within a few minutes, check your spam folder, then contact your workspace administrator.",
1028
1028
  differentEmail: "Use a different email",
1029
1029
  backToSignIn: "Back to sign in",
1030
1030
  securedBy: "Secured by PolyX",
package/dist/index.d.cts CHANGED
@@ -292,7 +292,13 @@ interface ForgotPasswordLabels {
292
292
  submitting: string;
293
293
  /** Shown after submit — always, regardless of whether the account exists. */
294
294
  sentHeading: string;
295
- /** Confirmation body. `{email}` is replaced with the entered address, emphasized. */
295
+ /**
296
+ * Confirmation body. `{email}` is replaced with the entered address, emphasized.
297
+ * Kept deliberately uniform (no account-existence / mail-config signal, per the
298
+ * anti-enumeration reset design) and points the user at their administrator for
299
+ * the cases where no mail can arrive (org has reset email disabled, no provider
300
+ * configured, or a send failure) — none of which the response is allowed to reveal.
301
+ */
296
302
  sentSubheading: string;
297
303
  differentEmail: string;
298
304
  backToSignIn: string;
package/dist/index.d.mts CHANGED
@@ -292,7 +292,13 @@ interface ForgotPasswordLabels {
292
292
  submitting: string;
293
293
  /** Shown after submit — always, regardless of whether the account exists. */
294
294
  sentHeading: string;
295
- /** Confirmation body. `{email}` is replaced with the entered address, emphasized. */
295
+ /**
296
+ * Confirmation body. `{email}` is replaced with the entered address, emphasized.
297
+ * Kept deliberately uniform (no account-existence / mail-config signal, per the
298
+ * anti-enumeration reset design) and points the user at their administrator for
299
+ * the cases where no mail can arrive (org has reset email disabled, no provider
300
+ * configured, or a send failure) — none of which the response is allowed to reveal.
301
+ */
296
302
  sentSubheading: string;
297
303
  differentEmail: string;
298
304
  backToSignIn: string;
package/dist/index.mjs CHANGED
@@ -1023,7 +1023,7 @@ const DEFAULT_LABELS$2 = {
1023
1023
  submit: "Send reset link",
1024
1024
  submitting: "Sending…",
1025
1025
  sentHeading: "Check your email",
1026
- sentSubheading: "If an account exists for {email}, a password reset link is on its way. It expires in 30 minutes.",
1026
+ sentSubheading: "If an account exists for {email}, a password reset link is on its way it expires in 30 minutes. If it doesn't arrive within a few minutes, check your spam folder, then contact your workspace administrator.",
1027
1027
  differentEmail: "Use a different email",
1028
1028
  backToSignIn: "Back to sign in",
1029
1029
  securedBy: "Secured by PolyX",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poly-x/react",
3
- "version": "0.1.0-alpha.13",
3
+ "version": "0.1.0-alpha.14",
4
4
  "description": "PolyX SDK for React SPAs - provider, hooks, drop-in auth UI",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -27,7 +27,7 @@
27
27
  "module": "./dist/index.mjs",
28
28
  "types": "./dist/index.d.cts",
29
29
  "dependencies": {
30
- "@poly-x/core": "0.1.0-alpha.13"
30
+ "@poly-x/core": "0.1.0-alpha.14"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "react": ">=18",