camunda-bpmn-js 4.16.0 → 4.17.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/LICENSE +20 -20
- package/README.md +88 -88
- package/dist/assets/base-modeler.css +5 -5
- package/dist/assets/base-navigated-viewer.css +1 -1
- package/dist/assets/base-viewer.css +1 -1
- package/dist/assets/camunda-cloud-modeler.css +2 -2
- package/dist/assets/camunda-platform-modeler.css +1 -1
- package/dist/assets/properties-panel.css +1505 -1505
- package/dist/base-modeler.development.js +353 -353
- package/dist/base-modeler.production.min.js +1 -1
- package/dist/camunda-cloud-modeler.development.js +548 -548
- package/dist/camunda-cloud-modeler.production.min.js +1 -1
- package/dist/camunda-cloud-navigated-viewer.development.js +40 -40
- package/dist/camunda-cloud-viewer.development.js +40 -40
- package/dist/camunda-platform-modeler.development.js +452 -452
- package/dist/camunda-platform-modeler.production.min.js +1 -1
- package/dist/camunda-platform-navigated-viewer.development.js +27 -27
- package/dist/camunda-platform-viewer.development.js +27 -27
- package/lib/base/Modeler.d.ts +20 -20
- package/lib/base/Modeler.js +65 -65
- package/lib/base/NavigatedViewer.d.ts +2 -2
- package/lib/base/NavigatedViewer.js +2 -2
- package/lib/base/Viewer.d.ts +2 -2
- package/lib/base/Viewer.js +2 -2
- package/lib/camunda-cloud/ElementTemplatesValidator.d.ts +1 -1
- package/lib/camunda-cloud/Modeler.d.ts +3 -3
- package/lib/camunda-cloud/Modeler.js +84 -84
- package/lib/camunda-cloud/NavigatedViewer.d.ts +9 -9
- package/lib/camunda-cloud/NavigatedViewer.js +36 -36
- package/lib/camunda-cloud/Viewer.d.ts +9 -9
- package/lib/camunda-cloud/Viewer.js +36 -36
- package/lib/camunda-cloud/util/commonModules.d.ts +9 -9
- package/lib/camunda-cloud/util/commonModules.js +15 -15
- package/lib/camunda-platform/Modeler.d.ts +3 -3
- package/lib/camunda-platform/Modeler.js +68 -68
- package/lib/camunda-platform/NavigatedViewer.d.ts +9 -9
- package/lib/camunda-platform/NavigatedViewer.js +27 -27
- package/lib/camunda-platform/Viewer.d.ts +9 -9
- package/lib/camunda-platform/Viewer.js +27 -27
- package/lib/camunda-platform/util/commonModules.d.ts +9 -9
- package/lib/camunda-platform/util/commonModules.js +11 -11
- package/lib/util/ExtensionElementsUtil.d.ts +24 -24
- package/lib/util/ExtensionElementsUtil.js +68 -68
- package/package.json +140 -140
- package/styles/base-modeler.css +5 -5
- package/styles/base-navigated-viewer.css +1 -1
- package/styles/base-viewer.css +1 -1
- package/styles/camunda-cloud-modeler.css +2 -2
- package/styles/camunda-platform-modeler.css +1 -1
|
@@ -108001,19 +108001,19 @@
|
|
|
108001
108001
|
errors: {}
|
|
108002
108002
|
});
|
|
108003
108003
|
|
|
108004
|
-
/**
|
|
108005
|
-
* @typedef {Function} <propertiesPanel.showEntry> callback
|
|
108006
|
-
*
|
|
108007
|
-
* @example
|
|
108008
|
-
*
|
|
108009
|
-
* useEvent('propertiesPanel.showEntry', ({ focus = false, ...rest }) => {
|
|
108010
|
-
* // ...
|
|
108011
|
-
* });
|
|
108012
|
-
*
|
|
108013
|
-
* @param {Object} context
|
|
108014
|
-
* @param {boolean} [context.focus]
|
|
108015
|
-
*
|
|
108016
|
-
* @returns void
|
|
108004
|
+
/**
|
|
108005
|
+
* @typedef {Function} <propertiesPanel.showEntry> callback
|
|
108006
|
+
*
|
|
108007
|
+
* @example
|
|
108008
|
+
*
|
|
108009
|
+
* useEvent('propertiesPanel.showEntry', ({ focus = false, ...rest }) => {
|
|
108010
|
+
* // ...
|
|
108011
|
+
* });
|
|
108012
|
+
*
|
|
108013
|
+
* @param {Object} context
|
|
108014
|
+
* @param {boolean} [context.focus]
|
|
108015
|
+
*
|
|
108016
|
+
* @returns void
|
|
108017
108017
|
*/
|
|
108018
108018
|
|
|
108019
108019
|
const EventContext = F$3({
|
|
@@ -108032,20 +108032,20 @@
|
|
|
108032
108032
|
getTooltipForId: () => {}
|
|
108033
108033
|
});
|
|
108034
108034
|
|
|
108035
|
-
/**
|
|
108036
|
-
* Accesses the global TooltipContext and returns a tooltip for a given id and element.
|
|
108037
|
-
*
|
|
108038
|
-
* @example
|
|
108039
|
-
* ```jsx
|
|
108040
|
-
* function TextField(props) {
|
|
108041
|
-
* const tooltip = useTooltipContext('input1', element);
|
|
108042
|
-
* }
|
|
108043
|
-
* ```
|
|
108044
|
-
*
|
|
108045
|
-
* @param {string} id
|
|
108046
|
-
* @param {object} element
|
|
108047
|
-
*
|
|
108048
|
-
* @returns {string}
|
|
108035
|
+
/**
|
|
108036
|
+
* Accesses the global TooltipContext and returns a tooltip for a given id and element.
|
|
108037
|
+
*
|
|
108038
|
+
* @example
|
|
108039
|
+
* ```jsx
|
|
108040
|
+
* function TextField(props) {
|
|
108041
|
+
* const tooltip = useTooltipContext('input1', element);
|
|
108042
|
+
* }
|
|
108043
|
+
* ```
|
|
108044
|
+
*
|
|
108045
|
+
* @param {string} id
|
|
108046
|
+
* @param {object} element
|
|
108047
|
+
*
|
|
108048
|
+
* @returns {string}
|
|
108049
108049
|
*/
|
|
108050
108050
|
function useTooltipContext(id, element) {
|
|
108051
108051
|
const {
|
|
@@ -108198,20 +108198,20 @@
|
|
|
108198
108198
|
return `bio-properties-panel-${id}`;
|
|
108199
108199
|
}
|
|
108200
108200
|
|
|
108201
|
-
/**
|
|
108202
|
-
* Accesses the global DescriptionContext and returns a description for a given id and element.
|
|
108203
|
-
*
|
|
108204
|
-
* @example
|
|
108205
|
-
* ```jsx
|
|
108206
|
-
* function TextField(props) {
|
|
108207
|
-
* const description = useDescriptionContext('input1', element);
|
|
108208
|
-
* }
|
|
108209
|
-
* ```
|
|
108210
|
-
*
|
|
108211
|
-
* @param {string} id
|
|
108212
|
-
* @param {object} element
|
|
108213
|
-
*
|
|
108214
|
-
* @returns {string}
|
|
108201
|
+
/**
|
|
108202
|
+
* Accesses the global DescriptionContext and returns a description for a given id and element.
|
|
108203
|
+
*
|
|
108204
|
+
* @example
|
|
108205
|
+
* ```jsx
|
|
108206
|
+
* function TextField(props) {
|
|
108207
|
+
* const description = useDescriptionContext('input1', element);
|
|
108208
|
+
* }
|
|
108209
|
+
* ```
|
|
108210
|
+
*
|
|
108211
|
+
* @param {string} id
|
|
108212
|
+
* @param {object} element
|
|
108213
|
+
*
|
|
108214
|
+
* @returns {string}
|
|
108215
108215
|
*/
|
|
108216
108216
|
function useDescriptionContext(id, element) {
|
|
108217
108217
|
const {
|
|
@@ -108233,11 +108233,11 @@
|
|
|
108233
108233
|
return errors;
|
|
108234
108234
|
}
|
|
108235
108235
|
|
|
108236
|
-
/**
|
|
108237
|
-
* Subscribe to an event immediately. Update subscription after inputs changed.
|
|
108238
|
-
*
|
|
108239
|
-
* @param {string} event
|
|
108240
|
-
* @param {Function} callback
|
|
108236
|
+
/**
|
|
108237
|
+
* Subscribe to an event immediately. Update subscription after inputs changed.
|
|
108238
|
+
*
|
|
108239
|
+
* @param {string} event
|
|
108240
|
+
* @param {Function} callback
|
|
108241
108241
|
*/
|
|
108242
108242
|
function useEvent(event, callback, eventBus) {
|
|
108243
108243
|
const eventContext = q$1(EventContext);
|
|
@@ -108267,20 +108267,20 @@
|
|
|
108267
108267
|
}, [callback, event, eventBus]);
|
|
108268
108268
|
}
|
|
108269
108269
|
|
|
108270
|
-
/**
|
|
108271
|
-
* Creates a state that persists in the global LayoutContext.
|
|
108272
|
-
*
|
|
108273
|
-
* @example
|
|
108274
|
-
* ```jsx
|
|
108275
|
-
* function Group(props) {
|
|
108276
|
-
* const [ open, setOpen ] = useLayoutState([ 'groups', 'foo', 'open' ], false);
|
|
108277
|
-
* }
|
|
108278
|
-
* ```
|
|
108279
|
-
*
|
|
108280
|
-
* @param {(string|number)[]} path
|
|
108281
|
-
* @param {any} [defaultValue]
|
|
108282
|
-
*
|
|
108283
|
-
* @returns {[ any, Function ]}
|
|
108270
|
+
/**
|
|
108271
|
+
* Creates a state that persists in the global LayoutContext.
|
|
108272
|
+
*
|
|
108273
|
+
* @example
|
|
108274
|
+
* ```jsx
|
|
108275
|
+
* function Group(props) {
|
|
108276
|
+
* const [ open, setOpen ] = useLayoutState([ 'groups', 'foo', 'open' ], false);
|
|
108277
|
+
* }
|
|
108278
|
+
* ```
|
|
108279
|
+
*
|
|
108280
|
+
* @param {(string|number)[]} path
|
|
108281
|
+
* @param {any} [defaultValue]
|
|
108282
|
+
*
|
|
108283
|
+
* @returns {[ any, Function ]}
|
|
108284
108284
|
*/
|
|
108285
108285
|
function useLayoutState(path, defaultValue) {
|
|
108286
108286
|
const {
|
|
@@ -108294,11 +108294,11 @@
|
|
|
108294
108294
|
return [layoutForKey, setState];
|
|
108295
108295
|
}
|
|
108296
108296
|
|
|
108297
|
-
/**
|
|
108298
|
-
* @pinussilvestrus: we need to introduce our own hook to persist the previous
|
|
108299
|
-
* state on updates.
|
|
108300
|
-
*
|
|
108301
|
-
* cf. https://reactjs.org/docs/hooks-faq.html#how-to-get-the-previous-props-or-state
|
|
108297
|
+
/**
|
|
108298
|
+
* @pinussilvestrus: we need to introduce our own hook to persist the previous
|
|
108299
|
+
* state on updates.
|
|
108300
|
+
*
|
|
108301
|
+
* cf. https://reactjs.org/docs/hooks-faq.html#how-to-get-the-previous-props-or-state
|
|
108302
108302
|
*/
|
|
108303
108303
|
|
|
108304
108304
|
function usePrevious$1(value) {
|
|
@@ -108309,12 +108309,12 @@
|
|
|
108309
108309
|
return ref.current;
|
|
108310
108310
|
}
|
|
108311
108311
|
|
|
108312
|
-
/**
|
|
108313
|
-
* Subscribe to `propertiesPanel.showEntry`.
|
|
108314
|
-
*
|
|
108315
|
-
* @param {string} id
|
|
108316
|
-
*
|
|
108317
|
-
* @returns {import('preact').Ref}
|
|
108312
|
+
/**
|
|
108313
|
+
* Subscribe to `propertiesPanel.showEntry`.
|
|
108314
|
+
*
|
|
108315
|
+
* @param {string} id
|
|
108316
|
+
*
|
|
108317
|
+
* @returns {import('preact').Ref}
|
|
108318
108318
|
*/
|
|
108319
108319
|
function useShowEntryEvent(id) {
|
|
108320
108320
|
const {
|
|
@@ -108345,20 +108345,20 @@
|
|
|
108345
108345
|
return ref;
|
|
108346
108346
|
}
|
|
108347
108347
|
|
|
108348
|
-
/**
|
|
108349
|
-
* @callback setSticky
|
|
108350
|
-
* @param {boolean} value
|
|
108348
|
+
/**
|
|
108349
|
+
* @callback setSticky
|
|
108350
|
+
* @param {boolean} value
|
|
108351
108351
|
*/
|
|
108352
108352
|
|
|
108353
|
-
/**
|
|
108354
|
-
* Use IntersectionObserver to identify when DOM element is in sticky mode.
|
|
108355
|
-
* If sticky is observered setSticky(true) will be called.
|
|
108356
|
-
* If sticky mode is left, setSticky(false) will be called.
|
|
108357
|
-
*
|
|
108358
|
-
*
|
|
108359
|
-
* @param {Object} ref
|
|
108360
|
-
* @param {string} scrollContainerSelector
|
|
108361
|
-
* @param {setSticky} setSticky
|
|
108353
|
+
/**
|
|
108354
|
+
* Use IntersectionObserver to identify when DOM element is in sticky mode.
|
|
108355
|
+
* If sticky is observered setSticky(true) will be called.
|
|
108356
|
+
* If sticky mode is left, setSticky(false) will be called.
|
|
108357
|
+
*
|
|
108358
|
+
*
|
|
108359
|
+
* @param {Object} ref
|
|
108360
|
+
* @param {string} scrollContainerSelector
|
|
108361
|
+
* @param {setSticky} setSticky
|
|
108362
108362
|
*/
|
|
108363
108363
|
function useStickyIntersectionObserver(ref, scrollContainerSelector, setSticky) {
|
|
108364
108364
|
const [scrollContainer, setScrollContainer] = h(query$1(scrollContainerSelector));
|
|
@@ -108412,19 +108412,19 @@
|
|
|
108412
108412
|
}, [ref.current, scrollContainer, setSticky]);
|
|
108413
108413
|
}
|
|
108414
108414
|
|
|
108415
|
-
/**
|
|
108416
|
-
* Creates a static function reference with changing body.
|
|
108417
|
-
* This is necessary when external libraries require a callback function
|
|
108418
|
-
* that has references to state variables.
|
|
108419
|
-
*
|
|
108420
|
-
* Usage:
|
|
108421
|
-
* const callback = useStaticCallback((val) => {val === currentState});
|
|
108422
|
-
*
|
|
108423
|
-
* The `callback` reference is static and can be safely used in external
|
|
108424
|
-
* libraries or as a prop that does not cause rerendering of children.
|
|
108425
|
-
*
|
|
108426
|
-
* @param {Function} callback function with changing reference
|
|
108427
|
-
* @returns {Function} static function reference
|
|
108415
|
+
/**
|
|
108416
|
+
* Creates a static function reference with changing body.
|
|
108417
|
+
* This is necessary when external libraries require a callback function
|
|
108418
|
+
* that has references to state variables.
|
|
108419
|
+
*
|
|
108420
|
+
* Usage:
|
|
108421
|
+
* const callback = useStaticCallback((val) => {val === currentState});
|
|
108422
|
+
*
|
|
108423
|
+
* The `callback` reference is static and can be safely used in external
|
|
108424
|
+
* libraries or as a prop that does not cause rerendering of children.
|
|
108425
|
+
*
|
|
108426
|
+
* @param {Function} callback function with changing reference
|
|
108427
|
+
* @returns {Function} static function reference
|
|
108428
108428
|
*/
|
|
108429
108429
|
function useStaticCallback(callback) {
|
|
108430
108430
|
const callbackRef = _$1(callback);
|
|
@@ -108567,13 +108567,13 @@
|
|
|
108567
108567
|
return null;
|
|
108568
108568
|
}
|
|
108569
108569
|
|
|
108570
|
-
/**
|
|
108571
|
-
* @typedef { {
|
|
108572
|
-
* text: (element: object) => string,
|
|
108573
|
-
* icon?: (element: Object) => import('preact').Component
|
|
108574
|
-
* } } PlaceholderDefinition
|
|
108575
|
-
*
|
|
108576
|
-
* @param { PlaceholderDefinition } props
|
|
108570
|
+
/**
|
|
108571
|
+
* @typedef { {
|
|
108572
|
+
* text: (element: object) => string,
|
|
108573
|
+
* icon?: (element: Object) => import('preact').Component
|
|
108574
|
+
* } } PlaceholderDefinition
|
|
108575
|
+
*
|
|
108576
|
+
* @param { PlaceholderDefinition } props
|
|
108577
108577
|
*/
|
|
108578
108578
|
function Placeholder(props) {
|
|
108579
108579
|
const {
|
|
@@ -108612,9 +108612,9 @@
|
|
|
108612
108612
|
|
|
108613
108613
|
const noop$6 = () => {};
|
|
108614
108614
|
|
|
108615
|
-
/**
|
|
108616
|
-
* Buffer `.focus()` calls while the editor is not initialized.
|
|
108617
|
-
* Set Focus inside when the editor is ready.
|
|
108615
|
+
/**
|
|
108616
|
+
* Buffer `.focus()` calls while the editor is not initialized.
|
|
108617
|
+
* Set Focus inside when the editor is ready.
|
|
108618
108618
|
*/
|
|
108619
108619
|
const useBufferedFocus$1 = function (editor, ref) {
|
|
108620
108620
|
const [buffer, setBuffer] = h(undefined);
|
|
@@ -108715,9 +108715,9 @@
|
|
|
108715
108715
|
|
|
108716
108716
|
const noop$5 = () => {};
|
|
108717
108717
|
|
|
108718
|
-
/**
|
|
108719
|
-
* Buffer `.focus()` calls while the editor is not initialized.
|
|
108720
|
-
* Set Focus inside when the editor is ready.
|
|
108718
|
+
/**
|
|
108719
|
+
* Buffer `.focus()` calls while the editor is not initialized.
|
|
108720
|
+
* Set Focus inside when the editor is ready.
|
|
108721
108721
|
*/
|
|
108722
108722
|
const useBufferedFocus = function (editor, ref) {
|
|
108723
108723
|
const [buffer, setBuffer] = h(undefined);
|
|
@@ -108766,10 +108766,10 @@
|
|
|
108766
108766
|
p$1(() => {
|
|
108767
108767
|
let editor;
|
|
108768
108768
|
|
|
108769
|
-
/* Trigger FEEL toggle when
|
|
108770
|
-
*
|
|
108771
|
-
* - `backspace` is pressed
|
|
108772
|
-
* - AND the cursor is at the beginning of the input
|
|
108769
|
+
/* Trigger FEEL toggle when
|
|
108770
|
+
*
|
|
108771
|
+
* - `backspace` is pressed
|
|
108772
|
+
* - AND the cursor is at the beginning of the input
|
|
108773
108773
|
*/
|
|
108774
108774
|
const onKeyDown = e => {
|
|
108775
108775
|
if (e.key !== 'Backspace' || !editor) {
|
|
@@ -108860,10 +108860,10 @@
|
|
|
108860
108860
|
|
|
108861
108861
|
const noop$4 = () => {};
|
|
108862
108862
|
|
|
108863
|
-
/**
|
|
108864
|
-
* @param {Object} props
|
|
108865
|
-
* @param {Object} props.label
|
|
108866
|
-
* @param {String} props.feel
|
|
108863
|
+
/**
|
|
108864
|
+
* @param {Object} props
|
|
108865
|
+
* @param {Object} props.label
|
|
108866
|
+
* @param {String} props.feel
|
|
108867
108867
|
*/
|
|
108868
108868
|
function FeelIcon(props) {
|
|
108869
108869
|
const {
|
|
@@ -108898,22 +108898,22 @@
|
|
|
108898
108898
|
source: null
|
|
108899
108899
|
});
|
|
108900
108900
|
|
|
108901
|
-
/**
|
|
108902
|
-
* Add a dragger that calls back the passed function with
|
|
108903
|
-
* { event, delta } on drag.
|
|
108904
|
-
*
|
|
108905
|
-
* @example
|
|
108906
|
-
*
|
|
108907
|
-
* function dragMove(event, delta) {
|
|
108908
|
-
* // we are dragging (!!)
|
|
108909
|
-
* }
|
|
108910
|
-
*
|
|
108911
|
-
* domElement.addEventListener('dragstart', dragger(dragMove));
|
|
108912
|
-
*
|
|
108913
|
-
* @param {Function} fn
|
|
108914
|
-
* @param {Element} [dragPreview]
|
|
108915
|
-
*
|
|
108916
|
-
* @return {Function} drag start callback function
|
|
108901
|
+
/**
|
|
108902
|
+
* Add a dragger that calls back the passed function with
|
|
108903
|
+
* { event, delta } on drag.
|
|
108904
|
+
*
|
|
108905
|
+
* @example
|
|
108906
|
+
*
|
|
108907
|
+
* function dragMove(event, delta) {
|
|
108908
|
+
* // we are dragging (!!)
|
|
108909
|
+
* }
|
|
108910
|
+
*
|
|
108911
|
+
* domElement.addEventListener('dragstart', dragger(dragMove));
|
|
108912
|
+
*
|
|
108913
|
+
* @param {Function} fn
|
|
108914
|
+
* @param {Element} [dragPreview]
|
|
108915
|
+
*
|
|
108916
|
+
* @return {Function} drag start callback function
|
|
108917
108917
|
*/
|
|
108918
108918
|
function createDragger(fn, dragPreview) {
|
|
108919
108919
|
let self;
|
|
@@ -108968,23 +108968,23 @@
|
|
|
108968
108968
|
|
|
108969
108969
|
const noop$3 = () => {};
|
|
108970
108970
|
|
|
108971
|
-
/**
|
|
108972
|
-
* A generic popup component.
|
|
108973
|
-
*
|
|
108974
|
-
* @param {Object} props
|
|
108975
|
-
* @param {HTMLElement} [props.container]
|
|
108976
|
-
* @param {string} [props.className]
|
|
108977
|
-
* @param {boolean} [props.delayInitialFocus]
|
|
108978
|
-
* @param {{x: number, y: number}} [props.position]
|
|
108979
|
-
* @param {number} [props.width]
|
|
108980
|
-
* @param {number} [props.height]
|
|
108981
|
-
* @param {Function} props.onClose
|
|
108982
|
-
* @param {Function} [props.onPostActivate]
|
|
108983
|
-
* @param {Function} [props.onPostDeactivate]
|
|
108984
|
-
* @param {boolean} [props.returnFocus]
|
|
108985
|
-
* @param {boolean} [props.closeOnEscape]
|
|
108986
|
-
* @param {string} props.title
|
|
108987
|
-
* @param {Ref} [ref]
|
|
108971
|
+
/**
|
|
108972
|
+
* A generic popup component.
|
|
108973
|
+
*
|
|
108974
|
+
* @param {Object} props
|
|
108975
|
+
* @param {HTMLElement} [props.container]
|
|
108976
|
+
* @param {string} [props.className]
|
|
108977
|
+
* @param {boolean} [props.delayInitialFocus]
|
|
108978
|
+
* @param {{x: number, y: number}} [props.position]
|
|
108979
|
+
* @param {number} [props.width]
|
|
108980
|
+
* @param {number} [props.height]
|
|
108981
|
+
* @param {Function} props.onClose
|
|
108982
|
+
* @param {Function} [props.onPostActivate]
|
|
108983
|
+
* @param {Function} [props.onPostDeactivate]
|
|
108984
|
+
* @param {boolean} [props.returnFocus]
|
|
108985
|
+
* @param {boolean} [props.closeOnEscape]
|
|
108986
|
+
* @param {string} props.title
|
|
108987
|
+
* @param {Ref} [ref]
|
|
108988
108988
|
*/
|
|
108989
108989
|
function PopupComponent(props, globalRef) {
|
|
108990
108990
|
const {
|
|
@@ -109203,12 +109203,12 @@
|
|
|
109203
109203
|
const FEEL_POPUP_WIDTH = 700;
|
|
109204
109204
|
const FEEL_POPUP_HEIGHT = 250;
|
|
109205
109205
|
|
|
109206
|
-
/**
|
|
109207
|
-
* FEEL popup component, built as a singleton. Emits lifecycle events as follows:
|
|
109208
|
-
* - `feelPopup.open` - fired before the popup is mounted
|
|
109209
|
-
* - `feelPopup.opened` - fired after the popup is mounted. Event context contains the DOM node of the popup
|
|
109210
|
-
* - `feelPopup.close` - fired before the popup is unmounted. Event context contains the DOM node of the popup
|
|
109211
|
-
* - `feelPopup.closed` - fired after the popup is unmounted
|
|
109206
|
+
/**
|
|
109207
|
+
* FEEL popup component, built as a singleton. Emits lifecycle events as follows:
|
|
109208
|
+
* - `feelPopup.open` - fired before the popup is mounted
|
|
109209
|
+
* - `feelPopup.opened` - fired after the popup is mounted. Event context contains the DOM node of the popup
|
|
109210
|
+
* - `feelPopup.close` - fired before the popup is unmounted. Event context contains the DOM node of the popup
|
|
109211
|
+
* - `feelPopup.closed` - fired after the popup is unmounted
|
|
109212
109212
|
*/
|
|
109213
109213
|
function FEELPopupRoot(props) {
|
|
109214
109214
|
const {
|
|
@@ -109431,11 +109431,11 @@
|
|
|
109431
109431
|
return element.closest('.cm-editor').querySelector('.cm-tooltip-autocomplete');
|
|
109432
109432
|
}
|
|
109433
109433
|
|
|
109434
|
-
/**
|
|
109435
|
-
* This hook behaves like useEffect, but does not trigger on the first render.
|
|
109436
|
-
*
|
|
109437
|
-
* @param {Function} effect
|
|
109438
|
-
* @param {Array} deps
|
|
109434
|
+
/**
|
|
109435
|
+
* This hook behaves like useEffect, but does not trigger on the first render.
|
|
109436
|
+
*
|
|
109437
|
+
* @param {Function} effect
|
|
109438
|
+
* @param {Array} deps
|
|
109439
109439
|
*/
|
|
109440
109440
|
function useUpdateEffect(effect, deps) {
|
|
109441
109441
|
const isMounted = _$1(false);
|
|
@@ -109513,19 +109513,19 @@
|
|
|
109513
109513
|
});
|
|
109514
109514
|
}
|
|
109515
109515
|
|
|
109516
|
-
/**
|
|
109517
|
-
* @param {Object} props
|
|
109518
|
-
* @param {Object} props.element
|
|
109519
|
-
* @param {String} props.id
|
|
109520
|
-
* @param {String} props.description
|
|
109521
|
-
* @param {String} props.label
|
|
109522
|
-
* @param {String} props.switcherLabel
|
|
109523
|
-
* @param {Boolean} props.inline
|
|
109524
|
-
* @param {Function} props.getValue
|
|
109525
|
-
* @param {Function} props.setValue
|
|
109526
|
-
* @param {Function} props.onFocus
|
|
109527
|
-
* @param {Function} props.onBlur
|
|
109528
|
-
* @param {string|import('preact').Component} props.tooltip
|
|
109516
|
+
/**
|
|
109517
|
+
* @param {Object} props
|
|
109518
|
+
* @param {Object} props.element
|
|
109519
|
+
* @param {String} props.id
|
|
109520
|
+
* @param {String} props.description
|
|
109521
|
+
* @param {String} props.label
|
|
109522
|
+
* @param {String} props.switcherLabel
|
|
109523
|
+
* @param {Boolean} props.inline
|
|
109524
|
+
* @param {Function} props.getValue
|
|
109525
|
+
* @param {Function} props.setValue
|
|
109526
|
+
* @param {Function} props.onFocus
|
|
109527
|
+
* @param {Function} props.onBlur
|
|
109528
|
+
* @param {string|import('preact').Component} props.tooltip
|
|
109529
109529
|
*/
|
|
109530
109530
|
function ToggleSwitchEntry(props) {
|
|
109531
109531
|
const {
|
|
@@ -109633,22 +109633,22 @@
|
|
|
109633
109633
|
});
|
|
109634
109634
|
}
|
|
109635
109635
|
|
|
109636
|
-
/**
|
|
109637
|
-
* @param {Object} props
|
|
109638
|
-
* @param {Boolean} props.debounce
|
|
109639
|
-
* @param {String} props.description
|
|
109640
|
-
* @param {Boolean} props.disabled
|
|
109641
|
-
* @param {Object} props.element
|
|
109642
|
-
* @param {Function} props.getValue
|
|
109643
|
-
* @param {String} props.id
|
|
109644
|
-
* @param {String} props.label
|
|
109645
|
-
* @param {String} props.max
|
|
109646
|
-
* @param {String} props.min
|
|
109647
|
-
* @param {Function} props.setValue
|
|
109648
|
-
* @param {Function} props.onFocus
|
|
109649
|
-
* @param {Function} props.onBlur
|
|
109650
|
-
* @param {String} props.step
|
|
109651
|
-
* @param {Function} props.validate
|
|
109636
|
+
/**
|
|
109637
|
+
* @param {Object} props
|
|
109638
|
+
* @param {Boolean} props.debounce
|
|
109639
|
+
* @param {String} props.description
|
|
109640
|
+
* @param {Boolean} props.disabled
|
|
109641
|
+
* @param {Object} props.element
|
|
109642
|
+
* @param {Function} props.getValue
|
|
109643
|
+
* @param {String} props.id
|
|
109644
|
+
* @param {String} props.label
|
|
109645
|
+
* @param {String} props.max
|
|
109646
|
+
* @param {String} props.min
|
|
109647
|
+
* @param {Function} props.setValue
|
|
109648
|
+
* @param {Function} props.onFocus
|
|
109649
|
+
* @param {Function} props.onBlur
|
|
109650
|
+
* @param {String} props.step
|
|
109651
|
+
* @param {Function} props.validate
|
|
109652
109652
|
*/
|
|
109653
109653
|
function NumberFieldEntry(props) {
|
|
109654
109654
|
const {
|
|
@@ -110133,26 +110133,26 @@
|
|
|
110133
110133
|
});
|
|
110134
110134
|
});
|
|
110135
110135
|
|
|
110136
|
-
/**
|
|
110137
|
-
* @param {Object} props
|
|
110138
|
-
* @param {Object} props.element
|
|
110139
|
-
* @param {String} props.id
|
|
110140
|
-
* @param {String} props.description
|
|
110141
|
-
* @param {Boolean} props.debounce
|
|
110142
|
-
* @param {Boolean} props.disabled
|
|
110143
|
-
* @param {Boolean} props.feel
|
|
110144
|
-
* @param {String} props.label
|
|
110145
|
-
* @param {Function} props.getValue
|
|
110146
|
-
* @param {Function} props.setValue
|
|
110147
|
-
* @param {Function} props.tooltipContainer
|
|
110148
|
-
* @param {Function} props.validate
|
|
110149
|
-
* @param {Function} props.show
|
|
110150
|
-
* @param {Function} props.example
|
|
110151
|
-
* @param {Function} props.variables
|
|
110152
|
-
* @param {Function} props.onFocus
|
|
110153
|
-
* @param {Function} props.onBlur
|
|
110154
|
-
* @param {string} [props.placeholder]
|
|
110155
|
-
* @param {string|import('preact').Component} props.tooltip
|
|
110136
|
+
/**
|
|
110137
|
+
* @param {Object} props
|
|
110138
|
+
* @param {Object} props.element
|
|
110139
|
+
* @param {String} props.id
|
|
110140
|
+
* @param {String} props.description
|
|
110141
|
+
* @param {Boolean} props.debounce
|
|
110142
|
+
* @param {Boolean} props.disabled
|
|
110143
|
+
* @param {Boolean} props.feel
|
|
110144
|
+
* @param {String} props.label
|
|
110145
|
+
* @param {Function} props.getValue
|
|
110146
|
+
* @param {Function} props.setValue
|
|
110147
|
+
* @param {Function} props.tooltipContainer
|
|
110148
|
+
* @param {Function} props.validate
|
|
110149
|
+
* @param {Function} props.show
|
|
110150
|
+
* @param {Function} props.example
|
|
110151
|
+
* @param {Function} props.variables
|
|
110152
|
+
* @param {Function} props.onFocus
|
|
110153
|
+
* @param {Function} props.onBlur
|
|
110154
|
+
* @param {string} [props.placeholder]
|
|
110155
|
+
* @param {string|import('preact').Component} props.tooltip
|
|
110156
110156
|
*/
|
|
110157
110157
|
function FeelEntry$2(props) {
|
|
110158
110158
|
const {
|
|
@@ -110239,27 +110239,27 @@
|
|
|
110239
110239
|
});
|
|
110240
110240
|
}
|
|
110241
110241
|
|
|
110242
|
-
/**
|
|
110243
|
-
* @param {Object} props
|
|
110244
|
-
* @param {Object} props.element
|
|
110245
|
-
* @param {String} props.id
|
|
110246
|
-
* @param {String} props.description
|
|
110247
|
-
* @param {Boolean} props.debounce
|
|
110248
|
-
* @param {Boolean} props.disabled
|
|
110249
|
-
* @param {String} props.max
|
|
110250
|
-
* @param {String} props.min
|
|
110251
|
-
* @param {String} props.step
|
|
110252
|
-
* @param {Boolean} props.feel
|
|
110253
|
-
* @param {String} props.label
|
|
110254
|
-
* @param {Function} props.getValue
|
|
110255
|
-
* @param {Function} props.setValue
|
|
110256
|
-
* @param {Function} props.tooltipContainer
|
|
110257
|
-
* @param {Function} props.validate
|
|
110258
|
-
* @param {Function} props.show
|
|
110259
|
-
* @param {Function} props.example
|
|
110260
|
-
* @param {Function} props.variables
|
|
110261
|
-
* @param {Function} props.onFocus
|
|
110262
|
-
* @param {Function} props.onBlur
|
|
110242
|
+
/**
|
|
110243
|
+
* @param {Object} props
|
|
110244
|
+
* @param {Object} props.element
|
|
110245
|
+
* @param {String} props.id
|
|
110246
|
+
* @param {String} props.description
|
|
110247
|
+
* @param {Boolean} props.debounce
|
|
110248
|
+
* @param {Boolean} props.disabled
|
|
110249
|
+
* @param {String} props.max
|
|
110250
|
+
* @param {String} props.min
|
|
110251
|
+
* @param {String} props.step
|
|
110252
|
+
* @param {Boolean} props.feel
|
|
110253
|
+
* @param {String} props.label
|
|
110254
|
+
* @param {Function} props.getValue
|
|
110255
|
+
* @param {Function} props.setValue
|
|
110256
|
+
* @param {Function} props.tooltipContainer
|
|
110257
|
+
* @param {Function} props.validate
|
|
110258
|
+
* @param {Function} props.show
|
|
110259
|
+
* @param {Function} props.example
|
|
110260
|
+
* @param {Function} props.variables
|
|
110261
|
+
* @param {Function} props.onFocus
|
|
110262
|
+
* @param {Function} props.onBlur
|
|
110263
110263
|
*/
|
|
110264
110264
|
function FeelNumberEntry(props) {
|
|
110265
110265
|
return u(FeelEntry$2, {
|
|
@@ -110269,25 +110269,25 @@
|
|
|
110269
110269
|
});
|
|
110270
110270
|
}
|
|
110271
110271
|
|
|
110272
|
-
/**
|
|
110273
|
-
* @param {Object} props
|
|
110274
|
-
* @param {Object} props.element
|
|
110275
|
-
* @param {String} props.id
|
|
110276
|
-
* @param {String} props.description
|
|
110277
|
-
* @param {Boolean} props.debounce
|
|
110278
|
-
* @param {Boolean} props.disabled
|
|
110279
|
-
* @param {Boolean} props.feel
|
|
110280
|
-
* @param {String} props.label
|
|
110281
|
-
* @param {Function} props.getValue
|
|
110282
|
-
* @param {Function} props.setValue
|
|
110283
|
-
* @param {Function} props.tooltipContainer
|
|
110284
|
-
* @param {Function} props.validate
|
|
110285
|
-
* @param {Function} props.show
|
|
110286
|
-
* @param {Function} props.example
|
|
110287
|
-
* @param {Function} props.variables
|
|
110288
|
-
* @param {Function} props.onFocus
|
|
110289
|
-
* @param {Function} props.onBlur
|
|
110290
|
-
* @param {string} [props.placeholder]
|
|
110272
|
+
/**
|
|
110273
|
+
* @param {Object} props
|
|
110274
|
+
* @param {Object} props.element
|
|
110275
|
+
* @param {String} props.id
|
|
110276
|
+
* @param {String} props.description
|
|
110277
|
+
* @param {Boolean} props.debounce
|
|
110278
|
+
* @param {Boolean} props.disabled
|
|
110279
|
+
* @param {Boolean} props.feel
|
|
110280
|
+
* @param {String} props.label
|
|
110281
|
+
* @param {Function} props.getValue
|
|
110282
|
+
* @param {Function} props.setValue
|
|
110283
|
+
* @param {Function} props.tooltipContainer
|
|
110284
|
+
* @param {Function} props.validate
|
|
110285
|
+
* @param {Function} props.show
|
|
110286
|
+
* @param {Function} props.example
|
|
110287
|
+
* @param {Function} props.variables
|
|
110288
|
+
* @param {Function} props.onFocus
|
|
110289
|
+
* @param {Function} props.onBlur
|
|
110290
|
+
* @param {string} [props.placeholder]
|
|
110291
110291
|
*/
|
|
110292
110292
|
function FeelTextAreaEntry$1(props) {
|
|
110293
110293
|
return u(FeelEntry$2, {
|
|
@@ -110297,24 +110297,24 @@
|
|
|
110297
110297
|
});
|
|
110298
110298
|
}
|
|
110299
110299
|
|
|
110300
|
-
/**
|
|
110301
|
-
* @param {Object} props
|
|
110302
|
-
* @param {Object} props.element
|
|
110303
|
-
* @param {String} props.id
|
|
110304
|
-
* @param {String} props.description
|
|
110305
|
-
* @param {Boolean} props.debounce
|
|
110306
|
-
* @param {Boolean} props.disabled
|
|
110307
|
-
* @param {Boolean} props.feel
|
|
110308
|
-
* @param {String} props.label
|
|
110309
|
-
* @param {Function} props.getValue
|
|
110310
|
-
* @param {Function} props.setValue
|
|
110311
|
-
* @param {Function} props.tooltipContainer
|
|
110312
|
-
* @param {Function} props.validate
|
|
110313
|
-
* @param {Function} props.show
|
|
110314
|
-
* @param {Function} props.example
|
|
110315
|
-
* @param {Function} props.variables
|
|
110316
|
-
* @param {Function} props.onFocus
|
|
110317
|
-
* @param {Function} props.onBlur
|
|
110300
|
+
/**
|
|
110301
|
+
* @param {Object} props
|
|
110302
|
+
* @param {Object} props.element
|
|
110303
|
+
* @param {String} props.id
|
|
110304
|
+
* @param {String} props.description
|
|
110305
|
+
* @param {Boolean} props.debounce
|
|
110306
|
+
* @param {Boolean} props.disabled
|
|
110307
|
+
* @param {Boolean} props.feel
|
|
110308
|
+
* @param {String} props.label
|
|
110309
|
+
* @param {Function} props.getValue
|
|
110310
|
+
* @param {Function} props.setValue
|
|
110311
|
+
* @param {Function} props.tooltipContainer
|
|
110312
|
+
* @param {Function} props.validate
|
|
110313
|
+
* @param {Function} props.show
|
|
110314
|
+
* @param {Function} props.example
|
|
110315
|
+
* @param {Function} props.variables
|
|
110316
|
+
* @param {Function} props.onFocus
|
|
110317
|
+
* @param {Function} props.onBlur
|
|
110318
110318
|
*/
|
|
110319
110319
|
function FeelCheckboxEntry(props) {
|
|
110320
110320
|
return u(FeelEntry$2, {
|
|
@@ -110383,84 +110383,84 @@
|
|
|
110383
110383
|
const DEFAULT_DESCRIPTION = {};
|
|
110384
110384
|
const DEFAULT_TOOLTIP = {};
|
|
110385
110385
|
|
|
110386
|
-
/**
|
|
110387
|
-
* @typedef { {
|
|
110388
|
-
* component: import('preact').Component,
|
|
110389
|
-
* id: String,
|
|
110390
|
-
* isEdited?: Function
|
|
110391
|
-
* } } EntryDefinition
|
|
110392
|
-
*
|
|
110393
|
-
* @typedef { {
|
|
110394
|
-
* autoFocusEntry: String,
|
|
110395
|
-
* autoOpen?: Boolean,
|
|
110396
|
-
* entries: Array<EntryDefinition>,
|
|
110397
|
-
* id: String,
|
|
110398
|
-
* label: String,
|
|
110399
|
-
* remove: (event: MouseEvent) => void
|
|
110400
|
-
* } } ListItemDefinition
|
|
110401
|
-
*
|
|
110402
|
-
* @typedef { {
|
|
110403
|
-
* add: (event: MouseEvent) => void,
|
|
110404
|
-
* component: import('preact').Component,
|
|
110405
|
-
* element: Object,
|
|
110406
|
-
* id: String,
|
|
110407
|
-
* items: Array<ListItemDefinition>,
|
|
110408
|
-
* label: String,
|
|
110409
|
-
* shouldOpen?: Boolean
|
|
110410
|
-
* } } ListGroupDefinition
|
|
110411
|
-
*
|
|
110412
|
-
* @typedef { {
|
|
110413
|
-
* component?: import('preact').Component,
|
|
110414
|
-
* entries: Array<EntryDefinition>,
|
|
110415
|
-
* id: String,
|
|
110416
|
-
* label: String,
|
|
110417
|
-
* shouldOpen?: Boolean
|
|
110418
|
-
* } } GroupDefinition
|
|
110419
|
-
*
|
|
110420
|
-
* @typedef { {
|
|
110421
|
-
* [id: String]: GetDescriptionFunction
|
|
110422
|
-
* } } DescriptionConfig
|
|
110423
|
-
*
|
|
110424
|
-
* @typedef { {
|
|
110425
|
-
* [id: String]: GetTooltipFunction
|
|
110426
|
-
* } } TooltipConfig
|
|
110427
|
-
*
|
|
110428
|
-
* @callback { {
|
|
110429
|
-
* @param {string} id
|
|
110430
|
-
* @param {Object} element
|
|
110431
|
-
* @returns {string}
|
|
110432
|
-
* } } GetDescriptionFunction
|
|
110433
|
-
*
|
|
110434
|
-
* @callback { {
|
|
110435
|
-
* @param {string} id
|
|
110436
|
-
* @param {Object} element
|
|
110437
|
-
* @returns {string}
|
|
110438
|
-
* } } GetTooltipFunction
|
|
110439
|
-
*
|
|
110440
|
-
* @typedef { {
|
|
110441
|
-
* getEmpty: (element: object) => import('./components/Placeholder').PlaceholderDefinition,
|
|
110442
|
-
* getMultiple: (element: Object) => import('./components/Placeholder').PlaceholderDefinition
|
|
110443
|
-
* } } PlaceholderProvider
|
|
110444
|
-
*
|
|
110386
|
+
/**
|
|
110387
|
+
* @typedef { {
|
|
110388
|
+
* component: import('preact').Component,
|
|
110389
|
+
* id: String,
|
|
110390
|
+
* isEdited?: Function
|
|
110391
|
+
* } } EntryDefinition
|
|
110392
|
+
*
|
|
110393
|
+
* @typedef { {
|
|
110394
|
+
* autoFocusEntry: String,
|
|
110395
|
+
* autoOpen?: Boolean,
|
|
110396
|
+
* entries: Array<EntryDefinition>,
|
|
110397
|
+
* id: String,
|
|
110398
|
+
* label: String,
|
|
110399
|
+
* remove: (event: MouseEvent) => void
|
|
110400
|
+
* } } ListItemDefinition
|
|
110401
|
+
*
|
|
110402
|
+
* @typedef { {
|
|
110403
|
+
* add: (event: MouseEvent) => void,
|
|
110404
|
+
* component: import('preact').Component,
|
|
110405
|
+
* element: Object,
|
|
110406
|
+
* id: String,
|
|
110407
|
+
* items: Array<ListItemDefinition>,
|
|
110408
|
+
* label: String,
|
|
110409
|
+
* shouldOpen?: Boolean
|
|
110410
|
+
* } } ListGroupDefinition
|
|
110411
|
+
*
|
|
110412
|
+
* @typedef { {
|
|
110413
|
+
* component?: import('preact').Component,
|
|
110414
|
+
* entries: Array<EntryDefinition>,
|
|
110415
|
+
* id: String,
|
|
110416
|
+
* label: String,
|
|
110417
|
+
* shouldOpen?: Boolean
|
|
110418
|
+
* } } GroupDefinition
|
|
110419
|
+
*
|
|
110420
|
+
* @typedef { {
|
|
110421
|
+
* [id: String]: GetDescriptionFunction
|
|
110422
|
+
* } } DescriptionConfig
|
|
110423
|
+
*
|
|
110424
|
+
* @typedef { {
|
|
110425
|
+
* [id: String]: GetTooltipFunction
|
|
110426
|
+
* } } TooltipConfig
|
|
110427
|
+
*
|
|
110428
|
+
* @callback { {
|
|
110429
|
+
* @param {string} id
|
|
110430
|
+
* @param {Object} element
|
|
110431
|
+
* @returns {string}
|
|
110432
|
+
* } } GetDescriptionFunction
|
|
110433
|
+
*
|
|
110434
|
+
* @callback { {
|
|
110435
|
+
* @param {string} id
|
|
110436
|
+
* @param {Object} element
|
|
110437
|
+
* @returns {string}
|
|
110438
|
+
* } } GetTooltipFunction
|
|
110439
|
+
*
|
|
110440
|
+
* @typedef { {
|
|
110441
|
+
* getEmpty: (element: object) => import('./components/Placeholder').PlaceholderDefinition,
|
|
110442
|
+
* getMultiple: (element: Object) => import('./components/Placeholder').PlaceholderDefinition
|
|
110443
|
+
* } } PlaceholderProvider
|
|
110444
|
+
*
|
|
110445
110445
|
*/
|
|
110446
110446
|
|
|
110447
|
-
/**
|
|
110448
|
-
* A basic properties panel component. Describes *how* content will be rendered, accepts
|
|
110449
|
-
* data from implementor to describe *what* will be rendered.
|
|
110450
|
-
*
|
|
110451
|
-
* @param {Object} props
|
|
110452
|
-
* @param {Object|Array} props.element
|
|
110453
|
-
* @param {import('./components/Header').HeaderProvider} props.headerProvider
|
|
110454
|
-
* @param {PlaceholderProvider} [props.placeholderProvider]
|
|
110455
|
-
* @param {Array<GroupDefinition|ListGroupDefinition>} props.groups
|
|
110456
|
-
* @param {Object} [props.layoutConfig]
|
|
110457
|
-
* @param {Function} [props.layoutChanged]
|
|
110458
|
-
* @param {DescriptionConfig} [props.descriptionConfig]
|
|
110459
|
-
* @param {Function} [props.descriptionLoaded]
|
|
110460
|
-
* @param {TooltipConfig} [props.tooltipConfig]
|
|
110461
|
-
* @param {Function} [props.tooltipLoaded]
|
|
110462
|
-
* @param {HTMLElement} [props.feelPopupContainer]
|
|
110463
|
-
* @param {Object} [props.eventBus]
|
|
110447
|
+
/**
|
|
110448
|
+
* A basic properties panel component. Describes *how* content will be rendered, accepts
|
|
110449
|
+
* data from implementor to describe *what* will be rendered.
|
|
110450
|
+
*
|
|
110451
|
+
* @param {Object} props
|
|
110452
|
+
* @param {Object|Array} props.element
|
|
110453
|
+
* @param {import('./components/Header').HeaderProvider} props.headerProvider
|
|
110454
|
+
* @param {PlaceholderProvider} [props.placeholderProvider]
|
|
110455
|
+
* @param {Array<GroupDefinition|ListGroupDefinition>} props.groups
|
|
110456
|
+
* @param {Object} [props.layoutConfig]
|
|
110457
|
+
* @param {Function} [props.layoutChanged]
|
|
110458
|
+
* @param {DescriptionConfig} [props.descriptionConfig]
|
|
110459
|
+
* @param {Function} [props.descriptionLoaded]
|
|
110460
|
+
* @param {TooltipConfig} [props.tooltipConfig]
|
|
110461
|
+
* @param {Function} [props.tooltipLoaded]
|
|
110462
|
+
* @param {HTMLElement} [props.feelPopupContainer]
|
|
110463
|
+
* @param {Object} [props.eventBus]
|
|
110464
110464
|
*/
|
|
110465
110465
|
function PropertiesPanel(props) {
|
|
110466
110466
|
const {
|
|
@@ -110631,11 +110631,11 @@
|
|
|
110631
110631
|
|
|
110632
110632
|
// hooks //////////////////
|
|
110633
110633
|
|
|
110634
|
-
/**
|
|
110635
|
-
* This hook behaves like useLayoutEffect, but does not trigger on the first render.
|
|
110636
|
-
*
|
|
110637
|
-
* @param {Function} effect
|
|
110638
|
-
* @param {Array} deps
|
|
110634
|
+
/**
|
|
110635
|
+
* This hook behaves like useLayoutEffect, but does not trigger on the first render.
|
|
110636
|
+
*
|
|
110637
|
+
* @param {Function} effect
|
|
110638
|
+
* @param {Array} deps
|
|
110639
110639
|
*/
|
|
110640
110640
|
function useUpdateLayoutEffect(effect, deps) {
|
|
110641
110641
|
const isMounted = _$1(false);
|
|
@@ -110710,15 +110710,15 @@
|
|
|
110710
110710
|
});
|
|
110711
110711
|
}
|
|
110712
110712
|
|
|
110713
|
-
/**
|
|
110714
|
-
*
|
|
110715
|
-
* @param {Array<null | Element>} ignoredElements
|
|
110716
|
-
* @param {Function} callback
|
|
110713
|
+
/**
|
|
110714
|
+
*
|
|
110715
|
+
* @param {Array<null | Element>} ignoredElements
|
|
110716
|
+
* @param {Function} callback
|
|
110717
110717
|
*/
|
|
110718
110718
|
function useGlobalClick(ignoredElements, callback) {
|
|
110719
110719
|
p$1(() => {
|
|
110720
|
-
/**
|
|
110721
|
-
* @param {MouseEvent} event
|
|
110720
|
+
/**
|
|
110721
|
+
* @param {MouseEvent} event
|
|
110722
110722
|
*/
|
|
110723
110723
|
function listener(event) {
|
|
110724
110724
|
if (ignoredElements.some(element => element && element.contains(event.target))) {
|
|
@@ -110751,20 +110751,20 @@
|
|
|
110751
110751
|
});
|
|
110752
110752
|
}
|
|
110753
110753
|
|
|
110754
|
-
/**
|
|
110755
|
-
* @typedef { {
|
|
110756
|
-
* [key: string]: string;
|
|
110757
|
-
* } } TranslateReplacements
|
|
110754
|
+
/**
|
|
110755
|
+
* @typedef { {
|
|
110756
|
+
* [key: string]: string;
|
|
110757
|
+
* } } TranslateReplacements
|
|
110758
110758
|
*/
|
|
110759
110759
|
|
|
110760
|
-
/**
|
|
110761
|
-
* A simple translation stub to be used for multi-language support.
|
|
110762
|
-
* Can be easily replaced with a more sophisticated solution.
|
|
110763
|
-
*
|
|
110764
|
-
* @param {string} template to interpolate
|
|
110765
|
-
* @param {TranslateReplacements} [replacements] a map with substitutes
|
|
110766
|
-
*
|
|
110767
|
-
* @return {string} the translated string
|
|
110760
|
+
/**
|
|
110761
|
+
* A simple translation stub to be used for multi-language support.
|
|
110762
|
+
* Can be easily replaced with a more sophisticated solution.
|
|
110763
|
+
*
|
|
110764
|
+
* @param {string} template to interpolate
|
|
110765
|
+
* @param {TranslateReplacements} [replacements] a map with substitutes
|
|
110766
|
+
*
|
|
110767
|
+
* @return {string} the translated string
|
|
110768
110768
|
*/
|
|
110769
110769
|
function translateFallback(template, replacements) {
|
|
110770
110770
|
replacements = replacements || {};
|
|
@@ -110876,8 +110876,8 @@
|
|
|
110876
110876
|
|
|
110877
110877
|
const noop$1$1 = () => {};
|
|
110878
110878
|
|
|
110879
|
-
/**
|
|
110880
|
-
* @param {import('../PropertiesPanel').ListGroupDefinition} props
|
|
110879
|
+
/**
|
|
110880
|
+
* @param {import('../PropertiesPanel').ListGroupDefinition} props
|
|
110881
110881
|
*/
|
|
110882
110882
|
function ListGroup(props) {
|
|
110883
110883
|
const {
|
|
@@ -111069,18 +111069,18 @@
|
|
|
111069
111069
|
});
|
|
111070
111070
|
}
|
|
111071
111071
|
|
|
111072
|
-
/**
|
|
111073
|
-
* @param {Object} props
|
|
111074
|
-
* @param {Object} props.element
|
|
111075
|
-
* @param {String} props.id
|
|
111076
|
-
* @param {String} props.description
|
|
111077
|
-
* @param {String} props.label
|
|
111078
|
-
* @param {Function} props.getValue
|
|
111079
|
-
* @param {Function} props.setValue
|
|
111080
|
-
* @param {Function} props.onFocus
|
|
111081
|
-
* @param {Function} props.onBlur
|
|
111082
|
-
* @param {string|import('preact').Component} props.tooltip
|
|
111083
|
-
* @param {boolean} [props.disabled]
|
|
111072
|
+
/**
|
|
111073
|
+
* @param {Object} props
|
|
111074
|
+
* @param {Object} props.element
|
|
111075
|
+
* @param {String} props.id
|
|
111076
|
+
* @param {String} props.description
|
|
111077
|
+
* @param {String} props.label
|
|
111078
|
+
* @param {Function} props.getValue
|
|
111079
|
+
* @param {Function} props.setValue
|
|
111080
|
+
* @param {Function} props.onFocus
|
|
111081
|
+
* @param {Function} props.onBlur
|
|
111082
|
+
* @param {string|import('preact').Component} props.tooltip
|
|
111083
|
+
* @param {boolean} [props.disabled]
|
|
111084
111084
|
*/
|
|
111085
111085
|
function CheckboxEntry(props) {
|
|
111086
111086
|
const {
|
|
@@ -111201,20 +111201,20 @@
|
|
|
111201
111201
|
});
|
|
111202
111202
|
}
|
|
111203
111203
|
|
|
111204
|
-
/**
|
|
111205
|
-
* @param {object} props
|
|
111206
|
-
* @param {object} props.element
|
|
111207
|
-
* @param {string} props.id
|
|
111208
|
-
* @param {string} [props.description]
|
|
111209
|
-
* @param {string} props.label
|
|
111210
|
-
* @param {Function} props.getValue
|
|
111211
|
-
* @param {Function} props.setValue
|
|
111212
|
-
* @param {Function} props.onFocus
|
|
111213
|
-
* @param {Function} props.onBlur
|
|
111214
|
-
* @param {Function} props.getOptions
|
|
111215
|
-
* @param {boolean} [props.disabled]
|
|
111216
|
-
* @param {Function} [props.validate]
|
|
111217
|
-
* @param {string|import('preact').Component} props.tooltip
|
|
111204
|
+
/**
|
|
111205
|
+
* @param {object} props
|
|
111206
|
+
* @param {object} props.element
|
|
111207
|
+
* @param {string} props.id
|
|
111208
|
+
* @param {string} [props.description]
|
|
111209
|
+
* @param {string} props.label
|
|
111210
|
+
* @param {Function} props.getValue
|
|
111211
|
+
* @param {Function} props.setValue
|
|
111212
|
+
* @param {Function} props.onFocus
|
|
111213
|
+
* @param {Function} props.onBlur
|
|
111214
|
+
* @param {Function} props.getOptions
|
|
111215
|
+
* @param {boolean} [props.disabled]
|
|
111216
|
+
* @param {Function} [props.validate]
|
|
111217
|
+
* @param {string|import('preact').Component} props.tooltip
|
|
111218
111218
|
*/
|
|
111219
111219
|
function SelectEntry(props) {
|
|
111220
111220
|
const {
|
|
@@ -111302,7 +111302,7 @@
|
|
|
111302
111302
|
monospace,
|
|
111303
111303
|
onFocus,
|
|
111304
111304
|
onBlur,
|
|
111305
|
-
autoResize,
|
|
111305
|
+
autoResize = true,
|
|
111306
111306
|
placeholder,
|
|
111307
111307
|
rows = autoResize ? 1 : 2,
|
|
111308
111308
|
tooltip
|
|
@@ -111359,21 +111359,21 @@
|
|
|
111359
111359
|
});
|
|
111360
111360
|
}
|
|
111361
111361
|
|
|
111362
|
-
/**
|
|
111363
|
-
* @param {object} props
|
|
111364
|
-
* @param {object} props.element
|
|
111365
|
-
* @param {string} props.id
|
|
111366
|
-
* @param {string} props.description
|
|
111367
|
-
* @param {boolean} props.debounce
|
|
111368
|
-
* @param {string} props.label
|
|
111369
|
-
* @param {Function} props.getValue
|
|
111370
|
-
* @param {Function} props.setValue
|
|
111371
|
-
* @param {Function} props.onFocus
|
|
111372
|
-
* @param {Function} props.onBlur
|
|
111373
|
-
* @param {number} props.rows
|
|
111374
|
-
* @param {boolean} props.monospace
|
|
111375
|
-
* @param {Function} [props.validate]
|
|
111376
|
-
* @param {boolean} [props.disabled]
|
|
111362
|
+
/**
|
|
111363
|
+
* @param {object} props
|
|
111364
|
+
* @param {object} props.element
|
|
111365
|
+
* @param {string} props.id
|
|
111366
|
+
* @param {string} props.description
|
|
111367
|
+
* @param {boolean} props.debounce
|
|
111368
|
+
* @param {string} props.label
|
|
111369
|
+
* @param {Function} props.getValue
|
|
111370
|
+
* @param {Function} props.setValue
|
|
111371
|
+
* @param {Function} props.onFocus
|
|
111372
|
+
* @param {Function} props.onBlur
|
|
111373
|
+
* @param {number} props.rows
|
|
111374
|
+
* @param {boolean} props.monospace
|
|
111375
|
+
* @param {Function} [props.validate]
|
|
111376
|
+
* @param {boolean} [props.disabled]
|
|
111377
111377
|
*/
|
|
111378
111378
|
function TextAreaEntry(props) {
|
|
111379
111379
|
const {
|
|
@@ -111507,20 +111507,20 @@
|
|
|
111507
111507
|
});
|
|
111508
111508
|
}
|
|
111509
111509
|
|
|
111510
|
-
/**
|
|
111511
|
-
* @param {Object} props
|
|
111512
|
-
* @param {Object} props.element
|
|
111513
|
-
* @param {String} props.id
|
|
111514
|
-
* @param {String} props.description
|
|
111515
|
-
* @param {Boolean} props.debounce
|
|
111516
|
-
* @param {Boolean} props.disabled
|
|
111517
|
-
* @param {String} props.label
|
|
111518
|
-
* @param {Function} props.getValue
|
|
111519
|
-
* @param {Function} props.setValue
|
|
111520
|
-
* @param {Function} props.onFocus
|
|
111521
|
-
* @param {Function} props.onBlur
|
|
111522
|
-
* @param {string|import('preact').Component} props.tooltip
|
|
111523
|
-
* @param {Function} props.validate
|
|
111510
|
+
/**
|
|
111511
|
+
* @param {Object} props
|
|
111512
|
+
* @param {Object} props.element
|
|
111513
|
+
* @param {String} props.id
|
|
111514
|
+
* @param {String} props.description
|
|
111515
|
+
* @param {Boolean} props.debounce
|
|
111516
|
+
* @param {Boolean} props.disabled
|
|
111517
|
+
* @param {String} props.label
|
|
111518
|
+
* @param {Function} props.getValue
|
|
111519
|
+
* @param {Function} props.setValue
|
|
111520
|
+
* @param {Function} props.onFocus
|
|
111521
|
+
* @param {Function} props.onBlur
|
|
111522
|
+
* @param {string|import('preact').Component} props.tooltip
|
|
111523
|
+
* @param {Function} props.validate
|
|
111524
111524
|
*/
|
|
111525
111525
|
function TextfieldEntry(props) {
|
|
111526
111526
|
const {
|
|
@@ -111613,20 +111613,20 @@
|
|
|
111613
111613
|
this._eventBus = eventBus;
|
|
111614
111614
|
}
|
|
111615
111615
|
|
|
111616
|
-
/**
|
|
111617
|
-
* Check if the FEEL popup is open.
|
|
111618
|
-
* @return {Boolean}
|
|
111616
|
+
/**
|
|
111617
|
+
* Check if the FEEL popup is open.
|
|
111618
|
+
* @return {Boolean}
|
|
111619
111619
|
*/
|
|
111620
111620
|
isOpen() {
|
|
111621
111621
|
return this._eventBus.fire('feelPopup._isOpen');
|
|
111622
111622
|
}
|
|
111623
111623
|
|
|
111624
|
-
/**
|
|
111625
|
-
* Open the FEEL popup.
|
|
111626
|
-
*
|
|
111627
|
-
* @param {String} entryId
|
|
111628
|
-
* @param {Object} popupConfig
|
|
111629
|
-
* @param {HTMLElement} sourceElement
|
|
111624
|
+
/**
|
|
111625
|
+
* Open the FEEL popup.
|
|
111626
|
+
*
|
|
111627
|
+
* @param {String} entryId
|
|
111628
|
+
* @param {Object} popupConfig
|
|
111629
|
+
* @param {HTMLElement} sourceElement
|
|
111630
111630
|
*/
|
|
111631
111631
|
open(entryId, popupConfig, sourceElement) {
|
|
111632
111632
|
return this._eventBus.fire('feelPopup._open', {
|
|
@@ -111636,8 +111636,8 @@
|
|
|
111636
111636
|
});
|
|
111637
111637
|
}
|
|
111638
111638
|
|
|
111639
|
-
/**
|
|
111640
|
-
* Close the FEEL popup.
|
|
111639
|
+
/**
|
|
111640
|
+
* Close the FEEL popup.
|
|
111641
111641
|
*/
|
|
111642
111642
|
close() {
|
|
111643
111643
|
return this._eventBus.fire('feelPopup._close');
|
|
@@ -123381,54 +123381,54 @@
|
|
|
123381
123381
|
}
|
|
123382
123382
|
};
|
|
123383
123383
|
|
|
123384
|
-
/**
|
|
123385
|
-
* @typedef {import('bpmn-js/lib/BaseViewer').BaseViewerOptions} BaseViewerOptions
|
|
123386
|
-
*
|
|
123387
|
-
* @typedef {import('didi').ModuleDeclaration} ModuleDeclaration
|
|
123388
|
-
*/
|
|
123389
|
-
|
|
123390
|
-
/**
|
|
123391
|
-
*
|
|
123392
|
-
* @param {BaseViewerOptions} options
|
|
123393
|
-
*/
|
|
123394
|
-
function Modeler$1(options = {}) {
|
|
123395
|
-
Modeler$2.call(this, options);
|
|
123396
|
-
}
|
|
123397
|
-
|
|
123398
|
-
e$7(Modeler$1, Modeler$2);
|
|
123399
|
-
|
|
123400
|
-
/**
|
|
123401
|
-
* @param { {
|
|
123402
|
-
* disableAdjustOrigin?: boolean;
|
|
123403
|
-
* disableGrid?: boolean;
|
|
123404
|
-
* } } [options]
|
|
123405
|
-
*
|
|
123406
|
-
* @returns {ModuleDeclaration[]}
|
|
123407
|
-
*/
|
|
123408
|
-
Modeler$1.prototype.getModules = function(options = {}) {
|
|
123409
|
-
const modules = Modeler$2.prototype.getModules.call(this, options);
|
|
123410
|
-
|
|
123411
|
-
return [
|
|
123412
|
-
...modules,
|
|
123413
|
-
options.disableAdjustOrigin
|
|
123414
|
-
? diagramOriginModule
|
|
123415
|
-
: alignToOriginModule,
|
|
123416
|
-
options.disableGrid
|
|
123417
|
-
? {}
|
|
123418
|
-
: index$5
|
|
123419
|
-
];
|
|
123420
|
-
};
|
|
123421
|
-
|
|
123422
|
-
Modeler$1.prototype._extensionModules = [
|
|
123423
|
-
index$6,
|
|
123424
|
-
ExecutableFixModule,
|
|
123425
|
-
index$3$1,
|
|
123426
|
-
index$2$1
|
|
123427
|
-
];
|
|
123428
|
-
|
|
123429
|
-
Modeler$1.prototype._modules = [].concat(
|
|
123430
|
-
Modeler$2.prototype._modules,
|
|
123431
|
-
Modeler$1.prototype._extensionModules
|
|
123384
|
+
/**
|
|
123385
|
+
* @typedef {import('bpmn-js/lib/BaseViewer').BaseViewerOptions} BaseViewerOptions
|
|
123386
|
+
*
|
|
123387
|
+
* @typedef {import('didi').ModuleDeclaration} ModuleDeclaration
|
|
123388
|
+
*/
|
|
123389
|
+
|
|
123390
|
+
/**
|
|
123391
|
+
*
|
|
123392
|
+
* @param {BaseViewerOptions} options
|
|
123393
|
+
*/
|
|
123394
|
+
function Modeler$1(options = {}) {
|
|
123395
|
+
Modeler$2.call(this, options);
|
|
123396
|
+
}
|
|
123397
|
+
|
|
123398
|
+
e$7(Modeler$1, Modeler$2);
|
|
123399
|
+
|
|
123400
|
+
/**
|
|
123401
|
+
* @param { {
|
|
123402
|
+
* disableAdjustOrigin?: boolean;
|
|
123403
|
+
* disableGrid?: boolean;
|
|
123404
|
+
* } } [options]
|
|
123405
|
+
*
|
|
123406
|
+
* @returns {ModuleDeclaration[]}
|
|
123407
|
+
*/
|
|
123408
|
+
Modeler$1.prototype.getModules = function(options = {}) {
|
|
123409
|
+
const modules = Modeler$2.prototype.getModules.call(this, options);
|
|
123410
|
+
|
|
123411
|
+
return [
|
|
123412
|
+
...modules,
|
|
123413
|
+
options.disableAdjustOrigin
|
|
123414
|
+
? diagramOriginModule
|
|
123415
|
+
: alignToOriginModule,
|
|
123416
|
+
options.disableGrid
|
|
123417
|
+
? {}
|
|
123418
|
+
: index$5
|
|
123419
|
+
];
|
|
123420
|
+
};
|
|
123421
|
+
|
|
123422
|
+
Modeler$1.prototype._extensionModules = [
|
|
123423
|
+
index$6,
|
|
123424
|
+
ExecutableFixModule,
|
|
123425
|
+
index$3$1,
|
|
123426
|
+
index$2$1
|
|
123427
|
+
];
|
|
123428
|
+
|
|
123429
|
+
Modeler$1.prototype._modules = [].concat(
|
|
123430
|
+
Modeler$2.prototype._modules,
|
|
123431
|
+
Modeler$1.prototype._extensionModules
|
|
123432
123432
|
);
|
|
123433
123433
|
|
|
123434
123434
|
/**
|
|
@@ -130963,7 +130963,7 @@
|
|
|
130963
130963
|
}
|
|
130964
130964
|
|
|
130965
130965
|
const LOWER_PRIORITY$1 = 300;
|
|
130966
|
-
const ALWAYS_DISPLAYED_GROUPS$1 = ['general', 'documentation', 'multiInstance'];
|
|
130966
|
+
const ALWAYS_DISPLAYED_GROUPS$1 = ['general', 'documentation', 'multiInstance', 'Zeebe__ExecutionListeners'];
|
|
130967
130967
|
let ElementTemplatesPropertiesProvider$1 = class ElementTemplatesPropertiesProvider {
|
|
130968
130968
|
constructor(elementTemplates, propertiesPanel, injector) {
|
|
130969
130969
|
propertiesPanel.registerProvider(LOWER_PRIORITY$1, this);
|
|
@@ -156128,17 +156128,17 @@
|
|
|
156128
156128
|
types: types
|
|
156129
156129
|
};
|
|
156130
156130
|
|
|
156131
|
-
const commonModules = [
|
|
156132
|
-
iconRendererModule
|
|
156133
|
-
];
|
|
156134
|
-
|
|
156135
|
-
/**
|
|
156136
|
-
* @type { {
|
|
156137
|
-
* zeebe: any
|
|
156138
|
-
* } }
|
|
156139
|
-
*/
|
|
156140
|
-
const commonModdleExtensions = {
|
|
156141
|
-
zeebe: zeebeModdle
|
|
156131
|
+
const commonModules = [
|
|
156132
|
+
iconRendererModule
|
|
156133
|
+
];
|
|
156134
|
+
|
|
156135
|
+
/**
|
|
156136
|
+
* @type { {
|
|
156137
|
+
* zeebe: any
|
|
156138
|
+
* } }
|
|
156139
|
+
*/
|
|
156140
|
+
const commonModdleExtensions = {
|
|
156141
|
+
zeebe: zeebeModdle
|
|
156142
156142
|
};
|
|
156143
156143
|
|
|
156144
156144
|
/**
|
|
@@ -159986,58 +159986,58 @@
|
|
|
159986
159986
|
]
|
|
159987
159987
|
};
|
|
159988
159988
|
|
|
159989
|
-
/**
|
|
159990
|
-
* @typedef {import('bpmn-js/lib/BaseViewer').BaseViewerOptions} BaseViewerOptions
|
|
159991
|
-
*/
|
|
159992
|
-
|
|
159993
|
-
/**
|
|
159994
|
-
* @param {BaseViewerOptions} options
|
|
159995
|
-
*/
|
|
159996
|
-
function Modeler(options = {}) {
|
|
159997
|
-
|
|
159998
|
-
options = {
|
|
159999
|
-
...options,
|
|
160000
|
-
moddleExtensions: {
|
|
160001
|
-
...commonModdleExtensions,
|
|
160002
|
-
...options.moddleExtensions
|
|
160003
|
-
},
|
|
160004
|
-
propertiesPanel: {
|
|
160005
|
-
tooltip: TooltipProvider$1,
|
|
160006
|
-
...options.propertiesPanel
|
|
160007
|
-
}
|
|
160008
|
-
};
|
|
160009
|
-
|
|
160010
|
-
this._addElementTemplateChooserModule(options);
|
|
160011
|
-
|
|
160012
|
-
Modeler$1.call(this, options);
|
|
160013
|
-
}
|
|
160014
|
-
|
|
160015
|
-
e$7(Modeler, Modeler$1);
|
|
160016
|
-
|
|
160017
|
-
Modeler.prototype._addElementTemplateChooserModule = function(options) {
|
|
160018
|
-
const { elementTemplateChooser } = options;
|
|
160019
|
-
|
|
160020
|
-
if (elementTemplateChooser !== false) {
|
|
160021
|
-
this._modules = [ ...this._modules, index$2 ];
|
|
160022
|
-
}
|
|
160023
|
-
};
|
|
160024
|
-
|
|
160025
|
-
Modeler.prototype._camundaCloudModules = [
|
|
160026
|
-
...commonModules,
|
|
160027
|
-
behaviorsModule,
|
|
160028
|
-
index$1$2,
|
|
160029
|
-
index$1$1,
|
|
160030
|
-
index$1,
|
|
160031
|
-
index,
|
|
160032
|
-
colorPickerModule,
|
|
160033
|
-
ZeebeVariableResolverModule,
|
|
160034
|
-
exampleDataPropertiesProviderModule,
|
|
160035
|
-
index$3
|
|
160036
|
-
];
|
|
160037
|
-
|
|
160038
|
-
Modeler.prototype._modules = [].concat(
|
|
160039
|
-
Modeler$1.prototype._modules,
|
|
160040
|
-
Modeler.prototype._camundaCloudModules
|
|
159989
|
+
/**
|
|
159990
|
+
* @typedef {import('bpmn-js/lib/BaseViewer').BaseViewerOptions} BaseViewerOptions
|
|
159991
|
+
*/
|
|
159992
|
+
|
|
159993
|
+
/**
|
|
159994
|
+
* @param {BaseViewerOptions} options
|
|
159995
|
+
*/
|
|
159996
|
+
function Modeler(options = {}) {
|
|
159997
|
+
|
|
159998
|
+
options = {
|
|
159999
|
+
...options,
|
|
160000
|
+
moddleExtensions: {
|
|
160001
|
+
...commonModdleExtensions,
|
|
160002
|
+
...options.moddleExtensions
|
|
160003
|
+
},
|
|
160004
|
+
propertiesPanel: {
|
|
160005
|
+
tooltip: TooltipProvider$1,
|
|
160006
|
+
...options.propertiesPanel
|
|
160007
|
+
}
|
|
160008
|
+
};
|
|
160009
|
+
|
|
160010
|
+
this._addElementTemplateChooserModule(options);
|
|
160011
|
+
|
|
160012
|
+
Modeler$1.call(this, options);
|
|
160013
|
+
}
|
|
160014
|
+
|
|
160015
|
+
e$7(Modeler, Modeler$1);
|
|
160016
|
+
|
|
160017
|
+
Modeler.prototype._addElementTemplateChooserModule = function(options) {
|
|
160018
|
+
const { elementTemplateChooser } = options;
|
|
160019
|
+
|
|
160020
|
+
if (elementTemplateChooser !== false) {
|
|
160021
|
+
this._modules = [ ...this._modules, index$2 ];
|
|
160022
|
+
}
|
|
160023
|
+
};
|
|
160024
|
+
|
|
160025
|
+
Modeler.prototype._camundaCloudModules = [
|
|
160026
|
+
...commonModules,
|
|
160027
|
+
behaviorsModule,
|
|
160028
|
+
index$1$2,
|
|
160029
|
+
index$1$1,
|
|
160030
|
+
index$1,
|
|
160031
|
+
index,
|
|
160032
|
+
colorPickerModule,
|
|
160033
|
+
ZeebeVariableResolverModule,
|
|
160034
|
+
exampleDataPropertiesProviderModule,
|
|
160035
|
+
index$3
|
|
160036
|
+
];
|
|
160037
|
+
|
|
160038
|
+
Modeler.prototype._modules = [].concat(
|
|
160039
|
+
Modeler$1.prototype._modules,
|
|
160040
|
+
Modeler.prototype._camundaCloudModules
|
|
160041
160041
|
);
|
|
160042
160042
|
|
|
160043
160043
|
return Modeler;
|