@atlaskit/editor-common 110.18.3 → 110.18.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 +21 -0
- package/dist/cjs/experiences/Experience.js +63 -23
- package/dist/cjs/experiences/ExperienceCheck.js +5 -1
- package/dist/cjs/experiences/ExperienceCheckDomMutation.js +6 -2
- package/dist/cjs/experiences/ExperienceCheckTimeout.js +24 -8
- package/dist/cjs/extensions/module-helpers.js +10 -6
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/provider-factory/with-providers.js +1 -2
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/cjs/ui/Popup/index.js +12 -1
- package/dist/es2019/experiences/Experience.js +63 -22
- package/dist/es2019/experiences/ExperienceCheck.js +1 -0
- package/dist/es2019/experiences/ExperienceCheckDomMutation.js +6 -2
- package/dist/es2019/experiences/ExperienceCheckTimeout.js +21 -8
- package/dist/es2019/extensions/module-helpers.js +4 -0
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/provider-factory/with-providers.js +1 -2
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/es2019/ui/Popup/index.js +10 -0
- package/dist/esm/experiences/Experience.js +63 -23
- package/dist/esm/experiences/ExperienceCheck.js +1 -0
- package/dist/esm/experiences/ExperienceCheckDomMutation.js +6 -2
- package/dist/esm/experiences/ExperienceCheckTimeout.js +24 -8
- package/dist/esm/extensions/module-helpers.js +10 -6
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/provider-factory/with-providers.js +1 -2
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/esm/ui/Popup/index.js +12 -1
- package/dist/types/analytics/types/general-events.d.ts +4 -1
- package/dist/types/experiences/Experience.d.ts +43 -12
- package/dist/types/experiences/ExperienceCheck.d.ts +5 -7
- package/dist/types/experiences/ExperienceCheckDomMutation.d.ts +16 -6
- package/dist/types/experiences/ExperienceCheckTimeout.d.ts +19 -4
- package/dist/types/extensions/types/utils.d.ts +1 -0
- package/dist/types/ui/Popup/index.d.ts +1 -0
- package/dist/types-ts4.5/analytics/types/general-events.d.ts +4 -1
- package/dist/types-ts4.5/experiences/Experience.d.ts +43 -12
- package/dist/types-ts4.5/experiences/ExperienceCheck.d.ts +5 -7
- package/dist/types-ts4.5/experiences/ExperienceCheckDomMutation.d.ts +16 -6
- package/dist/types-ts4.5/experiences/ExperienceCheckTimeout.d.ts +19 -4
- package/dist/types-ts4.5/extensions/types/utils.d.ts +1 -0
- package/dist/types-ts4.5/ui/Popup/index.d.ts +1 -0
- package/package.json +9 -3
- package/afm-dev-agents/tsconfig.json +0 -195
- package/afm-passionfruit/tsconfig.json +0 -195
- package/afm-rovo-extension/tsconfig.json +0 -195
- package/afm-volt/tsconfig.json +0 -183
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type CustomData } from '@atlaskit/ufo';
|
|
1
2
|
import type { ExperienceCheck } from './ExperienceCheck';
|
|
2
3
|
type ExperienceOptions = {
|
|
3
4
|
/**
|
|
@@ -5,37 +6,67 @@ type ExperienceOptions = {
|
|
|
5
6
|
*/
|
|
6
7
|
checks?: ExperienceCheck[];
|
|
7
8
|
};
|
|
8
|
-
type
|
|
9
|
-
|
|
9
|
+
type ExperienceStartOptions = {
|
|
10
|
+
metadata?: CustomData;
|
|
11
|
+
};
|
|
12
|
+
type ExperienceEndOptions = {
|
|
13
|
+
metadata?: CustomData;
|
|
10
14
|
};
|
|
11
15
|
export declare class Experience {
|
|
12
16
|
private readonly id;
|
|
13
17
|
private readonly options;
|
|
14
18
|
private _ufoExperience;
|
|
15
19
|
private check;
|
|
20
|
+
private startOptions;
|
|
16
21
|
constructor(id: string, options?: ExperienceOptions);
|
|
17
22
|
private get ufoExperience();
|
|
18
23
|
private startCheck;
|
|
19
24
|
private stopCheck;
|
|
20
25
|
private isInProgress;
|
|
26
|
+
private getEndStateConfig;
|
|
21
27
|
/**
|
|
22
|
-
* Starts
|
|
28
|
+
* Starts tracking the experience and all checks which monitor for completion.
|
|
29
|
+
*
|
|
30
|
+
* If the experience is already in progress, this will restart the checks.
|
|
31
|
+
* Metadata from options will be merged with any end state metadata.
|
|
32
|
+
*
|
|
33
|
+
* @param options - Configuration for starting the experience
|
|
34
|
+
* @param options.metadata - Optional metadata attached to all subsequent events for this started experience
|
|
23
35
|
*/
|
|
24
|
-
start(): void;
|
|
36
|
+
start(options?: ExperienceStartOptions): void;
|
|
25
37
|
/**
|
|
26
|
-
*
|
|
38
|
+
* Marks the experience as successful and stops any ongoing checks.
|
|
39
|
+
*
|
|
40
|
+
* Use this when the experience completes as expected.
|
|
41
|
+
*
|
|
42
|
+
* @param options - Configuration for the success event
|
|
43
|
+
* @param options.metadata - Optional metadata attached to the success event
|
|
27
44
|
*/
|
|
28
|
-
success(): void;
|
|
45
|
+
success(options?: ExperienceEndOptions): void;
|
|
29
46
|
/**
|
|
30
|
-
*
|
|
47
|
+
* Aborts the experience and stops any ongoing checks.
|
|
31
48
|
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
49
|
+
* Use this when a started experience terminates early due to user action or context change
|
|
50
|
+
* (e.g., component unmount, navigation). This is neither success nor failure.
|
|
51
|
+
*
|
|
52
|
+
* @param options - Configuration for the abort event
|
|
53
|
+
* @param options.metadata - Optional metadata attached to the abort event
|
|
54
|
+
*
|
|
55
|
+
* @example
|
|
56
|
+
* // Abort on component unmount
|
|
57
|
+
* useEffect(() => {
|
|
58
|
+
* return () => experience.abort({ metadata: { reason: 'unmount' } });
|
|
59
|
+
* }, []);
|
|
34
60
|
*/
|
|
35
|
-
abort(): void;
|
|
61
|
+
abort(options?: ExperienceEndOptions): void;
|
|
36
62
|
/**
|
|
37
|
-
* Manually
|
|
63
|
+
* Manually marks the experience as failed and stops any ongoing checks.
|
|
64
|
+
*
|
|
65
|
+
* Use this for actual failures in the experience flow (e.g., timeout, error conditions).
|
|
66
|
+
*
|
|
67
|
+
* @param options - Configuration for the failure event
|
|
68
|
+
* @param options.metadata - Optional metadata attached to the failure event
|
|
38
69
|
*/
|
|
39
|
-
failure(
|
|
70
|
+
failure(options?: ExperienceEndOptions): void;
|
|
40
71
|
}
|
|
41
72
|
export {};
|
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
type
|
|
2
|
-
|
|
1
|
+
import type { CustomData } from '@atlaskit/ufo';
|
|
2
|
+
type ExperienceCheckResultStatus = 'success' | 'failure' | 'abort';
|
|
3
|
+
export type ExperienceCheckResult = {
|
|
4
|
+
metadata?: CustomData;
|
|
5
|
+
status: ExperienceCheckResultStatus;
|
|
3
6
|
};
|
|
4
|
-
type ExperienceCheckFailureResult = {
|
|
5
|
-
reason?: string;
|
|
6
|
-
status: 'failure';
|
|
7
|
-
};
|
|
8
|
-
export type ExperienceCheckResult = ExperienceCheckSuccessResult | ExperienceCheckFailureResult;
|
|
9
7
|
export type ExperienceCheckCallback = (result: ExperienceCheckResult) => void;
|
|
10
8
|
export interface ExperienceCheck {
|
|
11
9
|
start: (callback: ExperienceCheckCallback) => void;
|
|
@@ -5,9 +5,21 @@ export type ExperienceDomMutationCheckOptions = {
|
|
|
5
5
|
export type ExperienceCheckDomMutationObserveConfig = {
|
|
6
6
|
/**
|
|
7
7
|
* MutationObserver options specifying what types of mutations to observe
|
|
8
|
+
*
|
|
9
|
+
* !!IMPORTANT!!
|
|
10
|
+
* For performance reasons, avoid observing more mutation types than necessary.
|
|
11
|
+
*
|
|
12
|
+
* We explicitly only support a subset of MutationObserverInit options that
|
|
13
|
+
* are relevant for most use cases and less likely to cause performance issues.
|
|
14
|
+
*
|
|
15
|
+
* These include:
|
|
16
|
+
* - childList: adding/removing child nodes directly under the target node
|
|
17
|
+
* - attributes: changes to attributes on the target node
|
|
18
|
+
* - attributeFilter: defines the specific attributes to monitor for changes
|
|
19
|
+
*
|
|
8
20
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver/observe
|
|
9
21
|
*/
|
|
10
|
-
options?: MutationObserverInit
|
|
22
|
+
options?: Pick<MutationObserverInit, 'childList' | 'attributes' | 'attributeFilter'>;
|
|
11
23
|
/**
|
|
12
24
|
* Target element to observe for mutations
|
|
13
25
|
*
|
|
@@ -23,16 +35,14 @@ export type ExperienceCheckDomMutationConfig = {
|
|
|
23
35
|
* - What element to observe (performance: smaller scope = better performance)
|
|
24
36
|
* - What mutations to monitor (performance: fewer types = better performance)
|
|
25
37
|
*
|
|
26
|
-
* IMPORTANT
|
|
38
|
+
* !!IMPORTANT!!
|
|
39
|
+
* Return null if the target element cannot be found.
|
|
27
40
|
* This will immediately fail the experience with reason 'target-not-found'.
|
|
28
|
-
*
|
|
29
|
-
* Common patterns:
|
|
30
|
-
* - Safe fallback: { target: document.querySelector('[data-testid="toolbar"]') ?? document.body, options: {...} }
|
|
31
|
-
* - Explicit null: const target = document.querySelector('[data-testid="toolbar"]'); return target ? { target, options: {...} } : null;
|
|
32
41
|
*/
|
|
33
42
|
observeConfig: () => ExperienceCheckDomMutationObserveConfig | null;
|
|
34
43
|
/**
|
|
35
44
|
* Callback invoked when DOM mutations are detected
|
|
45
|
+
*
|
|
36
46
|
* Return a result to complete the experience, or undefined to continue observing
|
|
37
47
|
*/
|
|
38
48
|
onDomMutation: (options: ExperienceDomMutationCheckOptions) => ExperienceCheckResult | undefined;
|
|
@@ -1,13 +1,28 @@
|
|
|
1
|
-
import type { ExperienceCheck, ExperienceCheckCallback } from './ExperienceCheck';
|
|
1
|
+
import type { ExperienceCheck, ExperienceCheckCallback, ExperienceCheckResult } from './ExperienceCheck';
|
|
2
|
+
export type ExperienceCheckTimeoutConfig = {
|
|
3
|
+
/**
|
|
4
|
+
* Maximum duration in milliseconds before timing out
|
|
5
|
+
*/
|
|
6
|
+
durationMs: number;
|
|
7
|
+
/**
|
|
8
|
+
* Optional callback to provide custom result on timeout
|
|
9
|
+
*
|
|
10
|
+
* If not provided, or callback returns undefined, defaults to failure with reason 'timeout'
|
|
11
|
+
*/
|
|
12
|
+
onTimeout?: () => ExperienceCheckResult | undefined;
|
|
13
|
+
};
|
|
2
14
|
/**
|
|
3
15
|
* Check for the completion of an experience based on a timeout
|
|
4
16
|
*
|
|
5
|
-
*
|
|
17
|
+
* By default, will result in failure with reason 'timeout' after the specified duration.
|
|
18
|
+
*
|
|
19
|
+
* Can be customized for different results on timeout via the onTimeout callback.
|
|
6
20
|
*/
|
|
7
21
|
export declare class ExperienceCheckTimeout implements ExperienceCheck {
|
|
8
22
|
private timeoutId;
|
|
9
|
-
private
|
|
10
|
-
|
|
23
|
+
private durationMs;
|
|
24
|
+
private onTimeout;
|
|
25
|
+
constructor({ durationMs, onTimeout, }: ExperienceCheckTimeoutConfig);
|
|
11
26
|
start(callback: ExperienceCheckCallback): void;
|
|
12
27
|
stop(): void;
|
|
13
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "110.18.
|
|
3
|
+
"version": "110.18.5",
|
|
4
4
|
"description": "A package that contains common classes and components for editor and renderer",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -75,14 +75,14 @@
|
|
|
75
75
|
"@atlaskit/prosemirror-history": "^0.2.0",
|
|
76
76
|
"@atlaskit/react-ufo": "^4.12.0",
|
|
77
77
|
"@atlaskit/section-message": "^8.7.0",
|
|
78
|
-
"@atlaskit/smart-card": "^43.
|
|
78
|
+
"@atlaskit/smart-card": "^43.4.0",
|
|
79
79
|
"@atlaskit/smart-user-picker": "^8.4.0",
|
|
80
80
|
"@atlaskit/spinner": "^19.0.0",
|
|
81
81
|
"@atlaskit/status": "^3.0.0",
|
|
82
82
|
"@atlaskit/task-decision": "^19.2.0",
|
|
83
83
|
"@atlaskit/textfield": "^8.0.0",
|
|
84
84
|
"@atlaskit/theme": "^21.0.0",
|
|
85
|
-
"@atlaskit/tmp-editor-statsig": "^13.
|
|
85
|
+
"@atlaskit/tmp-editor-statsig": "^13.19.0",
|
|
86
86
|
"@atlaskit/tokens": "^7.0.0",
|
|
87
87
|
"@atlaskit/tooltip": "^20.6.0",
|
|
88
88
|
"@atlaskit/ufo": "^0.4.0",
|
|
@@ -216,6 +216,9 @@
|
|
|
216
216
|
"platform_editor_fix_media_in_renderer": {
|
|
217
217
|
"type": "boolean"
|
|
218
218
|
},
|
|
219
|
+
"platform_editor_a11y_add_role_to_popup": {
|
|
220
|
+
"type": "boolean"
|
|
221
|
+
},
|
|
219
222
|
"cc_comments_log_draft_annotation_ancestor_nodes": {
|
|
220
223
|
"type": "boolean"
|
|
221
224
|
},
|
|
@@ -245,6 +248,9 @@
|
|
|
245
248
|
},
|
|
246
249
|
"platform_editor_fix_mixed_types_column_sort": {
|
|
247
250
|
"type": "boolean"
|
|
251
|
+
},
|
|
252
|
+
"cc_fd_wb_create_priority_in_slash_menu_enabled": {
|
|
253
|
+
"type": "boolean"
|
|
248
254
|
}
|
|
249
255
|
}
|
|
250
256
|
}
|
|
@@ -1,195 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../../../../tsconfig.entry-points.dev-agents.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"declaration": true,
|
|
5
|
-
"target": "es5",
|
|
6
|
-
"outDir": "../../../../../dev-agents/tsDist/@atlaskit__editor-common/app",
|
|
7
|
-
"rootDir": "../",
|
|
8
|
-
"composite": true
|
|
9
|
-
},
|
|
10
|
-
"include": [
|
|
11
|
-
"../src/**/*.ts",
|
|
12
|
-
"../src/**/*.tsx"
|
|
13
|
-
],
|
|
14
|
-
"exclude": [
|
|
15
|
-
"../src/**/__tests__/*",
|
|
16
|
-
"../src/**/*.test.*",
|
|
17
|
-
"../src/**/test.*",
|
|
18
|
-
"../src/**/examples.*",
|
|
19
|
-
"../src/**/examples/*",
|
|
20
|
-
"../src/**/examples/**/*",
|
|
21
|
-
"../src/**/*.stories.*",
|
|
22
|
-
"../src/**/stories/*",
|
|
23
|
-
"../src/**/stories/**/*"
|
|
24
|
-
],
|
|
25
|
-
"references": [
|
|
26
|
-
{
|
|
27
|
-
"path": "../../activity-provider/afm-dev-agents/tsconfig.json"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"path": "../../adf-utils/afm-dev-agents/tsconfig.json"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"path": "../../../analytics/analytics-listeners/afm-dev-agents/tsconfig.json"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"path": "../../../analytics/analytics-namespaced-context/afm-dev-agents/tsconfig.json"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"path": "../../../analytics/analytics-next/afm-dev-agents/tsconfig.json"
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"path": "../../../uip/atlassian-context/afm-dev-agents/tsconfig.json"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"path": "../../../design-system/button/afm-dev-agents/tsconfig.json"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"path": "../../../design-system/code/afm-dev-agents/tsconfig.json"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"path": "../../../monorepo-tooling/codemod-utils/afm-dev-agents/tsconfig.json"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"path": "../../../design-system/css/afm-dev-agents/tsconfig.json"
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"path": "../../custom-steps/afm-dev-agents/tsconfig.json"
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"path": "../../../design-system/dropdown-menu/afm-dev-agents/tsconfig.json"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"path": "../../editor-json-transformer/afm-dev-agents/tsconfig.json"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"path": "../../editor-palette/afm-dev-agents/tsconfig.json"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"path": "../../editor-shared-styles/afm-dev-agents/tsconfig.json"
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"path": "../../editor-tables/afm-dev-agents/tsconfig.json"
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"path": "../../editor-toolbar/afm-dev-agents/tsconfig.json"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"path": "../../editor-toolbar-model/afm-dev-agents/tsconfig.json"
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"path": "../../../elements/emoji/afm-dev-agents/tsconfig.json"
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"path": "../../../design-system/icon/afm-dev-agents/tsconfig.json"
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
"path": "../../../design-system/icon-object/afm-dev-agents/tsconfig.json"
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"path": "../../../design-system/link/afm-dev-agents/tsconfig.json"
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"path": "../../../linking-platform/link-datasource/afm-dev-agents/tsconfig.json"
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
"path": "../../../linking-platform/link-picker/afm-dev-agents/tsconfig.json"
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"path": "../../../media/media-card/afm-dev-agents/tsconfig.json"
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"path": "../../../media/media-client/afm-dev-agents/tsconfig.json"
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"path": "../../../media/media-client-react/afm-dev-agents/tsconfig.json"
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"path": "../../../media/media-common/afm-dev-agents/tsconfig.json"
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"path": "../../../media/media-file-preview/afm-dev-agents/tsconfig.json"
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"path": "../../../media/media-picker/afm-dev-agents/tsconfig.json"
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"path": "../../../media/media-ui/afm-dev-agents/tsconfig.json"
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
"path": "../../../media/media-viewer/afm-dev-agents/tsconfig.json"
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
"path": "../../../elements/mention/afm-dev-agents/tsconfig.json"
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"path": "../../../design-system/menu/afm-dev-agents/tsconfig.json"
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"path": "../../../design-system/onboarding/afm-dev-agents/tsconfig.json"
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
"path": "../../../platform/feature-flags/afm-dev-agents/tsconfig.json"
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"path": "../../../platform/feature-flags-react/afm-dev-agents/tsconfig.json"
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"path": "../../../design-system/popper/afm-dev-agents/tsconfig.json"
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"path": "../../../design-system/primitives/afm-dev-agents/tsconfig.json"
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
"path": "../../../people-and-teams/profilecard/afm-dev-agents/tsconfig.json"
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
"path": "../../prosemirror-history/afm-dev-agents/tsconfig.json"
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"path": "../../../react-ufo/atlaskit/afm-dev-agents/tsconfig.json"
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
"path": "../../../design-system/section-message/afm-dev-agents/tsconfig.json"
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"path": "../../../linking-platform/smart-card/afm-dev-agents/tsconfig.json"
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
"path": "../../../smart-experiences/smart-user-picker/afm-dev-agents/tsconfig.json"
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
"path": "../../../design-system/spinner/afm-dev-agents/tsconfig.json"
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
"path": "../../../elements/status/afm-dev-agents/tsconfig.json"
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"path": "../../../elements/task-decision/afm-dev-agents/tsconfig.json"
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
"path": "../../../design-system/textfield/afm-dev-agents/tsconfig.json"
|
|
172
|
-
},
|
|
173
|
-
{
|
|
174
|
-
"path": "../../../design-system/theme/afm-dev-agents/tsconfig.json"
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
"path": "../../tmp-editor-statsig/afm-dev-agents/tsconfig.json"
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
"path": "../../../design-system/tokens/afm-dev-agents/tsconfig.json"
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"path": "../../../design-system/tooltip/afm-dev-agents/tsconfig.json"
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
"path": "../../../data/ufo-external/afm-dev-agents/tsconfig.json"
|
|
187
|
-
},
|
|
188
|
-
{
|
|
189
|
-
"path": "../../../design-system/width-detector/afm-dev-agents/tsconfig.json"
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
"path": "../../../media/media-core/afm-dev-agents/tsconfig.json"
|
|
193
|
-
}
|
|
194
|
-
]
|
|
195
|
-
}
|
|
@@ -1,195 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../../../../tsconfig.entry-points.passionfruit.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"declaration": true,
|
|
5
|
-
"target": "es5",
|
|
6
|
-
"outDir": "../../../../../passionfruit/tsDist/@atlaskit__editor-common/app",
|
|
7
|
-
"rootDir": "../",
|
|
8
|
-
"composite": true
|
|
9
|
-
},
|
|
10
|
-
"include": [
|
|
11
|
-
"../src/**/*.ts",
|
|
12
|
-
"../src/**/*.tsx"
|
|
13
|
-
],
|
|
14
|
-
"exclude": [
|
|
15
|
-
"../src/**/__tests__/*",
|
|
16
|
-
"../src/**/*.test.*",
|
|
17
|
-
"../src/**/test.*",
|
|
18
|
-
"../src/**/examples.*",
|
|
19
|
-
"../src/**/examples/*",
|
|
20
|
-
"../src/**/examples/**/*",
|
|
21
|
-
"../src/**/*.stories.*",
|
|
22
|
-
"../src/**/stories/*",
|
|
23
|
-
"../src/**/stories/**/*"
|
|
24
|
-
],
|
|
25
|
-
"references": [
|
|
26
|
-
{
|
|
27
|
-
"path": "../../activity-provider/afm-passionfruit/tsconfig.json"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"path": "../../adf-utils/afm-passionfruit/tsconfig.json"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"path": "../../../analytics/analytics-listeners/afm-passionfruit/tsconfig.json"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"path": "../../../analytics/analytics-namespaced-context/afm-passionfruit/tsconfig.json"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"path": "../../../analytics/analytics-next/afm-passionfruit/tsconfig.json"
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"path": "../../../uip/atlassian-context/afm-passionfruit/tsconfig.json"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"path": "../../../design-system/button/afm-passionfruit/tsconfig.json"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"path": "../../../design-system/code/afm-passionfruit/tsconfig.json"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"path": "../../../monorepo-tooling/codemod-utils/afm-passionfruit/tsconfig.json"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"path": "../../../design-system/css/afm-passionfruit/tsconfig.json"
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"path": "../../custom-steps/afm-passionfruit/tsconfig.json"
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"path": "../../../design-system/dropdown-menu/afm-passionfruit/tsconfig.json"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"path": "../../editor-json-transformer/afm-passionfruit/tsconfig.json"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"path": "../../editor-palette/afm-passionfruit/tsconfig.json"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"path": "../../editor-shared-styles/afm-passionfruit/tsconfig.json"
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"path": "../../editor-tables/afm-passionfruit/tsconfig.json"
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"path": "../../editor-toolbar/afm-passionfruit/tsconfig.json"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"path": "../../editor-toolbar-model/afm-passionfruit/tsconfig.json"
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"path": "../../../elements/emoji/afm-passionfruit/tsconfig.json"
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"path": "../../../design-system/icon/afm-passionfruit/tsconfig.json"
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
"path": "../../../design-system/icon-object/afm-passionfruit/tsconfig.json"
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"path": "../../../design-system/link/afm-passionfruit/tsconfig.json"
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"path": "../../../linking-platform/link-datasource/afm-passionfruit/tsconfig.json"
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
"path": "../../../linking-platform/link-picker/afm-passionfruit/tsconfig.json"
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"path": "../../../media/media-card/afm-passionfruit/tsconfig.json"
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"path": "../../../media/media-client/afm-passionfruit/tsconfig.json"
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"path": "../../../media/media-client-react/afm-passionfruit/tsconfig.json"
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"path": "../../../media/media-common/afm-passionfruit/tsconfig.json"
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"path": "../../../media/media-file-preview/afm-passionfruit/tsconfig.json"
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"path": "../../../media/media-picker/afm-passionfruit/tsconfig.json"
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"path": "../../../media/media-ui/afm-passionfruit/tsconfig.json"
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
"path": "../../../media/media-viewer/afm-passionfruit/tsconfig.json"
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
"path": "../../../elements/mention/afm-passionfruit/tsconfig.json"
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"path": "../../../design-system/menu/afm-passionfruit/tsconfig.json"
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"path": "../../../design-system/onboarding/afm-passionfruit/tsconfig.json"
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
"path": "../../../platform/feature-flags/afm-passionfruit/tsconfig.json"
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"path": "../../../platform/feature-flags-react/afm-passionfruit/tsconfig.json"
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"path": "../../../design-system/popper/afm-passionfruit/tsconfig.json"
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"path": "../../../design-system/primitives/afm-passionfruit/tsconfig.json"
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
"path": "../../../people-and-teams/profilecard/afm-passionfruit/tsconfig.json"
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
"path": "../../prosemirror-history/afm-passionfruit/tsconfig.json"
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"path": "../../../react-ufo/atlaskit/afm-passionfruit/tsconfig.json"
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
"path": "../../../design-system/section-message/afm-passionfruit/tsconfig.json"
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"path": "../../../linking-platform/smart-card/afm-passionfruit/tsconfig.json"
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
"path": "../../../smart-experiences/smart-user-picker/afm-passionfruit/tsconfig.json"
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
"path": "../../../design-system/spinner/afm-passionfruit/tsconfig.json"
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
"path": "../../../elements/status/afm-passionfruit/tsconfig.json"
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"path": "../../../elements/task-decision/afm-passionfruit/tsconfig.json"
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
"path": "../../../design-system/textfield/afm-passionfruit/tsconfig.json"
|
|
172
|
-
},
|
|
173
|
-
{
|
|
174
|
-
"path": "../../../design-system/theme/afm-passionfruit/tsconfig.json"
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
"path": "../../tmp-editor-statsig/afm-passionfruit/tsconfig.json"
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
"path": "../../../design-system/tokens/afm-passionfruit/tsconfig.json"
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"path": "../../../design-system/tooltip/afm-passionfruit/tsconfig.json"
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
"path": "../../../data/ufo-external/afm-passionfruit/tsconfig.json"
|
|
187
|
-
},
|
|
188
|
-
{
|
|
189
|
-
"path": "../../../design-system/width-detector/afm-passionfruit/tsconfig.json"
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
"path": "../../../media/media-core/afm-passionfruit/tsconfig.json"
|
|
193
|
-
}
|
|
194
|
-
]
|
|
195
|
-
}
|