@synerise/ds-image 2.0.4 → 2.0.6

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,25 @@
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
+ ## [2.0.6](https://github.com/Synerise/synerise-design/compare/@synerise/ds-image@2.0.5...@synerise/ds-image@2.0.6) (2026-09-22)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **core:** move test helpers to a ./testing subpath export ([b38cd82](https://github.com/Synerise/synerise-design/commit/b38cd82c956111d2331d5c1e0efd1935366f1139))
12
+
13
+
14
+
15
+
16
+
17
+ ## [2.0.5](https://github.com/Synerise/synerise-design/compare/@synerise/ds-image@2.0.4...@synerise/ds-image@2.0.5) (2026-09-18)
18
+
19
+ **Note:** Version bump only for package @synerise/ds-image
20
+
21
+
22
+
23
+
24
+
6
25
  ## [2.0.4](https://github.com/Synerise/synerise-design/compare/@synerise/ds-image@2.0.3...@synerise/ds-image@2.0.4) (2026-09-16)
7
26
 
8
27
  **Note:** Version bump only for package @synerise/ds-image
@@ -1,8 +1,8 @@
1
1
  import { jsxs, jsx } from "react/jsx-runtime";
2
2
  import { useState, useMemo } from "react";
3
+ import { ImageGalleryContext } from "../context/ImageGalleryContext.js";
3
4
  import ImagePreview from "../Preview/ImagePreview.js";
4
5
  import Thumbnail from "../Thumbnail/Thumbnail.js";
5
- import { ImageGalleryContext } from "../context/ImageGalleryContext.js";
6
6
  import { Container } from "./Gallery.styles.js";
7
7
  const Gallery = ({
8
8
  images,
package/dist/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- export { default as Thumbnail } from './Thumbnail/Thumbnail';
2
1
  export { default as Gallery } from './Gallery/Gallery';
3
- export { default as ImagePreview } from './Preview/ImagePreview';
4
- export { useImagePreview, type UseImagePreviewReturn, } from './hooks/useImagePreview';
5
- export type { ThumbnailProps } from './Thumbnail/Thumbnail.types';
6
2
  export type { GalleryProps } from './Gallery/Gallery.types';
3
+ export { type UseImagePreviewReturn, useImagePreview, } from './hooks/useImagePreview';
4
+ export { default as ImagePreview } from './Preview/ImagePreview';
7
5
  export type { ImagePreviewProps } from './Preview/ImagePreview.types';
8
- export type { ImageSource, AspectRatio, ThumbnailSize, ThumbnailBackground, ObjectFit, InitialZoom, ImageTexts, } from './shared/Image.shared.types';
6
+ export type { AspectRatio, ImageSource, ImageTexts, InitialZoom, ObjectFit, ThumbnailBackground, ThumbnailSize, } from './shared/Image.shared.types';
7
+ export { default as Thumbnail } from './Thumbnail/Thumbnail';
8
+ export type { ThumbnailProps } from './Thumbnail/Thumbnail.types';
package/dist/index.js CHANGED
@@ -1,10 +1,10 @@
1
- import { default as default2 } from "./Thumbnail/Thumbnail.js";
2
- import { default as default3 } from "./Gallery/Gallery.js";
3
- import { default as default4 } from "./Preview/ImagePreview.js";
1
+ import { default as default2 } from "./Gallery/Gallery.js";
4
2
  import { useImagePreview } from "./hooks/useImagePreview.js";
3
+ import { default as default3 } from "./Preview/ImagePreview.js";
4
+ import { default as default4 } from "./Thumbnail/Thumbnail.js";
5
5
  export {
6
- default3 as Gallery,
7
- default4 as ImagePreview,
8
- default2 as Thumbnail,
6
+ default2 as Gallery,
7
+ default3 as ImagePreview,
8
+ default4 as Thumbnail,
9
9
  useImagePreview
10
10
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-image",
3
- "version": "2.0.4",
3
+ "version": "2.0.6",
4
4
  "description": "Image UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -42,10 +42,10 @@
42
42
  ],
43
43
  "types": "dist/index.d.ts",
44
44
  "dependencies": {
45
- "@synerise/ds-icon": "^2.1.1",
46
- "@synerise/ds-toolbar": "^2.0.3",
47
- "@synerise/ds-tooltip": "^2.0.3",
48
- "@synerise/ds-utils": "^2.1.0",
45
+ "@synerise/ds-icon": "^2.1.3",
46
+ "@synerise/ds-toolbar": "^2.0.5",
47
+ "@synerise/ds-tooltip": "^2.0.5",
48
+ "@synerise/ds-utils": "^2.2.0",
49
49
  "react-zoom-pan-pinch": "^3.6.1"
50
50
  },
51
51
  "peerDependencies": {
@@ -55,5 +55,5 @@
55
55
  "styled-components": "^5.3.3",
56
56
  "vitest": "4"
57
57
  },
58
- "gitHead": "71f08fdaba8e7b80731e29a03883dc6a33f2b9db"
58
+ "gitHead": "5e795fa4fd23f6b07277edb517a84bb9b5b6d256"
59
59
  }