@atlaskit/editor-wikimarkup-transformer 11.1.10 → 11.1.11
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 +26 -0
- package/dist/cjs/parser/tokenize/keyword.js +1 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/parser/tokenize/keyword.js +1 -0
- package/dist/es2019/version.json +1 -1
- package/dist/esm/parser/tokenize/keyword.js +1 -0
- package/dist/esm/version.json +1 -1
- package/package.json +8 -7
- package/report.api.md +11 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @atlaskit/editor-wikimarkup-transformer
|
|
2
2
|
|
|
3
|
+
## 11.1.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`5d317ed8aa3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5d317ed8aa3) - ED-15882: Make editor-wikimarkup-transformer example page work, update tests for restartNumberedLists feature (custom start numbers for ordered lists)
|
|
8
|
+
- [`224a2482244`](https://bitbucket.org/atlassian/atlassian-frontend/commits/224a2482244) - [ED-16166] Changes the renderer prop document type from any to DocNode
|
|
9
|
+
|
|
10
|
+
BREAKING for `@atlaskit/renderer`: Previously the `document` prop for the renderer component had the type of `any`. This has now been changed to `DocNode` which comes from `@atlaskit/adf-schema`.
|
|
11
|
+
|
|
12
|
+
Documents being passed into the renderer component will need to be updated to use this type.
|
|
13
|
+
|
|
14
|
+
Example Usage:
|
|
15
|
+
|
|
16
|
+
```tsx
|
|
17
|
+
import { DocNode } from '@atlaskit/adf-schema';
|
|
18
|
+
|
|
19
|
+
const emptyDoc: DocNode = {
|
|
20
|
+
type: 'doc',
|
|
21
|
+
version: 1,
|
|
22
|
+
content: [],
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
- [`3a35da6c331`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3a35da6c331) - DTR-825 ED-9775: added jamfselfservice:// to whitelistedURLPatterns
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
|
|
3
29
|
## 11.1.10
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
|
@@ -48,6 +48,7 @@ var keywordTokenMap = {
|
|
|
48
48
|
'[': _.TokenType.LINK_FORMAT,
|
|
49
49
|
http: _.TokenType.LINK_TEXT,
|
|
50
50
|
ftp: _.TokenType.LINK_TEXT,
|
|
51
|
+
jamfselfservice: _.TokenType.LINK_TEXT,
|
|
51
52
|
irc: _.TokenType.LINK_TEXT,
|
|
52
53
|
mailto: _.TokenType.LINK_TEXT,
|
|
53
54
|
'\\\\': _.TokenType.FORCE_LINE_BREAK,
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-wikimarkup-transformer",
|
|
3
|
-
"version": "11.1.
|
|
3
|
+
"version": "11.1.11",
|
|
4
4
|
"description": "Wiki markup transformer for JIRA and Confluence",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@atlaskit/adf-schema": "^
|
|
27
|
+
"@atlaskit/adf-schema": "^25.0.0",
|
|
28
28
|
"@atlaskit/editor-json-transformer": "^8.8.0",
|
|
29
29
|
"@atlaskit/theme": "^12.2.0",
|
|
30
30
|
"@babel/runtime": "^7.0.0",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@atlaskit/activity": "^1.0.1",
|
|
35
35
|
"@atlaskit/docs": "*",
|
|
36
|
-
"@atlaskit/editor-common": "^
|
|
37
|
-
"@atlaskit/editor-core": "^
|
|
38
|
-
"@atlaskit/editor-test-helpers": "^
|
|
36
|
+
"@atlaskit/editor-common": "^72.0.0",
|
|
37
|
+
"@atlaskit/editor-core": "^177.0.0",
|
|
38
|
+
"@atlaskit/editor-test-helpers": "^18.0.0",
|
|
39
39
|
"@atlaskit/mention": "^21.0.0",
|
|
40
|
-
"@atlaskit/profilecard": "^
|
|
41
|
-
"@atlaskit/renderer": "^
|
|
40
|
+
"@atlaskit/profilecard": "^18.0.0",
|
|
41
|
+
"@atlaskit/renderer": "^105.0.0",
|
|
42
42
|
"@atlaskit/util-data-test": "^17.6.0",
|
|
43
43
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
44
44
|
"@emotion/react": "^11.7.1",
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"cookie": "^0.3.1",
|
|
47
47
|
"debug": "^2.2.0",
|
|
48
48
|
"react": "^16.8.0",
|
|
49
|
+
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
49
50
|
"rxjs": "^5.5.0",
|
|
50
51
|
"typescript": "4.5.5"
|
|
51
52
|
},
|
package/report.api.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
### Table of contents
|
|
9
9
|
|
|
10
10
|
- [Main Entry Types](#main-entry-types)
|
|
11
|
+
- [Peer Dependencies](#peer-dependencies)
|
|
11
12
|
|
|
12
13
|
### Main Entry Types
|
|
13
14
|
|
|
@@ -85,3 +86,13 @@ export default WikiMarkupTransformer;
|
|
|
85
86
|
```
|
|
86
87
|
|
|
87
88
|
<!--SECTION END: Main Entry Types-->
|
|
89
|
+
|
|
90
|
+
### Peer Dependencies
|
|
91
|
+
|
|
92
|
+
<!--SECTION START: Peer Dependencies-->
|
|
93
|
+
|
|
94
|
+
```json
|
|
95
|
+
{}
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
<!--SECTION END: Peer Dependencies-->
|