@atlaskit/editor-plugin-date 4.3.5 → 4.3.7

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.3.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#160577](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/160577)
8
+ [`bd533bfddae0c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bd533bfddae0c) -
9
+ Cleaned up popup fg
10
+ - Updated dependencies
11
+
12
+ ## 4.3.6
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+
3
18
  ## 4.3.5
4
19
 
5
20
  ### Patch Changes
@@ -11,7 +11,19 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/de
11
11
  var _model = require("@atlaskit/editor-prosemirror/model");
12
12
  var _actions = require("../pm-plugins/actions");
13
13
  var _dateNodeSpec = require("./dateNodeSpec");
14
+ /**
15
+ *
16
+ */
14
17
  var DateNodeView = exports.DateNodeView = /*#__PURE__*/function () {
18
+ /**
19
+ *
20
+ * @param node
21
+ * @param view
22
+ * @param getPos
23
+ * @param intl
24
+ * @param decorations
25
+ * @example
26
+ */
15
27
  function DateNodeView(node, view, getPos, intl, decorations) {
16
28
  var _this = this;
17
29
  (0, _classCallCheck2.default)(this, DateNodeView);
@@ -35,6 +47,12 @@ var DateNodeView = exports.DateNodeView = /*#__PURE__*/function () {
35
47
  });
36
48
  this.parentTaskState = DateNodeView.getParentTaskState(decorations);
37
49
  }
50
+ /**
51
+ *
52
+ * @param node
53
+ * @param decorations
54
+ * @example
55
+ */
38
56
  return (0, _createClass2.default)(DateNodeView, [{
39
57
  key: "update",
40
58
  value: function update(node, decorations) {
@@ -23,6 +23,7 @@ var intlRef;
23
23
  * with fallback UI for lazy node view rendering / window virtualization
24
24
  * @nodeSpecException:toDOM patch
25
25
  * @returns
26
+ * @example
26
27
  */
27
28
  var dateNodeSpec = exports.dateNodeSpec = function dateNodeSpec() {
28
29
  if ((0, _coreUtils.isSSR)()) {
@@ -77,8 +78,9 @@ var dateToDOM = exports.dateToDOM = function dateToDOM(node, state, getPos, intl
77
78
  'data-node-type': 'date',
78
79
  'data-timestamp': timestamp
79
80
  };
80
- var attrs = color === undefined ? {} : {
81
- class: "date-node-color-".concat(color)
81
+ var attrs = {
82
+ class: !color ? '' : "date-node-color-".concat(color),
83
+ style: "white-space: unset"
82
84
  };
83
85
  return ['span', nodeWrapperAttrs, ['span', {
84
86
  class: 'zeroWidthSpaceContainer'
@@ -9,7 +9,6 @@ exports.onSelectionChanged = onSelectionChanged;
9
9
  exports.reducer = reducer;
10
10
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
11
11
  var _state = require("@atlaskit/editor-prosemirror/state");
12
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
13
12
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
14
13
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
15
14
  function reducer(pluginState, meta) {
@@ -37,23 +36,13 @@ function mapping(tr, pluginState) {
37
36
  var _tr$mapping$mapResult = tr.mapping.mapResult(pluginState.showDatePickerAt),
38
37
  pos = _tr$mapping$mapResult.pos,
39
38
  deleted = _tr$mapping$mapResult.deleted;
40
- if ((0, _platformFeatureFlags.fg)('platform_editor_ed-27630_date_popup_deleted_node')) {
41
- return {
42
- showDatePickerAt: deleted ? null : pos,
43
- isNew: pluginState.isNew,
44
- isDateEmpty: pluginState.isDateEmpty,
45
- focusDateInput: pluginState.focusDateInput,
46
- isInitialised: pluginState.isInitialised
47
- };
48
- } else {
49
- return {
50
- showDatePickerAt: pos,
51
- isNew: pluginState.isNew,
52
- isDateEmpty: pluginState.isDateEmpty,
53
- focusDateInput: pluginState.focusDateInput,
54
- isInitialised: pluginState.isInitialised
55
- };
56
- }
39
+ return {
40
+ showDatePickerAt: deleted ? null : pos,
41
+ isNew: pluginState.isNew,
42
+ isDateEmpty: pluginState.isDateEmpty,
43
+ focusDateInput: pluginState.focusDateInput,
44
+ isInitialised: pluginState.isInitialised
45
+ };
57
46
  }
58
47
  function onSelectionChanged(tr, pluginState) {
59
48
  if (tr.docChanged && isDateNodeSelection(tr.selection)) {
@@ -2,7 +2,20 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
2
  import { DOMSerializer } from '@atlaskit/editor-prosemirror/model';
3
3
  import { setDatePickerAt } from '../pm-plugins/actions';
4
4
  import { dateToDOM } from './dateNodeSpec';
5
+
6
+ /**
7
+ *
8
+ */
5
9
  export class DateNodeView {
10
+ /**
11
+ *
12
+ * @param node
13
+ * @param view
14
+ * @param getPos
15
+ * @param intl
16
+ * @param decorations
17
+ * @example
18
+ */
6
19
  constructor(node, view, getPos, intl, decorations) {
7
20
  _defineProperty(this, "parentTaskState", '');
8
21
  this.node = node;
@@ -26,6 +39,12 @@ export class DateNodeView {
26
39
  });
27
40
  this.parentTaskState = DateNodeView.getParentTaskState(decorations);
28
41
  }
42
+ /**
43
+ *
44
+ * @param node
45
+ * @param decorations
46
+ * @example
47
+ */
29
48
  update(node, decorations) {
30
49
  // we're only interested in two scenarios to trigger a DOM update:
31
50
  // 1. the date value (timestamp) has changed
@@ -13,6 +13,7 @@ let intlRef;
13
13
  * with fallback UI for lazy node view rendering / window virtualization
14
14
  * @nodeSpecException:toDOM patch
15
15
  * @returns
16
+ * @example
16
17
  */
17
18
  export const dateNodeSpec = () => {
18
19
  if (isSSR()) {
@@ -69,8 +70,9 @@ export const dateToDOM = (node, state, getPos, intl) => {
69
70
  'data-node-type': 'date',
70
71
  'data-timestamp': timestamp
71
72
  };
72
- const attrs = color === undefined ? {} : {
73
- class: `date-node-color-${color}`
73
+ const attrs = {
74
+ class: !color ? '' : `date-node-color-${color}`,
75
+ style: `white-space: unset`
74
76
  };
75
77
  return ['span', nodeWrapperAttrs, ['span', {
76
78
  class: 'zeroWidthSpaceContainer'
@@ -1,5 +1,4 @@
1
1
  import { NodeSelection } from '@atlaskit/editor-prosemirror/state';
2
- import { fg } from '@atlaskit/platform-feature-flags';
3
2
  export function reducer(pluginState, meta) {
4
3
  // If the same nodeview is clicked twice, calendar should close
5
4
  if (meta.showDatePickerAt === pluginState.showDatePickerAt) {
@@ -36,23 +35,13 @@ export function mapping(tr, pluginState) {
36
35
  pos,
37
36
  deleted
38
37
  } = tr.mapping.mapResult(pluginState.showDatePickerAt);
39
- if (fg('platform_editor_ed-27630_date_popup_deleted_node')) {
40
- return {
41
- showDatePickerAt: deleted ? null : pos,
42
- isNew: pluginState.isNew,
43
- isDateEmpty: pluginState.isDateEmpty,
44
- focusDateInput: pluginState.focusDateInput,
45
- isInitialised: pluginState.isInitialised
46
- };
47
- } else {
48
- return {
49
- showDatePickerAt: pos,
50
- isNew: pluginState.isNew,
51
- isDateEmpty: pluginState.isDateEmpty,
52
- focusDateInput: pluginState.focusDateInput,
53
- isInitialised: pluginState.isInitialised
54
- };
55
- }
38
+ return {
39
+ showDatePickerAt: deleted ? null : pos,
40
+ isNew: pluginState.isNew,
41
+ isDateEmpty: pluginState.isDateEmpty,
42
+ focusDateInput: pluginState.focusDateInput,
43
+ isInitialised: pluginState.isInitialised
44
+ };
56
45
  }
57
46
  export function onSelectionChanged(tr, pluginState) {
58
47
  if (tr.docChanged && isDateNodeSelection(tr.selection)) {
@@ -4,7 +4,20 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
4
4
  import { DOMSerializer } from '@atlaskit/editor-prosemirror/model';
5
5
  import { setDatePickerAt } from '../pm-plugins/actions';
6
6
  import { dateToDOM } from './dateNodeSpec';
7
+
8
+ /**
9
+ *
10
+ */
7
11
  export var DateNodeView = /*#__PURE__*/function () {
12
+ /**
13
+ *
14
+ * @param node
15
+ * @param view
16
+ * @param getPos
17
+ * @param intl
18
+ * @param decorations
19
+ * @example
20
+ */
8
21
  function DateNodeView(node, view, getPos, intl, decorations) {
9
22
  var _this = this;
10
23
  _classCallCheck(this, DateNodeView);
@@ -28,6 +41,12 @@ export var DateNodeView = /*#__PURE__*/function () {
28
41
  });
29
42
  this.parentTaskState = DateNodeView.getParentTaskState(decorations);
30
43
  }
44
+ /**
45
+ *
46
+ * @param node
47
+ * @param decorations
48
+ * @example
49
+ */
31
50
  return _createClass(DateNodeView, [{
32
51
  key: "update",
33
52
  value: function update(node, decorations) {
@@ -16,6 +16,7 @@ var intlRef;
16
16
  * with fallback UI for lazy node view rendering / window virtualization
17
17
  * @nodeSpecException:toDOM patch
18
18
  * @returns
19
+ * @example
19
20
  */
20
21
  export var dateNodeSpec = function dateNodeSpec() {
21
22
  if (isSSR()) {
@@ -70,8 +71,9 @@ export var dateToDOM = function dateToDOM(node, state, getPos, intl) {
70
71
  'data-node-type': 'date',
71
72
  'data-timestamp': timestamp
72
73
  };
73
- var attrs = color === undefined ? {} : {
74
- class: "date-node-color-".concat(color)
74
+ var attrs = {
75
+ class: !color ? '' : "date-node-color-".concat(color),
76
+ style: "white-space: unset"
75
77
  };
76
78
  return ['span', nodeWrapperAttrs, ['span', {
77
79
  class: 'zeroWidthSpaceContainer'
@@ -2,7 +2,6 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
2
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
3
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
4
4
  import { NodeSelection } from '@atlaskit/editor-prosemirror/state';
5
- import { fg } from '@atlaskit/platform-feature-flags';
6
5
  export function reducer(pluginState, meta) {
7
6
  // If the same nodeview is clicked twice, calendar should close
8
7
  if (meta.showDatePickerAt === pluginState.showDatePickerAt) {
@@ -28,23 +27,13 @@ export function mapping(tr, pluginState) {
28
27
  var _tr$mapping$mapResult = tr.mapping.mapResult(pluginState.showDatePickerAt),
29
28
  pos = _tr$mapping$mapResult.pos,
30
29
  deleted = _tr$mapping$mapResult.deleted;
31
- if (fg('platform_editor_ed-27630_date_popup_deleted_node')) {
32
- return {
33
- showDatePickerAt: deleted ? null : pos,
34
- isNew: pluginState.isNew,
35
- isDateEmpty: pluginState.isDateEmpty,
36
- focusDateInput: pluginState.focusDateInput,
37
- isInitialised: pluginState.isInitialised
38
- };
39
- } else {
40
- return {
41
- showDatePickerAt: pos,
42
- isNew: pluginState.isNew,
43
- isDateEmpty: pluginState.isDateEmpty,
44
- focusDateInput: pluginState.focusDateInput,
45
- isInitialised: pluginState.isInitialised
46
- };
47
- }
30
+ return {
31
+ showDatePickerAt: deleted ? null : pos,
32
+ isNew: pluginState.isNew,
33
+ isDateEmpty: pluginState.isDateEmpty,
34
+ focusDateInput: pluginState.focusDateInput,
35
+ isInitialised: pluginState.isInitialised
36
+ };
48
37
  }
49
38
  export function onSelectionChanged(tr, pluginState) {
50
39
  if (tr.docChanged && isDateNodeSelection(tr.selection)) {
@@ -1,8 +1,11 @@
1
- import { IntlShape } from 'react-intl-next';
1
+ import { type IntlShape } from 'react-intl-next';
2
2
  import type { getPosHandlerNode } from '@atlaskit/editor-common/types';
3
3
  import type { Node as PMNode } from '@atlaskit/editor-prosemirror/model';
4
4
  import { EditorView } from '@atlaskit/editor-prosemirror/view';
5
5
  import type { Decoration, NodeView } from '@atlaskit/editor-prosemirror/view';
6
+ /**
7
+ *
8
+ */
6
9
  export declare class DateNodeView implements NodeView {
7
10
  dom: Node;
8
11
  private node;
@@ -10,7 +13,22 @@ export declare class DateNodeView implements NodeView {
10
13
  private readonly view;
11
14
  private readonly getPos;
12
15
  private parentTaskState;
16
+ /**
17
+ *
18
+ * @param node
19
+ * @param view
20
+ * @param getPos
21
+ * @param intl
22
+ * @param decorations
23
+ * @example
24
+ */
13
25
  constructor(node: PMNode, view: EditorView, getPos: getPosHandlerNode, intl: IntlShape, decorations: ReadonlyArray<Decoration>);
26
+ /**
27
+ *
28
+ * @param node
29
+ * @param decorations
30
+ * @example
31
+ */
14
32
  update(node: PMNode, decorations: ReadonlyArray<Decoration>): boolean;
15
33
  private static getParentTaskState;
16
34
  }
@@ -1,5 +1,5 @@
1
1
  import type { IntlShape } from 'react-intl-next';
2
- import { getPosHandlerNode } from '@atlaskit/editor-common/types';
2
+ import type { getPosHandlerNode } from '@atlaskit/editor-common/types';
3
3
  import type { DOMOutputSpec, Node as PMNode } from '@atlaskit/editor-prosemirror/model';
4
4
  import { EditorState } from '@atlaskit/editor-prosemirror/state';
5
5
  /**
@@ -7,6 +7,7 @@ import { EditorState } from '@atlaskit/editor-prosemirror/state';
7
7
  * with fallback UI for lazy node view rendering / window virtualization
8
8
  * @nodeSpecException:toDOM patch
9
9
  * @returns
10
+ * @example
10
11
  */
11
12
  export declare const dateNodeSpec: () => import("prosemirror-model").NodeSpec;
12
13
  export declare const dateToDOMvirtualization: (node: PMNode) => DOMOutputSpec;
@@ -15,9 +16,8 @@ export declare const dateToDOM: (node: PMNode, state: EditorState, getPos: getPo
15
16
  } | (string | {
16
17
  class: string;
17
18
  })[])[], (string | Record<string, string> | (string | {
18
- class?: undefined;
19
- } | {
20
19
  class: string;
20
+ style: string;
21
21
  })[])[], (string | {
22
22
  class: string;
23
23
  contentEditable: string;
@@ -40,7 +40,6 @@ export declare const closeDatePickerWithAnalytics: ({ date, pluginInjectionApi,
40
40
  pluginConfiguration?: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginOptions | undefined;
41
41
  commands: {
42
42
  updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
43
- updateContentMode: (action: import("packages/editor/editor-plugin-editor-viewmode/dist/types/editorViewmodePluginType").UpdateContentModeAction) => import("@atlaskit/editor-common/types").EditorCommand;
44
43
  };
45
44
  }, import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginOptions | undefined>>];
46
45
  sharedState: import("../types").DatePluginSharedState;
@@ -1,8 +1,11 @@
1
- import { IntlShape } from 'react-intl-next';
1
+ import { type IntlShape } from 'react-intl-next';
2
2
  import type { getPosHandlerNode } from '@atlaskit/editor-common/types';
3
3
  import type { Node as PMNode } from '@atlaskit/editor-prosemirror/model';
4
4
  import { EditorView } from '@atlaskit/editor-prosemirror/view';
5
5
  import type { Decoration, NodeView } from '@atlaskit/editor-prosemirror/view';
6
+ /**
7
+ *
8
+ */
6
9
  export declare class DateNodeView implements NodeView {
7
10
  dom: Node;
8
11
  private node;
@@ -10,7 +13,22 @@ export declare class DateNodeView implements NodeView {
10
13
  private readonly view;
11
14
  private readonly getPos;
12
15
  private parentTaskState;
16
+ /**
17
+ *
18
+ * @param node
19
+ * @param view
20
+ * @param getPos
21
+ * @param intl
22
+ * @param decorations
23
+ * @example
24
+ */
13
25
  constructor(node: PMNode, view: EditorView, getPos: getPosHandlerNode, intl: IntlShape, decorations: ReadonlyArray<Decoration>);
26
+ /**
27
+ *
28
+ * @param node
29
+ * @param decorations
30
+ * @example
31
+ */
14
32
  update(node: PMNode, decorations: ReadonlyArray<Decoration>): boolean;
15
33
  private static getParentTaskState;
16
34
  }
@@ -1,5 +1,5 @@
1
1
  import type { IntlShape } from 'react-intl-next';
2
- import { getPosHandlerNode } from '@atlaskit/editor-common/types';
2
+ import type { getPosHandlerNode } from '@atlaskit/editor-common/types';
3
3
  import type { DOMOutputSpec, Node as PMNode } from '@atlaskit/editor-prosemirror/model';
4
4
  import { EditorState } from '@atlaskit/editor-prosemirror/state';
5
5
  /**
@@ -7,6 +7,7 @@ import { EditorState } from '@atlaskit/editor-prosemirror/state';
7
7
  * with fallback UI for lazy node view rendering / window virtualization
8
8
  * @nodeSpecException:toDOM patch
9
9
  * @returns
10
+ * @example
10
11
  */
11
12
  export declare const dateNodeSpec: () => import("prosemirror-model").NodeSpec;
12
13
  export declare const dateToDOMvirtualization: (node: PMNode) => DOMOutputSpec;
@@ -19,9 +20,8 @@ export declare const dateToDOM: (node: PMNode, state: EditorState, getPos: getPo
19
20
  class: string;
20
21
  })[])[],
21
22
  (string | Record<string, string> | (string | {
22
- class?: undefined;
23
- } | {
24
23
  class: string;
24
+ style: string;
25
25
  })[])[],
26
26
  (string | {
27
27
  class: string;
@@ -47,7 +47,6 @@ export declare const closeDatePickerWithAnalytics: ({ date, pluginInjectionApi,
47
47
  pluginConfiguration?: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginOptions | undefined;
48
48
  commands: {
49
49
  updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
50
- updateContentMode: (action: import("packages/editor/editor-plugin-editor-viewmode/dist/types/editorViewmodePluginType").UpdateContentModeAction) => import("@atlaskit/editor-common/types").EditorCommand;
51
50
  };
52
51
  }, import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginOptions | undefined>>
53
52
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-date",
3
- "version": "4.3.5",
3
+ "version": "4.3.7",
4
4
  "description": "Date plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -37,21 +37,21 @@
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": "^105.2.0",
40
+ "@atlaskit/editor-common": "^105.11.0",
41
41
  "@atlaskit/editor-plugin-analytics": "^2.3.0",
42
42
  "@atlaskit/editor-plugin-annotation": "^2.8.0",
43
43
  "@atlaskit/editor-plugin-editor-disabled": "^2.0.0",
44
- "@atlaskit/editor-plugin-editor-viewmode": "^3.1.0",
44
+ "@atlaskit/editor-plugin-editor-viewmode": "^4.0.0",
45
45
  "@atlaskit/editor-prosemirror": "7.0.0",
46
46
  "@atlaskit/editor-shared-styles": "^3.4.0",
47
47
  "@atlaskit/form": "^12.0.0",
48
- "@atlaskit/icon": "^26.0.0",
48
+ "@atlaskit/icon": "^26.3.0",
49
49
  "@atlaskit/locale": "^3.0.0",
50
50
  "@atlaskit/platform-feature-flags": "^1.1.0",
51
51
  "@atlaskit/textfield": "^8.0.0",
52
52
  "@atlaskit/theme": "^18.0.0",
53
- "@atlaskit/tmp-editor-statsig": "^4.21.0",
54
- "@atlaskit/tokens": "^4.8.0",
53
+ "@atlaskit/tmp-editor-statsig": "^5.1.0",
54
+ "@atlaskit/tokens": "^4.9.0",
55
55
  "@atlaskit/visually-hidden": "^3.0.0",
56
56
  "@babel/runtime": "^7.0.0",
57
57
  "bind-event-listener": "^3.0.0",
@@ -67,7 +67,7 @@
67
67
  "@atlaskit/editor-plugin-guideline": "^2.0.0",
68
68
  "@atlaskit/editor-plugin-quick-insert": "^2.5.0",
69
69
  "@atlaskit/editor-plugin-selection": "^2.2.0",
70
- "@atlaskit/editor-plugin-table": "^10.9.0",
70
+ "@atlaskit/editor-plugin-table": "^10.11.0",
71
71
  "@atlaskit/editor-plugin-tasks-and-decisions": "^5.1.0",
72
72
  "@atlaskit/editor-plugin-type-ahead": "^2.7.0",
73
73
  "@atlaskit/editor-plugin-width": "^3.0.0",
@@ -118,9 +118,6 @@
118
118
  },
119
119
  "editor_a11y_announce_date_picker_open": {
120
120
  "type": "boolean"
121
- },
122
- "platform_editor_ed-27630_date_popup_deleted_node": {
123
- "type": "boolean"
124
121
  }
125
122
  }
126
123
  }