@timeax/form-palette 0.0.36 → 0.0.37

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.mts CHANGED
@@ -431,6 +431,7 @@ interface InputFieldBaseProps<TValue = unknown> {
431
431
  main?: boolean;
432
432
  tags?: FieldTag[];
433
433
  contain?: boolean;
434
+ autoOff?: boolean;
434
435
  label?: React.ReactNode;
435
436
  sublabel?: React.ReactNode;
436
437
  description?: React.ReactNode;
package/dist/index.d.ts CHANGED
@@ -431,6 +431,7 @@ interface InputFieldBaseProps<TValue = unknown> {
431
431
  main?: boolean;
432
432
  tags?: FieldTag[];
433
433
  contain?: boolean;
434
+ autoOff?: boolean;
434
435
  label?: React.ReactNode;
435
436
  sublabel?: React.ReactNode;
436
437
  description?: React.ReactNode;
package/dist/index.js CHANGED
@@ -27116,6 +27116,7 @@ function InputField(props) {
27116
27116
  description,
27117
27117
  helpText,
27118
27118
  errorText,
27119
+ autoOff,
27119
27120
  // Container + tags
27120
27121
  contain,
27121
27122
  tags,
@@ -27365,6 +27366,7 @@ function InputField(props) {
27365
27366
  Variant,
27366
27367
  {
27367
27368
  ...rest,
27369
+ name: autoOff ? void 0 : name,
27368
27370
  id: key,
27369
27371
  ref,
27370
27372
  value,
@@ -27552,6 +27554,7 @@ function InputField(props) {
27552
27554
  Variant,
27553
27555
  {
27554
27556
  ...rest,
27557
+ name: autoOff ? void 0 : name,
27555
27558
  id: key,
27556
27559
  ref,
27557
27560
  value,