@lax-wp/design-system 0.8.22 → 0.8.24
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/components/data-display/label-value/LabelValue.d.ts +2 -0
- package/dist/components/forms/form/Form.d.ts +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +6867 -6781
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +45 -45
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -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 */
|
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";
|