@ng-atomic/common 19.86.1 → 19.122.1

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.
@@ -60,7 +60,7 @@ class ActiveControlEventHandlers {
60
60
  return;
61
61
  }
62
62
  if (this.isActive()) {
63
- this.setActive(false);
63
+ setTimeout(() => this.setActive(false), 0);
64
64
  }
65
65
  };
66
66
  this.addEventListener(window, 'mouseup', mouseupHandler, { capture: true });
@@ -194,7 +194,7 @@ class ActiveControlEventHandlers {
194
194
  return;
195
195
  }
196
196
  if (this.isActive()) {
197
- this.setActive(false);
197
+ setTimeout(() => this.setActive(false), 0);
198
198
  }
199
199
  };
200
200
  this.addEventListener(window, 'mouseup', mouseupHandler, { capture: true });
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@ng-atomic/common",
3
- "version": "19.86.1",
3
+ "version": "19.122.1",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
- "@nx-ddd/core": "19.86.1",
7
- "@nx-ddd/common": "19.86.1"
6
+ "@nx-ddd/core": "19.122.1",
7
+ "@nx-ddd/common": "19.122.1"
8
8
  },
9
9
  "dependencies": {
10
10
  "tslib": "^2.3.0"
@@ -56,6 +56,7 @@ interface ActionField extends BaseField {
56
56
  }
57
57
  interface AgreementField {
58
58
  type: 'agreement';
59
+ label?: string;
59
60
  labelTemp: null | any;
60
61
  }
61
62
  interface SliderField extends BaseField {