@geelato/web-vue 2.57.1 → 2.58.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 (81) hide show
  1. package/dist/arco-vue.js +872 -535
  2. package/dist/arco-vue.js.map +1 -1
  3. package/dist/arco-vue.min.js +1645 -1546
  4. package/dist/arco-vue.min.js.map +1 -1
  5. package/dist/arco.css +39 -8
  6. package/dist/arco.min.css +1 -1
  7. package/es/_components/picker/input-range.d.ts +2 -2
  8. package/es/_components/picker/input.d.ts +1 -1
  9. package/es/_components/virtual-list-v2/virtual-list.d.ts +3 -3
  10. package/es/_utils/array.d.ts +1 -1
  11. package/es/_utils/array.js +18 -1
  12. package/es/date-picker/index.d.ts +7 -7
  13. package/es/date-picker/panels/date/index.d.ts +2 -2
  14. package/es/date-picker/panels/week/index.d.ts +2 -2
  15. package/es/date-picker/picker-panel.d.ts +4 -4
  16. package/es/date-picker/picker.d.ts +5 -5
  17. package/es/date-picker/range-picker-panel.d.ts +4 -4
  18. package/es/date-picker/range-picker.d.ts +7 -7
  19. package/es/drawer/drawer.d.ts +24 -0
  20. package/es/drawer/drawer.js +61 -6
  21. package/es/drawer/index.d.ts +45 -0
  22. package/es/drawer/style/index.css +10 -0
  23. package/es/drawer/style/index.less +12 -0
  24. package/es/index.css +39 -8
  25. package/es/mention/index.d.ts +3 -3
  26. package/es/mention/mention.d.ts +1 -1
  27. package/es/menu/item.d.ts +1 -1
  28. package/es/menu/sub-menu-pop.d.ts +1 -1
  29. package/es/message/message.d.ts +1 -1
  30. package/es/modal/index.d.ts +33 -3
  31. package/es/modal/modal.d.ts +16 -1
  32. package/es/modal/modal.js +23 -6
  33. package/es/modal/modal.vue_vue_type_script_lang.js +26 -2
  34. package/es/modal/style/index.css +7 -1
  35. package/es/modal/style/index.less +8 -1
  36. package/es/pagination/index.d.ts +3 -3
  37. package/es/pagination/pagination.d.ts +1 -1
  38. package/es/table/context.d.ts +3 -0
  39. package/es/table/hooks/use-row-selection.js +5 -3
  40. package/es/table/interface.d.ts +1 -1
  41. package/es/table/style/index.css +22 -7
  42. package/es/table/style/index.less +25 -8
  43. package/es/table/table-operation-td.js +6 -6
  44. package/es/table/table-operation-th.js +19 -7
  45. package/es/table/table-td.js +2 -2
  46. package/es/table/table.js +165 -33
  47. package/es/table/utils.d.ts +1 -1
  48. package/es/table/utils.js +9 -5
  49. package/es/time-picker/index.d.ts +14 -14
  50. package/es/time-picker/panel.d.ts +2 -2
  51. package/es/time-picker/range-panel.d.ts +2 -2
  52. package/es/time-picker/time-picker.d.ts +7 -7
  53. package/es/tree/index.d.ts +6 -6
  54. package/es/tree/tree.d.ts +3 -3
  55. package/es/tree-select/index.d.ts +12 -12
  56. package/es/tree-select/panel.d.ts +6 -6
  57. package/es/tree-select/tree-select.d.ts +6 -6
  58. package/es/typography/index.d.ts +3 -3
  59. package/es/typography/title.d.ts +3 -3
  60. package/json/vetur-attributes.json +2491 -2491
  61. package/json/vetur-tags.json +889 -889
  62. package/json/web-types.json +4726 -4726
  63. package/lib/_utils/array.js +18 -1
  64. package/lib/drawer/drawer.js +63 -8
  65. package/lib/drawer/style/index.css +10 -0
  66. package/lib/drawer/style/index.less +12 -0
  67. package/lib/index.css +39 -8
  68. package/lib/modal/modal.js +23 -6
  69. package/lib/modal/modal.vue_vue_type_script_lang.js +36 -12
  70. package/lib/modal/style/index.css +7 -1
  71. package/lib/modal/style/index.less +8 -1
  72. package/lib/table/hooks/use-row-selection.js +5 -3
  73. package/lib/table/style/index.css +22 -7
  74. package/lib/table/style/index.less +25 -8
  75. package/lib/table/table-operation-td.js +6 -6
  76. package/lib/table/table-operation-th.js +19 -7
  77. package/lib/table/table-td.js +2 -2
  78. package/lib/table/table.js +164 -32
  79. package/lib/table/utils.js +9 -5
  80. package/package.json +25 -24
  81. package/LICENSE +0 -21
package/dist/arco.css CHANGED
@@ -6169,6 +6169,12 @@ body[arco-theme='dark'] .arco-carousel-indicator-outer .arco-carousel-indicator-
6169
6169
  font-size: 12px;
6170
6170
  cursor: pointer;
6171
6171
  }
6172
+ .arco-drawer-header .arco-drawer-fullscreen-btn {
6173
+ margin-left: 8px;
6174
+ color: var(--color-text-1);
6175
+ font-size: 12px;
6176
+ cursor: pointer;
6177
+ }
6172
6178
  .arco-drawer-footer {
6173
6179
  flex-shrink: 0;
6174
6180
  box-sizing: border-box;
@@ -6188,6 +6194,10 @@ body[arco-theme='dark'] .arco-carousel-indicator-outer .arco-carousel-indicator-
6188
6194
  overflow: auto;
6189
6195
  color: var(--color-text-1);
6190
6196
  }
6197
+ .arco-drawer-fullscreen {
6198
+ width: 100% !important;
6199
+ height: 100% !important;
6200
+ }
6191
6201
  .fade-drawer-enter-from,
6192
6202
  .fade-drawer-appear-from {
6193
6203
  opacity: 0;
@@ -11140,7 +11150,13 @@ body[arco-theme='dark'] .arco-carousel-indicator-outer .arco-carousel-indicator-
11140
11150
  margin-left: 12px;
11141
11151
  }
11142
11152
  .arco-modal-close-btn {
11143
- margin-left: -12px;
11153
+ margin-left: 8px;
11154
+ color: var(--color-text-1);
11155
+ font-size: 12px;
11156
+ cursor: pointer;
11157
+ }
11158
+ .arco-modal-fullscreen-btn {
11159
+ margin-left: 8px;
11144
11160
  color: var(--color-text-1);
11145
11161
  font-size: 12px;
11146
11162
  cursor: pointer;
@@ -14393,6 +14409,24 @@ body[arco-theme='dark'] .arco-radio-button::after {
14393
14409
  justify-content: center;
14394
14410
  padding: 0;
14395
14411
  }
14412
+ .arco-table-th.arco-table-operation.arco-table-checkbox .arco-table-cell,
14413
+ .arco-table-td.arco-table-operation.arco-table-checkbox .arco-table-cell,
14414
+ .arco-table-th.arco-table-operation.arco-table-radio .arco-table-cell,
14415
+ .arco-table-td.arco-table-operation.arco-table-radio .arco-table-cell {
14416
+ padding: 0 4px;
14417
+ }
14418
+ .arco-table-th.arco-table-operation.arco-table-checkbox,
14419
+ .arco-table-td.arco-table-operation.arco-table-checkbox {
14420
+ position: relative;
14421
+ z-index: 11;
14422
+ }
14423
+ .arco-table-th.arco-table-operation.arco-table-checkbox.arco-table-col-fixed-left,
14424
+ .arco-table-td.arco-table-operation.arco-table-checkbox.arco-table-col-fixed-left,
14425
+ .arco-table-th.arco-table-operation.arco-table-checkbox.arco-table-col-fixed-right,
14426
+ .arco-table-td.arco-table-operation.arco-table-checkbox.arco-table-col-fixed-right {
14427
+ position: sticky !important;
14428
+ z-index: 12;
14429
+ }
14396
14430
  .arco-table-radio,
14397
14431
  .arco-table-checkbox {
14398
14432
  justify-content: center;
@@ -14783,13 +14817,10 @@ body[arco-theme='dark'] .arco-radio-button::after {
14783
14817
  .arco-table-virtualized .arco-table-element {
14784
14818
  table-layout: fixed;
14785
14819
  }
14786
- .arco-table-virtualized div.arco-table-body div.arco-table-tr {
14787
- display: flex;
14788
- }
14789
- .arco-table-virtualized div.arco-table-body div.arco-table-td {
14790
- display: flex;
14791
- flex: 1;
14792
- align-items: center;
14820
+ .arco-table-virtualized .arco-table-body .arco-table-td.arco-table-col-fixed-left,
14821
+ .arco-table-virtualized .arco-table-body .arco-table-td.arco-table-col-fixed-right {
14822
+ position: sticky;
14823
+ z-index: 10;
14793
14824
  }
14794
14825
  .arco-table-pagination {
14795
14826
  display: flex;