@mittwald/flow-react-components 0.1.0-alpha.354 → 0.1.0-alpha.355

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,19 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.1.0-alpha.355](https://github.com/mittwald/flow/compare/0.1.0-alpha.354...0.1.0-alpha.355) (2024-11-26)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **List:** list item without action should not have a hover effect
11
+ ([#999](https://github.com/mittwald/flow/issues/999))
12
+ ([2dc94b8](https://github.com/mittwald/flow/commit/2dc94b8b9da0c207e38186e65c2693c1e31a5bf1))
13
+
14
+ # Change Log
15
+
16
+ All notable changes to this project will be documented in this file. See
17
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
18
+
6
19
  # [0.1.0-alpha.354](https://github.com/mittwald/flow/compare/0.1.0-alpha.353...0.1.0-alpha.354) (2024-11-25)
7
20
 
8
21
  ### Bug Fixes
package/dist/js/List.js CHANGED
@@ -1032,9 +1032,9 @@ const Ms = "flow--list--items", xs = "flow--list--items--is-loading", ve = {
1032
1032
  }, [l, c, u.current, m]), !m)
1033
1033
  return {
1034
1034
  gridItemProps: {
1035
- onAction: () => {
1035
+ onAction: o ? () => {
1036
1036
  o == null || o(e);
1037
- }
1037
+ } : void 0
1038
1038
  },
1039
1039
  children: E
1040
1040
  };
@@ -4,7 +4,7 @@ interface P extends PropsWithChildren {
4
4
  }
5
5
  export declare const useGridItemProps: (props: P) => {
6
6
  gridItemProps: {
7
- onAction: () => void;
7
+ onAction: (() => void) | undefined;
8
8
  ref?: undefined;
9
9
  };
10
10
  children: React.ReactNode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/flow-react-components",
3
- "version": "0.1.0-alpha.354",
3
+ "version": "0.1.0-alpha.355",
4
4
  "type": "module",
5
5
  "description": "A React implementation of Flow, mittwald’s design system",
6
6
  "homepage": "https://mittwald.github.io/flow",
@@ -420,7 +420,7 @@
420
420
  "@chakra-ui/live-region": "^2.1.0",
421
421
  "@internationalized/date": "^3.5.6",
422
422
  "@internationalized/string-compiler": "^3.2.5",
423
- "@mittwald/react-tunnel": "^0.1.0-alpha.354",
423
+ "@mittwald/react-tunnel": "^0.1.0-alpha.355",
424
424
  "@mittwald/react-use-promise": "^2.5.0",
425
425
  "@react-aria/form": "^3.0.10",
426
426
  "@react-aria/utils": "^3.25.3",
@@ -451,7 +451,7 @@
451
451
  },
452
452
  "devDependencies": {
453
453
  "@faker-js/faker": "^9.0.3",
454
- "@mittwald/flow-design-tokens": "^0.1.0-alpha.354",
454
+ "@mittwald/flow-design-tokens": "^0.1.0-alpha.355",
455
455
  "@mittwald/react-use-promise": "^2.5.0",
456
456
  "@nx/storybook": "^20.0.0",
457
457
  "@storybook/addon-a11y": "^8.3.5",
@@ -546,5 +546,5 @@
546
546
  }
547
547
  }
548
548
  },
549
- "gitHead": "5462b4f7a82fbe726dc037ab91316ea451afcfbe"
549
+ "gitHead": "ad53b4048d7af6811c85c6452049c913bd479554"
550
550
  }