@synerise/ds-manageable-list 1.2.2 → 1.2.4
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,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.2.4](https://github.com/Synerise/synerise-design/compare/@synerise/ds-manageable-list@1.2.3...@synerise/ds-manageable-list@1.2.4) (2025-04-04)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-manageable-list
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.2.3](https://github.com/Synerise/synerise-design/compare/@synerise/ds-manageable-list@1.2.2...@synerise/ds-manageable-list@1.2.3) (2025-04-02)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-manageable-list
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [1.2.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-manageable-list@1.2.1...@synerise/ds-manageable-list@1.2.2) (2025-04-01)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @synerise/ds-manageable-list
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
var _excluded = ["onRemove", "onUpdate", "onDuplicate", "draggable", "dashed", "item", "greyBackground", "changeOrderDisabled", "texts", "hideExpander", "expanded", "onExpand", "headerSuffix", "headerPrefix", "contentWithoutPadding", "onMoveTop", "onMoveBottom", "isFirst", "isLast", "size"];
|
|
2
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (
|
|
3
|
-
function _objectWithoutPropertiesLoose(
|
|
2
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
3
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
4
4
|
import React, { useState, useEffect } from 'react';
|
|
5
5
|
import AnimateHeight from 'react-animate-height';
|
|
6
6
|
import * as S from './ContentItem.styles';
|
package/dist/ManageableList.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
2
|
import React, { useCallback, useEffect, useMemo, useState } from 'react';
|
|
3
3
|
import List from '@synerise/ds-list';
|
|
4
4
|
import { ReactSortable } from 'react-sortablejs';
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export var ExpansionBehaviour
|
|
2
|
-
(function (ExpansionBehaviour) {
|
|
1
|
+
export var ExpansionBehaviour = /*#__PURE__*/function (ExpansionBehaviour) {
|
|
3
2
|
ExpansionBehaviour["DEFAULT"] = "default";
|
|
4
3
|
ExpansionBehaviour["ACCORDION"] = "accordion";
|
|
5
4
|
ExpansionBehaviour["CUSTOM"] = "custom";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
return ExpansionBehaviour;
|
|
6
|
+
}({});
|
|
7
|
+
export var ListType = /*#__PURE__*/function (ListType) {
|
|
9
8
|
ListType["DEFAULT"] = "default";
|
|
10
9
|
ListType["CONTENT"] = "content";
|
|
11
10
|
ListType["CONTENT_LARGE"] = "content-large";
|
|
12
11
|
ListType["FILTER"] = "filter";
|
|
13
|
-
|
|
12
|
+
return ListType;
|
|
13
|
+
}({});
|
package/dist/hooks/useTexts.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
2
|
import React, { useMemo } from 'react';
|
|
3
3
|
import { FormattedMessage } from 'react-intl';
|
|
4
4
|
export var useTexts = function useTexts(defaultTexts) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-manageable-list",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"description": "ManageableList 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-button": "^1.1.
|
|
39
|
-
"@synerise/ds-dropdown": "^1.0.
|
|
40
|
-
"@synerise/ds-icon": "^1.
|
|
41
|
-
"@synerise/ds-inline-edit": "^1.0.
|
|
42
|
-
"@synerise/ds-input": "^1.0.
|
|
43
|
-
"@synerise/ds-list": "^1.0.
|
|
44
|
-
"@synerise/ds-menu": "^1.0.
|
|
45
|
-
"@synerise/ds-modal": "^1.0.
|
|
46
|
-
"@synerise/ds-popconfirm": "^1.0.
|
|
47
|
-
"@synerise/ds-result": "^1.0.
|
|
48
|
-
"@synerise/ds-tag": "^1.1.
|
|
49
|
-
"@synerise/ds-tooltip": "^1.1.
|
|
50
|
-
"@synerise/ds-typography": "^1.0.
|
|
37
|
+
"@synerise/ds-avatar": "^1.0.4",
|
|
38
|
+
"@synerise/ds-button": "^1.1.3",
|
|
39
|
+
"@synerise/ds-dropdown": "^1.0.4",
|
|
40
|
+
"@synerise/ds-icon": "^1.3.0",
|
|
41
|
+
"@synerise/ds-inline-edit": "^1.0.5",
|
|
42
|
+
"@synerise/ds-input": "^1.0.4",
|
|
43
|
+
"@synerise/ds-list": "^1.0.4",
|
|
44
|
+
"@synerise/ds-menu": "^1.0.4",
|
|
45
|
+
"@synerise/ds-modal": "^1.0.4",
|
|
46
|
+
"@synerise/ds-popconfirm": "^1.0.4",
|
|
47
|
+
"@synerise/ds-result": "^1.0.4",
|
|
48
|
+
"@synerise/ds-tag": "^1.1.3",
|
|
49
|
+
"@synerise/ds-tooltip": "^1.1.3",
|
|
50
|
+
"@synerise/ds-typography": "^1.0.4",
|
|
51
51
|
"@synerise/ds-utils": "^1.0.1",
|
|
52
52
|
"moment": "^2.30.1",
|
|
53
53
|
"react-animate-height": "^2.0.23",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"react-intl": ">=3.12.0 <= 6.8",
|
|
62
62
|
"styled-components": "^5.3.3"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "55537c6449492265a1d50c1e055ef7cc03c7935e"
|
|
65
65
|
}
|