@synerise/ds-logic 0.8.45 → 0.8.47

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.8.47](https://github.com/Synerise/synerise-design/compare/@synerise/ds-logic@0.8.46...@synerise/ds-logic@0.8.47) (2024-09-17)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-logic
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.8.46](https://github.com/Synerise/synerise-design/compare/@synerise/ds-logic@0.8.45...@synerise/ds-logic@0.8.46) (2024-09-13)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-logic
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.8.45](https://github.com/Synerise/synerise-design/compare/@synerise/ds-logic@0.8.44...@synerise/ds-logic@0.8.45) (2024-09-11)
7
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-logic
package/dist/Logic.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { LogicProps, LogicSubComponents } from './Logic.types';
3
3
  declare const Logic: React.FC<LogicProps> & LogicSubComponents;
4
4
  export default Logic;
package/dist/Logic.js CHANGED
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { useIntl } from 'react-intl';
3
3
  import { Title } from '@synerise/ds-typography';
4
4
  import * as S from './Logic.style';
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import Matching from './Matching/Matching';
3
3
  export type LogicOperatorValue = 'AND' | 'OR' | string;
4
4
  export type LogicOperator = {
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { PlaceholderType } from './Placeholder.types';
3
3
  declare const Placeholder: React.FC<PlaceholderType>;
4
4
  export default Placeholder;
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import Icon, { ClickM } from '@synerise/ds-icon';
3
3
  import { Text } from '@synerise/ds-typography';
4
4
  import { theme } from '@synerise/ds-core';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-logic",
3
- "version": "0.8.45",
3
+ "version": "0.8.47",
4
4
  "description": "Logic UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -33,9 +33,9 @@
33
33
  ],
34
34
  "types": "dist/index.d.ts",
35
35
  "dependencies": {
36
- "@synerise/ds-icon": "^0.65.4",
37
- "@synerise/ds-typography": "^0.15.1",
38
- "@synerise/ds-utils": "^0.29.1",
36
+ "@synerise/ds-icon": "^0.65.6",
37
+ "@synerise/ds-typography": "^0.15.2",
38
+ "@synerise/ds-utils": "^0.29.3",
39
39
  "react-intl": "3.12.0"
40
40
  },
41
41
  "peerDependencies": {
@@ -43,5 +43,5 @@
43
43
  "react": ">=16.9.0 <= 17.0.2",
44
44
  "styled-components": "5.0.1"
45
45
  },
46
- "gitHead": "fcf3fa64e906cf9fefb37a61ee28218c8eed9b73"
46
+ "gitHead": "ae3c38b44ca0f9071cd55f7b82c182a99b5710e8"
47
47
  }