@anvilkit/plugin-asset-manager 0.1.8 → 0.1.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/README.md +2 -2
- package/dist/version.cjs +1 -1
- package/dist/version.d.cts +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/meta/config.json +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @anvilkit/plugin-asset-manager
|
|
2
2
|
|
|
3
|
-
> **Alpha (`0.1.
|
|
3
|
+
> **Alpha (`0.1.9`).** Public surface may still shift before `v1.0`. Bundle budgets enforced in CI: headless entry ≤ 8 KB gzip, UI subpath ≤ 12 KB gzip, Unsplash subpath ≤ 4 KB gzip.
|
|
4
4
|
|
|
5
5
|
Headless asset manager plugin for Anvilkit Studio. The host provides the upload backend; the plugin handles validation, registration, search, IR-time resolution, CSP guidance, and (optionally) a React UI for the upload + browse experience. Designed for pluggable production backends (S3, GCS, custom HTTP) with strict trust-boundary enforcement on every adapter response.
|
|
6
6
|
|
|
@@ -10,7 +10,7 @@ Headless asset manager plugin for Anvilkit Studio. The host provides the upload
|
|
|
10
10
|
pnpm add @anvilkit/plugin-asset-manager @anvilkit/core react react-dom @puckeditor/core
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Non-optional peers: `react >=19.0.0`, `react-dom >=19.0.0`, `@puckeditor/core ^0.21.
|
|
13
|
+
Non-optional peers: `react >=19.0.0`, `react-dom >=19.0.0`, `@puckeditor/core ^0.21.3`.
|
|
14
14
|
|
|
15
15
|
Subpath imports:
|
|
16
16
|
|
package/dist/version.cjs
CHANGED
|
@@ -27,7 +27,7 @@ var __webpack_require__ = {};
|
|
|
27
27
|
})();
|
|
28
28
|
var __webpack_exports__ = {};
|
|
29
29
|
__webpack_require__.r(__webpack_exports__);
|
|
30
|
-
const ASSET_MANAGER_VERSION = "0.1.
|
|
30
|
+
const ASSET_MANAGER_VERSION = "0.1.9";
|
|
31
31
|
__webpack_require__.d(__webpack_exports__, {}, {
|
|
32
32
|
ASSET_MANAGER_VERSION: ASSET_MANAGER_VERSION
|
|
33
33
|
});
|
package/dist/version.d.cts
CHANGED
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
* constant ships only the version. Mirrors `@anvilkit/core`'s
|
|
17
17
|
* `runtime/version.ts`, which makes the same call.
|
|
18
18
|
*/
|
|
19
|
-
export declare const ASSET_MANAGER_VERSION = "0.1.
|
|
19
|
+
export declare const ASSET_MANAGER_VERSION = "0.1.9";
|
|
20
20
|
//# sourceMappingURL=version.d.cts.map
|
package/dist/version.d.ts
CHANGED
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
* constant ships only the version. Mirrors `@anvilkit/core`'s
|
|
17
17
|
* `runtime/version.ts`, which makes the same call.
|
|
18
18
|
*/
|
|
19
|
-
export declare const ASSET_MANAGER_VERSION = "0.1.
|
|
19
|
+
export declare const ASSET_MANAGER_VERSION = "0.1.9";
|
|
20
20
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const ASSET_MANAGER_VERSION = "0.1.
|
|
1
|
+
const ASSET_MANAGER_VERSION = "0.1.9";
|
|
2
2
|
export { ASSET_MANAGER_VERSION };
|
package/meta/config.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "anvilkit-plugin-asset-manager",
|
|
3
3
|
"name": "Asset Manager",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.9",
|
|
5
5
|
"coreVersion": "^0.1.0-alpha",
|
|
6
6
|
"description": "Headless asset upload plugin with host-provided persistence and a separate React UI subpath.",
|
|
7
7
|
"capabilities": { "header": true }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anvilkit/plugin-asset-manager",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "Headless asset manager plugin for Anvilkit Studio with host-provided uploads and optional React UI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"access": "public"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
|
-
"@puckeditor/core": "^0.21.
|
|
83
|
+
"@puckeditor/core": "^0.21.3",
|
|
84
84
|
"react": ">=19.2.0",
|
|
85
85
|
"react-dom": ">=19.2.0"
|
|
86
86
|
},
|
|
@@ -97,13 +97,13 @@
|
|
|
97
97
|
},
|
|
98
98
|
"dependencies": {
|
|
99
99
|
"lucide-react": "^1.16.0",
|
|
100
|
-
"@anvilkit/core": "0.1.
|
|
100
|
+
"@anvilkit/core": "0.1.16",
|
|
101
101
|
"@anvilkit/ir": "0.1.15",
|
|
102
102
|
"@anvilkit/ui": "0.1.15",
|
|
103
103
|
"@anvilkit/utils": "0.1.15"
|
|
104
104
|
},
|
|
105
105
|
"devDependencies": {
|
|
106
|
-
"@puckeditor/core": "^0.21.
|
|
106
|
+
"@puckeditor/core": "^0.21.3",
|
|
107
107
|
"@rslib/core": "^0.22.0",
|
|
108
108
|
"@types/node": "^25.9.1",
|
|
109
109
|
"@types/react": "^19.2.14",
|