@synerise/ds-utils 0.28.1 → 0.29.0

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,25 @@
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.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-utils@0.28.2...@synerise/ds-utils@0.29.0) (2024-09-03)
7
+
8
+
9
+ ### Features
10
+
11
+ * **storybook7:** added filter stories ([eb4f165](https://github.com/synerise/synerise-design/commit/eb4f165077eac361d4c4e4deab48842edd191825))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.28.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-utils@0.28.1...@synerise/ds-utils@0.28.2) (2024-08-06)
18
+
19
+ **Note:** Version bump only for package @synerise/ds-utils
20
+
21
+
22
+
23
+
24
+
6
25
  ## [0.28.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-utils@0.28.0...@synerise/ds-utils@0.28.1) (2024-07-31)
7
26
 
8
27
 
package/dist/index.d.ts CHANGED
@@ -19,3 +19,4 @@ export * from './useTraceUpdate';
19
19
  export * from './getPopupContainer';
20
20
  export declare const NOOP: () => void;
21
21
  export type { HandledEventsType } from './useOnClickOutside/useOnClickOutside';
22
+ export type { LiteralStringUnion } from './types/types';
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Allows creating a literal string union type with auto-completion in IDEs
3
+ */
4
+ export type LiteralStringUnion<T extends string> = T | (string & {});
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-utils",
3
- "version": "0.28.1",
3
+ "version": "0.29.0",
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.1",
35
+ "@synerise/ds-data-format": "^0.5.2",
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": "9780605713f2ee1cb62d79a8ab027058117c4e4a"
43
+ "gitHead": "6fe94d574f25c5267c7593dec9399527f441b23a"
44
44
  }