acud 1.0.6 → 1.0.7

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 (52) hide show
  1. package/dist/acud.css +31 -2
  2. package/dist/acud.css.map +1 -1
  3. package/dist/acud.js +215 -696
  4. package/dist/acud.js.map +1 -1
  5. package/dist/acud.min.css +1 -1
  6. package/dist/acud.min.css.map +1 -1
  7. package/dist/acud.min.js +6 -8
  8. package/dist/acud.min.js.map +1 -1
  9. package/es/card/style/index.css +1 -0
  10. package/es/date-picker/src/PickerPanel.js +1 -0
  11. package/es/date-picker/src/RangePicker.js +1 -0
  12. package/es/dialog-box/style/index.css +1 -0
  13. package/es/form/style/index.css +2 -1
  14. package/es/input-number/src/hooks/useFrame.d.ts +1 -1
  15. package/es/input-number/style/index.css +7 -0
  16. package/es/modal/style/index.css +1 -0
  17. package/es/pagination/style/index.css +2 -0
  18. package/es/popover/style/index.css +1 -0
  19. package/es/rate/style/index.css +1 -0
  20. package/es/select/style/index.css +2 -0
  21. package/es/slider/style/index.css +1 -0
  22. package/es/switch/style/index.css +1 -0
  23. package/es/tabs/style/index.css +1 -0
  24. package/es/tag/style/index.css +1 -0
  25. package/es/timeline/style/index.css +2 -0
  26. package/es/toast/style/index.less +1 -1
  27. package/es/tree/style/index.css +3 -0
  28. package/es/tree-select/style/index.css +3 -0
  29. package/es/virtual-list/List.js +7 -0
  30. package/lib/card/style/index.css +1 -0
  31. package/lib/date-picker/src/PickerPanel.js +1 -0
  32. package/lib/date-picker/src/RangePicker.js +1 -0
  33. package/lib/dialog-box/style/index.css +1 -0
  34. package/lib/form/style/index.css +2 -1
  35. package/lib/input-number/src/hooks/useFrame.d.ts +1 -1
  36. package/lib/input-number/style/index.css +7 -0
  37. package/lib/modal/style/index.css +1 -0
  38. package/lib/pagination/style/index.css +2 -0
  39. package/lib/popover/style/index.css +1 -0
  40. package/lib/rate/style/index.css +1 -0
  41. package/lib/select/style/index.css +2 -0
  42. package/lib/slider/style/index.css +1 -0
  43. package/lib/switch/style/index.css +1 -0
  44. package/lib/tabs/style/index.css +1 -0
  45. package/lib/tag/style/index.css +1 -0
  46. package/lib/timeline/style/index.css +2 -0
  47. package/lib/toast/style/index.less +1 -1
  48. package/lib/tree/style/index.css +3 -0
  49. package/lib/tree-select/style/index.css +3 -0
  50. package/lib/virtual-list/List.js +7 -0
  51. package/package.json +1 -1
  52. package/CHANGELOG.md +0 -279
@@ -869,6 +869,7 @@
869
869
  .acud-card-loading .acud-card-body {
870
870
  -webkit-user-select: none;
871
871
  -moz-user-select: none;
872
+ -ms-user-select: none;
872
873
  user-select: none;
873
874
  }
874
875
  .acud-card-loading-content p {
@@ -122,6 +122,7 @@ function PickerPanel(props) {
122
122
  var now = generateConfig.getNow();
123
123
  if (!date) return now; // When value is null and set showTime
124
124
 
125
+ // When value is null and set showTime
125
126
  if (!mergedValue && showTime) {
126
127
  if (_typeof(showTime) === 'object') {
127
128
  return setDateTime(generateConfig, date, showTime.defaultValue || now);
@@ -172,6 +172,7 @@ function InnerRangePicker(props) {
172
172
  } // Fill disabled unit
173
173
 
174
174
 
175
+ // Fill disabled unit
175
176
  for (var i = 0; i < 2; i += 1) {
176
177
  if (mergedDisabled[i] && !getValue(postValues, i) && !getValue(allowEmpty, i)) {
177
178
  postValues = updateValues(postValues, generateConfig.getNow(), i);
@@ -26,6 +26,7 @@
26
26
  animation-duration: 0.3s;
27
27
  -webkit-user-select: none;
28
28
  -moz-user-select: none;
29
+ -ms-user-select: none;
29
30
  user-select: none;
30
31
  }
31
32
  .acud-dialogbox-mask {
@@ -742,7 +742,8 @@
742
742
  .acud-form-item-label > label .acud-form-item-tooltip {
743
743
  color: #B8BABF;
744
744
  cursor: help;
745
- writing-mode: horizontal-tb;
745
+ -ms-writing-mode: lr-tb;
746
+ writing-mode: horizontal-tb;
746
747
  -webkit-margin-start: 4px;
747
748
  margin-inline-start: 4px;
748
749
  }
@@ -1,5 +1,5 @@
1
+ declare const _default: () => (callback: () => void) => void;
1
2
  /**
2
3
  * Always trigger latest once when call multiple time
3
4
  */
4
- declare const _default: () => (callback: () => void) => void;
5
5
  export default _default;
@@ -249,6 +249,7 @@
249
249
  transition: all 0.1s linear;
250
250
  -webkit-user-select: none;
251
251
  -moz-user-select: none;
252
+ -ms-user-select: none;
252
253
  user-select: none;
253
254
  }
254
255
  .acud-input-number-handler-up-inner > *,
@@ -313,12 +314,18 @@
313
314
  .acud-input-number-input::-moz-placeholder {
314
315
  opacity: 1;
315
316
  }
317
+ .acud-input-number-input:-ms-input-placeholder {
318
+ color: #D4D6D9;
319
+ }
316
320
  .acud-input-number-input::placeholder {
317
321
  color: #D4D6D9;
318
322
  }
319
323
  .acud-input-number-input:-moz-placeholder-shown {
320
324
  text-overflow: ellipsis;
321
325
  }
326
+ .acud-input-number-input:-ms-input-placeholder {
327
+ text-overflow: ellipsis;
328
+ }
322
329
  .acud-input-number-input:placeholder-shown {
323
330
  text-overflow: ellipsis;
324
331
  }
@@ -28,6 +28,7 @@
28
28
  animation-duration: 0.3s;
29
29
  -webkit-user-select: none;
30
30
  -moz-user-select: none;
31
+ -ms-user-select: none;
31
32
  user-select: none;
32
33
  }
33
34
  .acud-modal-mask {
@@ -67,6 +67,7 @@
67
67
  cursor: pointer;
68
68
  -webkit-user-select: none;
69
69
  -moz-user-select: none;
70
+ -ms-user-select: none;
70
71
  user-select: none;
71
72
  box-sizing: border-box;
72
73
  font-weight: 400;
@@ -250,6 +251,7 @@
250
251
  cursor: pointer;
251
252
  -webkit-user-select: none;
252
253
  -moz-user-select: none;
254
+ -ms-user-select: none;
253
255
  user-select: none;
254
256
  }
255
257
  .acud-pagination-prev.acud-pagination-disabled button,
@@ -22,6 +22,7 @@
22
22
  cursor: auto;
23
23
  -webkit-user-select: text;
24
24
  -moz-user-select: text;
25
+ -ms-user-select: text;
25
26
  user-select: text;
26
27
  }
27
28
  .acud-popover::after {
@@ -130,6 +130,7 @@
130
130
  margin-bottom: 4px;
131
131
  -webkit-user-select: none;
132
132
  -moz-user-select: none;
133
+ -ms-user-select: none;
133
134
  user-select: none;
134
135
  transition: all 0.3s;
135
136
  cursor: pointer;
@@ -38,6 +38,7 @@
38
38
  position: relative;
39
39
  -webkit-user-select: none;
40
40
  -moz-user-select: none;
41
+ -ms-user-select: none;
41
42
  user-select: none;
42
43
  color: #151B26;
43
44
  }
@@ -190,6 +191,7 @@
190
191
  transition: font-size 0.3s, line-height 0.3s, height 0.3s;
191
192
  -webkit-user-select: none;
192
193
  -moz-user-select: none;
194
+ -ms-user-select: none;
193
195
  user-select: none;
194
196
  -webkit-margin-end: 5px;
195
197
  margin-inline-end: 5px;
@@ -253,6 +253,7 @@
253
253
  cursor: pointer;
254
254
  -webkit-user-select: none;
255
255
  -moz-user-select: none;
256
+ -ms-user-select: none;
256
257
  user-select: none;
257
258
  }
258
259
  .acud-slider-mark-text:first-child {
@@ -202,6 +202,7 @@
202
202
  vertical-align: middle;
203
203
  -webkit-user-select: text;
204
204
  -moz-user-select: text;
205
+ -ms-user-select: text;
205
206
  user-select: text;
206
207
  pointer-events: none;
207
208
  }
@@ -537,6 +537,7 @@
537
537
  cursor: pointer;
538
538
  -webkit-user-select: none;
539
539
  -moz-user-select: none;
540
+ -ms-user-select: none;
540
541
  user-select: none;
541
542
  color: #151B26;
542
543
  }
@@ -312,6 +312,7 @@
312
312
  .acud-tag-type-edit {
313
313
  -webkit-user-select: none;
314
314
  -moz-user-select: none;
315
+ -ms-user-select: none;
315
316
  user-select: none;
316
317
  padding-right: 4px;
317
318
  line-height: 24px;
@@ -166,6 +166,7 @@
166
166
  cursor: pointer;
167
167
  -webkit-user-select: none;
168
168
  -moz-user-select: none;
169
+ -ms-user-select: none;
169
170
  user-select: none;
170
171
  }
171
172
  .common-content-link {
@@ -578,6 +579,7 @@
578
579
  cursor: pointer;
579
580
  -webkit-user-select: none;
580
581
  -moz-user-select: none;
582
+ -ms-user-select: none;
581
583
  user-select: none;
582
584
  }
583
585
  .acud-timeline-item-content-link {
@@ -79,7 +79,7 @@
79
79
  }
80
80
  }
81
81
 
82
- .acud-toast-wrap {
82
+ .@{acud-prefix}-toast-wrap {
83
83
  display: flex;
84
84
  &-left {
85
85
  flex: 1;
@@ -277,6 +277,7 @@
277
277
  white-space: nowrap;
278
278
  -webkit-user-select: none;
279
279
  -moz-user-select: none;
280
+ -ms-user-select: none;
280
281
  user-select: none;
281
282
  }
282
283
  .acud-tree-indent-unit {
@@ -294,6 +295,7 @@
294
295
  cursor: pointer;
295
296
  -webkit-user-select: none;
296
297
  -moz-user-select: none;
298
+ -ms-user-select: none;
297
299
  user-select: none;
298
300
  }
299
301
  .acud-tree-switcher .acud-tree-switcher-icon,
@@ -435,6 +437,7 @@
435
437
  line-height: 24px;
436
438
  -webkit-user-select: none;
437
439
  -moz-user-select: none;
440
+ -ms-user-select: none;
438
441
  user-select: none;
439
442
  }
440
443
  .acud-tree-node-content-wrapper .acud-tree-drop-indicator {
@@ -292,6 +292,7 @@
292
292
  white-space: nowrap;
293
293
  -webkit-user-select: none;
294
294
  -moz-user-select: none;
295
+ -ms-user-select: none;
295
296
  user-select: none;
296
297
  }
297
298
  .acud-select-tree-indent-unit {
@@ -309,6 +310,7 @@
309
310
  cursor: pointer;
310
311
  -webkit-user-select: none;
311
312
  -moz-user-select: none;
313
+ -ms-user-select: none;
312
314
  user-select: none;
313
315
  }
314
316
  .acud-select-tree-switcher .acud-tree-switcher-icon,
@@ -450,6 +452,7 @@
450
452
  line-height: 24px;
451
453
  -webkit-user-select: none;
452
454
  -moz-user-select: none;
455
+ -ms-user-select: none;
453
456
  user-select: none;
454
457
  }
455
458
  .acud-select-tree-node-content-wrapper .acud-tree-drop-indicator {
@@ -135,6 +135,7 @@ export function RawList(props, ref) {
135
135
  } // Always use virtual scroll bar in avoid shaking
136
136
 
137
137
 
138
+ // Always use virtual scroll bar in avoid shaking
138
139
  if (!inVirtual) {
139
140
  return {
140
141
  scrollHeight: ((_a = fillerInnerRef.current) === null || _a === void 0 ? void 0 : _a.offsetHeight) || 0,
@@ -156,12 +157,14 @@ export function RawList(props, ref) {
156
157
  var cacheHeight = heights.get(key);
157
158
  var currentItemBottom = itemTop + (cacheHeight === undefined ? itemHeight : cacheHeight); // Check item top in the range
158
159
 
160
+ // Check item top in the range
159
161
  if (currentItemBottom >= scrollTop && startIndex === undefined) {
160
162
  startIndex = i;
161
163
  startOffset = itemTop;
162
164
  } // Check item bottom in the range. We will render additional one item for motion usage
163
165
 
164
166
 
167
+ // Check item bottom in the range. We will render additional one item for motion usage
165
168
  if (currentItemBottom > scrollTop + height && endIndex === undefined) {
166
169
  endIndex = i;
167
170
  }
@@ -172,6 +175,9 @@ export function RawList(props, ref) {
172
175
  /* istanbul ignore next */
173
176
 
174
177
 
178
+ // Fallback to normal if not match. This code should never reach
179
+
180
+ /* istanbul ignore next */
175
181
  if (startIndex === undefined) {
176
182
  startIndex = 0;
177
183
  startOffset = 0;
@@ -182,6 +188,7 @@ export function RawList(props, ref) {
182
188
  } // Give cache to improve scroll experience
183
189
 
184
190
 
191
+ // Give cache to improve scroll experience
185
192
  endIndex = Math.min(endIndex + 1, mergedData.length);
186
193
  return {
187
194
  scrollHeight: itemTop,
@@ -869,6 +869,7 @@
869
869
  .acud-card-loading .acud-card-body {
870
870
  -webkit-user-select: none;
871
871
  -moz-user-select: none;
872
+ -ms-user-select: none;
872
873
  user-select: none;
873
874
  }
874
875
  .acud-card-loading-content p {
@@ -159,6 +159,7 @@ function PickerPanel(props) {
159
159
  var now = generateConfig.getNow();
160
160
  if (!date) return now; // When value is null and set showTime
161
161
 
162
+ // When value is null and set showTime
162
163
  if (!mergedValue && showTime) {
163
164
  if ((0, _typeof2["default"])(showTime) === 'object') {
164
165
  return (0, _timeUtil.setDateTime)(generateConfig, date, showTime.defaultValue || now);
@@ -212,6 +212,7 @@ function InnerRangePicker(props) {
212
212
  } // Fill disabled unit
213
213
 
214
214
 
215
+ // Fill disabled unit
215
216
  for (var i = 0; i < 2; i += 1) {
216
217
  if (mergedDisabled[i] && !(0, _miscUtil.getValue)(postValues, i) && !(0, _miscUtil.getValue)(allowEmpty, i)) {
217
218
  postValues = (0, _miscUtil.updateValues)(postValues, generateConfig.getNow(), i);
@@ -26,6 +26,7 @@
26
26
  animation-duration: 0.3s;
27
27
  -webkit-user-select: none;
28
28
  -moz-user-select: none;
29
+ -ms-user-select: none;
29
30
  user-select: none;
30
31
  }
31
32
  .acud-dialogbox-mask {
@@ -742,7 +742,8 @@
742
742
  .acud-form-item-label > label .acud-form-item-tooltip {
743
743
  color: #B8BABF;
744
744
  cursor: help;
745
- writing-mode: horizontal-tb;
745
+ -ms-writing-mode: lr-tb;
746
+ writing-mode: horizontal-tb;
746
747
  -webkit-margin-start: 4px;
747
748
  margin-inline-start: 4px;
748
749
  }
@@ -1,5 +1,5 @@
1
+ declare const _default: () => (callback: () => void) => void;
1
2
  /**
2
3
  * Always trigger latest once when call multiple time
3
4
  */
4
- declare const _default: () => (callback: () => void) => void;
5
5
  export default _default;
@@ -249,6 +249,7 @@
249
249
  transition: all 0.1s linear;
250
250
  -webkit-user-select: none;
251
251
  -moz-user-select: none;
252
+ -ms-user-select: none;
252
253
  user-select: none;
253
254
  }
254
255
  .acud-input-number-handler-up-inner > *,
@@ -313,12 +314,18 @@
313
314
  .acud-input-number-input::-moz-placeholder {
314
315
  opacity: 1;
315
316
  }
317
+ .acud-input-number-input:-ms-input-placeholder {
318
+ color: #D4D6D9;
319
+ }
316
320
  .acud-input-number-input::placeholder {
317
321
  color: #D4D6D9;
318
322
  }
319
323
  .acud-input-number-input:-moz-placeholder-shown {
320
324
  text-overflow: ellipsis;
321
325
  }
326
+ .acud-input-number-input:-ms-input-placeholder {
327
+ text-overflow: ellipsis;
328
+ }
322
329
  .acud-input-number-input:placeholder-shown {
323
330
  text-overflow: ellipsis;
324
331
  }
@@ -28,6 +28,7 @@
28
28
  animation-duration: 0.3s;
29
29
  -webkit-user-select: none;
30
30
  -moz-user-select: none;
31
+ -ms-user-select: none;
31
32
  user-select: none;
32
33
  }
33
34
  .acud-modal-mask {
@@ -67,6 +67,7 @@
67
67
  cursor: pointer;
68
68
  -webkit-user-select: none;
69
69
  -moz-user-select: none;
70
+ -ms-user-select: none;
70
71
  user-select: none;
71
72
  box-sizing: border-box;
72
73
  font-weight: 400;
@@ -250,6 +251,7 @@
250
251
  cursor: pointer;
251
252
  -webkit-user-select: none;
252
253
  -moz-user-select: none;
254
+ -ms-user-select: none;
253
255
  user-select: none;
254
256
  }
255
257
  .acud-pagination-prev.acud-pagination-disabled button,
@@ -22,6 +22,7 @@
22
22
  cursor: auto;
23
23
  -webkit-user-select: text;
24
24
  -moz-user-select: text;
25
+ -ms-user-select: text;
25
26
  user-select: text;
26
27
  }
27
28
  .acud-popover::after {
@@ -130,6 +130,7 @@
130
130
  margin-bottom: 4px;
131
131
  -webkit-user-select: none;
132
132
  -moz-user-select: none;
133
+ -ms-user-select: none;
133
134
  user-select: none;
134
135
  transition: all 0.3s;
135
136
  cursor: pointer;
@@ -38,6 +38,7 @@
38
38
  position: relative;
39
39
  -webkit-user-select: none;
40
40
  -moz-user-select: none;
41
+ -ms-user-select: none;
41
42
  user-select: none;
42
43
  color: #151B26;
43
44
  }
@@ -190,6 +191,7 @@
190
191
  transition: font-size 0.3s, line-height 0.3s, height 0.3s;
191
192
  -webkit-user-select: none;
192
193
  -moz-user-select: none;
194
+ -ms-user-select: none;
193
195
  user-select: none;
194
196
  -webkit-margin-end: 5px;
195
197
  margin-inline-end: 5px;
@@ -253,6 +253,7 @@
253
253
  cursor: pointer;
254
254
  -webkit-user-select: none;
255
255
  -moz-user-select: none;
256
+ -ms-user-select: none;
256
257
  user-select: none;
257
258
  }
258
259
  .acud-slider-mark-text:first-child {
@@ -202,6 +202,7 @@
202
202
  vertical-align: middle;
203
203
  -webkit-user-select: text;
204
204
  -moz-user-select: text;
205
+ -ms-user-select: text;
205
206
  user-select: text;
206
207
  pointer-events: none;
207
208
  }
@@ -537,6 +537,7 @@
537
537
  cursor: pointer;
538
538
  -webkit-user-select: none;
539
539
  -moz-user-select: none;
540
+ -ms-user-select: none;
540
541
  user-select: none;
541
542
  color: #151B26;
542
543
  }
@@ -312,6 +312,7 @@
312
312
  .acud-tag-type-edit {
313
313
  -webkit-user-select: none;
314
314
  -moz-user-select: none;
315
+ -ms-user-select: none;
315
316
  user-select: none;
316
317
  padding-right: 4px;
317
318
  line-height: 24px;
@@ -166,6 +166,7 @@
166
166
  cursor: pointer;
167
167
  -webkit-user-select: none;
168
168
  -moz-user-select: none;
169
+ -ms-user-select: none;
169
170
  user-select: none;
170
171
  }
171
172
  .common-content-link {
@@ -578,6 +579,7 @@
578
579
  cursor: pointer;
579
580
  -webkit-user-select: none;
580
581
  -moz-user-select: none;
582
+ -ms-user-select: none;
581
583
  user-select: none;
582
584
  }
583
585
  .acud-timeline-item-content-link {
@@ -79,7 +79,7 @@
79
79
  }
80
80
  }
81
81
 
82
- .acud-toast-wrap {
82
+ .@{acud-prefix}-toast-wrap {
83
83
  display: flex;
84
84
  &-left {
85
85
  flex: 1;
@@ -277,6 +277,7 @@
277
277
  white-space: nowrap;
278
278
  -webkit-user-select: none;
279
279
  -moz-user-select: none;
280
+ -ms-user-select: none;
280
281
  user-select: none;
281
282
  }
282
283
  .acud-tree-indent-unit {
@@ -294,6 +295,7 @@
294
295
  cursor: pointer;
295
296
  -webkit-user-select: none;
296
297
  -moz-user-select: none;
298
+ -ms-user-select: none;
297
299
  user-select: none;
298
300
  }
299
301
  .acud-tree-switcher .acud-tree-switcher-icon,
@@ -435,6 +437,7 @@
435
437
  line-height: 24px;
436
438
  -webkit-user-select: none;
437
439
  -moz-user-select: none;
440
+ -ms-user-select: none;
438
441
  user-select: none;
439
442
  }
440
443
  .acud-tree-node-content-wrapper .acud-tree-drop-indicator {
@@ -292,6 +292,7 @@
292
292
  white-space: nowrap;
293
293
  -webkit-user-select: none;
294
294
  -moz-user-select: none;
295
+ -ms-user-select: none;
295
296
  user-select: none;
296
297
  }
297
298
  .acud-select-tree-indent-unit {
@@ -309,6 +310,7 @@
309
310
  cursor: pointer;
310
311
  -webkit-user-select: none;
311
312
  -moz-user-select: none;
313
+ -ms-user-select: none;
312
314
  user-select: none;
313
315
  }
314
316
  .acud-select-tree-switcher .acud-tree-switcher-icon,
@@ -450,6 +452,7 @@
450
452
  line-height: 24px;
451
453
  -webkit-user-select: none;
452
454
  -moz-user-select: none;
455
+ -ms-user-select: none;
453
456
  user-select: none;
454
457
  }
455
458
  .acud-select-tree-node-content-wrapper .acud-tree-drop-indicator {
@@ -165,6 +165,7 @@ function RawList(props, ref) {
165
165
  } // Always use virtual scroll bar in avoid shaking
166
166
 
167
167
 
168
+ // Always use virtual scroll bar in avoid shaking
168
169
  if (!inVirtual) {
169
170
  return {
170
171
  scrollHeight: ((_a = fillerInnerRef.current) === null || _a === void 0 ? void 0 : _a.offsetHeight) || 0,
@@ -186,12 +187,14 @@ function RawList(props, ref) {
186
187
  var cacheHeight = heights.get(key);
187
188
  var currentItemBottom = itemTop + (cacheHeight === undefined ? itemHeight : cacheHeight); // Check item top in the range
188
189
 
190
+ // Check item top in the range
189
191
  if (currentItemBottom >= scrollTop && startIndex === undefined) {
190
192
  startIndex = i;
191
193
  startOffset = itemTop;
192
194
  } // Check item bottom in the range. We will render additional one item for motion usage
193
195
 
194
196
 
197
+ // Check item bottom in the range. We will render additional one item for motion usage
195
198
  if (currentItemBottom > scrollTop + height && endIndex === undefined) {
196
199
  endIndex = i;
197
200
  }
@@ -202,6 +205,9 @@ function RawList(props, ref) {
202
205
  /* istanbul ignore next */
203
206
 
204
207
 
208
+ // Fallback to normal if not match. This code should never reach
209
+
210
+ /* istanbul ignore next */
205
211
  if (startIndex === undefined) {
206
212
  startIndex = 0;
207
213
  startOffset = 0;
@@ -212,6 +218,7 @@ function RawList(props, ref) {
212
218
  } // Give cache to improve scroll experience
213
219
 
214
220
 
221
+ // Give cache to improve scroll experience
215
222
  endIndex = Math.min(endIndex + 1, mergedData.length);
216
223
  return {
217
224
  scrollHeight: itemTop,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acud",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "acg react 组件库",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",