@atlaskit/renderer 118.1.0 → 118.1.2
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 +21 -0
- package/afm-post-office/tsconfig.json +3 -0
- package/dist/cjs/react/nodes/mediaGroup.js +6 -3
- package/dist/cjs/react/nodes/table/sticky.js +2 -1
- package/dist/cjs/react/nodes/table/table.js +7 -2
- package/dist/cjs/react/nodes/table.js +46 -16
- package/dist/cjs/react/nodes/tableNew.js +116 -88
- package/dist/cjs/react/utils/EditorMediaClientProvider.js +8 -22
- package/dist/cjs/ui/Renderer/index.js +3 -9
- package/dist/cjs/ui/annotations/element/mark.js +16 -23
- package/dist/cjs/ui/annotations/hooks/use-events.js +1 -1
- package/dist/es2019/react/nodes/mediaGroup.js +6 -3
- package/dist/es2019/react/nodes/table/sticky.js +2 -1
- package/dist/es2019/react/nodes/table/table.js +6 -2
- package/dist/es2019/react/nodes/table.js +45 -17
- package/dist/es2019/react/nodes/tableNew.js +112 -94
- package/dist/es2019/react/utils/EditorMediaClientProvider.js +10 -24
- package/dist/es2019/ui/Renderer/index.js +3 -9
- package/dist/es2019/ui/annotations/element/mark.js +16 -25
- package/dist/es2019/ui/annotations/hooks/use-events.js +1 -1
- package/dist/esm/react/nodes/mediaGroup.js +6 -3
- package/dist/esm/react/nodes/table/sticky.js +2 -1
- package/dist/esm/react/nodes/table/table.js +7 -2
- package/dist/esm/react/nodes/table.js +46 -16
- package/dist/esm/react/nodes/tableNew.js +118 -90
- package/dist/esm/react/utils/EditorMediaClientProvider.js +10 -24
- package/dist/esm/ui/Renderer/index.js +3 -9
- package/dist/esm/ui/annotations/element/mark.js +16 -23
- package/dist/esm/ui/annotations/hooks/use-events.js +1 -1
- package/dist/types/react/nodes/table/table.d.ts +2 -1
- package/dist/types/react/nodes/table.d.ts +1 -1
- package/dist/types/react/nodes/tableNew.d.ts +33 -0
- package/dist/types/ui/annotations/element/mark.d.ts +0 -6
- package/dist/types-ts4.5/react/nodes/table/table.d.ts +2 -1
- package/dist/types-ts4.5/react/nodes/table.d.ts +1 -1
- package/dist/types-ts4.5/react/nodes/tableNew.d.ts +33 -0
- package/dist/types-ts4.5/ui/annotations/element/mark.d.ts +0 -6
- package/package.json +11 -14
|
@@ -42,7 +42,7 @@ export interface TableState {
|
|
|
42
42
|
headerRowHeight: number;
|
|
43
43
|
}
|
|
44
44
|
/**
|
|
45
|
-
*
|
|
45
|
+
*
|
|
46
46
|
*/
|
|
47
47
|
export declare class TableContainer extends React.Component<TableProps & OverflowShadowProps & WithSmartCardStorageProps, TableState> {
|
|
48
48
|
state: TableState;
|
|
@@ -42,6 +42,9 @@ export interface TableState {
|
|
|
42
42
|
wrapperWidth: number;
|
|
43
43
|
headerRowHeight: number;
|
|
44
44
|
}
|
|
45
|
+
/**
|
|
46
|
+
* TableContainer renders tables using only CSS-based rules
|
|
47
|
+
*/
|
|
45
48
|
export declare class TableContainer extends React.Component<TableProps & OverflowShadowProps & WithSmartCardStorageProps, TableState> {
|
|
46
49
|
state: TableState;
|
|
47
50
|
tableRef: React.RefObject<HTMLTableElement>;
|
|
@@ -55,26 +58,56 @@ export declare class TableContainer extends React.Component<TableProps & Overflo
|
|
|
55
58
|
updatedLayout: TableLayout | 'custom';
|
|
56
59
|
private resizeObserver;
|
|
57
60
|
private applyResizerChange;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @example
|
|
64
|
+
*/
|
|
58
65
|
componentDidMount(): void;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @param prevProps
|
|
69
|
+
* @param prevState
|
|
70
|
+
* @example
|
|
71
|
+
*/
|
|
59
72
|
componentDidUpdate(prevProps: TableProps, prevState: TableState): void;
|
|
60
73
|
componentWillUnmount: () => void;
|
|
61
74
|
getScrollTop: () => number;
|
|
62
75
|
updateSticky: () => void;
|
|
63
76
|
onScroll: () => void;
|
|
64
77
|
onWrapperScrolled: () => void;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
*/
|
|
65
81
|
get pinTop(): number | undefined;
|
|
82
|
+
/**
|
|
83
|
+
*
|
|
84
|
+
*/
|
|
66
85
|
get shouldAddOverflowParentOffsetTop_DO_NOT_USE(): boolean | null | undefined;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
*/
|
|
67
89
|
get stickyTop(): number | undefined;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @example
|
|
93
|
+
*/
|
|
68
94
|
render(): React.JSX.Element;
|
|
69
95
|
private grabFirstRowRef;
|
|
70
96
|
}
|
|
71
97
|
type TableProcessorState = {
|
|
72
98
|
tableOrderStatus?: TableOrderStatus;
|
|
73
99
|
};
|
|
100
|
+
/**
|
|
101
|
+
*
|
|
102
|
+
*/
|
|
74
103
|
export declare class TableProcessorWithContainerStyles extends React.Component<TableProps & OverflowShadowProps & WithSmartCardStorageProps, TableProcessorState> {
|
|
75
104
|
state: {
|
|
76
105
|
tableOrderStatus: undefined;
|
|
77
106
|
};
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @example
|
|
110
|
+
*/
|
|
78
111
|
render(): React.JSX.Element | null;
|
|
79
112
|
private addSortableColumn;
|
|
80
113
|
private changeSortOrder;
|
|
@@ -27,7 +27,6 @@ export declare const MarkComponent: ({ annotationParentIds, children, dataAttrib
|
|
|
27
27
|
'data-id': string;
|
|
28
28
|
'data-mark-annotation-state'?: AnnotationMarkStates | undefined;
|
|
29
29
|
'aria-disabled': boolean;
|
|
30
|
-
ref: ((node: HTMLElement | null) => void) | undefined;
|
|
31
30
|
id: string;
|
|
32
31
|
} | {
|
|
33
32
|
css?: (false | import("@emotion/react").SerializedStyles)[] | undefined;
|
|
@@ -42,7 +41,6 @@ export declare const MarkComponent: ({ annotationParentIds, children, dataAttrib
|
|
|
42
41
|
'data-mark-annotation-type': import("@atlaskit/adf-schema").AnnotationTypes;
|
|
43
42
|
'data-id': string;
|
|
44
43
|
'aria-disabled': boolean;
|
|
45
|
-
ref: ((node: HTMLElement | null) => void) | undefined;
|
|
46
44
|
id: string;
|
|
47
45
|
} | {
|
|
48
46
|
css?: (false | import("@emotion/react").SerializedStyles)[] | undefined;
|
|
@@ -60,7 +58,6 @@ export declare const MarkComponent: ({ annotationParentIds, children, dataAttrib
|
|
|
60
58
|
'aria-expanded'?: undefined;
|
|
61
59
|
'aria-details': string;
|
|
62
60
|
'aria-disabled'?: undefined;
|
|
63
|
-
ref: ((node: HTMLElement | null) => void) | undefined;
|
|
64
61
|
id: string;
|
|
65
62
|
} | {
|
|
66
63
|
css?: (false | import("@emotion/react").SerializedStyles)[] | undefined;
|
|
@@ -80,7 +77,6 @@ export declare const MarkComponent: ({ annotationParentIds, children, dataAttrib
|
|
|
80
77
|
'aria-expanded'?: undefined;
|
|
81
78
|
'aria-details': string;
|
|
82
79
|
'aria-disabled'?: undefined;
|
|
83
|
-
ref: ((node: HTMLElement | null) => void) | undefined;
|
|
84
80
|
id: string;
|
|
85
81
|
} | {
|
|
86
82
|
css?: (false | import("@emotion/react").SerializedStyles)[] | undefined;
|
|
@@ -98,7 +94,6 @@ export declare const MarkComponent: ({ annotationParentIds, children, dataAttrib
|
|
|
98
94
|
'aria-expanded': boolean;
|
|
99
95
|
'aria-details': string;
|
|
100
96
|
'aria-disabled'?: undefined;
|
|
101
|
-
ref: ((node: HTMLElement | null) => void) | undefined;
|
|
102
97
|
id: string;
|
|
103
98
|
} | {
|
|
104
99
|
css?: (false | import("@emotion/react").SerializedStyles)[] | undefined;
|
|
@@ -118,7 +113,6 @@ export declare const MarkComponent: ({ annotationParentIds, children, dataAttrib
|
|
|
118
113
|
'aria-expanded': boolean;
|
|
119
114
|
'aria-details': string;
|
|
120
115
|
'aria-disabled'?: undefined;
|
|
121
|
-
ref: ((node: HTMLElement | null) => void) | undefined;
|
|
122
116
|
id: string;
|
|
123
117
|
}, string | React.JSXElementConstructor<any>>;
|
|
124
118
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "118.1.
|
|
3
|
+
"version": "118.1.2",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"@atlaskit/analytics-listeners": "^9.0.0",
|
|
30
30
|
"@atlaskit/analytics-namespaced-context": "^7.0.0",
|
|
31
31
|
"@atlaskit/analytics-next": "^11.0.0",
|
|
32
|
-
"@atlaskit/button": "^23.
|
|
32
|
+
"@atlaskit/button": "^23.2.0",
|
|
33
33
|
"@atlaskit/code": "^17.2.0",
|
|
34
|
-
"@atlaskit/editor-common": "^105.
|
|
34
|
+
"@atlaskit/editor-common": "^105.6.0",
|
|
35
35
|
"@atlaskit/editor-json-transformer": "^8.24.0",
|
|
36
36
|
"@atlaskit/editor-palette": "^2.1.0",
|
|
37
37
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@atlaskit/editor-tables": "^2.9.0",
|
|
40
40
|
"@atlaskit/emoji": "^69.2.0",
|
|
41
41
|
"@atlaskit/feature-gate-js-client": "^5.3.0",
|
|
42
|
-
"@atlaskit/icon": "^26.
|
|
42
|
+
"@atlaskit/icon": "^26.1.0",
|
|
43
43
|
"@atlaskit/link-datasource": "^4.10.0",
|
|
44
44
|
"@atlaskit/media-card": "^79.2.0",
|
|
45
45
|
"@atlaskit/media-client": "^33.3.0",
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
"@atlaskit/media-viewer": "^52.0.0",
|
|
51
51
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
52
52
|
"@atlaskit/platform-feature-flags-react": "^0.2.0",
|
|
53
|
-
"@atlaskit/react-ufo": "^3.
|
|
54
|
-
"@atlaskit/smart-card": "^38.
|
|
53
|
+
"@atlaskit/react-ufo": "^3.13.0",
|
|
54
|
+
"@atlaskit/smart-card": "^38.2.0",
|
|
55
55
|
"@atlaskit/status": "^3.0.0",
|
|
56
56
|
"@atlaskit/task-decision": "^19.2.0",
|
|
57
57
|
"@atlaskit/theme": "^18.0.0",
|
|
58
58
|
"@atlaskit/tmp-editor-statsig": "^4.22.0",
|
|
59
|
-
"@atlaskit/tokens": "^4.
|
|
59
|
+
"@atlaskit/tokens": "^4.9.0",
|
|
60
60
|
"@atlaskit/tooltip": "^20.0.0",
|
|
61
61
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
62
62
|
"@babel/runtime": "^7.0.0",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"@af/visual-regression": "workspace:^",
|
|
80
80
|
"@atlaskit/analytics-gas-types": "^5.1.0",
|
|
81
81
|
"@atlaskit/checkbox": "^17.1.0",
|
|
82
|
-
"@atlaskit/css-reset": "^7.
|
|
82
|
+
"@atlaskit/css-reset": "^7.3.0",
|
|
83
83
|
"@atlaskit/link-provider": "^3.0.0",
|
|
84
84
|
"@atlaskit/link-test-helpers": "^8.0.0",
|
|
85
85
|
"@atlaskit/linking-common": "^9.0.0",
|
|
@@ -132,18 +132,12 @@
|
|
|
132
132
|
"cc_complexit_reduce_portal_rerenders": {
|
|
133
133
|
"type": "boolean"
|
|
134
134
|
},
|
|
135
|
-
"cc_perf_reduce_rerenders": {
|
|
136
|
-
"type": "boolean"
|
|
137
|
-
},
|
|
138
135
|
"cc_complexit_fe_reduce_fragment_serialization": {
|
|
139
136
|
"type": "boolean"
|
|
140
137
|
},
|
|
141
138
|
"platform_renderer_annotations_create_debug_logging": {
|
|
142
139
|
"type": "boolean"
|
|
143
140
|
},
|
|
144
|
-
"platform_editor_speedup_media_client": {
|
|
145
|
-
"type": "boolean"
|
|
146
|
-
},
|
|
147
141
|
"platform_editor_annotation_position_comment_nodes": {
|
|
148
142
|
"type": "boolean"
|
|
149
143
|
},
|
|
@@ -185,6 +179,9 @@
|
|
|
185
179
|
"platform_editor_accessible_heading_copy_link": {
|
|
186
180
|
"type": "boolean"
|
|
187
181
|
},
|
|
182
|
+
"platform_editor_fix_vc90_bug_with_files": {
|
|
183
|
+
"type": "boolean"
|
|
184
|
+
},
|
|
188
185
|
"editor_a11y_status_renderer_description": {
|
|
189
186
|
"type": "boolean"
|
|
190
187
|
},
|