react-mail-inbox 1.0.0 → 1.0.1
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.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -36,4 +36,4 @@ declare function GmailInbox({ fetchEmailOptions, handleChange, initialData, init
|
|
|
36
36
|
|
|
37
37
|
type Alignment = "left" | "center" | "right";
|
|
38
38
|
|
|
39
|
-
export { type Alignment, type EmailData, type EmailOption, GmailInbox, type Theme, useTheme };
|
|
39
|
+
export { type Alignment, type EmailData, type EmailOption, GmailInbox, type Theme, GmailInbox as default, useTheme };
|
package/dist/index.d.ts
CHANGED
|
@@ -36,4 +36,4 @@ declare function GmailInbox({ fetchEmailOptions, handleChange, initialData, init
|
|
|
36
36
|
|
|
37
37
|
type Alignment = "left" | "center" | "right";
|
|
38
38
|
|
|
39
|
-
export { type Alignment, type EmailData, type EmailOption, GmailInbox, type Theme, useTheme };
|
|
39
|
+
export { type Alignment, type EmailData, type EmailOption, GmailInbox, type Theme, GmailInbox as default, useTheme };
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
var react = require('react');
|
|
4
6
|
var jsxRuntime = require('react/jsx-runtime');
|
|
5
7
|
var LexicalAutoFocusPlugin = require('@lexical/react/LexicalAutoFocusPlugin');
|
|
@@ -2257,7 +2259,11 @@ function GmailInbox({
|
|
|
2257
2259
|
}
|
|
2258
2260
|
var GmailInbox_default = GmailInbox;
|
|
2259
2261
|
|
|
2262
|
+
// src/index.tsx
|
|
2263
|
+
var index_default = GmailInbox_default;
|
|
2264
|
+
|
|
2260
2265
|
exports.GmailInbox = GmailInbox_default;
|
|
2266
|
+
exports.default = index_default;
|
|
2261
2267
|
exports.useTheme = useTheme;
|
|
2262
2268
|
//# sourceMappingURL=index.js.map
|
|
2263
2269
|
//# sourceMappingURL=index.js.map
|