@synerise/ds-core 0.40.21 → 0.40.23

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,22 @@
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.40.23](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@0.40.22...@synerise/ds-core@0.40.23) (2024-09-26)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-core
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.40.22](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@0.40.21...@synerise/ds-core@0.40.22) (2024-09-17)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-core
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.40.21](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@0.40.20...@synerise/ds-core@0.40.21) (2024-09-03)
7
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-core
@@ -1,5 +1,5 @@
1
1
  import '../style';
2
- import * as React from 'react';
2
+ import React from 'react';
3
3
  import { DataFormatConfigProviderProps } from '@synerise/ds-data-format';
4
4
  import { LocaleProviderProps } from './LocaleProvider/LocaleProvider';
5
5
  import { ThemeProviderProps } from './ThemeProvider/ThemeProvider';
@@ -1,5 +1,5 @@
1
1
  import '../style';
2
- import * as React from 'react';
2
+ import React from 'react';
3
3
  import { DataFormatConfigProvider } from '@synerise/ds-data-format';
4
4
  import LocaleProvider from './LocaleProvider';
5
5
  import ThemeProvider from './ThemeProvider';
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  type NestedMessages = {
3
3
  [key: string]: string | NestedMessages;
4
4
  };
@@ -6,7 +6,7 @@ function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.crea
6
6
 
7
7
  function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
8
 
9
- import * as React from 'react';
9
+ import React from 'react';
10
10
  import { IntlProvider } from 'react-intl';
11
11
  import { flatten } from 'flat';
12
12
  import * as merge from 'deepmerge';
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { ThemePropsVars } from './theme';
3
3
  export interface ThemeProviderProps {
4
4
  theme?: ThemePropsVars;
@@ -4,7 +4,7 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
4
4
 
5
5
  function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
6
 
7
- import * as React from 'react';
7
+ import React from 'react';
8
8
  import { ThemeProvider as ThemeProviderBase } from 'styled-components';
9
9
  import dsTheme from './theme';
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-core",
3
- "version": "0.40.21",
3
+ "version": "0.40.23",
4
4
  "description": "Core Components for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -27,11 +27,12 @@
27
27
  "test": "jest",
28
28
  "test:watch": "npm run test -- --watchAll",
29
29
  "types": "tsc --noEmit",
30
+ "upgrade:ds": "ncu -f \"@synerise/ds-*\" -u",
30
31
  "vars": "node ./build/vars.js"
31
32
  },
32
33
  "types": "dist/js/index.js",
33
34
  "dependencies": {
34
- "@synerise/ds-data-format": "^0.5.2",
35
+ "@synerise/ds-data-format": "^0.5.4",
35
36
  "deepmerge": "^4.2.2",
36
37
  "flat": "^5.0.2",
37
38
  "intl-messageformat-parser": "^3.6.4",
@@ -43,5 +44,5 @@
43
44
  "react": ">=16.9.0 <= 17.0.2",
44
45
  "styled-components": "5.0.1"
45
46
  },
46
- "gitHead": "6fe94d574f25c5267c7593dec9399527f441b23a"
47
+ "gitHead": "fc06bd0f13401a57329fb92985b735de33108dbc"
47
48
  }