@synerise/ds-utils 0.29.2 → 0.29.3
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 +8 -0
- package/dist/doubleClickListener/doubleClickListener.d.ts +1 -1
- package/dist/testing/renderWithProvider/renderWithProvider.d.ts +1 -1
- package/dist/testing/renderWithProvider/renderWithProvider.js +1 -1
- package/dist/useBreakpoint/useBreakpoint.js +1 -1
- package/dist/useCombinedRefs/useCombinedRefs.d.ts +1 -1
- package/dist/useCombinedRefs/useCombinedRefs.js +1 -1
- package/dist/usePrevious/usePrevious.js +1 -1
- package/dist/useResize/useResize.d.ts +1 -1
- package/dist/useResize/useResize.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.29.3](https://github.com/synerise/synerise-design/compare/@synerise/ds-utils@0.29.2...@synerise/ds-utils@0.29.3) (2024-09-17)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-utils
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.29.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-utils@0.29.1...@synerise/ds-utils@0.29.2) (2024-09-13)
|
|
7
15
|
|
|
8
16
|
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
2
|
declare function doubleClickListener<T extends any>(onClick: (e: React.SyntheticEvent<T>) => void, onDblClick: (e: React.SyntheticEvent<T>) => void, delay?: number): React.ReactEventHandler<T>;
|
|
3
3
|
export default doubleClickListener;
|
|
@@ -6,7 +6,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
|
|
|
6
6
|
|
|
7
7
|
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
8
8
|
|
|
9
|
-
import
|
|
9
|
+
import React from 'react';
|
|
10
10
|
import { render } from '@testing-library/react';
|
|
11
11
|
import { DSProvider } from '@synerise/ds-core';
|
|
12
12
|
import { getDataFormatConfigFromNotation } from '@synerise/ds-data-format';
|
|
@@ -4,7 +4,7 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
|
|
|
4
4
|
|
|
5
5
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
6
6
|
|
|
7
|
-
import
|
|
7
|
+
import React from 'react';
|
|
8
8
|
var BREAKPOINTS = {
|
|
9
9
|
xxl: {
|
|
10
10
|
max: Infinity,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-utils",
|
|
3
|
-
"version": "0.29.
|
|
3
|
+
"version": "0.29.3",
|
|
4
4
|
"description": "Utils UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
],
|
|
33
33
|
"types": "dist/index.d.ts",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@synerise/ds-data-format": "^0.5.
|
|
35
|
+
"@synerise/ds-data-format": "^0.5.3",
|
|
36
36
|
"latinize": "^0.5.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"react": ">=16.9.0 <= 17.0.2",
|
|
41
41
|
"styled-components": "5.0.1"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "ae3c38b44ca0f9071cd55f7b82c182a99b5710e8"
|
|
44
44
|
}
|