@planetaexo/design-system 0.36.0 → 0.37.1
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 +248 -161
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +231 -144
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -505,6 +505,17 @@ interface BookingDetailsLabels {
|
|
|
505
505
|
confirm: string;
|
|
506
506
|
cancel: string;
|
|
507
507
|
};
|
|
508
|
+
/** Labels do dialog de confirmação de reenvio do convite de registro.
|
|
509
|
+
* Quando ausente, o dialog interno usa defaults em inglês. Quando
|
|
510
|
+
* `onResendInvite` é passado, o DS abre este dialog antes de invocar
|
|
511
|
+
* o callback (cliente clica no botão Send → modal "Tem certeza?"). */
|
|
512
|
+
resendInviteDialog?: {
|
|
513
|
+
title?: string;
|
|
514
|
+
body?: string;
|
|
515
|
+
warning?: string;
|
|
516
|
+
confirm?: string;
|
|
517
|
+
cancel?: string;
|
|
518
|
+
};
|
|
508
519
|
}
|
|
509
520
|
interface SuggestedTraveller {
|
|
510
521
|
id: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -505,6 +505,17 @@ interface BookingDetailsLabels {
|
|
|
505
505
|
confirm: string;
|
|
506
506
|
cancel: string;
|
|
507
507
|
};
|
|
508
|
+
/** Labels do dialog de confirmação de reenvio do convite de registro.
|
|
509
|
+
* Quando ausente, o dialog interno usa defaults em inglês. Quando
|
|
510
|
+
* `onResendInvite` é passado, o DS abre este dialog antes de invocar
|
|
511
|
+
* o callback (cliente clica no botão Send → modal "Tem certeza?"). */
|
|
512
|
+
resendInviteDialog?: {
|
|
513
|
+
title?: string;
|
|
514
|
+
body?: string;
|
|
515
|
+
warning?: string;
|
|
516
|
+
confirm?: string;
|
|
517
|
+
cancel?: string;
|
|
518
|
+
};
|
|
508
519
|
}
|
|
509
520
|
interface SuggestedTraveller {
|
|
510
521
|
id: string;
|