@aloudata/aloudata-design 2.11.0 → 2.12.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.
Files changed (61) hide show
  1. package/dist/ColorPicker/index.js +8 -4
  2. package/dist/ConfigProvider/defaultRenderEmpty.js +4 -2
  3. package/dist/ConfigProvider/index.js +9 -1
  4. package/dist/DataPreviewTable/components/Body/Error.js +6 -2
  5. package/dist/DataPreviewTable/index.js +6 -2
  6. package/dist/DatePicker/index.d.ts +10 -10
  7. package/dist/DoubleCircleIcon/index.d.ts +1 -1
  8. package/dist/Dropdown/index.d.ts +9 -0
  9. package/dist/Dropdown/index.js +6 -3
  10. package/dist/Empty/index.js +5 -1
  11. package/dist/HighlightText/index.js +2 -1
  12. package/dist/InputSearch/index.js +6 -2
  13. package/dist/List/Item.js +2 -1
  14. package/dist/MemberPicker/components/MemberSelection.js +6 -2
  15. package/dist/MemberPicker/components/MultipleOption.js +6 -2
  16. package/dist/MemberPicker/components/Panel.js +8 -4
  17. package/dist/MemberPicker/components/PanelWrapper.d.ts +1 -1
  18. package/dist/MemberPicker/components/PanelWrapper.js +10 -6
  19. package/dist/MemberPicker/components/SelectedMemberTags.js +6 -2
  20. package/dist/MemberPicker/components/SelectorFooter.js +7 -3
  21. package/dist/MemberPicker/components/SingleOption.js +6 -2
  22. package/dist/MemberPicker/components/UserGroupSelection.js +7 -3
  23. package/dist/MemberPicker/index.js +35 -31
  24. package/dist/Modal/index.js +17 -23
  25. package/dist/OverflowCount/style/index.less +1 -0
  26. package/dist/Radio/components/Group/index.d.ts +1 -1
  27. package/dist/Select/index.js +6 -2
  28. package/dist/Steps/matchMedia.mock.d.ts +1 -0
  29. package/dist/Steps/matchMedia.mock.js +7 -6
  30. package/dist/Table/components/ErrorBoundary.d.ts +1 -0
  31. package/dist/Table/components/ErrorBoundary.js +8 -3
  32. package/dist/Table/components/Footer/index.js +9 -5
  33. package/dist/Table/helper.d.ts +1 -1
  34. package/dist/Tree/Tree.js +9 -5
  35. package/dist/ald.min.css +1 -1
  36. package/dist/locale/default.d.ts +59 -2
  37. package/dist/locale/default.js +18 -2
  38. package/dist/locale/en_US.d.ts +49 -2
  39. package/dist/locale/en_US.js +41 -121
  40. package/dist/locale/zh_CN.d.ts +49 -2
  41. package/dist/locale/zh_CN.js +41 -120
  42. package/dist/message/index.js +3 -1
  43. package/dist/notification/index.js +10 -7
  44. package/package.json +7 -1
  45. package/dist/Modal/locale.d.ts +0 -7
  46. package/dist/Modal/locale.js +0 -18
  47. package/dist/locale-provider/LocaleReceiver.d.ts +0 -4
  48. package/dist/locale-provider/LocaleReceiver.js +0 -3
  49. package/dist/locale-provider/context.d.ts +0 -7
  50. package/dist/locale-provider/context.js +0 -3
  51. package/dist/locale-provider/default.d.ts +0 -2
  52. package/dist/locale-provider/default.js +0 -2
  53. package/dist/locale-provider/en_US.d.ts +0 -2
  54. package/dist/locale-provider/en_US.js +0 -2
  55. package/dist/locale-provider/index.d.ts +0 -65
  56. package/dist/locale-provider/index.js +0 -80
  57. package/dist/locale-provider/style/index.d.ts +0 -1
  58. package/dist/locale-provider/style/index.js +0 -1
  59. package/dist/locale-provider/style/index.less +0 -2
  60. package/dist/locale-provider/zh_CN.d.ts +0 -2
  61. package/dist/locale-provider/zh_CN.js +0 -2
@@ -1,2 +1,59 @@
1
- import defaultLocale from './zh_CN';
2
- export default defaultLocale;
1
+ /// <reference types="react" />
2
+ import { Locale } from 'antd/lib/locale';
3
+ export declare enum ELangType {
4
+ ZH_CN = "zh-cn",
5
+ EN = "en"
6
+ }
7
+ export declare const defaultLocale: {
8
+ locale: ELangType;
9
+ };
10
+ export declare const LocaleContext: import("react").Context<Locale>;
11
+ export declare function getTranslator(lang?: string): {
12
+ Empty: {
13
+ noContentFound: string;
14
+ };
15
+ ColorPicker: {
16
+ default: string;
17
+ standardColor: string;
18
+ recentlyUsed: string;
19
+ };
20
+ DataPreviewTable: {
21
+ dataLoadFailed: string;
22
+ loadFailed: string;
23
+ };
24
+ InputSearch: {
25
+ search: string;
26
+ };
27
+ MemberPicker: {
28
+ select: string;
29
+ pleaseConfigGetUserByKeywordsMethod: string;
30
+ pleaseConfigGetUserByIdsMethod: string;
31
+ noData: string;
32
+ subLevel: string;
33
+ users: string;
34
+ userGroups: string;
35
+ selectedTotal: (total: number) => string;
36
+ cancel: string;
37
+ confirm: string;
38
+ };
39
+ Modal: {
40
+ cancel: string;
41
+ sure: string;
42
+ };
43
+ Select: {
44
+ noSearchResult: string;
45
+ all: string;
46
+ };
47
+ Tree: {
48
+ expand: string;
49
+ };
50
+ Table: {
51
+ cancelSelect: string;
52
+ selected: string;
53
+ item: string;
54
+ selectAll: string;
55
+ };
56
+ ErrorBoundary: {
57
+ happenedError: string;
58
+ };
59
+ };
@@ -1,2 +1,18 @@
1
- import defaultLocale from "./zh_CN";
2
- export default defaultLocale;
1
+ import { createContext } from 'react';
2
+ import en from "./en_US";
3
+ import zhCN from "./zh_CN";
4
+ export var ELangType = /*#__PURE__*/function (ELangType) {
5
+ ELangType["ZH_CN"] = "zh-cn";
6
+ ELangType["EN"] = "en";
7
+ return ELangType;
8
+ }({});
9
+ export var defaultLocale = {
10
+ locale: ELangType.EN
11
+ };
12
+ export var LocaleContext = /*#__PURE__*/createContext(defaultLocale);
13
+ export function getTranslator(lang) {
14
+ if (lang === ELangType.ZH_CN) {
15
+ return zhCN;
16
+ }
17
+ return en;
18
+ }
@@ -1,3 +1,50 @@
1
- import type { Locale } from '../locale-provider';
2
- declare const localeValues: Locale;
1
+ declare const localeValues: {
2
+ Empty: {
3
+ noContentFound: string;
4
+ };
5
+ ColorPicker: {
6
+ default: string;
7
+ standardColor: string;
8
+ recentlyUsed: string;
9
+ };
10
+ DataPreviewTable: {
11
+ dataLoadFailed: string;
12
+ loadFailed: string;
13
+ };
14
+ InputSearch: {
15
+ search: string;
16
+ };
17
+ MemberPicker: {
18
+ select: string;
19
+ pleaseConfigGetUserByKeywordsMethod: string;
20
+ pleaseConfigGetUserByIdsMethod: string;
21
+ noData: string;
22
+ subLevel: string;
23
+ users: string;
24
+ userGroups: string;
25
+ selectedTotal: (total: number) => string;
26
+ cancel: string;
27
+ confirm: string;
28
+ };
29
+ Modal: {
30
+ cancel: string;
31
+ sure: string;
32
+ };
33
+ Select: {
34
+ noSearchResult: string;
35
+ all: string;
36
+ };
37
+ Tree: {
38
+ expand: string;
39
+ };
40
+ Table: {
41
+ cancelSelect: string;
42
+ selected: string;
43
+ item: string;
44
+ selectAll: string;
45
+ };
46
+ ErrorBoundary: {
47
+ happenedError: string;
48
+ };
49
+ };
3
50
  export default localeValues;
@@ -1,132 +1,52 @@
1
- /* eslint-disable no-template-curly-in-string */
2
- import Calendar from 'antd/lib/calendar/locale/en_US';
3
- import DatePicker from 'antd/lib/date-picker/locale/en_US';
4
- import TimePicker from 'antd/lib/time-picker/locale/en_US';
5
- import Pagination from 'rc-pagination/lib/locale/en_US';
6
- var typeTemplate = '${label} is not a valid ${type}';
7
1
  var localeValues = {
8
- locale: 'en',
9
- Pagination: Pagination,
10
- DatePicker: DatePicker,
11
- TimePicker: TimePicker,
12
- Calendar: Calendar,
13
- global: {
14
- placeholder: 'Please select'
15
- },
16
- Table: {
17
- filterTitle: 'Filter menu',
18
- filterConfirm: 'OK',
19
- filterReset: 'Reset',
20
- filterEmptyText: 'No filters',
21
- filterCheckall: 'Select all items',
22
- filterSearchPlaceholder: 'Search in filters',
23
- emptyText: 'No data',
24
- selectAll: 'Select current page',
25
- selectInvert: 'Invert current page',
26
- selectNone: 'Clear all data',
27
- selectionAll: 'Select all data',
28
- sortTitle: 'Sort',
29
- expand: 'Expand row',
30
- collapse: 'Collapse row',
31
- triggerDesc: 'Click to sort descending',
32
- triggerAsc: 'Click to sort ascending',
33
- cancelSort: 'Click to cancel sorting'
2
+ Empty: {
3
+ noContentFound: 'No Content Found'
4
+ },
5
+ ColorPicker: {
6
+ default: 'Default',
7
+ standardColor: 'Standard Color',
8
+ recentlyUsed: 'Recently Used'
9
+ },
10
+ DataPreviewTable: {
11
+ dataLoadFailed: 'Data loading failed',
12
+ loadFailed: 'Loading failed'
13
+ },
14
+ InputSearch: {
15
+ search: 'Search'
16
+ },
17
+ MemberPicker: {
18
+ select: 'Select',
19
+ pleaseConfigGetUserByKeywordsMethod: 'Please configure the getUsersByKeywords method in ConfigProvider',
20
+ pleaseConfigGetUserByIdsMethod: 'Please configure the getUsersByIds method in ConfigProvider',
21
+ noData: 'No Data',
22
+ subLevel: 'Sub-level',
23
+ users: 'Users',
24
+ userGroups: 'User Groups',
25
+ selectedTotal: function selectedTotal(total) {
26
+ return "Selected ".concat(total);
27
+ },
28
+ cancel: 'Cancel',
29
+ confirm: 'Confirm'
34
30
  },
35
31
  Modal: {
36
- okText: 'OK',
37
- cancelText: 'Cancel',
38
- justOkText: 'OK'
39
- },
40
- Popconfirm: {
41
- okText: 'OK',
42
- cancelText: 'Cancel'
43
- },
44
- Transfer: {
45
- titles: ['', ''],
46
- searchPlaceholder: 'Search here',
47
- itemUnit: 'item',
48
- itemsUnit: 'items',
49
- remove: 'Remove',
50
- selectCurrent: 'Select current page',
51
- removeCurrent: 'Remove current page',
52
- selectAll: 'Select all data',
53
- removeAll: 'Remove all data',
54
- selectInvert: 'Invert current page'
32
+ cancel: 'Cancel',
33
+ sure: 'Ok'
55
34
  },
56
- Upload: {
57
- uploading: 'Uploading...',
58
- removeFile: 'Remove file',
59
- uploadError: 'Upload error',
60
- previewFile: 'Preview file',
61
- downloadFile: 'Download file'
35
+ Select: {
36
+ noSearchResult: 'No search results',
37
+ all: 'All'
62
38
  },
63
- Empty: {
64
- description: 'No Data'
65
- },
66
- Icon: {
67
- icon: 'icon'
68
- },
69
- Text: {
70
- edit: 'Edit',
71
- copy: 'Copy',
72
- copied: 'Copied',
39
+ Tree: {
73
40
  expand: 'Expand'
74
41
  },
75
- PageHeader: {
76
- back: 'Back'
77
- },
78
- Form: {
79
- optional: '(optional)',
80
- defaultValidateMessages: {
81
- default: 'Field validation error for ${label}',
82
- required: 'Please enter ${label}',
83
- enum: '${label} must be one of [${enum}]',
84
- whitespace: '${label} cannot be a blank character',
85
- date: {
86
- format: '${label} date format is invalid',
87
- parse: '${label} cannot be converted to a date',
88
- invalid: '${label} is an invalid date'
89
- },
90
- types: {
91
- string: typeTemplate,
92
- method: typeTemplate,
93
- array: typeTemplate,
94
- object: typeTemplate,
95
- number: typeTemplate,
96
- date: typeTemplate,
97
- boolean: typeTemplate,
98
- integer: typeTemplate,
99
- float: typeTemplate,
100
- regexp: typeTemplate,
101
- email: typeTemplate,
102
- url: typeTemplate,
103
- hex: typeTemplate
104
- },
105
- string: {
106
- len: '${label} must be ${len} characters',
107
- min: '${label} must be at least ${min} characters',
108
- max: '${label} must be up to ${max} characters',
109
- range: '${label} must be between ${min}-${max} characters'
110
- },
111
- number: {
112
- len: '${label} must be equal to ${len}',
113
- min: '${label} must be minimum ${min}',
114
- max: '${label} must be maximum ${max}',
115
- range: '${label} must be between ${min}-${max}'
116
- },
117
- array: {
118
- len: 'Must be ${len} ${label}',
119
- min: 'At least ${min} ${label}',
120
- max: 'At most ${max} ${label}',
121
- range: 'The amount of ${label} must be between ${min}-${max}'
122
- },
123
- pattern: {
124
- mismatch: '${label} does not match the pattern ${pattern}'
125
- }
126
- }
42
+ Table: {
43
+ cancelSelect: 'Cancel Selection',
44
+ selected: 'Selected ',
45
+ item: ' items',
46
+ selectAll: 'Select All'
127
47
  },
128
- Image: {
129
- preview: 'Preview'
48
+ ErrorBoundary: {
49
+ happenedError: 'An error occurred'
130
50
  }
131
51
  };
132
52
  export default localeValues;
@@ -1,3 +1,50 @@
1
- import type { Locale } from '../locale-provider';
2
- declare const localeValues: Locale;
1
+ declare const localeValues: {
2
+ Empty: {
3
+ noContentFound: string;
4
+ };
5
+ ColorPicker: {
6
+ default: string;
7
+ standardColor: string;
8
+ recentlyUsed: string;
9
+ };
10
+ DataPreviewTable: {
11
+ dataLoadFailed: string;
12
+ loadFailed: string;
13
+ };
14
+ InputSearch: {
15
+ search: string;
16
+ };
17
+ MemberPicker: {
18
+ select: string;
19
+ pleaseConfigGetUserByKeywordsMethod: string;
20
+ pleaseConfigGetUserByIdsMethod: string;
21
+ noData: string;
22
+ subLevel: string;
23
+ users: string;
24
+ userGroups: string;
25
+ selectedTotal: (total: number) => string;
26
+ cancel: string;
27
+ confirm: string;
28
+ };
29
+ Modal: {
30
+ cancel: string;
31
+ sure: string;
32
+ };
33
+ Select: {
34
+ noSearchResult: string;
35
+ all: string;
36
+ };
37
+ Tree: {
38
+ expand: string;
39
+ };
40
+ Table: {
41
+ cancelSelect: string;
42
+ selected: string;
43
+ item: string;
44
+ selectAll: string;
45
+ };
46
+ ErrorBoundary: {
47
+ happenedError: string;
48
+ };
49
+ };
3
50
  export default localeValues;
@@ -1,131 +1,52 @@
1
- /* eslint-disable no-template-curly-in-string */
2
- import Calendar from 'antd/lib/calendar/locale/zh_CN';
3
- import DatePicker from 'antd/lib/date-picker/locale/zh_CN';
4
- import TimePicker from 'antd/lib/time-picker/locale/zh_CN';
5
- import Pagination from 'rc-pagination/lib/locale/zh_CN';
6
- var typeTemplate = '${label}不是一个有效的${type}';
7
1
  var localeValues = {
8
- locale: 'zh-cn',
9
- Pagination: Pagination,
10
- DatePicker: DatePicker,
11
- TimePicker: TimePicker,
12
- Calendar: Calendar,
13
- // locales for all components
14
- global: {
15
- placeholder: '请选择'
16
- },
17
- Table: {
18
- filterTitle: '筛选',
19
- filterConfirm: '确定',
20
- filterReset: '重置',
21
- filterEmptyText: '无筛选项',
22
- filterCheckall: '全选',
23
- filterSearchPlaceholder: '在筛选项中搜索',
24
- selectAll: '全选当页',
25
- selectInvert: '反选当页',
26
- selectNone: '清空所有',
27
- selectionAll: '全选所有',
28
- sortTitle: '排序',
29
- expand: '展开行',
30
- collapse: '关闭行',
31
- triggerDesc: '点击降序',
32
- triggerAsc: '点击升序',
33
- cancelSort: '取消排序'
2
+ Empty: {
3
+ noContentFound: '未找到内容'
4
+ },
5
+ ColorPicker: {
6
+ default: '默认',
7
+ standardColor: '标准色',
8
+ recentlyUsed: '最近使用'
9
+ },
10
+ DataPreviewTable: {
11
+ dataLoadFailed: '数据加载失败',
12
+ loadFailed: '加载失败'
13
+ },
14
+ InputSearch: {
15
+ search: '搜索'
16
+ },
17
+ MemberPicker: {
18
+ select: '选择',
19
+ pleaseConfigGetUserByKeywordsMethod: '请在ConfigProvider中配置getUsersByKeywords方法',
20
+ pleaseConfigGetUserByIdsMethod: '请在ConfigProvider中配置getUsersByIds方法',
21
+ noData: '无数据',
22
+ subLevel: '下级',
23
+ users: '用户',
24
+ userGroups: '用户组',
25
+ selectedTotal: function selectedTotal(total) {
26
+ return "\u5DF2\u9009 ".concat(total);
27
+ },
28
+ cancel: '取消',
29
+ confirm: '确认'
34
30
  },
35
31
  Modal: {
36
- okText: '确定',
37
- cancelText: '取消',
38
- justOkText: '知道了'
39
- },
40
- Popconfirm: {
41
- cancelText: '取消',
42
- okText: '确定'
43
- },
44
- Transfer: {
45
- searchPlaceholder: '请输入搜索内容',
46
- itemUnit: '项',
47
- itemsUnit: '项',
48
- remove: '删除',
49
- selectCurrent: '全选当页',
50
- removeCurrent: '删除当页',
51
- selectAll: '全选所有',
52
- removeAll: '删除全部',
53
- selectInvert: '反选当页'
32
+ cancel: '取消',
33
+ sure: '确定'
54
34
  },
55
- Upload: {
56
- uploading: '文件上传中',
57
- removeFile: '删除文件',
58
- uploadError: '上传错误',
59
- previewFile: '预览文件',
60
- downloadFile: '下载文件'
35
+ Select: {
36
+ noSearchResult: '无搜索结果',
37
+ all: '全部'
61
38
  },
62
- Empty: {
63
- description: '暂无数据'
64
- },
65
- Icon: {
66
- icon: '图标'
67
- },
68
- Text: {
69
- edit: '编辑',
70
- copy: '复制',
71
- copied: '复制成功',
39
+ Tree: {
72
40
  expand: '展开'
73
41
  },
74
- PageHeader: {
75
- back: '返回'
76
- },
77
- Form: {
78
- optional: '(可选)',
79
- defaultValidateMessages: {
80
- default: '字段验证错误${label}',
81
- required: '请输入${label}',
82
- enum: '${label}必须是其中一个[${enum}]',
83
- whitespace: '${label}不能为空字符',
84
- date: {
85
- format: '${label}日期格式无效',
86
- parse: '${label}不能转换为日期',
87
- invalid: '${label}是一个无效日期'
88
- },
89
- types: {
90
- string: typeTemplate,
91
- method: typeTemplate,
92
- array: typeTemplate,
93
- object: typeTemplate,
94
- number: typeTemplate,
95
- date: typeTemplate,
96
- boolean: typeTemplate,
97
- integer: typeTemplate,
98
- float: typeTemplate,
99
- regexp: typeTemplate,
100
- email: typeTemplate,
101
- url: typeTemplate,
102
- hex: typeTemplate
103
- },
104
- string: {
105
- len: '${label}须为${len}个字符',
106
- min: '${label}最少${min}个字符',
107
- max: '${label}最多${max}个字符',
108
- range: '${label}须在${min}-${max}字符之间'
109
- },
110
- number: {
111
- len: '${label}必须等于${len}',
112
- min: '${label}最小值为${min}',
113
- max: '${label}最大值为${max}',
114
- range: '${label}须在${min}-${max}之间'
115
- },
116
- array: {
117
- len: '须为${len}个${label}',
118
- min: '最少${min}个${label}',
119
- max: '最多${max}个${label}',
120
- range: '${label}数量须在${min}-${max}之间'
121
- },
122
- pattern: {
123
- mismatch: '${label}与模式不匹配${pattern}'
124
- }
125
- }
42
+ Table: {
43
+ cancelSelect: '取消选择',
44
+ selected: '已选',
45
+ item: '个',
46
+ selectAll: '全选'
126
47
  },
127
- Image: {
128
- preview: '预览'
48
+ ErrorBoundary: {
49
+ happenedError: '发生了错误'
129
50
  }
130
51
  };
131
52
  export default localeValues;
@@ -41,8 +41,10 @@ var defaultOptions = {
41
41
  containerId: 'message-container',
42
42
  icon: function icon() {
43
43
  return null;
44
- }
44
+ },
45
+ pauseOnFocusLoss: false // 窗口失焦后不会暂停计时器
45
46
  };
47
+
46
48
  var getMessage = function getMessage(message, type) {
47
49
  return /*#__PURE__*/React.createElement("div", {
48
50
  className: "ald-message-content"
@@ -19,19 +19,22 @@ var closeX = /*#__PURE__*/React.createElement(CloseLLine, {
19
19
  size: 20,
20
20
  color: "#6B7280"
21
21
  });
22
+ var DEFAULT_DURATION_TIME = 4500;
22
23
  var defaultOptions = {
23
24
  closeButton: closeX,
24
25
  pauseOnHover: true,
25
26
  transition: Slide,
26
27
  position: 'top-center',
27
- autoClose: 3000,
28
+ autoClose: DEFAULT_DURATION_TIME,
28
29
  hideProgressBar: true,
29
30
  closeOnClick: true,
30
31
  draggable: false,
31
32
  progress: undefined,
32
33
  theme: 'light',
33
- containerId: 'notification-container'
34
+ containerId: 'notification-container',
35
+ pauseOnFocusLoss: false // 窗口失焦后不会暂停计时器
34
36
  };
37
+
35
38
  var iconMap = {
36
39
  info: /*#__PURE__*/React.createElement("div", {
37
40
  className: "ald-notification-notice-icon"
@@ -97,7 +100,7 @@ var notification = {
97
100
  }, description)), _objectSpread(_objectSpread({
98
101
  icon: false
99
102
  }, defaultOptions), {}, {
100
- autoClose: duration ? duration * 1000 : 3000,
103
+ autoClose: duration ? duration * 1000 : DEFAULT_DURATION_TIME,
101
104
  position: getPosition(placement),
102
105
  className: classNames('ald-notification', className)
103
106
  }, restConfig));
@@ -124,7 +127,7 @@ var notification = {
124
127
  return iconMap.success;
125
128
  }
126
129
  }, defaultOptions), {}, {
127
- autoClose: duration ? duration * 1000 : 3000,
130
+ autoClose: duration ? duration * 1000 : DEFAULT_DURATION_TIME,
128
131
  position: getPosition(placement),
129
132
  className: classNames('ald-notification', className)
130
133
  }, restConfig));
@@ -151,7 +154,7 @@ var notification = {
151
154
  return iconMap.error;
152
155
  }
153
156
  }, defaultOptions), {}, {
154
- autoClose: duration ? duration * 1000 : 3000,
157
+ autoClose: duration ? duration * 1000 : DEFAULT_DURATION_TIME,
155
158
  position: getPosition(placement),
156
159
  className: classNames('ald-notification', className)
157
160
  }, restConfig));
@@ -178,7 +181,7 @@ var notification = {
178
181
  return iconMap.info;
179
182
  }
180
183
  }, defaultOptions), {}, {
181
- autoClose: duration ? duration * 1000 : 3000,
184
+ autoClose: duration ? duration * 1000 : DEFAULT_DURATION_TIME,
182
185
  position: getPosition(placement),
183
186
  className: classNames('ald-notification', className)
184
187
  }, restConfig));
@@ -205,7 +208,7 @@ var notification = {
205
208
  return iconMap.warning;
206
209
  }
207
210
  }, defaultOptions), {}, {
208
- autoClose: duration ? duration * 1000 : 3000,
211
+ autoClose: duration ? duration * 1000 : DEFAULT_DURATION_TIME,
209
212
  position: getPosition(placement),
210
213
  className: classNames('ald-notification', className)
211
214
  }, restConfig));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloudata/aloudata-design",
3
- "version": "2.11.0",
3
+ "version": "2.12.1",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "module": "dist/index.js",
@@ -13,6 +13,9 @@
13
13
  "build:minCss": "webpack --mode=production --node-env=production",
14
14
  "build:watch": "father dev",
15
15
  "cmt": "npx zx ./scripts/createComponentTemplate.mjs",
16
+ "coverage": "sh scripts/coverage.sh",
17
+ "coverage:CI": "export DEVOPS_ENV=CI && sh ./scripts/coverage.sh",
18
+ "coverage:shell": "vitest run --coverage.enabled",
16
19
  "dev": "npm run gen:icon && npm run gen:vars && dumi dev",
17
20
  "docs:build": "dumi build",
18
21
  "doctor": "father doctor",
@@ -64,6 +67,7 @@
64
67
  "ahooks": "^3.7.8",
65
68
  "antd": "5.4.3",
66
69
  "compare-func": "^2.0.0",
70
+ "eslint-plugin-i18n": "^2.3.1",
67
71
  "immer": "^10.0.3",
68
72
  "memoize-one": "^6.0.0",
69
73
  "rc-menu": "^9.8.0",
@@ -88,6 +92,8 @@
88
92
  "@types/jest": "^29.4.0",
89
93
  "@types/lodash": "^4.14.191",
90
94
  "@umijs/lint": "^4.0.0",
95
+ "@vitest/coverage-istanbul": "^0.31.1",
96
+ "@vitest/coverage-v8": "^1.0.4",
91
97
  "@webpack-cli/generators": "^3.0.7",
92
98
  "autoprefixer": "^10.4.16",
93
99
  "babel-jest": "^29.4.2",
@@ -1,7 +0,0 @@
1
- export interface IModalLocale {
2
- okText: string;
3
- cancelText: string;
4
- justOkText: string;
5
- }
6
- export declare function changeConfirmLocale(newLocale?: IModalLocale): void;
7
- export declare function getConfirmLocale(): IModalLocale;