@lax-wp/design-system 0.8.23 → 0.8.25

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.
@@ -93,6 +93,8 @@ export interface LabelValueProps {
93
93
  showDiff?: boolean;
94
94
  /** Whether this is a live field (shows bolt icon) */
95
95
  isLiveField?: boolean;
96
+ /** Whether this is an AI extracted field (shows AI extracted icon) */
97
+ isAiExtracted?: boolean;
96
98
  /** Delta change value for currency fields */
97
99
  deltaChange?: number;
98
100
  /** Theme mode */
@@ -0,0 +1,2 @@
1
+ import React from "react";
2
+ export declare const Form: React.ForwardRefExoticComponent<React.FormHTMLAttributes<HTMLFormElement> & React.RefAttributes<HTMLFormElement>>;
package/dist/index.d.ts CHANGED
@@ -37,6 +37,7 @@ export type { DynamicDataInputFieldProps, DynamicDataModalProps as DynamicDataIn
37
37
  export { DynamicDataInput } from "./components/forms/dynamic-data-input/DynamicDataInput";
38
38
  export type { DynamicDataInputProps } from "./components/forms/dynamic-data-input/DynamicDataInput";
39
39
  export { PercentageInputField } from "./components/forms/percentage-input/PercentageInputField";
40
+ export { Form } from "./components/forms/form/Form";
40
41
  export type { PercentageInputFieldProps, RiskDetails as PercentageInputFieldRiskDetails, RiskDetailsCardProps as PercentageInputFieldRiskDetailsCardProps, } from "./components/forms/percentage-input/PercentageInputField";
41
42
  export { Toggle } from "./components/forms/toggle/Toggle";
42
43
  export type { ToggleProps } from "./components/forms/toggle/Toggle";