@salutejs/sdds-finportal 0.227.0-canary.1733.13050080190.0 → 0.227.1-canary.1733.13052423640.0

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.
@@ -2702,6 +2702,7 @@ export const NotificationsProvider: React_2.FC<{
2702
2702
  children: ReactNode;
2703
2703
  frame?: string;
2704
2704
  placement?: NotificationPlacement;
2705
+ UNSAFE_SSR_ENABLED?: boolean;
2705
2706
  }>;
2706
2707
 
2707
2708
  // @public (undocumented)
@@ -21,6 +21,7 @@ export declare const NotificationsProvider: React.FC<{
21
21
  children: ReactNode;
22
22
  frame?: string;
23
23
  placement?: NotificationPlacement;
24
+ UNSAFE_SSR_ENABLED?: boolean;
24
25
  }>;
25
26
  export type { NotificationIconPlacement, NotificationPlacement, NotificationLayout, NotificationProps };
26
27
  export { addNotification, closeNotification };
@@ -33,10 +33,12 @@ var NotificationsProvider = exports.NotificationsProvider = function Notificatio
33
33
  var children = _ref.children,
34
34
  _ref$frame = _ref.frame,
35
35
  frame = _ref$frame === void 0 ? 'document' : _ref$frame,
36
- placement = _ref.placement;
36
+ placement = _ref.placement,
37
+ UNSAFE_SSR_ENABLED = _ref.UNSAFE_SSR_ENABLED;
37
38
  return /*#__PURE__*/_react["default"].createElement(_styledComponents.NotificationsProvider, {
38
39
  config: mergedConfig,
39
40
  frame: frame,
40
- placement: placement
41
+ placement: placement,
42
+ UNSAFE_SSR_ENABLED: UNSAFE_SSR_ENABLED
41
43
  }, children);
42
44
  };
@@ -8,11 +8,13 @@ export var NotificationsProvider = function NotificationsProvider(_ref) {
8
8
  var children = _ref.children,
9
9
  _ref$frame = _ref.frame,
10
10
  frame = _ref$frame === void 0 ? 'document' : _ref$frame,
11
- placement = _ref.placement;
11
+ placement = _ref.placement,
12
+ UNSAFE_SSR_ENABLED = _ref.UNSAFE_SSR_ENABLED;
12
13
  return /*#__PURE__*/React.createElement(Provider, {
13
14
  config: mergedConfig,
14
15
  frame: frame,
15
- placement: placement
16
+ placement: placement,
17
+ UNSAFE_SSR_ENABLED: UNSAFE_SSR_ENABLED
16
18
  }, children);
17
19
  };
18
20
  export { addNotification, closeNotification };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/sdds-finportal",
3
- "version": "0.227.0-canary.1733.13050080190.0",
3
+ "version": "0.227.1-canary.1733.13052423640.0",
4
4
  "description": "Salute Design System / React UI kit for SDDS FinPortal web applications",
5
5
  "author": "Salute Frontend Team <salute.developers@gmail.com>",
6
6
  "license": "MIT",
@@ -19,7 +19,7 @@
19
19
  "directory": "packages/sdds-finportal"
20
20
  },
21
21
  "dependencies": {
22
- "@salutejs/plasma-new-hope": "0.250.0-canary.1733.13050080190.0",
22
+ "@salutejs/plasma-new-hope": "0.250.1-canary.1733.13052423640.0",
23
23
  "@salutejs/sdds-themes": "0.31.0"
24
24
  },
25
25
  "peerDependencies": {
@@ -95,5 +95,5 @@
95
95
  "Vasiliy Loginevskiy"
96
96
  ],
97
97
  "sideEffects": false,
98
- "gitHead": "8113c80b4a6985f030d1cd0aa6de4f0c4f977205"
98
+ "gitHead": "22bfc24ca7c9675d5eadaa4f50a0551c14d4f6bd"
99
99
  }
@@ -2702,6 +2702,7 @@ export const NotificationsProvider: React_2.FC<{
2702
2702
  children: ReactNode;
2703
2703
  frame?: string;
2704
2704
  placement?: NotificationPlacement;
2705
+ UNSAFE_SSR_ENABLED?: boolean;
2705
2706
  }>;
2706
2707
 
2707
2708
  // @public (undocumented)