reykit 1.0.124 → 1.0.126

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.
@@ -65,3 +65,10 @@ export declare class Storager<Data extends Record<string, any>> {
65
65
  */
66
66
  toggle<K extends KeyByValue<Data, boolean>>(key: K): void;
67
67
  }
68
+ /**
69
+ * Browser download file from blob data.
70
+ *
71
+ * @param obj - Data or string of with data.
72
+ * @param fileName - File name.
73
+ */
74
+ export declare function downloadFile(obj: Blob | string, fileName?: string): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reykit",
3
- "version": "1.0.124",
3
+ "version": "1.0.126",
4
4
  "description": "Kit method set.",
5
5
  "author": "reyxbo",
6
6
  "keywords": [
@@ -53,6 +53,7 @@
53
53
  "input-otp": "^1.4.2",
54
54
  "lucide-react": "^0.575.0",
55
55
  "next-themes": "^0.4.6",
56
+ "qrcode": "^1.5.4",
56
57
  "radix-ui": "^1.4.3",
57
58
  "react": "19.2.4",
58
59
  "react-day-picker": "^9.13.2",
@@ -68,6 +69,7 @@
68
69
  "vite-plugin-dts": "^4.5.4"
69
70
  },
70
71
  "devDependencies": {
72
+ "@types/qrcode": "^1.5.6",
71
73
  "shadcn": "^3.8.5",
72
74
  "tw-animate-css": "^1.4.0"
73
75
  }