stacks 0.47.1 → 0.47.2
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/buddy/package.json +1 -1
- package/core/actions/package.json +1 -1
- package/core/ai/package.json +1 -1
- package/core/alias/package.json +1 -1
- package/core/arrays/package.json +1 -1
- package/core/auth/package.json +1 -1
- package/core/build/package.json +1 -1
- package/core/cache/package.json +1 -1
- package/core/chat/package.json +1 -1
- package/core/cli/package.json +1 -1
- package/core/cloud/package.json +1 -1
- package/core/collections/package.json +1 -1
- package/core/config/package.json +1 -1
- package/core/dashboard/package.json +1 -1
- package/core/database/package.json +1 -1
- package/core/datetime/package.json +1 -1
- package/core/desktop/package.json +1 -1
- package/core/docs/package.json +1 -1
- package/core/domains/package.json +1 -1
- package/core/drivers/package.json +1 -1
- package/core/email/package.json +1 -1
- package/core/email/src/{drivers/actions → actions}/send.ts +1 -1
- package/core/email/src/drivers/emailjs.ts +1 -1
- package/core/email/src/drivers/mailgun.ts +1 -1
- package/core/email/src/drivers/mailjet.ts +1 -1
- package/core/email/src/drivers/mandrill.ts +1 -1
- package/core/email/src/drivers/netcore.ts +1 -1
- package/core/email/src/drivers/nodemailer.ts +1 -1
- package/core/email/src/drivers/postmark.ts +1 -1
- package/core/email/src/drivers/sendgrid.ts +1 -1
- package/core/email/src/drivers/ses.ts +1 -1
- package/core/{notifications/src/drivers/email → email/src}/tailwind.config.ts +3 -1
- package/core/email/src/utils/config.ts +3 -1
- package/core/error-handling/package.json +1 -1
- package/core/events/package.json +1 -1
- package/core/git/package.json +1 -1
- package/core/health/package.json +1 -1
- package/core/lint/package.json +1 -1
- package/core/logging/package.json +1 -1
- package/core/modules/package.json +1 -1
- package/core/notifications/package.json +1 -1
- package/core/notifications/src/drivers/email/actions/send.ts +1 -1
- package/core/notifications/src/tailwind.config.ts +39 -0
- package/core/objects/package.json +1 -1
- package/core/path/package.json +1 -1
- package/core/payments/package.json +1 -1
- package/core/push/package.json +1 -1
- package/core/realtime/package.json +1 -1
- package/core/router/package.json +1 -1
- package/core/search-engine/package.json +1 -1
- package/core/security/package.json +1 -1
- package/core/server/package.json +1 -1
- package/core/sms/package.json +1 -1
- package/core/storage/package.json +1 -1
- package/core/strings/package.json +1 -1
- package/core/testing/package.json +1 -1
- package/core/types/package.json +1 -1
- package/core/ui/package.json +1 -1
- package/core/utils/package.json +1 -1
- package/core/x-ray/package.json +1 -1
- package/package.json +2 -2
package/buddy/package.json
CHANGED
package/core/ai/package.json
CHANGED
package/core/alias/package.json
CHANGED
package/core/arrays/package.json
CHANGED
package/core/auth/package.json
CHANGED
package/core/build/package.json
CHANGED
package/core/cache/package.json
CHANGED
package/core/chat/package.json
CHANGED
package/core/cli/package.json
CHANGED
package/core/cloud/package.json
CHANGED
package/core/config/package.json
CHANGED
package/core/docs/package.json
CHANGED
package/core/email/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/email",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.47.
|
|
4
|
+
"version": "0.47.2",
|
|
5
5
|
"packageManager": "pnpm@7.21.0",
|
|
6
6
|
"description": "The Stacks Email integration. Painlessly create & manage your inboxes, templates, and send emails.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -3,7 +3,7 @@ import { italic } from '@stacksjs/cli'
|
|
|
3
3
|
import { log } from '@stacksjs/logging'
|
|
4
4
|
import { ResultAsync } from '@stacksjs/error-handling'
|
|
5
5
|
import * as Maizzle from '@maizzle/framework'
|
|
6
|
-
import * as maizzleConfig from '
|
|
6
|
+
import * as maizzleConfig from '../utils/config'
|
|
7
7
|
import { config } from '../tailwind.config'
|
|
8
8
|
|
|
9
9
|
export async function send(options: EmailOptions, provider: any, providerName: string, css?: string) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EmailJsProvider } from '@novu/emailjs'
|
|
2
2
|
import type { EmailOptions } from '@stacksjs/types'
|
|
3
3
|
import { notification } from '@stacksjs/config'
|
|
4
|
-
import { send as sendEmail } from '
|
|
4
|
+
import { send as sendEmail } from '../actions/send'
|
|
5
5
|
|
|
6
6
|
const env = notification.email.emailjs
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { MailgunEmailProvider } from '@novu/mailgun'
|
|
2
2
|
import type { EmailOptions } from '@stacksjs/types'
|
|
3
3
|
import { notification } from '@stacksjs/config'
|
|
4
|
-
import { send as sendEmail } from '
|
|
4
|
+
import { send as sendEmail } from '../actions/send'
|
|
5
5
|
|
|
6
6
|
const env = notification.email.mailgun
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { MailjetEmailProvider } from '@novu/mailjet'
|
|
2
2
|
import type { EmailOptions } from '@stacksjs/types'
|
|
3
3
|
import { notification } from '@stacksjs/config'
|
|
4
|
-
import { send as sendEmail } from '
|
|
4
|
+
import { send as sendEmail } from '../actions/send'
|
|
5
5
|
|
|
6
6
|
const env = notification.email.mailjet
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { MandrillProvider } from '@novu/mandrill'
|
|
2
2
|
import type { EmailOptions } from '@stacksjs/types'
|
|
3
3
|
import { notification } from '@stacksjs/config'
|
|
4
|
-
import { send as sendEmail } from '
|
|
4
|
+
import { send as sendEmail } from '../actions/send'
|
|
5
5
|
|
|
6
6
|
const env = notification.email.mandrill
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { NetCoreProvider } from '@novu/netcore'
|
|
2
2
|
import type { EmailOptions } from '@stacksjs/types'
|
|
3
3
|
import { notification } from '@stacksjs/config'
|
|
4
|
-
import { send as sendEmail } from '
|
|
4
|
+
import { send as sendEmail } from '../actions/send'
|
|
5
5
|
|
|
6
6
|
const env = notification.email.netcore
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { NodemailerProvider } from '@novu/nodemailer'
|
|
2
2
|
import type { EmailOptions } from '@stacksjs/types'
|
|
3
3
|
import { notification } from '@stacksjs/config'
|
|
4
|
-
import { send as sendEmail } from '
|
|
4
|
+
import { send as sendEmail } from '../actions/send'
|
|
5
5
|
|
|
6
6
|
const env = notification.email.nodemailer
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PostmarkEmailProvider } from '@novu/postmark'
|
|
2
2
|
import type { EmailOptions } from '@stacksjs/types'
|
|
3
3
|
import { notification } from '@stacksjs/config'
|
|
4
|
-
import { send as sendEmail } from '
|
|
4
|
+
import { send as sendEmail } from '../actions/send'
|
|
5
5
|
|
|
6
6
|
const env = notification.email.postmark
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SendgridEmailProvider } from '@novu/sendgrid'
|
|
2
2
|
import type { EmailOptions } from '@stacksjs/types'
|
|
3
3
|
import { notification } from '@stacksjs/config'
|
|
4
|
-
import { send as sendEmail } from '
|
|
4
|
+
import { send as sendEmail } from '../actions/send'
|
|
5
5
|
|
|
6
6
|
const env = notification.email.sendgrid
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SESEmailProvider } from '@novu/ses'
|
|
2
2
|
import type { EmailOptions } from '@stacksjs/types'
|
|
3
3
|
import { notification } from '@stacksjs/config'
|
|
4
|
-
import { send as sendEmail } from '
|
|
4
|
+
import { send as sendEmail } from '../actions/send'
|
|
5
5
|
|
|
6
6
|
const env = notification.email.ses
|
|
7
7
|
|
package/core/events/package.json
CHANGED
package/core/git/package.json
CHANGED
package/core/health/package.json
CHANGED
package/core/lint/package.json
CHANGED
|
@@ -4,7 +4,7 @@ import { log } from '@stacksjs/logging'
|
|
|
4
4
|
import { ResultAsync } from '@stacksjs/error-handling'
|
|
5
5
|
import * as Maizzle from '@maizzle/framework'
|
|
6
6
|
import * as maizzleConfig from '../../../utils/config'
|
|
7
|
-
import { config } from '
|
|
7
|
+
import { config } from '../../../tailwind.config'
|
|
8
8
|
|
|
9
9
|
export async function send(options: EmailOptions, provider: any, providerName: string, css?: string) {
|
|
10
10
|
const template = `
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { notification } from '@stacksjs/config'
|
|
2
|
+
|
|
3
|
+
const email = notification.email
|
|
4
|
+
|
|
5
|
+
export const config = {
|
|
6
|
+
...email.build,
|
|
7
|
+
theme: {
|
|
8
|
+
screens: {
|
|
9
|
+
sm: '480px',
|
|
10
|
+
md: '768px',
|
|
11
|
+
lg: '976px',
|
|
12
|
+
xl: '1440px',
|
|
13
|
+
},
|
|
14
|
+
colors: {
|
|
15
|
+
'blue': '#1fb6ff',
|
|
16
|
+
'purple': '#7e5bef',
|
|
17
|
+
'pink': '#ff49db',
|
|
18
|
+
'orange': '#ff7849',
|
|
19
|
+
'green': '#13ce66',
|
|
20
|
+
'yellow': '#ffc82c',
|
|
21
|
+
'gray-dark': '#273444',
|
|
22
|
+
'gray': '#8492a6',
|
|
23
|
+
'gray-light': '#d3dce6',
|
|
24
|
+
},
|
|
25
|
+
fontFamily: {
|
|
26
|
+
sans: ['Graphik', 'sans-serif'],
|
|
27
|
+
serif: ['Merriweather', 'serif'],
|
|
28
|
+
},
|
|
29
|
+
extend: {
|
|
30
|
+
spacing: {
|
|
31
|
+
128: '32rem',
|
|
32
|
+
144: '36rem',
|
|
33
|
+
},
|
|
34
|
+
borderRadius: {
|
|
35
|
+
'4xl': '2rem',
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
}
|
package/core/path/package.json
CHANGED
package/core/push/package.json
CHANGED
package/core/router/package.json
CHANGED
package/core/server/package.json
CHANGED
package/core/sms/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/sms",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.47.
|
|
4
|
+
"version": "0.47.2",
|
|
5
5
|
"packageManager": "pnpm@7.21.0",
|
|
6
6
|
"description": "The Stacks SMS integration. Painlessly create & manage your inboxes, templates, and send sms.",
|
|
7
7
|
"author": "Chris Breuer",
|
package/core/types/package.json
CHANGED
package/core/ui/package.json
CHANGED
package/core/utils/package.json
CHANGED
package/core/x-ray/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stacks",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.47.
|
|
4
|
+
"version": "0.47.2",
|
|
5
5
|
"packageManager": "pnpm@7.21.0",
|
|
6
6
|
"description": "The Stacks framework.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
},
|
|
66
66
|
"web-types": "./web-types.json",
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@stacksjs/buddy": "0.47.
|
|
68
|
+
"@stacksjs/buddy": "0.47.2"
|
|
69
69
|
},
|
|
70
70
|
"scripts": {
|
|
71
71
|
"buddy": "esno ./buddy/src/cli.ts",
|