@atlaskit/editor-plugin-table 2.11.0 → 2.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/README.md +30 -0
- package/dist/cjs/plugins/table/commands/misc.js +2 -2
- 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/handlers.js +2 -2
- package/dist/cjs/plugins/table/index.js +4 -0
- package/dist/cjs/plugins/table/nodeviews/TableComponent.js +2 -2
- package/dist/cjs/plugins/table/nodeviews/TableResizer.js +5 -4
- package/dist/cjs/plugins/table/pm-plugins/main.js +2 -2
- 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/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 +2 -2
- package/dist/cjs/plugins/table/pm-plugins/table-width.js +2 -2
- package/dist/cjs/plugins/table/reducer.js +2 -2
- 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 +2 -2
- 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/utils/row-controls.js +2 -2
- package/dist/es2019/plugins/table/index.js +4 -0
- package/dist/es2019/plugins/table/nodeviews/TableResizer.js +3 -2
- package/dist/esm/plugins/table/commands/misc.js +2 -2
- 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/handlers.js +2 -2
- package/dist/esm/plugins/table/index.js +4 -0
- package/dist/esm/plugins/table/nodeviews/TableComponent.js +2 -2
- package/dist/esm/plugins/table/nodeviews/TableResizer.js +5 -4
- package/dist/esm/plugins/table/pm-plugins/main.js +2 -2
- 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/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 +2 -2
- package/dist/esm/plugins/table/pm-plugins/table-width.js +2 -2
- package/dist/esm/plugins/table/reducer.js +2 -2
- 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 +2 -2
- 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/utils/row-controls.js +2 -2
- package/dist/types/plugins/table/index.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/index.d.ts +4 -0
- package/docs/0-intro.tsx +53 -0
- package/package.json +11 -11
- package/report.api.md +1 -1
- package/src/plugins/table/index.tsx +4 -0
- package/src/plugins/table/nodeviews/TableResizer.tsx +5 -2
- package/tmp/api-report-tmp.d.ts +1 -1
- package/tsconfig.app.json +82 -0
- package/tsconfig.dev.json +112 -0
|
@@ -7,8 +7,8 @@ import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
|
|
|
7
7
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
8
8
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
9
9
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
10
|
-
function ownKeys(
|
|
11
|
-
function _objectSpread(
|
|
10
|
+
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; }
|
|
11
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
12
12
|
import React, { createRef } from 'react';
|
|
13
13
|
import classnames from 'classnames';
|
|
14
14
|
import { injectIntl } from 'react-intl-next';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
|
-
function ownKeys(
|
|
3
|
-
function _objectSpread(
|
|
2
|
+
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; }
|
|
3
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
4
4
|
import { parsePx } from '@atlaskit/editor-common/utils';
|
|
5
5
|
import { safeInsert } from '@atlaskit/editor-prosemirror/utils';
|
|
6
6
|
import { CellSelection } from '@atlaskit/editor-tables/cell-selection';
|
|
@@ -29,5 +29,9 @@ export type TablePlugin = NextEditorPlugin<'table', {
|
|
|
29
29
|
GuidelinePlugin
|
|
30
30
|
];
|
|
31
31
|
}>;
|
|
32
|
+
/**
|
|
33
|
+
* Table plugin to be added to an `EditorPresetBuilder` and used with `ComposableEditor`
|
|
34
|
+
* from `@atlaskit/editor-core`.
|
|
35
|
+
*/
|
|
32
36
|
declare const tablesPlugin: TablePlugin;
|
|
33
37
|
export default tablesPlugin;
|
|
@@ -29,5 +29,9 @@ export type TablePlugin = NextEditorPlugin<'table', {
|
|
|
29
29
|
GuidelinePlugin
|
|
30
30
|
];
|
|
31
31
|
}>;
|
|
32
|
+
/**
|
|
33
|
+
* Table plugin to be added to an `EditorPresetBuilder` and used with `ComposableEditor`
|
|
34
|
+
* from `@atlaskit/editor-core`.
|
|
35
|
+
*/
|
|
32
36
|
declare const tablesPlugin: TablePlugin;
|
|
33
37
|
export default tablesPlugin;
|
package/docs/0-intro.tsx
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
import { AtlassianInternalWarning, code, md } from '@atlaskit/docs';
|
|
4
|
+
import { createEditorUseOnlyNotice } from '@atlaskit/editor-core/docs/editor-use-only';
|
|
5
|
+
import { token } from '@atlaskit/tokens';
|
|
6
|
+
|
|
7
|
+
export default md`
|
|
8
|
+
|
|
9
|
+
${createEditorUseOnlyNotice('Editor Plugin Table', [
|
|
10
|
+
{ name: 'Editor Core', link: '/packages/editor/editor-core' },
|
|
11
|
+
])}
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
${(
|
|
15
|
+
<div style={{ marginTop: token('space.100', '8px') }}>
|
|
16
|
+
<AtlassianInternalWarning />
|
|
17
|
+
</div>
|
|
18
|
+
)}
|
|
19
|
+
|
|
20
|
+
This package includes the table plugin used by \`@atlaskit/editor-core\`.
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
The \`dependencies\`, \`configuration\`, \`state\`, \`actions\`, and \`commands\` of the plugin are defined
|
|
26
|
+
below:
|
|
27
|
+
|
|
28
|
+
${code`
|
|
29
|
+
type TablePlugin = NextEditorPlugin<
|
|
30
|
+
'table',
|
|
31
|
+
{
|
|
32
|
+
pluginConfiguration: TablePluginOptions | undefined;
|
|
33
|
+
actions: {
|
|
34
|
+
insertTable: InsertTableAction;
|
|
35
|
+
};
|
|
36
|
+
dependencies: [
|
|
37
|
+
AnalyticsPlugin,
|
|
38
|
+
ContentInsertionPlugin,
|
|
39
|
+
WidthPlugin,
|
|
40
|
+
GuidelinePlugin,
|
|
41
|
+
];
|
|
42
|
+
}
|
|
43
|
+
>;
|
|
44
|
+
`}
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
## Support
|
|
48
|
+
---
|
|
49
|
+
For internal Atlassian, visit the slack channel [#help-editor](https://atlassian.slack.com/archives/CFG3PSQ9E) for support or visit [go/editor-help](https://go/editor-help) to submit a bug.
|
|
50
|
+
## License
|
|
51
|
+
---
|
|
52
|
+
Please see [Atlassian Frontend - License](https://developer.atlassian.com/cloud/framework/atlassian-frontend/#license) for more licensing information.
|
|
53
|
+
`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-table",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.1",
|
|
4
4
|
"description": "Table plugin for the @atlaskit/editor",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -28,17 +28,17 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@atlaskit/adf-schema": "28.1.2",
|
|
31
|
-
"@atlaskit/editor-common": "^74.
|
|
31
|
+
"@atlaskit/editor-common": "^74.55.0",
|
|
32
32
|
"@atlaskit/editor-palette": "1.5.1",
|
|
33
|
-
"@atlaskit/editor-plugin-analytics": "^0.
|
|
34
|
-
"@atlaskit/editor-plugin-content-insertion": "^0.0
|
|
33
|
+
"@atlaskit/editor-plugin-analytics": "^0.2.0",
|
|
34
|
+
"@atlaskit/editor-plugin-content-insertion": "^0.1.0",
|
|
35
35
|
"@atlaskit/editor-prosemirror": "1.1.0",
|
|
36
36
|
"@atlaskit/editor-shared-styles": "^2.6.0",
|
|
37
37
|
"@atlaskit/editor-tables": "^2.3.0",
|
|
38
38
|
"@atlaskit/icon": "^21.12.0",
|
|
39
39
|
"@atlaskit/platform-feature-flags": "^0.2.1",
|
|
40
40
|
"@atlaskit/theme": "^12.5.0",
|
|
41
|
-
"@atlaskit/tokens": "^1.
|
|
41
|
+
"@atlaskit/tokens": "^1.18.0",
|
|
42
42
|
"@atlaskit/tooltip": "^17.8.0",
|
|
43
43
|
"@babel/runtime": "^7.0.0",
|
|
44
44
|
"@emotion/react": "^11.7.1",
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@atlaskit/analytics-next": "^9.1.0",
|
|
58
|
-
"@atlaskit/editor-plugin-decorations": "^0.
|
|
59
|
-
"@atlaskit/editor-plugin-feature-flags": "^0.
|
|
60
|
-
"@atlaskit/editor-plugin-grid": "^0.
|
|
61
|
-
"@atlaskit/editor-plugin-guideline": "^0.
|
|
62
|
-
"@atlaskit/editor-plugin-hyperlink": "^0.
|
|
63
|
-
"@atlaskit/editor-plugin-width": "^0.
|
|
58
|
+
"@atlaskit/editor-plugin-decorations": "^0.2.0",
|
|
59
|
+
"@atlaskit/editor-plugin-feature-flags": "^0.2.0",
|
|
60
|
+
"@atlaskit/editor-plugin-grid": "^0.2.0",
|
|
61
|
+
"@atlaskit/editor-plugin-guideline": "^0.5.0",
|
|
62
|
+
"@atlaskit/editor-plugin-hyperlink": "^0.4.0",
|
|
63
|
+
"@atlaskit/editor-plugin-width": "^0.2.0",
|
|
64
64
|
"@atlaskit/visual-regression": "*",
|
|
65
65
|
"@atlaskit/webdriver-runner": "*",
|
|
66
66
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
package/report.api.md
CHANGED
|
@@ -104,6 +104,10 @@ export type TablePlugin = NextEditorPlugin<
|
|
|
104
104
|
}
|
|
105
105
|
>;
|
|
106
106
|
|
|
107
|
+
/**
|
|
108
|
+
* Table plugin to be added to an `EditorPresetBuilder` and used with `ComposableEditor`
|
|
109
|
+
* from `@atlaskit/editor-core`.
|
|
110
|
+
*/
|
|
107
111
|
const tablesPlugin: TablePlugin = ({ config: options, api }) => {
|
|
108
112
|
const editorViewRef: Record<'current', EditorView | null> = { current: null };
|
|
109
113
|
const defaultGetEditorContainerWidth: GetEditorContainerWidth = () => {
|
|
@@ -310,6 +310,9 @@ export const TableResizer = ({
|
|
|
310
310
|
],
|
|
311
311
|
);
|
|
312
312
|
|
|
313
|
+
const isTableSelected =
|
|
314
|
+
findTable(editorView.state?.selection)?.pos === getPos();
|
|
315
|
+
|
|
313
316
|
return (
|
|
314
317
|
<ResizerNext
|
|
315
318
|
enable={handles}
|
|
@@ -327,8 +330,8 @@ export const TableResizer = ({
|
|
|
327
330
|
snap={guidelineSnaps}
|
|
328
331
|
handlePositioning="adjacent"
|
|
329
332
|
innerPadding={tableHandlePosition}
|
|
330
|
-
isHandleVisible={
|
|
331
|
-
appearance={isInDanger ? 'danger' : undefined}
|
|
333
|
+
isHandleVisible={isTableSelected}
|
|
334
|
+
appearance={isInDanger && isTableSelected ? 'danger' : undefined}
|
|
332
335
|
handleHighlight="shadow"
|
|
333
336
|
handleTooltipContent={formatMessage(messages.resizeTable)}
|
|
334
337
|
>
|
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
|
+
}
|