@atlaskit/dynamic-table 14.17.1 → 14.18.1

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.
Files changed (58) hide show
  1. package/CHANGELOG.md +998 -984
  2. package/README.md +2 -1
  3. package/dist/cjs/components/rankable/table-row.js +1 -1
  4. package/dist/cjs/components/stateless.js +1 -1
  5. package/dist/cjs/styled/constants.js +13 -2
  6. package/dist/cjs/styled/dynamic-table.js +8 -1
  7. package/dist/cjs/styled/empty-body.js +5 -0
  8. package/dist/cjs/styled/loading-container-advanced.js +4 -0
  9. package/dist/cjs/styled/loading-container.js +5 -0
  10. package/dist/cjs/styled/rankable/table-cell.js +4 -0
  11. package/dist/cjs/styled/rankable/table-row.js +4 -0
  12. package/dist/cjs/styled/table-cell.js +14 -2
  13. package/dist/cjs/styled/table-head.js +31 -1
  14. package/dist/cjs/styled/table-row.js +12 -4
  15. package/dist/es2019/components/rankable/table-row.js +1 -1
  16. package/dist/es2019/components/stateless.js +1 -1
  17. package/dist/es2019/styled/constants.js +12 -2
  18. package/dist/es2019/styled/dynamic-table.js +13 -1
  19. package/dist/es2019/styled/empty-body.js +4 -0
  20. package/dist/es2019/styled/loading-container-advanced.js +5 -0
  21. package/dist/es2019/styled/loading-container.js +4 -0
  22. package/dist/es2019/styled/rankable/table-cell.js +4 -0
  23. package/dist/es2019/styled/rankable/table-row.js +5 -0
  24. package/dist/es2019/styled/table-cell.js +14 -2
  25. package/dist/es2019/styled/table-head.js +32 -1
  26. package/dist/es2019/styled/table-row.js +17 -4
  27. package/dist/esm/components/rankable/table-row.js +1 -1
  28. package/dist/esm/components/stateless.js +1 -1
  29. package/dist/esm/styled/constants.js +12 -2
  30. package/dist/esm/styled/dynamic-table.js +9 -1
  31. package/dist/esm/styled/empty-body.js +4 -0
  32. package/dist/esm/styled/loading-container-advanced.js +5 -0
  33. package/dist/esm/styled/loading-container.js +4 -0
  34. package/dist/esm/styled/rankable/table-cell.js +4 -0
  35. package/dist/esm/styled/rankable/table-row.js +5 -0
  36. package/dist/esm/styled/table-cell.js +14 -2
  37. package/dist/esm/styled/table-head.js +32 -1
  38. package/dist/esm/styled/table-row.js +13 -4
  39. package/dist/types/styled/dynamic-table.d.ts +3 -0
  40. package/dist/types/styled/empty-body.d.ts +3 -0
  41. package/dist/types/styled/loading-container-advanced.d.ts +3 -0
  42. package/dist/types/styled/loading-container.d.ts +3 -0
  43. package/dist/types/styled/rankable/table-cell.d.ts +3 -0
  44. package/dist/types/styled/rankable/table-row.d.ts +3 -0
  45. package/dist/types/styled/table-cell.d.ts +3 -0
  46. package/dist/types/styled/table-head.d.ts +3 -0
  47. package/dist/types/styled/table-row.d.ts +3 -0
  48. package/dist/types-ts4.5/styled/dynamic-table.d.ts +3 -0
  49. package/dist/types-ts4.5/styled/empty-body.d.ts +3 -0
  50. package/dist/types-ts4.5/styled/loading-container-advanced.d.ts +3 -0
  51. package/dist/types-ts4.5/styled/loading-container.d.ts +3 -0
  52. package/dist/types-ts4.5/styled/rankable/table-cell.d.ts +3 -0
  53. package/dist/types-ts4.5/styled/rankable/table-row.d.ts +3 -0
  54. package/dist/types-ts4.5/styled/table-cell.d.ts +3 -0
  55. package/dist/types-ts4.5/styled/table-head.d.ts +3 -0
  56. package/dist/types-ts4.5/styled/table-row.d.ts +3 -0
  57. package/package.json +93 -95
  58. package/report.api.md +212 -214
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ */
1
4
  /** @jsx jsx */
2
5
  import { type FC } from 'react';
3
6
  import { type TruncateStyleProps } from './constants';
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ */
1
4
  /** @jsx jsx */
2
5
  import { type FC, type HTMLProps, type ReactNode } from 'react';
3
6
  import { type SortOrderType } from '../types';
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ */
1
4
  /** @jsx jsx */
2
5
  import { type CSSProperties, type ReactNode } from 'react';
3
6
  export type ITableRowProps = {
package/package.json CHANGED
@@ -1,96 +1,94 @@
1
1
  {
2
- "name": "@atlaskit/dynamic-table",
3
- "version": "14.17.1",
4
- "description": "A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.",
5
- "publishConfig": {
6
- "registry": "https://registry.npmjs.org/"
7
- },
8
- "homepage": "https://atlassian.design/components/dynamic-table/",
9
- "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
10
- "author": "Atlassian Pty Ltd",
11
- "license": "Apache-2.0",
12
- "main": "dist/cjs/index.js",
13
- "module": "dist/esm/index.js",
14
- "module:es2019": "dist/es2019/index.js",
15
- "types": "dist/types/index.d.ts",
16
- "typesVersions": {
17
- ">=4.5 <4.9": {
18
- "*": [
19
- "dist/types-ts4.5/*",
20
- "dist/types-ts4.5/index.d.ts"
21
- ]
22
- }
23
- },
24
- "sideEffects": false,
25
- "atlaskit:src": "src/index.tsx",
26
- "af:exports": {
27
- ".": "./src/index.tsx",
28
- "./theme": "./src/theme.tsx",
29
- "./types": "./src/types.tsx"
30
- },
31
- "atlassian": {
32
- "team": "Design System Team",
33
- "releaseModel": "continuous",
34
- "productPushConsumption": [
35
- "jira"
36
- ],
37
- "website": {
38
- "name": "Dynamic table",
39
- "category": "Components"
40
- },
41
- "runReact18": true
42
- },
43
- "dependencies": {
44
- "@atlaskit/analytics-next": "^9.3.0",
45
- "@atlaskit/ds-lib": "^2.3.0",
46
- "@atlaskit/pagination": "^14.7.0",
47
- "@atlaskit/platform-feature-flags": "^0.2.5",
48
- "@atlaskit/spinner": "^16.1.0",
49
- "@atlaskit/theme": "^12.8.0",
50
- "@atlaskit/tokens": "^1.49.0",
51
- "@babel/runtime": "^7.0.0",
52
- "@emotion/react": "^11.7.1",
53
- "react-beautiful-dnd": "^12.1.1"
54
- },
55
- "peerDependencies": {
56
- "react": "^16.8.0 || ^17.0.0 || ~18.2.0",
57
- "react-dom": "^16.8.0"
58
- },
59
- "devDependencies": {
60
- "@af/accessibility-testing": "*",
61
- "@af/integration-testing": "*",
62
- "@af/visual-regression": "*",
63
- "@atlaskit/ssr": "*",
64
- "@atlaskit/toggle": "^13.1.0",
65
- "@atlaskit/visual-regression": "*",
66
- "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
67
- "@emotion/styled": "^11.0.0",
68
- "@testing-library/react": "^12.1.5",
69
- "@testing-library/user-event": "^14.4.3",
70
- "react-dom": "^16.8.0",
71
- "typescript": "~5.4.2"
72
- },
73
- "techstack": {
74
- "@atlassian/frontend": {
75
- "import-structure": "atlassian-conventions"
76
- },
77
- "@repo/internal": {
78
- "dom-events": "use-bind-event-listener",
79
- "design-system": "v1",
80
- "design-tokens": [
81
- "color",
82
- "spacing"
83
- ],
84
- "deprecation": "no-deprecated-imports",
85
- "styling": [
86
- "emotion"
87
- ]
88
- }
89
- },
90
- "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1",
91
- "platform-feature-flags": {
92
- "platform.design-system-team.dynamic-table-typography_7zio6": {
93
- "type": "boolean"
94
- }
95
- }
96
- }
2
+ "name": "@atlaskit/dynamic-table",
3
+ "version": "14.18.1",
4
+ "description": "A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.",
5
+ "publishConfig": {
6
+ "registry": "https://registry.npmjs.org/"
7
+ },
8
+ "homepage": "https://atlassian.design/components/dynamic-table/",
9
+ "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
10
+ "author": "Atlassian Pty Ltd",
11
+ "license": "Apache-2.0",
12
+ "main": "dist/cjs/index.js",
13
+ "module": "dist/esm/index.js",
14
+ "module:es2019": "dist/es2019/index.js",
15
+ "types": "dist/types/index.d.ts",
16
+ "typesVersions": {
17
+ ">=4.5 <4.9": {
18
+ "*": [
19
+ "dist/types-ts4.5/*",
20
+ "dist/types-ts4.5/index.d.ts"
21
+ ]
22
+ }
23
+ },
24
+ "sideEffects": false,
25
+ "atlaskit:src": "src/index.tsx",
26
+ "af:exports": {
27
+ ".": "./src/index.tsx",
28
+ "./theme": "./src/theme.tsx",
29
+ "./types": "./src/types.tsx"
30
+ },
31
+ "atlassian": {
32
+ "team": "Design System Team",
33
+ "releaseModel": "continuous",
34
+ "productPushConsumption": [
35
+ "jira"
36
+ ],
37
+ "website": {
38
+ "name": "Dynamic table",
39
+ "category": "Components"
40
+ },
41
+ "runReact18": true
42
+ },
43
+ "dependencies": {
44
+ "@atlaskit/analytics-next": "^9.3.0",
45
+ "@atlaskit/ds-lib": "^2.3.0",
46
+ "@atlaskit/pagination": "^14.7.0",
47
+ "@atlaskit/platform-feature-flags": "^0.2.5",
48
+ "@atlaskit/spinner": "^16.2.0",
49
+ "@atlaskit/theme": "^12.11.0",
50
+ "@atlaskit/tokens": "^1.53.0",
51
+ "@babel/runtime": "^7.0.0",
52
+ "@emotion/react": "^11.7.1",
53
+ "react-beautiful-dnd": "^12.2.0"
54
+ },
55
+ "peerDependencies": {
56
+ "react": "^16.8.0 || ^17.0.0 || ~18.2.0",
57
+ "react-dom": "^16.8.0"
58
+ },
59
+ "devDependencies": {
60
+ "@af/accessibility-testing": "*",
61
+ "@af/integration-testing": "*",
62
+ "@af/visual-regression": "*",
63
+ "@atlaskit/ssr": "*",
64
+ "@atlaskit/toggle": "^13.2.0",
65
+ "@atlaskit/visual-regression": "*",
66
+ "@emotion/styled": "^11.0.0",
67
+ "@testing-library/react": "^12.1.5",
68
+ "@testing-library/user-event": "^14.4.3",
69
+ "react-dom": "^16.8.0",
70
+ "typescript": "~5.4.2"
71
+ },
72
+ "techstack": {
73
+ "@atlassian/frontend": {
74
+ "import-structure": "atlassian-conventions"
75
+ },
76
+ "@repo/internal": {
77
+ "dom-events": "use-bind-event-listener",
78
+ "design-system": "v1",
79
+ "design-tokens": [
80
+ "color",
81
+ "spacing"
82
+ ],
83
+ "deprecation": "no-deprecated-imports",
84
+ "styling": [
85
+ "emotion"
86
+ ]
87
+ }
88
+ },
89
+ "platform-feature-flags": {
90
+ "platform.design-system-team.dynamic-table-typography_7zio6": {
91
+ "type": "boolean"
92
+ }
93
+ }
94
+ }