@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 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 * as React from 'react';
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>;
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import Button from '@synerise/ds-button';
3
3
  import * as S from './AddItem.styles';
4
4
 
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  export type AddItemProps = {
3
3
  onItemAdd: () => void;
4
4
  addItemLabel: string | React.ReactNode;
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { Props } from './AddItemWithName.types';
3
3
  declare const AddItemWithName: React.FC<Props>;
4
4
  export default AddItemWithName;
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { Input } from '@synerise/ds-input';
3
3
  import Icon, { Add3M } from '@synerise/ds-icon';
4
4
  import Button from '@synerise/ds-button';
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  export type Props = {
3
3
  onItemAdd?: (addParams: {
4
4
  name: string;
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { ItemProps } from '../Item.types';
3
3
  export type ContentItemProps = {
4
4
  changeOrderDisabled?: boolean;
@@ -1,5 +1,5 @@
1
1
  import Menu from '@synerise/ds-menu';
2
- import * as React from 'react';
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 * as React from 'react';
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
 
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { ItemProps } from '../Item.types';
3
3
  export interface FilterItemProps {
4
4
  item: ItemProps;
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { Props } from './Item.types';
3
3
  declare const Item: React.FC<Props>;
4
4
  export default Item;
package/dist/Item/Item.js CHANGED
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { ListType } from '../ManageableList.types';
3
3
  import ContentItem from './ContentItem/ContentItem';
4
4
  import SimpleItem from './SimpleItem/SimpleItem';
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { AdditionalAction } from '../ManageableList.types';
3
3
  export type Props = {
4
4
  item: ItemProps;
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { ItemActionsProps } from './ItemActions.types';
3
3
  declare const ItemActions: React.FC<ItemActionsProps>;
4
4
  export default ItemActions;
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import Icon, { EditS, DuplicateS, CloseS } from '@synerise/ds-icon';
3
3
  import Tooltip from '@synerise/ds-tooltip';
4
4
  import { theme } from '@synerise/ds-core';
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { AdditionalAction } from '../../ManageableList.types';
3
3
  import { ItemProps } from '../Item.types';
4
4
  export type ItemActionsProps = {
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { Props } from './ItemMeta.types';
3
3
  export declare const ItemMeta: React.FC<Props>;
4
4
  export default ItemMeta;
@@ -1,6 +1,6 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { UserAvatar } from '@synerise/ds-avatar';
3
- import * as moment from 'moment';
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,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { ItemLabelProps } from './ItemName.types';
3
3
  declare const ItemName: ({ item, onUpdate, editMode, searchQuery }: ItemLabelProps) => React.JSX.Element;
4
4
  export default ItemName;
@@ -1,9 +1,8 @@
1
- import * as React from 'react';
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) {
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { ItemProps } from '../Item.types';
3
3
  export type ItemLabelProps = {
4
4
  item: ItemProps;
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { AdditionalAction } from '../../ManageableList.types';
3
3
  import { ItemProps } from '../Item.types';
4
4
  export type Props = {
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { ItemProps } from './Item/Item.types';
3
3
  export declare enum ExpansionBehaviour {
4
4
  DEFAULT = "default",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-manageable-list",
3
- "version": "0.26.69",
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.10",
37
- "@synerise/ds-button": "^0.21.10",
38
- "@synerise/ds-dropdown": "^0.18.14",
39
- "@synerise/ds-icon": "^0.65.5",
40
- "@synerise/ds-inline-edit": "^0.8.10",
41
- "@synerise/ds-input": "^0.24.4",
42
- "@synerise/ds-list": "^0.6.84",
43
- "@synerise/ds-menu": "^0.19.14",
44
- "@synerise/ds-modal": "^0.17.41",
45
- "@synerise/ds-popconfirm": "^0.10.51",
46
- "@synerise/ds-result": "^0.7.4",
47
- "@synerise/ds-tags": "^0.10.7",
48
- "@synerise/ds-tooltip": "^0.14.40",
49
- "@synerise/ds-typography": "^0.15.1",
50
- "@synerise/ds-utils": "^0.29.2",
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": "6f3231e4a9e0720ffee61b748488cecd590da6e6"
63
+ "gitHead": "ae3c38b44ca0f9071cd55f7b82c182a99b5710e8"
64
64
  }