@atlaskit/editor-plugin-table 2.10.8 → 2.12.0
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/README.md +30 -0
- package/dist/cjs/plugins/table/commands/misc.js +60 -7
- package/dist/cjs/plugins/table/commands/toggle.js +2 -2
- package/dist/cjs/plugins/table/commands-with-analytics.js +2 -2
- package/dist/cjs/plugins/table/create-plugin-config.js +2 -2
- package/dist/cjs/plugins/table/event-handlers.js +3 -6
- package/dist/cjs/plugins/table/handlers.js +2 -2
- package/dist/cjs/plugins/table/index.js +7 -2
- package/dist/cjs/plugins/table/nodeviews/TableComponent.js +2 -2
- package/dist/cjs/plugins/table/nodeviews/TableResizer.js +15 -21
- package/dist/cjs/plugins/table/pm-plugins/decorations/utils/column-resizing.js +18 -5
- package/dist/cjs/plugins/table/pm-plugins/decorations/utils/index.js +6 -0
- package/dist/cjs/plugins/table/pm-plugins/main.js +9 -5
- package/dist/cjs/plugins/table/pm-plugins/plugin-factory.js +2 -2
- package/dist/cjs/plugins/table/pm-plugins/sticky-headers/plugin-state.js +2 -2
- package/dist/cjs/plugins/table/pm-plugins/table-local-id.js +13 -13
- package/dist/cjs/plugins/table/pm-plugins/table-resizing/event-handlers.js +5 -0
- package/dist/cjs/plugins/table/pm-plugins/table-resizing/plugin-factory.js +2 -2
- package/dist/cjs/plugins/table/pm-plugins/table-resizing/reducer.js +2 -2
- package/dist/cjs/plugins/table/pm-plugins/table-resizing/utils/resize-logic.js +2 -2
- package/dist/cjs/plugins/table/pm-plugins/table-resizing/utils/resize-state.js +2 -2
- package/dist/cjs/plugins/table/pm-plugins/table-resizing/utils/scale-table.js +4 -2
- package/dist/cjs/plugins/table/pm-plugins/table-width.js +2 -2
- package/dist/cjs/plugins/table/reducer.js +28 -4
- package/dist/cjs/plugins/table/transforms/column-width.js +2 -2
- package/dist/cjs/plugins/table/transforms/delete-columns.js +2 -2
- package/dist/cjs/plugins/table/transforms/delete-rows.js +2 -2
- package/dist/cjs/plugins/table/transforms/fix-tables.js +2 -2
- package/dist/cjs/plugins/table/transforms/merge.js +2 -2
- package/dist/cjs/plugins/table/transforms/split.js +2 -2
- package/dist/cjs/plugins/table/types.js +3 -2
- package/dist/cjs/plugins/table/ui/ColumnResizeWidget/index.js +44 -0
- package/dist/cjs/plugins/table/ui/FloatingContextualMenu/ContextualMenu.js +2 -2
- package/dist/cjs/plugins/table/ui/FloatingDeleteButton/getPopUpOptions.js +2 -2
- package/dist/cjs/plugins/table/ui/FloatingDeleteButton/index.js +2 -2
- package/dist/cjs/plugins/table/ui/FloatingInsertButton/getPopupOptions.js +2 -2
- package/dist/cjs/plugins/table/ui/LayoutButton/index.js +2 -2
- package/dist/cjs/plugins/table/ui/messages.js +5 -0
- package/dist/cjs/plugins/table/utils/decoration.js +17 -4
- package/dist/cjs/plugins/table/utils/row-controls.js +2 -2
- package/dist/es2019/plugins/table/commands/misc.js +49 -5
- package/dist/es2019/plugins/table/event-handlers.js +3 -6
- package/dist/es2019/plugins/table/index.js +7 -2
- package/dist/es2019/plugins/table/nodeviews/TableResizer.js +14 -17
- package/dist/es2019/plugins/table/pm-plugins/decorations/utils/column-resizing.js +12 -2
- package/dist/es2019/plugins/table/pm-plugins/decorations/utils/index.js +1 -1
- package/dist/es2019/plugins/table/pm-plugins/main.js +6 -3
- package/dist/es2019/plugins/table/pm-plugins/table-resizing/event-handlers.js +5 -0
- package/dist/es2019/plugins/table/pm-plugins/table-resizing/utils/scale-table.js +2 -0
- package/dist/es2019/plugins/table/reducer.js +29 -2
- package/dist/es2019/plugins/table/types.js +1 -0
- package/dist/es2019/plugins/table/ui/ColumnResizeWidget/index.js +35 -0
- package/dist/es2019/plugins/table/ui/messages.js +5 -0
- package/dist/es2019/plugins/table/utils/decoration.js +16 -5
- package/dist/esm/plugins/table/commands/misc.js +58 -7
- package/dist/esm/plugins/table/commands/toggle.js +2 -2
- package/dist/esm/plugins/table/commands-with-analytics.js +2 -2
- package/dist/esm/plugins/table/create-plugin-config.js +2 -2
- package/dist/esm/plugins/table/event-handlers.js +3 -6
- package/dist/esm/plugins/table/handlers.js +2 -2
- package/dist/esm/plugins/table/index.js +7 -2
- package/dist/esm/plugins/table/nodeviews/TableComponent.js +2 -2
- package/dist/esm/plugins/table/nodeviews/TableResizer.js +15 -21
- package/dist/esm/plugins/table/pm-plugins/decorations/utils/column-resizing.js +15 -3
- package/dist/esm/plugins/table/pm-plugins/decorations/utils/index.js +1 -1
- package/dist/esm/plugins/table/pm-plugins/main.js +10 -6
- package/dist/esm/plugins/table/pm-plugins/plugin-factory.js +2 -2
- package/dist/esm/plugins/table/pm-plugins/sticky-headers/plugin-state.js +2 -2
- package/dist/esm/plugins/table/pm-plugins/table-local-id.js +2 -2
- package/dist/esm/plugins/table/pm-plugins/table-resizing/event-handlers.js +5 -0
- package/dist/esm/plugins/table/pm-plugins/table-resizing/plugin-factory.js +2 -2
- package/dist/esm/plugins/table/pm-plugins/table-resizing/reducer.js +2 -2
- package/dist/esm/plugins/table/pm-plugins/table-resizing/utils/resize-logic.js +2 -2
- package/dist/esm/plugins/table/pm-plugins/table-resizing/utils/resize-state.js +2 -2
- package/dist/esm/plugins/table/pm-plugins/table-resizing/utils/scale-table.js +4 -2
- package/dist/esm/plugins/table/pm-plugins/table-width.js +2 -2
- package/dist/esm/plugins/table/reducer.js +28 -4
- package/dist/esm/plugins/table/transforms/column-width.js +2 -2
- package/dist/esm/plugins/table/transforms/delete-columns.js +2 -2
- package/dist/esm/plugins/table/transforms/delete-rows.js +2 -2
- package/dist/esm/plugins/table/transforms/fix-tables.js +2 -2
- package/dist/esm/plugins/table/transforms/merge.js +2 -2
- package/dist/esm/plugins/table/transforms/split.js +2 -2
- package/dist/esm/plugins/table/types.js +3 -2
- package/dist/esm/plugins/table/ui/ColumnResizeWidget/index.js +35 -0
- package/dist/esm/plugins/table/ui/FloatingContextualMenu/ContextualMenu.js +2 -2
- package/dist/esm/plugins/table/ui/FloatingDeleteButton/getPopUpOptions.js +2 -2
- package/dist/esm/plugins/table/ui/FloatingDeleteButton/index.js +2 -2
- package/dist/esm/plugins/table/ui/FloatingInsertButton/getPopupOptions.js +2 -2
- package/dist/esm/plugins/table/ui/LayoutButton/index.js +2 -2
- package/dist/esm/plugins/table/ui/messages.js +5 -0
- package/dist/esm/plugins/table/utils/decoration.js +17 -4
- package/dist/esm/plugins/table/utils/row-controls.js +2 -2
- package/dist/types/plugins/table/commands/misc.d.ts +8 -6
- package/dist/types/plugins/table/event-handlers.d.ts +3 -3
- package/dist/types/plugins/table/index.d.ts +4 -0
- package/dist/types/plugins/table/pm-plugins/decorations/utils/column-resizing.d.ts +4 -2
- package/dist/types/plugins/table/pm-plugins/decorations/utils/index.d.ts +1 -1
- package/dist/types/plugins/table/pm-plugins/main.d.ts +2 -1
- package/dist/types/plugins/table/pm-plugins/table-resizing/plugin.d.ts +2 -2
- package/dist/types/plugins/table/pm-plugins/table-resizing/utils/scale-table.d.ts +3 -3
- package/dist/types/plugins/table/reducer.d.ts +1 -1
- package/dist/types/plugins/table/types.d.ts +18 -0
- package/dist/types/plugins/table/ui/ColumnResizeWidget/index.d.ts +9 -0
- package/dist/types/plugins/table/ui/messages.d.ts +5 -0
- package/dist/types/plugins/table/utils/decoration.d.ts +2 -1
- package/dist/types-ts4.5/plugins/table/commands/misc.d.ts +8 -6
- package/dist/types-ts4.5/plugins/table/event-handlers.d.ts +3 -3
- package/dist/types-ts4.5/plugins/table/index.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/decorations/utils/column-resizing.d.ts +4 -2
- package/dist/types-ts4.5/plugins/table/pm-plugins/decorations/utils/index.d.ts +1 -1
- package/dist/types-ts4.5/plugins/table/pm-plugins/main.d.ts +2 -1
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/plugin.d.ts +2 -2
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/utils/scale-table.d.ts +3 -3
- package/dist/types-ts4.5/plugins/table/reducer.d.ts +1 -1
- package/dist/types-ts4.5/plugins/table/types.d.ts +18 -0
- package/dist/types-ts4.5/plugins/table/ui/ColumnResizeWidget/index.d.ts +9 -0
- package/dist/types-ts4.5/plugins/table/ui/messages.d.ts +5 -0
- package/dist/types-ts4.5/plugins/table/utils/decoration.d.ts +2 -1
- package/docs/0-intro.tsx +53 -0
- package/package.json +11 -11
- package/report.api.md +1 -1
- package/src/__tests__/unit/event-handlers.ts +1 -1
- package/src/__tests__/unit/nodeviews/TableContainer.tsx +17 -8
- package/src/__tests__/unit/pm-plugins/decorations/column-resizing.ts +2 -0
- package/src/plugins/table/commands/misc.ts +84 -7
- package/src/plugins/table/event-handlers.ts +11 -16
- package/src/plugins/table/index.tsx +6 -0
- package/src/plugins/table/nodeviews/TableResizer.tsx +12 -20
- package/src/plugins/table/pm-plugins/decorations/utils/column-resizing.ts +34 -7
- package/src/plugins/table/pm-plugins/decorations/utils/index.ts +4 -1
- package/src/plugins/table/pm-plugins/main.ts +7 -1
- package/src/plugins/table/pm-plugins/table-resizing/event-handlers.ts +5 -0
- package/src/plugins/table/pm-plugins/table-resizing/plugin.ts +3 -5
- package/src/plugins/table/pm-plugins/table-resizing/utils/scale-table.ts +5 -3
- package/src/plugins/table/reducer.ts +51 -3
- package/src/plugins/table/types.ts +19 -0
- package/src/plugins/table/ui/ColumnResizeWidget/index.tsx +53 -0
- package/src/plugins/table/ui/messages.ts +5 -0
- package/src/plugins/table/utils/decoration.ts +27 -5
- package/tmp/api-report-tmp.d.ts +1 -1
- package/tsconfig.app.json +82 -0
- package/tsconfig.dev.json +112 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/** @jsx jsx */
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
4
|
+
import { jsx } from '@emotion/react';
|
|
5
|
+
import { useIntl } from 'react-intl-next';
|
|
6
|
+
|
|
7
|
+
import Tooltip from '@atlaskit/tooltip';
|
|
8
|
+
|
|
9
|
+
import { TableCssClassName } from '../../types';
|
|
10
|
+
import messages from '../messages';
|
|
11
|
+
|
|
12
|
+
type Props = {
|
|
13
|
+
startIndex: number;
|
|
14
|
+
endIndex: number;
|
|
15
|
+
includeTooltip?: boolean;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export const ColumnResizeWidget: React.FC<Props> = ({
|
|
19
|
+
startIndex,
|
|
20
|
+
endIndex,
|
|
21
|
+
includeTooltip,
|
|
22
|
+
}) => {
|
|
23
|
+
const { formatMessage } = useIntl();
|
|
24
|
+
|
|
25
|
+
if (!includeTooltip) {
|
|
26
|
+
return (
|
|
27
|
+
<div
|
|
28
|
+
className={TableCssClassName.RESIZE_HANDLE_DECORATION}
|
|
29
|
+
data-start-index={startIndex}
|
|
30
|
+
data-end-index={endIndex}
|
|
31
|
+
/>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return (
|
|
36
|
+
<Tooltip
|
|
37
|
+
content={formatMessage(messages.adjustColumns)}
|
|
38
|
+
hideTooltipOnClick
|
|
39
|
+
hideTooltipOnMouseDown
|
|
40
|
+
position="mouse"
|
|
41
|
+
mousePosition="auto-start"
|
|
42
|
+
>
|
|
43
|
+
{(tooltipProps) => (
|
|
44
|
+
<div
|
|
45
|
+
className={TableCssClassName.RESIZE_HANDLE_DECORATION}
|
|
46
|
+
data-start-index={startIndex}
|
|
47
|
+
data-end-index={endIndex}
|
|
48
|
+
{...tooltipProps}
|
|
49
|
+
/>
|
|
50
|
+
)}
|
|
51
|
+
</Tooltip>
|
|
52
|
+
);
|
|
53
|
+
};
|
|
@@ -60,4 +60,9 @@ export default defineMessages({
|
|
|
60
60
|
defaultMessage: 'this element',
|
|
61
61
|
description: 'The current element without preset name been selected',
|
|
62
62
|
},
|
|
63
|
+
adjustColumns: {
|
|
64
|
+
id: 'fabric.editor.tables.adjustColumn',
|
|
65
|
+
defaultMessage: 'Adjust column',
|
|
66
|
+
description: 'Tooltip displayed on table column resize handle',
|
|
67
|
+
},
|
|
63
68
|
});
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
import { createElement } from 'react';
|
|
2
|
+
|
|
3
|
+
import ReactDOM from 'react-dom';
|
|
4
|
+
import { RawIntlProvider } from 'react-intl-next';
|
|
5
|
+
import type { IntlShape } from 'react-intl-next';
|
|
6
|
+
|
|
1
7
|
import type { CellAttributes } from '@atlaskit/adf-schema';
|
|
2
8
|
import { nonNullable } from '@atlaskit/editor-common/utils';
|
|
3
9
|
import type { Node as PmNode } from '@atlaskit/editor-prosemirror/model';
|
|
@@ -19,6 +25,7 @@ import {
|
|
|
19
25
|
|
|
20
26
|
import type { Cell, CellColumnPositioning } from '../types';
|
|
21
27
|
import { TableCssClassName as ClassName, TableDecorations } from '../types';
|
|
28
|
+
import { ColumnResizeWidget } from '../ui/ColumnResizeWidget';
|
|
22
29
|
|
|
23
30
|
const filterDecorationByKey = (
|
|
24
31
|
key: TableDecorations,
|
|
@@ -238,7 +245,6 @@ export const updateDecorations = (
|
|
|
238
245
|
): DecorationSet => {
|
|
239
246
|
const filteredDecorations = filterDecorationByKey(key, decorationSet);
|
|
240
247
|
const decorationSetFiltered = decorationSet.remove(filteredDecorations);
|
|
241
|
-
|
|
242
248
|
return decorationSetFiltered.add(node, decorations);
|
|
243
249
|
};
|
|
244
250
|
|
|
@@ -327,6 +333,8 @@ export const createResizeHandleDecoration = (
|
|
|
327
333
|
tr: Transaction | ReadonlyTransaction,
|
|
328
334
|
rowIndexTarget: number,
|
|
329
335
|
columnEndIndexTarget: Omit<CellColumnPositioning, 'left'>,
|
|
336
|
+
includeTooltip: boolean = false,
|
|
337
|
+
getIntl: () => IntlShape,
|
|
330
338
|
): [Decoration[], Decoration[]] => {
|
|
331
339
|
const emptyResult: [Decoration[], Decoration[]] = [[], []];
|
|
332
340
|
const table = findTable(tr.selection);
|
|
@@ -351,13 +359,27 @@ export const createResizeHandleDecoration = (
|
|
|
351
359
|
position,
|
|
352
360
|
() => {
|
|
353
361
|
const element = document.createElement('div');
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
362
|
+
ReactDOM.render(
|
|
363
|
+
createElement(
|
|
364
|
+
RawIntlProvider,
|
|
365
|
+
{ value: getIntl() },
|
|
366
|
+
createElement(ColumnResizeWidget, {
|
|
367
|
+
startIndex: cellColumnPositioning.left,
|
|
368
|
+
endIndex: cellColumnPositioning.right,
|
|
369
|
+
includeTooltip,
|
|
370
|
+
}),
|
|
371
|
+
),
|
|
372
|
+
element,
|
|
373
|
+
);
|
|
357
374
|
return element;
|
|
358
375
|
},
|
|
359
376
|
{
|
|
360
|
-
key: `${
|
|
377
|
+
key: `${
|
|
378
|
+
TableDecorations.COLUMN_RESIZING_HANDLE_WIDGET
|
|
379
|
+
}_${rowIndex}_${columnIndex}_${includeTooltip ? 'with' : 'no'}-tooltip`,
|
|
380
|
+
destroy: (node) => {
|
|
381
|
+
ReactDOM.unmountComponentAtNode(node as HTMLDivElement);
|
|
382
|
+
},
|
|
361
383
|
},
|
|
362
384
|
);
|
|
363
385
|
};
|
package/tmp/api-report-tmp.d.ts
CHANGED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../tsconfig.base.json",
|
|
3
|
+
"include": ["./src/**/*.ts", "./src/**/*.tsx"],
|
|
4
|
+
"exclude": [
|
|
5
|
+
"**/docs/**/*",
|
|
6
|
+
"**/__tests__/**/*",
|
|
7
|
+
"**/vr-tests/**/*",
|
|
8
|
+
"**/__perf__/**/*",
|
|
9
|
+
"**/*.test.*",
|
|
10
|
+
"**/test.*",
|
|
11
|
+
"**/test-*",
|
|
12
|
+
"**/examples.ts",
|
|
13
|
+
"**/examples.tsx",
|
|
14
|
+
"**/examples/*.ts",
|
|
15
|
+
"**/examples/*.tsx",
|
|
16
|
+
"**/examples/**/*.ts",
|
|
17
|
+
"**/examples/**/*.tsx",
|
|
18
|
+
"**/storybook/**/*",
|
|
19
|
+
"**/constellation/**/*",
|
|
20
|
+
".storybook/*",
|
|
21
|
+
"./__fixtures__/**/*",
|
|
22
|
+
"./__generated__/**/*",
|
|
23
|
+
"./mocks/**/*",
|
|
24
|
+
"./__mocks__/**/*",
|
|
25
|
+
"**/mock.*",
|
|
26
|
+
"**/codemods/**/*.ts",
|
|
27
|
+
"**/codemods/**/*.tsx",
|
|
28
|
+
"./src/plugins/table/nodeviews/__mocks__/**/*"
|
|
29
|
+
],
|
|
30
|
+
"compilerOptions": {
|
|
31
|
+
"baseUrl": "./",
|
|
32
|
+
"composite": true,
|
|
33
|
+
"outDir": "../../../tsDist/@atlaskit__editor-plugin-table/app"
|
|
34
|
+
},
|
|
35
|
+
"references": [
|
|
36
|
+
{
|
|
37
|
+
"path": "../adf-schema/tsconfig.app.json"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"path": "../editor-common/tsconfig.app.json"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"path": "../editor-palette/tsconfig.app.json"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"path": "../editor-plugin-analytics/tsconfig.app.json"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"path": "../editor-plugin-content-insertion/tsconfig.app.json"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"path": "../editor-plugin-guideline/tsconfig.app.json"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"path": "../editor-plugin-width/tsconfig.app.json"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"path": "../editor-prosemirror/tsconfig.app.json"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"path": "../editor-shared-styles/tsconfig.app.json"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"path": "../editor-tables/tsconfig.app.json"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"path": "../../design-system/icon/tsconfig.app.json"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"path": "../../platform/feature-flags/tsconfig.app.json"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"path": "../../design-system/theme/tsconfig.app.json"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"path": "../../design-system/tokens/tsconfig.app.json"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"path": "../../design-system/tooltip/tsconfig.app.json"
|
|
80
|
+
}
|
|
81
|
+
]
|
|
82
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../tsconfig.base.json",
|
|
3
|
+
"include": [
|
|
4
|
+
"**/docs/**/*",
|
|
5
|
+
"**/__tests__/**/*",
|
|
6
|
+
"**/vr-tests/**/*",
|
|
7
|
+
"**/__perf__/**/*",
|
|
8
|
+
"**/*.test.*",
|
|
9
|
+
"**/test.*",
|
|
10
|
+
"**/test-*",
|
|
11
|
+
"**/examples.ts",
|
|
12
|
+
"**/examples.tsx",
|
|
13
|
+
"**/examples/*.ts",
|
|
14
|
+
"**/examples/*.tsx",
|
|
15
|
+
"**/examples/**/*.ts",
|
|
16
|
+
"**/examples/**/*.tsx",
|
|
17
|
+
"**/storybook/**/*",
|
|
18
|
+
"**/constellation/**/*",
|
|
19
|
+
".storybook/*",
|
|
20
|
+
"./__fixtures__/**/*",
|
|
21
|
+
"./__generated__/**/*",
|
|
22
|
+
"./mocks/**/*",
|
|
23
|
+
"./__mocks__/**/*",
|
|
24
|
+
"**/mock.*",
|
|
25
|
+
"**/codemods/**/*.ts",
|
|
26
|
+
"**/codemods/**/*.tsx",
|
|
27
|
+
"./src/plugins/table/nodeviews/__mocks__/**/*"
|
|
28
|
+
],
|
|
29
|
+
"exclude": ["./dist/**/*", "./build/**/*", "./node_modules/**/*"],
|
|
30
|
+
"compilerOptions": {
|
|
31
|
+
"baseUrl": "./",
|
|
32
|
+
"composite": true,
|
|
33
|
+
"outDir": "../../../tsDist/@atlaskit__editor-plugin-table/dev"
|
|
34
|
+
},
|
|
35
|
+
"references": [
|
|
36
|
+
{
|
|
37
|
+
"path": "tsconfig.app.json"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"path": "../adf-schema/tsconfig.app.json"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"path": "../../analytics/analytics-next/tsconfig.app.json"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"path": "../../design-system/button/tsconfig.app.json"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"path": "../editor-common/tsconfig.app.json"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"path": "../editor-core/tsconfig.app.json"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"path": "../editor-plugin-analytics/tsconfig.app.json"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"path": "../editor-plugin-content-insertion/tsconfig.app.json"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"path": "../editor-plugin-decorations/tsconfig.app.json"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"path": "../editor-plugin-feature-flags/tsconfig.app.json"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"path": "../editor-plugin-grid/tsconfig.app.json"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"path": "../editor-plugin-guideline/tsconfig.app.json"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"path": "../editor-plugin-width/tsconfig.app.json"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"path": "../editor-prosemirror/tsconfig.app.json"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"path": "../editor-shared-styles/tsconfig.app.json"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"path": "../editor-tables/tsconfig.app.json"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"path": "../editor-test-helpers/tsconfig.app.json"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"path": "../../linking-platform/link-provider/tsconfig.app.json"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"path": "../../design-system/logo/tsconfig.app.json"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"path": "../../media/media-integration-test-helpers/tsconfig.app.json"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"path": "../synchrony-test-helpers/tsconfig.app.json"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"path": "../../design-system/theme/tsconfig.app.json"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"path": "../../../build/test-tooling/visual-regression/tsconfig.app.json"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"path": "../../../build/test-tooling/webdriver-runner/tsconfig.app.json"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"path": "../../platform/feature-flags-test-utils/tsconfig.app.json"
|
|
110
|
+
}
|
|
111
|
+
]
|
|
112
|
+
}
|