@atlaskit/editor-plugin-toolbar-lists-indentation 1.4.3 → 1.5.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,23 @@
1
1
  # @atlaskit/editor-plugin-toolbar-lists-indentation
2
2
 
3
+ ## 1.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 1.5.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#114156](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/114156)
14
+ [`bc6a63af2d1d0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bc6a63af2d1d0) -
15
+ Bump adf-schema to 37.0.0 and adf-schema-json to 1.16.0
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 1.4.3
4
22
 
5
23
  ### Patch Changes
@@ -18,6 +18,8 @@ var _numberList = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/nu
18
18
  var _outdent = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/outdent"));
19
19
  /** @jsx jsx */
20
20
 
21
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
22
+
21
23
  function Toolbar(props) {
22
24
  var _useIntl = (0, _reactIntlNext.useIntl)(),
23
25
  formatMessage = _useIntl.formatMessage;
@@ -59,7 +61,7 @@ function Toolbar(props) {
59
61
  }
60
62
  }, [outdentButtonRef, outdentDisabled, isOutdentButtonFocused]);
61
63
  return (
62
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
64
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
63
65
  (0, _react2.jsx)("span", {
64
66
  css: _styles.buttonGroupStyle
65
67
  }, (0, _react2.jsx)("div", {
@@ -18,6 +18,8 @@ var _chevronDown = _interopRequireDefault(require("@atlaskit/icon/glyph/chevron-
18
18
  var _bulletList = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/bullet-list"));
19
19
  /** @jsx jsx */
20
20
 
21
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
22
+
21
23
  function ToolbarDropdown(props) {
22
24
  var _useIntl = (0, _reactIntlNext.useIntl)(),
23
25
  formatMessage = _useIntl.formatMessage;
@@ -65,7 +67,7 @@ function ToolbarDropdown(props) {
65
67
  });
66
68
  };
67
69
  return (
68
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
70
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
69
71
  (0, _react2.jsx)("span", {
70
72
  css: _styles.wrapperStyle
71
73
  }, (0, _react2.jsx)(_uiMenu.DropdownMenuWithKeyboardNavigation, {
@@ -96,7 +98,7 @@ function ToolbarDropdown(props) {
96
98
  onKeyDown: handleOnKeyDown,
97
99
  title: labelLists,
98
100
  iconBefore:
99
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
101
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
100
102
  (0, _react2.jsx)("span", {
101
103
  css: _styles.wrapperStyle
102
104
  }, (0, _react2.jsx)(_bulletList.default, {
@@ -125,7 +127,7 @@ function useItems(props) {
125
127
  isDisabled: props.bulletListDisabled,
126
128
  isActive: Boolean(props.bulletListActive),
127
129
  elemAfter:
128
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
130
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
129
131
  (0, _react2.jsx)("div", {
130
132
  css: _shortcut.shortcutStyle
131
133
  }, (0, _keymaps.tooltip)(_keymaps.toggleBulletList))
@@ -138,7 +140,7 @@ function useItems(props) {
138
140
  isDisabled: props.orderedListDisabled,
139
141
  isActive: Boolean(props.orderedListActive),
140
142
  elemAfter:
141
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
143
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
142
144
  (0, _react2.jsx)("div", {
143
145
  css: _shortcut.shortcutStyle
144
146
  }, (0, _keymaps.tooltip)(_keymaps.toggleOrderedList))
@@ -155,7 +157,7 @@ function useItems(props) {
155
157
  isDisabled: props.outdentDisabled,
156
158
  isActive: false,
157
159
  elemAfter:
158
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
160
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
159
161
  (0, _react2.jsx)("div", {
160
162
  css: _shortcut.shortcutStyle
161
163
  }, (0, _keymaps.tooltip)(_keymaps.outdent))
@@ -167,7 +169,7 @@ function useItems(props) {
167
169
  },
168
170
  isDisabled: props.indentDisabled,
169
171
  isActive: false,
170
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
172
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
171
173
  elemAfter: (0, _react2.jsx)("div", {
172
174
  css: _shortcut.shortcutStyle
173
175
  }, (0, _keymaps.tooltip)(_keymaps.indent))
@@ -9,6 +9,7 @@ var _onItemActivated = require("./onItemActivated");
9
9
  var _Toolbar = require("./Toolbar");
10
10
  var _ToolbarDropdown = require("./ToolbarDropdown");
11
11
  /** @jsx jsx */
12
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
12
13
 
13
14
  function ToolbarListsIndentation(props) {
14
15
  var disabled = props.disabled,
@@ -1,5 +1,7 @@
1
1
  /** @jsx jsx */
2
2
  import { useEffect, useRef } from 'react';
3
+
4
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
3
5
  import { jsx } from '@emotion/react';
4
6
  import { useIntl } from 'react-intl-next';
5
7
  import { getAriaKeyshortcuts, toggleBulletList as toggleBulletListKeymap, indent as toggleIndentKeymap, toggleOrderedList as toggleOrderedListKeymap, outdent as toggleOutdentKeymap, tooltip, ToolTipContent } from '@atlaskit/editor-common/keymaps';
@@ -50,7 +52,7 @@ export function Toolbar(props) {
50
52
  }
51
53
  }, [outdentButtonRef, outdentDisabled, isOutdentButtonFocused]);
52
54
  return (
53
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
55
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
54
56
  jsx("span", {
55
57
  css: buttonGroupStyle
56
58
  }, jsx("div", {
@@ -1,5 +1,7 @@
1
1
  /** @jsx jsx */
2
2
  import React from 'react';
3
+
4
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
3
5
  import { jsx } from '@emotion/react';
4
6
  import { useIntl } from 'react-intl-next';
5
7
  import { toggleBulletList as toggleBulletListKeymap, indent as toggleIndentKeymap, toggleOrderedList as toggleOrderedListKeymap, outdent as toggleOutdentKeymap, tooltip } from '@atlaskit/editor-common/keymaps';
@@ -53,7 +55,7 @@ export function ToolbarDropdown(props) {
53
55
  });
54
56
  };
55
57
  return (
56
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
58
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
57
59
  jsx("span", {
58
60
  css: wrapperStyle
59
61
  }, jsx(DropdownMenu, {
@@ -84,7 +86,7 @@ export function ToolbarDropdown(props) {
84
86
  onKeyDown: handleOnKeyDown,
85
87
  title: labelLists,
86
88
  iconBefore:
87
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
89
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
88
90
  jsx("span", {
89
91
  css: wrapperStyle
90
92
  }, jsx(BulletListIcon, {
@@ -114,7 +116,7 @@ function useItems(props) {
114
116
  isDisabled: props.bulletListDisabled,
115
117
  isActive: Boolean(props.bulletListActive),
116
118
  elemAfter:
117
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
119
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
118
120
  jsx("div", {
119
121
  css: shortcutStyle
120
122
  }, tooltip(toggleBulletListKeymap))
@@ -127,7 +129,7 @@ function useItems(props) {
127
129
  isDisabled: props.orderedListDisabled,
128
130
  isActive: Boolean(props.orderedListActive),
129
131
  elemAfter:
130
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
132
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
131
133
  jsx("div", {
132
134
  css: shortcutStyle
133
135
  }, tooltip(toggleOrderedListKeymap))
@@ -144,7 +146,7 @@ function useItems(props) {
144
146
  isDisabled: props.outdentDisabled,
145
147
  isActive: false,
146
148
  elemAfter:
147
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
149
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
148
150
  jsx("div", {
149
151
  css: shortcutStyle
150
152
  }, tooltip(toggleOutdentKeymap))
@@ -156,7 +158,7 @@ function useItems(props) {
156
158
  },
157
159
  isDisabled: props.indentDisabled,
158
160
  isActive: false,
159
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
161
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
160
162
  elemAfter: jsx("div", {
161
163
  css: shortcutStyle
162
164
  }, tooltip(toggleIndentKeymap))
@@ -1,4 +1,5 @@
1
1
  /** @jsx jsx */
2
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
2
3
  import { jsx } from '@emotion/react';
3
4
  import { onItemActivated } from './onItemActivated';
4
5
  import { Toolbar } from './Toolbar';
@@ -1,5 +1,7 @@
1
1
  /** @jsx jsx */
2
2
  import { useEffect, useRef } from 'react';
3
+
4
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
3
5
  import { jsx } from '@emotion/react';
4
6
  import { useIntl } from 'react-intl-next';
5
7
  import { getAriaKeyshortcuts, toggleBulletList as toggleBulletListKeymap, indent as toggleIndentKeymap, toggleOrderedList as toggleOrderedListKeymap, outdent as toggleOutdentKeymap, tooltip, ToolTipContent } from '@atlaskit/editor-common/keymaps';
@@ -51,7 +53,7 @@ export function Toolbar(props) {
51
53
  }
52
54
  }, [outdentButtonRef, outdentDisabled, isOutdentButtonFocused]);
53
55
  return (
54
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
56
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
55
57
  jsx("span", {
56
58
  css: buttonGroupStyle
57
59
  }, jsx("div", {
@@ -1,6 +1,8 @@
1
1
  import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
2
2
  /** @jsx jsx */
3
3
  import React from 'react';
4
+
5
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
4
6
  import { jsx } from '@emotion/react';
5
7
  import { useIntl } from 'react-intl-next';
6
8
  import { toggleBulletList as toggleBulletListKeymap, indent as toggleIndentKeymap, toggleOrderedList as toggleOrderedListKeymap, outdent as toggleOutdentKeymap, tooltip } from '@atlaskit/editor-common/keymaps';
@@ -57,7 +59,7 @@ export function ToolbarDropdown(props) {
57
59
  });
58
60
  };
59
61
  return (
60
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
62
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
61
63
  jsx("span", {
62
64
  css: wrapperStyle
63
65
  }, jsx(DropdownMenu, {
@@ -88,7 +90,7 @@ export function ToolbarDropdown(props) {
88
90
  onKeyDown: handleOnKeyDown,
89
91
  title: labelLists,
90
92
  iconBefore:
91
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
93
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
92
94
  jsx("span", {
93
95
  css: wrapperStyle
94
96
  }, jsx(BulletListIcon, {
@@ -117,7 +119,7 @@ function useItems(props) {
117
119
  isDisabled: props.bulletListDisabled,
118
120
  isActive: Boolean(props.bulletListActive),
119
121
  elemAfter:
120
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
122
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
121
123
  jsx("div", {
122
124
  css: shortcutStyle
123
125
  }, tooltip(toggleBulletListKeymap))
@@ -130,7 +132,7 @@ function useItems(props) {
130
132
  isDisabled: props.orderedListDisabled,
131
133
  isActive: Boolean(props.orderedListActive),
132
134
  elemAfter:
133
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
135
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
134
136
  jsx("div", {
135
137
  css: shortcutStyle
136
138
  }, tooltip(toggleOrderedListKeymap))
@@ -147,7 +149,7 @@ function useItems(props) {
147
149
  isDisabled: props.outdentDisabled,
148
150
  isActive: false,
149
151
  elemAfter:
150
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
152
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
151
153
  jsx("div", {
152
154
  css: shortcutStyle
153
155
  }, tooltip(toggleOutdentKeymap))
@@ -159,7 +161,7 @@ function useItems(props) {
159
161
  },
160
162
  isDisabled: props.indentDisabled,
161
163
  isActive: false,
162
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
164
+ // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
163
165
  elemAfter: jsx("div", {
164
166
  css: shortcutStyle
165
167
  }, tooltip(toggleIndentKeymap))
@@ -1,4 +1,5 @@
1
1
  /** @jsx jsx */
2
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
2
3
  import { jsx } from '@emotion/react';
3
4
  import { onItemActivated } from './onItemActivated';
4
5
  import { Toolbar } from './Toolbar';
package/package.json CHANGED
@@ -1,100 +1,100 @@
1
1
  {
2
- "name": "@atlaskit/editor-plugin-toolbar-lists-indentation",
3
- "version": "1.4.3",
4
- "description": "Toolbar lists and indentation plugin for @atlaskit/editor-core",
5
- "author": "Atlassian Pty Ltd",
6
- "license": "Apache-2.0",
7
- "publishConfig": {
8
- "registry": "https://registry.npmjs.org/"
9
- },
10
- "atlassian": {
11
- "team": "Editor: AI",
12
- "singleton": true,
13
- "inPublicMirror": false,
14
- "releaseModel": "continuous",
15
- "runReact18": false
16
- },
17
- "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
18
- "main": "dist/cjs/index.js",
19
- "module": "dist/esm/index.js",
20
- "module:es2019": "dist/es2019/index.js",
21
- "types": "dist/types/index.d.ts",
22
- "typesVersions": {
23
- ">=4.5 <4.9": {
24
- "*": [
25
- "dist/types-ts4.5/*",
26
- "dist/types-ts4.5/index.d.ts"
27
- ]
28
- }
29
- },
30
- "sideEffects": false,
31
- "atlaskit:src": "src/index.ts",
32
- "af:exports": {
33
- ".": "./src/index.ts"
34
- },
35
- "dependencies": {
36
- "@atlaskit/editor-common": "^82.0.0",
37
- "@atlaskit/editor-plugin-analytics": "^1.2.0",
38
- "@atlaskit/editor-plugin-block-type": "^3.5.0",
39
- "@atlaskit/editor-plugin-feature-flags": "^1.1.0",
40
- "@atlaskit/editor-plugin-indentation": "^1.2.0",
41
- "@atlaskit/editor-plugin-list": "^3.3.0",
42
- "@atlaskit/editor-plugin-tasks-and-decisions": "^1.3.0",
43
- "@atlaskit/editor-prosemirror": "4.0.1",
44
- "@atlaskit/editor-shared-styles": "^2.12.0",
45
- "@atlaskit/icon": "^22.3.0",
46
- "@babel/runtime": "^7.0.0",
47
- "@emotion/react": "^11.7.1"
48
- },
49
- "peerDependencies": {
50
- "react": "^16.8.0",
51
- "react-intl-next": "npm:react-intl@^5.18.1"
52
- },
53
- "devDependencies": {
54
- "@af/integration-testing": "*",
55
- "@af/visual-regression": "*",
56
- "@atlaskit/adf-schema": "^36.10.7",
57
- "@atlaskit/analytics-next": "^9.3.0",
58
- "@atlaskit/editor-plugin-base": "^1.4.0",
59
- "@atlaskit/editor-plugin-text-formatting": "^1.7.0",
60
- "@atlaskit/ssr": "*",
61
- "@atlaskit/visual-regression": "*",
62
- "@testing-library/react": "^12.1.5",
63
- "react-dom": "^16.8.0",
64
- "typescript": "~5.4.2",
65
- "wait-for-expect": "^1.2.0"
66
- },
67
- "techstack": {
68
- "@atlassian/frontend": {
69
- "import-structure": [
70
- "atlassian-conventions"
71
- ],
72
- "circular-dependencies": [
73
- "file-and-folder-level"
74
- ]
75
- },
76
- "@repo/internal": {
77
- "dom-events": "use-bind-event-listener",
78
- "analytics": [
79
- "analytics-next"
80
- ],
81
- "design-tokens": [
82
- "color"
83
- ],
84
- "theming": [
85
- "react-context"
86
- ],
87
- "ui-components": [
88
- "lite-mode"
89
- ],
90
- "deprecation": "no-deprecated-imports",
91
- "styling": [
92
- "emotion",
93
- "emotion"
94
- ],
95
- "imports": [
96
- "import-no-extraneous-disable-for-examples-and-docs"
97
- ]
98
- }
99
- }
100
- }
2
+ "name": "@atlaskit/editor-plugin-toolbar-lists-indentation",
3
+ "version": "1.5.1",
4
+ "description": "Toolbar lists and indentation plugin for @atlaskit/editor-core",
5
+ "author": "Atlassian Pty Ltd",
6
+ "license": "Apache-2.0",
7
+ "publishConfig": {
8
+ "registry": "https://registry.npmjs.org/"
9
+ },
10
+ "atlassian": {
11
+ "team": "Editor: AI",
12
+ "singleton": true,
13
+ "inPublicMirror": false,
14
+ "releaseModel": "continuous",
15
+ "runReact18": false
16
+ },
17
+ "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
18
+ "main": "dist/cjs/index.js",
19
+ "module": "dist/esm/index.js",
20
+ "module:es2019": "dist/es2019/index.js",
21
+ "types": "dist/types/index.d.ts",
22
+ "typesVersions": {
23
+ ">=4.5 <4.9": {
24
+ "*": [
25
+ "dist/types-ts4.5/*",
26
+ "dist/types-ts4.5/index.d.ts"
27
+ ]
28
+ }
29
+ },
30
+ "sideEffects": false,
31
+ "atlaskit:src": "src/index.ts",
32
+ "af:exports": {
33
+ ".": "./src/index.ts"
34
+ },
35
+ "dependencies": {
36
+ "@atlaskit/editor-common": "^83.0.0",
37
+ "@atlaskit/editor-plugin-analytics": "^1.3.0",
38
+ "@atlaskit/editor-plugin-block-type": "^3.7.0",
39
+ "@atlaskit/editor-plugin-feature-flags": "^1.1.0",
40
+ "@atlaskit/editor-plugin-indentation": "^1.3.0",
41
+ "@atlaskit/editor-plugin-list": "^3.4.0",
42
+ "@atlaskit/editor-plugin-tasks-and-decisions": "^1.4.0",
43
+ "@atlaskit/editor-prosemirror": "4.0.1",
44
+ "@atlaskit/editor-shared-styles": "^2.12.0",
45
+ "@atlaskit/icon": "^22.4.0",
46
+ "@babel/runtime": "^7.0.0",
47
+ "@emotion/react": "^11.7.1"
48
+ },
49
+ "peerDependencies": {
50
+ "react": "^16.8.0",
51
+ "react-intl-next": "npm:react-intl@^5.18.1"
52
+ },
53
+ "devDependencies": {
54
+ "@af/integration-testing": "*",
55
+ "@af/visual-regression": "*",
56
+ "@atlaskit/adf-schema": "^37.0.0",
57
+ "@atlaskit/analytics-next": "^9.3.0",
58
+ "@atlaskit/editor-plugin-base": "^1.6.0",
59
+ "@atlaskit/editor-plugin-text-formatting": "^1.8.0",
60
+ "@atlaskit/ssr": "*",
61
+ "@atlaskit/visual-regression": "*",
62
+ "@testing-library/react": "^12.1.5",
63
+ "react-dom": "^16.8.0",
64
+ "typescript": "~5.4.2",
65
+ "wait-for-expect": "^1.2.0"
66
+ },
67
+ "techstack": {
68
+ "@atlassian/frontend": {
69
+ "import-structure": [
70
+ "atlassian-conventions"
71
+ ],
72
+ "circular-dependencies": [
73
+ "file-and-folder-level"
74
+ ]
75
+ },
76
+ "@repo/internal": {
77
+ "dom-events": "use-bind-event-listener",
78
+ "analytics": [
79
+ "analytics-next"
80
+ ],
81
+ "design-tokens": [
82
+ "color"
83
+ ],
84
+ "theming": [
85
+ "react-context"
86
+ ],
87
+ "ui-components": [
88
+ "lite-mode"
89
+ ],
90
+ "deprecation": "no-deprecated-imports",
91
+ "styling": [
92
+ "emotion",
93
+ "emotion"
94
+ ],
95
+ "imports": [
96
+ "import-no-extraneous-disable-for-examples-and-docs"
97
+ ]
98
+ }
99
+ }
100
+ }