@remit/web-client 0.0.160 → 0.0.161
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remit/web-client",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.161",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Remit web client, published as composable primitives — the app shell, auth shells, and runtime config. A distributor imports what it composes and bundles it.",
|
|
6
6
|
"exports": {
|
|
@@ -449,9 +449,10 @@ function SelectionWizardSession({
|
|
|
449
449
|
// is how a footer comes to name a screen nobody is looking at.
|
|
450
450
|
const current = steps[stepIndex(steps, step)];
|
|
451
451
|
|
|
452
|
-
// A filter
|
|
453
|
-
//
|
|
454
|
-
//
|
|
452
|
+
// A filter, a folder, and the preview that counts a widened door all belong to
|
|
453
|
+
// one account, so a selection spanning accounts reaches none of them and is
|
|
454
|
+
// told so on the step that asks (#477 5.5, #523). The one-off scope and the
|
|
455
|
+
// ticked rows act on the messages themselves and are unaffected.
|
|
455
456
|
const accountScoped = !crossAccount && !!accountId;
|
|
456
457
|
const ruleRestriction = accountScoped ? undefined : crossAccountRuleReason;
|
|
457
458
|
const folderRestriction = accountScoped
|
|
@@ -939,6 +940,7 @@ function SelectionWizardSession({
|
|
|
939
940
|
match={{
|
|
940
941
|
selectedCount: selection.length,
|
|
941
942
|
mode,
|
|
943
|
+
accountId: accountScoped ? accountId : undefined,
|
|
942
944
|
onModeChange: changeMode,
|
|
943
945
|
semanticUnavailable,
|
|
944
946
|
semanticErrorDetail:
|