@atlaskit/adf-schema 52.0.1 → 52.2.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 +22 -0
- package/dist/cjs/index.js +12 -0
- package/dist/cjs/next-schema/generated/markTypes.js +8 -1
- package/dist/cjs/next-schema/generated/nodeTypes.js +52 -15
- package/dist/cjs/next-schema/groups/blockContentGroup.js +1 -1
- package/dist/cjs/next-schema/groups/blockGroup.js +1 -1
- package/dist/cjs/next-schema/groups/nonNestableBlockContentGroup.js +1 -1
- package/dist/cjs/next-schema/groups/tableCellContentPseudoGroup.js +1 -1
- package/dist/cjs/next-schema/marks/fontSize.js +32 -0
- package/dist/cjs/next-schema/nodes/bodiedSyncBlock.js +1 -1
- package/dist/cjs/next-schema/nodes/extensionFrame.js +1 -1
- package/dist/cjs/next-schema/nodes/list.js +2 -2
- package/dist/cjs/next-schema/nodes/nestedExpand.js +1 -1
- package/dist/cjs/next-schema/nodes/panel.js +1 -1
- package/dist/cjs/next-schema/nodes/paragraph.js +16 -0
- package/dist/cjs/next-schema/nodes/task.js +5 -5
- package/dist/cjs/schema/create-schema.js +3 -0
- package/dist/cjs/schema/default-schema.js +1 -0
- package/dist/cjs/schema/index.js +12 -0
- package/dist/cjs/schema/marks/font-size.js +31 -0
- package/dist/cjs/schema/marks/index.js +7 -0
- package/dist/cjs/schema/nodes/index.js +6 -0
- package/dist/cjs/schema/nodes/task-list.js +18 -3
- package/dist/cjs/validator-schema/generated/validatorSpec.js +67 -14
- package/dist/es2019/index.js +2 -2
- package/dist/es2019/next-schema/generated/markTypes.js +7 -0
- package/dist/es2019/next-schema/generated/nodeTypes.js +51 -14
- package/dist/es2019/next-schema/groups/blockContentGroup.js +1 -1
- package/dist/es2019/next-schema/groups/blockGroup.js +1 -1
- package/dist/es2019/next-schema/groups/nonNestableBlockContentGroup.js +1 -1
- package/dist/es2019/next-schema/groups/tableCellContentPseudoGroup.js +1 -1
- package/dist/es2019/next-schema/marks/fontSize.js +27 -0
- package/dist/es2019/next-schema/nodes/bodiedSyncBlock.js +1 -1
- package/dist/es2019/next-schema/nodes/extensionFrame.js +1 -1
- package/dist/es2019/next-schema/nodes/list.js +3 -3
- package/dist/es2019/next-schema/nodes/nestedExpand.js +1 -1
- package/dist/es2019/next-schema/nodes/panel.js +1 -1
- package/dist/es2019/next-schema/nodes/paragraph.js +16 -0
- package/dist/es2019/next-schema/nodes/task.js +4 -4
- package/dist/es2019/schema/create-schema.js +4 -1
- package/dist/es2019/schema/default-schema.js +2 -1
- package/dist/es2019/schema/index.js +2 -2
- package/dist/es2019/schema/marks/font-size.js +25 -0
- package/dist/es2019/schema/marks/index.js +1 -0
- package/dist/es2019/schema/nodes/index.js +1 -1
- package/dist/es2019/schema/nodes/task-list.js +15 -3
- package/dist/es2019/validator-schema/generated/validatorSpec.js +66 -13
- package/dist/esm/index.js +2 -2
- package/dist/esm/next-schema/generated/markTypes.js +7 -0
- package/dist/esm/next-schema/generated/nodeTypes.js +51 -14
- package/dist/esm/next-schema/groups/blockContentGroup.js +1 -1
- package/dist/esm/next-schema/groups/blockGroup.js +1 -1
- package/dist/esm/next-schema/groups/nonNestableBlockContentGroup.js +1 -1
- package/dist/esm/next-schema/groups/tableCellContentPseudoGroup.js +1 -1
- package/dist/esm/next-schema/marks/fontSize.js +27 -0
- package/dist/esm/next-schema/nodes/bodiedSyncBlock.js +1 -1
- package/dist/esm/next-schema/nodes/extensionFrame.js +1 -1
- package/dist/esm/next-schema/nodes/list.js +3 -3
- package/dist/esm/next-schema/nodes/nestedExpand.js +1 -1
- package/dist/esm/next-schema/nodes/panel.js +1 -1
- package/dist/esm/next-schema/nodes/paragraph.js +16 -0
- package/dist/esm/next-schema/nodes/task.js +4 -4
- package/dist/esm/schema/create-schema.js +4 -1
- package/dist/esm/schema/default-schema.js +2 -1
- package/dist/esm/schema/index.js +2 -2
- package/dist/esm/schema/marks/font-size.js +25 -0
- package/dist/esm/schema/marks/index.js +1 -0
- package/dist/esm/schema/nodes/index.js +1 -1
- package/dist/esm/schema/nodes/task-list.js +16 -2
- package/dist/esm/validator-schema/generated/validatorSpec.js +66 -13
- package/dist/json-schema/v1/stage-0.json +173 -0
- package/dist/types/index.d.ts +3 -3
- package/dist/types/next-schema/generated/markTypes.d.ts +11 -0
- package/dist/types/next-schema/generated/nodeGroupTypes.d.ts +3 -3
- package/dist/types/next-schema/generated/nodeTypes.d.ts +52 -15
- package/dist/types/next-schema/marks/fontSize.d.ts +16 -0
- package/dist/types/next-schema/nodes/paragraph.d.ts +19 -1
- package/dist/types/next-schema/nodes/task.d.ts +9 -1
- package/dist/types/schema/index.d.ts +3 -3
- package/dist/types/schema/marks/font-size.d.ts +12 -0
- package/dist/types/schema/marks/index.d.ts +2 -0
- package/dist/types/schema/nodes/index.d.ts +2 -2
- package/dist/types/schema/nodes/task-list.d.ts +6 -1
- package/dist/types/validator-schema/generated/validatorSpec.d.ts +53 -0
- package/dist/types-ts4.5/index.d.ts +3 -3
- package/dist/types-ts4.5/next-schema/generated/markTypes.d.ts +11 -0
- package/dist/types-ts4.5/next-schema/generated/nodeGroupTypes.d.ts +3 -3
- package/dist/types-ts4.5/next-schema/generated/nodeTypes.d.ts +52 -15
- package/dist/types-ts4.5/next-schema/marks/fontSize.d.ts +16 -0
- package/dist/types-ts4.5/next-schema/nodes/paragraph.d.ts +19 -1
- package/dist/types-ts4.5/next-schema/nodes/task.d.ts +9 -1
- package/dist/types-ts4.5/schema/index.d.ts +3 -3
- package/dist/types-ts4.5/schema/marks/font-size.d.ts +12 -0
- package/dist/types-ts4.5/schema/marks/index.d.ts +2 -0
- package/dist/types-ts4.5/schema/nodes/index.d.ts +2 -2
- package/dist/types-ts4.5/schema/nodes/task-list.d.ts +6 -1
- package/dist/types-ts4.5/validator-schema/generated/validatorSpec.d.ts +53 -0
- package/json-schema/v1/stage-0.json +173 -0
- package/package.json +2 -2
- package/schema-generators/__tests__/unit/adfToValidatorSpec.unit.ts +1 -0
|
@@ -712,6 +712,22 @@ export declare const extensionFrame: {
|
|
|
712
712
|
};
|
|
713
713
|
};
|
|
714
714
|
};
|
|
715
|
+
export declare const fontSize: {
|
|
716
|
+
props: {
|
|
717
|
+
type: {
|
|
718
|
+
type: string;
|
|
719
|
+
values: string[];
|
|
720
|
+
};
|
|
721
|
+
attrs: {
|
|
722
|
+
props: {
|
|
723
|
+
fontSize: {
|
|
724
|
+
type: string;
|
|
725
|
+
values: string[];
|
|
726
|
+
};
|
|
727
|
+
};
|
|
728
|
+
};
|
|
729
|
+
};
|
|
730
|
+
};
|
|
715
731
|
export declare const fragment: {
|
|
716
732
|
props: {
|
|
717
733
|
type: {
|
|
@@ -1558,6 +1574,33 @@ export declare const paragraph_with_alignment: (string | {
|
|
|
1558
1574
|
};
|
|
1559
1575
|
};
|
|
1560
1576
|
})[];
|
|
1577
|
+
export declare const paragraph_with_font_size: (string | {
|
|
1578
|
+
props: {
|
|
1579
|
+
marks: {
|
|
1580
|
+
type: string;
|
|
1581
|
+
optional: boolean;
|
|
1582
|
+
items: string[];
|
|
1583
|
+
};
|
|
1584
|
+
};
|
|
1585
|
+
})[];
|
|
1586
|
+
export declare const paragraph_with_font_size_and_alignment: (string | {
|
|
1587
|
+
props: {
|
|
1588
|
+
marks: {
|
|
1589
|
+
type: string;
|
|
1590
|
+
optional: boolean;
|
|
1591
|
+
items: string[][];
|
|
1592
|
+
};
|
|
1593
|
+
};
|
|
1594
|
+
})[];
|
|
1595
|
+
export declare const paragraph_with_font_size_and_indentation: (string | {
|
|
1596
|
+
props: {
|
|
1597
|
+
marks: {
|
|
1598
|
+
type: string;
|
|
1599
|
+
optional: boolean;
|
|
1600
|
+
items: string[][];
|
|
1601
|
+
};
|
|
1602
|
+
};
|
|
1603
|
+
})[];
|
|
1561
1604
|
export declare const paragraph_with_indentation: (string | {
|
|
1562
1605
|
props: {
|
|
1563
1606
|
marks: {
|
|
@@ -1900,6 +1943,16 @@ export declare const taskList: {
|
|
|
1900
1943
|
};
|
|
1901
1944
|
};
|
|
1902
1945
|
};
|
|
1946
|
+
export declare const taskList_with_flexible_first_child: (string | {
|
|
1947
|
+
props: {
|
|
1948
|
+
content: {
|
|
1949
|
+
type: string;
|
|
1950
|
+
items: string[][];
|
|
1951
|
+
minItems: number;
|
|
1952
|
+
allowUnsupportedBlock: boolean;
|
|
1953
|
+
};
|
|
1954
|
+
};
|
|
1955
|
+
})[];
|
|
1903
1956
|
export declare const text: {
|
|
1904
1957
|
props: {
|
|
1905
1958
|
type: {
|
|
@@ -81,6 +81,12 @@
|
|
|
81
81
|
{
|
|
82
82
|
"$ref": "#/definitions/paragraph_with_indentation_node"
|
|
83
83
|
},
|
|
84
|
+
{
|
|
85
|
+
"$ref": "#/definitions/paragraph_with_font_size_and_alignment_node"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"$ref": "#/definitions/paragraph_with_font_size_and_indentation_node"
|
|
89
|
+
},
|
|
84
90
|
{
|
|
85
91
|
"$ref": "#/definitions/mediaSingle_caption_node"
|
|
86
92
|
},
|
|
@@ -309,6 +315,9 @@
|
|
|
309
315
|
{
|
|
310
316
|
"$ref": "#/definitions/paragraph_with_no_marks_node"
|
|
311
317
|
},
|
|
318
|
+
{
|
|
319
|
+
"$ref": "#/definitions/paragraph_with_font_size_node"
|
|
320
|
+
},
|
|
312
321
|
{
|
|
313
322
|
"$ref": "#/definitions/extension_with_marks_node"
|
|
314
323
|
}
|
|
@@ -319,6 +328,9 @@
|
|
|
319
328
|
{
|
|
320
329
|
"$ref": "#/definitions/paragraph_with_no_marks_node"
|
|
321
330
|
},
|
|
331
|
+
{
|
|
332
|
+
"$ref": "#/definitions/paragraph_with_font_size_node"
|
|
333
|
+
},
|
|
322
334
|
{
|
|
323
335
|
"$ref": "#/definitions/extension_with_marks_node"
|
|
324
336
|
}
|
|
@@ -441,6 +453,12 @@
|
|
|
441
453
|
{
|
|
442
454
|
"$ref": "#/definitions/paragraph_with_indentation_node"
|
|
443
455
|
},
|
|
456
|
+
{
|
|
457
|
+
"$ref": "#/definitions/paragraph_with_font_size_and_alignment_node"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"$ref": "#/definitions/paragraph_with_font_size_and_indentation_node"
|
|
461
|
+
},
|
|
444
462
|
{
|
|
445
463
|
"$ref": "#/definitions/paragraph_with_no_marks_node"
|
|
446
464
|
},
|
|
@@ -905,6 +923,12 @@
|
|
|
905
923
|
{
|
|
906
924
|
"$ref": "#/definitions/paragraph_with_indentation_node"
|
|
907
925
|
},
|
|
926
|
+
{
|
|
927
|
+
"$ref": "#/definitions/paragraph_with_font_size_and_alignment_node"
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"$ref": "#/definitions/paragraph_with_font_size_and_indentation_node"
|
|
931
|
+
},
|
|
908
932
|
{
|
|
909
933
|
"$ref": "#/definitions/paragraph_with_no_marks_node"
|
|
910
934
|
},
|
|
@@ -1250,6 +1274,9 @@
|
|
|
1250
1274
|
{
|
|
1251
1275
|
"$ref": "#/definitions/paragraph_with_no_marks_node"
|
|
1252
1276
|
},
|
|
1277
|
+
{
|
|
1278
|
+
"$ref": "#/definitions/paragraph_with_font_size_node"
|
|
1279
|
+
},
|
|
1253
1280
|
{
|
|
1254
1281
|
"$ref": "#/definitions/panel_node"
|
|
1255
1282
|
},
|
|
@@ -1309,6 +1336,26 @@
|
|
|
1309
1336
|
"additionalProperties": false,
|
|
1310
1337
|
"required": ["type", "content"]
|
|
1311
1338
|
},
|
|
1339
|
+
"fontSize_mark": {
|
|
1340
|
+
"type": "object",
|
|
1341
|
+
"properties": {
|
|
1342
|
+
"type": {
|
|
1343
|
+
"enum": ["fontSize"]
|
|
1344
|
+
},
|
|
1345
|
+
"attrs": {
|
|
1346
|
+
"type": "object",
|
|
1347
|
+
"properties": {
|
|
1348
|
+
"fontSize": {
|
|
1349
|
+
"enum": ["small"]
|
|
1350
|
+
}
|
|
1351
|
+
},
|
|
1352
|
+
"required": ["fontSize"],
|
|
1353
|
+
"additionalProperties": false
|
|
1354
|
+
}
|
|
1355
|
+
},
|
|
1356
|
+
"required": ["type", "attrs"],
|
|
1357
|
+
"additionalProperties": false
|
|
1358
|
+
},
|
|
1312
1359
|
"formatted_text_inline_node": {
|
|
1313
1360
|
"allOf": [
|
|
1314
1361
|
{
|
|
@@ -1835,6 +1882,9 @@
|
|
|
1835
1882
|
"items": [
|
|
1836
1883
|
{
|
|
1837
1884
|
"anyOf": [
|
|
1885
|
+
{
|
|
1886
|
+
"$ref": "#/definitions/paragraph_with_font_size_node"
|
|
1887
|
+
},
|
|
1838
1888
|
{
|
|
1839
1889
|
"$ref": "#/definitions/paragraph_with_no_marks_node"
|
|
1840
1890
|
},
|
|
@@ -1854,6 +1904,9 @@
|
|
|
1854
1904
|
},
|
|
1855
1905
|
{
|
|
1856
1906
|
"anyOf": [
|
|
1907
|
+
{
|
|
1908
|
+
"$ref": "#/definitions/paragraph_with_font_size_node"
|
|
1909
|
+
},
|
|
1857
1910
|
{
|
|
1858
1911
|
"$ref": "#/definitions/paragraph_with_no_marks_node"
|
|
1859
1912
|
},
|
|
@@ -1906,6 +1959,9 @@
|
|
|
1906
1959
|
"type": "array",
|
|
1907
1960
|
"items": {
|
|
1908
1961
|
"anyOf": [
|
|
1962
|
+
{
|
|
1963
|
+
"$ref": "#/definitions/paragraph_with_font_size_node"
|
|
1964
|
+
},
|
|
1909
1965
|
{
|
|
1910
1966
|
"$ref": "#/definitions/paragraph_with_no_marks_node"
|
|
1911
1967
|
},
|
|
@@ -1918,6 +1974,9 @@
|
|
|
1918
1974
|
{
|
|
1919
1975
|
"$ref": "#/definitions/taskList_node"
|
|
1920
1976
|
},
|
|
1977
|
+
{
|
|
1978
|
+
"$ref": "#/definitions/taskList_with_flexible_first_child_node"
|
|
1979
|
+
},
|
|
1921
1980
|
{
|
|
1922
1981
|
"$ref": "#/definitions/mediaSingle_caption_node"
|
|
1923
1982
|
},
|
|
@@ -2320,6 +2379,9 @@
|
|
|
2320
2379
|
{
|
|
2321
2380
|
"$ref": "#/definitions/paragraph_with_no_marks_node"
|
|
2322
2381
|
},
|
|
2382
|
+
{
|
|
2383
|
+
"$ref": "#/definitions/paragraph_with_font_size_node"
|
|
2384
|
+
},
|
|
2323
2385
|
{
|
|
2324
2386
|
"$ref": "#/definitions/heading_with_no_marks_node"
|
|
2325
2387
|
},
|
|
@@ -2410,6 +2472,9 @@
|
|
|
2410
2472
|
{
|
|
2411
2473
|
"$ref": "#/definitions/paragraph_with_no_marks_node"
|
|
2412
2474
|
},
|
|
2475
|
+
{
|
|
2476
|
+
"$ref": "#/definitions/paragraph_with_font_size_node"
|
|
2477
|
+
},
|
|
2413
2478
|
{
|
|
2414
2479
|
"$ref": "#/definitions/panel_node"
|
|
2415
2480
|
},
|
|
@@ -2543,6 +2608,9 @@
|
|
|
2543
2608
|
{
|
|
2544
2609
|
"$ref": "#/definitions/paragraph_with_no_marks_node"
|
|
2545
2610
|
},
|
|
2611
|
+
{
|
|
2612
|
+
"$ref": "#/definitions/paragraph_with_font_size_node"
|
|
2613
|
+
},
|
|
2546
2614
|
{
|
|
2547
2615
|
"$ref": "#/definitions/heading_with_no_marks_node"
|
|
2548
2616
|
},
|
|
@@ -2634,6 +2702,77 @@
|
|
|
2634
2702
|
}
|
|
2635
2703
|
]
|
|
2636
2704
|
},
|
|
2705
|
+
"paragraph_with_font_size_and_alignment_node": {
|
|
2706
|
+
"allOf": [
|
|
2707
|
+
{
|
|
2708
|
+
"$ref": "#/definitions/paragraph_node"
|
|
2709
|
+
},
|
|
2710
|
+
{
|
|
2711
|
+
"type": "object",
|
|
2712
|
+
"properties": {
|
|
2713
|
+
"marks": {
|
|
2714
|
+
"type": "array",
|
|
2715
|
+
"items": {
|
|
2716
|
+
"anyOf": [
|
|
2717
|
+
{
|
|
2718
|
+
"$ref": "#/definitions/fontSize_mark"
|
|
2719
|
+
},
|
|
2720
|
+
{
|
|
2721
|
+
"$ref": "#/definitions/alignment_mark"
|
|
2722
|
+
}
|
|
2723
|
+
]
|
|
2724
|
+
}
|
|
2725
|
+
}
|
|
2726
|
+
},
|
|
2727
|
+
"additionalProperties": true
|
|
2728
|
+
}
|
|
2729
|
+
]
|
|
2730
|
+
},
|
|
2731
|
+
"paragraph_with_font_size_and_indentation_node": {
|
|
2732
|
+
"allOf": [
|
|
2733
|
+
{
|
|
2734
|
+
"$ref": "#/definitions/paragraph_node"
|
|
2735
|
+
},
|
|
2736
|
+
{
|
|
2737
|
+
"type": "object",
|
|
2738
|
+
"properties": {
|
|
2739
|
+
"marks": {
|
|
2740
|
+
"type": "array",
|
|
2741
|
+
"items": {
|
|
2742
|
+
"anyOf": [
|
|
2743
|
+
{
|
|
2744
|
+
"$ref": "#/definitions/fontSize_mark"
|
|
2745
|
+
},
|
|
2746
|
+
{
|
|
2747
|
+
"$ref": "#/definitions/indentation_mark"
|
|
2748
|
+
}
|
|
2749
|
+
]
|
|
2750
|
+
}
|
|
2751
|
+
}
|
|
2752
|
+
},
|
|
2753
|
+
"additionalProperties": true
|
|
2754
|
+
}
|
|
2755
|
+
]
|
|
2756
|
+
},
|
|
2757
|
+
"paragraph_with_font_size_node": {
|
|
2758
|
+
"allOf": [
|
|
2759
|
+
{
|
|
2760
|
+
"$ref": "#/definitions/paragraph_node"
|
|
2761
|
+
},
|
|
2762
|
+
{
|
|
2763
|
+
"type": "object",
|
|
2764
|
+
"properties": {
|
|
2765
|
+
"marks": {
|
|
2766
|
+
"type": "array",
|
|
2767
|
+
"items": {
|
|
2768
|
+
"$ref": "#/definitions/fontSize_mark"
|
|
2769
|
+
}
|
|
2770
|
+
}
|
|
2771
|
+
},
|
|
2772
|
+
"additionalProperties": true
|
|
2773
|
+
}
|
|
2774
|
+
]
|
|
2775
|
+
},
|
|
2637
2776
|
"paragraph_with_indentation_node": {
|
|
2638
2777
|
"allOf": [
|
|
2639
2778
|
{
|
|
@@ -2827,6 +2966,9 @@
|
|
|
2827
2966
|
{
|
|
2828
2967
|
"$ref": "#/definitions/paragraph_with_alignment_node"
|
|
2829
2968
|
},
|
|
2969
|
+
{
|
|
2970
|
+
"$ref": "#/definitions/paragraph_with_font_size_and_alignment_node"
|
|
2971
|
+
},
|
|
2830
2972
|
{
|
|
2831
2973
|
"$ref": "#/definitions/panel_node"
|
|
2832
2974
|
},
|
|
@@ -3121,6 +3263,37 @@
|
|
|
3121
3263
|
"additionalProperties": false,
|
|
3122
3264
|
"required": ["type", "attrs", "content"]
|
|
3123
3265
|
},
|
|
3266
|
+
"taskList_with_flexible_first_child_node": {
|
|
3267
|
+
"allOf": [
|
|
3268
|
+
{
|
|
3269
|
+
"$ref": "#/definitions/taskList_node"
|
|
3270
|
+
},
|
|
3271
|
+
{
|
|
3272
|
+
"type": "object",
|
|
3273
|
+
"properties": {
|
|
3274
|
+
"content": {
|
|
3275
|
+
"type": "array",
|
|
3276
|
+
"items": {
|
|
3277
|
+
"anyOf": [
|
|
3278
|
+
{
|
|
3279
|
+
"$ref": "#/definitions/taskItem_node"
|
|
3280
|
+
},
|
|
3281
|
+
{
|
|
3282
|
+
"$ref": "#/definitions/taskList_node"
|
|
3283
|
+
},
|
|
3284
|
+
{
|
|
3285
|
+
"$ref": "#/definitions/blockTaskItem_node"
|
|
3286
|
+
}
|
|
3287
|
+
]
|
|
3288
|
+
},
|
|
3289
|
+
"minItems": 1
|
|
3290
|
+
}
|
|
3291
|
+
},
|
|
3292
|
+
"required": ["content"],
|
|
3293
|
+
"additionalProperties": true
|
|
3294
|
+
}
|
|
3295
|
+
]
|
|
3296
|
+
},
|
|
3124
3297
|
"text_node": {
|
|
3125
3298
|
"type": "object",
|
|
3126
3299
|
"properties": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/adf-schema",
|
|
3
|
-
"version": "52.0
|
|
3
|
+
"version": "52.2.0",
|
|
4
4
|
"description": "Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@atlaskit/adf-schema-generator": "^2.1.0",
|
|
44
44
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
45
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
45
|
+
"@atlaskit/tmp-editor-statsig": "^33.0.0",
|
|
46
46
|
"@babel/runtime": "^7.0.0",
|
|
47
47
|
"css-color-names": "0.0.4",
|
|
48
48
|
"linkify-it": "^3.0.3",
|