acud 1.0.4 → 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 (39) hide show
  1. package/dist/acud.css +23 -9
  2. package/dist/acud.css.map +1 -1
  3. package/dist/acud.js +426 -748
  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 +9 -9
  8. package/dist/acud.min.js.map +1 -1
  9. package/es/_util/createWorker.d.ts +1 -0
  10. package/es/_util/createWorker.js +9 -0
  11. package/es/date-picker/src/PickerPanel.js +1 -0
  12. package/es/date-picker/src/RangePicker.js +1 -0
  13. package/es/date-picker/style/index.css +22 -0
  14. package/es/date-picker/style/index.less +4 -0
  15. package/es/date-picker/style/panel.less +11 -0
  16. package/es/input-number/src/hooks/useFrame.d.ts +1 -1
  17. package/es/select/src/OptionList.js +6 -6
  18. package/es/timeline/style/common.less +4 -4
  19. package/es/timeline/style/index.css +0 -8
  20. package/es/toast/style/index.less +1 -1
  21. package/es/transfer/DataSource.js +43 -7
  22. package/es/transfer/index.d.ts +1 -0
  23. package/es/virtual-list/List.js +7 -0
  24. package/lib/_util/createWorker.d.ts +1 -0
  25. package/lib/_util/createWorker.js +16 -0
  26. package/lib/date-picker/src/PickerPanel.js +1 -0
  27. package/lib/date-picker/src/RangePicker.js +1 -0
  28. package/lib/date-picker/style/index.css +22 -0
  29. package/lib/date-picker/style/index.less +4 -0
  30. package/lib/date-picker/style/panel.less +11 -0
  31. package/lib/input-number/src/hooks/useFrame.d.ts +1 -1
  32. package/lib/select/src/OptionList.js +6 -6
  33. package/lib/timeline/style/common.less +4 -4
  34. package/lib/timeline/style/index.css +0 -8
  35. package/lib/toast/style/index.less +1 -1
  36. package/lib/transfer/DataSource.js +45 -7
  37. package/lib/transfer/index.d.ts +1 -0
  38. package/lib/virtual-list/List.js +7 -0
  39. package/package.json +2 -1
package/dist/acud.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! acud v1.0.4 */
1
+ /*! acud v1.0.7 */
2
2
  /* color */
3
3
  /* 默认颜色 */
4
4
  /* 通用-icon */
@@ -12005,6 +12005,9 @@ a {
12005
12005
  border-radius: 4px;
12006
12006
  transition: border 0.3s, box-shadow 0.3s;
12007
12007
  }
12008
+ .acud-picker input {
12009
+ font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Text", "Helvetica Neue", Helvetica, "PingFang SC", Roboto, 'Arial', 'microsoft yahei ui', "Microsoft YaHei", SimSun, sans-serif;
12010
+ }
12008
12011
  .acud-picker:hover {
12009
12012
  background-color: #FFFFFF;
12010
12013
  }
@@ -13036,6 +13039,7 @@ tr > .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:last-child::af
13036
13039
  .acud-picker-date-panel .acud-picker-content thead th {
13037
13040
  width: 24px;
13038
13041
  line-height: 24px;
13042
+ color: #151B26;
13039
13043
  }
13040
13044
  .acud-picker-date-panel .acud-picker-content tbody tr {
13041
13045
  margin-top: 8px;
@@ -13179,6 +13183,24 @@ tr > .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:last-child::af
13179
13183
  .acud-picker-year-panel tr td.acud-picker-cell-range-hover:last-child {
13180
13184
  border-radius: 0 2px 2px 0;
13181
13185
  }
13186
+ .acud-picker-date-panel tr td.acud-picker-cell-in-view.acud-picker-cell-in-range.acud-picker-cell-end,
13187
+ .acud-picker-month-panel tr td.acud-picker-cell-in-view.acud-picker-cell-in-range.acud-picker-cell-end,
13188
+ .acud-picker-year-panel tr td.acud-picker-cell-in-view.acud-picker-cell-in-range.acud-picker-cell-end,
13189
+ .acud-picker-date-panel tr td.acud-picker-cell-range-hover.acud-picker-cell-end,
13190
+ .acud-picker-month-panel tr td.acud-picker-cell-range-hover.acud-picker-cell-end,
13191
+ .acud-picker-year-panel tr td.acud-picker-cell-range-hover.acud-picker-cell-end {
13192
+ border-top-right-radius: 2px;
13193
+ border-bottom-right-radius: 2px;
13194
+ }
13195
+ .acud-picker-date-panel tr td.acud-picker-cell-in-view.acud-picker-cell-in-range.acud-picker-cell-start,
13196
+ .acud-picker-month-panel tr td.acud-picker-cell-in-view.acud-picker-cell-in-range.acud-picker-cell-start,
13197
+ .acud-picker-year-panel tr td.acud-picker-cell-in-view.acud-picker-cell-in-range.acud-picker-cell-start,
13198
+ .acud-picker-date-panel tr td.acud-picker-cell-range-hover.acud-picker-cell-start,
13199
+ .acud-picker-month-panel tr td.acud-picker-cell-range-hover.acud-picker-cell-start,
13200
+ .acud-picker-year-panel tr td.acud-picker-cell-range-hover.acud-picker-cell-start {
13201
+ border-top-left-radius: 2px;
13202
+ border-bottom-left-radius: 2px;
13203
+ }
13182
13204
  .acud-picker-date-panel tr td.acud-picker-cell-range-hover-end:not(.acud-picker-cell-range-end):not(.acud-picker-cell-in-range) .acud-picker-cell-inner,
13183
13205
  .acud-picker-month-panel tr td.acud-picker-cell-range-hover-end:not(.acud-picker-cell-range-end):not(.acud-picker-cell-in-range) .acud-picker-cell-inner,
13184
13206
  .acud-picker-year-panel tr td.acud-picker-cell-range-hover-end:not(.acud-picker-cell-range-end):not(.acud-picker-cell-in-range) .acud-picker-cell-inner {
@@ -23173,10 +23195,6 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
23173
23195
  margin-top: 4px;
23174
23196
  transition: opacity 0.2s linear;
23175
23197
  }
23176
- .common-content-link svg {
23177
- position: relative;
23178
- top: 2.5px;
23179
- }
23180
23198
  .common-content-link-label {
23181
23199
  flex-shrink: 0;
23182
23200
  margin-right: 4px;
@@ -23590,10 +23608,6 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
23590
23608
  margin-top: 4px;
23591
23609
  transition: opacity 0.2s linear;
23592
23610
  }
23593
- .acud-timeline-item-content-link svg {
23594
- position: relative;
23595
- top: 2.5px;
23596
- }
23597
23611
  .acud-timeline-item-content-link-label {
23598
23612
  flex-shrink: 0;
23599
23613
  margin-right: 4px;