camunda-bpmn-js 4.1.1 → 4.3.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.
@@ -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