@atlaskit/editor-plugin-date 4.1.0 → 4.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
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-date
|
|
2
2
|
|
|
3
|
+
## 4.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#122140](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/122140)
|
|
8
|
+
[`3f7b2bc0c6ef0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3f7b2bc0c6ef0) -
|
|
9
|
+
Add missing dependencies to the package.json file
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 4.1.1
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 4.1.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -24,7 +24,7 @@ var intl;
|
|
|
24
24
|
* @returns
|
|
25
25
|
*/
|
|
26
26
|
var dateNodeSpec = exports.dateNodeSpec = function dateNodeSpec() {
|
|
27
|
-
if (isSSR || (0, _experiments.editorExperiment)(
|
|
27
|
+
if (isSSR || (0, _experiments.editorExperiment)('platform_editor_inline_node_virtualization', 'off')) {
|
|
28
28
|
return _adfSchema.date;
|
|
29
29
|
}
|
|
30
30
|
return _objectSpread(_objectSpread({}, _adfSchema.date), {}, {
|
|
@@ -14,7 +14,7 @@ let intl;
|
|
|
14
14
|
* @returns
|
|
15
15
|
*/
|
|
16
16
|
export const dateNodeSpec = () => {
|
|
17
|
-
if (isSSR || editorExperiment(
|
|
17
|
+
if (isSSR || editorExperiment('platform_editor_inline_node_virtualization', 'off')) {
|
|
18
18
|
return date;
|
|
19
19
|
}
|
|
20
20
|
return {
|
|
@@ -17,7 +17,7 @@ var intl;
|
|
|
17
17
|
* @returns
|
|
18
18
|
*/
|
|
19
19
|
export var dateNodeSpec = function dateNodeSpec() {
|
|
20
|
-
if (isSSR || editorExperiment(
|
|
20
|
+
if (isSSR || editorExperiment('platform_editor_inline_node_virtualization', 'off')) {
|
|
21
21
|
return date;
|
|
22
22
|
}
|
|
23
23
|
return _objectSpread(_objectSpread({}, date), {}, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-date",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
4
4
|
"description": "Date plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"@atlaskit/calendar": "^17.1.0",
|
|
38
38
|
"@atlaskit/css": "^0.10.0",
|
|
39
39
|
"@atlaskit/date": "^2.0.0",
|
|
40
|
-
"@atlaskit/editor-common": "^
|
|
40
|
+
"@atlaskit/editor-common": "^101.1.0",
|
|
41
41
|
"@atlaskit/editor-plugin-analytics": "^2.1.0",
|
|
42
|
-
"@atlaskit/editor-plugin-annotation": "2.1.
|
|
42
|
+
"@atlaskit/editor-plugin-annotation": "2.1.1",
|
|
43
43
|
"@atlaskit/editor-plugin-editor-disabled": "^2.0.0",
|
|
44
44
|
"@atlaskit/editor-plugin-editor-viewmode": "^3.0.0",
|
|
45
45
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
51
51
|
"@atlaskit/textfield": "8.0.0",
|
|
52
52
|
"@atlaskit/theme": "^17.0.0",
|
|
53
|
+
"@atlaskit/tmp-editor-statsig": "^3.4.0",
|
|
53
54
|
"@atlaskit/tokens": "^4.3.0",
|
|
54
55
|
"@babel/runtime": "^7.0.0",
|
|
55
56
|
"date-fns": "^2.17.0",
|