@aloudata/aloudata-design 2.19.0-beta.1 → 2.19.0-beta.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.
@@ -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;
@@ -125,7 +125,6 @@
125
125
  @shadow-xs: var(--elevation-bottom-bottom-sm);
126
126
  @shadow-body-top-left: var(--additional-effects-inner-default-border);
127
127
  @shadow-primary: var(--focus-default-focus);
128
- @shadow-drop: 0 0 0 4px var(--global-blue-500-12);
129
128
  // 业务颜色
130
129
  // 除了原色之外,在业务、提示和标签等组件中使用一些次要颜色也很有帮助。这些次要颜色应该少用或作为重点使用,而主要颜色应该占优先地位。
131
130
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloudata/aloudata-design",
3
- "version": "2.19.0-beta.1",
3
+ "version": "2.19.0-beta.3",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "module": "dist/index.js",