camunda-bpmn-js 4.1.1 → 4.2.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.
|
@@ -123556,7 +123556,7 @@
|
|
|
123556
123556
|
};
|
|
123557
123557
|
|
|
123558
123558
|
/* eslint-disable react-hooks/rules-of-hooks */
|
|
123559
|
-
const TooltipProvider = {
|
|
123559
|
+
const TooltipProvider$1 = {
|
|
123560
123560
|
'group-assignmentDefinition': element => {
|
|
123561
123561
|
const translate = useService$1('translate');
|
|
123562
123562
|
return u("div", {
|
|
@@ -159986,9 +159986,9 @@
|
|
|
159986
159986
|
...options.moddleExtensions
|
|
159987
159987
|
},
|
|
159988
159988
|
propertiesPanel: {
|
|
159989
|
-
tooltip: TooltipProvider,
|
|
159989
|
+
tooltip: TooltipProvider$1,
|
|
159990
159990
|
...options.propertiesPanel
|
|
159991
|
-
}
|
|
159991
|
+
}
|
|
159992
159992
|
};
|
|
159993
159993
|
|
|
159994
159994
|
this._addElementTemplateChooserModule(options);
|
|
@@ -118043,6 +118043,24 @@
|
|
|
118043
118043
|
camundaPlatformPropertiesProvider: ['type', CamundaPlatformPropertiesProvider]
|
|
118044
118044
|
};
|
|
118045
118045
|
|
|
118046
|
+
/* eslint-disable react-hooks/rules-of-hooks */
|
|
118047
|
+
|
|
118048
|
+
const TooltipProvider = {
|
|
118049
|
+
'historyTimeToLive': element => {
|
|
118050
|
+
const translate = useService('translate');
|
|
118051
|
+
return u("div", {
|
|
118052
|
+
children: u("p", {
|
|
118053
|
+
children: [translate('Number of days before this resource is being cleaned up. If specified, takes precedence over the engine configuration.'), ' ', u("a", {
|
|
118054
|
+
href: "https://docs.camunda.org/manual/latest/user-guide/process-engine/history/",
|
|
118055
|
+
target: "_blank",
|
|
118056
|
+
rel: "noopener",
|
|
118057
|
+
children: translate('Learn more.')
|
|
118058
|
+
})]
|
|
118059
|
+
})
|
|
118060
|
+
});
|
|
118061
|
+
}
|
|
118062
|
+
};
|
|
118063
|
+
|
|
118046
118064
|
/**
|
|
118047
118065
|
* @typedef {import('bpmn-js/lib/BaseViewer').BaseViewerOptions} BaseViewerOptions
|
|
118048
118066
|
*
|
|
@@ -134621,6 +134639,10 @@
|
|
|
134621
134639
|
moddleExtensions: {
|
|
134622
134640
|
...commonModdleExtensions,
|
|
134623
134641
|
...options.moddleExtensions
|
|
134642
|
+
},
|
|
134643
|
+
propertiesPanel: {
|
|
134644
|
+
tooltip: TooltipProvider,
|
|
134645
|
+
...options.propertiesPanel
|
|
134624
134646
|
}
|
|
134625
134647
|
};
|
|
134626
134648
|
|