@atlaskit/editor-plugin-table 2.12.5 → 2.13.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.
Files changed (72) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/cjs/plugins/table/index.js +2 -0
  3. package/dist/cjs/plugins/table/nodeviews/TableComponent.js +13 -1
  4. package/dist/cjs/plugins/table/nodeviews/TableContainer.js +6 -1
  5. package/dist/cjs/plugins/table/nodeviews/TableResizer.js +23 -5
  6. package/dist/cjs/plugins/table/nodeviews/table.js +2 -2
  7. package/dist/es2019/plugins/table/index.js +3 -0
  8. package/dist/es2019/plugins/table/nodeviews/TableComponent.js +13 -1
  9. package/dist/es2019/plugins/table/nodeviews/TableContainer.js +6 -1
  10. package/dist/es2019/plugins/table/nodeviews/TableResizer.js +24 -6
  11. package/dist/es2019/plugins/table/nodeviews/table.js +2 -2
  12. package/dist/esm/plugins/table/index.js +3 -0
  13. package/dist/esm/plugins/table/nodeviews/TableComponent.js +13 -1
  14. package/dist/esm/plugins/table/nodeviews/TableContainer.js +6 -1
  15. package/dist/esm/plugins/table/nodeviews/TableResizer.js +24 -6
  16. package/dist/esm/plugins/table/nodeviews/table.js +2 -2
  17. package/dist/types/plugins/table/index.d.ts +9 -2
  18. package/dist/types/plugins/table/nodeviews/TableResizer.d.ts +2 -1
  19. package/dist/types-ts4.5/plugins/table/index.d.ts +9 -2
  20. package/dist/types-ts4.5/plugins/table/nodeviews/TableResizer.d.ts +2 -1
  21. package/package.json +2 -2
  22. package/report.api.md +14 -0
  23. package/src/__tests__/unit/analytics.ts +2 -0
  24. package/src/__tests__/unit/collab.ts +2 -0
  25. package/src/__tests__/unit/commands/go-to-next-cell.ts +2 -0
  26. package/src/__tests__/unit/commands/insert.ts +2 -0
  27. package/src/__tests__/unit/commands/misc.ts +2 -0
  28. package/src/__tests__/unit/commands/sort.ts +4 -0
  29. package/src/__tests__/unit/commands.ts +2 -0
  30. package/src/__tests__/unit/copy-paste.ts +2 -0
  31. package/src/__tests__/unit/event-handlers/index.ts +3 -0
  32. package/src/__tests__/unit/event-handlers.ts +3 -0
  33. package/src/__tests__/unit/fix-tables.ts +2 -0
  34. package/src/__tests__/unit/get-toolbar-config.ts +2 -0
  35. package/src/__tests__/unit/handlers.ts +2 -0
  36. package/src/__tests__/unit/hover-selection.ts +2 -0
  37. package/src/__tests__/unit/index.ts +2 -0
  38. package/src/__tests__/unit/layout.ts +2 -0
  39. package/src/__tests__/unit/nodeviews/TableContainer.tsx +58 -0
  40. package/src/__tests__/unit/nodeviews/cell.ts +2 -0
  41. package/src/__tests__/unit/nodeviews/table.ts +2 -0
  42. package/src/__tests__/unit/pm-plugins/decorations/column-resizing.ts +2 -0
  43. package/src/__tests__/unit/pm-plugins/decorations/plugin.ts +3 -0
  44. package/src/__tests__/unit/pm-plugins/main.ts +2 -0
  45. package/src/__tests__/unit/pm-plugins/safari-delete-composition-text-issue-workaround.ts +2 -0
  46. package/src/__tests__/unit/pm-plugins/sticky-headers/tableRow.tsx +3 -0
  47. package/src/__tests__/unit/pm-plugins/table-resizing/event-handlers.ts +2 -0
  48. package/src/__tests__/unit/pm-plugins/table-width.ts +99 -0
  49. package/src/__tests__/unit/sort-column.ts +2 -0
  50. package/src/__tests__/unit/toolbar.ts +2 -0
  51. package/src/__tests__/unit/transforms/delete-columns.ts +2 -0
  52. package/src/__tests__/unit/transforms/delete-rows.ts +2 -0
  53. package/src/__tests__/unit/transforms/merging.ts +2 -0
  54. package/src/__tests__/unit/ui/ContextualMenu.tsx +2 -0
  55. package/src/__tests__/unit/ui/CornerControls.tsx +2 -0
  56. package/src/__tests__/unit/ui/FloatingContextualButton.tsx +2 -0
  57. package/src/__tests__/unit/ui/FloatingContextualMenu.tsx +4 -2
  58. package/src/__tests__/unit/ui/RowControls.tsx +2 -0
  59. package/src/__tests__/unit/ui/TableFloatingControls.tsx +2 -0
  60. package/src/__tests__/unit/undo-redo.ts +2 -0
  61. package/src/__tests__/unit/utils/collapse.ts +2 -0
  62. package/src/__tests__/unit/utils/nodes.ts +2 -0
  63. package/src/__tests__/unit/utils/row-controls.ts +2 -0
  64. package/src/__tests__/unit/utils.ts +2 -0
  65. package/src/plugins/table/index.tsx +13 -0
  66. package/src/plugins/table/nodeviews/TableComponent.tsx +13 -1
  67. package/src/plugins/table/nodeviews/TableContainer.tsx +12 -0
  68. package/src/plugins/table/nodeviews/TableResizer.tsx +36 -5
  69. package/src/plugins/table/nodeviews/table.tsx +2 -4
  70. package/tmp/api-report-tmp.d.ts +12 -1
  71. package/tsconfig.app.json +0 -3
  72. package/tsconfig.dev.json +6 -3
@@ -3,15 +3,16 @@ import React from 'react';
3
3
  import { render, screen } from '@testing-library/react';
4
4
  import { IntlProvider } from 'react-intl-next';
5
5
 
6
+ import selectionPlugin from '@atlaskit/editor-core/src/plugins/selection';
6
7
  import { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
7
8
  import { contentInsertionPlugin } from '@atlaskit/editor-plugin-content-insertion';
8
9
  import { featureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
9
10
  import { guidelinePlugin } from '@atlaskit/editor-plugin-guideline';
10
11
  import { widthPlugin } from '@atlaskit/editor-plugin-width';
11
- import { EditorView } from '@atlaskit/editor-prosemirror/view';
12
+ import type { EditorView } from '@atlaskit/editor-prosemirror/view';
13
+ import type { LightEditorPlugin } from '@atlaskit/editor-test-helpers/create-prosemirror-editor';
12
14
  import {
13
15
  createProsemirrorEditorFactory,
14
- LightEditorPlugin,
15
16
  Preset,
16
17
  } from '@atlaskit/editor-test-helpers/create-prosemirror-editor';
17
18
  import {
@@ -41,6 +42,7 @@ describe('FloatingContextualMenu', () => {
41
42
  .add(contentInsertionPlugin)
42
43
  .add(widthPlugin)
43
44
  .add(guidelinePlugin)
45
+ .add(selectionPlugin)
44
46
  .add(tablePlugin),
45
47
  }));
46
48
  });
@@ -4,6 +4,7 @@ import { fireEvent, render, screen } from '@testing-library/react';
4
4
  import { IntlProvider } from 'react-intl-next';
5
5
 
6
6
  import { setTextSelection } from '@atlaskit/editor-common/utils';
7
+ import selectionPlugin from '@atlaskit/editor-core/src/plugins/selection';
7
8
  import { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
8
9
  import { contentInsertionPlugin } from '@atlaskit/editor-plugin-content-insertion';
9
10
  import { featureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
@@ -67,6 +68,7 @@ describe('RowControls', () => {
67
68
  .add(contentInsertionPlugin)
68
69
  .add(widthPlugin)
69
70
  .add(guidelinePlugin)
71
+ .add(selectionPlugin)
70
72
  .add(tablePlugin),
71
73
  pluginKey,
72
74
  });
@@ -3,6 +3,7 @@ import React from 'react';
3
3
  import { render, screen } from '@testing-library/react';
4
4
  import { IntlProvider } from 'react-intl-next';
5
5
 
6
+ import selectionPlugin from '@atlaskit/editor-core/src/plugins/selection';
6
7
  import { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
7
8
  import { contentInsertionPlugin } from '@atlaskit/editor-plugin-content-insertion';
8
9
  import { featureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
@@ -40,6 +41,7 @@ describe('TableFloatingControls', () => {
40
41
  .add(contentInsertionPlugin)
41
42
  .add(widthPlugin)
42
43
  .add(guidelinePlugin)
44
+ .add(selectionPlugin)
43
45
  .add(tablePlugin);
44
46
 
45
47
  const editor = (doc: DocBuilder) =>
@@ -1,5 +1,6 @@
1
1
  import clone from 'lodash/clone';
2
2
 
3
+ import selectionPlugin from '@atlaskit/editor-core/src/plugins/selection';
3
4
  import { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
4
5
  import { contentInsertionPlugin } from '@atlaskit/editor-plugin-content-insertion';
5
6
  import { featureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
@@ -70,6 +71,7 @@ describe('undo/redo with tables', () => {
70
71
  .add(contentInsertionPlugin)
71
72
  .add(widthPlugin)
72
73
  .add(guidelinePlugin)
74
+ .add(selectionPlugin)
73
75
  .add([tablePlugin, { tableOptions }]),
74
76
  pluginKey: tablePluginKey,
75
77
  });
@@ -1,3 +1,4 @@
1
+ import selectionPlugin from '@atlaskit/editor-core/src/plugins/selection';
1
2
  import { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
2
3
  import { contentInsertionPlugin } from '@atlaskit/editor-plugin-content-insertion';
3
4
  import { featureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
@@ -29,6 +30,7 @@ describe('collapse', () => {
29
30
  .add(contentInsertionPlugin)
30
31
  .add(widthPlugin)
31
32
  .add(guidelinePlugin)
33
+ .add(selectionPlugin)
32
34
  .add(tablePlugin);
33
35
 
34
36
  return createEditor({ doc, preset });
@@ -1,3 +1,4 @@
1
+ import selectionPlugin from '@atlaskit/editor-core/src/plugins/selection';
1
2
  import { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
2
3
  import { contentInsertionPlugin } from '@atlaskit/editor-plugin-content-insertion';
3
4
  import { featureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
@@ -37,6 +38,7 @@ describe('table merging logic', () => {
37
38
  .add(contentInsertionPlugin)
38
39
  .add(widthPlugin)
39
40
  .add(guidelinePlugin)
41
+ .add(selectionPlugin)
40
42
  .add(tablePlugin),
41
43
  pluginKey,
42
44
  });
@@ -1,4 +1,5 @@
1
1
  import { uuid } from '@atlaskit/adf-schema';
2
+ import selectionPlugin from '@atlaskit/editor-core/src/plugins/selection';
2
3
  import { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
3
4
  import { contentInsertionPlugin } from '@atlaskit/editor-plugin-content-insertion';
4
5
  import { featureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
@@ -46,6 +47,7 @@ describe('table plugin: utils/row-controls.js', () => {
46
47
  .add(contentInsertionPlugin)
47
48
  .add(widthPlugin)
48
49
  .add(guidelinePlugin)
50
+ .add(selectionPlugin)
49
51
  .add(tablePlugin),
50
52
  pluginKey,
51
53
  });
@@ -1,3 +1,4 @@
1
+ import selectionPlugin from '@atlaskit/editor-core/src/plugins/selection';
1
2
  import { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
2
3
  import { contentInsertionPlugin } from '@atlaskit/editor-plugin-content-insertion';
3
4
  import { featureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
@@ -43,6 +44,7 @@ describe('table plugin: utils', () => {
43
44
  .add(contentInsertionPlugin)
44
45
  .add(widthPlugin)
45
46
  .add(guidelinePlugin)
47
+ .add(selectionPlugin)
46
48
  .add(tablePlugin);
47
49
 
48
50
  const editor = (doc: DocBuilder) =>
@@ -24,10 +24,12 @@ import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
24
24
  import type { EditorSelectionAPI } from '@atlaskit/editor-common/selection';
25
25
  import type {
26
26
  Command,
27
+ EditorCommand,
27
28
  EditorPlugin,
28
29
  GetEditorContainerWidth,
29
30
  GetEditorFeatureFlags,
30
31
  NextEditorPlugin,
32
+ OptionalPlugin,
31
33
  } from '@atlaskit/editor-common/types';
32
34
  import { browser } from '@atlaskit/editor-common/utils';
33
35
  import { WithPluginState } from '@atlaskit/editor-common/with-plugin-state';
@@ -86,6 +88,16 @@ interface TablePluginOptions {
86
88
 
87
89
  type InsertTableAction = (analyticsPayload: AnalyticsEventPayload) => Command;
88
90
 
91
+ // TODO: duplicated SelectionPlugin type as it's still in editor-core, doing this avoid
92
+ // circular dependencies
93
+ type SelectionPlugin = NextEditorPlugin<
94
+ 'selection',
95
+ {
96
+ pluginConfiguration: unknown;
97
+ commands: { displayGapCursor: (toggle: boolean) => EditorCommand };
98
+ }
99
+ >;
100
+
89
101
  const defaultGetEditorFeatureFlags = () => ({});
90
102
 
91
103
  export type TablePlugin = NextEditorPlugin<
@@ -100,6 +112,7 @@ export type TablePlugin = NextEditorPlugin<
100
112
  ContentInsertionPlugin,
101
113
  WidthPlugin,
102
114
  GuidelinePlugin,
115
+ OptionalPlugin<SelectionPlugin>,
103
116
  ];
104
117
  }
105
118
  >;
@@ -342,7 +342,19 @@ class TableComponent extends React.Component<ComponentProps, TableState> {
342
342
  ({ visibility: visible ? 'visible' : 'hidden' } as CSSProperties),
343
343
  );
344
344
 
345
- const isNested = isTableNested(view.state, getPos());
345
+ /**
346
+ * ED-19838
347
+ * There is a getPos issue coming from this code. We need to apply this workaround for now and apply a patch
348
+ * before CR6 lands in production
349
+ */
350
+ let tablePos: number | undefined;
351
+ try {
352
+ tablePos = getPos ? getPos() : undefined;
353
+ } catch (e) {
354
+ tablePos = undefined;
355
+ }
356
+
357
+ const isNested = isTableNested(view.state, tablePos);
346
358
 
347
359
  return (
348
360
  <TableContainer
@@ -136,6 +136,17 @@ export const ResizableTableContainer = ({
136
136
  [pluginInjectionApi],
137
137
  );
138
138
 
139
+ const displayGapCursor = useCallback(
140
+ (toggle) => {
141
+ return (
142
+ pluginInjectionApi?.core?.actions.execute(
143
+ pluginInjectionApi?.selection?.commands.displayGapCursor(toggle),
144
+ ) ?? false
145
+ );
146
+ },
147
+ [pluginInjectionApi],
148
+ );
149
+
139
150
  const tableWidth = getTableContainerWidth(node);
140
151
  // 76 is currently an accepted padding value considering the spacing for resizer handle
141
152
  const responsiveContainerWidth = containerWidth - 76;
@@ -167,6 +178,7 @@ export const ResizableTableContainer = ({
167
178
  tableRef={tableRef}
168
179
  displayGuideline={displayGuideline}
169
180
  attachAnalyticsEvent={attachAnalyticsEvent}
181
+ displayGapCursor={displayGapCursor}
170
182
  >
171
183
  <InnerContainer className={className} node={node}>
172
184
  {children}
@@ -1,5 +1,11 @@
1
1
  import type { PropsWithChildren } from 'react';
2
- import React, { useCallback, useMemo, useRef, useState } from 'react';
2
+ import React, {
3
+ useCallback,
4
+ useEffect,
5
+ useMemo,
6
+ useRef,
7
+ useState,
8
+ } from 'react';
3
9
 
4
10
  import rafSchd from 'raf-schd';
5
11
  import { defineMessages, useIntl } from 'react-intl-next';
@@ -51,6 +57,7 @@ interface TableResizerProps {
51
57
  attachAnalyticsEvent: (
52
58
  payload: TableEventPayload,
53
59
  ) => ((tr: Transaction) => boolean) | undefined;
60
+ displayGapCursor: (toggle: boolean) => boolean;
54
61
  }
55
62
 
56
63
  const messages = defineMessages({
@@ -134,8 +141,11 @@ export const TableResizer = ({
134
141
  tableRef,
135
142
  displayGuideline,
136
143
  attachAnalyticsEvent,
144
+ displayGapCursor,
137
145
  }: PropsWithChildren<TableResizerProps>) => {
138
146
  const currentGap = useRef(0);
147
+ // track resizing state - use ref over state to avoid re-render
148
+ const isResizing = useRef(false);
139
149
  const [snappingEnabled, setSnappingEnabled] = useState(false);
140
150
  const { formatMessage } = useIntl();
141
151
 
@@ -176,22 +186,41 @@ export const TableResizer = ({
176
186
  [snappingEnabled],
177
187
  );
178
188
 
189
+ useEffect(() => {
190
+ return () => {
191
+ // only bring back the cursor if this table was deleted - i.e. if a user was resizing, then another
192
+ // deleted this table
193
+ if (isResizing.current) {
194
+ displayGapCursor(true);
195
+ displayGuideline([]);
196
+ }
197
+ };
198
+ }, [displayGuideline, displayGapCursor]);
199
+
179
200
  const handleResizeStart = useCallback(() => {
180
201
  startMeasure();
181
-
202
+ isResizing.current = true;
182
203
  const {
183
204
  dispatch,
184
205
  state: { tr },
185
206
  } = editorView;
207
+ tr.setMeta(tableWidthPluginKey, { resizing: true });
208
+ displayGapCursor(false);
186
209
 
187
- dispatch(tr.setMeta(tableWidthPluginKey, { resizing: true }));
210
+ dispatch(tr);
188
211
 
189
212
  const visibleGuidelines = getVisibleGuidelines(
190
213
  defaultGuidelines,
191
214
  containerWidth,
192
215
  );
193
216
  setSnappingEnabled(displayGuideline(visibleGuidelines));
194
- }, [displayGuideline, editorView, startMeasure, containerWidth]);
217
+ }, [
218
+ displayGapCursor,
219
+ displayGuideline,
220
+ editorView,
221
+ startMeasure,
222
+ containerWidth,
223
+ ]);
195
224
 
196
225
  const handleResize = useCallback(
197
226
  (originalState, delta) => {
@@ -242,6 +271,7 @@ export const TableResizer = ({
242
271
 
243
272
  const handleResizeStop = useCallback<HandleResize>(
244
273
  (originalState, delta) => {
274
+ isResizing.current = false;
245
275
  const newWidth = originalState.width + delta.width;
246
276
  const { state, dispatch } = editorView;
247
277
  const pos = getPos();
@@ -287,7 +317,7 @@ export const TableResizer = ({
287
317
  }),
288
318
  )?.(tr);
289
319
  }
290
-
320
+ displayGapCursor(true);
291
321
  dispatch(tr);
292
322
 
293
323
  // Hide guidelines when resizing stops
@@ -298,6 +328,7 @@ export const TableResizer = ({
298
328
  return newWidth;
299
329
  },
300
330
  [
331
+ displayGapCursor,
301
332
  updateWidth,
302
333
  editorView,
303
334
  getPos,
@@ -225,12 +225,11 @@ export default class TableView extends ReactNodeView<Props> {
225
225
  /**
226
226
  * ED-19810
227
227
  * There is a getPos issue coming from this code. We need to apply this workaround for now and apply a patch
228
- * before CR6 lands in production
228
+ * directly to confluence since this bug is now in production.
229
229
  */
230
230
  let tablePos: number | undefined;
231
231
  try {
232
- tablePos =
233
- typeof props.getPos === 'function' ? props.getPos() : undefined;
232
+ tablePos = props.getPos ? props.getPos() : undefined;
234
233
  } catch (e) {
235
234
  tablePos = undefined;
236
235
  }
@@ -332,7 +331,6 @@ export default class TableView extends ReactNodeView<Props> {
332
331
  }
333
332
 
334
333
  this.eventDispatcher?.emit('TABLE_DELETED', this.node);
335
-
336
334
  super.destroy();
337
335
  }
338
336
  }
@@ -8,10 +8,12 @@ import type { AnalyticsEventPayload } from '@atlaskit/editor-common/analytics';
8
8
  import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
9
9
  import type { Command } from '@atlaskit/editor-common/types';
10
10
  import type { ContentInsertionPlugin } from '@atlaskit/editor-plugin-content-insertion';
11
+ import type { EditorCommand } from '@atlaskit/editor-common/types';
11
12
  import type { EditorSelectionAPI } from '@atlaskit/editor-common/selection';
12
13
  import type { GetEditorFeatureFlags } from '@atlaskit/editor-common/types';
13
14
  import type { GuidelinePlugin } from '@atlaskit/editor-plugin-guideline';
14
15
  import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
16
+ import type { OptionalPlugin } from '@atlaskit/editor-common/types';
15
17
  import type { TableLayout } from '@atlaskit/adf-schema';
16
18
  import type { WidthPlugin } from '@atlaskit/editor-plugin-width';
17
19
 
@@ -69,6 +71,14 @@ interface PluginConfig {
69
71
  tableRenderOptimization?: boolean;
70
72
  }
71
73
 
74
+ // @public (undocumented)
75
+ type SelectionPlugin = NextEditorPlugin<'selection', {
76
+ pluginConfiguration: unknown;
77
+ commands: {
78
+ displayGapCursor: (toggle: boolean) => EditorCommand;
79
+ };
80
+ }>;
81
+
72
82
  // @public (undocumented)
73
83
  export type TablePlugin = NextEditorPlugin<'table', {
74
84
  pluginConfiguration: TablePluginOptions | undefined;
@@ -79,7 +89,8 @@ export type TablePlugin = NextEditorPlugin<'table', {
79
89
  AnalyticsPlugin,
80
90
  ContentInsertionPlugin,
81
91
  WidthPlugin,
82
- GuidelinePlugin
92
+ GuidelinePlugin,
93
+ OptionalPlugin<SelectionPlugin>
83
94
  ];
84
95
  }>;
85
96
 
package/tsconfig.app.json CHANGED
@@ -54,9 +54,6 @@
54
54
  {
55
55
  "path": "../editor-plugin-width/tsconfig.app.json"
56
56
  },
57
- {
58
- "path": "../editor-prosemirror/tsconfig.app.json"
59
- },
60
57
  {
61
58
  "path": "../editor-shared-styles/tsconfig.app.json"
62
59
  },
package/tsconfig.dev.json CHANGED
@@ -45,6 +45,9 @@
45
45
  {
46
46
  "path": "../../design-system/button/tsconfig.app.json"
47
47
  },
48
+ {
49
+ "path": "../../../build/website/docs/tsconfig.app.json"
50
+ },
48
51
  {
49
52
  "path": "../editor-common/tsconfig.app.json"
50
53
  },
@@ -72,9 +75,6 @@
72
75
  {
73
76
  "path": "../editor-plugin-width/tsconfig.app.json"
74
77
  },
75
- {
76
- "path": "../editor-prosemirror/tsconfig.app.json"
77
- },
78
78
  {
79
79
  "path": "../editor-shared-styles/tsconfig.app.json"
80
80
  },
@@ -99,6 +99,9 @@
99
99
  {
100
100
  "path": "../../design-system/theme/tsconfig.app.json"
101
101
  },
102
+ {
103
+ "path": "../../design-system/tokens/tsconfig.app.json"
104
+ },
102
105
  {
103
106
  "path": "../../../build/test-tooling/visual-regression/tsconfig.app.json"
104
107
  },