@aloudata/aloudata-design 2.18.3 → 2.18.5

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.
@@ -68,4 +68,9 @@ export declare function getTranslator(lang?: string): {
68
68
  or: string;
69
69
  };
70
70
  };
71
+ Pagination: {
72
+ itemsPerPage: string;
73
+ selectPageSize: string;
74
+ totalItems: (total: number, range: [number, number]) => string;
75
+ };
71
76
  };
@@ -58,5 +58,10 @@ declare const localeValues: {
58
58
  or: string;
59
59
  };
60
60
  };
61
+ Pagination: {
62
+ itemsPerPage: string;
63
+ selectPageSize: string;
64
+ totalItems: (total: number, range: [number, number]) => string;
65
+ };
61
66
  };
62
67
  export default localeValues;
@@ -59,6 +59,13 @@ var localeValues = {
59
59
  and: 'And',
60
60
  or: 'Or'
61
61
  }
62
+ },
63
+ Pagination: {
64
+ itemsPerPage: '/ page',
65
+ selectPageSize: 'Select size',
66
+ totalItems: function totalItems(total, range) {
67
+ return "Total ".concat(total, " items, showing ").concat(range[0], "-").concat(range[1]);
68
+ }
62
69
  }
63
70
  };
64
71
  export default localeValues;
@@ -58,5 +58,10 @@ declare const localeValues: {
58
58
  or: string;
59
59
  };
60
60
  };
61
+ Pagination: {
62
+ itemsPerPage: string;
63
+ selectPageSize: string;
64
+ totalItems: (total: number, range: [number, number]) => string;
65
+ };
61
66
  };
62
67
  export default localeValues;
@@ -59,6 +59,13 @@ var localeValues = {
59
59
  and: '且',
60
60
  or: '或'
61
61
  }
62
+ },
63
+ Pagination: {
64
+ itemsPerPage: '条/页',
65
+ selectPageSize: '选择条数',
66
+ totalItems: function totalItems(total, range) {
67
+ return "\u5171 ".concat(total, " \u6761\uFF0C\u5F53\u524D\u7B2C ").concat(range[0], "-").concat(range[1], " \u6761");
68
+ }
62
69
  }
63
70
  };
64
71
  export default localeValues;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloudata/aloudata-design",
3
- "version": "2.18.3",
3
+ "version": "2.18.5",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "module": "dist/index.js",