@synerise/ds-utils 0.21.3 → 0.21.4

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.21.4](https://github.com/synerise/synerise-design/compare/@synerise/ds-utils@0.21.3...@synerise/ds-utils@0.21.4) (2021-11-23)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **core:** fix exporting types ([65531bf](https://github.com/synerise/synerise-design/commit/65531bf5da1915f8f2c8f856ccd2318375c6a2c3))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [0.21.3](https://github.com/synerise/synerise-design/compare/@synerise/ds-utils@0.21.2...@synerise/ds-utils@0.21.3) (2021-11-22)
7
18
 
8
19
  **Note:** Version bump only for package @synerise/ds-utils
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export { default as hexToRgba } from './hexToRgba/hexToRgba';
2
2
  export { default as toCamelCase } from './toCamelCase/toCamelCase';
3
- export * from './useOnClickOutside/useOnClickOutside';
3
+ export { useOnClickOutside } from './useOnClickOutside/useOnClickOutside';
4
4
  export { default as selectColorByLetter } from './selectColorByLetter/selectColorByLetter';
5
5
  export { default as focusWithArrowKeys } from './focusWithArrowKeys/focusWithArrowKeys';
6
6
  export { default as escapeRegEx } from './regex/regex';
@@ -11,3 +11,4 @@ export { default as useCombinedRefs } from './useCombinedRefs/useCombinedRefs';
11
11
  export * from './useTraceUpdate';
12
12
  export * from './getPopupContainer';
13
13
  export declare const NOOP: () => void;
14
+ export type { HandledEventsType } from './useOnClickOutside/useOnClickOutside';
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  export { default as hexToRgba } from './hexToRgba/hexToRgba';
2
2
  export { default as toCamelCase } from './toCamelCase/toCamelCase';
3
- export * from './useOnClickOutside/useOnClickOutside';
3
+ export { useOnClickOutside } from './useOnClickOutside/useOnClickOutside';
4
4
  export { default as selectColorByLetter } from './selectColorByLetter/selectColorByLetter';
5
5
  export { default as focusWithArrowKeys } from './focusWithArrowKeys/focusWithArrowKeys';
6
6
  export { default as escapeRegEx } from './regex/regex';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-utils",
3
- "version": "0.21.3",
3
+ "version": "0.21.4",
4
4
  "description": "Utils UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -39,5 +39,5 @@
39
39
  "devDependencies": {
40
40
  "@synerise/ds-core": "^0.31.2"
41
41
  },
42
- "gitHead": "2468359677783819939fb9f1ef5acc36667ecd1a"
42
+ "gitHead": "3e5f807c3c9ce7bbcb707b1e229ad5d7ef50d830"
43
43
  }