@atlaskit/table 0.6.4 → 0.6.6

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,19 @@
1
1
  # @atlaskit/table
2
2
 
3
+ ## 0.6.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 0.6.5
10
+
11
+ ### Patch Changes
12
+
13
+ - [#118748](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/118748)
14
+ [`9bd29fa60203d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9bd29fa60203d) -
15
+ Remove remnants of `extract-react-types`.
16
+
3
17
  ## 0.6.4
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/table",
3
- "version": "0.6.4",
3
+ "version": "0.6.6",
4
4
  "description": "A table is used to display data.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -41,12 +41,12 @@
41
41
  "./primitives": "./src/ui/index.tsx"
42
42
  },
43
43
  "dependencies": {
44
- "@atlaskit/button": "^18.0.0",
44
+ "@atlaskit/button": "^18.3.0",
45
45
  "@atlaskit/checkbox": "^13.5.0",
46
46
  "@atlaskit/ds-lib": "^2.3.0",
47
47
  "@atlaskit/focus-ring": "^1.5.0",
48
- "@atlaskit/icon": "^22.5.0",
49
- "@atlaskit/primitives": "^10.0.0",
48
+ "@atlaskit/icon": "^22.6.0",
49
+ "@atlaskit/primitives": "^11.0.0",
50
50
  "@atlaskit/tokens": "^1.53.0",
51
51
  "@atlaskit/tooltip": "^18.5.0",
52
52
  "@atlaskit/visually-hidden": "^1.4.0",
@@ -1,3 +0,0 @@
1
- import { type BaseCellProps } from '../src/ui/base-cell';
2
-
3
- export default function Cell(props: BaseCellProps) {}
@@ -1,8 +0,0 @@
1
- import { type ReactNode } from 'react';
2
-
3
- interface AKTableRowProps {
4
- testId?: string;
5
- children?: ReactNode;
6
- }
7
-
8
- export default function Row(props: AKTableRowProps) {}
@@ -1,8 +0,0 @@
1
- import { type ReactNode } from 'react';
2
-
3
- interface AKTableTableProps {
4
- testId?: string;
5
- children?: ReactNode;
6
- }
7
-
8
- export default function Table(props: AKTableTableProps) {}