@open-condo/ui 2.47.1 → 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/ColumnSettings.d.ts +10 -0
- package/dist/components/Table/components/ColumnSettings.d.ts.map +1 -0
- package/dist/components/Table/components/ColumnSettingsItem.d.ts +13 -0
- package/dist/components/Table/components/ColumnSettingsItem.d.ts.map +1 -0
- package/dist/components/Table/components/TableBody.d.ts +13 -0
- package/dist/components/Table/components/TableBody.d.ts.map +1 -0
- package/dist/components/Table/components/TableHeader.d.ts +13 -0
- package/dist/components/Table/components/TableHeader.d.ts.map +1 -0
- package/dist/components/Table/components/TablePagination.d.ts +8 -0
- package/dist/components/Table/components/TablePagination.d.ts.map +1 -0
- package/dist/components/Table/constants.d.ts +7 -0
- package/dist/components/Table/constants.d.ts.map +1 -0
- package/dist/components/Table/hooks/useColumnOrder.d.ts +14 -0
- package/dist/components/Table/hooks/useColumnOrder.d.ts.map +1 -0
- package/dist/components/Table/hooks/useColumnSizing.d.ts +14 -0
- package/dist/components/Table/hooks/useColumnSizing.d.ts.map +1 -0
- package/dist/components/Table/hooks/useColumnVisibility.d.ts +13 -0
- package/dist/components/Table/hooks/useColumnVisibility.d.ts.map +1 -0
- package/dist/components/Table/hooks/useTableSetting.d.ts +18 -0
- package/dist/components/Table/hooks/useTableSetting.d.ts.map +1 -0
- package/dist/components/Table/index.d.ts +7 -0
- package/dist/components/Table/index.d.ts.map +1 -0
- package/dist/components/Table/table.d.ts +8 -0
- package/dist/components/Table/table.d.ts.map +1 -0
- package/dist/components/Table/types.d.ts +144 -0
- package/dist/components/Table/types.d.ts.map +1 -0
- package/dist/components/Table/utils/filterComponents.d.ts +37 -0
- package/dist/components/Table/utils/filterComponents.d.ts.map +1 -0
- package/dist/components/Table/utils/renderCellUtils.d.ts +13 -0
- package/dist/components/Table/utils/renderCellUtils.d.ts.map +1 -0
- package/dist/components/Table/utils/storage.d.ts +3 -0
- package/dist/components/Table/utils/storage.d.ts.map +1 -0
- package/dist/components/Table/utils/urlQuery.d.ts +29 -0
- package/dist/components/Table/utils/urlQuery.d.ts.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +46529 -33974
- package/dist/style-vars/variables.css +1 -1
- package/dist/style-vars/variables.less +1 -1
- package/dist/styles.css +557 -0
- package/dist/styles.min.css +1 -1
- package/package.json +6 -2
package/dist/styles.css
CHANGED
|
@@ -11925,6 +11925,563 @@ span.condo-radio + * {
|
|
|
11925
11925
|
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%);
|
|
11926
11926
|
}
|
|
11927
11927
|
|
|
11928
|
+
.condo-table-container {
|
|
11929
|
+
position: relative;
|
|
11930
|
+
width: 100%;
|
|
11931
|
+
font-family: "Wix Madefor Display", var(--condo-font-fallback);
|
|
11932
|
+
}
|
|
11933
|
+
.condo-table-wrapper {
|
|
11934
|
+
box-sizing: border-box;
|
|
11935
|
+
width: 100%;
|
|
11936
|
+
overflow-x: auto;
|
|
11937
|
+
background-color: #fff;
|
|
11938
|
+
border: 1px solid #d0d3e5;
|
|
11939
|
+
border-radius: 12px;
|
|
11940
|
+
border-collapse: separate;
|
|
11941
|
+
border-spacing: 0;
|
|
11942
|
+
}
|
|
11943
|
+
.condo-table {
|
|
11944
|
+
width: -webkit-fit-content;
|
|
11945
|
+
width: -moz-fit-content;
|
|
11946
|
+
width: fit-content;
|
|
11947
|
+
}
|
|
11948
|
+
.condo-table-thead {
|
|
11949
|
+
position: -webkit-sticky;
|
|
11950
|
+
position: sticky;
|
|
11951
|
+
top: 0;
|
|
11952
|
+
z-index: 10;
|
|
11953
|
+
display: flex;
|
|
11954
|
+
min-width: -webkit-fit-content;
|
|
11955
|
+
min-width: -moz-fit-content;
|
|
11956
|
+
min-width: fit-content;
|
|
11957
|
+
}
|
|
11958
|
+
.condo-table-tbody {
|
|
11959
|
+
display: flex;
|
|
11960
|
+
flex-direction: column;
|
|
11961
|
+
min-width: -webkit-fit-content;
|
|
11962
|
+
min-width: -moz-fit-content;
|
|
11963
|
+
min-width: fit-content;
|
|
11964
|
+
}
|
|
11965
|
+
.condo-table-loading-placeholder {
|
|
11966
|
+
min-height: 200px;
|
|
11967
|
+
}
|
|
11968
|
+
.condo-table-loading-overlay {
|
|
11969
|
+
position: absolute;
|
|
11970
|
+
top: 50px;
|
|
11971
|
+
right: 0;
|
|
11972
|
+
bottom: 0;
|
|
11973
|
+
left: 0;
|
|
11974
|
+
z-index: 1;
|
|
11975
|
+
display: flex;
|
|
11976
|
+
align-items: center;
|
|
11977
|
+
justify-content: center;
|
|
11978
|
+
pointer-events: none;
|
|
11979
|
+
}
|
|
11980
|
+
.condo-table-loading-spinner {
|
|
11981
|
+
width: 24px;
|
|
11982
|
+
height: 24px;
|
|
11983
|
+
border: 3px solid #f2f4f6;
|
|
11984
|
+
border-top: 3px solid #2bc359;
|
|
11985
|
+
border-radius: 50%;
|
|
11986
|
+
-webkit-animation: condo-table-loading-spin 1s linear infinite;
|
|
11987
|
+
animation: condo-table-loading-spin 1s linear infinite;
|
|
11988
|
+
}
|
|
11989
|
+
@-webkit-keyframes condo-table-loading-spin {
|
|
11990
|
+
0% {
|
|
11991
|
+
transform: rotate(0deg);
|
|
11992
|
+
}
|
|
11993
|
+
100% {
|
|
11994
|
+
transform: rotate(360deg);
|
|
11995
|
+
}
|
|
11996
|
+
}
|
|
11997
|
+
@keyframes condo-table-loading-spin {
|
|
11998
|
+
0% {
|
|
11999
|
+
transform: rotate(0deg);
|
|
12000
|
+
}
|
|
12001
|
+
100% {
|
|
12002
|
+
transform: rotate(360deg);
|
|
12003
|
+
}
|
|
12004
|
+
}
|
|
12005
|
+
.condo-table-th-more-icon {
|
|
12006
|
+
display: flex;
|
|
12007
|
+
align-items: center;
|
|
12008
|
+
opacity: 0;
|
|
12009
|
+
transition: all 0.15s ease;
|
|
12010
|
+
}
|
|
12011
|
+
.condo-table-th {
|
|
12012
|
+
position: relative;
|
|
12013
|
+
display: flex;
|
|
12014
|
+
align-items: center;
|
|
12015
|
+
box-sizing: border-box;
|
|
12016
|
+
min-width: 0;
|
|
12017
|
+
padding: 16px 12px;
|
|
12018
|
+
color: #707695;
|
|
12019
|
+
font-weight: 600;
|
|
12020
|
+
font-size: 12px;
|
|
12021
|
+
background-color: #fff;
|
|
12022
|
+
border: none;
|
|
12023
|
+
border-bottom: 1px solid #d0d3e5;
|
|
12024
|
+
cursor: pointer;
|
|
12025
|
+
-webkit-user-select: none;
|
|
12026
|
+
-moz-user-select: none;
|
|
12027
|
+
-ms-user-select: none;
|
|
12028
|
+
user-select: none;
|
|
12029
|
+
}
|
|
12030
|
+
.condo-table-th:hover {
|
|
12031
|
+
background-color: #f2f4f6;
|
|
12032
|
+
}
|
|
12033
|
+
.condo-table-th:hover .condo-table-th-more-icon {
|
|
12034
|
+
color: #707695;
|
|
12035
|
+
opacity: 1;
|
|
12036
|
+
}
|
|
12037
|
+
.condo-table-th:hover .condo-table-th-more-icon:hover {
|
|
12038
|
+
color: #2bc359;
|
|
12039
|
+
opacity: 1;
|
|
12040
|
+
}
|
|
12041
|
+
.condo-table-th.non-sortable {
|
|
12042
|
+
cursor: default;
|
|
12043
|
+
}
|
|
12044
|
+
.condo-table-th.condo-table-th-active {
|
|
12045
|
+
background: #f2f4f6;
|
|
12046
|
+
}
|
|
12047
|
+
.condo-table-th:first-child {
|
|
12048
|
+
border-top-left-radius: 12px;
|
|
12049
|
+
}
|
|
12050
|
+
.condo-table-th:last-child {
|
|
12051
|
+
border-right: none;
|
|
12052
|
+
border-top-right-radius: 12px;
|
|
12053
|
+
}
|
|
12054
|
+
.condo-table-th-content {
|
|
12055
|
+
display: flex;
|
|
12056
|
+
gap: 8px;
|
|
12057
|
+
align-items: center;
|
|
12058
|
+
justify-content: space-between;
|
|
12059
|
+
width: 100%;
|
|
12060
|
+
}
|
|
12061
|
+
.condo-table-th-title-content {
|
|
12062
|
+
flex: 1;
|
|
12063
|
+
min-width: 0;
|
|
12064
|
+
overflow: hidden;
|
|
12065
|
+
}
|
|
12066
|
+
.condo-table-th-icons {
|
|
12067
|
+
display: flex;
|
|
12068
|
+
gap: 8px;
|
|
12069
|
+
}
|
|
12070
|
+
.condo-table-th-resize-handle {
|
|
12071
|
+
position: absolute;
|
|
12072
|
+
top: 0;
|
|
12073
|
+
right: 0;
|
|
12074
|
+
z-index: 100;
|
|
12075
|
+
display: block;
|
|
12076
|
+
width: 4px;
|
|
12077
|
+
height: 100%;
|
|
12078
|
+
padding: 0;
|
|
12079
|
+
background-color: #fff;
|
|
12080
|
+
border: none;
|
|
12081
|
+
cursor: col-resize;
|
|
12082
|
+
-webkit-user-select: none;
|
|
12083
|
+
-moz-user-select: none;
|
|
12084
|
+
-ms-user-select: none;
|
|
12085
|
+
user-select: none;
|
|
12086
|
+
}
|
|
12087
|
+
.condo-table-th-resize-handle:hover {
|
|
12088
|
+
background-color: #2bc359;
|
|
12089
|
+
}
|
|
12090
|
+
.condo-table-th-resize-handle::after {
|
|
12091
|
+
position: absolute;
|
|
12092
|
+
top: 0;
|
|
12093
|
+
right: 0;
|
|
12094
|
+
z-index: 1000;
|
|
12095
|
+
width: 4px;
|
|
12096
|
+
height: 100%;
|
|
12097
|
+
content: "";
|
|
12098
|
+
}
|
|
12099
|
+
.condo-table-th-resize-handle .condo-table-th-resize-handle-active {
|
|
12100
|
+
background-color: #f2f4f6;
|
|
12101
|
+
}
|
|
12102
|
+
.condo-table-th-resizing .condo-table-th-resize-handle::after {
|
|
12103
|
+
position: absolute;
|
|
12104
|
+
top: 0;
|
|
12105
|
+
right: 0;
|
|
12106
|
+
right: var(--resize-line-position, 0);
|
|
12107
|
+
width: 4px;
|
|
12108
|
+
height: 100vh;
|
|
12109
|
+
background-color: #2bc359;
|
|
12110
|
+
content: "";
|
|
12111
|
+
pointer-events: none;
|
|
12112
|
+
}
|
|
12113
|
+
.condo-table-td {
|
|
12114
|
+
box-sizing: border-box;
|
|
12115
|
+
min-width: 0;
|
|
12116
|
+
padding: 16px 12px;
|
|
12117
|
+
color: #222;
|
|
12118
|
+
font-size: 14px;
|
|
12119
|
+
line-height: 24px;
|
|
12120
|
+
letter-spacing: -0.01em;
|
|
12121
|
+
border: none;
|
|
12122
|
+
border-bottom: 1px solid #d0d3e5;
|
|
12123
|
+
}
|
|
12124
|
+
.condo-table-tr:last-child .condo-table-td {
|
|
12125
|
+
border-bottom: none;
|
|
12126
|
+
}
|
|
12127
|
+
.condo-table-cell-skeleton {
|
|
12128
|
+
width: 100%;
|
|
12129
|
+
height: 24px;
|
|
12130
|
+
background: linear-gradient(90deg, #e1e5ed 25%, #d0d3e5 37%, #e1e5ed 63%);
|
|
12131
|
+
background-size: 400% 100%;
|
|
12132
|
+
border-radius: 6px;
|
|
12133
|
+
-webkit-animation: condo-skeleton-loading 1.4s ease infinite;
|
|
12134
|
+
animation: condo-skeleton-loading 1.4s ease infinite;
|
|
12135
|
+
}
|
|
12136
|
+
@-webkit-keyframes condo-skeleton-loading {
|
|
12137
|
+
0% {
|
|
12138
|
+
background-position: 100% 50%;
|
|
12139
|
+
}
|
|
12140
|
+
100% {
|
|
12141
|
+
background-position: 0 50%;
|
|
12142
|
+
}
|
|
12143
|
+
}
|
|
12144
|
+
@keyframes condo-skeleton-loading {
|
|
12145
|
+
0% {
|
|
12146
|
+
background-position: 100% 50%;
|
|
12147
|
+
}
|
|
12148
|
+
100% {
|
|
12149
|
+
background-position: 0 50%;
|
|
12150
|
+
}
|
|
12151
|
+
}
|
|
12152
|
+
.condo-table-tr {
|
|
12153
|
+
display: flex;
|
|
12154
|
+
outline: none;
|
|
12155
|
+
transition: background-color 0.15s ease;
|
|
12156
|
+
}
|
|
12157
|
+
.condo-table-tr:last-child {
|
|
12158
|
+
border-bottom: none;
|
|
12159
|
+
}
|
|
12160
|
+
.condo-table-tr.hoverable {
|
|
12161
|
+
cursor: pointer;
|
|
12162
|
+
}
|
|
12163
|
+
.condo-table-tr:hover {
|
|
12164
|
+
background-color: #f2f4f6;
|
|
12165
|
+
}
|
|
12166
|
+
.condo-table-tr:hover .condo-table-td {
|
|
12167
|
+
background-color: #f2f4f6;
|
|
12168
|
+
}
|
|
12169
|
+
.condo-table-tr:focus {
|
|
12170
|
+
outline: 2px solid #2bc359;
|
|
12171
|
+
outline-offset: -2px;
|
|
12172
|
+
}
|
|
12173
|
+
.condo-table-tr:focus:not(.focus-visible) {
|
|
12174
|
+
outline: none;
|
|
12175
|
+
}
|
|
12176
|
+
.condo-table-tr:focus:not(:focus-visible) {
|
|
12177
|
+
outline: none;
|
|
12178
|
+
}
|
|
12179
|
+
.condo-table-tr[role="button"] {
|
|
12180
|
+
cursor: pointer;
|
|
12181
|
+
}
|
|
12182
|
+
.condo-table-column-settings-dropdown {
|
|
12183
|
+
display: flex;
|
|
12184
|
+
flex-direction: column;
|
|
12185
|
+
gap: 16px;
|
|
12186
|
+
}
|
|
12187
|
+
.condo-table-column-settings-dropdown[\:has\(.condo-table-column-settings-item.is-dragging\)] * {
|
|
12188
|
+
cursor: -webkit-grabbing !important;
|
|
12189
|
+
cursor: grabbing !important;
|
|
12190
|
+
}
|
|
12191
|
+
.condo-table-column-settings-dropdown:has(.condo-table-column-settings-item.is-dragging) * {
|
|
12192
|
+
cursor: -webkit-grabbing !important;
|
|
12193
|
+
cursor: grabbing !important;
|
|
12194
|
+
}
|
|
12195
|
+
.condo-table-column-settings-item {
|
|
12196
|
+
position: relative;
|
|
12197
|
+
height: auto;
|
|
12198
|
+
background-color: transparent;
|
|
12199
|
+
border-radius: 4px;
|
|
12200
|
+
transition: background-color 0.15s ease;
|
|
12201
|
+
}
|
|
12202
|
+
.condo-table-column-settings-item.is-dragging {
|
|
12203
|
+
opacity: 0.3 !important;
|
|
12204
|
+
}
|
|
12205
|
+
.condo-table-grip-container {
|
|
12206
|
+
display: flex;
|
|
12207
|
+
align-items: center;
|
|
12208
|
+
justify-content: center;
|
|
12209
|
+
padding: 4px;
|
|
12210
|
+
color: #d0d3e5;
|
|
12211
|
+
background-color: transparent;
|
|
12212
|
+
border-radius: 4px;
|
|
12213
|
+
outline: none;
|
|
12214
|
+
transition: all 0.15s ease;
|
|
12215
|
+
}
|
|
12216
|
+
.condo-table-grip-container:hover {
|
|
12217
|
+
cursor: -webkit-grab;
|
|
12218
|
+
cursor: grab;
|
|
12219
|
+
}
|
|
12220
|
+
.condo-table-grip-container:active {
|
|
12221
|
+
cursor: -webkit-grabbing;
|
|
12222
|
+
cursor: grabbing;
|
|
12223
|
+
}
|
|
12224
|
+
.condo-table-grip-container:focus {
|
|
12225
|
+
outline: 2px solid #2bc359;
|
|
12226
|
+
outline-offset: 2px;
|
|
12227
|
+
}
|
|
12228
|
+
.condo-table-grip-container:focus:not(.focus-visible) {
|
|
12229
|
+
outline: none;
|
|
12230
|
+
}
|
|
12231
|
+
.condo-table-grip-container:focus:not(:focus-visible) {
|
|
12232
|
+
outline: none;
|
|
12233
|
+
}
|
|
12234
|
+
.condo-table-switch-container {
|
|
12235
|
+
display: block;
|
|
12236
|
+
outline: none;
|
|
12237
|
+
cursor: pointer;
|
|
12238
|
+
}
|
|
12239
|
+
.condo-table-switch-container:focus {
|
|
12240
|
+
outline: 2px solid #2bc359;
|
|
12241
|
+
outline-offset: 2px;
|
|
12242
|
+
}
|
|
12243
|
+
.condo-table-switch-container:focus:not(.focus-visible) {
|
|
12244
|
+
outline: none;
|
|
12245
|
+
}
|
|
12246
|
+
.condo-table-switch-container:focus:not(:focus-visible) {
|
|
12247
|
+
outline: none;
|
|
12248
|
+
}
|
|
12249
|
+
.condo-table-switch-container[aria-disabled="true"] {
|
|
12250
|
+
cursor: not-allowed;
|
|
12251
|
+
opacity: 0.6;
|
|
12252
|
+
}
|
|
12253
|
+
.condo-table-pagination {
|
|
12254
|
+
display: flex;
|
|
12255
|
+
gap: 8px;
|
|
12256
|
+
align-items: center;
|
|
12257
|
+
justify-content: start;
|
|
12258
|
+
width: 100%;
|
|
12259
|
+
margin: 0;
|
|
12260
|
+
padding: 16px 0;
|
|
12261
|
+
list-style: none;
|
|
12262
|
+
}
|
|
12263
|
+
.condo-table-pagination li {
|
|
12264
|
+
margin: 0;
|
|
12265
|
+
}
|
|
12266
|
+
.condo-table-pagination .condo-item {
|
|
12267
|
+
display: flex;
|
|
12268
|
+
align-items: center;
|
|
12269
|
+
justify-content: center;
|
|
12270
|
+
box-sizing: border-box;
|
|
12271
|
+
min-width: 30px;
|
|
12272
|
+
height: 30px;
|
|
12273
|
+
padding: 0 10px;
|
|
12274
|
+
color: #707695;
|
|
12275
|
+
background-color: #fff;
|
|
12276
|
+
border: 1px solid #d0d3e5;
|
|
12277
|
+
border-radius: 8px;
|
|
12278
|
+
transition: all 0.15s ease;
|
|
12279
|
+
}
|
|
12280
|
+
.condo-table-pagination .condo-item a {
|
|
12281
|
+
color: inherit;
|
|
12282
|
+
}
|
|
12283
|
+
.condo-table-pagination .condo-prev .condo-item-link,
|
|
12284
|
+
.condo-table-pagination .condo-next .condo-item-link,
|
|
12285
|
+
.condo-table-pagination .condo-jump-prev .condo-item-link,
|
|
12286
|
+
.condo-table-pagination .condo-jump-next .condo-item-link {
|
|
12287
|
+
display: flex;
|
|
12288
|
+
align-items: center;
|
|
12289
|
+
justify-content: center;
|
|
12290
|
+
box-sizing: border-box;
|
|
12291
|
+
min-width: 30px;
|
|
12292
|
+
height: 30px;
|
|
12293
|
+
padding: 0 10px;
|
|
12294
|
+
color: #707695;
|
|
12295
|
+
background-color: #fff;
|
|
12296
|
+
border: 1px solid #d0d3e5;
|
|
12297
|
+
border-radius: 8px;
|
|
12298
|
+
transition: all 0.15s ease;
|
|
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
|
+
}
|
|
12372
|
+
.condo-table-pagination .condo-prev.condo-disabled .condo-item-link,
|
|
12373
|
+
.condo-table-pagination .condo-next.condo-disabled .condo-item-link {
|
|
12374
|
+
color: #d0d3e5;
|
|
12375
|
+
background-color: #f2f4f6;
|
|
12376
|
+
border-color: #e1e5ed;
|
|
12377
|
+
}
|
|
12378
|
+
.condo-table-pagination .condo-item:hover,
|
|
12379
|
+
.condo-table-pagination .condo-jump-prev .condo-item-link:hover,
|
|
12380
|
+
.condo-table-pagination .condo-jump-next .condo-item-link:hover,
|
|
12381
|
+
.condo-table-pagination .condo-prev:not(.condo-disabled) .condo-item-link:hover,
|
|
12382
|
+
.condo-table-pagination .condo-next:not(.condo-disabled) .condo-item-link:hover {
|
|
12383
|
+
color: #2bc359;
|
|
12384
|
+
border-color: #2bc359;
|
|
12385
|
+
}
|
|
12386
|
+
.condo-table-pagination .condo-item-active {
|
|
12387
|
+
color: #2bc359;
|
|
12388
|
+
background-color: #ebfaef;
|
|
12389
|
+
border-color: #2bc359;
|
|
12390
|
+
}
|
|
12391
|
+
.condo-table-pagination .condo-item-active a {
|
|
12392
|
+
color: #2bc359;
|
|
12393
|
+
}
|
|
12394
|
+
.condo-dropdown-menu-item-inner {
|
|
12395
|
+
display: flex;
|
|
12396
|
+
gap: 8px;
|
|
12397
|
+
align-items: center;
|
|
12398
|
+
justify-content: space-between;
|
|
12399
|
+
}
|
|
12400
|
+
.condo-table-icon {
|
|
12401
|
+
transition: color 0.15s ease;
|
|
12402
|
+
}
|
|
12403
|
+
.condo-table-icon svg {
|
|
12404
|
+
color: #707695;
|
|
12405
|
+
}
|
|
12406
|
+
.condo-table-icon-green svg {
|
|
12407
|
+
color: #2bc359;
|
|
12408
|
+
}
|
|
12409
|
+
.condo-table-icon-gray svg {
|
|
12410
|
+
color: #707695;
|
|
12411
|
+
}
|
|
12412
|
+
.condo-table-icon-black svg {
|
|
12413
|
+
color: #222;
|
|
12414
|
+
}
|
|
12415
|
+
.condo-table-empty-icon svg {
|
|
12416
|
+
color: #707695;
|
|
12417
|
+
}
|
|
12418
|
+
.condo-dropdown-menu-item-inner-left {
|
|
12419
|
+
display: flex;
|
|
12420
|
+
gap: 8px;
|
|
12421
|
+
align-items: center;
|
|
12422
|
+
}
|
|
12423
|
+
.condo-dropdown-menu-item-inner-left:hover svg {
|
|
12424
|
+
color: #2bc359;
|
|
12425
|
+
}
|
|
12426
|
+
.condo-dropdown-menu-item-container:hover {
|
|
12427
|
+
color: #2bc359;
|
|
12428
|
+
}
|
|
12429
|
+
.condo-dropdown-menu-item-container:hover .condo-dropdown-menu-item-inner-left svg {
|
|
12430
|
+
color: #2bc359;
|
|
12431
|
+
}
|
|
12432
|
+
.condo-dropdown-menu-item-inner-left-active {
|
|
12433
|
+
color: #2bc359;
|
|
12434
|
+
}
|
|
12435
|
+
.condo-table-pagination-size-selector {
|
|
12436
|
+
padding: 4px 8px;
|
|
12437
|
+
color: #222;
|
|
12438
|
+
font-size: 14px;
|
|
12439
|
+
background: #fff;
|
|
12440
|
+
border: 1px solid #2bc359;
|
|
12441
|
+
border-radius: 6px;
|
|
12442
|
+
cursor: pointer;
|
|
12443
|
+
}
|
|
12444
|
+
.condo-table-pagination-size-selector:hover {
|
|
12445
|
+
border-color: #2bc359;
|
|
12446
|
+
}
|
|
12447
|
+
.condo-table-pagination-size-selector:focus {
|
|
12448
|
+
border-color: #2bc359;
|
|
12449
|
+
outline: none;
|
|
12450
|
+
box-shadow: 0 0 0 2px #ebfaef;
|
|
12451
|
+
}
|
|
12452
|
+
.condo-table-empty {
|
|
12453
|
+
display: flex;
|
|
12454
|
+
flex-direction: column;
|
|
12455
|
+
gap: 12px;
|
|
12456
|
+
align-items: center;
|
|
12457
|
+
justify-content: center;
|
|
12458
|
+
min-height: 200px;
|
|
12459
|
+
padding: 40px 20px;
|
|
12460
|
+
background: #fff;
|
|
12461
|
+
border-radius: 12px;
|
|
12462
|
+
}
|
|
12463
|
+
.condo-table-empty-content {
|
|
12464
|
+
display: flex;
|
|
12465
|
+
flex-direction: column;
|
|
12466
|
+
gap: 12px;
|
|
12467
|
+
align-items: center;
|
|
12468
|
+
color: #707695;
|
|
12469
|
+
font-size: 14px;
|
|
12470
|
+
text-align: center;
|
|
12471
|
+
}
|
|
12472
|
+
.condo-dropdown-menu-item-wrapper {
|
|
12473
|
+
padding: 16px;
|
|
12474
|
+
background-color: #fff;
|
|
12475
|
+
border-radius: 12px;
|
|
12476
|
+
box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
|
|
12477
|
+
}
|
|
12478
|
+
.condo-dropdown-menu-item-wrapper-reset-button {
|
|
12479
|
+
display: flex;
|
|
12480
|
+
align-items: center;
|
|
12481
|
+
justify-content: center;
|
|
12482
|
+
margin-top: 16px;
|
|
12483
|
+
}
|
|
12484
|
+
|
|
11928
12485
|
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
11929
12486
|
/* stylelint-disable no-duplicate-selectors */
|
|
11930
12487
|
/* stylelint-disable */
|