@atlaskit/dynamic-table 18.3.20 → 18.3.22
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 +12 -0
- package/dynamic-table.docs.tsx +45 -0
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import path from 'path';
|
|
2
|
+
|
|
3
|
+
import type { ComponentStructuredContentSource } from '@atlassian/structured-docs-types';
|
|
4
|
+
|
|
5
|
+
const documentation: ComponentStructuredContentSource[] = [
|
|
6
|
+
{
|
|
7
|
+
name: 'Dynamic table',
|
|
8
|
+
description:
|
|
9
|
+
'A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.',
|
|
10
|
+
status: 'general-availability',
|
|
11
|
+
import: {
|
|
12
|
+
name: 'DynamicTable',
|
|
13
|
+
package: '@atlaskit/dynamic-table',
|
|
14
|
+
type: 'default',
|
|
15
|
+
packagePath: path.resolve(__dirname),
|
|
16
|
+
packageJson: require('./package.json'),
|
|
17
|
+
},
|
|
18
|
+
examples: [
|
|
19
|
+
{
|
|
20
|
+
name: 'Stateful',
|
|
21
|
+
description: 'Stateful dynamic table example',
|
|
22
|
+
source: path.resolve(__dirname, './examples/0-stateful.tsx'),
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
name: 'Stateless',
|
|
26
|
+
description: 'Stateless dynamic table example',
|
|
27
|
+
source: path.resolve(__dirname, './examples/1-stateless.tsx'),
|
|
28
|
+
},
|
|
29
|
+
],
|
|
30
|
+
keywords: [
|
|
31
|
+
'table',
|
|
32
|
+
'dynamic-table',
|
|
33
|
+
'data',
|
|
34
|
+
'rows',
|
|
35
|
+
'columns',
|
|
36
|
+
'sorting',
|
|
37
|
+
'pagination',
|
|
38
|
+
'drag and drop',
|
|
39
|
+
'ranking',
|
|
40
|
+
],
|
|
41
|
+
categories: ['data display', 'table', 'list'],
|
|
42
|
+
},
|
|
43
|
+
];
|
|
44
|
+
|
|
45
|
+
export default documentation;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/dynamic-table",
|
|
3
|
-
"version": "18.3.
|
|
3
|
+
"version": "18.3.22",
|
|
4
4
|
"description": "A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
37
37
|
"@atlaskit/css": "^0.19.0",
|
|
38
38
|
"@atlaskit/ds-lib": "^6.0.0",
|
|
39
|
-
"@atlaskit/icon": "^
|
|
39
|
+
"@atlaskit/icon": "^33.0.0",
|
|
40
40
|
"@atlaskit/pagination": "^16.2.0",
|
|
41
41
|
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-migration": "^2.0.0",
|
|
42
42
|
"@atlaskit/primitives": "^18.0.0",
|
|
43
43
|
"@atlaskit/spinner": "^19.0.0",
|
|
44
44
|
"@atlaskit/tokens": "^11.1.0",
|
|
45
|
-
"@atlaskit/tooltip": "^
|
|
45
|
+
"@atlaskit/tooltip": "^21.0.0",
|
|
46
46
|
"@babel/runtime": "^7.0.0",
|
|
47
47
|
"@compiled/react": "^0.20.0"
|
|
48
48
|
},
|
|
@@ -54,18 +54,19 @@
|
|
|
54
54
|
"@af/accessibility-testing": "workspace:^",
|
|
55
55
|
"@af/integration-testing": "workspace:^",
|
|
56
56
|
"@af/visual-regression": "workspace:^",
|
|
57
|
-
"@atlaskit/avatar": "^25.
|
|
57
|
+
"@atlaskit/avatar": "^25.10.0",
|
|
58
58
|
"@atlaskit/banner": "^14.0.0",
|
|
59
59
|
"@atlaskit/button": "^23.10.0",
|
|
60
|
-
"@atlaskit/docs": "^11.
|
|
61
|
-
"@atlaskit/drawer": "^
|
|
62
|
-
"@atlaskit/dropdown-menu": "^16.
|
|
60
|
+
"@atlaskit/docs": "^11.7.0",
|
|
61
|
+
"@atlaskit/drawer": "^12.0.0",
|
|
62
|
+
"@atlaskit/dropdown-menu": "^16.7.0",
|
|
63
63
|
"@atlaskit/link": "^3.3.0",
|
|
64
64
|
"@atlaskit/pragmatic-drag-and-drop": "^1.7.0",
|
|
65
65
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0",
|
|
66
66
|
"@atlaskit/section-message": "^8.12.0",
|
|
67
67
|
"@atlaskit/toggle": "^15.2.0",
|
|
68
68
|
"@atlassian/ssr-tests": "workspace:^",
|
|
69
|
+
"@atlassian/structured-docs-types": "workspace:^",
|
|
69
70
|
"@testing-library/react": "^16.3.0",
|
|
70
71
|
"@testing-library/user-event": "^14.4.3",
|
|
71
72
|
"react-dom": "^18.2.0",
|