@synerise/ds-manageable-list 0.26.69 → 0.26.70
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 +8 -0
- package/dist/AddItem/AddItem.d.ts +1 -1
- package/dist/AddItem/AddItem.js +1 -1
- package/dist/AddItem/AddItem.types.d.ts +1 -1
- package/dist/AddItemWithName/AddItemWithName.d.ts +1 -1
- package/dist/AddItemWithName/AddItemWithName.js +1 -1
- package/dist/AddItemWithName/AddItemWithName.types.d.ts +1 -1
- package/dist/Item/ContentItem/ContentItem.types.d.ts +1 -1
- package/dist/Item/FilterItem/FilterItem.styles.d.ts +1 -1
- package/dist/Item/FilterItem/FilterItem.styles.js +1 -1
- package/dist/Item/FilterItem/FilterItem.types.d.ts +1 -1
- package/dist/Item/Item.d.ts +1 -1
- package/dist/Item/Item.js +1 -1
- package/dist/Item/Item.types.d.ts +1 -1
- package/dist/Item/ItemActions/ItemActions.d.ts +1 -1
- package/dist/Item/ItemActions/ItemActions.js +1 -1
- package/dist/Item/ItemActions/ItemActions.types.d.ts +1 -1
- package/dist/Item/ItemMeta/ItemMeta.d.ts +1 -1
- package/dist/Item/ItemMeta/ItemMeta.js +2 -2
- package/dist/Item/ItemName/ItemName.d.ts +1 -1
- package/dist/Item/ItemName/ItemName.js +1 -2
- package/dist/Item/ItemName/ItemName.types.d.ts +1 -1
- package/dist/Item/SimpleItem/SimpleItem.types.d.ts +1 -1
- package/dist/ManageableList.types.d.ts +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.26.70](https://github.com/Synerise/synerise-design/compare/@synerise/ds-manageable-list@0.26.69...@synerise/ds-manageable-list@0.26.70) (2024-09-17)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-manageable-list
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.26.69](https://github.com/Synerise/synerise-design/compare/@synerise/ds-manageable-list@0.26.68...@synerise/ds-manageable-list@0.26.69) (2024-09-13)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @synerise/ds-manageable-list
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { AddItemProps } from './AddItem.types';
|
|
3
3
|
declare const AddItem: (({ disabled, onItemAdd, addItemLabel }: AddItemProps) => React.JSX.Element) & {
|
|
4
4
|
AddContentButtonWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
package/dist/AddItem/AddItem.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Menu from '@synerise/ds-menu';
|
|
2
|
-
import
|
|
2
|
+
import React from 'react';
|
|
3
3
|
export declare const SelectFilterItem: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
4
|
export declare const MenuItem: import("styled-components").StyledComponent<"div", any, {
|
|
5
5
|
danger?: boolean | undefined;
|
|
@@ -5,7 +5,7 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
|
5
5
|
import styled from 'styled-components';
|
|
6
6
|
import { IconContainer } from '@synerise/ds-icon';
|
|
7
7
|
import Menu from '@synerise/ds-menu';
|
|
8
|
-
import
|
|
8
|
+
import React from 'react';
|
|
9
9
|
import { ItemLabel } from '../SimpleItem/SimpleItem.styles';
|
|
10
10
|
import { ItemMeta } from '../ItemMeta/ItemMeta.styles'; // eslint-disable-next-line import/prefer-default-export
|
|
11
11
|
|
package/dist/Item/Item.d.ts
CHANGED
package/dist/Item/Item.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { UserAvatar } from '@synerise/ds-avatar';
|
|
3
|
-
import
|
|
3
|
+
import moment from 'moment';
|
|
4
4
|
import * as S from './ItemMeta.styles';
|
|
5
5
|
export var ItemMeta = function ItemMeta(_ref) {
|
|
6
6
|
var user = _ref.user,
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React, { useCallback, useEffect, useMemo, useState } from 'react';
|
|
2
2
|
import Tooltip from '@synerise/ds-tooltip';
|
|
3
3
|
import InlineEdit from '@synerise/ds-inline-edit/dist/InlineEdit';
|
|
4
4
|
import { InfoFillS } from '@synerise/ds-icon';
|
|
5
5
|
import { escapeRegEx } from '@synerise/ds-utils';
|
|
6
|
-
import { useCallback, useEffect, useMemo, useState } from 'react';
|
|
7
6
|
import * as S from '../SimpleItem/SimpleItem.styles';
|
|
8
7
|
|
|
9
8
|
var ItemName = function ItemName(_ref) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-manageable-list",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.70",
|
|
4
4
|
"description": "ManageableList UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -33,21 +33,21 @@
|
|
|
33
33
|
],
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@synerise/ds-avatar": "^0.17.
|
|
37
|
-
"@synerise/ds-button": "^0.21.
|
|
38
|
-
"@synerise/ds-dropdown": "^0.18.
|
|
39
|
-
"@synerise/ds-icon": "^0.65.
|
|
40
|
-
"@synerise/ds-inline-edit": "^0.8.
|
|
41
|
-
"@synerise/ds-input": "^0.24.
|
|
42
|
-
"@synerise/ds-list": "^0.6.
|
|
43
|
-
"@synerise/ds-menu": "^0.19.
|
|
44
|
-
"@synerise/ds-modal": "^0.17.
|
|
45
|
-
"@synerise/ds-popconfirm": "^0.10.
|
|
46
|
-
"@synerise/ds-result": "^0.7.
|
|
47
|
-
"@synerise/ds-tags": "^0.10.
|
|
48
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
49
|
-
"@synerise/ds-typography": "^0.15.
|
|
50
|
-
"@synerise/ds-utils": "^0.29.
|
|
36
|
+
"@synerise/ds-avatar": "^0.17.11",
|
|
37
|
+
"@synerise/ds-button": "^0.21.11",
|
|
38
|
+
"@synerise/ds-dropdown": "^0.18.15",
|
|
39
|
+
"@synerise/ds-icon": "^0.65.6",
|
|
40
|
+
"@synerise/ds-inline-edit": "^0.8.11",
|
|
41
|
+
"@synerise/ds-input": "^0.24.5",
|
|
42
|
+
"@synerise/ds-list": "^0.6.85",
|
|
43
|
+
"@synerise/ds-menu": "^0.19.15",
|
|
44
|
+
"@synerise/ds-modal": "^0.17.42",
|
|
45
|
+
"@synerise/ds-popconfirm": "^0.10.52",
|
|
46
|
+
"@synerise/ds-result": "^0.7.5",
|
|
47
|
+
"@synerise/ds-tags": "^0.10.8",
|
|
48
|
+
"@synerise/ds-tooltip": "^0.14.41",
|
|
49
|
+
"@synerise/ds-typography": "^0.15.2",
|
|
50
|
+
"@synerise/ds-utils": "^0.29.3",
|
|
51
51
|
"moment": "^2.30.1",
|
|
52
52
|
"react-animate-height": "^2.0.23",
|
|
53
53
|
"react-intl": "3.12.0",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"react": ">=16.9.0 <= 17.0.2",
|
|
61
61
|
"styled-components": "^5.0.1"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "ae3c38b44ca0f9071cd55f7b82c182a99b5710e8"
|
|
64
64
|
}
|