@dbx-tools/ui-email 0.1.17 → 0.1.19
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/README.md +2 -2
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Import this package when a Databricks App needs to render model-drafted email,
|
|
|
6
6
|
collect a human approval decision, or provide a standalone compose form using
|
|
7
7
|
the same message contract as [`@dbx-tools/shared-email`](../../shared/email).
|
|
8
8
|
Server-side sending and AppKit routes live in
|
|
9
|
-
[`@dbx-tools/
|
|
9
|
+
[`@dbx-tools/email`](../../node/email).
|
|
10
10
|
|
|
11
11
|
Key features:
|
|
12
12
|
|
|
@@ -113,6 +113,6 @@ across approval, compose, and custom UI surfaces.
|
|
|
113
113
|
types.
|
|
114
114
|
- `./styles.css` - Tailwind/AppKit style entrypoint for the email components.
|
|
115
115
|
|
|
116
|
-
Pair this package with [`@dbx-tools/
|
|
116
|
+
Pair this package with [`@dbx-tools/email`](../../node/email) for SMTP or
|
|
117
117
|
outbox delivery, and with [`@dbx-tools/shared-email`](../../shared/email) for
|
|
118
118
|
schema validation in client/server boundaries.
|
package/package.json
CHANGED
|
@@ -17,13 +17,16 @@
|
|
|
17
17
|
"react": "^19.2.4",
|
|
18
18
|
"react-dom": "^19.2.4",
|
|
19
19
|
"streamdown": "^2.5.0",
|
|
20
|
-
"@dbx-tools/
|
|
21
|
-
"@dbx-tools/shared-
|
|
22
|
-
"@dbx-tools/
|
|
20
|
+
"@dbx-tools/shared-core": "0.1.19",
|
|
21
|
+
"@dbx-tools/shared-email": "0.1.19",
|
|
22
|
+
"@dbx-tools/ui-appkit": "0.1.19"
|
|
23
23
|
},
|
|
24
24
|
"main": "index.ts",
|
|
25
25
|
"license": "UNLICENSED",
|
|
26
|
-
"
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"version": "0.1.19",
|
|
27
30
|
"types": "index.ts",
|
|
28
31
|
"type": "module",
|
|
29
32
|
"exports": {
|