@nok-integration/storefront-react 0.20.8 → 0.20.10
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 +3 -0
- package/dist/index.mjs +201 -73
- package/dist/standalone/storefront.mjs +201 -73
- package/dist/standalone/styles.css +8 -4
- package/dist/styles.css +8 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5164,6 +5164,9 @@ export declare interface ReasonOption<T extends string> {
|
|
|
5164
5164
|
* **The confirm button starts disabled and the sheet does not preselect anything.** A
|
|
5165
5165
|
* reason is the fan's statement about their own order, and a default would put words in
|
|
5166
5166
|
* their mouth that the first tap then submits.
|
|
5167
|
+
*
|
|
5168
|
+
* The title, the reasons and the button word arrive in English and are translated here,
|
|
5169
|
+
* where they render, so the constants that declare them stay the catalogue's keys.
|
|
5167
5170
|
*/
|
|
5168
5171
|
export declare function ReasonSheet<T extends string>({ title, options, ctaLabel, selected, onConfirm, onClose, closeLabel, busy, error, }: ReasonSheetProps<T>): JSX.Element;
|
|
5169
5172
|
|