@factorialco/f0-react 4.9.1 → 4.11.0

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/ai.d.ts CHANGED
@@ -1829,6 +1829,10 @@ export declare const defaultTranslations: {
1829
1829
  readonly show: "Show password";
1830
1830
  readonly hide: "Hide password";
1831
1831
  };
1832
+ readonly private: {
1833
+ readonly show: "Show {{label}}";
1834
+ readonly hide: "Hide {{label}}";
1835
+ };
1832
1836
  };
1833
1837
  readonly link: {
1834
1838
  readonly opensInNewTab: "opens in new tab";
package/dist/ai.js CHANGED
@@ -1,6 +1,6 @@
1
- import { C as e, D as r, c as i, F as o, a as t, f as n, g as F, d as C, e as A, I as l, P as d, b as u, u as m } from "./F0CanvasPanel-B-6B9ckI.js";
1
+ import { C as e, D as r, c as i, F as o, a as t, f as n, g as F, d as C, e as A, I as l, P as d, b as u, u as m } from "./F0CanvasPanel-BCgTx6V0.js";
2
2
  import { defaultTranslations as c } from "./i18n-provider-defaults.js";
3
- import { A as v, s as I, t as g, w as f, l as p, i as y, q as T, x as S, y as x, p as H, r as O, j as V, e as b, g as k, k as w, F as M, h as D, a as j, n as q, m as z, o as B, b as E, f as L, v as R, c as G, d as J, u as K } from "./F0AiProcessingOverlay-B8K7o_Ei.js";
3
+ import { A as v, s as I, t as g, w as f, l as p, i as y, q as T, x as S, y as x, p as H, r as O, j as V, e as b, g as k, k as w, F as M, h as D, a as j, n as q, m as z, o as B, b as E, f as L, v as R, c as G, d as J, u as K } from "./F0AiProcessingOverlay-DuhmCpFU.js";
4
4
  export {
5
5
  v as AiChatTranslationsProvider,
6
6
  e as ChatSpinner,
@@ -3187,6 +3187,10 @@ declare const defaultTranslations: {
3187
3187
  readonly show: "Show password";
3188
3188
  readonly hide: "Hide password";
3189
3189
  };
3190
+ readonly private: {
3191
+ readonly show: "Show {{label}}";
3192
+ readonly hide: "Hide {{label}}";
3193
+ };
3190
3194
  };
3191
3195
  readonly link: {
3192
3196
  readonly opensInNewTab: "opens in new tab";
@@ -6156,7 +6160,12 @@ declare const inputFieldStatus: readonly ["default", "warning", "info", "error"]
6156
6160
  declare type InputFieldStatusType = (typeof inputFieldStatus)[number];
6157
6161
 
6158
6162
  declare type InputInternalProps = Pick<ComponentProps<typeof Input_2>, "ref" | "id" | "aria-describedby" | "aria-invalid"> & Pick<InputFieldProps<string>, "autoFocus" | "required" | "disabled" | "size" | "onChange" | "value" | "placeholder" | "clearable" | "maxLength" | "label" | "labelIcon" | "icon" | "hideLabel" | "name" | "error" | "status" | "hint" | "autocomplete" | "buttonToggle" | "hideMaxLength" | "loading" | "transparent" | "onBlur" | "readonly"> & {
6159
- type?: Exclude<HTMLInputTypeAttribute, "number">;
6163
+ /**
6164
+ * `"private"` is a non-HTML subtype for sensitive, non-credential data:
6165
+ * masked like a password but with no lock icon and with password managers
6166
+ * disabled. It never reaches the DOM (mapped to text/password internally).
6167
+ */
6168
+ type?: Exclude<HTMLInputTypeAttribute, "number"> | "private";
6160
6169
  onPressEnter?: () => void;
6161
6170
  };
6162
6171