@react-email/tailwind 1.0.3 → 1.1.0-canary.0
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/index.d.ts +2 -2
- package/dist/index.js +28 -26
- package/dist/index.mjs +8748 -6705
- package/package.json +7 -11
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { Config } from '../dist/tailwindcss';
|
|
2
2
|
import * as React_2 from 'react';
|
|
3
3
|
|
|
4
4
|
export declare interface EmailElementProps {
|
|
@@ -9,7 +9,7 @@ export declare interface EmailElementProps {
|
|
|
9
9
|
|
|
10
10
|
export declare const Tailwind: React_2.FC<TailwindProps>;
|
|
11
11
|
|
|
12
|
-
export declare type TailwindConfig = Pick<Config,
|
|
12
|
+
export declare type TailwindConfig = Pick<Config, 'important' | 'prefix' | 'separator' | 'safelist' | 'blocklist' | 'presets' | 'future' | 'experimental' | 'darkMode' | 'theme' | 'corePlugins' | 'plugins'>;
|
|
13
13
|
|
|
14
14
|
export declare interface TailwindProps {
|
|
15
15
|
children: React_2.ReactNode;
|