@notificationapi/react 0.0.31 → 0.0.33

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.
Files changed (29) hide show
  1. package/dist/assets/AntdIcon.js +4 -4
  2. package/dist/assets/Notification.js +3094 -2713
  3. package/dist/assets/PurePanel.js +2 -2
  4. package/dist/assets/RightOutlined.js +1 -1
  5. package/dist/assets/button.js +1394 -577
  6. package/dist/assets/channelUtils.js +1 -1
  7. package/dist/assets/colors.js +14798 -14301
  8. package/dist/assets/index.js +156 -158
  9. package/dist/assets/index2.js +212 -221
  10. package/dist/assets/index3.js +8307 -724
  11. package/dist/assets/pickAttrs.js +1 -1
  12. package/dist/assets/presets.js +810 -0
  13. package/dist/components/Notifications/Inbox.js +3520 -3323
  14. package/dist/components/Notifications/InboxHeader.d.ts +1 -2
  15. package/dist/components/Notifications/InboxHeader.js +2 -2
  16. package/dist/components/Notifications/Notification.js +1 -1
  17. package/dist/components/Notifications/NotificationFeed.js +1 -2
  18. package/dist/components/Preferences/NotificationPreferencesInline.d.ts +1 -2
  19. package/dist/components/Preferences/NotificationPreferencesPopup.d.ts +1 -2
  20. package/dist/components/Preferences/NotificationPreferencesPopup.js +1423 -857
  21. package/dist/components/Preferences/PreferenceInput.d.ts +1 -1
  22. package/dist/components/Preferences/PreferenceInput.js +843 -812
  23. package/dist/components/Preferences/Preferences.d.ts +1 -2
  24. package/dist/components/Preferences/Preferences.js +331 -328
  25. package/dist/components/Preferences/channelUtils.js +1 -1
  26. package/dist/components/Provider/index.d.ts +1 -0
  27. package/dist/components/Provider/index.js +27 -34
  28. package/package.json +5 -5
  29. package/dist/assets/index4.js +0 -8408
@@ -7,5 +7,5 @@ type Props = {
7
7
  updateDelivery: (notificationId: string, channel: Channels, delivery: DeliveryOptionsForEmail | DeliveryOptionsForInappWeb | BaseDeliveryOptions, subNotificationId?: string) => void;
8
8
  subNotificationId?: string;
9
9
  };
10
- export declare const PreferenceInput: ({ notification, preferences, updateDelivery, subNotificationId }: Props) => JSX.Element;
10
+ export declare const PreferenceInput: ({ notification, preferences, updateDelivery, subNotificationId }: Props) => import("react/jsx-runtime").JSX.Element;
11
11
  export {};