@open-condo/ui 2.48.0 → 2.49.0
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/components/Table/components/TableHeader.d.ts.map +1 -1
- package/dist/components/Table/components/TablePagination.d.ts.map +1 -1
- package/dist/components/Table/index.d.ts +1 -1
- package/dist/components/Table/index.d.ts.map +1 -1
- package/dist/components/Table/table.d.ts.map +1 -1
- package/dist/components/Table/types.d.ts +12 -3
- package/dist/components/Table/types.d.ts.map +1 -1
- package/dist/components/Table/utils/urlQuery.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +191 -105
- package/dist/style-vars/variables.css +1 -1
- package/dist/style-vars/variables.less +1 -1
- package/dist/styles.css +77 -10
- package/dist/styles.min.css +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -12096,6 +12096,9 @@ span.condo-radio + * {
|
|
|
12096
12096
|
height: 100%;
|
|
12097
12097
|
content: "";
|
|
12098
12098
|
}
|
|
12099
|
+
.condo-table-th-resize-handle .condo-table-th-resize-handle-active {
|
|
12100
|
+
background-color: #f2f4f6;
|
|
12101
|
+
}
|
|
12099
12102
|
.condo-table-th-resizing .condo-table-th-resize-handle::after {
|
|
12100
12103
|
position: absolute;
|
|
12101
12104
|
top: 0;
|
|
@@ -12294,17 +12297,89 @@ span.condo-radio + * {
|
|
|
12294
12297
|
border-radius: 8px;
|
|
12295
12298
|
transition: all 0.15s ease;
|
|
12296
12299
|
}
|
|
12300
|
+
.condo-table-pagination .condo-jump-prev .condo-item-link,
|
|
12301
|
+
.condo-table-pagination .condo-jump-next .condo-item-link {
|
|
12302
|
+
position: relative;
|
|
12303
|
+
padding: 0;
|
|
12304
|
+
}
|
|
12305
|
+
.condo-table-pagination .condo-jump-prev .condo-item-link .condo-item-link-icon,
|
|
12306
|
+
.condo-table-pagination .condo-jump-next .condo-item-link .condo-item-link-icon {
|
|
12307
|
+
color: #2bc359;
|
|
12308
|
+
font-size: 12px;
|
|
12309
|
+
vertical-align: 0;
|
|
12310
|
+
opacity: 0;
|
|
12311
|
+
transition: opacity 0.15s ease;
|
|
12312
|
+
}
|
|
12313
|
+
.condo-table-pagination .condo-jump-prev .condo-item-link .condo-item-link-icon-svg,
|
|
12314
|
+
.condo-table-pagination .condo-jump-next .condo-item-link .condo-item-link-icon-svg {
|
|
12315
|
+
position: absolute;
|
|
12316
|
+
top: 0;
|
|
12317
|
+
right: 0;
|
|
12318
|
+
bottom: 0;
|
|
12319
|
+
left: 0;
|
|
12320
|
+
width: 12px;
|
|
12321
|
+
height: 12px;
|
|
12322
|
+
margin: auto;
|
|
12323
|
+
}
|
|
12324
|
+
.condo-table-pagination .condo-jump-prev .condo-item-link .condo-item-ellipsis,
|
|
12325
|
+
.condo-table-pagination .condo-jump-next .condo-item-link .condo-item-ellipsis {
|
|
12326
|
+
position: absolute;
|
|
12327
|
+
top: 0;
|
|
12328
|
+
right: 0;
|
|
12329
|
+
bottom: 0;
|
|
12330
|
+
left: 0;
|
|
12331
|
+
display: flex;
|
|
12332
|
+
align-items: center;
|
|
12333
|
+
justify-content: center;
|
|
12334
|
+
width: 100%;
|
|
12335
|
+
height: 100%;
|
|
12336
|
+
margin: 0;
|
|
12337
|
+
padding: 0;
|
|
12338
|
+
color: rgba(0, 0, 0, 0.25);
|
|
12339
|
+
font-family: Arial, Helvetica, sans-serif;
|
|
12340
|
+
line-height: 1;
|
|
12341
|
+
text-align: center;
|
|
12342
|
+
text-indent: 0;
|
|
12343
|
+
background: transparent;
|
|
12344
|
+
border: none;
|
|
12345
|
+
opacity: 1;
|
|
12346
|
+
transition: opacity 0.15s ease;
|
|
12347
|
+
}
|
|
12348
|
+
.condo-table-pagination .condo-jump-prev .condo-item-link:hover .condo-item-link-icon,
|
|
12349
|
+
.condo-table-pagination .condo-jump-next .condo-item-link:hover .condo-item-link-icon,
|
|
12350
|
+
.condo-table-pagination .condo-jump-prev .condo-item-link.focus-visible .condo-item-link-icon,
|
|
12351
|
+
.condo-table-pagination .condo-jump-next .condo-item-link.focus-visible .condo-item-link-icon {
|
|
12352
|
+
opacity: 1;
|
|
12353
|
+
}
|
|
12354
|
+
.condo-table-pagination .condo-jump-prev .condo-item-link:hover .condo-item-link-icon,
|
|
12355
|
+
.condo-table-pagination .condo-jump-next .condo-item-link:hover .condo-item-link-icon,
|
|
12356
|
+
.condo-table-pagination .condo-jump-prev .condo-item-link:focus-visible .condo-item-link-icon,
|
|
12357
|
+
.condo-table-pagination .condo-jump-next .condo-item-link:focus-visible .condo-item-link-icon {
|
|
12358
|
+
opacity: 1;
|
|
12359
|
+
}
|
|
12360
|
+
.condo-table-pagination .condo-jump-prev .condo-item-link:hover .condo-item-ellipsis,
|
|
12361
|
+
.condo-table-pagination .condo-jump-next .condo-item-link:hover .condo-item-ellipsis,
|
|
12362
|
+
.condo-table-pagination .condo-jump-prev .condo-item-link.focus-visible .condo-item-ellipsis,
|
|
12363
|
+
.condo-table-pagination .condo-jump-next .condo-item-link.focus-visible .condo-item-ellipsis {
|
|
12364
|
+
opacity: 0;
|
|
12365
|
+
}
|
|
12366
|
+
.condo-table-pagination .condo-jump-prev .condo-item-link:hover .condo-item-ellipsis,
|
|
12367
|
+
.condo-table-pagination .condo-jump-next .condo-item-link:hover .condo-item-ellipsis,
|
|
12368
|
+
.condo-table-pagination .condo-jump-prev .condo-item-link:focus-visible .condo-item-ellipsis,
|
|
12369
|
+
.condo-table-pagination .condo-jump-next .condo-item-link:focus-visible .condo-item-ellipsis {
|
|
12370
|
+
opacity: 0;
|
|
12371
|
+
}
|
|
12297
12372
|
.condo-table-pagination .condo-prev.condo-disabled .condo-item-link,
|
|
12298
12373
|
.condo-table-pagination .condo-next.condo-disabled .condo-item-link {
|
|
12299
12374
|
color: #d0d3e5;
|
|
12300
12375
|
background-color: #f2f4f6;
|
|
12301
12376
|
border-color: #e1e5ed;
|
|
12302
12377
|
}
|
|
12378
|
+
.condo-table-pagination .condo-item:hover,
|
|
12303
12379
|
.condo-table-pagination .condo-jump-prev .condo-item-link:hover,
|
|
12304
12380
|
.condo-table-pagination .condo-jump-next .condo-item-link:hover,
|
|
12305
12381
|
.condo-table-pagination .condo-prev:not(.condo-disabled) .condo-item-link:hover,
|
|
12306
|
-
.condo-table-pagination .condo-next:not(.condo-disabled) .condo-item-link:hover
|
|
12307
|
-
.condo-table-pagination .condo-item:hover {
|
|
12382
|
+
.condo-table-pagination .condo-next:not(.condo-disabled) .condo-item-link:hover {
|
|
12308
12383
|
color: #2bc359;
|
|
12309
12384
|
border-color: #2bc359;
|
|
12310
12385
|
}
|
|
@@ -12316,14 +12391,6 @@ span.condo-radio + * {
|
|
|
12316
12391
|
.condo-table-pagination .condo-item-active a {
|
|
12317
12392
|
color: #2bc359;
|
|
12318
12393
|
}
|
|
12319
|
-
.condo-table-pagination .condo-item-ellipsis {
|
|
12320
|
-
display: flex;
|
|
12321
|
-
align-items: center;
|
|
12322
|
-
justify-content: center;
|
|
12323
|
-
color: #d0d3e5;
|
|
12324
|
-
background: transparent;
|
|
12325
|
-
border: none;
|
|
12326
|
-
}
|
|
12327
12394
|
.condo-dropdown-menu-item-inner {
|
|
12328
12395
|
display: flex;
|
|
12329
12396
|
gap: 8px;
|