@ttoss/react-notifications 1.24.50 → 1.24.51

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/esm/index.js CHANGED
@@ -145,7 +145,7 @@ var NotificationsBox = ({
145
145
 
146
146
  // src/NotificationsModal.tsx
147
147
  import { CloseButton } from "@ttoss/ui";
148
- import { Modal } from "@ttoss/components";
148
+ import { Modal } from "@ttoss/components/Modal";
149
149
  import { jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
150
150
  var NotificationsModal = () => {
151
151
  const {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttoss/react-notifications",
3
- "version": "1.24.50",
3
+ "version": "1.24.51",
4
4
  "description": "ttoss notifications module for React apps.",
5
5
  "author": "ttoss",
6
6
  "contributors": [
@@ -25,20 +25,20 @@
25
25
  "sideEffects": false,
26
26
  "peerDependencies": {
27
27
  "react": ">=16.8.0",
28
- "@ttoss/components": "^2.0.2",
29
- "@ttoss/react-icons": "^0.4.0",
30
- "@ttoss/ui": "^5.0.2"
28
+ "@ttoss/components": "^2.0.3",
29
+ "@ttoss/ui": "^5.0.2",
30
+ "@ttoss/react-icons": "^0.4.0"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/react": "^18.3.3",
34
34
  "jest": "^29.7.0",
35
35
  "react": "^18.3.1",
36
36
  "tsup": "^8.2.4",
37
+ "@ttoss/components": "^2.0.3",
38
+ "@ttoss/config": "^1.32.9",
37
39
  "@ttoss/react-icons": "^0.4.0",
38
- "@ttoss/ui": "^5.0.2",
39
40
  "@ttoss/test-utils": "^2.1.13",
40
- "@ttoss/config": "^1.32.9",
41
- "@ttoss/components": "^2.0.2"
41
+ "@ttoss/ui": "^5.0.2"
42
42
  },
43
43
  "keywords": [
44
44
  "React",
@@ -1,5 +1,5 @@
1
1
  import { CloseButton } from '@ttoss/ui';
2
- import { Modal } from '@ttoss/components';
2
+ import { Modal } from '@ttoss/components/Modal';
3
3
  import { NotificationsBox } from './NotificationsBox';
4
4
  import { useNotifications } from './Provider';
5
5