@planetaexo/design-system 0.38.0 → 0.39.0

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.cts CHANGED
@@ -1728,7 +1728,10 @@ interface BookingFormProps {
1728
1728
  }
1729
1729
  declare function BookingForm({ defaultValues, onSubmit, submitLabel, loading, showHeader, title, subtitle, className, }: BookingFormProps): react_jsx_runtime.JSX.Element;
1730
1730
 
1731
- type RegistrationFieldType = "text" | "textarea" | "number" | "date" | "birthDate" | "select" | "radio" | "checkbox" | "name" | "phone" | "nationality" | "emergencyContact";
1731
+ type RegistrationFieldType = "text" | "textarea" | "number" | "date" | "birthDate" | "select" | "radio" | "checkbox" | "name" | "phone" | "nationality" | "emergencyContact"
1732
+ /** Texto longo semântico: a resposta do viajante a "expectativas" da aventura.
1733
+ * Renderiza como `textarea`; identificado pelo tipo (não por id/label). */
1734
+ | "travellersExpectations";
1732
1735
  interface RegistrationFieldOption {
1733
1736
  value: string;
1734
1737
  label: string;
package/dist/index.d.ts CHANGED
@@ -1728,7 +1728,10 @@ interface BookingFormProps {
1728
1728
  }
1729
1729
  declare function BookingForm({ defaultValues, onSubmit, submitLabel, loading, showHeader, title, subtitle, className, }: BookingFormProps): react_jsx_runtime.JSX.Element;
1730
1730
 
1731
- type RegistrationFieldType = "text" | "textarea" | "number" | "date" | "birthDate" | "select" | "radio" | "checkbox" | "name" | "phone" | "nationality" | "emergencyContact";
1731
+ type RegistrationFieldType = "text" | "textarea" | "number" | "date" | "birthDate" | "select" | "radio" | "checkbox" | "name" | "phone" | "nationality" | "emergencyContact"
1732
+ /** Texto longo semântico: a resposta do viajante a "expectativas" da aventura.
1733
+ * Renderiza como `textarea`; identificado pelo tipo (não por id/label). */
1734
+ | "travellersExpectations";
1732
1735
  interface RegistrationFieldOption {
1733
1736
  value: string;
1734
1737
  label: string;
package/dist/index.js CHANGED
@@ -7488,7 +7488,7 @@ function FieldRenderer({
7488
7488
  ] })
7489
7489
  ] });
7490
7490
  }
7491
- if (field.type === "textarea") {
7491
+ if (field.type === "textarea" || field.type === "travellersExpectations") {
7492
7492
  return /* @__PURE__ */ jsx(
7493
7493
  FloatingTextarea,
7494
7494
  {