@mxmweb/xviewer 1.1.49 → 1.3.2
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 +107 -1
- package/assets/style.css +1 -1
- package/index.js +6753 -6759
- package/lib_enter.d.ts +4 -0
- package/package.json +1 -1
- package/stats.html +1 -1
package/lib_enter.d.ts
CHANGED
|
@@ -144,6 +144,10 @@ declare interface ViewType {
|
|
|
144
144
|
total?: number;
|
|
145
145
|
requestPagesize?: number;
|
|
146
146
|
viewPageSize?: number;
|
|
147
|
+
/** 分页多语言:zh / en / ja,与 SharedPagination 一致 */
|
|
148
|
+
paginationLocale?: 'zh' | 'en' | 'ja';
|
|
149
|
+
/** 分页文案覆盖(可选) */
|
|
150
|
+
paginationMessages?: Record<string, string>;
|
|
147
151
|
}
|
|
148
152
|
|
|
149
153
|
export declare const Xviwer: default_2.ForwardRefExoticComponent<Omit<DynamicDashView, "ref"> & default_2.RefAttributes<DynamicDashDataCoreRef>>;
|