ls-pro-common 1.0.71 → 1.0.73
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/common.css +76 -5
- package/dist/common.js +1 -1
- package/dist/common.min.css +76 -5
- package/dist/common.min.js +1 -1
- package/es/components/common.less +9 -5
- package/es/hooks/useDtl/index.js +29 -13
- package/es/hooks/useSingle/index.d.ts +0 -2
- package/es/hooks/useSingle/index.js +11 -7
- package/lib/components/common.less +9 -5
- package/lib/hooks/useDtl/index.js +29 -13
- package/lib/hooks/useSingle/index.d.ts +0 -2
- package/lib/hooks/useSingle/index.js +11 -7
- package/package.json +2 -2
package/dist/common.min.css
CHANGED
|
@@ -149,11 +149,17 @@ body {
|
|
|
149
149
|
border-radius: 4px;
|
|
150
150
|
border-color: var(--ant-primary-color);
|
|
151
151
|
color: var(--ant-primary-color);
|
|
152
|
+
height: 28px;
|
|
153
|
+
line-height: 1.2;
|
|
154
|
+
padding: 2px 15px;
|
|
152
155
|
}
|
|
153
156
|
.ant-btn:active {
|
|
154
157
|
border-color: var(--ant-primary-color-hover);
|
|
155
158
|
color: var(--ant-primary-color-hover);
|
|
156
159
|
}
|
|
160
|
+
.ant-btn-icon-only {
|
|
161
|
+
padding: 2px 0;
|
|
162
|
+
}
|
|
157
163
|
.ant-btn-primary {
|
|
158
164
|
color: #fff;
|
|
159
165
|
}
|
|
@@ -215,11 +221,6 @@ a:hover {
|
|
|
215
221
|
max-height: calc(100vh - 180px);
|
|
216
222
|
overflow-y: auto;
|
|
217
223
|
}
|
|
218
|
-
.ant-btn {
|
|
219
|
-
height: 28px;
|
|
220
|
-
line-height: 1.2;
|
|
221
|
-
padding: 2px 15px;
|
|
222
|
-
}
|
|
223
224
|
|
|
224
225
|
.pro-table-tooltip-text span {
|
|
225
226
|
color: #fff;
|
|
@@ -304,6 +305,22 @@ a:hover {
|
|
|
304
305
|
text-overflow: ellipsis;
|
|
305
306
|
overflow: hidden;
|
|
306
307
|
}
|
|
308
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-right-first,
|
|
309
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-right-first,
|
|
310
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-right-first,
|
|
311
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-right-first,
|
|
312
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-right-first,
|
|
313
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-right-first {
|
|
314
|
+
padding-left: 15px;
|
|
315
|
+
}
|
|
316
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-left-last,
|
|
317
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-left-last,
|
|
318
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-left-last,
|
|
319
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-left-last,
|
|
320
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-left-last,
|
|
321
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
|
|
322
|
+
padding-right: 15px;
|
|
323
|
+
}
|
|
307
324
|
.ant-pro-table-srcoll .ant-table-placeholder td {
|
|
308
325
|
border-bottom: none;
|
|
309
326
|
}
|
|
@@ -316,6 +333,25 @@ a:hover {
|
|
|
316
333
|
padding: 7px 5px;
|
|
317
334
|
font-size: 12px;
|
|
318
335
|
}
|
|
336
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-right-first,
|
|
337
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-right-first,
|
|
338
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-right-first,
|
|
339
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-right-first,
|
|
340
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-right-first,
|
|
341
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-right-first {
|
|
342
|
+
padding-left: 15px;
|
|
343
|
+
}
|
|
344
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-left-last,
|
|
345
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-left-last,
|
|
346
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-left-last,
|
|
347
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-left-last,
|
|
348
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-left-last,
|
|
349
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
|
|
350
|
+
padding-right: 15px;
|
|
351
|
+
}
|
|
352
|
+
.ant-table-summary .last-cell {
|
|
353
|
+
padding-right: 18px;
|
|
354
|
+
}
|
|
319
355
|
.ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
320
356
|
background-color: #f7fafc;
|
|
321
357
|
}
|
|
@@ -2238,6 +2274,22 @@ html {
|
|
|
2238
2274
|
text-overflow: ellipsis;
|
|
2239
2275
|
overflow: hidden;
|
|
2240
2276
|
}
|
|
2277
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-right-first,
|
|
2278
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-right-first,
|
|
2279
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-right-first,
|
|
2280
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-right-first,
|
|
2281
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-right-first,
|
|
2282
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-right-first {
|
|
2283
|
+
padding-left: 15px;
|
|
2284
|
+
}
|
|
2285
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-left-last,
|
|
2286
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-left-last,
|
|
2287
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-left-last,
|
|
2288
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-left-last,
|
|
2289
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-left-last,
|
|
2290
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
|
|
2291
|
+
padding-right: 15px;
|
|
2292
|
+
}
|
|
2241
2293
|
.ant-pro-table-srcoll .ant-table-placeholder td {
|
|
2242
2294
|
border-bottom: none;
|
|
2243
2295
|
}
|
|
@@ -2250,6 +2302,25 @@ html {
|
|
|
2250
2302
|
padding: 7px 5px;
|
|
2251
2303
|
font-size: 12px;
|
|
2252
2304
|
}
|
|
2305
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-right-first,
|
|
2306
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-right-first,
|
|
2307
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-right-first,
|
|
2308
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-right-first,
|
|
2309
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-right-first,
|
|
2310
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-right-first {
|
|
2311
|
+
padding-left: 15px;
|
|
2312
|
+
}
|
|
2313
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-left-last,
|
|
2314
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-left-last,
|
|
2315
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-left-last,
|
|
2316
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-left-last,
|
|
2317
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-left-last,
|
|
2318
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
|
|
2319
|
+
padding-right: 15px;
|
|
2320
|
+
}
|
|
2321
|
+
.ant-table-summary .last-cell {
|
|
2322
|
+
padding-right: 18px;
|
|
2323
|
+
}
|
|
2253
2324
|
.ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
2254
2325
|
background-color: #f7fafc;
|
|
2255
2326
|
}
|