seeder-resources-view 1.0.3 → 1.0.6
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/dist/index.css +1 -1
- package/dist/index.esm.js +17203 -380
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +17203 -380
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/style/resources.less +9 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "seeder-resources-view",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "A reusable resources management component for React applications",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"axios": ">=0.21.0",
|
|
49
|
-
"lodash
|
|
49
|
+
"lodash": "^4.17.21"
|
|
50
50
|
}
|
|
51
51
|
}
|
package/src/style/resources.less
CHANGED
|
@@ -92,15 +92,18 @@
|
|
|
92
92
|
display: flex;
|
|
93
93
|
margin-block-end: 16px;
|
|
94
94
|
}
|
|
95
|
-
.ant-list {
|
|
95
|
+
.ant-list.ant-list-grid {
|
|
96
96
|
.ant-row {
|
|
97
97
|
height: auto;
|
|
98
|
+
border-top: 1px solid #424242;
|
|
99
|
+
border-left: 1px solid #424242;
|
|
100
|
+
}
|
|
101
|
+
.ant-col>.ant-list-item {
|
|
102
|
+
padding: 20px;
|
|
103
|
+
margin-block-end: 0;
|
|
104
|
+
border-right: 1px solid #424242;
|
|
105
|
+
border-bottom: 1px solid #424242;
|
|
98
106
|
}
|
|
99
|
-
}
|
|
100
|
-
.ant-list-grid .ant-col>.ant-list-item {
|
|
101
|
-
padding: 20px;
|
|
102
|
-
margin-block-end: 0;
|
|
103
|
-
border: 1px solid #424242;
|
|
104
107
|
}
|
|
105
108
|
}
|
|
106
109
|
}
|