@delightui/components 0.1.162-alpha.1 → 0.1.162-alpha.2
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/cjs/components/molecules/FormField/FormField.presenter.d.ts +1 -0
- package/dist/cjs/components/molecules/FormField/FormField.types.d.ts +4 -0
- package/dist/cjs/library.js +3 -3
- package/dist/cjs/library.js.map +1 -1
- package/dist/esm/components/molecules/FormField/FormField.presenter.d.ts +1 -0
- package/dist/esm/components/molecules/FormField/FormField.types.d.ts +4 -0
- package/dist/esm/library.js +1 -1
- package/dist/esm/library.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -277,6 +277,8 @@ type FormFieldProps<TFieldValues extends FieldValues = FieldValues, TName extend
|
|
|
277
277
|
infoIcon?: ReactNode;
|
|
278
278
|
/** Field ID - for the input element */
|
|
279
279
|
id?: string;
|
|
280
|
+
/** @deprecated Legacy prop for backwards compatibility - use message prop instead */
|
|
281
|
+
hasMessage?: boolean;
|
|
280
282
|
};
|
|
281
283
|
/**
|
|
282
284
|
* Standalone FormField props (works without Form context)
|
|
@@ -310,6 +312,8 @@ type StandaloneFieldProps<TValue = FieldValue> = Omit<HTMLAttributes<HTMLDivElem
|
|
|
310
312
|
infoIcon?: ReactNode;
|
|
311
313
|
/** Field ID - for the input element */
|
|
312
314
|
id?: string;
|
|
315
|
+
/** @deprecated Legacy prop for backwards compatibility - use message prop instead */
|
|
316
|
+
hasMessage?: boolean;
|
|
313
317
|
};
|
|
314
318
|
|
|
315
319
|
/**
|