@nok-integration/storefront-react 0.19.20 → 0.19.21
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 +9 -0
- package/dist/index.mjs +268 -243
- package/dist/standalone/storefront.mjs +268 -243
- package/dist/standalone/styles.css +110 -100
- package/dist/styles.css +110 -100
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5282,6 +5282,15 @@ export declare interface ReturnItemsViewProps {
|
|
|
5282
5282
|
* as well, and that promise is the one that survives a link this screen cannot produce —
|
|
5283
5283
|
* so when `label_url` is absent the email line still tells the fan where to look, and no
|
|
5284
5284
|
* button is offered that would 404.
|
|
5285
|
+
*
|
|
5286
|
+
* **The items come first, above the heading**, which is where the frame puts them and
|
|
5287
|
+
* where they were missing. Two screens of instructions with nothing naming the garment is
|
|
5288
|
+
* a screen a fan cannot check: the whole flow is per-line, and by this point the line they
|
|
5289
|
+
* picked is off-screen and behind them.
|
|
5290
|
+
*
|
|
5291
|
+
* Every item is drawn, not just the first. The frame shows one because its example returns
|
|
5292
|
+
* one, but the screen before this lets a fan tick several, and a label screen listing one
|
|
5293
|
+
* of three would misstate what is going back.
|
|
5285
5294
|
*/
|
|
5286
5295
|
export declare function ReturnLabelView({ ret, onDone }: ReturnLabelViewProps): JSX.Element;
|
|
5287
5296
|
|