@lumx/core 4.19.1-alpha.0 → 4.19.1-alpha.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.
@@ -2,4 +2,7 @@
2
2
  * Wrap `fn` so that, no matter how many times the returned function is called within the same
3
3
  * microtask cycle, `fn` only runs once at the end of that cycle.
4
4
  */
5
- export declare function debounceMicrotask(fn: () => void): () => void;
5
+ export declare function debounceMicrotask(fn: () => void): {
6
+ (): void;
7
+ cancel(): void;
8
+ };
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  },
8
8
  "dependencies": {
9
9
  "@floating-ui/dom": "^1.7.5",
10
- "@lumx/icons": "^4.19.1-alpha.0",
10
+ "@lumx/icons": "^4.19.1-alpha.1",
11
11
  "classnames": "^2.3.2",
12
12
  "focus-visible": "^5.0.2",
13
13
  "lodash": "4.18.1",
@@ -66,7 +66,7 @@
66
66
  "update-version-changelog": "yarn version-changelog ../../CHANGELOG.md"
67
67
  },
68
68
  "sideEffects": false,
69
- "version": "4.19.1-alpha.0",
69
+ "version": "4.19.1-alpha.1",
70
70
  "devDependencies": {
71
71
  "@rollup/plugin-typescript": "^12.3.0",
72
72
  "@testing-library/dom": "^10.4.1",