@iobroker/dm-utils 0.6.8 → 0.6.9

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/README.md CHANGED
@@ -295,6 +295,10 @@ This method returns a promise that resolves to a `ProgressDialog` object.
295
295
  ### **WORK IN PROGRESS**
296
296
  -->
297
297
  ## Changelog
298
+ ### 0.6.9 (2024-11-22)
299
+
300
+ * (@GermanBluefox) Added max-width option for form
301
+
298
302
  ### 0.6.8 (2024-11-22)
299
303
 
300
304
  * (@GermanBluefox) Allow grouping of devices
@@ -7,6 +7,7 @@ export interface ActionContext {
7
7
  data?: JsonFormData;
8
8
  title?: ioBroker.StringOrTranslated;
9
9
  buttons?: (ActionButton | 'apply' | 'cancel')[];
10
+ maxWidth?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
10
11
  }): Promise<JsonFormData | undefined>;
11
12
  openProgress(title: string, options?: {
12
13
  indeterminate?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iobroker/dm-utils",
3
- "version": "0.6.8",
3
+ "version": "0.6.9",
4
4
  "description": "ioBroker Device Manager utilities for backend",
5
5
  "main": "build/index.js",
6
6
  "publishConfig": {