@atlaskit/table-tree 12.2.19 → 12.2.20

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/table-tree
2
2
 
3
+ ## 12.2.20
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 12.2.19
4
10
 
5
11
  ### Patch Changes
@@ -21,5 +21,5 @@ export interface CellProps {
21
21
  */
22
22
  children?: ReactNode;
23
23
  }
24
- declare const Cell: (props: CellProps & import("..").CellWithColumnWidthProps) => React.JSX.Element;
24
+ declare const Cell: (props: CellProps & import('..').CellWithColumnWidthProps) => React.JSX.Element;
25
25
  export default Cell;
@@ -23,5 +23,5 @@ export type HeaderProps = {
23
23
  id?: string;
24
24
  role?: string;
25
25
  };
26
- declare const Header: (props: HeaderProps & import("..").CellWithColumnWidthProps) => React.JSX.Element;
26
+ declare const Header: (props: HeaderProps & import('..').CellWithColumnWidthProps) => React.JSX.Element;
27
27
  export default Header;
@@ -4,7 +4,7 @@ export type ColumnWidth = string | number;
4
4
  * Context provider which maintains the column widths and access methods for use in descendent table cells
5
5
  * Enables composed table-tree implementations to e.g. set width on header cells only
6
6
  */
7
- export declare const TableTreeContext: import("react").Context<{
7
+ export declare const TableTreeContext: import('react').Context<{
8
8
  setColumnWidth: (columnIndex: number, width: ColumnWidth) => void;
9
9
  getColumnWidth: (columnIndex: number) => ColumnWidth | null;
10
10
  }>;
@@ -21,5 +21,5 @@ export interface CellProps {
21
21
  */
22
22
  children?: ReactNode;
23
23
  }
24
- declare const Cell: (props: CellProps & import("..").CellWithColumnWidthProps) => React.JSX.Element;
24
+ declare const Cell: (props: CellProps & import('..').CellWithColumnWidthProps) => React.JSX.Element;
25
25
  export default Cell;
@@ -23,5 +23,5 @@ export type HeaderProps = {
23
23
  id?: string;
24
24
  role?: string;
25
25
  };
26
- declare const Header: (props: HeaderProps & import("..").CellWithColumnWidthProps) => React.JSX.Element;
26
+ declare const Header: (props: HeaderProps & import('..').CellWithColumnWidthProps) => React.JSX.Element;
27
27
  export default Header;
@@ -4,7 +4,7 @@ export type ColumnWidth = string | number;
4
4
  * Context provider which maintains the column widths and access methods for use in descendent table cells
5
5
  * Enables composed table-tree implementations to e.g. set width on header cells only
6
6
  */
7
- export declare const TableTreeContext: import("react").Context<{
7
+ export declare const TableTreeContext: import('react').Context<{
8
8
  setColumnWidth: (columnIndex: number, width: ColumnWidth) => void;
9
9
  getColumnWidth: (columnIndex: number) => ColumnWidth | null;
10
10
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/table-tree",
3
- "version": "12.2.19",
3
+ "version": "12.2.20",
4
4
  "description": "A table tree is an expandable table for showing nested hierarchies of information.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -27,7 +27,7 @@
27
27
  "@atlaskit/analytics-next": "^11.1.0",
28
28
  "@atlaskit/button": "^23.9.0",
29
29
  "@atlaskit/ds-lib": "^5.3.0",
30
- "@atlaskit/icon": "^31.0.0",
30
+ "@atlaskit/icon": "^32.0.0",
31
31
  "@atlaskit/spinner": "^19.0.0",
32
32
  "@atlaskit/theme": "^21.0.0",
33
33
  "@atlaskit/tokens": "^11.0.0",
@@ -42,7 +42,7 @@
42
42
  "@af/accessibility-testing": "workspace:^",
43
43
  "@af/integration-testing": "workspace:^",
44
44
  "@af/visual-regression": "workspace:^",
45
- "@atlaskit/docs": "^11.3.0",
45
+ "@atlaskit/docs": "^11.4.0",
46
46
  "@atlaskit/empty-state": "^10.1.0",
47
47
  "@atlaskit/form": "^15.3.0",
48
48
  "@atlaskit/link": "^3.3.0",