@synerise/ds-mapping 1.1.2 → 1.1.4

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
+ ## [1.1.4](https://github.com/Synerise/synerise-design/compare/@synerise/ds-mapping@1.1.3...@synerise/ds-mapping@1.1.4) (2025-07-24)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-mapping
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.1.3](https://github.com/Synerise/synerise-design/compare/@synerise/ds-mapping@1.1.2...@synerise/ds-mapping@1.1.3) (2025-07-17)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-mapping
17
+
18
+
19
+
20
+
21
+
6
22
  ## [1.1.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-mapping@1.1.1...@synerise/ds-mapping@1.1.2) (2025-07-15)
7
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-mapping
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const MappingWrapper: import("styled-components").StyledComponent<"div", any, {
3
2
  isCompact: boolean;
4
3
  }, never>;
@@ -7,7 +6,7 @@ export declare const MappingRowLeft: import("styled-components").StyledComponent
7
6
  export declare const MappingRowRight: import("styled-components").StyledComponent<"div", any, {}, never>;
8
7
  export declare const MappingRowCenter: import("styled-components").StyledComponent<"div", any, {}, never>;
9
8
  export declare const RowSelectionWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
10
- export declare const ColumnTitle: import("styled-components").StyledComponent<({ level, withoutMargin, children, className, ellipsis, ...antdProps }: import("@synerise/ds-typography/dist/Title.types").Props) => import("react").JSX.Element, any, {}, never>;
9
+ export declare const ColumnTitle: import("styled-components").StyledComponent<({ level, withoutMargin, children, className, ellipsis, ...antdProps }: import("@synerise/ds-typography/dist/Title.types").Props) => React.JSX.Element, any, {}, never>;
11
10
  export declare const BatchSelectionWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
12
11
  export declare const BatchActionButtons: import("styled-components").StyledComponent<"div", any, {}, never>;
13
12
  export declare const BatchCounter: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  import type { BaseItemType } from '../Mapping.types';
3
- export declare const useBatchSelection: <ItemType extends BaseItemType>(dataSource: ItemType[], hasBatchSelection?: boolean) => {
2
+ export declare const useBatchSelection: <ItemType extends BaseItemType>(dataSource: Array<ItemType>, hasBatchSelection?: boolean) => {
4
3
  selectedItemIds: ItemType["id"][];
5
4
  batchSelectionCheckboxState: boolean | undefined;
6
5
  setSelectedItemIds: import("react").Dispatch<import("react").SetStateAction<ItemType["id"][]>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-mapping",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "Mapping UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -34,12 +34,12 @@
34
34
  ],
35
35
  "types": "dist/index.d.ts",
36
36
  "dependencies": {
37
- "@synerise/ds-button": "^1.4.4",
38
- "@synerise/ds-checkbox": "^1.1.2",
39
- "@synerise/ds-icon": "^1.6.0",
40
- "@synerise/ds-tooltip": "^1.1.13",
41
- "@synerise/ds-typography": "^1.0.15",
42
- "@synerise/ds-utils": "^1.3.1"
37
+ "@synerise/ds-button": "^1.4.6",
38
+ "@synerise/ds-checkbox": "^1.1.4",
39
+ "@synerise/ds-icon": "^1.6.2",
40
+ "@synerise/ds-tooltip": "^1.1.15",
41
+ "@synerise/ds-typography": "^1.0.17",
42
+ "@synerise/ds-utils": "^1.4.0"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "@synerise/ds-core": "*",
@@ -48,5 +48,5 @@
48
48
  "react-intl": ">=3.12.0 <= 6.8",
49
49
  "styled-components": "^5.3.3"
50
50
  },
51
- "gitHead": "f7c362a4f370d86b51df9aba9e91ac8f7fe4ed8f"
51
+ "gitHead": "b35b1875727156fe9f5b3bad55aed5ca447c8c8d"
52
52
  }