@salutejs/sdds-finportal 0.225.0-canary.1718.12929142809.0 → 0.225.0-canary.1720.12932623654.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.
@@ -1444,6 +1444,7 @@ true: PolymorphicClassName;
1444
1444
  }> & DatePickerVariationProps & {
1445
1445
  requiredPlacement?: "right" | "left" | undefined;
1446
1446
  required?: boolean | undefined;
1447
+ value?: Date | undefined;
1447
1448
  defaultDate?: Date | undefined;
1448
1449
  placeholder?: string | undefined;
1449
1450
  name?: string | undefined;
@@ -1492,6 +1493,7 @@ true: PolymorphicClassName;
1492
1493
  }> & DatePickerVariationProps & {
1493
1494
  requiredPlacement?: "right" | "left" | undefined;
1494
1495
  required?: boolean | undefined;
1496
+ value?: [(Date | undefined)?, (Date | undefined)?] | undefined;
1495
1497
  defaultFirstDate?: Date | undefined;
1496
1498
  defaultSecondDate?: Date | undefined;
1497
1499
  name?: string | undefined;
@@ -2698,7 +2700,6 @@ export const NotificationsProvider: React_2.FC<{
2698
2700
  children: ReactNode;
2699
2701
  frame?: string;
2700
2702
  placement?: NotificationPlacement;
2701
- UNSAFE_SSR_ENABLED?: boolean;
2702
2703
  }>;
2703
2704
 
2704
2705
  // @public (undocumented)
@@ -18,6 +18,7 @@ export declare const DatePicker: import("react").FunctionComponent<import("@salu
18
18
  }> & import("@salutejs/plasma-new-hope/types/components/DatePicker/DatePickerBase.types").DatePickerVariationProps & {
19
19
  requiredPlacement?: "right" | "left" | undefined;
20
20
  required?: boolean | undefined;
21
+ value?: Date | undefined;
21
22
  defaultDate?: Date | undefined;
22
23
  placeholder?: string | undefined;
23
24
  name?: string | undefined;
@@ -56,6 +57,7 @@ export declare const DatePickerRange: import("react").FunctionComponent<import("
56
57
  }> & import("@salutejs/plasma-new-hope/types/components/DatePicker/DatePickerBase.types").DatePickerVariationProps & {
57
58
  requiredPlacement?: "right" | "left" | undefined;
58
59
  required?: boolean | undefined;
60
+ value?: [(Date | undefined)?, (Date | undefined)?] | undefined;
59
61
  defaultFirstDate?: Date | undefined;
60
62
  defaultSecondDate?: Date | undefined;
61
63
  name?: string | undefined;
@@ -21,7 +21,6 @@ export declare const NotificationsProvider: React.FC<{
21
21
  children: ReactNode;
22
22
  frame?: string;
23
23
  placement?: NotificationPlacement;
24
- UNSAFE_SSR_ENABLED?: boolean;
25
24
  }>;
26
25
  export type { NotificationIconPlacement, NotificationPlacement, NotificationLayout, NotificationProps };
27
26
  export { addNotification, closeNotification };
@@ -33,12 +33,10 @@ 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,
37
- UNSAFE_SSR_ENABLED = _ref.UNSAFE_SSR_ENABLED;
36
+ placement = _ref.placement;
38
37
  return /*#__PURE__*/_react["default"].createElement(_styledComponents.NotificationsProvider, {
39
38
  config: mergedConfig,
40
39
  frame: frame,
41
- placement: placement,
42
- UNSAFE_SSR_ENABLED: UNSAFE_SSR_ENABLED
40
+ placement: placement
43
41
  }, children);
44
42
  };
@@ -8,13 +8,11 @@ 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,
12
- UNSAFE_SSR_ENABLED = _ref.UNSAFE_SSR_ENABLED;
11
+ placement = _ref.placement;
13
12
  return /*#__PURE__*/React.createElement(Provider, {
14
13
  config: mergedConfig,
15
14
  frame: frame,
16
- placement: placement,
17
- UNSAFE_SSR_ENABLED: UNSAFE_SSR_ENABLED
15
+ placement: placement
18
16
  }, children);
19
17
  };
20
18
  export { addNotification, closeNotification };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/sdds-finportal",
3
- "version": "0.225.0-canary.1718.12929142809.0",
3
+ "version": "0.225.0-canary.1720.12932623654.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.248.0-canary.1718.12929142809.0",
22
+ "@salutejs/plasma-new-hope": "0.248.0-canary.1720.12932623654.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": "fa79603f1453bbf1c03a748d2d672d4500bb9490"
98
+ "gitHead": "6c04264d838ab1336f0d2881d31b7a3d63edb6c2"
99
99
  }
@@ -1444,6 +1444,7 @@ true: PolymorphicClassName;
1444
1444
  }> & DatePickerVariationProps & {
1445
1445
  requiredPlacement?: "right" | "left" | undefined;
1446
1446
  required?: boolean | undefined;
1447
+ value?: Date | undefined;
1447
1448
  defaultDate?: Date | undefined;
1448
1449
  placeholder?: string | undefined;
1449
1450
  name?: string | undefined;
@@ -1492,6 +1493,7 @@ true: PolymorphicClassName;
1492
1493
  }> & DatePickerVariationProps & {
1493
1494
  requiredPlacement?: "right" | "left" | undefined;
1494
1495
  required?: boolean | undefined;
1496
+ value?: [(Date | undefined)?, (Date | undefined)?] | undefined;
1495
1497
  defaultFirstDate?: Date | undefined;
1496
1498
  defaultSecondDate?: Date | undefined;
1497
1499
  name?: string | undefined;
@@ -2698,7 +2700,6 @@ export const NotificationsProvider: React_2.FC<{
2698
2700
  children: ReactNode;
2699
2701
  frame?: string;
2700
2702
  placement?: NotificationPlacement;
2701
- UNSAFE_SSR_ENABLED?: boolean;
2702
2703
  }>;
2703
2704
 
2704
2705
  // @public (undocumented)