@dyrected/admin 1.0.5 → 1.0.9

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/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @dyrected/admin
2
2
 
3
+ ## 1.0.9
4
+
5
+ ### Patch Changes
6
+
7
+ - d8e1f29: bump package versions and update export conditions for admin package
8
+ - Updated dependencies [d8e1f29]
9
+ - @dyrected/core@1.0.9
10
+ - @dyrected/sdk@1.0.9
11
+
12
+ ## 1.0.6
13
+
14
+ ### Patch Changes
15
+
16
+ - Add functional exports for all database and storage adapters (e.g., mongodbAdapter, sqliteAdapter, s3Storage) to provide a more ergonomic API and fix runtime re-attachment errors in Nuxt.
17
+ - Updated dependencies
18
+ - @dyrected/core@1.0.7
19
+ - @dyrected/sdk@1.0.5
20
+
3
21
  ## 1.0.5
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dyrected/admin",
3
- "version": "1.0.5",
3
+ "version": "1.0.9",
4
4
  "type": "module",
5
5
  "main": "./dist/index.mjs",
6
6
  "module": "./dist/index.mjs",
@@ -8,7 +8,9 @@
8
8
  "exports": {
9
9
  ".": {
10
10
  "types": "./dist/index.d.ts",
11
- "import": "./dist/index.mjs"
11
+ "import": "./dist/index.mjs",
12
+ "browser": "./dist/index.mjs",
13
+ "default": "./dist/index.mjs"
12
14
  },
13
15
  "./styles": "./dist/admin.css"
14
16
  },
@@ -58,8 +60,8 @@
58
60
  "tailwind-merge": "^3.5.0",
59
61
  "tailwindcss-animate": "^1.0.7",
60
62
  "zod": "^3.25.76",
61
- "@dyrected/sdk": "^1.0.4",
62
- "@dyrected/core": "^1.0.6"
63
+ "@dyrected/core": "^1.0.9",
64
+ "@dyrected/sdk": "^1.0.9"
63
65
  },
64
66
  "devDependencies": {
65
67
  "@eslint/js": "^10.0.1",
package/tsconfig.app.json CHANGED
@@ -7,8 +7,7 @@
7
7
  "types": ["vite/client"],
8
8
  "skipLibCheck": true,
9
9
  "paths": {
10
- "@/*": ["./src/*"],
11
- "@dyrected/core": ["../core/src/index.ts"]
10
+ "@/*": ["./src/*"]
12
11
  },
13
12
 
14
13
  /* Bundler mode */
@@ -6,9 +6,7 @@
6
6
  "module": "esnext",
7
7
  "types": ["node"],
8
8
  "skipLibCheck": true,
9
- "paths": {
10
- "@dyrected/core": ["../core/src/index.ts"]
11
- },
9
+ "paths": {},
12
10
 
13
11
  /* Bundler mode */
14
12
  "moduleResolution": "bundler",