@atlaskit/editor-common 90.0.0 → 90.1.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 CHANGED
@@ -1,5 +1,25 @@
1
1
  # @atlaskit/editor-common
2
2
 
3
+ ## 90.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#142880](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/142880)
8
+ [`a1dc15fcb29ef`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a1dc15fcb29ef) -
9
+ Clean up `platform_editor_fix_embed_subpixel_rendering` FF
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 90.0.1
16
+
17
+ ### Patch Changes
18
+
19
+ - [#142802](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/142802)
20
+ [`09c0d0a18b491`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/09c0d0a18b491) -
21
+ [ux] [ED-24935] [ED24921] Add URL validation and enforce max length for input field
22
+
3
23
  ## 90.0.0
4
24
 
5
25
  ### Major Changes
@@ -70,5 +70,10 @@ var mediaInsertMessages = exports.mediaInsertMessages = (0, _reactIntlNext.defin
70
70
  id: 'fabric.editor.media.insert.mediaPickerPopupAriaLabel',
71
71
  defaultMessage: 'Media picker',
72
72
  description: 'Accessibility label for the media picker popup'
73
+ },
74
+ invalidUrlErrorMessage: {
75
+ id: 'fabric.editor.media.insert.invalidUrlErrorMessage',
76
+ defaultMessage: 'Invalid link',
77
+ description: 'Error message displayed when a user tries to insert media from an invalid URL'
73
78
  }
74
79
  });
@@ -17,7 +17,7 @@ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return
17
17
  function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
18
18
  var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
19
19
  var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
20
- var packageVersion = "90.0.0";
20
+ var packageVersion = "90.1.0";
21
21
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
22
22
  // Remove URL as it has UGC
23
23
  // TODO: Sanitise the URL instead of just removing it
@@ -25,7 +25,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
25
25
  * @jsx jsx
26
26
  */ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
27
27
  var packageName = "@atlaskit/editor-common";
28
- var packageVersion = "90.0.0";
28
+ var packageVersion = "90.1.0";
29
29
  var halfFocusRing = 1;
30
30
  var dropOffset = '0, 8';
31
31
  var DropList = /*#__PURE__*/function (_Component) {
@@ -15,7 +15,6 @@ var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/hel
15
15
  var _react = _interopRequireDefault(require("react"));
16
16
  var _react2 = require("@emotion/react");
17
17
  var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
18
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
19
18
  var _utils = require("../../utils");
20
19
  var _breakout = require("../../utils/breakout");
21
20
  var _excluded = ["children"];
@@ -184,12 +183,8 @@ var MediaSingleDimensionHelper = exports.MediaSingleDimensionHelper = function M
184
183
  isNestedNode = _ref$isNestedNode === void 0 ? false : _ref$isNestedNode,
185
184
  _ref$isInsideOfInline = _ref.isInsideOfInlineExtension,
186
185
  isInsideOfInlineExtension = _ref$isInsideOfInline === void 0 ? false : _ref$isInsideOfInline;
187
- var calculatedWidth = isExtendedResizeExperienceOn ? "".concat(mediaSingleWidth || width, "px") : mediaSingleWidth ? calcResizedWidth(layout, width || 0, containerWidth) : calcLegacyWidth(layout, width || 0, containerWidth, fullWidthMode, isResized, isInsideOfInlineExtension);
188
- var calculatedMaxWidth = isExtendedResizeExperienceOn ? "".concat(containerWidth, "px") : calcMaxWidth(layout, containerWidth);
189
- if ((0, _platformFeatureFlags.fg)('platform_editor_fix_embed_subpixel_rendering')) {
190
- calculatedWidth = roundToClosestEvenPxValue(calculatedWidth);
191
- calculatedMaxWidth = roundToClosestEvenPxValue(calculatedMaxWidth);
192
- }
186
+ var calculatedWidth = roundToClosestEvenPxValue(isExtendedResizeExperienceOn ? "".concat(mediaSingleWidth || width, "px") : mediaSingleWidth ? calcResizedWidth(layout, width || 0, containerWidth) : calcLegacyWidth(layout, width || 0, containerWidth, fullWidthMode, isResized, isInsideOfInlineExtension));
187
+ var calculatedMaxWidth = roundToClosestEvenPxValue(isExtendedResizeExperienceOn ? "".concat(containerWidth, "px") : calcMaxWidth(layout, containerWidth));
193
188
 
194
189
  // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- Needs manual remediation
195
190
  return (0, _react2.css)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n\t\t/* For nested rich media items, set max-width to 100% */\n\t\ttr &,\n\t\t[data-layout-column] &,\n\t\t[data-node-type='expand'] &,\n\t\t[data-panel-type] &,\n\t\tli & {\n\t\t\tmax-width: 100%;\n\t\t}\n\n\t\twidth: ", ";\n\t\t", "\n\t\tmax-width: ", ";\n\n\t\t", "\n\n\t\t&:not(.is-resizing) {\n\t\t\ttransition: width 100ms ease-in;\n\t\t}\n\n\t\tfloat: ", ";\n\t\tmargin: ", ";\n\n\t\t&[class*='not-resizing'] {\n\t\t\t", "\n\t\t}\n\n\t\t", ";\n\t"])), calculatedWidth, layout === 'full-width' &&
@@ -64,5 +64,10 @@ export const mediaInsertMessages = defineMessages({
64
64
  id: 'fabric.editor.media.insert.mediaPickerPopupAriaLabel',
65
65
  defaultMessage: 'Media picker',
66
66
  description: 'Accessibility label for the media picker popup'
67
+ },
68
+ invalidUrlErrorMessage: {
69
+ id: 'fabric.editor.media.insert.invalidUrlErrorMessage',
70
+ defaultMessage: 'Invalid link',
71
+ description: 'Error message displayed when a user tries to insert media from an invalid URL'
67
72
  }
68
73
  });
@@ -1,7 +1,7 @@
1
1
  import { isFedRamp } from './environment';
2
2
  const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
3
3
  const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
4
- const packageVersion = "90.0.0";
4
+ const packageVersion = "90.1.0";
5
5
  const sanitiseSentryEvents = (data, _hint) => {
6
6
  // Remove URL as it has UGC
7
7
  // TODO: Sanitise the URL instead of just removing it
@@ -14,7 +14,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
14
14
  import { N0, N50A, N60A, N900 } from '@atlaskit/theme/colors';
15
15
  import Layer from '../Layer';
16
16
  const packageName = "@atlaskit/editor-common";
17
- const packageVersion = "90.0.0";
17
+ const packageVersion = "90.1.0";
18
18
  const halfFocusRing = 1;
19
19
  const dropOffset = '0, 8';
20
20
  class DropList extends Component {
@@ -8,7 +8,6 @@ import React from 'react';
8
8
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
9
9
  import { css, jsx } from '@emotion/react';
10
10
  import { akEditorDefaultLayoutWidth, akEditorFullPageMaxWidth, akEditorFullWidthLayoutWidth } from '@atlaskit/editor-shared-styles';
11
- import { fg } from '@atlaskit/platform-feature-flags';
12
11
  import { nonWrappedLayouts } from '../../utils';
13
12
  import { calcBreakoutWidth, calcWideWidth } from '../../utils/breakout';
14
13
  function float(layout) {
@@ -161,12 +160,8 @@ export const MediaSingleDimensionHelper = ({
161
160
  isNestedNode = false,
162
161
  isInsideOfInlineExtension = false
163
162
  }) => {
164
- let calculatedWidth = isExtendedResizeExperienceOn ? `${mediaSingleWidth || width}px` : mediaSingleWidth ? calcResizedWidth(layout, width || 0, containerWidth) : calcLegacyWidth(layout, width || 0, containerWidth, fullWidthMode, isResized, isInsideOfInlineExtension);
165
- let calculatedMaxWidth = isExtendedResizeExperienceOn ? `${containerWidth}px` : calcMaxWidth(layout, containerWidth);
166
- if (fg('platform_editor_fix_embed_subpixel_rendering')) {
167
- calculatedWidth = roundToClosestEvenPxValue(calculatedWidth);
168
- calculatedMaxWidth = roundToClosestEvenPxValue(calculatedMaxWidth);
169
- }
163
+ const calculatedWidth = roundToClosestEvenPxValue(isExtendedResizeExperienceOn ? `${mediaSingleWidth || width}px` : mediaSingleWidth ? calcResizedWidth(layout, width || 0, containerWidth) : calcLegacyWidth(layout, width || 0, containerWidth, fullWidthMode, isResized, isInsideOfInlineExtension));
164
+ const calculatedMaxWidth = roundToClosestEvenPxValue(isExtendedResizeExperienceOn ? `${containerWidth}px` : calcMaxWidth(layout, containerWidth));
170
165
 
171
166
  // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- Needs manual remediation
172
167
  return css`
@@ -64,5 +64,10 @@ export var mediaInsertMessages = defineMessages({
64
64
  id: 'fabric.editor.media.insert.mediaPickerPopupAriaLabel',
65
65
  defaultMessage: 'Media picker',
66
66
  description: 'Accessibility label for the media picker popup'
67
+ },
68
+ invalidUrlErrorMessage: {
69
+ id: 'fabric.editor.media.insert.invalidUrlErrorMessage',
70
+ defaultMessage: 'Invalid link',
71
+ description: 'Error message displayed when a user tries to insert media from an invalid URL'
67
72
  }
68
73
  });
@@ -7,7 +7,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
7
7
  import { isFedRamp } from './environment';
8
8
  var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
9
9
  var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
10
- var packageVersion = "90.0.0";
10
+ var packageVersion = "90.1.0";
11
11
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
12
12
  // Remove URL as it has UGC
13
13
  // TODO: Sanitise the URL instead of just removing it
@@ -22,7 +22,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
22
22
  import { N0, N50A, N60A, N900 } from '@atlaskit/theme/colors';
23
23
  import Layer from '../Layer';
24
24
  var packageName = "@atlaskit/editor-common";
25
- var packageVersion = "90.0.0";
25
+ var packageVersion = "90.1.0";
26
26
  var halfFocusRing = 1;
27
27
  var dropOffset = '0, 8';
28
28
  var DropList = /*#__PURE__*/function (_Component) {
@@ -12,7 +12,6 @@ import React from 'react';
12
12
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
13
13
  import { css, jsx } from '@emotion/react';
14
14
  import { akEditorDefaultLayoutWidth, akEditorFullPageMaxWidth, akEditorFullWidthLayoutWidth } from '@atlaskit/editor-shared-styles';
15
- import { fg } from '@atlaskit/platform-feature-flags';
16
15
  import { nonWrappedLayouts } from '../../utils';
17
16
  import { calcBreakoutWidth, calcWideWidth } from '../../utils/breakout';
18
17
  function float(layout) {
@@ -174,12 +173,8 @@ export var MediaSingleDimensionHelper = function MediaSingleDimensionHelper(_ref
174
173
  isNestedNode = _ref$isNestedNode === void 0 ? false : _ref$isNestedNode,
175
174
  _ref$isInsideOfInline = _ref.isInsideOfInlineExtension,
176
175
  isInsideOfInlineExtension = _ref$isInsideOfInline === void 0 ? false : _ref$isInsideOfInline;
177
- var calculatedWidth = isExtendedResizeExperienceOn ? "".concat(mediaSingleWidth || width, "px") : mediaSingleWidth ? calcResizedWidth(layout, width || 0, containerWidth) : calcLegacyWidth(layout, width || 0, containerWidth, fullWidthMode, isResized, isInsideOfInlineExtension);
178
- var calculatedMaxWidth = isExtendedResizeExperienceOn ? "".concat(containerWidth, "px") : calcMaxWidth(layout, containerWidth);
179
- if (fg('platform_editor_fix_embed_subpixel_rendering')) {
180
- calculatedWidth = roundToClosestEvenPxValue(calculatedWidth);
181
- calculatedMaxWidth = roundToClosestEvenPxValue(calculatedMaxWidth);
182
- }
176
+ var calculatedWidth = roundToClosestEvenPxValue(isExtendedResizeExperienceOn ? "".concat(mediaSingleWidth || width, "px") : mediaSingleWidth ? calcResizedWidth(layout, width || 0, containerWidth) : calcLegacyWidth(layout, width || 0, containerWidth, fullWidthMode, isResized, isInsideOfInlineExtension));
177
+ var calculatedMaxWidth = roundToClosestEvenPxValue(isExtendedResizeExperienceOn ? "".concat(containerWidth, "px") : calcMaxWidth(layout, containerWidth));
183
178
 
184
179
  // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- Needs manual remediation
185
180
  return css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n\t\t/* For nested rich media items, set max-width to 100% */\n\t\ttr &,\n\t\t[data-layout-column] &,\n\t\t[data-node-type='expand'] &,\n\t\t[data-panel-type] &,\n\t\tli & {\n\t\t\tmax-width: 100%;\n\t\t}\n\n\t\twidth: ", ";\n\t\t", "\n\t\tmax-width: ", ";\n\n\t\t", "\n\n\t\t&:not(.is-resizing) {\n\t\t\ttransition: width 100ms ease-in;\n\t\t}\n\n\t\tfloat: ", ";\n\t\tmargin: ", ";\n\n\t\t&[class*='not-resizing'] {\n\t\t\t", "\n\t\t}\n\n\t\t", ";\n\t"])), calculatedWidth, layout === 'full-width' &&
@@ -64,4 +64,9 @@ export declare const mediaInsertMessages: {
64
64
  defaultMessage: string;
65
65
  description: string;
66
66
  };
67
+ invalidUrlErrorMessage: {
68
+ id: string;
69
+ defaultMessage: string;
70
+ description: string;
71
+ };
67
72
  };
@@ -64,4 +64,9 @@ export declare const mediaInsertMessages: {
64
64
  defaultMessage: string;
65
65
  description: string;
66
66
  };
67
+ invalidUrlErrorMessage: {
68
+ id: string;
69
+ defaultMessage: string;
70
+ description: string;
71
+ };
67
72
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "90.0.0",
3
+ "version": "90.1.0",
4
4
  "description": "A package that contains common classes and components for editor and renderer",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -135,13 +135,13 @@
135
135
  "@atlaskit/media-common": "^11.4.0",
136
136
  "@atlaskit/media-file-preview": "^0.9.0",
137
137
  "@atlaskit/media-picker": "^66.7.0",
138
- "@atlaskit/media-ui": "^25.14.0",
138
+ "@atlaskit/media-ui": "^25.15.0",
139
139
  "@atlaskit/media-viewer": "48.10.0",
140
140
  "@atlaskit/mention": "^23.2.0",
141
141
  "@atlaskit/menu": "^2.12.0",
142
142
  "@atlaskit/platform-feature-flags": "^0.3.0",
143
- "@atlaskit/primitives": "^12.1.0",
144
- "@atlaskit/profilecard": "^19.26.0",
143
+ "@atlaskit/primitives": "^12.2.0",
144
+ "@atlaskit/profilecard": "^19.27.0",
145
145
  "@atlaskit/section-message": "^6.6.0",
146
146
  "@atlaskit/smart-card": "^28.1.0",
147
147
  "@atlaskit/smart-user-picker": "^6.10.0",
@@ -279,9 +279,6 @@
279
279
  "platform-datasources-enable-two-way-sync": {
280
280
  "type": "boolean"
281
281
  },
282
- "platform_editor_fix_embed_subpixel_rendering": {
283
- "type": "boolean"
284
- },
285
282
  "platform_editor_allow_annotation_triple_click": {
286
283
  "type": "boolean"
287
284
  },