@synerise/ds-avatar-group 0.6.100 → 0.6.102
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.types.d.ts +4 -4
- package/dist/Modal/GroupModal.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
|
+
## [0.6.102](https://github.com/Synerise/synerise-design/compare/@synerise/ds-avatar-group@0.6.101...@synerise/ds-avatar-group@0.6.102) (2023-10-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-avatar-group
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.6.101](https://github.com/Synerise/synerise-design/compare/@synerise/ds-avatar-group@0.6.100...@synerise/ds-avatar-group@0.6.101) (2023-10-02)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-avatar-group
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [0.6.100](https://github.com/Synerise/synerise-design/compare/@synerise/ds-avatar-group@0.6.99...@synerise/ds-avatar-group@0.6.100) (2023-09-26)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @synerise/ds-avatar-group
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { BadgeProps } from '@synerise/ds-badge/dist/Badge.types';
|
|
2
2
|
import { AvatarProps } from '@synerise/ds-avatar/dist/Avatar.types';
|
|
3
3
|
import * as React from 'react';
|
|
4
|
-
export
|
|
5
|
-
export
|
|
4
|
+
export type Size = 'small' | 'medium' | 'large' | undefined;
|
|
5
|
+
export type DataSource = BadgeProps & {
|
|
6
6
|
initials: string;
|
|
7
7
|
avatarProps: AvatarProps;
|
|
8
8
|
firstname: string;
|
|
@@ -10,7 +10,7 @@ export declare type DataSource = BadgeProps & {
|
|
|
10
10
|
email: string;
|
|
11
11
|
id: React.ReactText;
|
|
12
12
|
};
|
|
13
|
-
export
|
|
13
|
+
export type GroupModalSettings = {
|
|
14
14
|
title: string | React.ReactNode;
|
|
15
15
|
renderRowMenu: (record: DataSource) => JSX.Element;
|
|
16
16
|
listTitle: string | React.ReactNode;
|
|
@@ -20,7 +20,7 @@ export declare type GroupModalSettings = {
|
|
|
20
20
|
okText: string | React.ReactNode;
|
|
21
21
|
cancelText: string | React.ReactNode;
|
|
22
22
|
};
|
|
23
|
-
export
|
|
23
|
+
export type AvatarGroupProps = {
|
|
24
24
|
numberOfVisibleUsers: number;
|
|
25
25
|
hasStatus?: boolean;
|
|
26
26
|
size?: Size;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-avatar-group",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.102",
|
|
4
4
|
"description": "AvatarGroup UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
],
|
|
33
33
|
"types": "dist/index.d.ts",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@synerise/ds-avatar": "^0.15.
|
|
36
|
-
"@synerise/ds-badge": "^0.6.
|
|
37
|
-
"@synerise/ds-button": "^0.18.
|
|
38
|
-
"@synerise/ds-dropdown": "^0.17.
|
|
39
|
-
"@synerise/ds-icon": "^0.58.
|
|
40
|
-
"@synerise/ds-modal": "^0.17.
|
|
41
|
-
"@synerise/ds-table": "^0.46.
|
|
42
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
35
|
+
"@synerise/ds-avatar": "^0.15.7",
|
|
36
|
+
"@synerise/ds-badge": "^0.6.38",
|
|
37
|
+
"@synerise/ds-button": "^0.18.3",
|
|
38
|
+
"@synerise/ds-dropdown": "^0.17.82",
|
|
39
|
+
"@synerise/ds-icon": "^0.58.3",
|
|
40
|
+
"@synerise/ds-modal": "^0.17.6",
|
|
41
|
+
"@synerise/ds-table": "^0.46.36",
|
|
42
|
+
"@synerise/ds-tooltip": "^0.14.5"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@synerise/ds-core": "*",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"styled-components": "5.0.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@synerise/ds-utils": "^0.24.
|
|
50
|
+
"@synerise/ds-utils": "^0.24.17",
|
|
51
51
|
"@testing-library/jest-dom": "5.1.1"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "d944339a738211d8f74b27360481aafd7ef51ddd"
|
|
54
54
|
}
|