ugly-app 0.1.276 → 0.1.277
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/cli/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const CLI_VERSION = "0.1.
|
|
1
|
+
export declare const CLI_VERSION = "0.1.277";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/cli/version.js
CHANGED
package/package.json
CHANGED
package/src/cli/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Auto-generated by prebuild — do not edit manually
|
|
2
|
-
export const CLI_VERSION = "0.1.
|
|
2
|
+
export const CLI_VERSION = "0.1.277";
|
|
@@ -2,7 +2,7 @@ import React, { useState } from 'react';
|
|
|
2
2
|
import { Button, Card, PageLayout, useApp } from 'ugly-app/client';
|
|
3
3
|
|
|
4
4
|
interface SentEntry {
|
|
5
|
-
|
|
5
|
+
to: string;
|
|
6
6
|
subject: string;
|
|
7
7
|
id: string | null;
|
|
8
8
|
sentAt: string;
|
|
@@ -142,7 +142,7 @@ export default function EmailTestPage(): React.ReactElement {
|
|
|
142
142
|
<h2>Sent Emails</h2>
|
|
143
143
|
{sent.map((entry, i) => (
|
|
144
144
|
<div key={i} style={{ marginBottom: 12, paddingBottom: 12, borderBottom: '1px solid #333' }}>
|
|
145
|
-
<div><strong>
|
|
145
|
+
<div><strong>To:</strong> {entry.to}</div>
|
|
146
146
|
<div><strong>Subject:</strong> {entry.subject}</div>
|
|
147
147
|
{entry.id && <div><strong>Reply ID:</strong> {entry.id}</div>}
|
|
148
148
|
<div style={{ fontSize: '0.8em', color: '#888' }}>{entry.sentAt}</div>
|