@atlaskit/editor-plugin-date 1.2.3 → 1.2.5
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 +16 -0
- package/dist/cjs/plugin.js +2 -1
- package/dist/cjs/ui/DatePicker/date-picker-input.js +1 -1
- package/dist/cjs/ui/DatePicker/index.js +2 -1
- package/dist/es2019/plugin.js +26 -23
- package/dist/es2019/ui/DatePicker/date-picker-input.js +1 -0
- package/dist/es2019/ui/DatePicker/index.js +3 -0
- package/dist/esm/plugin.js +2 -1
- package/dist/esm/ui/DatePicker/date-picker-input.js +1 -0
- package/dist/esm/ui/DatePicker/index.js +3 -0
- package/dist/types/types.d.ts +2 -1
- package/dist/types-ts4.5/types.d.ts +2 -1
- package/package.json +104 -104
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-date
|
|
2
2
|
|
|
3
|
+
## 1.2.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 1.2.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#110390](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/110390)
|
|
14
|
+
[`bead123202369`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bead123202369) -
|
|
15
|
+
[ux] [ED-23642] Reordering the typeahead so that date, status, code block & info panel are above
|
|
16
|
+
the fold (in the top 5 results)
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 1.2.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/cjs/plugin.js
CHANGED
|
@@ -167,12 +167,13 @@ var datePlugin = function datePlugin(_ref3) {
|
|
|
167
167
|
},
|
|
168
168
|
pluginsOptions: {
|
|
169
169
|
quickInsert: function quickInsert(_ref6) {
|
|
170
|
+
var _options$getEditorFea;
|
|
170
171
|
var formatMessage = _ref6.formatMessage;
|
|
171
172
|
return [{
|
|
172
173
|
id: 'date',
|
|
173
174
|
title: formatMessage(_messages.toolbarInsertBlockMessages.date),
|
|
174
175
|
description: formatMessage(_messages.toolbarInsertBlockMessages.dateDescription),
|
|
175
|
-
priority: 800,
|
|
176
|
+
priority: (_options$getEditorFea = options.getEditorFeatureFlags) !== null && _options$getEditorFea !== void 0 && _options$getEditorFea.call(options).platformEditorTypeaheadImprovedRelevancy ? 100 : 800,
|
|
176
177
|
keywords: ['calendar', 'day', 'time', 'today', '/'],
|
|
177
178
|
keyshortcut: '//',
|
|
178
179
|
icon: function icon() {
|
|
@@ -22,7 +22,7 @@ var _textfield = _interopRequireDefault(require("@atlaskit/textfield"));
|
|
|
22
22
|
var _formatParse = require("../../utils/formatParse");
|
|
23
23
|
var _internal = require("../../utils/internal");
|
|
24
24
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
25
|
-
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } /** @jsx jsx */
|
|
25
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } /** @jsx jsx */ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
26
26
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
27
27
|
var dateTextFieldWrapper = (0, _react2.css)({
|
|
28
28
|
// eslint-disable-next-line @atlaskit/design-system/use-tokens-space
|
|
@@ -25,11 +25,12 @@ var _colors = require("@atlaskit/theme/colors");
|
|
|
25
25
|
var _constants = require("@atlaskit/theme/constants");
|
|
26
26
|
var _datePickerInput = _interopRequireDefault(require("./date-picker-input"));
|
|
27
27
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
28
|
-
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } /** @jsx jsx */
|
|
28
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } /** @jsx jsx */ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
29
29
|
var PopupWithListeners = (0, _ui.withOuterListeners)(_ui.Popup);
|
|
30
30
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
31
31
|
var popupContentWrapper = (0, _react2.css)({
|
|
32
32
|
padding: "var(--ds-space-025, 2px)",
|
|
33
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
33
34
|
borderRadius: "".concat((0, _constants.borderRadius)(), "px"),
|
|
34
35
|
boxShadow: "var(--ds-shadow-overlay, ".concat("0 4px 8px -2px ".concat(_colors.N60A, ", 0 0 1px ").concat(_colors.N60A), ")"),
|
|
35
36
|
backgroundColor: "var(--ds-surface-overlay, ".concat(_colors.N0, ")")
|
package/dist/es2019/plugin.js
CHANGED
|
@@ -158,29 +158,32 @@ const datePlugin = ({
|
|
|
158
158
|
pluginsOptions: {
|
|
159
159
|
quickInsert: ({
|
|
160
160
|
formatMessage
|
|
161
|
-
}) =>
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
161
|
+
}) => {
|
|
162
|
+
var _options$getEditorFea;
|
|
163
|
+
return [{
|
|
164
|
+
id: 'date',
|
|
165
|
+
title: formatMessage(messages.date),
|
|
166
|
+
description: formatMessage(messages.dateDescription),
|
|
167
|
+
priority: (_options$getEditorFea = options.getEditorFeatureFlags) !== null && _options$getEditorFea !== void 0 && _options$getEditorFea.call(options).platformEditorTypeaheadImprovedRelevancy ? 100 : 800,
|
|
168
|
+
keywords: ['calendar', 'day', 'time', 'today', '/'],
|
|
169
|
+
keyshortcut: '//',
|
|
170
|
+
icon: () => /*#__PURE__*/React.createElement(IconDate, null),
|
|
171
|
+
action(insert, state) {
|
|
172
|
+
var _api$analytics, _api$analytics$action, _api$analytics$action2;
|
|
173
|
+
const tr = createDate(true)(state);
|
|
174
|
+
api === null || api === void 0 ? void 0 : (_api$analytics = api.analytics) === null || _api$analytics === void 0 ? void 0 : (_api$analytics$action = _api$analytics.actions) === null || _api$analytics$action === void 0 ? void 0 : (_api$analytics$action2 = _api$analytics$action.attachAnalyticsEvent) === null || _api$analytics$action2 === void 0 ? void 0 : _api$analytics$action2.call(_api$analytics$action, {
|
|
175
|
+
action: ACTION.INSERTED,
|
|
176
|
+
actionSubject: ACTION_SUBJECT.DOCUMENT,
|
|
177
|
+
actionSubjectId: ACTION_SUBJECT_ID.DATE,
|
|
178
|
+
eventType: EVENT_TYPE.TRACK,
|
|
179
|
+
attributes: {
|
|
180
|
+
inputMethod: INPUT_METHOD.QUICK_INSERT
|
|
181
|
+
}
|
|
182
|
+
})(tr);
|
|
183
|
+
return tr;
|
|
184
|
+
}
|
|
185
|
+
}];
|
|
186
|
+
}
|
|
184
187
|
}
|
|
185
188
|
});
|
|
186
189
|
export default datePlugin;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
2
|
/** @jsx jsx */
|
|
3
3
|
import React from 'react';
|
|
4
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
4
5
|
import { css, jsx } from '@emotion/react';
|
|
5
6
|
import { injectIntl } from 'react-intl-next';
|
|
6
7
|
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
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 { css, jsx } from '@emotion/react';
|
|
5
7
|
import ReactDOM from 'react-dom';
|
|
6
8
|
import { injectIntl } from 'react-intl-next';
|
|
@@ -17,6 +19,7 @@ import DatePickerInput from './date-picker-input';
|
|
|
17
19
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
18
20
|
const popupContentWrapper = css({
|
|
19
21
|
padding: "var(--ds-space-025, 2px)",
|
|
22
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
20
23
|
borderRadius: `${borderRadius()}px`,
|
|
21
24
|
boxShadow: `var(--ds-shadow-overlay, ${`0 4px 8px -2px ${N60A}, 0 0 1px ${N60A}`})`,
|
|
22
25
|
backgroundColor: `var(--ds-surface-overlay, ${N0})`
|
package/dist/esm/plugin.js
CHANGED
|
@@ -155,12 +155,13 @@ var datePlugin = function datePlugin(_ref3) {
|
|
|
155
155
|
},
|
|
156
156
|
pluginsOptions: {
|
|
157
157
|
quickInsert: function quickInsert(_ref6) {
|
|
158
|
+
var _options$getEditorFea;
|
|
158
159
|
var formatMessage = _ref6.formatMessage;
|
|
159
160
|
return [{
|
|
160
161
|
id: 'date',
|
|
161
162
|
title: formatMessage(messages.date),
|
|
162
163
|
description: formatMessage(messages.dateDescription),
|
|
163
|
-
priority: 800,
|
|
164
|
+
priority: (_options$getEditorFea = options.getEditorFeatureFlags) !== null && _options$getEditorFea !== void 0 && _options$getEditorFea.call(options).platformEditorTypeaheadImprovedRelevancy ? 100 : 800,
|
|
164
165
|
keywords: ['calendar', 'day', 'time', 'today', '/'],
|
|
165
166
|
keyshortcut: '//',
|
|
166
167
|
icon: function icon() {
|
|
@@ -9,6 +9,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
9
9
|
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
10
10
|
/** @jsx jsx */
|
|
11
11
|
import React from 'react';
|
|
12
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
12
13
|
import { css, jsx } from '@emotion/react';
|
|
13
14
|
import { injectIntl } from 'react-intl-next';
|
|
14
15
|
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
|
|
@@ -9,6 +9,8 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
9
9
|
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
10
10
|
/** @jsx jsx */
|
|
11
11
|
import React from 'react';
|
|
12
|
+
|
|
13
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
12
14
|
import { css, jsx } from '@emotion/react';
|
|
13
15
|
import ReactDOM from 'react-dom';
|
|
14
16
|
import { injectIntl } from 'react-intl-next';
|
|
@@ -25,6 +27,7 @@ import DatePickerInput from './date-picker-input';
|
|
|
25
27
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
26
28
|
var popupContentWrapper = css({
|
|
27
29
|
padding: "var(--ds-space-025, 2px)",
|
|
30
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
28
31
|
borderRadius: "".concat(borderRadius(), "px"),
|
|
29
32
|
boxShadow: "var(--ds-shadow-overlay, ".concat("0 4px 8px -2px ".concat(N60A, ", 0 0 1px ").concat(N60A), ")"),
|
|
30
33
|
backgroundColor: "var(--ds-surface-overlay, ".concat(N0, ")")
|
package/dist/types/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { WeekDay } from '@atlaskit/calendar/types';
|
|
2
2
|
import type { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
3
|
-
import type { EditorCommand, NextEditorPlugin, TOOLBAR_MENU_TYPE } from '@atlaskit/editor-common/types';
|
|
3
|
+
import type { EditorCommand, GetEditorFeatureFlags, NextEditorPlugin, TOOLBAR_MENU_TYPE } from '@atlaskit/editor-common/types';
|
|
4
4
|
import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
|
|
5
5
|
import type { EditorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabled';
|
|
6
6
|
export type DateSegment = 'day' | 'month' | 'year';
|
|
@@ -11,6 +11,7 @@ export type DateType = {
|
|
|
11
11
|
};
|
|
12
12
|
export interface DatePluginConfig {
|
|
13
13
|
weekStartDay?: WeekDay;
|
|
14
|
+
getEditorFeatureFlags?: GetEditorFeatureFlags;
|
|
14
15
|
}
|
|
15
16
|
export type DatePluginSharedState = {
|
|
16
17
|
showDatePickerAt?: number | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { WeekDay } from '@atlaskit/calendar/types';
|
|
2
2
|
import type { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
3
|
-
import type { EditorCommand, NextEditorPlugin, TOOLBAR_MENU_TYPE } from '@atlaskit/editor-common/types';
|
|
3
|
+
import type { EditorCommand, GetEditorFeatureFlags, NextEditorPlugin, TOOLBAR_MENU_TYPE } from '@atlaskit/editor-common/types';
|
|
4
4
|
import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
|
|
5
5
|
import type { EditorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabled';
|
|
6
6
|
export type DateSegment = 'day' | 'month' | 'year';
|
|
@@ -11,6 +11,7 @@ export type DateType = {
|
|
|
11
11
|
};
|
|
12
12
|
export interface DatePluginConfig {
|
|
13
13
|
weekStartDay?: WeekDay;
|
|
14
|
+
getEditorFeatureFlags?: GetEditorFeatureFlags;
|
|
14
15
|
}
|
|
15
16
|
export type DatePluginSharedState = {
|
|
16
17
|
showDatePickerAt?: number | null;
|
package/package.json
CHANGED
|
@@ -1,105 +1,105 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
}
|
|
2
|
+
"name": "@atlaskit/editor-plugin-date",
|
|
3
|
+
"version": "1.2.5",
|
|
4
|
+
"description": "Date 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
|
+
"releaseModel": "continuous",
|
|
14
|
+
"runReact18": false
|
|
15
|
+
},
|
|
16
|
+
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
|
|
17
|
+
"main": "dist/cjs/index.js",
|
|
18
|
+
"module": "dist/esm/index.js",
|
|
19
|
+
"module:es2019": "dist/es2019/index.js",
|
|
20
|
+
"types": "dist/types/index.d.ts",
|
|
21
|
+
"typesVersions": {
|
|
22
|
+
">=4.5 <4.9": {
|
|
23
|
+
"*": [
|
|
24
|
+
"dist/types-ts4.5/*",
|
|
25
|
+
"dist/types-ts4.5/index.d.ts"
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"sideEffects": false,
|
|
30
|
+
"atlaskit:src": "src/index.ts",
|
|
31
|
+
"af:exports": {
|
|
32
|
+
".": "./src/index.ts"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@atlaskit/adf-schema": "^36.10.7",
|
|
36
|
+
"@atlaskit/calendar": "^14.2.0",
|
|
37
|
+
"@atlaskit/date": "^0.10.0",
|
|
38
|
+
"@atlaskit/editor-common": "^82.8.0",
|
|
39
|
+
"@atlaskit/editor-plugin-analytics": "^1.2.0",
|
|
40
|
+
"@atlaskit/editor-plugin-editor-disabled": "^1.1.0",
|
|
41
|
+
"@atlaskit/editor-prosemirror": "4.0.1",
|
|
42
|
+
"@atlaskit/editor-shared-styles": "^2.12.0",
|
|
43
|
+
"@atlaskit/form": "^10.3.0",
|
|
44
|
+
"@atlaskit/locale": "^2.7.0",
|
|
45
|
+
"@atlaskit/textfield": "6.4.0",
|
|
46
|
+
"@atlaskit/theme": "^12.10.0",
|
|
47
|
+
"@atlaskit/tokens": "^1.51.0",
|
|
48
|
+
"@babel/runtime": "^7.0.0",
|
|
49
|
+
"@emotion/react": "^11.7.1",
|
|
50
|
+
"date-fns": "^2.17.0",
|
|
51
|
+
"react-dom": "^16.8.0",
|
|
52
|
+
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
53
|
+
"react-loadable": "^5.1.0"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@atlaskit/editor-plugin-composition": "^1.1.0",
|
|
57
|
+
"@atlaskit/editor-plugin-content-insertion": "^1.2.0",
|
|
58
|
+
"@atlaskit/editor-plugin-decorations": "^1.1.0",
|
|
59
|
+
"@atlaskit/editor-plugin-feature-flags": "^1.1.0",
|
|
60
|
+
"@atlaskit/editor-plugin-guideline": "^1.1.0",
|
|
61
|
+
"@atlaskit/editor-plugin-quick-insert": "^1.1.0",
|
|
62
|
+
"@atlaskit/editor-plugin-selection": "^1.2.0",
|
|
63
|
+
"@atlaskit/editor-plugin-table": "^7.17.0",
|
|
64
|
+
"@atlaskit/editor-plugin-tasks-and-decisions": "^1.3.0",
|
|
65
|
+
"@atlaskit/editor-plugin-type-ahead": "^1.2.0",
|
|
66
|
+
"@atlaskit/editor-plugin-width": "^1.1.0",
|
|
67
|
+
"@testing-library/react": "^12.1.5"
|
|
68
|
+
},
|
|
69
|
+
"peerDependencies": {
|
|
70
|
+
"react": "^16.8.0"
|
|
71
|
+
},
|
|
72
|
+
"techstack": {
|
|
73
|
+
"@atlassian/frontend": {
|
|
74
|
+
"import-structure": [
|
|
75
|
+
"atlassian-conventions"
|
|
76
|
+
],
|
|
77
|
+
"circular-dependencies": [
|
|
78
|
+
"file-and-folder-level"
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
"@repo/internal": {
|
|
82
|
+
"dom-events": "use-bind-event-listener",
|
|
83
|
+
"analytics": [
|
|
84
|
+
"analytics-next"
|
|
85
|
+
],
|
|
86
|
+
"design-tokens": [
|
|
87
|
+
"color"
|
|
88
|
+
],
|
|
89
|
+
"theming": [
|
|
90
|
+
"react-context"
|
|
91
|
+
],
|
|
92
|
+
"ui-components": [
|
|
93
|
+
"lite-mode"
|
|
94
|
+
],
|
|
95
|
+
"deprecation": "no-deprecated-imports",
|
|
96
|
+
"styling": [
|
|
97
|
+
"emotion",
|
|
98
|
+
"emotion"
|
|
99
|
+
],
|
|
100
|
+
"imports": [
|
|
101
|
+
"import-no-extraneous-disable-for-examples-and-docs"
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|