@synerise/ds-inline-edit 0.6.80 → 0.6.81

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.6.81](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.6.80...@synerise/ds-inline-edit@0.6.81) (2023-10-02)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-inline-edit
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.6.80](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.6.79...@synerise/ds-inline-edit@0.6.80) (2023-09-26)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-inline-edit
@@ -47,8 +47,7 @@ var InlineEdit = function InlineEdit(_ref) {
47
47
  input.onChange(e);
48
48
  }, [input]);
49
49
  var handleBlur = React.useCallback(function (e) {
50
- input.onBlur && input.onBlur(e); // eslint-disable-next-line @typescript-eslint/ban-ts-ignore
51
- // @ts-ignore
50
+ input.onBlur && input.onBlur(e); // @ts-ignore
52
51
 
53
52
  inputRef.current.input && inputRef.current.input.scrollTo({
54
53
  left: 0
@@ -1,5 +1,5 @@
1
1
  import { ThemeProps } from '@synerise/ds-core';
2
- declare type InPlaceEditableInputContainerProps = {
2
+ type InPlaceEditableInputContainerProps = {
3
3
  size: 'large' | 'small' | 'normal';
4
4
  disabled?: boolean;
5
5
  error?: boolean;
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- export declare type InputProps = {
2
+ export type InputProps = {
3
3
  name?: string;
4
4
  value: string | number;
5
5
  disabled?: boolean;
@@ -1,5 +1,5 @@
1
1
  import { ThemeProps } from '@synerise/ds-core';
2
- declare type InPlaceEditableInputContainerProps = {
2
+ type InPlaceEditableInputContainerProps = {
3
3
  size: 'small' | 'normal';
4
4
  disabled?: boolean;
5
5
  error?: boolean;
@@ -48,8 +48,7 @@ var SelectDropdown = function SelectDropdown(_ref) {
48
48
  visibleRows: rowCount,
49
49
  listProps: {
50
50
  scrollTop: scrollTop
51
- } // eslint-disable-next-line @typescript-eslint/ban-ts-ignore
52
- // @ts-ignore
51
+ } // @ts-ignore
53
52
  ,
54
53
  width: "100%"
55
54
  }))));
@@ -1,8 +1,9 @@
1
1
  /// <reference types="react" />
2
2
  import Menu from '@synerise/ds-menu';
3
- import { ScrollbarProps } from '@synerise/ds-scrollbar/dist/Scrollbar.types';
4
3
  export declare const DropdownWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
5
4
  export declare const DSMenu: import("styled-components").StyledComponent<typeof Menu, any, {}, never>;
6
5
  export declare const StyledScrollbar: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@synerise/ds-scrollbar").ScrollbarAdditionalProps & {
7
6
  children: import("react").ReactNode;
8
- } & import("react").RefAttributes<HTMLElement>>, any, ScrollbarProps, never>;
7
+ } & import("react").RefAttributes<HTMLElement>>, any, import("@synerise/ds-scrollbar").ScrollbarAdditionalProps & {
8
+ children: import("react").ReactNode;
9
+ }, never>;
@@ -1,6 +1,6 @@
1
- export declare type WatcherParent = HTMLElement & {
1
+ export type WatcherParent = HTMLElement & {
2
2
  sizeWatcher?: HTMLIFrameElement;
3
3
  };
4
- export declare type ResizeCallback = (width: number, height: number) => void;
4
+ export type ResizeCallback = (width: number, height: number) => void;
5
5
  declare const _default: (element: WatcherParent, resizeCallback: ResizeCallback, width?: boolean, height?: boolean) => number[] | false;
6
6
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-inline-edit",
3
- "version": "0.6.80",
3
+ "version": "0.6.81",
4
4
  "description": "InlineEdit UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -32,13 +32,13 @@
32
32
  ],
33
33
  "types": "dist/index.d.ts",
34
34
  "dependencies": {
35
- "@synerise/ds-dropdown": "^0.17.80",
36
- "@synerise/ds-icon": "^0.58.2",
37
- "@synerise/ds-menu": "^0.17.19",
38
- "@synerise/ds-scrollbar": "^0.6.7",
39
- "@synerise/ds-search": "^0.8.65",
40
- "@synerise/ds-tooltip": "^0.14.4",
41
- "@synerise/ds-typography": "^0.13.0",
35
+ "@synerise/ds-dropdown": "^0.17.81",
36
+ "@synerise/ds-icon": "^0.58.3",
37
+ "@synerise/ds-menu": "^0.17.20",
38
+ "@synerise/ds-scrollbar": "^0.6.8",
39
+ "@synerise/ds-search": "^0.8.66",
40
+ "@synerise/ds-tooltip": "^0.14.5",
41
+ "@synerise/ds-typography": "^0.13.1",
42
42
  "react-input-autosize": "^2.2.2"
43
43
  },
44
44
  "peerDependencies": {
@@ -47,10 +47,10 @@
47
47
  "styled-components": "5.0.1"
48
48
  },
49
49
  "devDependencies": {
50
- "@synerise/ds-utils": "^0.24.16",
50
+ "@synerise/ds-utils": "^0.24.17",
51
51
  "@testing-library/jest-dom": "5.1.1",
52
52
  "@testing-library/react": "10.0.1",
53
- "@types/react-input-autosize": "2.0.2"
53
+ "@types/react-input-autosize": "2.2.1"
54
54
  },
55
- "gitHead": "f1f520c4c5ef9f90bacb5d5e0b2e778ceb8fdf79"
55
+ "gitHead": "1c1adf344f447e404a1d6320ad1d3f8486f29f67"
56
56
  }