@atlaskit/editor-common 88.9.0 → 88.11.0
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 +30 -0
- package/count-nodes/package.json +15 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/styles/shared/blockquote.js +6 -0
- package/dist/cjs/styles/shared/media-single.js +1 -1
- package/dist/cjs/styles/shared/table.js +9 -2
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/cjs/ui/Emoji/index.js +1 -0
- package/dist/cjs/utils/document.js +0 -180
- package/dist/cjs/utils/index.js +32 -1
- package/dist/cjs/utils/processRawValue.js +185 -0
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/styles/shared/blockquote.js +6 -0
- package/dist/es2019/styles/shared/media-single.js +1 -1
- package/dist/es2019/styles/shared/table.js +27 -14
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/es2019/ui/Emoji/index.js +1 -0
- package/dist/es2019/utils/document.js +0 -183
- package/dist/es2019/utils/index.js +44 -2
- package/dist/es2019/utils/processRawValue.js +183 -0
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/styles/shared/blockquote.js +6 -0
- package/dist/esm/styles/shared/media-single.js +1 -1
- package/dist/esm/styles/shared/table.js +9 -2
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/esm/ui/Emoji/index.js +1 -0
- package/dist/esm/utils/document.js +0 -179
- package/dist/esm/utils/index.js +44 -2
- package/dist/esm/utils/processRawValue.js +179 -0
- package/dist/types/collab/index.d.ts +1 -0
- package/dist/types/utils/document.d.ts +2 -6
- package/dist/types/utils/index.d.ts +42 -2
- package/dist/types/utils/processRawValue.d.ts +6 -0
- package/dist/types-ts4.5/collab/index.d.ts +1 -0
- package/dist/types-ts4.5/utils/document.d.ts +2 -6
- package/dist/types-ts4.5/utils/index.d.ts +42 -2
- package/dist/types-ts4.5/utils/processRawValue.d.ts +6 -0
- package/is-performance-api-available/package.json +15 -0
- package/package.json +8 -3
- package/performance/measure-render/package.json +15 -0
- package/performance/navigation/package.json +15 -0
- package/process-raw-value/package.json +15 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "88.
|
|
3
|
+
"version": "88.11.0",
|
|
4
4
|
"description": "A package that contains common classes and components for editor and renderer",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -91,6 +91,11 @@
|
|
|
91
91
|
"./indentation": "./src/indentation/index.ts",
|
|
92
92
|
"./annotation": "./src/annotation/index.ts",
|
|
93
93
|
"./constants": "./src/link/constants.ts",
|
|
94
|
+
"./is-performance-api-available": "./src/utils/performance/is-performance-api-available.ts",
|
|
95
|
+
"./performance/navigation": "./src/utils/performance/navigation.ts",
|
|
96
|
+
"./performance/measure-render": "./src/utils/performance/measure-render.ts",
|
|
97
|
+
"./count-nodes": "./src/utils/count-nodes.ts",
|
|
98
|
+
"./process-raw-value": "./src/utils/processRawValue.ts",
|
|
94
99
|
"./doc-utils": "./src/doc-utils/index.ts",
|
|
95
100
|
"./expand": "./src/expand/index.ts",
|
|
96
101
|
"./intl-error-boundary": "./src/ui/IntlErrorBoundary/index.tsx",
|
|
@@ -117,7 +122,7 @@
|
|
|
117
122
|
"@atlaskit/editor-shared-styles": "^2.13.0",
|
|
118
123
|
"@atlaskit/editor-tables": "^2.8.0",
|
|
119
124
|
"@atlaskit/emoji": "^67.7.0",
|
|
120
|
-
"@atlaskit/icon": "^22.
|
|
125
|
+
"@atlaskit/icon": "^22.16.0",
|
|
121
126
|
"@atlaskit/icon-object": "^6.5.0",
|
|
122
127
|
"@atlaskit/link-datasource": "^2.12.0",
|
|
123
128
|
"@atlaskit/link-picker": "^1.45.0",
|
|
@@ -128,7 +133,7 @@
|
|
|
128
133
|
"@atlaskit/media-file-preview": "^0.8.0",
|
|
129
134
|
"@atlaskit/media-picker": "^66.5.0",
|
|
130
135
|
"@atlaskit/media-ui": "^25.11.0",
|
|
131
|
-
"@atlaskit/media-viewer": "48.7.
|
|
136
|
+
"@atlaskit/media-viewer": "48.7.3",
|
|
132
137
|
"@atlaskit/mention": "^23.2.0",
|
|
133
138
|
"@atlaskit/menu": "^2.12.0",
|
|
134
139
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-common/performance/measure-render",
|
|
3
|
+
"main": "../../dist/cjs/utils/performance/measure-render.js",
|
|
4
|
+
"module": "../../dist/esm/utils/performance/measure-render.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/utils/performance/measure-render.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../../dist/types/utils/performance/measure-render.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.4": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../../dist/types-ts4.5/utils/performance/measure-render.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-common/performance/navigation",
|
|
3
|
+
"main": "../../dist/cjs/utils/performance/navigation.js",
|
|
4
|
+
"module": "../../dist/esm/utils/performance/navigation.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/utils/performance/navigation.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../../dist/types/utils/performance/navigation.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.4": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../../dist/types-ts4.5/utils/performance/navigation.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-common/process-raw-value",
|
|
3
|
+
"main": "../dist/cjs/utils/processRawValue.js",
|
|
4
|
+
"module": "../dist/esm/utils/processRawValue.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/utils/processRawValue.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/utils/processRawValue.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.4": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.5/utils/processRawValue.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|