@lx-frontend/wrap-element-ui 1.0.12-beta.2 → 1.0.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lx-frontend/wrap-element-ui",
3
- "version": "1.0.12-beta.2",
3
+ "version": "1.0.12",
4
4
  "description": "wrap-element-ui",
5
5
  "author": "",
6
6
  "main": "src/components/index.ts",
@@ -105,7 +105,7 @@ export function useColumnHeaderOperation({ props, tableDomRef, emit, showingColu
105
105
  const closeSortAndFilterPopover = (exceptProp?: string) => {
106
106
  document.querySelectorAll('span[data-popper-name]').forEach((item: any) => {
107
107
  if (!exceptProp || exceptProp !== item.dataset.prop) {
108
- item?.__vue__?.doClose();
108
+ item?.__vue__?.doClose?.();
109
109
  }
110
110
  });
111
111
  }
@@ -412,13 +412,12 @@
412
412
 
413
413
  .el-radio__label {
414
414
  white-space: nowrap;
415
- overflow-x: hidden;
415
+ overflow: hidden;
416
416
  text-overflow: ellipsis;
417
417
  width: calc(100% - 20px);
418
418
  display: inline-block;
419
419
  vertical-align: middle;
420
420
  font-size: 12px;
421
- line-height: normal;
422
421
  }
423
422
  }
424
423
 
@@ -509,13 +508,12 @@
509
508
 
510
509
  .el-checkbox__label {
511
510
  white-space: nowrap;
512
- overflow-x: hidden;
511
+ overflow: hidden;
513
512
  text-overflow: ellipsis;
514
513
  width: calc(100% - 20px);
515
514
  display: inline-block;
516
515
  vertical-align: middle;
517
516
  font-size: 12px;
518
- line-height: normal;
519
517
  }
520
518
  }
521
519