@paroicms/public-admin-ui-lib 0.29.2 → 0.29.4

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.2",
3
+ "version": "0.29.4",
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
- "module": "dist/index.js",
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.0"
21
+ "@paroicms/public-anywhere-lib": "0.37.2"
22
22
  },
23
23
  "devDependencies": {
24
24
  "rimraf": "~6.0.1",
25
- "typescript": "~5.9.2"
25
+ "typescript": "~5.9.3"
26
26
  },
27
27
  "files": [
28
28
  "dist",
@@ -17,8 +17,9 @@ export type AdminUiPlugin = {
17
17
 
18
18
  export interface AdminUiPluginInitService {
19
19
  logger: AdminUiLogger;
20
- themeConf: ThemeConf;
20
+ fqdn: string;
21
21
  publicSiteUrl: string;
22
+ themeConf: ThemeConf;
22
23
  configuration: {
23
24
  [key: string]: unknown;
24
25
  };
@@ -47,9 +48,10 @@ export interface AdminUiPluginInstance {
47
48
  }
48
49
 
49
50
  export interface AdminUiPluginService {
50
- themeConf: ThemeConf;
51
- publicSiteUrl: string;
52
51
  logger: AdminUiLogger;
52
+ fqdn: string;
53
+ publicSiteUrl: string;
54
+ themeConf: ThemeConf;
53
55
  configuration: {
54
56
  [key: string]: unknown;
55
57
  };
@@ -58,7 +60,7 @@ export interface AdminUiPluginService {
58
60
  /**
59
61
  * Notice: it's not safe to use admin-ui image variant URLs in a rendered web page. Use these
60
62
  * 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 Quill plugin for an
63
+ * from the backend every time the web page is re-rendered. Look at the Tiptap plugin for an
62
64
  * example. If you need to use an image variant from the admin-ui in a rendered web page, then
63
65
  * pick `useFTextImage`.
64
66
  */