@synerise/ds-utils 0.30.1 → 0.31.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.31.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-utils@0.30.2...@synerise/ds-utils@0.31.0) (2024-11-12)
7
+
8
+
9
+ ### Features
10
+
11
+ * **core:** reactintl bumped and onerror intlprovider ([08f4558](https://github.com/synerise/synerise-design/commit/08f4558757a55c63db55767fff9fc6714728d26b))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.30.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-utils@0.30.1...@synerise/ds-utils@0.30.2) (2024-10-29)
18
+
19
+ **Note:** Version bump only for package @synerise/ds-utils
20
+
21
+
22
+
23
+
24
+
6
25
  ## [0.30.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-utils@0.30.0...@synerise/ds-utils@0.30.1) (2024-10-28)
7
26
 
8
27
  **Note:** Version bump only for package @synerise/ds-utils
@@ -10,12 +10,14 @@ import React from 'react';
10
10
  import { render } from '@testing-library/react';
11
11
  import { DSProvider } from '@synerise/ds-core';
12
12
  import { getDataFormatConfigFromNotation } from '@synerise/ds-data-format';
13
+ import { NOOP } from '../../index';
13
14
 
14
15
  var renderWithProvider = function renderWithProvider(node, options, props) {
15
16
  var _props$locale;
16
17
 
17
18
  var rendered = render( /*#__PURE__*/React.createElement(DSProvider, _extends({
18
- locale: (_props$locale = props == null ? void 0 : props.locale) != null ? _props$locale : undefined
19
+ locale: (_props$locale = props == null ? void 0 : props.locale) != null ? _props$locale : undefined,
20
+ onError: NOOP
19
21
  }, props != null && props.notation ? {
20
22
  dataFormatConfig: getDataFormatConfigFromNotation(props.notation)
21
23
  } : {}), node), options);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-utils",
3
- "version": "0.30.1",
3
+ "version": "0.31.0",
4
4
  "description": "Utils UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -33,7 +33,7 @@
33
33
  ],
34
34
  "types": "dist/index.d.ts",
35
35
  "dependencies": {
36
- "@synerise/ds-data-format": "^0.5.4",
36
+ "@synerise/ds-data-format": "^0.6.0",
37
37
  "latinize": "^0.5.0"
38
38
  },
39
39
  "peerDependencies": {
@@ -41,5 +41,5 @@
41
41
  "react": ">=16.9.0 <= 17.0.2",
42
42
  "styled-components": "5.0.1"
43
43
  },
44
- "gitHead": "fbadaa2299668c527b52ecc66d61fc2165528bff"
44
+ "gitHead": "1bb66dcc360a650e81b9bd195d5b77aa8ae2d308"
45
45
  }