quickflex 1.0.2 → 1.0.4

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/README.md CHANGED
@@ -155,4 +155,4 @@ You can find the source code at: [GitHub Repo](https://github.com/Khurshida-Meem
155
155
 
156
156
  ## License
157
157
 
158
- QuickFlex is [MIT licensed](./LICENSE).
158
+ QuickFlex is [MIT licensed](./LICENSE.md).
@@ -1,4 +1,3 @@
1
- import { CSSProperties } from "react";
2
1
  export interface QuickFlexProps {
3
2
  justify?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
4
3
  align?: "stretch" | "flex-start" | "flex-end" | "center" | "baseline";
@@ -6,5 +5,5 @@ export interface QuickFlexProps {
6
5
  wrap?: "nowrap" | "wrap" | "wrap-reverse";
7
6
  gap?: string;
8
7
  className?: string;
9
- style?: CSSProperties;
8
+ style?: any;
10
9
  }
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "quickflex",
3
- "version": "1.0.2",
4
- "main": "index.js",
3
+ "version": "1.0.4",
4
+ "main": "dist/index.cjs.js",
5
+ "module": "dist/index.esm.js",
6
+ "types": "dist/index.d.ts",
5
7
  "scripts": {
6
8
  "test": "echo \"Error: no test specified\" && exit 1",
7
9
  "build": "rollup -c"