n20-common-lib 1.3.16 → 1.3.19

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.16",
3
+ "version": "1.3.19",
4
4
  "private": false,
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -34,15 +34,15 @@
34
34
  flex-direction: row-reverse;
35
35
 
36
36
  .el-button.el-button--default:hover {
37
- color: #007aff;
37
+ color: var(--color-primary);
38
38
  background: #ffffff;
39
- border-color: #007aff;
39
+ border-color: var(--color-primary);
40
40
  }
41
41
 
42
42
  .el-button.el-button--primary:hover {
43
- background: #006ee6;
43
+ background: var(--color-primary-hover);
44
44
  color: #fff;
45
- border-color: #006ee6;
45
+ border-color: var(--color-primary-hover);
46
46
  }
47
47
 
48
48
  & .el-button+.el-button {
package/src/index.js CHANGED
@@ -53,7 +53,7 @@ import PageHeader from './components/PageHeader/index'
53
53
  import PlainText from './components/PlainText/index'
54
54
  import PlainTextItem from './components/PlainText/PlainTextItem'
55
55
  // ECharts 不要打包进来
56
- import Search from './components/Search/index.vue'
56
+ // import Search from './components/Search/index.vue'
57
57
  import Stamp from './components/Stamp/index.vue'
58
58
  /* old */
59
59
  import TableO from './components/Table/indexO.vue'
@@ -142,7 +142,7 @@ const components = [
142
142
  PageHeader,
143
143
  PlainText,
144
144
  PlainTextItem,
145
- Search,
145
+ // Search,
146
146
  approvalImg,
147
147
  Stamp,
148
148
  /* old */
@@ -251,7 +251,7 @@ export {
251
251
  PageHeader,
252
252
  PlainText,
253
253
  PlainTextItem,
254
- Search,
254
+ // Search,
255
255
  approvalImg,
256
256
  Stamp
257
257
  }