@synerise/ds-manageable-list 1.4.4 → 1.5.0
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
|
+
# [1.5.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-manageable-list@1.4.5...@synerise/ds-manageable-list@1.5.0) (2025-10-10)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **list-item:** submenu and header ([71fa4bf](https://github.com/Synerise/synerise-design/commit/71fa4bfadd5fdb52d61dfe8fe87a9e47567e5d16))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [1.4.5](https://github.com/Synerise/synerise-design/compare/@synerise/ds-manageable-list@1.4.4...@synerise/ds-manageable-list@1.4.5) (2025-10-08)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @synerise/ds-manageable-list
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [1.4.4](https://github.com/Synerise/synerise-design/compare/@synerise/ds-manageable-list@1.4.3...@synerise/ds-manageable-list@1.4.4) (2025-10-03)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @synerise/ds-manageable-list
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import Button from '@synerise/ds-button';
|
|
3
|
-
import Divider from '@synerise/ds-divider';
|
|
4
3
|
import Icon, { Add3S } from '@synerise/ds-icon';
|
|
5
4
|
import * as S from './AddBlankItem.styles';
|
|
6
5
|
var AddBlankItem = function AddBlankItem(_ref) {
|
|
@@ -9,7 +8,7 @@ var AddBlankItem = function AddBlankItem(_ref) {
|
|
|
9
8
|
addItemLabel = _ref.addItemLabel;
|
|
10
9
|
return /*#__PURE__*/React.createElement(S.AddContentButtonWrapper, {
|
|
11
10
|
"data-testid": "add-item-button"
|
|
12
|
-
}, /*#__PURE__*/React.createElement(
|
|
11
|
+
}, /*#__PURE__*/React.createElement(S.StyledDivider, {
|
|
13
12
|
dashed: true,
|
|
14
13
|
marginTop: 8
|
|
15
14
|
}), /*#__PURE__*/React.createElement(Button, {
|
|
@@ -1 +1,2 @@
|
|
|
1
1
|
export declare const AddContentButtonWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
|
+
export declare const StyledDivider: import("styled-components").StyledComponent<(props: import("@synerise/ds-divider").DividerProps) => React.JSX.Element, any, {}, never>;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import styled from 'styled-components';
|
|
2
|
+
import Divider from '@synerise/ds-divider';
|
|
2
3
|
export var AddContentButtonWrapper = styled.div.withConfig({
|
|
3
4
|
displayName: "AddBlankItemstyles__AddContentButtonWrapper",
|
|
4
5
|
componentId: "sc-1cqa1jm-0"
|
|
5
|
-
})(["display:flex;flex-direction:column;gap:16px;align-items:flex-start;"]);
|
|
6
|
+
})(["display:flex;flex-direction:column;gap:16px;align-items:flex-start;"]);
|
|
7
|
+
export var StyledDivider = styled(Divider).withConfig({
|
|
8
|
+
displayName: "AddBlankItemstyles__StyledDivider",
|
|
9
|
+
componentId: "sc-1cqa1jm-1"
|
|
10
|
+
})(["width:100%;"]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-manageable-list",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "ManageableList UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -35,23 +35,23 @@
|
|
|
35
35
|
],
|
|
36
36
|
"types": "dist/index.d.ts",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@synerise/ds-avatar": "^1.0.
|
|
39
|
-
"@synerise/ds-button": "^1.4.
|
|
40
|
-
"@synerise/ds-divider": "^1.
|
|
41
|
-
"@synerise/ds-dropdown": "^1.0.
|
|
42
|
-
"@synerise/ds-icon": "^1.7.
|
|
43
|
-
"@synerise/ds-inline-edit": "^1.0.
|
|
44
|
-
"@synerise/ds-input": "^1.
|
|
45
|
-
"@synerise/ds-list": "^1.1.
|
|
46
|
-
"@synerise/ds-menu": "^1.0
|
|
47
|
-
"@synerise/ds-modal": "^1.2.
|
|
48
|
-
"@synerise/ds-popconfirm": "^1.0.
|
|
49
|
-
"@synerise/ds-result": "^1.0.
|
|
50
|
-
"@synerise/ds-sortable": "^1.3.
|
|
51
|
-
"@synerise/ds-tag": "^1.3.
|
|
52
|
-
"@synerise/ds-tooltip": "^1.2.
|
|
53
|
-
"@synerise/ds-typography": "^1.0.
|
|
54
|
-
"@synerise/ds-utils": "^1.
|
|
38
|
+
"@synerise/ds-avatar": "^1.0.25",
|
|
39
|
+
"@synerise/ds-button": "^1.4.14",
|
|
40
|
+
"@synerise/ds-divider": "^1.2.0",
|
|
41
|
+
"@synerise/ds-dropdown": "^1.0.31",
|
|
42
|
+
"@synerise/ds-icon": "^1.7.3",
|
|
43
|
+
"@synerise/ds-inline-edit": "^1.0.35",
|
|
44
|
+
"@synerise/ds-input": "^1.4.0",
|
|
45
|
+
"@synerise/ds-list": "^1.1.4",
|
|
46
|
+
"@synerise/ds-menu": "^1.1.0",
|
|
47
|
+
"@synerise/ds-modal": "^1.2.14",
|
|
48
|
+
"@synerise/ds-popconfirm": "^1.0.26",
|
|
49
|
+
"@synerise/ds-result": "^1.0.27",
|
|
50
|
+
"@synerise/ds-sortable": "^1.3.6",
|
|
51
|
+
"@synerise/ds-tag": "^1.3.2",
|
|
52
|
+
"@synerise/ds-tooltip": "^1.2.1",
|
|
53
|
+
"@synerise/ds-typography": "^1.0.22",
|
|
54
|
+
"@synerise/ds-utils": "^1.5.0",
|
|
55
55
|
"moment": "^2.30.1",
|
|
56
56
|
"react-animate-height": "^2.0.23"
|
|
57
57
|
},
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"react-intl": ">=3.12.0 <= 6.8",
|
|
63
63
|
"styled-components": "^5.3.3"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "4e09fc37fa21ff2e27655e7bb305b136db0ca199"
|
|
66
66
|
}
|