@atlaskit/table-tree 12.2.22 → 12.2.23

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.23
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 12.2.22
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/table-tree",
3
- "version": "12.2.22",
3
+ "version": "12.2.23",
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.10.0",
29
29
  "@atlaskit/ds-lib": "^6.0.0",
30
- "@atlaskit/icon": "^32.0.0",
30
+ "@atlaskit/icon": "^33.0.0",
31
31
  "@atlaskit/spinner": "^19.0.0",
32
32
  "@atlaskit/theme": "^22.0.0",
33
33
  "@atlaskit/tokens": "^11.1.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.6.0",
45
+ "@atlaskit/docs": "^11.7.0",
46
46
  "@atlaskit/empty-state": "^10.1.0",
47
47
  "@atlaskit/form": "^15.4.0",
48
48
  "@atlaskit/link": "^3.3.0",
@@ -51,6 +51,7 @@
51
51
  "@atlaskit/select": "^21.8.0",
52
52
  "@atlaskit/visually-hidden": "^3.0.0",
53
53
  "@atlassian/ssr-tests": "workspace:^",
54
+ "@atlassian/structured-docs-types": "workspace:^",
54
55
  "@testing-library/react": "^16.3.0",
55
56
  "@testing-library/user-event": "^14.4.3",
56
57
  "react-dom": "^18.2.0"
@@ -0,0 +1,30 @@
1
+ import path from 'path';
2
+
3
+ import type { ComponentStructuredContentSource } from '@atlassian/structured-docs-types';
4
+
5
+ const documentation: ComponentStructuredContentSource[] = [
6
+ {
7
+ name: 'Table tree',
8
+ description:
9
+ 'A table tree is an expandable table for showing nested hierarchies of information.',
10
+ status: 'general-availability',
11
+ import: {
12
+ name: 'TableTree',
13
+ package: '@atlaskit/table-tree',
14
+ type: 'default',
15
+ packagePath: path.resolve(__dirname),
16
+ packageJson: require('./package.json'),
17
+ },
18
+ examples: [
19
+ {
20
+ name: 'Controlled Expanded State',
21
+ description: 'Controlled expanded state example',
22
+ source: path.resolve(__dirname, './examples/controlled-expanded-state.tsx'),
23
+ },
24
+ ],
25
+ keywords: ['table-tree', 'table', 'tree', 'expandable', 'nested', 'hierarchy', 'rows'],
26
+ categories: ['text and data display', 'data'],
27
+ },
28
+ ];
29
+
30
+ export default documentation;