@paroicms/public-admin-ui-lib 0.29.2 → 0.29.3
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": "@paroicms/public-admin-ui-lib",
|
|
3
|
-
"version": "0.29.
|
|
3
|
+
"version": "0.29.3",
|
|
4
4
|
"description": "Common utilitaries for paroicms plugins (admin UI side).",
|
|
5
5
|
"author": "Paroi Team",
|
|
6
6
|
"repository": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"type": "module",
|
|
13
|
-
"
|
|
13
|
+
"main": "dist/index.js",
|
|
14
14
|
"typings": "dist/index.d.ts",
|
|
15
15
|
"scripts": {
|
|
16
16
|
"build": "tsc",
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"dev": "tsc --watch --preserveWatchOutput"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@paroicms/public-anywhere-lib": "0.37.
|
|
21
|
+
"@paroicms/public-anywhere-lib": "0.37.1"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"rimraf": "~6.0.1",
|
|
25
|
-
"typescript": "~5.9.
|
|
25
|
+
"typescript": "~5.9.3"
|
|
26
26
|
},
|
|
27
27
|
"files": [
|
|
28
28
|
"dist",
|
|
@@ -58,7 +58,7 @@ export interface AdminUiPluginService {
|
|
|
58
58
|
/**
|
|
59
59
|
* Notice: it's not safe to use admin-ui image variant URLs in a rendered web page. Use these
|
|
60
60
|
* variants only in the admin-ui. Image variants for rendered web pages must be re-rendered
|
|
61
|
-
* from the backend every time the web page is re-rendered. Look at the
|
|
61
|
+
* from the backend every time the web page is re-rendered. Look at the Tiptap plugin for an
|
|
62
62
|
* example. If you need to use an image variant from the admin-ui in a rendered web page, then
|
|
63
63
|
* pick `useFTextImage`.
|
|
64
64
|
*/
|