@pingux/astro 2.37.0-alpha.5 → 2.37.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.
@@ -27,6 +27,7 @@ var mockCopyText = 'test';
27
27
  var originalClipboard = _objectSpread({}, global.navigator.clipboard);
28
28
  var originalExecCommand = global.document.execCommand;
29
29
  beforeEach(function () {
30
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
30
31
  global.navigator.clipboard = {
31
32
  writeText: jest.fn()
32
33
  };
@@ -36,6 +37,7 @@ beforeEach(function () {
36
37
  });
37
38
  afterEach(function () {
38
39
  jest.resetAllMocks();
40
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
39
41
  global.navigator.clipboard = originalClipboard;
40
42
  global.document.execCommand = originalExecCommand;
41
43
  });
@@ -24,6 +24,7 @@ var mockCopyText = 'test';
24
24
  var originalClipboard = _objectSpread({}, global.navigator.clipboard);
25
25
  var originalExecCommand = global.document.execCommand;
26
26
  beforeEach(function () {
27
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
27
28
  global.navigator.clipboard = {
28
29
  writeText: jest.fn()
29
30
  };
@@ -33,6 +34,7 @@ beforeEach(function () {
33
34
  });
34
35
  afterEach(function () {
35
36
  jest.resetAllMocks();
37
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
36
38
  global.navigator.clipboard = originalClipboard;
37
39
  global.document.execCommand = originalExecCommand;
38
40
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "2.37.0-alpha.5",
3
+ "version": "2.37.0",
4
4
  "description": "React component library for Ping Identity's design system",
5
5
  "repository": {
6
6
  "type": "git",