@trycourier/courier-ui-inbox 1.0.11-beta → 1.0.12-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.
@@ -13,10 +13,17 @@ export type CourierInboxFilterItemTheme = {
13
13
  icon?: CourierInboxIconTheme;
14
14
  text?: string;
15
15
  };
16
- export type CourierInboxUnreadIndicatorTheme = {
16
+ export type CourierInboxUnreadDotIndicatorTheme = {
17
+ backgroundColor?: string;
18
+ borderRadius?: string;
19
+ height?: string;
20
+ width?: string;
21
+ };
22
+ export type CourierInboxUnreadCountIndicatorTheme = {
17
23
  font?: CourierInboxFontTheme;
18
24
  backgroundColor?: string;
19
25
  borderRadius?: string;
26
+ padding?: string;
20
27
  };
21
28
  export type CourierInboxIconButtonTheme = {
22
29
  icon?: CourierInboxIconTheme;
@@ -35,7 +42,7 @@ export type CourierInboxButtonTheme = {
35
42
  activeBackgroundColor?: string;
36
43
  };
37
44
  export type CourierInboxMenuButtonTheme = CourierInboxIconButtonTheme & {
38
- unreadIndicator?: CourierInboxUnreadIndicatorTheme;
45
+ unreadDotIndicator?: CourierInboxUnreadDotIndicatorTheme;
39
46
  };
40
47
  export type CourierInboxPopupTheme = {
41
48
  backgroundColor?: string;
@@ -139,7 +146,7 @@ export type CourierInboxTheme = {
139
146
  font?: CourierInboxFontTheme;
140
147
  inbox?: CourierInboxFilterItemTheme;
141
148
  archive?: CourierInboxFilterItemTheme;
142
- unreadIndicator?: CourierInboxUnreadIndicatorTheme;
149
+ unreadIndicator?: CourierInboxUnreadCountIndicatorTheme;
143
150
  };
144
151
  menus?: {
145
152
  popup?: CourierInboxPopupTheme;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trycourier/courier-ui-inbox",
3
- "version": "1.0.11-beta",
3
+ "version": "1.0.12-beta",
4
4
  "description": "Inbox components for the Courier web UI",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -30,8 +30,6 @@
30
30
  "@trycourier/courier-ui-core": "1.0.11-beta"
31
31
  },
32
32
  "devDependencies": {
33
- "@trycourier/courier-js": "file:../@trycourier/courier-js",
34
- "@trycourier/courier-ui-core": "file:../@trycourier/courier-ui-core",
35
33
  "@types/jest": "29.5.14",
36
34
  "jest": "^29.7.0",
37
35
  "vite": "6.2.6",