@trycourier/courier-ui-inbox 1.0.8-beta → 1.0.11-beta
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 +374 -0
- package/dist/components/courier-inbox-list-item.d.ts +3 -1
- package/dist/components/courier-inbox-list.d.ts +5 -0
- package/dist/components/courier-inbox-popup-menu.d.ts +14 -9
- package/dist/components/courier-inbox.d.ts +2 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +175 -115
- package/dist/index.mjs.map +1 -1
- package/dist/types/courier-inbox-theme-manager.d.ts +1 -0
- package/package.json +4 -3
|
@@ -37,6 +37,7 @@ export declare class CourierInboxThemeManager {
|
|
|
37
37
|
* Set the mode and notify all listeners
|
|
38
38
|
*/
|
|
39
39
|
setMode(mode: CourierComponentThemeMode): void;
|
|
40
|
+
get mode(): CourierComponentThemeMode;
|
|
40
41
|
/**
|
|
41
42
|
* Subscribe to theme changes
|
|
42
43
|
* @param {Function} callback - Function to run when the theme changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trycourier/courier-ui-inbox",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11-beta",
|
|
4
4
|
"description": "Inbox components for the Courier web UI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -26,12 +26,13 @@
|
|
|
26
26
|
"dist"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@trycourier/courier-js": "2.0.
|
|
30
|
-
"@trycourier/courier-ui-core": "1.0.
|
|
29
|
+
"@trycourier/courier-js": "2.0.8-beta",
|
|
30
|
+
"@trycourier/courier-ui-core": "1.0.11-beta"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@trycourier/courier-js": "file:../@trycourier/courier-js",
|
|
34
34
|
"@trycourier/courier-ui-core": "file:../@trycourier/courier-ui-core",
|
|
35
|
+
"@types/jest": "29.5.14",
|
|
35
36
|
"jest": "^29.7.0",
|
|
36
37
|
"vite": "6.2.6",
|
|
37
38
|
"vite-plugin-dts": "4.5.3"
|