@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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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