Skip to content

Commit d1a0be2

Browse files
committed
fix: prevent jsDoc comments from being removed
1 parent f497e04 commit d1a0be2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+84
-0
lines changed

src/contextProvider/camunda-platform/TooltipProvider.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import {
44
useService
55
} from '../../hooks';
66

7+
{ /* Required to break up imports, see https://github.com/babel/babel/issues/15156 */ }
8+
79
const TooltipProvider = {
810
'historyTimeToLive': (element) => {
911

src/contextProvider/zeebe/TooltipProvider.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import {
1010

1111
import { isZeebeUserTask } from '../../provider/zeebe/utils/FormUtil';
1212

13+
{ /* Required to break up imports, see https://github.com/babel/babel/issues/15156 */ }
14+
1315
const TooltipProvider = {
1416

1517
'group-assignmentDefinition': (element) => {

src/entries/ReferenceSelect.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import {
1111
usePrevious
1212
} from '@bpmn-io/properties-panel';
1313

14+
{ /* Required to break up imports, see https://github.com/babel/babel/issues/15156 */ }
15+
1416

1517
export default function ReferenceSelectEntry(props) {
1618
const {

src/provider/HOCs/withTooltipContainer.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { useMemo } from '@bpmn-io/properties-panel/preact/hooks';
22
import { useService } from '../../hooks';
33

4+
{ /* Required to break up imports, see https://github.com/babel/babel/issues/15156 */ }
5+
46
export function withTooltipContainer(Component) {
57
return props => {
68
const tooltipContainer = useMemo(() => {

src/provider/HOCs/withVariableContext.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import { getVariablesForElement } from '@bpmn-io/extract-process-variables/zeebe
22
import { useEffect, useState } from '@bpmn-io/properties-panel/preact/hooks';
33
import { useService } from '../../hooks';
44

5+
{ /* Required to break up imports, see https://github.com/babel/babel/issues/15156 */ }
6+
57
const fallbackResolver = {
68
getVariablesForElement: bo => getVariablesForElement(bo)
79
};

src/provider/bpmn/properties/CompensationProps.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ import {
2626
isCompensationSupported
2727
} from '../utils/EventDefinitionUtil';
2828

29+
{ /* Required to break up imports, see https://github.com/babel/babel/issues/15156 */ }
30+
2931
/**
3032
* @typedef { import('@bpmn-io/properties-panel').EntryDefinition } Entry
3133
*/

src/provider/bpmn/properties/ErrorProps.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ import {
3030
nextId
3131
} from '../../../utils/ElementUtil';
3232

33+
{ /* Required to break up imports, see https://github.com/babel/babel/issues/15156 */ }
34+
3335
export const EMPTY_OPTION = '';
3436
export const CREATE_NEW_OPTION = 'create-new';
3537

src/provider/bpmn/properties/EscalationProps.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ import {
3131
nextId
3232
} from '../../../utils/ElementUtil';
3333

34+
{ /* Required to break up imports, see https://github.com/babel/babel/issues/15156 */ }
35+
3436
const CREATE_NEW_OPTION = 'create-new';
3537

3638

src/provider/bpmn/properties/MessageProps.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ import {
2525
nextId
2626
} from '../../../utils/ElementUtil';
2727

28+
{ /* Required to break up imports, see https://github.com/babel/babel/issues/15156 */ }
29+
2830
export const EMPTY_OPTION = '';
2931
export const CREATE_NEW_OPTION = 'create-new';
3032

src/provider/bpmn/properties/SignalProps.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ import {
2727
nextId
2828
} from '../../../utils/ElementUtil';
2929

30+
{ /* Required to break up imports, see https://github.com/babel/babel/issues/15156 */ }
31+
3032
/**
3133
* @typedef { import('@bpmn-io/properties-panel').EntryDefinition } Entry
3234
*/

0 commit comments

Comments
 (0)