@atlaskit/editor-common 109.14.0 → 109.14.1

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,12 @@
1
1
  # @atlaskit/editor-common
2
2
 
3
+ ## 109.14.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`bd24a3afbfb65`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bd24a3afbfb65) -
8
+ Updated look and feel of the Synced Block Editor
9
+
3
10
  ## 109.14.0
4
11
 
5
12
  ### Minor Changes
@@ -16,7 +16,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
16
16
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
17
17
  var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
18
18
  var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
19
- var packageVersion = "109.13.0";
19
+ var packageVersion = "109.14.0";
20
20
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
21
21
  // Remove URL as it has UGC
22
22
  // Ignored via go/ees007
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.SyncBlockSharedCssClassName = void 0;
7
+ var prefix = 'ak-editor-sync-block';
8
+ var SyncBlockSharedCssClassName = exports.SyncBlockSharedCssClassName = {
9
+ prefix: prefix,
10
+ editor: "".concat(prefix, "__editor"),
11
+ renderer: "".concat(prefix, "__renderer")
12
+ };
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "SyncBlockSharedCssClassName", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _syncBlock.SyncBlockSharedCssClassName;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "SyncBlockStoreManager", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _index.SyncBlockStoreManager;
16
+ }
17
+ });
18
+ var _syncBlock = require("./styles/shared/sync-block");
19
+ var _index = require("./sync-block/index");
@@ -24,7 +24,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
24
24
  * @jsx jsx
25
25
  */ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
26
26
  var packageName = "@atlaskit/editor-common";
27
- var packageVersion = "109.13.0";
27
+ var packageVersion = "109.14.0";
28
28
  var halfFocusRing = 1;
29
29
  var dropOffset = '0, 8';
30
30
  var fadeIn = (0, _react2.keyframes)({
@@ -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 = "109.13.0";
4
+ const packageVersion = "109.14.0";
5
5
  const sanitiseSentryEvents = (data, _hint) => {
6
6
  // Remove URL as it has UGC
7
7
  // Ignored via go/ees007
@@ -0,0 +1,6 @@
1
+ const prefix = 'ak-editor-sync-block';
2
+ export const SyncBlockSharedCssClassName = {
3
+ prefix,
4
+ editor: `${prefix}__editor`,
5
+ renderer: `${prefix}__renderer`
6
+ };
@@ -0,0 +1,5 @@
1
+ // Disable no-re-export rule for entry point files
2
+ /* eslint-disable @atlaskit/editor/no-re-export */
3
+
4
+ export { SyncBlockSharedCssClassName } from './styles/shared/sync-block';
5
+ export { SyncBlockStoreManager } from './sync-block/index';
@@ -14,7 +14,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
14
14
  import { fg } from '@atlaskit/platform-feature-flags';
15
15
  import Layer from '../Layer';
16
16
  const packageName = "@atlaskit/editor-common";
17
- const packageVersion = "109.13.0";
17
+ const packageVersion = "109.14.0";
18
18
  const halfFocusRing = 1;
19
19
  const dropOffset = '0, 8';
20
20
  const fadeIn = keyframes({
@@ -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 = "109.13.0";
10
+ var packageVersion = "109.14.0";
11
11
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
12
12
  // Remove URL as it has UGC
13
13
  // Ignored via go/ees007
@@ -0,0 +1,6 @@
1
+ var prefix = 'ak-editor-sync-block';
2
+ export var SyncBlockSharedCssClassName = {
3
+ prefix: prefix,
4
+ editor: "".concat(prefix, "__editor"),
5
+ renderer: "".concat(prefix, "__renderer")
6
+ };
@@ -0,0 +1,5 @@
1
+ // Disable no-re-export rule for entry point files
2
+ /* eslint-disable @atlaskit/editor/no-re-export */
3
+
4
+ export { SyncBlockSharedCssClassName } from './styles/shared/sync-block';
5
+ export { SyncBlockStoreManager } from './sync-block/index';
@@ -21,7 +21,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
21
21
  import { fg } from '@atlaskit/platform-feature-flags';
22
22
  import Layer from '../Layer';
23
23
  var packageName = "@atlaskit/editor-common";
24
- var packageVersion = "109.13.0";
24
+ var packageVersion = "109.14.0";
25
25
  var halfFocusRing = 1;
26
26
  var dropOffset = '0, 8';
27
27
  var fadeIn = keyframes({
@@ -0,0 +1,5 @@
1
+ export declare const SyncBlockSharedCssClassName: {
2
+ prefix: string;
3
+ editor: string;
4
+ renderer: string;
5
+ };
@@ -0,0 +1,2 @@
1
+ export { SyncBlockSharedCssClassName } from './styles/shared/sync-block';
2
+ export { SyncBlockStoreManager, type SyncBlockDataProvider } from './sync-block/index';
@@ -0,0 +1,5 @@
1
+ export declare const SyncBlockSharedCssClassName: {
2
+ prefix: string;
3
+ editor: string;
4
+ renderer: string;
5
+ };
@@ -0,0 +1,2 @@
1
+ export { SyncBlockSharedCssClassName } from './styles/shared/sync-block';
2
+ export { SyncBlockStoreManager, type SyncBlockDataProvider } from './sync-block/index';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "109.14.0",
3
+ "version": "109.14.1",
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/"
@@ -51,7 +51,7 @@
51
51
  "@atlaskit/editor-toolbar": "^0.9.0",
52
52
  "@atlaskit/editor-toolbar-model": "^0.2.0",
53
53
  "@atlaskit/emoji": "^69.5.0",
54
- "@atlaskit/icon": "^28.2.0",
54
+ "@atlaskit/icon": "^28.3.0",
55
55
  "@atlaskit/icon-object": "^7.2.0",
56
56
  "@atlaskit/link": "^3.2.0",
57
57
  "@atlaskit/link-datasource": "^4.24.0",
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common/sync-block",
3
- "main": "../dist/cjs/sync-block/index.js",
4
- "module": "../dist/esm/sync-block/index.js",
5
- "module:es2019": "../dist/es2019/sync-block/index.js",
3
+ "main": "../dist/cjs/sync-block.js",
4
+ "module": "../dist/esm/sync-block.js",
5
+ "module:es2019": "../dist/es2019/sync-block.js",
6
6
  "sideEffects": [
7
7
  "**/*.compiled.css"
8
8
  ],
9
- "types": "../dist/types/sync-block/index.d.ts",
9
+ "types": "../dist/types/sync-block.d.ts",
10
10
  "typesVersions": {
11
11
  ">=4.5 <5.9": {
12
12
  "*": [
13
- "../dist/types-ts4.5/sync-block/index.d.ts"
13
+ "../dist/types-ts4.5/sync-block.d.ts"
14
14
  ]
15
15
  }
16
16
  }