hazo_ui 2.3.0 → 2.3.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hazo_ui",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "Set of UI components for common interaction elements in a SaaS app",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -13,12 +13,17 @@
13
13
  "require": "./dist/index.cjs"
14
14
  },
15
15
  "./styles.css": "./dist/styles.css",
16
- "./tailwind-preset": "./tailwind.preset.js",
16
+ "./tailwind-preset": {
17
+ "types": "./tailwind.preset.d.ts",
18
+ "import": "./tailwind.preset.js",
19
+ "require": "./tailwind.preset.js"
20
+ },
17
21
  "./package.json": "./package.json"
18
22
  },
19
23
  "files": [
20
24
  "dist",
21
25
  "tailwind.preset.js",
26
+ "tailwind.preset.d.ts",
22
27
  "README.md"
23
28
  ],
24
29
  "scripts": {
@@ -0,0 +1,8 @@
1
+ /**
2
+ * hazo_ui Tailwind CSS Preset Type Declaration
3
+ */
4
+
5
+ import type { Config } from "tailwindcss";
6
+
7
+ declare const hazoUiPreset: Partial<Config>;
8
+ export default hazoUiPreset;