@synerise/ds-avatar-group 1.1.37 → 1.1.38

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,12 @@
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.38](https://github.com/Synerise/synerise-design/compare/@synerise/ds-avatar-group@1.1.37...@synerise/ds-avatar-group@1.1.38) (2026-05-04)
7
+
8
+ ### Bug Fixes
9
+
10
+ - add exports field to all component packages for correct ESM detection ([6eccfde](https://github.com/Synerise/synerise-design/commit/6eccfde8f2dd73c59860793231fbd7bcd61813b4))
11
+
6
12
  ## [1.1.37](https://github.com/Synerise/synerise-design/compare/@synerise/ds-avatar-group@1.1.36...@synerise/ds-avatar-group@1.1.37) (2026-04-29)
7
13
 
8
14
  **Note:** Version bump only for package @synerise/ds-avatar-group
@@ -2,7 +2,7 @@ import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import React from "react";
3
3
  import Avatar from "@synerise/ds-avatar";
4
4
  import Badge from "@synerise/ds-badge";
5
- import Tooltip from "@synerise/ds-tooltip/dist/Tooltip";
5
+ import Tooltip from "@synerise/ds-tooltip";
6
6
  import { MoreInfo, Group } from "./AvatarGroup.styles.js";
7
7
  import GroupModal from "./Modal/GroupModal.js";
8
8
  const AvatarGroup = ({
@@ -1,6 +1,6 @@
1
1
  import { default as React } from 'react';
2
- import { AvatarProps } from '@synerise/ds-avatar/dist/Avatar.types';
3
- import { BadgeProps } from '@synerise/ds-badge/dist/Badge.types';
2
+ import { AvatarProps } from '@synerise/ds-avatar';
3
+ import { BadgeProps } from '@synerise/ds-badge';
4
4
  export type Size = 'small' | 'medium' | 'large';
5
5
  export type DataSource = Omit<BadgeProps, 'children'> & {
6
6
  initials: string;
package/package.json CHANGED
@@ -1,10 +1,19 @@
1
1
  {
2
2
  "name": "@synerise/ds-avatar-group",
3
- "version": "1.1.37",
3
+ "version": "1.1.38",
4
4
  "description": "AvatarGroup UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
7
7
  "main": "dist/index.js",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "default": "./dist/index.js"
13
+ },
14
+ "./dist/*.js": "./dist/*.js",
15
+ "./dist/*": "./dist/*.js"
16
+ },
8
17
  "files": [
9
18
  "/dist",
10
19
  "CHANGELOG.md",
@@ -32,14 +41,14 @@
32
41
  ],
33
42
  "types": "dist/index.d.ts",
34
43
  "dependencies": {
35
- "@synerise/ds-avatar": "^1.3.12",
36
- "@synerise/ds-badge": "^1.0.51",
37
- "@synerise/ds-button": "^1.5.25",
38
- "@synerise/ds-dropdown": "^1.3.10",
39
- "@synerise/ds-icon": "^1.17.2",
40
- "@synerise/ds-modal": "^1.4.9",
41
- "@synerise/ds-table": "^1.10.7",
42
- "@synerise/ds-tooltip": "^1.4.17"
44
+ "@synerise/ds-avatar": "^1.3.13",
45
+ "@synerise/ds-badge": "^1.0.52",
46
+ "@synerise/ds-button": "^1.5.26",
47
+ "@synerise/ds-dropdown": "^1.3.11",
48
+ "@synerise/ds-icon": "^1.17.3",
49
+ "@synerise/ds-modal": "^1.4.10",
50
+ "@synerise/ds-table": "^1.10.8",
51
+ "@synerise/ds-tooltip": "^1.4.18"
43
52
  },
44
53
  "peerDependencies": {
45
54
  "@synerise/ds-core": "*",
@@ -47,5 +56,5 @@
47
56
  "styled-components": "^5.3.3",
48
57
  "vitest": "4"
49
58
  },
50
- "gitHead": "82150f1e50f5a3e19682c68e4eec9ae441950327"
59
+ "gitHead": "c5eee882509cbeb4544cb45939620881b829d4d9"
51
60
  }