@aic-kits/react 0.15.3 → 0.15.5

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.
@@ -60,8 +60,4 @@ export interface ButtonProps extends BoxProps {
60
60
  * Button text.
61
61
  */
62
62
  text: React.ReactNode;
63
- /**
64
- * For flex layout
65
- */
66
- flex?: number | string;
67
63
  }
@@ -1,3 +1,4 @@
1
1
  export * from './useMediaQuery';
2
2
  export * from './usePrevious';
3
3
  export * from './useResponsiveBreakpoint';
4
+ export * from './useWindowDimensions';
@@ -0,0 +1,4 @@
1
+ export default function useWindowDimensions(): {
2
+ width: number;
3
+ height: number;
4
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aic-kits/react",
3
- "version": "0.15.3",
3
+ "version": "0.15.5",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -46,5 +46,5 @@
46
46
  "vite-plugin-dts": "^4.3.0",
47
47
  "vitest": "^2.1.8"
48
48
  },
49
- "gitHead": "43783d549819ab43b1a0e52f9f069dbc6b977f90"
49
+ "gitHead": "9632993c89f04f0dd6489a6ef11e304b4bea793b"
50
50
  }