@atlaskit/renderer 109.4.0 → 109.4.2
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 +13 -0
- package/dist/cjs/react/nodes/mediaInline.js +12 -2
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/es2019/react/nodes/mediaInline.js +13 -2
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/esm/react/nodes/mediaInline.js +12 -2
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/package.json +8 -8
- package/tsconfig.json +1 -1020
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 109.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#71201](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/71201) [`1b48cdd3c074`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1b48cdd3c074) - ED-21767 fixed dom structure for inline images.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
10
|
+
## 109.4.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [#68572](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68572) [`15d407fe5143`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/15d407fe5143) - Upgrading @atlaskit/editor-prosemirror dependency
|
|
15
|
+
|
|
3
16
|
## 109.4.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -19,6 +19,10 @@ var _mediaUi = require("@atlaskit/media-ui");
|
|
|
19
19
|
var _react = _interopRequireWildcard(require("react"));
|
|
20
20
|
var _reactIntlNext = require("react-intl-next");
|
|
21
21
|
var _MediaCard = require("../../ui/MediaCard");
|
|
22
|
+
var _analyticsNext = require("@atlaskit/analytics-next");
|
|
23
|
+
var _ErrorBoundary = require("../../ui/Renderer/ErrorBoundary");
|
|
24
|
+
var _enums = require("../../analytics/enums");
|
|
25
|
+
var _analytics = require("@atlaskit/editor-common/analytics");
|
|
22
26
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
23
27
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
24
28
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
@@ -163,6 +167,8 @@ var MediaInline = function MediaInline(props) {
|
|
|
163
167
|
collectionName: collection
|
|
164
168
|
};
|
|
165
169
|
var mediaClient = (0, _react.useContext)(_mediaClientReact.MediaClientContext);
|
|
170
|
+
var _useAnalyticsEvents = (0, _analyticsNext.useAnalyticsEvents)(),
|
|
171
|
+
createAnalyticsEvent = _useAnalyticsEvents.createAnalyticsEvent;
|
|
166
172
|
if (fileType === 'image') {
|
|
167
173
|
var _borderMark$attrs$col, _borderMark$attrs$siz;
|
|
168
174
|
var borderMark = marks === null || marks === void 0 ? void 0 : marks.find(function (mark) {
|
|
@@ -170,7 +176,11 @@ var MediaInline = function MediaInline(props) {
|
|
|
170
176
|
});
|
|
171
177
|
var borderColor = (_borderMark$attrs$col = borderMark === null || borderMark === void 0 ? void 0 : borderMark.attrs.color) !== null && _borderMark$attrs$col !== void 0 ? _borderMark$attrs$col : '';
|
|
172
178
|
var borderSize = (_borderMark$attrs$siz = borderMark === null || borderMark === void 0 ? void 0 : borderMark.attrs.size) !== null && _borderMark$attrs$siz !== void 0 ? _borderMark$attrs$siz : 0;
|
|
173
|
-
return /*#__PURE__*/_react.default.createElement(
|
|
179
|
+
return /*#__PURE__*/_react.default.createElement(_ErrorBoundary.ErrorBoundary, {
|
|
180
|
+
component: _enums.ACTION_SUBJECT.RENDERER,
|
|
181
|
+
componentId: _analytics.ACTION_SUBJECT_ID.MEDIA_INLINE_IMAGE,
|
|
182
|
+
createAnalyticsEvent: createAnalyticsEvent
|
|
183
|
+
}, /*#__PURE__*/_react.default.createElement(_mediaInline.MediaInlineImageCard, {
|
|
174
184
|
mediaClient: mediaClient,
|
|
175
185
|
identifier: identifier,
|
|
176
186
|
alt: alt,
|
|
@@ -182,7 +192,7 @@ var MediaInline = function MediaInline(props) {
|
|
|
182
192
|
borderColor: borderColor
|
|
183
193
|
},
|
|
184
194
|
serializeDataAttrs: true
|
|
185
|
-
});
|
|
195
|
+
}));
|
|
186
196
|
}
|
|
187
197
|
return /*#__PURE__*/_react.default.createElement(RenderMediaInline, {
|
|
188
198
|
identifier: identifier,
|
|
@@ -54,7 +54,7 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Re
|
|
|
54
54
|
var NORMAL_SEVERITY_THRESHOLD = exports.NORMAL_SEVERITY_THRESHOLD = 2000;
|
|
55
55
|
var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
56
56
|
var packageName = "@atlaskit/renderer";
|
|
57
|
-
var packageVersion = "109.4.
|
|
57
|
+
var packageVersion = "109.4.2";
|
|
58
58
|
var Renderer = exports.Renderer = /*#__PURE__*/function (_PureComponent) {
|
|
59
59
|
(0, _inherits2.default)(Renderer, _PureComponent);
|
|
60
60
|
var _super = _createSuper(Renderer);
|
|
@@ -7,6 +7,10 @@ import { MediaInlineCardLoadingView } from '@atlaskit/media-ui';
|
|
|
7
7
|
import React, { useCallback, useEffect, useState, useContext } from 'react';
|
|
8
8
|
import { injectIntl } from 'react-intl-next';
|
|
9
9
|
import { getClipboardAttrs, mediaIdentifierMap } from '../../ui/MediaCard';
|
|
10
|
+
import { useAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
11
|
+
import { ErrorBoundary } from '../../ui/Renderer/ErrorBoundary';
|
|
12
|
+
import { ACTION_SUBJECT } from '../../analytics/enums';
|
|
13
|
+
import { ACTION_SUBJECT_ID } from '@atlaskit/editor-common/analytics';
|
|
10
14
|
export const RenderMediaInline = ({
|
|
11
15
|
rendererAppearance,
|
|
12
16
|
clipboardAttrs,
|
|
@@ -129,12 +133,19 @@ const MediaInline = props => {
|
|
|
129
133
|
collectionName: collection
|
|
130
134
|
};
|
|
131
135
|
const mediaClient = useContext(MediaClientContext);
|
|
136
|
+
const {
|
|
137
|
+
createAnalyticsEvent
|
|
138
|
+
} = useAnalyticsEvents();
|
|
132
139
|
if (fileType === 'image') {
|
|
133
140
|
var _borderMark$attrs$col, _borderMark$attrs$siz;
|
|
134
141
|
const borderMark = marks === null || marks === void 0 ? void 0 : marks.find(mark => (mark === null || mark === void 0 ? void 0 : mark.type.name) === 'border');
|
|
135
142
|
const borderColor = (_borderMark$attrs$col = borderMark === null || borderMark === void 0 ? void 0 : borderMark.attrs.color) !== null && _borderMark$attrs$col !== void 0 ? _borderMark$attrs$col : '';
|
|
136
143
|
const borderSize = (_borderMark$attrs$siz = borderMark === null || borderMark === void 0 ? void 0 : borderMark.attrs.size) !== null && _borderMark$attrs$siz !== void 0 ? _borderMark$attrs$siz : 0;
|
|
137
|
-
return /*#__PURE__*/React.createElement(
|
|
144
|
+
return /*#__PURE__*/React.createElement(ErrorBoundary, {
|
|
145
|
+
component: ACTION_SUBJECT.RENDERER,
|
|
146
|
+
componentId: ACTION_SUBJECT_ID.MEDIA_INLINE_IMAGE,
|
|
147
|
+
createAnalyticsEvent: createAnalyticsEvent
|
|
148
|
+
}, /*#__PURE__*/React.createElement(MediaInlineImageCard, {
|
|
138
149
|
mediaClient: mediaClient,
|
|
139
150
|
identifier: identifier,
|
|
140
151
|
alt: alt,
|
|
@@ -146,7 +157,7 @@ const MediaInline = props => {
|
|
|
146
157
|
borderColor
|
|
147
158
|
},
|
|
148
159
|
serializeDataAttrs: true
|
|
149
|
-
});
|
|
160
|
+
}));
|
|
150
161
|
}
|
|
151
162
|
return /*#__PURE__*/React.createElement(RenderMediaInline, {
|
|
152
163
|
identifier: identifier,
|
|
@@ -35,7 +35,7 @@ import { EditorMediaClientProvider } from '../../react/utils/EditorMediaClientPr
|
|
|
35
35
|
export const NORMAL_SEVERITY_THRESHOLD = 2000;
|
|
36
36
|
export const DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
37
37
|
const packageName = "@atlaskit/renderer";
|
|
38
|
-
const packageVersion = "109.4.
|
|
38
|
+
const packageVersion = "109.4.2";
|
|
39
39
|
export class Renderer extends PureComponent {
|
|
40
40
|
constructor(props) {
|
|
41
41
|
super(props);
|
|
@@ -13,6 +13,10 @@ import { MediaInlineCardLoadingView } from '@atlaskit/media-ui';
|
|
|
13
13
|
import React, { useCallback, useEffect, useState, useContext } from 'react';
|
|
14
14
|
import { injectIntl } from 'react-intl-next';
|
|
15
15
|
import { getClipboardAttrs, mediaIdentifierMap } from '../../ui/MediaCard';
|
|
16
|
+
import { useAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
17
|
+
import { ErrorBoundary } from '../../ui/Renderer/ErrorBoundary';
|
|
18
|
+
import { ACTION_SUBJECT } from '../../analytics/enums';
|
|
19
|
+
import { ACTION_SUBJECT_ID } from '@atlaskit/editor-common/analytics';
|
|
16
20
|
export var RenderMediaInline = function RenderMediaInline(_ref) {
|
|
17
21
|
var rendererAppearance = _ref.rendererAppearance,
|
|
18
22
|
clipboardAttrs = _ref.clipboardAttrs,
|
|
@@ -153,6 +157,8 @@ var MediaInline = function MediaInline(props) {
|
|
|
153
157
|
collectionName: collection
|
|
154
158
|
};
|
|
155
159
|
var mediaClient = useContext(MediaClientContext);
|
|
160
|
+
var _useAnalyticsEvents = useAnalyticsEvents(),
|
|
161
|
+
createAnalyticsEvent = _useAnalyticsEvents.createAnalyticsEvent;
|
|
156
162
|
if (fileType === 'image') {
|
|
157
163
|
var _borderMark$attrs$col, _borderMark$attrs$siz;
|
|
158
164
|
var borderMark = marks === null || marks === void 0 ? void 0 : marks.find(function (mark) {
|
|
@@ -160,7 +166,11 @@ var MediaInline = function MediaInline(props) {
|
|
|
160
166
|
});
|
|
161
167
|
var borderColor = (_borderMark$attrs$col = borderMark === null || borderMark === void 0 ? void 0 : borderMark.attrs.color) !== null && _borderMark$attrs$col !== void 0 ? _borderMark$attrs$col : '';
|
|
162
168
|
var borderSize = (_borderMark$attrs$siz = borderMark === null || borderMark === void 0 ? void 0 : borderMark.attrs.size) !== null && _borderMark$attrs$siz !== void 0 ? _borderMark$attrs$siz : 0;
|
|
163
|
-
return /*#__PURE__*/React.createElement(
|
|
169
|
+
return /*#__PURE__*/React.createElement(ErrorBoundary, {
|
|
170
|
+
component: ACTION_SUBJECT.RENDERER,
|
|
171
|
+
componentId: ACTION_SUBJECT_ID.MEDIA_INLINE_IMAGE,
|
|
172
|
+
createAnalyticsEvent: createAnalyticsEvent
|
|
173
|
+
}, /*#__PURE__*/React.createElement(MediaInlineImageCard, {
|
|
164
174
|
mediaClient: mediaClient,
|
|
165
175
|
identifier: identifier,
|
|
166
176
|
alt: alt,
|
|
@@ -172,7 +182,7 @@ var MediaInline = function MediaInline(props) {
|
|
|
172
182
|
borderColor: borderColor
|
|
173
183
|
},
|
|
174
184
|
serializeDataAttrs: true
|
|
175
|
-
});
|
|
185
|
+
}));
|
|
176
186
|
}
|
|
177
187
|
return /*#__PURE__*/React.createElement(RenderMediaInline, {
|
|
178
188
|
identifier: identifier,
|
|
@@ -45,7 +45,7 @@ import { EditorMediaClientProvider } from '../../react/utils/EditorMediaClientPr
|
|
|
45
45
|
export var NORMAL_SEVERITY_THRESHOLD = 2000;
|
|
46
46
|
export var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
47
47
|
var packageName = "@atlaskit/renderer";
|
|
48
|
-
var packageVersion = "109.4.
|
|
48
|
+
var packageVersion = "109.4.2";
|
|
49
49
|
export var Renderer = /*#__PURE__*/function (_PureComponent) {
|
|
50
50
|
_inherits(Renderer, _PureComponent);
|
|
51
51
|
var _super = _createSuper(Renderer);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "109.4.
|
|
3
|
+
"version": "109.4.2",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,27 +32,27 @@
|
|
|
32
32
|
"@atlaskit/analytics-next": "^9.2.0",
|
|
33
33
|
"@atlaskit/button": "^17.3.0",
|
|
34
34
|
"@atlaskit/code": "^15.1.0",
|
|
35
|
-
"@atlaskit/editor-common": "^77.
|
|
35
|
+
"@atlaskit/editor-common": "^77.4.0",
|
|
36
36
|
"@atlaskit/editor-json-transformer": "^8.10.0",
|
|
37
37
|
"@atlaskit/editor-palette": "1.5.2",
|
|
38
|
-
"@atlaskit/editor-prosemirror": "
|
|
38
|
+
"@atlaskit/editor-prosemirror": "3.0.0",
|
|
39
39
|
"@atlaskit/editor-shared-styles": "^2.9.0",
|
|
40
40
|
"@atlaskit/emoji": "^67.6.0",
|
|
41
41
|
"@atlaskit/icon": "^22.0.0",
|
|
42
42
|
"@atlaskit/link-datasource": "^1.22.0",
|
|
43
|
-
"@atlaskit/media-card": "^77.
|
|
43
|
+
"@atlaskit/media-card": "^77.9.0",
|
|
44
44
|
"@atlaskit/media-client": "^26.1.0",
|
|
45
45
|
"@atlaskit/media-client-react": "^2.0.0",
|
|
46
46
|
"@atlaskit/media-common": "^11.0.0",
|
|
47
47
|
"@atlaskit/media-filmstrip": "^47.0.0",
|
|
48
|
-
"@atlaskit/media-ui": "^25.
|
|
48
|
+
"@atlaskit/media-ui": "^25.1.0",
|
|
49
49
|
"@atlaskit/media-viewer": "^48.2.0",
|
|
50
50
|
"@atlaskit/platform-feature-flags": "^0.2.0",
|
|
51
|
-
"@atlaskit/smart-card": "^26.
|
|
51
|
+
"@atlaskit/smart-card": "^26.47.0",
|
|
52
52
|
"@atlaskit/status": "^1.4.0",
|
|
53
53
|
"@atlaskit/task-decision": "^17.9.0",
|
|
54
54
|
"@atlaskit/theme": "^12.6.0",
|
|
55
|
-
"@atlaskit/tokens": "^1.
|
|
55
|
+
"@atlaskit/tokens": "^1.36.0",
|
|
56
56
|
"@atlaskit/tooltip": "^18.1.0",
|
|
57
57
|
"@babel/runtime": "^7.0.0",
|
|
58
58
|
"@emotion/react": "^11.7.1",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"@atlaskit/media-test-helpers": "^33.0.0",
|
|
81
81
|
"@atlaskit/mention": "^22.1.0",
|
|
82
82
|
"@atlaskit/navigation-next": "^9.0.0",
|
|
83
|
-
"@atlaskit/util-data-test": "^17.
|
|
83
|
+
"@atlaskit/util-data-test": "^17.9.0",
|
|
84
84
|
"@atlaskit/visual-regression": "*",
|
|
85
85
|
"@atlaskit/webdriver-runner": "*",
|
|
86
86
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
package/tsconfig.json
CHANGED
|
@@ -1,1026 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"extends": "../../../tsconfig.json",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
-
"baseUrl": "./"
|
|
5
|
-
"paths": {
|
|
6
|
-
"@atlaskit/adf-utils/builders": [
|
|
7
|
-
"../adf-utils/src/builders.ts"
|
|
8
|
-
],
|
|
9
|
-
"@atlaskit/adf-utils/empty-adf": [
|
|
10
|
-
"../adf-utils/src/empty-adf.ts"
|
|
11
|
-
],
|
|
12
|
-
"@atlaskit/adf-utils/scrub": [
|
|
13
|
-
"../adf-utils/src/scrub.ts"
|
|
14
|
-
],
|
|
15
|
-
"@atlaskit/adf-utils/transforms": [
|
|
16
|
-
"../adf-utils/src/transforms.ts"
|
|
17
|
-
],
|
|
18
|
-
"@atlaskit/adf-utils/traverse": [
|
|
19
|
-
"../adf-utils/src/traverse.ts"
|
|
20
|
-
],
|
|
21
|
-
"@atlaskit/adf-utils/validator": [
|
|
22
|
-
"../adf-utils/src/validator.ts"
|
|
23
|
-
],
|
|
24
|
-
"@atlaskit/adf-utils/types": [
|
|
25
|
-
"../adf-utils/src/types/index.ts"
|
|
26
|
-
],
|
|
27
|
-
"@atlaskit/adf-utils/validatorTypes": [
|
|
28
|
-
"../adf-utils/src/types/validatorTypes.ts"
|
|
29
|
-
],
|
|
30
|
-
"@atlaskit/adf-utils": [
|
|
31
|
-
"../adf-utils/src"
|
|
32
|
-
],
|
|
33
|
-
"@atlaskit/analytics-listeners/FabricAnalyticsListeners": [
|
|
34
|
-
"../../analytics/analytics-listeners/src/FabricAnalyticsListeners.tsx"
|
|
35
|
-
],
|
|
36
|
-
"@atlaskit/analytics-listeners/GenericAnalyticsListener": [
|
|
37
|
-
"../../analytics/analytics-listeners/src/GenericAnalyticsListener.tsx"
|
|
38
|
-
],
|
|
39
|
-
"@atlaskit/analytics-listeners/analytics-web-client-wrapper": [
|
|
40
|
-
"../../analytics/analytics-listeners/src/analytics-web-client-wrapper.ts"
|
|
41
|
-
],
|
|
42
|
-
"@atlaskit/analytics-listeners/types": [
|
|
43
|
-
"../../analytics/analytics-listeners/src/types.ts"
|
|
44
|
-
],
|
|
45
|
-
"@atlaskit/analytics-listeners": [
|
|
46
|
-
"../../analytics/analytics-listeners/src/index.ts"
|
|
47
|
-
],
|
|
48
|
-
"@atlaskit/analytics-namespaced-context/MediaAnalyticsContext": [
|
|
49
|
-
"../../analytics/analytics-namespaced-context/src/MediaAnalyticsContext.tsx"
|
|
50
|
-
],
|
|
51
|
-
"@atlaskit/analytics-namespaced-context/NavigationAnalyticsContext": [
|
|
52
|
-
"../../analytics/analytics-namespaced-context/src/NavigationAnalyticsContext.tsx"
|
|
53
|
-
],
|
|
54
|
-
"@atlaskit/analytics-namespaced-context/PeopleTeamsAnalyticsContext": [
|
|
55
|
-
"../../analytics/analytics-namespaced-context/src/PeopleTeamsAnalyticsContext.tsx"
|
|
56
|
-
],
|
|
57
|
-
"@atlaskit/analytics-namespaced-context/RecentWorkAnalyticsContext": [
|
|
58
|
-
"../../analytics/analytics-namespaced-context/src/RecentWorkAnalyticsContext.tsx"
|
|
59
|
-
],
|
|
60
|
-
"@atlaskit/analytics-namespaced-context/AtlasAnalyticsContext": [
|
|
61
|
-
"../../analytics/analytics-namespaced-context/src/AtlasAnalyticsContext.tsx"
|
|
62
|
-
],
|
|
63
|
-
"@atlaskit/analytics-namespaced-context/LinkingPlatformAnalyticsContext": [
|
|
64
|
-
"../../analytics/analytics-namespaced-context/src/LinkingPlatformAnalyticsContext.tsx"
|
|
65
|
-
],
|
|
66
|
-
"@atlaskit/analytics-namespaced-context/PostOfficeAnalyticsContext": [
|
|
67
|
-
"../../analytics/analytics-namespaced-context/src/PostOfficeAnalyticsContext.tsx"
|
|
68
|
-
],
|
|
69
|
-
"@atlaskit/analytics-namespaced-context": [
|
|
70
|
-
"../../analytics/analytics-namespaced-context/src/index.ts"
|
|
71
|
-
],
|
|
72
|
-
"@atlaskit/analytics-next/types": [
|
|
73
|
-
"../../analytics/analytics-next/src/types.ts"
|
|
74
|
-
],
|
|
75
|
-
"@atlaskit/analytics-next/AnalyticsContext": [
|
|
76
|
-
"../../analytics/analytics-next/src/components/AnalyticsContext/index.tsx"
|
|
77
|
-
],
|
|
78
|
-
"@atlaskit/analytics-next/AnalyticsListener": [
|
|
79
|
-
"../../analytics/analytics-next/src/components/AnalyticsListener/index.tsx"
|
|
80
|
-
],
|
|
81
|
-
"@atlaskit/analytics-next/AnalyticsErrorBoundary": [
|
|
82
|
-
"../../analytics/analytics-next/src/components/AnalyticsErrorBoundary.tsx"
|
|
83
|
-
],
|
|
84
|
-
"@atlaskit/analytics-next/withAnalyticsEvents": [
|
|
85
|
-
"../../analytics/analytics-next/src/hocs/withAnalyticsEvents.tsx"
|
|
86
|
-
],
|
|
87
|
-
"@atlaskit/analytics-next/withAnalyticsContext": [
|
|
88
|
-
"../../analytics/analytics-next/src/hocs/withAnalyticsContext.tsx"
|
|
89
|
-
],
|
|
90
|
-
"@atlaskit/analytics-next/usePlatformLeafEventHandler": [
|
|
91
|
-
"../../analytics/analytics-next/src/hooks/usePlatformLeafEventHandler.ts"
|
|
92
|
-
],
|
|
93
|
-
"@atlaskit/analytics-next/useAnalyticsEvents": [
|
|
94
|
-
"../../analytics/analytics-next/src/hooks/useAnalyticsEvents.ts"
|
|
95
|
-
],
|
|
96
|
-
"@atlaskit/analytics-next/useCallbackWithAnalytics": [
|
|
97
|
-
"../../analytics/analytics-next/src/hooks/useCallbackWithAnalytics.ts"
|
|
98
|
-
],
|
|
99
|
-
"@atlaskit/analytics-next/usePatchedProps": [
|
|
100
|
-
"../../analytics/analytics-next/src/hooks/usePatchedProps.ts"
|
|
101
|
-
],
|
|
102
|
-
"@atlaskit/analytics-next/AnalyticsEvent": [
|
|
103
|
-
"../../analytics/analytics-next/src/events/AnalyticsEvent.ts"
|
|
104
|
-
],
|
|
105
|
-
"@atlaskit/analytics-next/UIAnalyticsEvent": [
|
|
106
|
-
"../../analytics/analytics-next/src/events/UIAnalyticsEvent.ts"
|
|
107
|
-
],
|
|
108
|
-
"@atlaskit/analytics-next/createAndFireEvents": [
|
|
109
|
-
"../../analytics/analytics-next/src/utils/createAndFireEvent.ts"
|
|
110
|
-
],
|
|
111
|
-
"@atlaskit/analytics-next": [
|
|
112
|
-
"../../analytics/analytics-next/src/index.ts"
|
|
113
|
-
],
|
|
114
|
-
"@atlaskit/button/button-group": [
|
|
115
|
-
"../../design-system/button/src/entry-points/button-group.tsx"
|
|
116
|
-
],
|
|
117
|
-
"@atlaskit/button/custom-theme-button": [
|
|
118
|
-
"../../design-system/button/src/entry-points/custom-theme-button.tsx"
|
|
119
|
-
],
|
|
120
|
-
"@atlaskit/button/loading-button": [
|
|
121
|
-
"../../design-system/button/src/entry-points/loading-button.tsx"
|
|
122
|
-
],
|
|
123
|
-
"@atlaskit/button/standard-button": [
|
|
124
|
-
"../../design-system/button/src/entry-points/standard-button.tsx"
|
|
125
|
-
],
|
|
126
|
-
"@atlaskit/button/new": [
|
|
127
|
-
"../../design-system/button/src/entry-points/new.tsx"
|
|
128
|
-
],
|
|
129
|
-
"@atlaskit/button/types": [
|
|
130
|
-
"../../design-system/button/src/entry-points/types.tsx"
|
|
131
|
-
],
|
|
132
|
-
"@atlaskit/button": [
|
|
133
|
-
"../../design-system/button/src/index.tsx"
|
|
134
|
-
],
|
|
135
|
-
"@atlaskit/codeshifts": [
|
|
136
|
-
"../../../build/dev/codeshifts/src"
|
|
137
|
-
],
|
|
138
|
-
"@atlaskit/code/types": [
|
|
139
|
-
"../../design-system/code/src/entry-points/types.tsx"
|
|
140
|
-
],
|
|
141
|
-
"@atlaskit/code/bidi-warning": [
|
|
142
|
-
"../../design-system/code/src/bidi-warning/index.tsx"
|
|
143
|
-
],
|
|
144
|
-
"@atlaskit/code/bidi-warning-decorator": [
|
|
145
|
-
"../../design-system/code/src/bidi-warning/bidi-warning-decorator.tsx"
|
|
146
|
-
],
|
|
147
|
-
"@atlaskit/code/block": [
|
|
148
|
-
"../../design-system/code/src/entry-points/block.tsx"
|
|
149
|
-
],
|
|
150
|
-
"@atlaskit/code/inline": [
|
|
151
|
-
"../../design-system/code/src/entry-points/inline.tsx"
|
|
152
|
-
],
|
|
153
|
-
"@atlaskit/code/constants": [
|
|
154
|
-
"../../design-system/code/src/entry-points/constants.tsx"
|
|
155
|
-
],
|
|
156
|
-
"@atlaskit/code": [
|
|
157
|
-
"../../design-system/code/src/index.tsx"
|
|
158
|
-
],
|
|
159
|
-
"@atlaskit/codemod-cli/cli": [
|
|
160
|
-
"../../design-system/codemod-cli/src/cli.ts"
|
|
161
|
-
],
|
|
162
|
-
"@atlaskit/codemod-cli/filepath": [
|
|
163
|
-
"../../design-system/codemod-cli/src/filepath.ts"
|
|
164
|
-
],
|
|
165
|
-
"@atlaskit/codemod-cli/main": [
|
|
166
|
-
"../../design-system/codemod-cli/src/main.ts"
|
|
167
|
-
],
|
|
168
|
-
"@atlaskit/codemod-cli/sinceRef": [
|
|
169
|
-
"../../design-system/codemod-cli/src/sinceRef.ts"
|
|
170
|
-
],
|
|
171
|
-
"@atlaskit/codemod-cli/transforms": [
|
|
172
|
-
"../../design-system/codemod-cli/src/transforms.ts"
|
|
173
|
-
],
|
|
174
|
-
"@atlaskit/codemod-cli/types": [
|
|
175
|
-
"../../design-system/codemod-cli/src/types.ts"
|
|
176
|
-
],
|
|
177
|
-
"@atlaskit/codemod-cli/utils": [
|
|
178
|
-
"../../design-system/codemod-cli/src/utils.ts"
|
|
179
|
-
],
|
|
180
|
-
"@atlaskit/codemod-cli": [
|
|
181
|
-
"../../design-system/codemod-cli/src/index.ts"
|
|
182
|
-
],
|
|
183
|
-
"@atlaskit/code-insights": [
|
|
184
|
-
"../../monorepo-tooling/code-insights/src/index.ts"
|
|
185
|
-
],
|
|
186
|
-
"@atlaskit/codemod-utils": [
|
|
187
|
-
"../../monorepo-tooling/codemod-utils/src/index.ts"
|
|
188
|
-
],
|
|
189
|
-
"@atlaskit/editor-common/event-dispatcher": [
|
|
190
|
-
"../editor-common/src/event-dispatcher/index.ts"
|
|
191
|
-
],
|
|
192
|
-
"@atlaskit/editor-common/extensions": [
|
|
193
|
-
"../editor-common/src/extensions.ts"
|
|
194
|
-
],
|
|
195
|
-
"@atlaskit/editor-common/extensibility": [
|
|
196
|
-
"../editor-common/src/extensibility/index.ts"
|
|
197
|
-
],
|
|
198
|
-
"@atlaskit/editor-common/normalize-feature-flags": [
|
|
199
|
-
"../editor-common/src/normalize-feature-flags.ts"
|
|
200
|
-
],
|
|
201
|
-
"@atlaskit/editor-common/messages": [
|
|
202
|
-
"../editor-common/src/messages/index.ts"
|
|
203
|
-
],
|
|
204
|
-
"@atlaskit/editor-common/provider-factory": [
|
|
205
|
-
"../editor-common/src/provider-factory.ts"
|
|
206
|
-
],
|
|
207
|
-
"@atlaskit/editor-common/styles": [
|
|
208
|
-
"../editor-common/src/styles/index.ts"
|
|
209
|
-
],
|
|
210
|
-
"@atlaskit/editor-common/validator": [
|
|
211
|
-
"../editor-common/src/validator.ts"
|
|
212
|
-
],
|
|
213
|
-
"@atlaskit/editor-common/in-product": [
|
|
214
|
-
"../editor-common/src/in-product.ts"
|
|
215
|
-
],
|
|
216
|
-
"@atlaskit/editor-common/type-ahead": [
|
|
217
|
-
"../editor-common/src/type-ahead/index.ts"
|
|
218
|
-
],
|
|
219
|
-
"@atlaskit/editor-common/ufo": [
|
|
220
|
-
"../editor-common/src/ufo/index.ts"
|
|
221
|
-
],
|
|
222
|
-
"@atlaskit/editor-common/insert": [
|
|
223
|
-
"../editor-common/src/insert/index.ts"
|
|
224
|
-
],
|
|
225
|
-
"@atlaskit/editor-common/types": [
|
|
226
|
-
"../editor-common/src/types/index.ts"
|
|
227
|
-
],
|
|
228
|
-
"@atlaskit/editor-common/ui": [
|
|
229
|
-
"../editor-common/src/ui/index.tsx"
|
|
230
|
-
],
|
|
231
|
-
"@atlaskit/editor-common/utils": [
|
|
232
|
-
"../editor-common/src/utils/index.ts"
|
|
233
|
-
],
|
|
234
|
-
"@atlaskit/editor-common/card": [
|
|
235
|
-
"../editor-common/src/card/index.ts"
|
|
236
|
-
],
|
|
237
|
-
"@atlaskit/editor-common/collab": [
|
|
238
|
-
"../editor-common/src/collab/index.ts"
|
|
239
|
-
],
|
|
240
|
-
"@atlaskit/editor-common/emoji": [
|
|
241
|
-
"../editor-common/src/emoji.ts"
|
|
242
|
-
],
|
|
243
|
-
"@atlaskit/editor-common/mention": [
|
|
244
|
-
"../editor-common/src/mention.ts"
|
|
245
|
-
],
|
|
246
|
-
"@atlaskit/editor-common/provider-helpers": [
|
|
247
|
-
"../editor-common/src/provider-helpers/index.ts"
|
|
248
|
-
],
|
|
249
|
-
"@atlaskit/editor-common/icons": [
|
|
250
|
-
"../editor-common/src/icons/index.ts"
|
|
251
|
-
],
|
|
252
|
-
"@atlaskit/editor-common/safe-plugin": [
|
|
253
|
-
"../editor-common/src/safe-plugin/index.ts"
|
|
254
|
-
],
|
|
255
|
-
"@atlaskit/editor-common/panel": [
|
|
256
|
-
"../editor-common/src/panel.ts"
|
|
257
|
-
],
|
|
258
|
-
"@atlaskit/editor-common/analytics": [
|
|
259
|
-
"../editor-common/src/analytics/index.ts"
|
|
260
|
-
],
|
|
261
|
-
"@atlaskit/editor-common/error-boundary": [
|
|
262
|
-
"../editor-common/src/ui/ErrorBoundary/index.tsx"
|
|
263
|
-
],
|
|
264
|
-
"@atlaskit/editor-common/portal-provider": [
|
|
265
|
-
"../editor-common/src/ui/PortalProvider/index.tsx"
|
|
266
|
-
],
|
|
267
|
-
"@atlaskit/editor-common/react-node-view": [
|
|
268
|
-
"../editor-common/src/react-node-view/index.tsx"
|
|
269
|
-
],
|
|
270
|
-
"@atlaskit/editor-common/with-plugin-state": [
|
|
271
|
-
"../editor-common/src/with-plugin-state/index.tsx"
|
|
272
|
-
],
|
|
273
|
-
"@atlaskit/editor-common/node-width": [
|
|
274
|
-
"../editor-common/src/node-width/index.ts"
|
|
275
|
-
],
|
|
276
|
-
"@atlaskit/editor-common/keymaps": [
|
|
277
|
-
"../editor-common/src/keymaps/index.tsx"
|
|
278
|
-
],
|
|
279
|
-
"@atlaskit/editor-common/ui-menu": [
|
|
280
|
-
"../editor-common/src/ui-menu/index.tsx"
|
|
281
|
-
],
|
|
282
|
-
"@atlaskit/editor-common/ui-react": [
|
|
283
|
-
"../editor-common/src/ui-react/index.ts"
|
|
284
|
-
],
|
|
285
|
-
"@atlaskit/editor-common/ui-color": [
|
|
286
|
-
"../editor-common/src/ui-color/index.ts"
|
|
287
|
-
],
|
|
288
|
-
"@atlaskit/editor-common/transforms": [
|
|
289
|
-
"../editor-common/src/transforms/index.ts"
|
|
290
|
-
],
|
|
291
|
-
"@atlaskit/editor-common/core-utils": [
|
|
292
|
-
"../editor-common/src/core-utils/index.ts"
|
|
293
|
-
],
|
|
294
|
-
"@atlaskit/editor-common/selection": [
|
|
295
|
-
"../editor-common/src/selection/index.ts"
|
|
296
|
-
],
|
|
297
|
-
"@atlaskit/editor-common/preset": [
|
|
298
|
-
"../editor-common/src/preset/index.ts"
|
|
299
|
-
],
|
|
300
|
-
"@atlaskit/editor-common/hooks": [
|
|
301
|
-
"../editor-common/src/hooks/index.ts"
|
|
302
|
-
],
|
|
303
|
-
"@atlaskit/editor-common/media-inline": [
|
|
304
|
-
"../editor-common/src/media-inline/index.ts"
|
|
305
|
-
],
|
|
306
|
-
"@atlaskit/editor-common/media-single": [
|
|
307
|
-
"../editor-common/src/media-single/index.ts"
|
|
308
|
-
],
|
|
309
|
-
"@atlaskit/editor-common/monitoring": [
|
|
310
|
-
"../editor-common/src/monitoring/index.ts"
|
|
311
|
-
],
|
|
312
|
-
"@atlaskit/editor-common/paste": [
|
|
313
|
-
"../editor-common/src/paste/index.ts"
|
|
314
|
-
],
|
|
315
|
-
"@atlaskit/editor-common/resizer": [
|
|
316
|
-
"../editor-common/src/resizer/index.ts"
|
|
317
|
-
],
|
|
318
|
-
"@atlaskit/editor-common/editor-analytics": [
|
|
319
|
-
"../editor-common/src/editor-analytics/index.ts"
|
|
320
|
-
],
|
|
321
|
-
"@atlaskit/editor-common/selection-based-node-view": [
|
|
322
|
-
"../editor-common/src/selection-based-node-view/index.ts"
|
|
323
|
-
],
|
|
324
|
-
"@atlaskit/editor-common/guideline": [
|
|
325
|
-
"../editor-common/src/guideline/index.ts"
|
|
326
|
-
],
|
|
327
|
-
"@atlaskit/editor-common/quick-insert": [
|
|
328
|
-
"../editor-common/src/quick-insert/index.ts"
|
|
329
|
-
],
|
|
330
|
-
"@atlaskit/editor-common/link": [
|
|
331
|
-
"../editor-common/src/link/index.ts"
|
|
332
|
-
],
|
|
333
|
-
"@atlaskit/editor-common/mark": [
|
|
334
|
-
"../editor-common/src/mark/index.ts"
|
|
335
|
-
],
|
|
336
|
-
"@atlaskit/editor-common/commands": [
|
|
337
|
-
"../editor-common/src/commands/index.ts"
|
|
338
|
-
],
|
|
339
|
-
"@atlaskit/editor-common/clipboard": [
|
|
340
|
-
"../editor-common/src/clipboard/index.ts"
|
|
341
|
-
],
|
|
342
|
-
"@atlaskit/editor-common/lists": [
|
|
343
|
-
"../editor-common/src/lists/index.ts"
|
|
344
|
-
],
|
|
345
|
-
"@atlaskit/editor-common/element-browser": [
|
|
346
|
-
"../editor-common/src/element-browser/index.ts"
|
|
347
|
-
],
|
|
348
|
-
"@atlaskit/editor-common/floating-toolbar": [
|
|
349
|
-
"../editor-common/src/floating-toolbar/index.ts"
|
|
350
|
-
],
|
|
351
|
-
"@atlaskit/editor-common/copy-button": [
|
|
352
|
-
"../editor-common/src/copy-button/index.ts"
|
|
353
|
-
],
|
|
354
|
-
"@atlaskit/editor-common/legacy-rank-plugins": [
|
|
355
|
-
"../editor-common/src/rank.ts"
|
|
356
|
-
],
|
|
357
|
-
"@atlaskit/editor-common/indentation": [
|
|
358
|
-
"../editor-common/src/indentation/index.ts"
|
|
359
|
-
],
|
|
360
|
-
"@atlaskit/editor-common/annotation": [
|
|
361
|
-
"../editor-common/src/annotation/index.ts"
|
|
362
|
-
],
|
|
363
|
-
"@atlaskit/editor-common": [
|
|
364
|
-
"../editor-common/src"
|
|
365
|
-
],
|
|
366
|
-
"@atlaskit/editor-json-transformer/markOverrideRules": [
|
|
367
|
-
"../editor-json-transformer/src/markOverrideRules.ts"
|
|
368
|
-
],
|
|
369
|
-
"@atlaskit/editor-json-transformer/sanitize": [
|
|
370
|
-
"../editor-json-transformer/src/sanitize.ts"
|
|
371
|
-
],
|
|
372
|
-
"@atlaskit/editor-json-transformer/types": [
|
|
373
|
-
"../editor-json-transformer/src/types.ts"
|
|
374
|
-
],
|
|
375
|
-
"@atlaskit/editor-json-transformer": [
|
|
376
|
-
"../editor-json-transformer/src/index.ts"
|
|
377
|
-
],
|
|
378
|
-
"@atlaskit/editor-palette": [
|
|
379
|
-
"../editor-palette/src/index.ts"
|
|
380
|
-
],
|
|
381
|
-
"@atlaskit/editor-shared-styles/consts": [
|
|
382
|
-
"../editor-shared-styles/src/consts/index.ts"
|
|
383
|
-
],
|
|
384
|
-
"@atlaskit/editor-shared-styles/selection": [
|
|
385
|
-
"../editor-shared-styles/src/selection/index.ts"
|
|
386
|
-
],
|
|
387
|
-
"@atlaskit/editor-shared-styles/shortcut": [
|
|
388
|
-
"../editor-shared-styles/src/shortcut/index.ts"
|
|
389
|
-
],
|
|
390
|
-
"@atlaskit/editor-shared-styles/scrollbar": [
|
|
391
|
-
"../editor-shared-styles/src/scrollbar-styles.ts"
|
|
392
|
-
],
|
|
393
|
-
"@atlaskit/editor-shared-styles": [
|
|
394
|
-
"../editor-shared-styles/src/index.ts"
|
|
395
|
-
],
|
|
396
|
-
"@atlaskit/emoji/admin": [
|
|
397
|
-
"../../elements/emoji/src/admin.ts"
|
|
398
|
-
],
|
|
399
|
-
"@atlaskit/emoji/element": [
|
|
400
|
-
"../../elements/emoji/src/element.ts"
|
|
401
|
-
],
|
|
402
|
-
"@atlaskit/emoji/picker": [
|
|
403
|
-
"../../elements/emoji/src/picker.ts"
|
|
404
|
-
],
|
|
405
|
-
"@atlaskit/emoji/resource": [
|
|
406
|
-
"../../elements/emoji/src/resource.ts"
|
|
407
|
-
],
|
|
408
|
-
"@atlaskit/emoji/typeahead": [
|
|
409
|
-
"../../elements/emoji/src/typeahead.ts"
|
|
410
|
-
],
|
|
411
|
-
"@atlaskit/emoji/types": [
|
|
412
|
-
"../../elements/emoji/src/types.ts"
|
|
413
|
-
],
|
|
414
|
-
"@atlaskit/emoji/utils": [
|
|
415
|
-
"../../elements/emoji/src/utils.ts"
|
|
416
|
-
],
|
|
417
|
-
"@atlaskit/emoji": [
|
|
418
|
-
"../../elements/emoji/src/index.ts"
|
|
419
|
-
],
|
|
420
|
-
"@atlaskit/icon/base": [
|
|
421
|
-
"../../design-system/icon/src/entry-points/base.tsx"
|
|
422
|
-
],
|
|
423
|
-
"@atlaskit/icon/constants": [
|
|
424
|
-
"../../design-system/icon/src/entry-points/constants.tsx"
|
|
425
|
-
],
|
|
426
|
-
"@atlaskit/icon/metadata": [
|
|
427
|
-
"../../design-system/icon/src/entry-points/metadata.tsx"
|
|
428
|
-
],
|
|
429
|
-
"@atlaskit/icon/svg": [
|
|
430
|
-
"../../design-system/icon/src/entry-points/svg.tsx"
|
|
431
|
-
],
|
|
432
|
-
"@atlaskit/icon/types": [
|
|
433
|
-
"../../design-system/icon/src/entry-points/types.tsx"
|
|
434
|
-
],
|
|
435
|
-
"@atlaskit/icon/glyph": [
|
|
436
|
-
"../../design-system/icon/glyph"
|
|
437
|
-
],
|
|
438
|
-
"@atlaskit/icon": [
|
|
439
|
-
"../../design-system/icon/src/index.tsx"
|
|
440
|
-
],
|
|
441
|
-
"@atlaskit/icon-object/metadata": [
|
|
442
|
-
"../../design-system/icon-object/src/entry-points/metadata.tsx"
|
|
443
|
-
],
|
|
444
|
-
"@atlaskit/icon-object/glyph": [
|
|
445
|
-
"../../design-system/icon-object/glyph"
|
|
446
|
-
],
|
|
447
|
-
"@atlaskit/icon-object": [
|
|
448
|
-
"../../design-system/icon-object/src/index.tsx"
|
|
449
|
-
],
|
|
450
|
-
"@atlaskit/icon-file-type/metadata": [
|
|
451
|
-
"../../media/icon-file-type/src/entry-points/metadata.ts"
|
|
452
|
-
],
|
|
453
|
-
"@atlaskit/icon-file-type/glyph": [
|
|
454
|
-
"../../media/icon-file-type/glyph"
|
|
455
|
-
],
|
|
456
|
-
"@atlaskit/icon-file-type": [
|
|
457
|
-
"../../media/icon-file-type/src/index.ts"
|
|
458
|
-
],
|
|
459
|
-
"@atlaskit/link-datasource": [
|
|
460
|
-
"../../linking-platform/link-datasource/src/index.ts"
|
|
461
|
-
],
|
|
462
|
-
"@atlaskit/media-card/types": [
|
|
463
|
-
"../../media/media-card/src/types.ts"
|
|
464
|
-
],
|
|
465
|
-
"@atlaskit/media-card/classnames": [
|
|
466
|
-
"../../media/media-card/src/classnames.ts"
|
|
467
|
-
],
|
|
468
|
-
"@atlaskit/media-card": [
|
|
469
|
-
"../../media/media-card/src/index.ts"
|
|
470
|
-
],
|
|
471
|
-
"@atlaskit/media-client/constants": [
|
|
472
|
-
"../../media/media-client/src/constants.ts"
|
|
473
|
-
],
|
|
474
|
-
"@atlaskit/media-client/test-helpers": [
|
|
475
|
-
"../../media/media-client/src/test-helpers/index.ts"
|
|
476
|
-
],
|
|
477
|
-
"@atlaskit/media-client": [
|
|
478
|
-
"../../media/media-client/src/index.ts"
|
|
479
|
-
],
|
|
480
|
-
"@atlaskit/media-client-react/test-helpers": [
|
|
481
|
-
"../../media/media-client-react/src/test-helpers/index.ts"
|
|
482
|
-
],
|
|
483
|
-
"@atlaskit/media-client-react": [
|
|
484
|
-
"../../media/media-client-react/src/index.ts"
|
|
485
|
-
],
|
|
486
|
-
"@atlaskit/media-common/downloadUrl": [
|
|
487
|
-
"../../media/media-common/src/downloadUrl.ts"
|
|
488
|
-
],
|
|
489
|
-
"@atlaskit/media-common/mediaFeatureFlags": [
|
|
490
|
-
"../../media/media-common/src/mediaFeatureFlags/index.ts"
|
|
491
|
-
],
|
|
492
|
-
"@atlaskit/media-common/analytics": [
|
|
493
|
-
"../../media/media-common/src/analytics/index.ts"
|
|
494
|
-
],
|
|
495
|
-
"@atlaskit/media-common/docs": [
|
|
496
|
-
"../../media/media-common/src/docs/index.ts"
|
|
497
|
-
],
|
|
498
|
-
"@atlaskit/media-common/mediaTypeUtils": [
|
|
499
|
-
"../../media/media-common/src/mediaTypeUtils/index.ts"
|
|
500
|
-
],
|
|
501
|
-
"@atlaskit/media-common/test-helpers": [
|
|
502
|
-
"../../media/media-common/src/test-helpers/index.ts"
|
|
503
|
-
],
|
|
504
|
-
"@atlaskit/media-common": [
|
|
505
|
-
"../../media/media-common/src/index.ts"
|
|
506
|
-
],
|
|
507
|
-
"@atlaskit/media-filmstrip/filmstrip": [
|
|
508
|
-
"../../media/media-filmstrip/src/filmstrip.tsx"
|
|
509
|
-
],
|
|
510
|
-
"@atlaskit/media-filmstrip": [
|
|
511
|
-
"../../media/media-filmstrip/src/index.tsx"
|
|
512
|
-
],
|
|
513
|
-
"@atlaskit/media-ui/classNames": [
|
|
514
|
-
"../../media/media-ui/src/classNames.ts"
|
|
515
|
-
],
|
|
516
|
-
"@atlaskit/media-ui/media-type-icon": [
|
|
517
|
-
"../../media/media-ui/src/media-type-icon.tsx"
|
|
518
|
-
],
|
|
519
|
-
"@atlaskit/media-ui/mime-type-icon": [
|
|
520
|
-
"../../media/media-ui/src/mime-type-icon.tsx"
|
|
521
|
-
],
|
|
522
|
-
"@atlaskit/media-ui/truncateText": [
|
|
523
|
-
"../../media/media-ui/src/truncateText.tsx"
|
|
524
|
-
],
|
|
525
|
-
"@atlaskit/media-ui/messages": [
|
|
526
|
-
"../../media/media-ui/src/messages.ts"
|
|
527
|
-
],
|
|
528
|
-
"@atlaskit/media-ui/modalSpinner": [
|
|
529
|
-
"../../media/media-ui/src/modalSpinner.tsx"
|
|
530
|
-
],
|
|
531
|
-
"@atlaskit/media-ui/browser": [
|
|
532
|
-
"../../media/media-ui/src/browser.tsx"
|
|
533
|
-
],
|
|
534
|
-
"@atlaskit/media-ui/codeViewer": [
|
|
535
|
-
"../../media/media-ui/src/codeViewer.ts"
|
|
536
|
-
],
|
|
537
|
-
"@atlaskit/media-ui/util": [
|
|
538
|
-
"../../media/media-ui/src/util.ts"
|
|
539
|
-
],
|
|
540
|
-
"@atlaskit/media-ui/errorIcon": [
|
|
541
|
-
"../../media/media-ui/src/errorIcon.tsx"
|
|
542
|
-
],
|
|
543
|
-
"@atlaskit/media-ui/types": [
|
|
544
|
-
"../../media/media-ui/src/types.ts"
|
|
545
|
-
],
|
|
546
|
-
"@atlaskit/media-ui/formatDate": [
|
|
547
|
-
"../../media/media-ui/src/formatDate.ts"
|
|
548
|
-
],
|
|
549
|
-
"@atlaskit/media-ui/locales": [
|
|
550
|
-
"../../media/media-ui/src/locales.ts"
|
|
551
|
-
],
|
|
552
|
-
"@atlaskit/media-ui": [
|
|
553
|
-
"../../media/media-ui/src/index.ts"
|
|
554
|
-
],
|
|
555
|
-
"@atlaskit/media-viewer/classnames": [
|
|
556
|
-
"../../media/media-viewer/src/classnames.ts"
|
|
557
|
-
],
|
|
558
|
-
"@atlaskit/media-viewer": [
|
|
559
|
-
"../../media/media-viewer/src/index.ts"
|
|
560
|
-
],
|
|
561
|
-
"@atlaskit/platform-feature-flags": [
|
|
562
|
-
"../../platform/feature-flags/src/index.ts"
|
|
563
|
-
],
|
|
564
|
-
"@atlaskit/smart-card/ssr": [
|
|
565
|
-
"../../linking-platform/smart-card/src/ssr.tsx"
|
|
566
|
-
],
|
|
567
|
-
"@atlaskit/smart-card/in-product": [
|
|
568
|
-
"../../linking-platform/smart-card/src/in-product.ts"
|
|
569
|
-
],
|
|
570
|
-
"@atlaskit/smart-card/client": [
|
|
571
|
-
"../../linking-platform/smart-card/src/client/index.ts"
|
|
572
|
-
],
|
|
573
|
-
"@atlaskit/smart-card/types": [
|
|
574
|
-
"../../linking-platform/smart-card/src/types.ts"
|
|
575
|
-
],
|
|
576
|
-
"@atlaskit/smart-card/hooks": [
|
|
577
|
-
"../../linking-platform/smart-card/src/hooks.ts"
|
|
578
|
-
],
|
|
579
|
-
"@atlaskit/smart-card/hover-card": [
|
|
580
|
-
"../../linking-platform/smart-card/src/hoverCard.ts"
|
|
581
|
-
],
|
|
582
|
-
"@atlaskit/smart-card/link-url": [
|
|
583
|
-
"../../linking-platform/smart-card/src/linkUrl.ts"
|
|
584
|
-
],
|
|
585
|
-
"@atlaskit/smart-card": [
|
|
586
|
-
"../../linking-platform/smart-card/src/index.ts"
|
|
587
|
-
],
|
|
588
|
-
"@atlaskit/status/element": [
|
|
589
|
-
"../../elements/status/src/element.ts"
|
|
590
|
-
],
|
|
591
|
-
"@atlaskit/status/picker": [
|
|
592
|
-
"../../elements/status/src/picker.ts"
|
|
593
|
-
],
|
|
594
|
-
"@atlaskit/status": [
|
|
595
|
-
"../../elements/status/src/index.ts"
|
|
596
|
-
],
|
|
597
|
-
"@atlaskit/task-decision/constants": [
|
|
598
|
-
"../../elements/task-decision/src/constants.ts"
|
|
599
|
-
],
|
|
600
|
-
"@atlaskit/task-decision/type-helpers": [
|
|
601
|
-
"../../elements/task-decision/src/type-helpers.ts"
|
|
602
|
-
],
|
|
603
|
-
"@atlaskit/task-decision/types": [
|
|
604
|
-
"../../elements/task-decision/src/types.ts"
|
|
605
|
-
],
|
|
606
|
-
"@atlaskit/task-decision": [
|
|
607
|
-
"../../elements/task-decision/src/index.ts"
|
|
608
|
-
],
|
|
609
|
-
"@atlaskit/theme/deprecated-provider-please-do-not-use": [
|
|
610
|
-
"../../design-system/theme/src/deprecated-provider-please-do-not-use.tsx"
|
|
611
|
-
],
|
|
612
|
-
"@atlaskit/theme/color-palettes": [
|
|
613
|
-
"../../design-system/theme/src/color-palettes.tsx"
|
|
614
|
-
],
|
|
615
|
-
"@atlaskit/theme/colors": [
|
|
616
|
-
"../../design-system/theme/src/colors.tsx"
|
|
617
|
-
],
|
|
618
|
-
"@atlaskit/theme/components": [
|
|
619
|
-
"../../design-system/theme/src/components.tsx"
|
|
620
|
-
],
|
|
621
|
-
"@atlaskit/theme/constants": [
|
|
622
|
-
"../../design-system/theme/src/constants.tsx"
|
|
623
|
-
],
|
|
624
|
-
"@atlaskit/theme/elevation": [
|
|
625
|
-
"../../design-system/theme/src/elevation.tsx"
|
|
626
|
-
],
|
|
627
|
-
"@atlaskit/theme/types": [
|
|
628
|
-
"../../design-system/theme/src/types.tsx"
|
|
629
|
-
],
|
|
630
|
-
"@atlaskit/theme/typography": [
|
|
631
|
-
"../../design-system/theme/src/typography.tsx"
|
|
632
|
-
],
|
|
633
|
-
"@atlaskit/theme": [
|
|
634
|
-
"../../design-system/theme/src"
|
|
635
|
-
],
|
|
636
|
-
"@atlaskit/tokens/custom-themes": [
|
|
637
|
-
"../../design-system/tokens/src/entry-points/custom-themes.tsx"
|
|
638
|
-
],
|
|
639
|
-
"@atlaskit/tokens/figma/atlassian-light.json": [
|
|
640
|
-
"../../design-system/tokens/figma/atlassian-light.json"
|
|
641
|
-
],
|
|
642
|
-
"@atlaskit/tokens/figma/atlassian-dark.json": [
|
|
643
|
-
"../../design-system/tokens/figma/atlassian-dark.json"
|
|
644
|
-
],
|
|
645
|
-
"@atlaskit/tokens/palettes-raw": [
|
|
646
|
-
"../../design-system/tokens/src/entry-points/palettes-raw.tsx"
|
|
647
|
-
],
|
|
648
|
-
"@atlaskit/tokens/tokens-raw": [
|
|
649
|
-
"../../design-system/tokens/src/entry-points/tokens-raw.tsx"
|
|
650
|
-
],
|
|
651
|
-
"@atlaskit/tokens/token-ids": [
|
|
652
|
-
"../../design-system/tokens/src/entry-points/token-ids.tsx"
|
|
653
|
-
],
|
|
654
|
-
"@atlaskit/tokens/token-names": [
|
|
655
|
-
"../../design-system/tokens/src/entry-points/token-names.tsx"
|
|
656
|
-
],
|
|
657
|
-
"@atlaskit/tokens/token-order": [
|
|
658
|
-
"../../design-system/tokens/src/entry-points/token-order.tsx"
|
|
659
|
-
],
|
|
660
|
-
"@atlaskit/tokens/token-default-values": [
|
|
661
|
-
"../../design-system/tokens/src/entry-points/token-default-values.tsx"
|
|
662
|
-
],
|
|
663
|
-
"@atlaskit/tokens/rename-mapping": [
|
|
664
|
-
"../../design-system/tokens/src/entry-points/rename-mapping.tsx"
|
|
665
|
-
],
|
|
666
|
-
"@atlaskit/tokens/babel-plugin": [
|
|
667
|
-
"../../design-system/tokens/src/entry-points/babel-plugin.tsx"
|
|
668
|
-
],
|
|
669
|
-
"@atlaskit/tokens/css-type-schema": [
|
|
670
|
-
"../../design-system/tokens/src/entry-points/css-type-schema.codegen.tsx"
|
|
671
|
-
],
|
|
672
|
-
"@atlaskit/tokens": [
|
|
673
|
-
"../../design-system/tokens/src/index.tsx"
|
|
674
|
-
],
|
|
675
|
-
"@atlaskit/tooltip/Tooltip": [
|
|
676
|
-
"../../design-system/tooltip/src/Tooltip.tsx"
|
|
677
|
-
],
|
|
678
|
-
"@atlaskit/tooltip/TooltipContainer": [
|
|
679
|
-
"../../design-system/tooltip/src/TooltipContainer.tsx"
|
|
680
|
-
],
|
|
681
|
-
"@atlaskit/tooltip/TooltipPrimitive": [
|
|
682
|
-
"../../design-system/tooltip/src/TooltipPrimitive.tsx"
|
|
683
|
-
],
|
|
684
|
-
"@atlaskit/tooltip/types": [
|
|
685
|
-
"../../design-system/tooltip/src/types.tsx"
|
|
686
|
-
],
|
|
687
|
-
"@atlaskit/tooltip/utilities": [
|
|
688
|
-
"../../design-system/tooltip/src/utilities.ts"
|
|
689
|
-
],
|
|
690
|
-
"@atlaskit/tooltip": [
|
|
691
|
-
"../../design-system/tooltip/src/index.ts"
|
|
692
|
-
],
|
|
693
|
-
"@af/integration-testing/fix-test": [
|
|
694
|
-
"../../../build/test-tooling/integration-testing/src/fix-test.ts"
|
|
695
|
-
],
|
|
696
|
-
"@af/integration-testing/fixtures": [
|
|
697
|
-
"../../../build/test-tooling/integration-testing/src/fixtures.ts"
|
|
698
|
-
],
|
|
699
|
-
"@af/integration-testing/reporters/coverage-reporter": [
|
|
700
|
-
"../../../build/test-tooling/integration-testing/src/reporters/coverage-reporter/index.ts"
|
|
701
|
-
],
|
|
702
|
-
"@af/integration-testing/config/constants": [
|
|
703
|
-
"../../../build/test-tooling/integration-testing/src/config/constants"
|
|
704
|
-
],
|
|
705
|
-
"@af/integration-testing": [
|
|
706
|
-
"../../../build/test-tooling/integration-testing/src/index.ts"
|
|
707
|
-
],
|
|
708
|
-
"@af/visual-regression": [
|
|
709
|
-
"../../../build/test-tooling/gemini-visual-regression/src/index.ts"
|
|
710
|
-
],
|
|
711
|
-
"@atlaskit/analytics-gas-types": [
|
|
712
|
-
"../../analytics/analytics-gas-types/src/index.ts"
|
|
713
|
-
],
|
|
714
|
-
"@atlaskit/css-reset/styles": [
|
|
715
|
-
"../../design-system/css-reset/src/index.tsx"
|
|
716
|
-
],
|
|
717
|
-
"@atlaskit/css-reset/base": [
|
|
718
|
-
"../../design-system/css-reset/src/base.tsx"
|
|
719
|
-
],
|
|
720
|
-
"@atlaskit/css-reset/browser-fixes": [
|
|
721
|
-
"../../design-system/css-reset/src/browser-fixes.tsx"
|
|
722
|
-
],
|
|
723
|
-
"@atlaskit/css-reset/reset": [
|
|
724
|
-
"../../design-system/css-reset/src/reset.tsx"
|
|
725
|
-
],
|
|
726
|
-
"@atlaskit/css-reset/tables": [
|
|
727
|
-
"../../design-system/css-reset/src/tables.tsx"
|
|
728
|
-
],
|
|
729
|
-
"@atlaskit/css-reset/utils": [
|
|
730
|
-
"../../design-system/css-reset/src/utils.tsx"
|
|
731
|
-
],
|
|
732
|
-
"@atlaskit/css-reset": [
|
|
733
|
-
"../../design-system/css-reset/src/index.tsx"
|
|
734
|
-
],
|
|
735
|
-
"@atlaskit/link-provider": [
|
|
736
|
-
"../../linking-platform/link-provider/src/index.ts"
|
|
737
|
-
],
|
|
738
|
-
"@atlaskit/link-test-helpers/jest": [
|
|
739
|
-
"../../linking-platform/link-test-helpers/src/jest/index.ts"
|
|
740
|
-
],
|
|
741
|
-
"@atlaskit/link-test-helpers/datasource": [
|
|
742
|
-
"../../linking-platform/link-test-helpers/src/datasource/index.ts"
|
|
743
|
-
],
|
|
744
|
-
"@atlaskit/link-test-helpers/assets": [
|
|
745
|
-
"../../linking-platform/link-test-helpers/src/datasource/assets/index.ts"
|
|
746
|
-
],
|
|
747
|
-
"@atlaskit/link-test-helpers/images": [
|
|
748
|
-
"../../linking-platform/link-test-helpers/src/images/index.ts"
|
|
749
|
-
],
|
|
750
|
-
"@atlaskit/link-test-helpers": [
|
|
751
|
-
"../../linking-platform/link-test-helpers/src/index.ts"
|
|
752
|
-
],
|
|
753
|
-
"@atlaskit/media-core/auth": [
|
|
754
|
-
"../../media/media-core/src/auth.ts"
|
|
755
|
-
],
|
|
756
|
-
"@atlaskit/media-core": [
|
|
757
|
-
"../../media/media-core/src/index.ts"
|
|
758
|
-
],
|
|
759
|
-
"@atlaskit/media-integration-test-helpers/card-client": [
|
|
760
|
-
"../../media/media-integration-test-helpers/src/integration/smart-links-mock-client-utils.ts"
|
|
761
|
-
],
|
|
762
|
-
"@atlaskit/media-integration-test-helpers/embed-helper": [
|
|
763
|
-
"../../media/media-integration-test-helpers/src/integration/embed-helper.tsx"
|
|
764
|
-
],
|
|
765
|
-
"@atlaskit/media-integration-test-helpers/media-embed-html-source": [
|
|
766
|
-
"../../media/media-integration-test-helpers/src/integration/media-embed-html-source.tsx"
|
|
767
|
-
],
|
|
768
|
-
"@atlaskit/media-integration-test-helpers": [
|
|
769
|
-
"../../media/media-integration-test-helpers/src/index.ts"
|
|
770
|
-
],
|
|
771
|
-
"@atlaskit/media-test-helpers/renderWithIntl": [
|
|
772
|
-
"../../media/media-test-helpers/src/renderWithIntl.tsx"
|
|
773
|
-
],
|
|
774
|
-
"@atlaskit/media-test-helpers/smart-card-state": [
|
|
775
|
-
"../../media/media-test-helpers/src/smart-card-state.ts"
|
|
776
|
-
],
|
|
777
|
-
"@atlaskit/media-test-helpers/fakeMediaClient": [
|
|
778
|
-
"../../media/media-test-helpers/src/fakeMediaClient.ts"
|
|
779
|
-
],
|
|
780
|
-
"@atlaskit/media-test-helpers/media-mock": [
|
|
781
|
-
"../../media/media-test-helpers/src/mocks/media-mock.ts"
|
|
782
|
-
],
|
|
783
|
-
"@atlaskit/media-test-helpers/images": [
|
|
784
|
-
"../../media/media-test-helpers/src/images.tsx"
|
|
785
|
-
],
|
|
786
|
-
"@atlaskit/media-test-helpers/jestHelpers": [
|
|
787
|
-
"../../media/media-test-helpers/src/jestHelpers.ts"
|
|
788
|
-
],
|
|
789
|
-
"@atlaskit/media-test-helpers/collectionNames": [
|
|
790
|
-
"../../media/media-test-helpers/src/collectionNames.ts"
|
|
791
|
-
],
|
|
792
|
-
"@atlaskit/media-test-helpers/exampleMediaItems": [
|
|
793
|
-
"../../media/media-test-helpers/src/exampleMediaItems.ts"
|
|
794
|
-
],
|
|
795
|
-
"@atlaskit/media-test-helpers/exampleMediaFeatureFlags": [
|
|
796
|
-
"../../media/media-test-helpers/src/example-mediaFeatureFlags.ts"
|
|
797
|
-
],
|
|
798
|
-
"@atlaskit/media-test-helpers/globalEventEmitterListeners": [
|
|
799
|
-
"../../media/media-test-helpers/src/globalEventEmitterListeners.ts"
|
|
800
|
-
],
|
|
801
|
-
"@atlaskit/media-test-helpers/mediaPickerAuthProvider": [
|
|
802
|
-
"../../media/media-test-helpers/src/mediaPickerAuthProvider.ts"
|
|
803
|
-
],
|
|
804
|
-
"@atlaskit/media-test-helpers/getAuthFromContextProvider": [
|
|
805
|
-
"../../media/media-test-helpers/src/getAuthFromContextProvider.ts"
|
|
806
|
-
],
|
|
807
|
-
"@atlaskit/media-test-helpers/mockData": [
|
|
808
|
-
"../../media/media-test-helpers/src/utils/mockData.ts"
|
|
809
|
-
],
|
|
810
|
-
"@atlaskit/media-test-helpers": [
|
|
811
|
-
"../../media/media-test-helpers/src/index.tsx"
|
|
812
|
-
],
|
|
813
|
-
"@atlaskit/mention/_constants": [
|
|
814
|
-
"../../elements/mention/src/_constants.ts"
|
|
815
|
-
],
|
|
816
|
-
"@atlaskit/mention/element": [
|
|
817
|
-
"../../elements/mention/src/element.ts"
|
|
818
|
-
],
|
|
819
|
-
"@atlaskit/mention/i18n": [
|
|
820
|
-
"../../elements/mention/src/i18n.ts"
|
|
821
|
-
],
|
|
822
|
-
"@atlaskit/mention/item": [
|
|
823
|
-
"../../elements/mention/src/item.ts"
|
|
824
|
-
],
|
|
825
|
-
"@atlaskit/mention/resource": [
|
|
826
|
-
"../../elements/mention/src/resource.ts"
|
|
827
|
-
],
|
|
828
|
-
"@atlaskit/mention/shared-styles": [
|
|
829
|
-
"../../elements/mention/src/shared-styles.ts"
|
|
830
|
-
],
|
|
831
|
-
"@atlaskit/mention/team-resource": [
|
|
832
|
-
"../../elements/mention/src/team-resource.ts"
|
|
833
|
-
],
|
|
834
|
-
"@atlaskit/mention/typeahead": [
|
|
835
|
-
"../../elements/mention/src/typeahead.ts"
|
|
836
|
-
],
|
|
837
|
-
"@atlaskit/mention/types": [
|
|
838
|
-
"../../elements/mention/src/types.ts"
|
|
839
|
-
],
|
|
840
|
-
"@atlaskit/mention": [
|
|
841
|
-
"../../elements/mention/src/index.ts"
|
|
842
|
-
],
|
|
843
|
-
"@atlaskit/util-data-test/emoji-constants": [
|
|
844
|
-
"../../elements/util-data-test/src/emoji-constants/index.ts"
|
|
845
|
-
],
|
|
846
|
-
"@atlaskit/util-data-test/emoji-samples": [
|
|
847
|
-
"../../elements/util-data-test/src/emoji-test/emoji-samples.ts"
|
|
848
|
-
],
|
|
849
|
-
"@atlaskit/util-data-test/emoji-types": [
|
|
850
|
-
"../../elements/util-data-test/src/emoji/types.ts"
|
|
851
|
-
],
|
|
852
|
-
"@atlaskit/util-data-test/filter-to-searchable": [
|
|
853
|
-
"../../elements/util-data-test/src/emoji-test/filter-to-searchable.ts"
|
|
854
|
-
],
|
|
855
|
-
"@atlaskit/util-data-test/get-atlassian-emojis": [
|
|
856
|
-
"../../elements/util-data-test/src/emoji/get-atlassian-emojis.ts"
|
|
857
|
-
],
|
|
858
|
-
"@atlaskit/util-data-test/get-emoji-provider": [
|
|
859
|
-
"../../elements/util-data-test/src/emoji/get-emoji-provider.ts"
|
|
860
|
-
],
|
|
861
|
-
"@atlaskit/util-data-test/get-emoji-repository": [
|
|
862
|
-
"../../elements/util-data-test/src/emoji/get-emoji-repository.ts"
|
|
863
|
-
],
|
|
864
|
-
"@atlaskit/util-data-test/get-emoji-resource-standard-atlassian": [
|
|
865
|
-
"../../elements/util-data-test/src/emoji/get-emoji-resource-standard-atlassian.ts"
|
|
866
|
-
],
|
|
867
|
-
"@atlaskit/util-data-test/get-emoji-resource-usage-clear": [
|
|
868
|
-
"../../elements/util-data-test/src/emoji/get-emoji-resource-usage-clear.ts"
|
|
869
|
-
],
|
|
870
|
-
"@atlaskit/util-data-test/get-emoji-resource": [
|
|
871
|
-
"../../elements/util-data-test/src/emoji/get-emoji-resource.ts"
|
|
872
|
-
],
|
|
873
|
-
"@atlaskit/util-data-test/get-emojis": [
|
|
874
|
-
"../../elements/util-data-test/src/emoji/get-emojis.ts"
|
|
875
|
-
],
|
|
876
|
-
"@atlaskit/util-data-test/get-mock-profilecard-client": [
|
|
877
|
-
"../../elements/util-data-test/src/profilecard/get-mock-profilecard-client.ts"
|
|
878
|
-
],
|
|
879
|
-
"@atlaskit/util-data-test/get-standard-emojis": [
|
|
880
|
-
"../../elements/util-data-test/src/emoji/get-standard-emojis.ts"
|
|
881
|
-
],
|
|
882
|
-
"@atlaskit/util-data-test/get-test-atlassian-emojis": [
|
|
883
|
-
"../../elements/util-data-test/src/emoji-test/get-test-atlassian-emojis.ts"
|
|
884
|
-
],
|
|
885
|
-
"@atlaskit/util-data-test/get-test-atlassian-service-emojis": [
|
|
886
|
-
"../../elements/util-data-test/src/emoji-test/get-test-atlassian-service-emojis.ts"
|
|
887
|
-
],
|
|
888
|
-
"@atlaskit/util-data-test/get-test-site-emojis": [
|
|
889
|
-
"../../elements/util-data-test/src/emoji-test/get-test-site-emojis.ts"
|
|
890
|
-
],
|
|
891
|
-
"@atlaskit/util-data-test/get-test-site-service-emojis": [
|
|
892
|
-
"../../elements/util-data-test/src/emoji-test/get-test-site-service-emojis.ts"
|
|
893
|
-
],
|
|
894
|
-
"@atlaskit/util-data-test/get-test-emoji-resource": [
|
|
895
|
-
"../../elements/util-data-test/src/emoji-test/get-test-emoji-resource.ts"
|
|
896
|
-
],
|
|
897
|
-
"@atlaskit/util-data-test/get-test-emoji-resource-from-repository": [
|
|
898
|
-
"../../elements/util-data-test/src/emoji-test/get-test-emoji-resource-from-repository.ts"
|
|
899
|
-
],
|
|
900
|
-
"@atlaskit/util-data-test/get-test-emoji-resource-non-uploading": [
|
|
901
|
-
"../../elements/util-data-test/src/emoji-test/get-test-emoji-resource-non-uploading.ts"
|
|
902
|
-
],
|
|
903
|
-
"@atlaskit/util-data-test/get-test-emoji-repository": [
|
|
904
|
-
"../../elements/util-data-test/src/emoji-test/get-test-emoji-repository.ts"
|
|
905
|
-
],
|
|
906
|
-
"@atlaskit/util-data-test/get-test-site-emoji-repository": [
|
|
907
|
-
"../../elements/util-data-test/src/emoji-test/get-test-site-emoji-repository.ts"
|
|
908
|
-
],
|
|
909
|
-
"@atlaskit/util-data-test/get-test-emojis": [
|
|
910
|
-
"../../elements/util-data-test/src/emoji-test/get-test-emojis.ts"
|
|
911
|
-
],
|
|
912
|
-
"@atlaskit/util-data-test/get-test-searchable-emojis": [
|
|
913
|
-
"../../elements/util-data-test/src/emoji-test/get-test-searchable-emojis.ts"
|
|
914
|
-
],
|
|
915
|
-
"@atlaskit/util-data-test/get-test-standard-emojis": [
|
|
916
|
-
"../../elements/util-data-test/src/emoji-test/get-test-standard-emojis.ts"
|
|
917
|
-
],
|
|
918
|
-
"@atlaskit/util-data-test/get-test-standard-service-emojis": [
|
|
919
|
-
"../../elements/util-data-test/src/emoji-test/get-test-standard-service-emojis.ts"
|
|
920
|
-
],
|
|
921
|
-
"@atlaskit/util-data-test/get-test-image-emoji": [
|
|
922
|
-
"../../elements/util-data-test/src/emoji-test/get-test-image-emoji.ts"
|
|
923
|
-
],
|
|
924
|
-
"@atlaskit/util-data-test/get-test-sprite-emoji": [
|
|
925
|
-
"../../elements/util-data-test/src/emoji-test/get-test-sprite-emoji.ts"
|
|
926
|
-
],
|
|
927
|
-
"@atlaskit/util-data-test/get-test-site-emoji-foo": [
|
|
928
|
-
"../../elements/util-data-test/src/emoji-test/get-test-site-emoji-foo.ts"
|
|
929
|
-
],
|
|
930
|
-
"@atlaskit/util-data-test/get-test-site-emoji-wtf": [
|
|
931
|
-
"../../elements/util-data-test/src/emoji-test/get-test-site-emoji-wtf.ts"
|
|
932
|
-
],
|
|
933
|
-
"@atlaskit/util-data-test/logged-user": [
|
|
934
|
-
"../../elements/util-data-test/src/emoji/logged-user.ts"
|
|
935
|
-
],
|
|
936
|
-
"@atlaskit/util-data-test/logger": [
|
|
937
|
-
"../../elements/util-data-test/src/logger.ts"
|
|
938
|
-
],
|
|
939
|
-
"@atlaskit/util-data-test/media-emoji": [
|
|
940
|
-
"../../elements/util-data-test/src/emoji-test/media-emoji.ts"
|
|
941
|
-
],
|
|
942
|
-
"@atlaskit/util-data-test/media-service-emoji": [
|
|
943
|
-
"../../elements/util-data-test/src/emoji-test/media-service-emoji.ts"
|
|
944
|
-
],
|
|
945
|
-
"@atlaskit/util-data-test/mention-story-data": [
|
|
946
|
-
"../../elements/util-data-test/src/mention/mention-story-data.ts"
|
|
947
|
-
],
|
|
948
|
-
"@atlaskit/util-data-test/mention-test-data": [
|
|
949
|
-
"../../elements/util-data-test/src/mention/mention-test-data.ts"
|
|
950
|
-
],
|
|
951
|
-
"@atlaskit/util-data-test/mock-mention-resource": [
|
|
952
|
-
"../../elements/util-data-test/src/mention/mock-mention-resource.ts"
|
|
953
|
-
],
|
|
954
|
-
"@atlaskit/util-data-test/mock-emoji-resource": [
|
|
955
|
-
"../../elements/util-data-test/src/emoji/mock-emoji-resource.ts"
|
|
956
|
-
],
|
|
957
|
-
"@atlaskit/util-data-test/mock-non-uploading-emoji-resource-factory": [
|
|
958
|
-
"../../elements/util-data-test/src/emoji/mock-non-uploading-emoji-resource-factory.ts"
|
|
959
|
-
],
|
|
960
|
-
"@atlaskit/util-data-test/mock-presence-resource": [
|
|
961
|
-
"../../elements/util-data-test/src/mention/mock-presence-resource.ts"
|
|
962
|
-
],
|
|
963
|
-
"@atlaskit/util-data-test/profilecard-data": [
|
|
964
|
-
"../../elements/util-data-test/src/profilecard/profilecard-data.ts"
|
|
965
|
-
],
|
|
966
|
-
"@atlaskit/util-data-test/task-decision-story-data": [
|
|
967
|
-
"../../elements/util-data-test/src/task-decision/task-decision-story-data.ts"
|
|
968
|
-
],
|
|
969
|
-
"@atlaskit/util-data-test/presence-data": [
|
|
970
|
-
"../../elements/util-data-test/src/mention/presence-data.ts"
|
|
971
|
-
],
|
|
972
|
-
"@atlaskit/util-data-test/slack-data": [
|
|
973
|
-
"../../elements/util-data-test/src/slack-data/index.ts"
|
|
974
|
-
],
|
|
975
|
-
"@atlaskit/util-data-test/user-picker": [
|
|
976
|
-
"../../elements/util-data-test/src/user-picker/index.ts"
|
|
977
|
-
],
|
|
978
|
-
"@atlaskit/util-data-test/user-picker-data": [
|
|
979
|
-
"../../elements/util-data-test/src/user-picker/user-picker-data.ts"
|
|
980
|
-
],
|
|
981
|
-
"@atlaskit/util-data-test": [
|
|
982
|
-
"../../elements/util-data-test/src"
|
|
983
|
-
],
|
|
984
|
-
"@atlaskit/visual-regression": [
|
|
985
|
-
"../../../build/test-tooling/visual-regression/src"
|
|
986
|
-
],
|
|
987
|
-
"@atlaskit/webdriver-runner": [
|
|
988
|
-
"../../../build/test-tooling/webdriver-runner/src"
|
|
989
|
-
],
|
|
990
|
-
"@atlassian/feature-flags-test-utils": [
|
|
991
|
-
"../../platform/feature-flags-test-utils/src/index.ts"
|
|
992
|
-
],
|
|
993
|
-
"@atlaskit/renderer/actions": [
|
|
994
|
-
"src/actions.ts"
|
|
995
|
-
],
|
|
996
|
-
"@atlaskit/renderer/consts": [
|
|
997
|
-
"src/consts.ts"
|
|
998
|
-
],
|
|
999
|
-
"@atlaskit/renderer/messages": [
|
|
1000
|
-
"src/messages.ts"
|
|
1001
|
-
],
|
|
1002
|
-
"@atlaskit/renderer/render-document": [
|
|
1003
|
-
"src/render-document.ts"
|
|
1004
|
-
],
|
|
1005
|
-
"@atlaskit/renderer/renderer-context": [
|
|
1006
|
-
"src/renderer-context.tsx"
|
|
1007
|
-
],
|
|
1008
|
-
"@atlaskit/renderer/serializer": [
|
|
1009
|
-
"src/serializer.ts"
|
|
1010
|
-
],
|
|
1011
|
-
"@atlaskit/renderer/text-serializer": [
|
|
1012
|
-
"src/text-serializer.ts"
|
|
1013
|
-
],
|
|
1014
|
-
"@atlaskit/renderer/use-feature-flags": [
|
|
1015
|
-
"src/use-feature-flags.ts"
|
|
1016
|
-
],
|
|
1017
|
-
"@atlaskit/renderer/utils": [
|
|
1018
|
-
"src/utils.ts"
|
|
1019
|
-
],
|
|
1020
|
-
"@atlaskit/renderer": [
|
|
1021
|
-
"./src"
|
|
1022
|
-
]
|
|
1023
|
-
}
|
|
4
|
+
"baseUrl": "./"
|
|
1024
5
|
},
|
|
1025
6
|
"include": [
|
|
1026
7
|
"./src/**/*.ts",
|