@synerise/ds-utils 0.21.3 → 0.21.6

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,36 @@
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.6](https://github.com/synerise/synerise-design/compare/@synerise/ds-utils@0.21.5...@synerise/ds-utils@0.21.6) (2022-03-14)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-utils
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.21.5](https://github.com/synerise/synerise-design/compare/@synerise/ds-utils@0.21.4...@synerise/ds-utils@0.21.5) (2021-12-29)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **table:** fixes sorting ([8042c70](https://github.com/synerise/synerise-design/commit/8042c70e131be15ad8cb30e771d0c5b695647b8d))
20
+
21
+
22
+
23
+
24
+
25
+ ## [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)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * **core:** fix exporting types ([65531bf](https://github.com/synerise/synerise-design/commit/65531bf5da1915f8f2c8f856ccd2318375c6a2c3))
31
+
32
+
33
+
34
+
35
+
6
36
  ## [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
37
 
8
38
  **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';
@@ -8,6 +8,8 @@ export { default as doubleClickListener } from './doubleClickListener/doubleClic
8
8
  export { default as useResize } from './useResize/useResize';
9
9
  export { default as useBreakpoint } from './useBreakpoint/useBreakpoint';
10
10
  export { default as useCombinedRefs } from './useCombinedRefs/useCombinedRefs';
11
+ export { default as usePrevious } from './usePrevious/usePrevious';
11
12
  export * from './useTraceUpdate';
12
13
  export * from './getPopupContainer';
13
14
  export declare const NOOP: () => void;
15
+ 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';
@@ -8,6 +8,7 @@ export { default as doubleClickListener } from './doubleClickListener/doubleClic
8
8
  export { default as useResize } from './useResize/useResize';
9
9
  export { default as useBreakpoint } from './useBreakpoint/useBreakpoint';
10
10
  export { default as useCombinedRefs } from './useCombinedRefs/useCombinedRefs';
11
+ export { default as usePrevious } from './usePrevious/usePrevious';
11
12
  export * from './useTraceUpdate';
12
13
  export * from './getPopupContainer'; // eslint-disable-next-line @typescript-eslint/no-empty-function
13
14
 
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.6",
4
4
  "description": "Utils UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -37,7 +37,7 @@
37
37
  "react": ">=16.9.0 < 17.0.0"
38
38
  },
39
39
  "devDependencies": {
40
- "@synerise/ds-core": "^0.31.2"
40
+ "@synerise/ds-core": "^0.31.3"
41
41
  },
42
- "gitHead": "2468359677783819939fb9f1ef5acc36667ecd1a"
42
+ "gitHead": "739b52320bb20c1646371224de5bb0c3454fac8c"
43
43
  }