n20-common-lib 1.3.167 → 1.3.168

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": "n20-common-lib",
3
- "version": "1.3.167",
3
+ "version": "1.3.168",
4
4
  "private": false,
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -69,6 +69,7 @@
69
69
  height: 100%;
70
70
  border-radius: 4px;
71
71
  min-height: 40px;
72
+ word-break: break-all;
72
73
  }
73
74
  .w-full {
74
75
  width: 100%;
@@ -95,3 +95,9 @@ body {
95
95
  transition: left 0.3s ease-in;
96
96
  }
97
97
  @import './cl-layout-content.scss';
98
+
99
+ .workplace-card > [data-version],
100
+ .workplace-card > [data-version] > div,
101
+ .workplace-card > [data-version] > div > div {
102
+ height: 100%;
103
+ }
@@ -204,6 +204,7 @@ export default {
204
204
  }
205
205
  },
206
206
  filterFn(val) {
207
+ val && (val = val.trim())
207
208
  this.$refs['tree'].filter(val)
208
209
  this.filterMethod && this.filterMethod(val)
209
210
  },
@@ -195,6 +195,7 @@ export default {
195
195
  }
196
196
  },
197
197
  filterFn(val) {
198
+ val && (val = val.trim())
198
199
  this.$refs['tree'].filter(val)
199
200
  this.filterMethod && this.filterMethod(val)
200
201
  },
@@ -93,5 +93,3 @@ export async function getSign(p1, p2, p3) {
93
93
 
94
94
  return por
95
95
  }
96
-
97
- export { availableSign, verifySign } from './sign.js'