@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/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
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delightui/components",
3
- "version": "0.1.162-alpha.1",
3
+ "version": "0.1.162-alpha.2",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "vite",