@atlaskit/pragmatic-drag-and-drop-react-accessibility 2.0.7 → 2.0.8

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
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/pragmatic-drag-and-drop-react-accessibility
2
2
 
3
+ ## 2.0.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 2.0.7
4
10
 
5
11
  ### Patch Changes
@@ -2,7 +2,6 @@
2
2
  * @jsxRuntime classic
3
3
  * @jsx jsx
4
4
  */
5
- /// <reference types="react" />
6
5
  import type { DragHandleButtonProps } from './types';
7
6
  export type DragHandleButtonAppearance = 'default' | 'subtle' | 'selected';
8
7
  /**
@@ -6,8 +6,8 @@ import React from 'react';
6
6
  * cancels `mouseDown` events, which prevents dragging.
7
7
  */
8
8
  export declare const DragHandleButtonSmall: React.ForwardRefExoticComponent<React.ButtonHTMLAttributes<HTMLButtonElement> & {
9
- appearance?: import("./types").DragHandleButtonAppearance | undefined;
9
+ appearance?: import("./types").DragHandleButtonAppearance;
10
10
  label: string;
11
- isSelected?: boolean | undefined;
12
- testId?: string | undefined;
11
+ isSelected?: boolean;
12
+ testId?: string;
13
13
  } & React.RefAttributes<HTMLButtonElement>>;
@@ -6,8 +6,8 @@ import React from 'react';
6
6
  * cancels `mouseDown` events, which prevents dragging.
7
7
  */
8
8
  export declare const DragHandleButton: React.ForwardRefExoticComponent<React.ButtonHTMLAttributes<HTMLButtonElement> & {
9
- appearance?: import("./types").DragHandleButtonAppearance | undefined;
9
+ appearance?: import("./types").DragHandleButtonAppearance;
10
10
  label: string;
11
- isSelected?: boolean | undefined;
12
- testId?: string | undefined;
11
+ isSelected?: boolean;
12
+ testId?: string;
13
13
  } & React.RefAttributes<HTMLButtonElement>>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  /**
3
2
  * @jsxRuntime classic
4
3
  * @jsx jsx
@@ -6,8 +6,8 @@ import React from 'react';
6
6
  * cancels `mouseDown` events, which prevents dragging.
7
7
  */
8
8
  export declare const DragHandleButtonSmall: React.ForwardRefExoticComponent<React.ButtonHTMLAttributes<HTMLButtonElement> & {
9
- appearance?: import("./types").DragHandleButtonAppearance | undefined;
9
+ appearance?: import("./types").DragHandleButtonAppearance;
10
10
  label: string;
11
- isSelected?: boolean | undefined;
12
- testId?: string | undefined;
11
+ isSelected?: boolean;
12
+ testId?: string;
13
13
  } & React.RefAttributes<HTMLButtonElement>>;
@@ -6,8 +6,8 @@ import React from 'react';
6
6
  * cancels `mouseDown` events, which prevents dragging.
7
7
  */
8
8
  export declare const DragHandleButton: React.ForwardRefExoticComponent<React.ButtonHTMLAttributes<HTMLButtonElement> & {
9
- appearance?: import("./types").DragHandleButtonAppearance | undefined;
9
+ appearance?: import("./types").DragHandleButtonAppearance;
10
10
  label: string;
11
- isSelected?: boolean | undefined;
12
- testId?: string | undefined;
11
+ isSelected?: boolean;
12
+ testId?: string;
13
13
  } & React.RefAttributes<HTMLButtonElement>>;
@@ -8,7 +8,7 @@
8
8
  ],
9
9
  "types": "../dist/types/drag-handle-button.d.ts",
10
10
  "typesVersions": {
11
- ">=4.5 <5.4": {
11
+ ">=4.5 <5.9": {
12
12
  "*": [
13
13
  "../dist/types-ts4.5/drag-handle-button.d.ts"
14
14
  ]
@@ -8,7 +8,7 @@
8
8
  ],
9
9
  "types": "../dist/types/drag-handle-button-small.d.ts",
10
10
  "typesVersions": {
11
- ">=4.5 <5.4": {
11
+ ">=4.5 <5.9": {
12
12
  "*": [
13
13
  "../dist/types-ts4.5/drag-handle-button-small.d.ts"
14
14
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/pragmatic-drag-and-drop-react-accessibility",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "description": "An optional package for Pragmatic drag and drop containing react components to assist with setting up accessible experiences",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@atlaskit/focus-ring": "^3.0.0",
41
- "@atlaskit/icon": "^27.9.0",
41
+ "@atlaskit/icon": "^28.0.0",
42
42
  "@atlaskit/platform-feature-flags": "^1.1.0",
43
43
  "@atlaskit/primitives": "^14.11.0",
44
44
  "@atlaskit/tokens": "^6.0.0",
@@ -55,7 +55,6 @@
55
55
  "@atlassian/ssr-tests": "^0.2.0",
56
56
  "@testing-library/react": "^13.4.0",
57
57
  "react-dom": "^18.2.0",
58
- "typescript": "~5.4.2",
59
58
  "wait-for-expect": "^1.2.0"
60
59
  },
61
60
  "techstack": {