@energycap/components 0.37.5-ECAP-18945-record-view-mask.20230905-1026 → 0.37.5-ECAP-19214-page-view-action-dropdown-z-index-fix.20230905-1633

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.
@@ -86,12 +86,6 @@ export interface DialogOptions {
86
86
  displayAsPanel?: boolean;
87
87
  /** Set the dialog mask color to transparent. Defaults to true when dialog is displayed as a panel */
88
88
  transparentMask?: boolean;
89
- /**
90
- * Set the dialog mask to not display at all. Allows the user to click on elements behind the dialog.
91
- * Only applicable when displayAsPanel is true.
92
- * Defaults to false.
93
- */
94
- noMask?: boolean;
95
89
  /** Align the dialog window to the top instead of centered. */
96
90
  alignToTop?: boolean;
97
91
  /**
@@ -32,22 +32,11 @@ export declare class DialogComponent {
32
32
  displayAsPanel: boolean;
33
33
  alignToTop: boolean;
34
34
  transparentMask: boolean;
35
- noMask: boolean;
36
35
  onOverlayClick(event: MouseEvent): void;
37
36
  /**
38
37
  * Defines the width of the dialog (height is auto). Can be a number that will be converted to pixels, or xsmall(320px), small(480px), medium(640px), or large(1024px)
39
38
  */
40
- set size(value: DialogSize);
41
- get size(): DialogSize;
42
- /**
43
- * Defines the width of the dialog (height is auto). Can be a number that will be converted to pixels, or xsmall(320px), small(480px), medium(640px), or large(1024px)
44
- */
45
- private _size;
46
- /**
47
- * Bound to the host. The classes set the --ec-dialog-width variable to our default 'small', 'medium', etc. sizes.
48
- * Undefined when the size is a number, which is used for custom sizes.
49
- */
50
- dialogSizeClass?: string;
39
+ size: DialogSize;
51
40
  content?: Type<DialogContent<any>> | TemplateRef<any>;
52
41
  context?: any;
53
42
  options?: DialogOptions;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@energycap/components",
3
- "version": "0.37.5-ECAP-18945-record-view-mask.20230905-1026",
3
+ "version": "0.37.5-ECAP-19214-page-view-action-dropdown-z-index-fix.20230905-1633",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },
@@ -65,7 +65,6 @@ $dialog-widths: (
65
65
  min-height: $dialog-min-height;
66
66
  max-height: $dialog-max-height;
67
67
  max-width: $dialog-max-width;
68
- width: var(--ec-dialog-width);
69
68
  }
70
69
 
71
70
  @mixin dialog-open {
@@ -90,7 +89,7 @@ $dialog-widths: (
90
89
  @mixin dialog-sizes($selector-prefix) {
91
90
  @each $width, $value in $dialog-widths {
92
91
  #{$selector-prefix}-#{$width} {
93
- --ec-dialog-width: #{$value};
92
+ width: $value;
94
93
  }
95
94
  }
96
95
  }