@dbx-tools/ui-appkit 0.3.13 → 0.3.15

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/vite.ts +2 -0
package/package.json CHANGED
@@ -21,15 +21,15 @@
21
21
  "react-dom": "^19.2.4",
22
22
  "streamdown": "^2.5.0",
23
23
  "tailwindcss": "^4.3.2",
24
- "@dbx-tools/shared-core": "0.3.13",
25
- "@dbx-tools/ui-branding": "0.3.13"
24
+ "@dbx-tools/shared-core": "0.3.15",
25
+ "@dbx-tools/ui-branding": "0.3.15"
26
26
  },
27
27
  "main": "index.ts",
28
28
  "license": "UNLICENSED",
29
29
  "publishConfig": {
30
30
  "access": "public"
31
31
  },
32
- "version": "0.3.13",
32
+ "version": "0.3.15",
33
33
  "types": "index.ts",
34
34
  "type": "module",
35
35
  "exports": {
package/src/vite.ts CHANGED
@@ -2,6 +2,8 @@
2
2
  * Default Vite plugins for host apps building `@dbx-tools/*` UI packages.
3
3
  * Import from `@dbx-tools/ui-appkit/vite` so Tailwind and React refresh resolve
4
4
  * from this package's dependencies, not the host's.
5
+ *
6
+ * @module
5
7
  */
6
8
  import tailwindcss from "@tailwindcss/vite";
7
9
  import react from "@vitejs/plugin-react";