@atlaskit/renderer 109.32.2 → 109.32.4
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 +19 -0
- package/dist/cjs/actions/get-renderer-range-inline-node-names.js +24 -0
- package/dist/cjs/actions/index.js +22 -1
- package/dist/cjs/react/marks/breakout.js +5 -1
- package/dist/cjs/react/nodes/blockCard.js +1 -0
- package/dist/cjs/react/nodes/codeBlock/components/codeBlockButtonContainer.js +3 -0
- package/dist/cjs/react/nodes/codeBlock/components/codeBlockContainer.js +1 -1
- package/dist/cjs/react/nodes/codeBlock/components/lightWeightCodeBlock.js +4 -2
- package/dist/cjs/react/nodes/embedCard.js +2 -0
- package/dist/cjs/react/nodes/extension.js +1 -0
- package/dist/cjs/react/nodes/layoutColumn.js +6 -1
- package/dist/cjs/react/nodes/media/index.js +6 -1
- package/dist/cjs/react/nodes/mediaSingle/styles.js +3 -0
- package/dist/cjs/react/nodes/multiBodiedExtension.js +2 -1
- package/dist/cjs/react/nodes/panel.js +6 -3
- package/dist/cjs/react/nodes/table/colgroup.js +1 -1
- package/dist/cjs/react/nodes/table/sticky.js +55 -44
- package/dist/cjs/ui/Expand.js +2 -0
- package/dist/cjs/ui/ExtensionRenderer.js +1 -0
- package/dist/cjs/ui/Renderer/index.js +2 -2
- package/dist/cjs/ui/Renderer/truncated-wrapper.js +2 -0
- package/dist/cjs/ui/annotations/draft/component.js +4 -1
- package/dist/cjs/ui/annotations/selection/mounter.js +25 -5
- package/dist/es2019/actions/get-renderer-range-inline-node-names.js +19 -0
- package/dist/es2019/actions/index.js +22 -1
- package/dist/es2019/react/marks/breakout.js +5 -1
- package/dist/es2019/react/nodes/blockCard.js +1 -0
- package/dist/es2019/react/nodes/codeBlock/components/codeBlockButtonContainer.js +3 -0
- package/dist/es2019/react/nodes/codeBlock/components/codeBlockContainer.js +1 -1
- package/dist/es2019/react/nodes/codeBlock/components/lightWeightCodeBlock.js +4 -2
- package/dist/es2019/react/nodes/embedCard.js +2 -0
- package/dist/es2019/react/nodes/extension.js +1 -0
- package/dist/es2019/react/nodes/layoutColumn.js +7 -1
- package/dist/es2019/react/nodes/media/index.js +6 -1
- package/dist/es2019/react/nodes/mediaSingle/styles.js +4 -0
- package/dist/es2019/react/nodes/multiBodiedExtension.js +2 -1
- package/dist/es2019/react/nodes/panel.js +6 -3
- package/dist/es2019/react/nodes/table/colgroup.js +1 -1
- package/dist/es2019/react/nodes/table/sticky.js +59 -44
- package/dist/es2019/ui/Expand.js +2 -0
- package/dist/es2019/ui/ExtensionRenderer.js +1 -0
- package/dist/es2019/ui/Renderer/index.js +2 -2
- package/dist/es2019/ui/Renderer/truncated-wrapper.js +2 -0
- package/dist/es2019/ui/annotations/draft/component.js +5 -1
- package/dist/es2019/ui/annotations/selection/mounter.js +25 -5
- package/dist/esm/actions/get-renderer-range-inline-node-names.js +18 -0
- package/dist/esm/actions/index.js +22 -1
- package/dist/esm/react/marks/breakout.js +5 -1
- package/dist/esm/react/nodes/blockCard.js +1 -0
- package/dist/esm/react/nodes/codeBlock/components/codeBlockButtonContainer.js +3 -0
- package/dist/esm/react/nodes/codeBlock/components/codeBlockContainer.js +1 -1
- package/dist/esm/react/nodes/codeBlock/components/lightWeightCodeBlock.js +4 -2
- package/dist/esm/react/nodes/embedCard.js +2 -0
- package/dist/esm/react/nodes/extension.js +1 -0
- package/dist/esm/react/nodes/layoutColumn.js +7 -1
- package/dist/esm/react/nodes/media/index.js +6 -1
- package/dist/esm/react/nodes/mediaSingle/styles.js +4 -0
- package/dist/esm/react/nodes/multiBodiedExtension.js +2 -1
- package/dist/esm/react/nodes/panel.js +6 -3
- package/dist/esm/react/nodes/table/colgroup.js +1 -1
- package/dist/esm/react/nodes/table/sticky.js +55 -44
- package/dist/esm/ui/Expand.js +2 -0
- package/dist/esm/ui/ExtensionRenderer.js +1 -0
- package/dist/esm/ui/Renderer/index.js +2 -2
- package/dist/esm/ui/Renderer/truncated-wrapper.js +2 -0
- package/dist/esm/ui/annotations/draft/component.js +5 -1
- package/dist/esm/ui/annotations/selection/mounter.js +25 -5
- package/dist/types/actions/get-renderer-range-inline-node-names.d.ts +12 -0
- package/dist/types/actions/index.d.ts +3 -0
- package/dist/types/analytics/events.d.ts +3 -1
- package/dist/types/react/nodes/extension.d.ts +1 -0
- package/dist/types-ts4.5/actions/get-renderer-range-inline-node-names.d.ts +12 -0
- package/dist/types-ts4.5/actions/index.d.ts +3 -0
- package/dist/types-ts4.5/analytics/events.d.ts +3 -1
- package/dist/types-ts4.5/react/nodes/extension.d.ts +1 -0
- package/package.json +156 -160
package/package.json
CHANGED
|
@@ -1,161 +1,157 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
"./use-feature-flags": "./src/use-feature-flags.ts",
|
|
159
|
-
"./utils": "./src/utils.ts"
|
|
160
|
-
}
|
|
161
|
-
}
|
|
2
|
+
"name": "@atlaskit/renderer",
|
|
3
|
+
"version": "109.32.4",
|
|
4
|
+
"description": "Renderer component",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"registry": "https://registry.npmjs.org/"
|
|
7
|
+
},
|
|
8
|
+
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
|
|
9
|
+
"author": "Atlassian Pty Ltd",
|
|
10
|
+
"license": "Apache-2.0",
|
|
11
|
+
"main": "dist/cjs/index.js",
|
|
12
|
+
"module": "dist/esm/index.js",
|
|
13
|
+
"module:es2019": "dist/es2019/index.js",
|
|
14
|
+
"types": "dist/types/index.d.ts",
|
|
15
|
+
"sideEffects": false,
|
|
16
|
+
"atlaskit:src": "src/index.ts",
|
|
17
|
+
"atlassian": {
|
|
18
|
+
"team": "Editor",
|
|
19
|
+
"inPublicMirror": true,
|
|
20
|
+
"releaseModel": "continuous",
|
|
21
|
+
"website": {
|
|
22
|
+
"name": "Renderer"
|
|
23
|
+
},
|
|
24
|
+
"runReact18": true
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@atlaskit/adf-schema": "^36.10.7",
|
|
28
|
+
"@atlaskit/adf-utils": "^19.2.0",
|
|
29
|
+
"@atlaskit/analytics-listeners": "^8.10.0",
|
|
30
|
+
"@atlaskit/analytics-namespaced-context": "^6.10.0",
|
|
31
|
+
"@atlaskit/analytics-next": "^9.3.0",
|
|
32
|
+
"@atlaskit/button": "^17.17.0",
|
|
33
|
+
"@atlaskit/code": "^15.2.0",
|
|
34
|
+
"@atlaskit/editor-common": "^82.6.0",
|
|
35
|
+
"@atlaskit/editor-json-transformer": "^8.13.0",
|
|
36
|
+
"@atlaskit/editor-palette": "1.6.0",
|
|
37
|
+
"@atlaskit/editor-prosemirror": "4.0.1",
|
|
38
|
+
"@atlaskit/editor-shared-styles": "^2.12.0",
|
|
39
|
+
"@atlaskit/emoji": "^67.6.0",
|
|
40
|
+
"@atlaskit/icon": "^22.3.0",
|
|
41
|
+
"@atlaskit/link-datasource": "^2.3.0",
|
|
42
|
+
"@atlaskit/media-card": "^77.12.0",
|
|
43
|
+
"@atlaskit/media-client": "^27.2.0",
|
|
44
|
+
"@atlaskit/media-client-react": "^2.0.0",
|
|
45
|
+
"@atlaskit/media-common": "^11.2.0",
|
|
46
|
+
"@atlaskit/media-filmstrip": "^47.0.0",
|
|
47
|
+
"@atlaskit/media-ui": "^25.10.0",
|
|
48
|
+
"@atlaskit/media-viewer": "^48.6.0",
|
|
49
|
+
"@atlaskit/platform-feature-flags": "^0.2.0",
|
|
50
|
+
"@atlaskit/smart-card": "^27.6.0",
|
|
51
|
+
"@atlaskit/status": "^1.4.0",
|
|
52
|
+
"@atlaskit/task-decision": "^17.10.0",
|
|
53
|
+
"@atlaskit/theme": "^12.9.0",
|
|
54
|
+
"@atlaskit/tokens": "^1.50.0",
|
|
55
|
+
"@atlaskit/tooltip": "^18.4.0",
|
|
56
|
+
"@babel/runtime": "^7.0.0",
|
|
57
|
+
"@emotion/react": "^11.7.1",
|
|
58
|
+
"lodash": "^4.17.21",
|
|
59
|
+
"memoize-one": "^6.0.0",
|
|
60
|
+
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
61
|
+
"react-loadable": "^5.1.0",
|
|
62
|
+
"uuid": "^3.1.0"
|
|
63
|
+
},
|
|
64
|
+
"peerDependencies": {
|
|
65
|
+
"@atlaskit/link-provider": "^1.10.0",
|
|
66
|
+
"@atlaskit/media-core": "^34.2.0",
|
|
67
|
+
"react": "^16.8.0",
|
|
68
|
+
"react-dom": "^16.8.0"
|
|
69
|
+
},
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@af/integration-testing": "*",
|
|
72
|
+
"@af/visual-regression": "*",
|
|
73
|
+
"@atlaskit/analytics-gas-types": "^5.1.0",
|
|
74
|
+
"@atlaskit/css-reset": "^6.9.0",
|
|
75
|
+
"@atlaskit/editor-test-helpers": "^18.23.0",
|
|
76
|
+
"@atlaskit/link-provider": "^1.11.0",
|
|
77
|
+
"@atlaskit/link-test-helpers": "^7.0.0",
|
|
78
|
+
"@atlaskit/linking-common": "^5.7.0",
|
|
79
|
+
"@atlaskit/media-core": "^34.2.0",
|
|
80
|
+
"@atlaskit/media-integration-test-helpers": "^3.0.0",
|
|
81
|
+
"@atlaskit/media-test-helpers": "^33.0.0",
|
|
82
|
+
"@atlaskit/mention": "^23.2.0",
|
|
83
|
+
"@atlaskit/navigation-next": "^9.0.0",
|
|
84
|
+
"@atlaskit/util-data-test": "^17.9.0",
|
|
85
|
+
"@atlaskit/visual-regression": "*",
|
|
86
|
+
"@atlaskit/webdriver-runner": "*",
|
|
87
|
+
"@atlassian/feature-flags-test-utils": "*",
|
|
88
|
+
"@testing-library/react": "^12.1.5",
|
|
89
|
+
"@testing-library/react-hooks": "^8.0.1",
|
|
90
|
+
"@testing-library/user-event": "^14.4.3",
|
|
91
|
+
"@types/react-loadable": "^5.4.1",
|
|
92
|
+
"ajv": "^6.12.6",
|
|
93
|
+
"enzyme": "^3.10.0",
|
|
94
|
+
"jsdom": "^17.0.0",
|
|
95
|
+
"mockdate": "^3.0.5",
|
|
96
|
+
"puppeteer": "13.7.0",
|
|
97
|
+
"react": "^16.8.0",
|
|
98
|
+
"react-dom": "^16.8.0",
|
|
99
|
+
"react-live-clock": "^5.0.0",
|
|
100
|
+
"react-magnetic-di": "^2.2.6",
|
|
101
|
+
"react-moment": "^1.1.2",
|
|
102
|
+
"react-test-renderer": "^16.8.0",
|
|
103
|
+
"rxjs": "^5.5.0",
|
|
104
|
+
"sinon": "^2.2.0",
|
|
105
|
+
"typescript": "~5.4.2",
|
|
106
|
+
"worker-plugin": "^4.0.2"
|
|
107
|
+
},
|
|
108
|
+
"techstack": {
|
|
109
|
+
"@repo/internal": {
|
|
110
|
+
"design-tokens": ["color"],
|
|
111
|
+
"deprecation": "no-deprecated-imports",
|
|
112
|
+
"styling": ["emotion"]
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"platform-feature-flags": {
|
|
116
|
+
"platform.media-experience.media-viewer-v2_hgsii": {
|
|
117
|
+
"type": "boolean",
|
|
118
|
+
"referenceOnly": "true"
|
|
119
|
+
},
|
|
120
|
+
"platform.editor.inline_extension.extended_lcqdn": {
|
|
121
|
+
"type": "boolean"
|
|
122
|
+
},
|
|
123
|
+
"platform.editor.table-width-diff-in-renderer_x5s3z": {
|
|
124
|
+
"type": "boolean"
|
|
125
|
+
},
|
|
126
|
+
"platform.editor.allow-inline-comments-for-inline-nodes": {
|
|
127
|
+
"type": "boolean"
|
|
128
|
+
},
|
|
129
|
+
"platform.editor.allow-inline-comments-for-inline-nodes-round-2_ctuxz": {
|
|
130
|
+
"type": "boolean"
|
|
131
|
+
},
|
|
132
|
+
"platform.editor.renderer-error-boundary-for-dom-errors": {
|
|
133
|
+
"type": "boolean"
|
|
134
|
+
},
|
|
135
|
+
"platform.editor.scale-table-when-number-column-in-table-resized_y4qh2": {
|
|
136
|
+
"type": "boolean"
|
|
137
|
+
},
|
|
138
|
+
"platform.editor.table.use-increased-scaling-percent": {
|
|
139
|
+
"type": "boolean"
|
|
140
|
+
},
|
|
141
|
+
"platform.editor.table.allow-table-alignment": {
|
|
142
|
+
"type": "boolean"
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"af:exports": {
|
|
146
|
+
".": "./src/index.ts",
|
|
147
|
+
"./actions": "./src/actions.ts",
|
|
148
|
+
"./consts": "./src/consts.ts",
|
|
149
|
+
"./messages": "./src/messages.ts",
|
|
150
|
+
"./render-document": "./src/render-document.ts",
|
|
151
|
+
"./renderer-context": "./src/renderer-context.tsx",
|
|
152
|
+
"./serializer": "./src/serializer.ts",
|
|
153
|
+
"./text-serializer": "./src/text-serializer.ts",
|
|
154
|
+
"./use-feature-flags": "./src/use-feature-flags.ts",
|
|
155
|
+
"./utils": "./src/utils.ts"
|
|
156
|
+
}
|
|
157
|
+
}
|