@synerise/ds-filter 0.11.4 → 0.12.1

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,7 +3,7 @@
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.11.4](https://github.com/Synerise/synerise-design/compare/@synerise/ds-filter@0.11.3...@synerise/ds-filter@0.11.4) (2022-08-04)
6
+ ## [0.12.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-filter@0.12.0...@synerise/ds-filter@0.12.1) (2022-08-25)
7
7
 
8
8
  **Note:** Version bump only for package @synerise/ds-filter
9
9
 
@@ -11,15 +11,23 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
11
 
12
12
 
13
13
 
14
- ## [0.11.3](https://github.com/Synerise/synerise-design/compare/@synerise/ds-filter@0.11.0...@synerise/ds-filter@0.11.3) (2022-08-04)
14
+ # [0.12.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-filter@0.11.1...@synerise/ds-filter@0.12.0) (2022-08-11)
15
15
 
16
- **Note:** Version bump only for package @synerise/ds-filter
16
+
17
+ ### Bug Fixes
18
+
19
+ * **filter:** changes dnd library ([96611e3](https://github.com/Synerise/synerise-design/commit/96611e328150757484394aabc0226ecd1b244af0))
20
+
21
+
22
+ ### Features
23
+
24
+ * **scrollbar:** creates common interface for old and new scrollbars ([ba9956f](https://github.com/Synerise/synerise-design/commit/ba9956f2a89ff9133da6b4c5a931142865e750e8))
17
25
 
18
26
 
19
27
 
20
28
 
21
29
 
22
- ## [0.11.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-filter@0.11.0...@synerise/ds-filter@0.11.2) (2022-08-04)
30
+ ## [0.11.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-filter@0.11.0...@synerise/ds-filter@0.11.1) (2022-07-28)
23
31
 
24
32
  **Note:** Version bump only for package @synerise/ds-filter
25
33
 
@@ -2,12 +2,12 @@ import * as React from 'react';
2
2
  import { LogicOperator, LogicOperatorValue, LogicProps } from '@synerise/ds-logic/src/Logic.types';
3
3
  import { StepCardProps } from '@synerise/ds-step-card/src/StepCard.types';
4
4
  import { MatchingProps, MatchingTexts } from '@synerise/ds-logic/src/Matching/Matching.types';
5
- declare type LogicType = {
5
+ export declare type LogicType = {
6
6
  type: 'LOGIC';
7
7
  id: string;
8
8
  data: Partial<LogicProps>;
9
9
  };
10
- declare type StepType = {
10
+ export declare type StepType = {
11
11
  type: 'STEP';
12
12
  id: string;
13
13
  data: Partial<StepCardProps>;
@@ -54,4 +54,3 @@ export declare type FilterProps = {
54
54
  dropMeHere?: string;
55
55
  };
56
56
  };
57
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-filter",
3
- "version": "0.11.4",
3
+ "version": "0.12.1",
4
4
  "description": "Filter UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -32,10 +32,10 @@
32
32
  ],
33
33
  "types": "dist/index.d.ts",
34
34
  "dependencies": {
35
- "@synerise/ds-button": "^0.17.5",
36
- "@synerise/ds-icon": "^0.49.3",
37
- "@synerise/ds-logic": "^0.7.4",
38
- "@synerise/ds-step-card": "^0.7.4",
35
+ "@synerise/ds-button": "^0.17.8",
36
+ "@synerise/ds-icon": "^0.50.0",
37
+ "@synerise/ds-logic": "^0.7.7",
38
+ "@synerise/ds-step-card": "^0.6.3",
39
39
  "react-sortablejs": "^6.0.0"
40
40
  },
41
41
  "peerDependencies": {
@@ -43,5 +43,5 @@
43
43
  "@synerise/ds-step-card": "*",
44
44
  "react": ">=16.9.0 < 17.0.0"
45
45
  },
46
- "gitHead": "28486eab4b37b485cbe2a383e3ae9b8e9d789862"
46
+ "gitHead": "c9530f0548fa244796b0c6b1ea5fa3d6330e84ea"
47
47
  }