@atlaskit/editor-core 172.0.1 → 172.0.4

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,28 @@
1
1
  # @atlaskit/editor-core
2
2
 
3
+ ## 172.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 172.0.3
10
+
11
+ ### Patch Changes
12
+
13
+ - [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
14
+ - Updated dependencies
15
+
16
+ ## 172.0.2
17
+
18
+ ### Patch Changes
19
+
20
+ - [`8ed516834c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8ed516834c1) - [ux] ED-15407: Bring forward patches below to master:
21
+
22
+ - ED-14988: Patch dark mode in mobile-bridge by ensuring theme context is not stale. Repaints editor nodes when theme mode changes.
23
+ - ME-2511: Revert the premature optimisation that introduces race condition.
24
+ - Partly from ED-15327: PortalProvider fix to ensure theme toggling updates nested mentions, nodes
25
+
3
26
  ## 172.0.1
4
27
 
5
28
  ### Patch Changes
@@ -46,7 +46,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
46
46
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
47
47
 
48
48
  var packageName = "@atlaskit/editor-core";
49
- var packageVersion = "172.0.1";
49
+ var packageVersion = "172.0.4";
50
50
  var halfFocusRing = 1;
51
51
  var dropOffset = "0, ".concat((0, _constants.gridSize)(), "px");
52
52
 
@@ -72,6 +72,7 @@ var ErrorBoundary = /*#__PURE__*/function (_React$Component) {
72
72
  attributes: {
73
73
  error: error,
74
74
  errorInfo: errorInfo,
75
+ // @ts-expect-error
75
76
  errorRethrown: !this.hasFallback()
76
77
  }
77
78
  });
@@ -75,6 +75,11 @@ var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
75
75
 
76
76
  var hasAnalyticsContext = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
77
77
  var hasIntlContext = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
78
+ this.portals.set(container, {
79
+ children: children,
80
+ hasAnalyticsContext: hasAnalyticsContext,
81
+ hasIntlContext: hasIntlContext
82
+ });
78
83
 
79
84
  var childrenWithThemeProviders = function childrenWithThemeProviders() {
80
85
  return /*#__PURE__*/_react.default.createElement(_PortalProviderThemesProvider.PortalProviderThemeProviders, {
@@ -82,11 +87,6 @@ var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
82
87
  }, children());
83
88
  };
84
89
 
85
- this.portals.set(container, {
86
- children: childrenWithThemeProviders,
87
- hasAnalyticsContext: hasAnalyticsContext,
88
- hasIntlContext: hasIntlContext
89
- });
90
90
  var wrappedChildren = this.useAnalyticsContext ? /*#__PURE__*/_react.default.createElement(AnalyticsContextWrapper, null, childrenWithThemeProviders()) : childrenWithThemeProviders();
91
91
 
92
92
  if (hasIntlContext) {
@@ -105,8 +105,10 @@ var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
105
105
  value: function forceUpdate(_ref) {
106
106
  var _this3 = this;
107
107
 
108
- var intl = _ref.intl;
108
+ var intl = _ref.intl,
109
+ themeMode = _ref.themeMode;
109
110
  this.intl = intl;
111
+ this.themeMode = themeMode;
110
112
  this.portals.forEach(function (portal, container) {
111
113
  if (!portal.hasAnalyticsContext && !_this3.useAnalyticsContext && !portal.hasIntlContext) {
112
114
  return;
@@ -114,14 +116,20 @@ var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
114
116
 
115
117
  var wrappedChildren = portal.children();
116
118
 
119
+ var childrenWithThemeProviders = function childrenWithThemeProviders() {
120
+ return /*#__PURE__*/_react.default.createElement(_PortalProviderThemesProvider.PortalProviderThemeProviders, {
121
+ mode: themeMode
122
+ }, wrappedChildren);
123
+ };
124
+
117
125
  if (portal.hasAnalyticsContext && _this3.useAnalyticsContext) {
118
- wrappedChildren = /*#__PURE__*/_react.default.createElement(AnalyticsContextWrapper, null, wrappedChildren);
126
+ wrappedChildren = /*#__PURE__*/_react.default.createElement(AnalyticsContextWrapper, null, childrenWithThemeProviders());
119
127
  }
120
128
 
121
129
  if (portal.hasIntlContext) {
122
130
  wrappedChildren = /*#__PURE__*/_react.default.createElement(_reactIntlNext.RawIntlProvider, {
123
131
  value: _this3.intl
124
- }, wrappedChildren);
132
+ }, childrenWithThemeProviders());
125
133
  }
126
134
 
127
135
  (0, _reactDom.unstable_renderSubtreeIntoContainer)(_this3.context, wrappedChildren, container);
@@ -188,7 +196,8 @@ var BasePortalProvider = /*#__PURE__*/function (_React$Component) {
188
196
  key: "componentDidUpdate",
189
197
  value: function componentDidUpdate() {
190
198
  this.portalProviderAPI.forceUpdate({
191
- intl: this.props.intl
199
+ intl: this.props.intl,
200
+ themeMode: this.props.themeMode
192
201
  });
193
202
  }
194
203
  }]);
@@ -303,7 +303,7 @@ function processRawValue(schema, value, providerFactory, sanitizePrivateContent,
303
303
  actionSubject: _enums.ACTION_SUBJECT.EDITOR,
304
304
  eventType: _enums.EVENT_TYPE.OPERATIONAL,
305
305
  attributes: {
306
- error: err === null || err === void 0 ? void 0 : err.toString()
306
+ errorStack: err === null || err === void 0 ? void 0 : err.toString()
307
307
  }
308
308
  });
309
309
  }
@@ -323,7 +323,7 @@ function processRawValue(schema, value, providerFactory, sanitizePrivateContent,
323
323
  actionSubject: _enums.ACTION_SUBJECT.EDITOR,
324
324
  eventType: _enums.EVENT_TYPE.OPERATIONAL,
325
325
  attributes: {
326
- error: e === null || e === void 0 ? void 0 : e.toString()
326
+ errorStack: e === null || e === void 0 ? void 0 : e.toString()
327
327
  }
328
328
  });
329
329
  } // eslint-disable-next-line no-console
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.version = exports.nextMajorVersion = exports.name = void 0;
7
7
  var name = "@atlaskit/editor-core";
8
8
  exports.name = name;
9
- var version = "172.0.1";
9
+ var version = "172.0.4";
10
10
  exports.version = version;
11
11
 
12
12
  var nextMajorVersion = function nextMajorVersion() {
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "172.0.1",
3
+ "version": "172.0.4",
4
4
  "sideEffects": false
5
5
  }
@@ -10,7 +10,7 @@ import { N0, DN50, DN600, N50A, N60A, N900 } from '@atlaskit/theme/colors';
10
10
  import { themed } from '@atlaskit/theme/components';
11
11
  import { token } from '@atlaskit/tokens';
12
12
  const packageName = "@atlaskit/editor-core";
13
- const packageVersion = "172.0.1";
13
+ const packageVersion = "172.0.4";
14
14
  const halfFocusRing = 1;
15
15
  const dropOffset = `0, ${gridSize()}px`;
16
16
 
@@ -28,6 +28,7 @@ export class ErrorBoundary extends React.Component {
28
28
  attributes: {
29
29
  error,
30
30
  errorInfo,
31
+ // @ts-expect-error
31
32
  errorRethrown: !this.hasFallback()
32
33
  }
33
34
  });
@@ -28,15 +28,16 @@ export class PortalProviderAPI extends EventDispatcher {
28
28
  }
29
29
 
30
30
  render(children, container, hasAnalyticsContext = false, hasIntlContext = false) {
31
- const childrenWithThemeProviders = () => /*#__PURE__*/React.createElement(PortalProviderThemeProviders, {
32
- mode: this.themeMode
33
- }, children());
34
-
35
31
  this.portals.set(container, {
36
- children: childrenWithThemeProviders,
32
+ children: children,
37
33
  hasAnalyticsContext,
38
34
  hasIntlContext
39
35
  });
36
+
37
+ const childrenWithThemeProviders = () => /*#__PURE__*/React.createElement(PortalProviderThemeProviders, {
38
+ mode: this.themeMode
39
+ }, children());
40
+
40
41
  let wrappedChildren = this.useAnalyticsContext ? /*#__PURE__*/React.createElement(AnalyticsContextWrapper, null, childrenWithThemeProviders()) : childrenWithThemeProviders();
41
42
 
42
43
  if (hasIntlContext) {
@@ -52,9 +53,11 @@ export class PortalProviderAPI extends EventDispatcher {
52
53
 
53
54
 
54
55
  forceUpdate({
55
- intl
56
+ intl,
57
+ themeMode
56
58
  }) {
57
59
  this.intl = intl;
60
+ this.themeMode = themeMode;
58
61
  this.portals.forEach((portal, container) => {
59
62
  if (!portal.hasAnalyticsContext && !this.useAnalyticsContext && !portal.hasIntlContext) {
60
63
  return;
@@ -62,14 +65,18 @@ export class PortalProviderAPI extends EventDispatcher {
62
65
 
63
66
  let wrappedChildren = portal.children();
64
67
 
68
+ const childrenWithThemeProviders = () => /*#__PURE__*/React.createElement(PortalProviderThemeProviders, {
69
+ mode: themeMode
70
+ }, wrappedChildren);
71
+
65
72
  if (portal.hasAnalyticsContext && this.useAnalyticsContext) {
66
- wrappedChildren = /*#__PURE__*/React.createElement(AnalyticsContextWrapper, null, wrappedChildren);
73
+ wrappedChildren = /*#__PURE__*/React.createElement(AnalyticsContextWrapper, null, childrenWithThemeProviders());
67
74
  }
68
75
 
69
76
  if (portal.hasIntlContext) {
70
77
  wrappedChildren = /*#__PURE__*/React.createElement(RawIntlProvider, {
71
78
  value: this.intl
72
- }, wrappedChildren);
79
+ }, childrenWithThemeProviders());
73
80
  }
74
81
 
75
82
  unstable_renderSubtreeIntoContainer(this.context, wrappedChildren, container);
@@ -121,7 +128,8 @@ class BasePortalProvider extends React.Component {
121
128
 
122
129
  componentDidUpdate() {
123
130
  this.portalProviderAPI.forceUpdate({
124
- intl: this.props.intl
131
+ intl: this.props.intl,
132
+ themeMode: this.props.themeMode
125
133
  });
126
134
  }
127
135
 
@@ -265,7 +265,7 @@ export function processRawValue(schema, value, providerFactory, sanitizePrivateC
265
265
  actionSubject: ACTION_SUBJECT.EDITOR,
266
266
  eventType: EVENT_TYPE.OPERATIONAL,
267
267
  attributes: {
268
- error: err === null || err === void 0 ? void 0 : err.toString()
268
+ errorStack: err === null || err === void 0 ? void 0 : err.toString()
269
269
  }
270
270
  });
271
271
  }
@@ -285,7 +285,7 @@ export function processRawValue(schema, value, providerFactory, sanitizePrivateC
285
285
  actionSubject: ACTION_SUBJECT.EDITOR,
286
286
  eventType: EVENT_TYPE.OPERATIONAL,
287
287
  attributes: {
288
- error: e === null || e === void 0 ? void 0 : e.toString()
288
+ errorStack: e === null || e === void 0 ? void 0 : e.toString()
289
289
  }
290
290
  });
291
291
  } // eslint-disable-next-line no-console
@@ -1,5 +1,5 @@
1
1
  export const name = "@atlaskit/editor-core";
2
- export const version = "172.0.1";
2
+ export const version = "172.0.4";
3
3
  export const nextMajorVersion = () => {
4
4
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
5
5
  };
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "172.0.1",
3
+ "version": "172.0.4",
4
4
  "sideEffects": false
5
5
  }
@@ -23,7 +23,7 @@ import { N0, DN50, DN600, N50A, N60A, N900 } from '@atlaskit/theme/colors';
23
23
  import { themed } from '@atlaskit/theme/components';
24
24
  import { token } from '@atlaskit/tokens';
25
25
  var packageName = "@atlaskit/editor-core";
26
- var packageVersion = "172.0.1";
26
+ var packageVersion = "172.0.4";
27
27
  var halfFocusRing = 1;
28
28
  var dropOffset = "0, ".concat(gridSize(), "px");
29
29
 
@@ -57,6 +57,7 @@ export var ErrorBoundary = /*#__PURE__*/function (_React$Component) {
57
57
  attributes: {
58
58
  error: error,
59
59
  errorInfo: errorInfo,
60
+ // @ts-expect-error
60
61
  errorRethrown: !this.hasFallback()
61
62
  }
62
63
  });
@@ -54,6 +54,11 @@ export var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
54
54
 
55
55
  var hasAnalyticsContext = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
56
56
  var hasIntlContext = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
57
+ this.portals.set(container, {
58
+ children: children,
59
+ hasAnalyticsContext: hasAnalyticsContext,
60
+ hasIntlContext: hasIntlContext
61
+ });
57
62
 
58
63
  var childrenWithThemeProviders = function childrenWithThemeProviders() {
59
64
  return /*#__PURE__*/React.createElement(PortalProviderThemeProviders, {
@@ -61,11 +66,6 @@ export var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
61
66
  }, children());
62
67
  };
63
68
 
64
- this.portals.set(container, {
65
- children: childrenWithThemeProviders,
66
- hasAnalyticsContext: hasAnalyticsContext,
67
- hasIntlContext: hasIntlContext
68
- });
69
69
  var wrappedChildren = this.useAnalyticsContext ? /*#__PURE__*/React.createElement(AnalyticsContextWrapper, null, childrenWithThemeProviders()) : childrenWithThemeProviders();
70
70
 
71
71
  if (hasIntlContext) {
@@ -84,8 +84,10 @@ export var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
84
84
  value: function forceUpdate(_ref) {
85
85
  var _this3 = this;
86
86
 
87
- var intl = _ref.intl;
87
+ var intl = _ref.intl,
88
+ themeMode = _ref.themeMode;
88
89
  this.intl = intl;
90
+ this.themeMode = themeMode;
89
91
  this.portals.forEach(function (portal, container) {
90
92
  if (!portal.hasAnalyticsContext && !_this3.useAnalyticsContext && !portal.hasIntlContext) {
91
93
  return;
@@ -93,14 +95,20 @@ export var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
93
95
 
94
96
  var wrappedChildren = portal.children();
95
97
 
98
+ var childrenWithThemeProviders = function childrenWithThemeProviders() {
99
+ return /*#__PURE__*/React.createElement(PortalProviderThemeProviders, {
100
+ mode: themeMode
101
+ }, wrappedChildren);
102
+ };
103
+
96
104
  if (portal.hasAnalyticsContext && _this3.useAnalyticsContext) {
97
- wrappedChildren = /*#__PURE__*/React.createElement(AnalyticsContextWrapper, null, wrappedChildren);
105
+ wrappedChildren = /*#__PURE__*/React.createElement(AnalyticsContextWrapper, null, childrenWithThemeProviders());
98
106
  }
99
107
 
100
108
  if (portal.hasIntlContext) {
101
109
  wrappedChildren = /*#__PURE__*/React.createElement(RawIntlProvider, {
102
110
  value: _this3.intl
103
- }, wrappedChildren);
111
+ }, childrenWithThemeProviders());
104
112
  }
105
113
 
106
114
  unstable_renderSubtreeIntoContainer(_this3.context, wrappedChildren, container);
@@ -167,7 +175,8 @@ var BasePortalProvider = /*#__PURE__*/function (_React$Component) {
167
175
  key: "componentDidUpdate",
168
176
  value: function componentDidUpdate() {
169
177
  this.portalProviderAPI.forceUpdate({
170
- intl: this.props.intl
178
+ intl: this.props.intl,
179
+ themeMode: this.props.themeMode
171
180
  });
172
181
  }
173
182
  }]);
@@ -262,7 +262,7 @@ export function processRawValue(schema, value, providerFactory, sanitizePrivateC
262
262
  actionSubject: ACTION_SUBJECT.EDITOR,
263
263
  eventType: EVENT_TYPE.OPERATIONAL,
264
264
  attributes: {
265
- error: err === null || err === void 0 ? void 0 : err.toString()
265
+ errorStack: err === null || err === void 0 ? void 0 : err.toString()
266
266
  }
267
267
  });
268
268
  }
@@ -282,7 +282,7 @@ export function processRawValue(schema, value, providerFactory, sanitizePrivateC
282
282
  actionSubject: ACTION_SUBJECT.EDITOR,
283
283
  eventType: EVENT_TYPE.OPERATIONAL,
284
284
  attributes: {
285
- error: e === null || e === void 0 ? void 0 : e.toString()
285
+ errorStack: e === null || e === void 0 ? void 0 : e.toString()
286
286
  }
287
287
  });
288
288
  } // eslint-disable-next-line no-console
@@ -1,5 +1,5 @@
1
1
  export var name = "@atlaskit/editor-core";
2
- export var version = "172.0.1";
2
+ export var version = "172.0.4";
3
3
  export var nextMajorVersion = function nextMajorVersion() {
4
4
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
5
5
  };
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "172.0.1",
3
+ "version": "172.0.4",
4
4
  "sideEffects": false
5
5
  }
@@ -28,8 +28,8 @@ export declare class TableRowNodeView implements NodeView {
28
28
  get tree(): TableDOMElements | null | undefined;
29
29
  constructor(node: PmNode, view: EditorView, getPos: any, eventDispatcher: EventDispatcher);
30
30
  listening: boolean;
31
- headerRowMouseScrollEnd: (() => void) & import("lodash").Cancelable;
32
- headerRowMouseScroll: (() => void) & import("lodash").Cancelable;
31
+ headerRowMouseScrollEnd: import("lodash").DebouncedFunc<() => void>;
32
+ headerRowMouseScroll: import("lodash").DebouncedFunc<() => void>;
33
33
  subscribe(): void;
34
34
  unsubscribe(): void;
35
35
  private initObservers;
@@ -27,9 +27,15 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
27
27
  width?: string | number | undefined;
28
28
  color?: string | undefined;
29
29
  height?: string | number | undefined;
30
+ start?: number | undefined;
31
+ hidden?: boolean | undefined;
32
+ size?: number | undefined;
33
+ wrap?: string | undefined;
34
+ open?: boolean | undefined;
35
+ multiple?: boolean | undefined;
36
+ disabled?: boolean | undefined;
30
37
  accessKey?: string | undefined;
31
38
  draggable?: boolean | undefined;
32
- hidden?: boolean | undefined;
33
39
  lang?: string | undefined;
34
40
  className?: string | undefined;
35
41
  id?: string | undefined;
@@ -41,7 +47,6 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
41
47
  defaultValue?: string | string[] | undefined;
42
48
  onError?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
43
49
  onChange?: import("react").FormEventHandler<HTMLDivElement> | undefined;
44
- open?: boolean | undefined;
45
50
  onFocus?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
46
51
  onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
47
52
  placeholder?: string | undefined;
@@ -49,10 +54,8 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
49
54
  name?: string | undefined;
50
55
  key?: import("react").Key | undefined;
51
56
  action?: string | undefined;
52
- disabled?: boolean | undefined;
53
57
  property?: string | undefined;
54
58
  target?: string | undefined;
55
- start?: number | undefined;
56
59
  onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
57
60
  onMouseEnter?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
58
61
  onMouseLeave?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
@@ -109,7 +112,6 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
109
112
  method?: string | undefined;
110
113
  min?: string | number | undefined;
111
114
  minLength?: number | undefined;
112
- multiple?: boolean | undefined;
113
115
  muted?: boolean | undefined;
114
116
  noValidate?: boolean | undefined;
115
117
  optimum?: number | undefined;
@@ -128,7 +130,6 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
128
130
  scrolling?: string | undefined;
129
131
  seamless?: boolean | undefined;
130
132
  shape?: string | undefined;
131
- size?: number | undefined;
132
133
  sizes?: string | undefined;
133
134
  src?: string | undefined;
134
135
  srcDoc?: string | undefined;
@@ -137,7 +138,6 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
137
138
  step?: string | number | undefined;
138
139
  useMap?: string | undefined;
139
140
  wmode?: string | undefined;
140
- wrap?: string | undefined;
141
141
  defaultChecked?: boolean | undefined;
142
142
  suppressContentEditableWarning?: boolean | undefined;
143
143
  suppressHydrationWarning?: boolean | undefined;
@@ -165,14 +165,14 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
165
165
  unselectable?: "on" | "off" | undefined;
166
166
  'aria-activedescendant'?: string | undefined;
167
167
  'aria-atomic'?: boolean | "false" | "true" | undefined;
168
- 'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined;
168
+ 'aria-autocomplete'?: "none" | "inline" | "both" | "list" | undefined;
169
169
  'aria-busy'?: boolean | "false" | "true" | undefined;
170
170
  'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
171
171
  'aria-colcount'?: number | undefined;
172
172
  'aria-colindex'?: number | undefined;
173
173
  'aria-colspan'?: number | undefined;
174
174
  'aria-controls'?: string | undefined;
175
- 'aria-current'?: boolean | "time" | "date" | "false" | "true" | "step" | "page" | "location" | undefined;
175
+ 'aria-current'?: boolean | "time" | "date" | "false" | "true" | "page" | "step" | "location" | undefined;
176
176
  'aria-describedby'?: string | undefined;
177
177
  'aria-details'?: string | undefined;
178
178
  'aria-disabled'?: boolean | "false" | "true" | undefined;
@@ -365,7 +365,7 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
365
365
  onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
366
366
  onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
367
367
  css?: import("@emotion/core").InterpolationWithTheme<any>;
368
- }, "cite" | "data" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "default" | "mediaGroup" | "media" | "content" | "aria-label" | "aria-haspopup" | "children" | "theme" | "pattern" | "value" | "type" | "onSubmit" | "width" | "color" | "height" | "accessKey" | "draggable" | "hidden" | "lang" | "className" | "id" | "prefix" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "defaultValue" | "onError" | "onChange" | "open" | "onFocus" | "onBlur" | "placeholder" | "autoFocus" | "name" | "key" | "action" | "disabled" | "property" | "target" | "start" | "onClick" | "onMouseEnter" | "onMouseLeave" | "selected" | "href" | "accept" | "acceptCharset" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "method" | "min" | "minLength" | "multiple" | "muted" | "noValidate" | "optimum" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "wrap" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "spellCheck" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css"> & import("react").RefAttributes<HTMLDivElement>>;
368
+ }, "cite" | "data" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "default" | "mediaGroup" | "media" | "content" | "aria-label" | "aria-haspopup" | "children" | "theme" | "pattern" | "value" | "type" | "onSubmit" | "width" | "color" | "height" | "start" | "hidden" | "size" | "wrap" | "open" | "multiple" | "disabled" | "accessKey" | "draggable" | "lang" | "className" | "id" | "prefix" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "defaultValue" | "onError" | "onChange" | "onFocus" | "onBlur" | "placeholder" | "autoFocus" | "name" | "key" | "action" | "property" | "target" | "onClick" | "onMouseEnter" | "onMouseLeave" | "selected" | "href" | "accept" | "acceptCharset" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "spellCheck" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css"> & import("react").RefAttributes<HTMLDivElement>>;
369
369
  export declare const positionedOverEditorStyle: import("@emotion/react").SerializedStyles;
370
370
  export declare const contentArea: import("@emotion/react").SerializedStyles;
371
371
  export declare const sidebarArea: import("@emotion/react").SerializedStyles;
@@ -15,5 +15,5 @@ declare type Props = WithAnalyticsEventsProps & {
15
15
  height: number;
16
16
  };
17
17
  };
18
- declare const _default: React.ForwardRefExoticComponent<Pick<Omit<Props, keyof WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "title" | "onChange" | "key" | "placement" | "cols" | "size" | "analyticsContext" | "currentColor" | "alignX" | "colorPalette"> & React.RefAttributes<any>>;
18
+ declare const _default: React.ForwardRefExoticComponent<Pick<Omit<Props, keyof WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "title" | "size" | "currentColor" | "onChange" | "key" | "placement" | "cols" | "analyticsContext" | "alignX" | "colorPalette"> & React.RefAttributes<any>>;
19
19
  export default _default;
@@ -7,6 +7,6 @@ declare type ContentStylesProps = {
7
7
  featureFlags?: FeatureFlags;
8
8
  };
9
9
  declare type Props = Omit<ContentStylesProps & React.HTMLProps<HTMLDivElement>, 'featureFlags'>;
10
- export declare const createEditorContentStyle: (styles?: SerializedStyles | undefined) => React.ForwardRefExoticComponent<Pick<Props, "cite" | "data" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "default" | "mediaGroup" | "media" | "content" | "aria-label" | "aria-haspopup" | "children" | "theme" | "pattern" | "value" | "type" | "onSubmit" | "width" | "color" | "height" | "accessKey" | "draggable" | "hidden" | "lang" | "className" | "id" | "prefix" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "defaultValue" | "onError" | "onChange" | "open" | "onFocus" | "onBlur" | "placeholder" | "autoFocus" | "name" | "key" | "action" | "disabled" | "property" | "target" | "start" | "onClick" | "onMouseEnter" | "onMouseLeave" | "selected" | "href" | "accept" | "acceptCharset" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "method" | "min" | "minLength" | "multiple" | "muted" | "noValidate" | "optimum" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "wrap" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "spellCheck" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css"> & React.RefAttributes<HTMLDivElement>>;
11
- declare const _default: React.ForwardRefExoticComponent<Pick<Props, "cite" | "data" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "default" | "mediaGroup" | "media" | "content" | "aria-label" | "aria-haspopup" | "children" | "theme" | "pattern" | "value" | "type" | "onSubmit" | "width" | "color" | "height" | "accessKey" | "draggable" | "hidden" | "lang" | "className" | "id" | "prefix" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "defaultValue" | "onError" | "onChange" | "open" | "onFocus" | "onBlur" | "placeholder" | "autoFocus" | "name" | "key" | "action" | "disabled" | "property" | "target" | "start" | "onClick" | "onMouseEnter" | "onMouseLeave" | "selected" | "href" | "accept" | "acceptCharset" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "method" | "min" | "minLength" | "multiple" | "muted" | "noValidate" | "optimum" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "wrap" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "spellCheck" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css"> & React.RefAttributes<HTMLDivElement>>;
10
+ export declare const createEditorContentStyle: (styles?: SerializedStyles | undefined) => React.ForwardRefExoticComponent<Pick<Props, "cite" | "data" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "default" | "mediaGroup" | "media" | "content" | "aria-label" | "aria-haspopup" | "children" | "theme" | "pattern" | "value" | "type" | "onSubmit" | "width" | "color" | "height" | "start" | "hidden" | "size" | "wrap" | "open" | "multiple" | "disabled" | "accessKey" | "draggable" | "lang" | "className" | "id" | "prefix" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "defaultValue" | "onError" | "onChange" | "onFocus" | "onBlur" | "placeholder" | "autoFocus" | "name" | "key" | "action" | "property" | "target" | "onClick" | "onMouseEnter" | "onMouseLeave" | "selected" | "href" | "accept" | "acceptCharset" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "spellCheck" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css"> & React.RefAttributes<HTMLDivElement>>;
11
+ declare const _default: React.ForwardRefExoticComponent<Pick<Props, "cite" | "data" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "default" | "mediaGroup" | "media" | "content" | "aria-label" | "aria-haspopup" | "children" | "theme" | "pattern" | "value" | "type" | "onSubmit" | "width" | "color" | "height" | "start" | "hidden" | "size" | "wrap" | "open" | "multiple" | "disabled" | "accessKey" | "draggable" | "lang" | "className" | "id" | "prefix" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "defaultValue" | "onError" | "onChange" | "onFocus" | "onBlur" | "placeholder" | "autoFocus" | "name" | "key" | "action" | "property" | "target" | "onClick" | "onMouseEnter" | "onMouseLeave" | "selected" | "href" | "accept" | "acceptCharset" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "spellCheck" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css"> & React.RefAttributes<HTMLDivElement>>;
12
12
  export default _default;
@@ -28,8 +28,9 @@ export declare class PortalProviderAPI extends EventDispatcher {
28
28
  constructor(intl: IntlShape, onAnalyticsEvent?: FireAnalyticsCallback, analyticsContext?: boolean, themeMode?: ThemeModes);
29
29
  setContext: (context: any) => void;
30
30
  render(children: () => React.ReactChild | JSX.Element | null, container: HTMLElement, hasAnalyticsContext?: boolean, hasIntlContext?: boolean): void;
31
- forceUpdate({ intl }: {
31
+ forceUpdate({ intl, themeMode, }: {
32
32
  intl: IntlShape;
33
+ themeMode: ThemeModes | undefined;
33
34
  }): void;
34
35
  remove(container: HTMLElement): void;
35
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "172.0.1",
3
+ "version": "172.0.4",
4
4
  "description": "A package contains Atlassian editor core functionality",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -51,7 +51,7 @@
51
51
  "@atlaskit/form": "^8.5.0",
52
52
  "@atlaskit/icon": "^21.10.0",
53
53
  "@atlaskit/icon-object": "^6.2.0",
54
- "@atlaskit/link-picker": "^1.1.2",
54
+ "@atlaskit/link-picker": "^1.8.0",
55
55
  "@atlaskit/locale": "^2.3.0",
56
56
  "@atlaskit/logo": "^13.8.0",
57
57
  "@atlaskit/media-card": "^74.1.0",
@@ -67,8 +67,8 @@
67
67
  "@atlaskit/prosemirror-input-rules": "^2.1.0",
68
68
  "@atlaskit/radio": "^5.3.0",
69
69
  "@atlaskit/section-message": "^6.1.0",
70
- "@atlaskit/select": "^15.5.0",
71
- "@atlaskit/smart-card": "^21.0.0",
70
+ "@atlaskit/select": "^15.6.0",
71
+ "@atlaskit/smart-card": "^22.0.0",
72
72
  "@atlaskit/smart-user-picker": "^6.0.0",
73
73
  "@atlaskit/spinner": "^15.1.0",
74
74
  "@atlaskit/status": "^1.1.0",
@@ -129,8 +129,8 @@
129
129
  "w3c-keyname": "^2.1.0"
130
130
  },
131
131
  "peerDependencies": {
132
- "@atlaskit/link-provider": "^1.0.0",
133
- "@atlaskit/media-core": "^33.0.1",
132
+ "@atlaskit/link-provider": "^1.2.4",
133
+ "@atlaskit/media-core": "^33.0.2",
134
134
  "react": "^16.8.0",
135
135
  "react-dom": "^16.8.0",
136
136
  "react-intl-next": "npm:react-intl@^5.18.1",
@@ -138,9 +138,9 @@
138
138
  },
139
139
  "devDependencies": {
140
140
  "@atlaskit/atlassian-navigation": "^2.2.0",
141
- "@atlaskit/breadcrumbs": "11.6.2",
141
+ "@atlaskit/breadcrumbs": "11.6.3",
142
142
  "@atlaskit/code": "^14.3.0",
143
- "@atlaskit/collab-provider": "7.5.0",
143
+ "@atlaskit/collab-provider": "7.5.1",
144
144
  "@atlaskit/docs": "*",
145
145
  "@atlaskit/drawer": "^7.1.0",
146
146
  "@atlaskit/dropdown-menu": "^11.3.0",
@@ -151,14 +151,14 @@
151
151
  "@atlaskit/flag": "^14.6.0",
152
152
  "@atlaskit/inline-dialog": "^13.3.0",
153
153
  "@atlaskit/link-provider": "^1.0.0",
154
- "@atlaskit/link-test-helpers": "^1.1.0",
154
+ "@atlaskit/link-test-helpers": "^1.4.0",
155
155
  "@atlaskit/lozenge": "^11.1.0",
156
156
  "@atlaskit/media-core": "^33.0.0",
157
157
  "@atlaskit/media-integration-test-helpers": "^2.6.0",
158
158
  "@atlaskit/media-test-helpers": "^30.0.0",
159
159
  "@atlaskit/menu": "^1.3.0",
160
160
  "@atlaskit/page-layout": "^1.2.0",
161
- "@atlaskit/profilecard": "^16.11.0",
161
+ "@atlaskit/profilecard": "^16.12.0",
162
162
  "@atlaskit/pubsub": "^6.0.0",
163
163
  "@atlaskit/renderer": "^101.0.0",
164
164
  "@atlaskit/section-message": "^6.1.0",
@@ -172,8 +172,8 @@
172
172
  "@atlaskit/visual-regression": "*",
173
173
  "@atlaskit/webdriver-runner": "*",
174
174
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
175
- "@atlassian/link-picker-atlassian-plugin": "^16.0.0",
176
- "@atlassian/search-provider": "2.3.2",
175
+ "@atlassian/link-picker-atlassian-plugin": "^18.0.0",
176
+ "@atlassian/search-provider": "2.3.3",
177
177
  "@atlassian/ufo": "^0.1.0",
178
178
  "@emotion/jest": "^11.8.0",
179
179
  "@testing-library/dom": "^7.7.3",
@@ -206,7 +206,7 @@
206
206
  "rison": "^0.1.1",
207
207
  "sinon": "^2.2.0",
208
208
  "styled-components": "^3.2.6",
209
- "typescript": "4.2.4",
209
+ "typescript": "4.3.5",
210
210
  "url-search-params": "^0.10.0",
211
211
  "worker-plugin": "^4.0.2"
212
212
  },
package/tsconfig.json CHANGED
@@ -11,7 +11,6 @@
11
11
  "./example-helpers/**/*.tsx"
12
12
  ],
13
13
  "compilerOptions": {
14
- "baseUrl": "./",
15
- "noImplicitAny": true
14
+ "baseUrl": "./"
16
15
  }
17
16
  }