@paroicms/public-admin-ui-lib 0.28.3 → 0.29.1

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.28.3",
3
+ "version": "0.29.1",
4
4
  "description": "Common utilitaries for paroicms plugins (admin UI side).",
5
5
  "author": "Paroi Team",
6
6
  "repository": {
@@ -18,11 +18,11 @@
18
18
  "dev": "tsc --watch --preserveWatchOutput"
19
19
  },
20
20
  "dependencies": {
21
- "@paroicms/public-anywhere-lib": "0.35.1"
21
+ "@paroicms/public-anywhere-lib": "0.36.1"
22
22
  },
23
23
  "devDependencies": {
24
24
  "rimraf": "~6.0.1",
25
- "typescript": "~5.8.3"
25
+ "typescript": "~5.9.2"
26
26
  },
27
27
  "files": [
28
28
  "dist",
@@ -2,10 +2,10 @@ import type {
2
2
  MImageVariant,
3
3
  MSourceImage,
4
4
  MSourceMedia,
5
- OrderByItem,
6
5
  ReadFieldValue,
7
6
  ResizeRule,
8
7
  ScFieldType,
8
+ ScSortRule,
9
9
  ThemeConf,
10
10
  UpdateFieldValue,
11
11
  } from "@paroicms/public-anywhere-lib";
@@ -97,8 +97,8 @@ export interface PluginDocumentSearchPayload {
97
97
  searchString: string;
98
98
  language?: string;
99
99
  limit?: number;
100
- start?: number;
101
- orderBy?: OrderByItem[];
100
+ offset?: number;
101
+ sorting?: ScSortRule[];
102
102
  }
103
103
 
104
104
  export interface AdminUiLogger {