@remit/ui 0.0.98 → 0.0.99

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/ui",
3
- "version": "0.0.98",
3
+ "version": "0.0.99",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src"
@@ -23,7 +23,12 @@ export const Saving: Story = { args: { saveStatus: "saving" } };
23
23
 
24
24
  export const Saved: Story = { args: { saveStatus: "saved" } };
25
25
 
26
- export const Sending: Story = { args: { sending: true } };
26
+ export const SaveFailed: Story = { args: { saveStatus: "error" } };
27
+
28
+ export const Sending: Story = {
29
+ name: "Sending — also while the pending draft is written",
30
+ args: { sending: true },
31
+ };
27
32
 
28
33
  export const CannotSend: Story = {
29
34
  name: "Cannot send — stays pressable",