@synerise/ds-logic 0.8.9 → 0.8.10

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,14 @@
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.10](https://github.com/Synerise/synerise-design/compare/@synerise/ds-logic@0.8.9...@synerise/ds-logic@0.8.10) (2023-10-02)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-logic
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.8.9](https://github.com/Synerise/synerise-design/compare/@synerise/ds-logic@0.8.8...@synerise/ds-logic@0.8.9) (2023-09-26)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-logic
@@ -1,16 +1,16 @@
1
1
  import * as React from 'react';
2
2
  import Matching from './Matching/Matching';
3
- export declare type LogicOperatorValue = 'AND' | 'OR' | string;
4
- export declare type LogicOperator = {
3
+ export type LogicOperatorValue = 'AND' | 'OR' | string;
4
+ export type LogicOperator = {
5
5
  value: string;
6
6
  label: string | React.ReactNode;
7
7
  };
8
- export declare type LogicProps = {
8
+ export type LogicProps = {
9
9
  value: LogicOperatorValue;
10
10
  options?: LogicOperator[];
11
11
  onChange: (value: LogicOperatorValue) => void;
12
12
  readOnly?: boolean;
13
13
  };
14
- export declare type LogicSubComponents = {
14
+ export type LogicSubComponents = {
15
15
  Matching: typeof Matching;
16
16
  };
@@ -1,8 +1,8 @@
1
- export declare type MatchingTexts = {
1
+ export type MatchingTexts = {
2
2
  matching: string;
3
3
  notMatching: string;
4
4
  };
5
- export declare type MatchingProps = {
5
+ export type MatchingProps = {
6
6
  matching: boolean;
7
7
  sentence?: string;
8
8
  onChange: (matching: boolean) => void;
@@ -1,3 +1,3 @@
1
- export declare type PlaceholderType = {
1
+ export type PlaceholderType = {
2
2
  text?: string;
3
3
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-logic",
3
- "version": "0.8.9",
3
+ "version": "0.8.10",
4
4
  "description": "Logic UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -32,9 +32,9 @@
32
32
  ],
33
33
  "types": "dist/index.d.ts",
34
34
  "dependencies": {
35
- "@synerise/ds-icon": "^0.58.2",
36
- "@synerise/ds-typography": "^0.13.0",
37
- "@synerise/ds-utils": "^0.24.16",
35
+ "@synerise/ds-icon": "^0.58.3",
36
+ "@synerise/ds-typography": "^0.13.1",
37
+ "@synerise/ds-utils": "^0.24.17",
38
38
  "react-intl": "3.12.0"
39
39
  },
40
40
  "peerDependencies": {
@@ -47,5 +47,5 @@
47
47
  "@testing-library/react": "10.0.1",
48
48
  "@testing-library/user-event": "^10.3.1"
49
49
  },
50
- "gitHead": "f1f520c4c5ef9f90bacb5d5e0b2e778ceb8fdf79"
50
+ "gitHead": "1c1adf344f447e404a1d6320ad1d3f8486f29f67"
51
51
  }