@synerise/ds-utils 0.29.1 → 0.29.2
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 +11 -0
- package/dist/index.d.ts +1 -1
- package/dist/types/types.d.ts +2 -0
- package/package.json +2 -2
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.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
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **table:** allow htmlattributes on cell divs ([f4cf677](https://github.com/synerise/synerise-design/commit/f4cf6773add2a4e8ce62dc83d42ae93f2c8d27b0))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.29.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-utils@0.29.0...@synerise/ds-utils@0.29.1) (2024-09-11)
|
|
7
18
|
|
|
8
19
|
|
package/dist/index.d.ts
CHANGED
|
@@ -20,4 +20,4 @@ export * from './useTraceUpdate';
|
|
|
20
20
|
export * from './getPopupContainer';
|
|
21
21
|
export declare const NOOP: () => void;
|
|
22
22
|
export type { HandledEventsType } from './useOnClickOutside/useOnClickOutside';
|
|
23
|
-
export type { LiteralStringUnion } from './types/types';
|
|
23
|
+
export type { LiteralStringUnion, WithHTMLAttributes } from './types/types';
|
package/dist/types/types.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
1
2
|
/**
|
|
2
3
|
* Allows creating a literal string union type with auto-completion in IDEs
|
|
3
4
|
*/
|
|
4
5
|
export type LiteralStringUnion<T extends string> = T | (string & {});
|
|
6
|
+
export type WithHTMLAttributes<ElementType extends HTMLElement, BaseType> = BaseType & Omit<HTMLAttributes<ElementType>, keyof BaseType>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-utils",
|
|
3
|
-
"version": "0.29.
|
|
3
|
+
"version": "0.29.2",
|
|
4
4
|
"description": "Utils UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -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": "6f3231e4a9e0720ffee61b748488cecd590da6e6"
|
|
44
44
|
}
|