antd-mobile 5.42.0-alpha.2 → 5.42.0
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/2x/bundle/antd-mobile.cjs.development.js +3 -3
- package/2x/bundle/antd-mobile.cjs.js +5 -5
- package/2x/bundle/antd-mobile.es.development.js +3 -3
- package/2x/bundle/antd-mobile.es.js +533 -532
- package/2x/bundle/antd-mobile.umd.development.js +3 -3
- package/2x/bundle/antd-mobile.umd.js +5 -5
- package/2x/bundle/style.css +1 -1
- package/2x/cjs/components/image-uploader/image-uploader.js +2 -2
- package/2x/cjs/components/virtual-input/virtual-input.css +1 -1
- package/2x/cjs/components/virtual-input/virtual-input.js +1 -1
- package/2x/es/components/image-uploader/image-uploader.js +2 -2
- package/2x/es/components/virtual-input/virtual-input.css +1 -1
- package/2x/es/components/virtual-input/virtual-input.js +1 -1
- package/2x/package.json +1 -1
- package/bundle/antd-mobile.cjs.development.js +3 -3
- package/bundle/antd-mobile.cjs.js +5 -5
- package/bundle/antd-mobile.compatible.umd.js +1 -1
- package/bundle/antd-mobile.es.development.js +3 -3
- package/bundle/antd-mobile.es.js +533 -532
- package/bundle/antd-mobile.umd.development.js +3 -3
- package/bundle/antd-mobile.umd.js +5 -5
- package/bundle/style.css +1 -1
- package/cjs/components/image-uploader/image-uploader.js +2 -2
- package/cjs/components/virtual-input/virtual-input.css +1 -1
- package/cjs/components/virtual-input/virtual-input.js +1 -1
- package/es/components/image-uploader/image-uploader.js +2 -2
- package/es/components/virtual-input/virtual-input.css +1 -1
- package/es/components/virtual-input/virtual-input.js +1 -1
- package/package.json +1 -1
- package/umd/antd-mobile.js +1 -1
|
@@ -94,6 +94,7 @@ const ImageUploader = (0, _react.forwardRef)((p, ref) => {
|
|
|
94
94
|
function getFinalTasks(tasks) {
|
|
95
95
|
return props.showFailed ? tasks : tasks.filter(task => task.status !== 'fail');
|
|
96
96
|
}
|
|
97
|
+
const finalTasks = getFinalTasks(tasks);
|
|
97
98
|
function onChange(e) {
|
|
98
99
|
var _a;
|
|
99
100
|
return (0, _tslib.__awaiter)(this, void 0, void 0, function* () {
|
|
@@ -114,7 +115,7 @@ const ImageUploader = (0, _react.forwardRef)((p, ref) => {
|
|
|
114
115
|
return;
|
|
115
116
|
}
|
|
116
117
|
if (maxCount > 0) {
|
|
117
|
-
const exceed = value.length + files.length - maxCount;
|
|
118
|
+
const exceed = value.length + files.length + finalTasks.length - maxCount;
|
|
118
119
|
if (exceed > 0) {
|
|
119
120
|
files = files.slice(0, files.length - exceed);
|
|
120
121
|
(_a = props.onCountExceed) === null || _a === void 0 ? void 0 : _a.call(props, exceed);
|
|
@@ -173,7 +174,6 @@ const ImageUploader = (0, _react.forwardRef)((p, ref) => {
|
|
|
173
174
|
var _a;
|
|
174
175
|
(_a = imageViewerHandlerRef.current) === null || _a === void 0 ? void 0 : _a.close();
|
|
175
176
|
});
|
|
176
|
-
const finalTasks = getFinalTasks(tasks);
|
|
177
177
|
const showUpload = props.showUpload && (maxCount === 0 || value.length + finalTasks.length < maxCount);
|
|
178
178
|
const renderImages = () => {
|
|
179
179
|
return value.map((fileItem, index) => {
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
z-index: 1;
|
|
27
27
|
width: 100%;
|
|
28
28
|
max-width: 100%;
|
|
29
|
-
min-height: 1.5em;
|
|
30
29
|
overflow-y: hidden;
|
|
31
30
|
overflow-x: scroll;
|
|
32
31
|
letter-spacing: 1px;
|
|
@@ -41,6 +40,7 @@
|
|
|
41
40
|
height: 10px;
|
|
42
41
|
position: absolute;
|
|
43
42
|
opacity: 0;
|
|
43
|
+
left: 0;
|
|
44
44
|
}
|
|
45
45
|
.adm-virtual-input-placeholder {
|
|
46
46
|
display: block;
|
|
@@ -142,7 +142,7 @@ const VirtualInput = (0, _react.forwardRef)((props, ref) => {
|
|
|
142
142
|
(_b = (_a = mergedProps.cursor) === null || _a === void 0 ? void 0 : _a.onMove) === null || _b === void 0 ? void 0 : _b.call(_a, value.length);
|
|
143
143
|
}
|
|
144
144
|
(_c = mergedProps.onClick) === null || _c === void 0 ? void 0 : _c.call(mergedProps, e);
|
|
145
|
-
|
|
145
|
+
setFocus();
|
|
146
146
|
};
|
|
147
147
|
// 点击单个字符时,根据点击位置置于字符前或后
|
|
148
148
|
const changeCaretPosition = index => e => {
|
|
@@ -85,6 +85,7 @@ export const ImageUploader = forwardRef((p, ref) => {
|
|
|
85
85
|
function getFinalTasks(tasks) {
|
|
86
86
|
return props.showFailed ? tasks : tasks.filter(task => task.status !== 'fail');
|
|
87
87
|
}
|
|
88
|
+
const finalTasks = getFinalTasks(tasks);
|
|
88
89
|
function onChange(e) {
|
|
89
90
|
var _a;
|
|
90
91
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -105,7 +106,7 @@ export const ImageUploader = forwardRef((p, ref) => {
|
|
|
105
106
|
return;
|
|
106
107
|
}
|
|
107
108
|
if (maxCount > 0) {
|
|
108
|
-
const exceed = value.length + files.length - maxCount;
|
|
109
|
+
const exceed = value.length + files.length + finalTasks.length - maxCount;
|
|
109
110
|
if (exceed > 0) {
|
|
110
111
|
files = files.slice(0, files.length - exceed);
|
|
111
112
|
(_a = props.onCountExceed) === null || _a === void 0 ? void 0 : _a.call(props, exceed);
|
|
@@ -164,7 +165,6 @@ export const ImageUploader = forwardRef((p, ref) => {
|
|
|
164
165
|
var _a;
|
|
165
166
|
(_a = imageViewerHandlerRef.current) === null || _a === void 0 ? void 0 : _a.close();
|
|
166
167
|
});
|
|
167
|
-
const finalTasks = getFinalTasks(tasks);
|
|
168
168
|
const showUpload = props.showUpload && (maxCount === 0 || value.length + finalTasks.length < maxCount);
|
|
169
169
|
const renderImages = () => {
|
|
170
170
|
return value.map((fileItem, index) => {
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
z-index: 1;
|
|
27
27
|
width: 100%;
|
|
28
28
|
max-width: 100%;
|
|
29
|
-
min-height: 1.5em;
|
|
30
29
|
overflow-y: hidden;
|
|
31
30
|
overflow-x: scroll;
|
|
32
31
|
letter-spacing: 1px;
|
|
@@ -41,6 +40,7 @@
|
|
|
41
40
|
height: 10px;
|
|
42
41
|
position: absolute;
|
|
43
42
|
opacity: 0;
|
|
43
|
+
left: 0;
|
|
44
44
|
}
|
|
45
45
|
.adm-virtual-input-placeholder {
|
|
46
46
|
display: block;
|
|
@@ -133,7 +133,7 @@ export const VirtualInput = forwardRef((props, ref) => {
|
|
|
133
133
|
(_b = (_a = mergedProps.cursor) === null || _a === void 0 ? void 0 : _a.onMove) === null || _b === void 0 ? void 0 : _b.call(_a, value.length);
|
|
134
134
|
}
|
|
135
135
|
(_c = mergedProps.onClick) === null || _c === void 0 ? void 0 : _c.call(mergedProps, e);
|
|
136
|
-
|
|
136
|
+
setFocus();
|
|
137
137
|
};
|
|
138
138
|
// 点击单个字符时,根据点击位置置于字符前或后
|
|
139
139
|
const changeCaretPosition = index => e => {
|