@synerise/ds-avatar-group 1.0.24 → 1.0.26
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 +16 -0
- package/dist/AvatarGroup.styles.d.ts +2 -3
- package/dist/AvatarGroup.styles.js +2 -3
- package/dist/AvatarGroup.types.d.ts +1 -1
- package/package.json +11 -11
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.0.26](https://github.com/Synerise/synerise-design/compare/@synerise/ds-avatar-group@1.0.25...@synerise/ds-avatar-group@1.0.26) (2025-07-24)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-avatar-group
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.0.25](https://github.com/Synerise/synerise-design/compare/@synerise/ds-avatar-group@1.0.24...@synerise/ds-avatar-group@1.0.25) (2025-07-17)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-avatar-group
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [1.0.24](https://github.com/Synerise/synerise-design/compare/@synerise/ds-avatar-group@1.0.23...@synerise/ds-avatar-group@1.0.24) (2025-07-15)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @synerise/ds-avatar-group
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { type Size } from './AvatarGroup.types';
|
|
3
2
|
export declare const Group: import("styled-components").StyledComponent<"div", any, {
|
|
4
|
-
size
|
|
3
|
+
size?: Size;
|
|
5
4
|
}, never>;
|
|
6
|
-
export declare const MoreInfo: import("styled-components").StyledComponent<({ backgroundColor, backgroundColorHue, children, disabled, hasStatus, iconComponent, iconScale, tooltip, size, src, ...antdProps }: import("@synerise/ds-avatar").AvatarProps) =>
|
|
5
|
+
export declare const MoreInfo: import("styled-components").StyledComponent<({ backgroundColor, backgroundColorHue, children, disabled, hasStatus, iconComponent, iconScale, tooltip, size, src, ...antdProps }: import("@synerise/ds-avatar").AvatarProps) => React.JSX.Element, any, {
|
|
7
6
|
onClick: () => void;
|
|
8
7
|
}, never>;
|
|
@@ -3,11 +3,10 @@ import Avatar from '@synerise/ds-avatar';
|
|
|
3
3
|
var MARGINS = {
|
|
4
4
|
small: '-8px',
|
|
5
5
|
medium: '-12px',
|
|
6
|
-
large: '-16px'
|
|
7
|
-
extraLarge: '-36px'
|
|
6
|
+
large: '-16px'
|
|
8
7
|
};
|
|
9
8
|
var applyMarginLeft = function applyMarginLeft(size) {
|
|
10
|
-
return css(["margin-left:", ";"], MARGINS[
|
|
9
|
+
return css(["margin-left:", ";"], size ? MARGINS[size] : '16px');
|
|
11
10
|
};
|
|
12
11
|
export var Group = styled.div.withConfig({
|
|
13
12
|
displayName: "AvatarGroupstyles__Group",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type React from 'react';
|
|
2
2
|
import { type AvatarProps } from '@synerise/ds-avatar/dist/Avatar.types';
|
|
3
3
|
import type { BadgeProps } from '@synerise/ds-badge/dist/Badge.types';
|
|
4
|
-
export type Size = 'small' | 'medium' | 'large'
|
|
4
|
+
export type Size = 'small' | 'medium' | 'large';
|
|
5
5
|
export type DataSource = Omit<BadgeProps, 'children'> & {
|
|
6
6
|
initials: string;
|
|
7
7
|
avatarProps: AvatarProps;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-avatar-group",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.26",
|
|
4
4
|
"description": "AvatarGroup UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -34,20 +34,20 @@
|
|
|
34
34
|
],
|
|
35
35
|
"types": "dist/index.d.ts",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@synerise/ds-avatar": "^1.0.
|
|
38
|
-
"@synerise/ds-badge": "^1.0.
|
|
39
|
-
"@synerise/ds-button": "^1.4.
|
|
40
|
-
"@synerise/ds-dropdown": "^1.0.
|
|
41
|
-
"@synerise/ds-icon": "^1.6.
|
|
42
|
-
"@synerise/ds-modal": "^1.2.
|
|
43
|
-
"@synerise/ds-table": "^1.
|
|
44
|
-
"@synerise/ds-tooltip": "^1.1.
|
|
45
|
-
"@synerise/ds-utils": "^1.
|
|
37
|
+
"@synerise/ds-avatar": "^1.0.17",
|
|
38
|
+
"@synerise/ds-badge": "^1.0.17",
|
|
39
|
+
"@synerise/ds-button": "^1.4.6",
|
|
40
|
+
"@synerise/ds-dropdown": "^1.0.19",
|
|
41
|
+
"@synerise/ds-icon": "^1.6.2",
|
|
42
|
+
"@synerise/ds-modal": "^1.2.6",
|
|
43
|
+
"@synerise/ds-table": "^1.5.0",
|
|
44
|
+
"@synerise/ds-tooltip": "^1.1.15",
|
|
45
|
+
"@synerise/ds-utils": "^1.4.0"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"@synerise/ds-core": "*",
|
|
49
49
|
"react": ">=16.9.0 <= 18.3.1",
|
|
50
50
|
"styled-components": "^5.3.3"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "b35b1875727156fe9f5b3bad55aed5ca447c8c8d"
|
|
53
53
|
}
|