Compare commits
2 Commits
fc67590bde
...
dbe3d995b4
Author | SHA1 | Date |
---|---|---|
Lykin | dbe3d995b4 | |
Lykin | 8ab82534e1 |
|
@ -100,7 +100,7 @@ defineExpose({
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<n-input-group>
|
<n-input-group style="overflow: hidden">
|
||||||
<slot name="prepend" />
|
<slot name="prepend" />
|
||||||
<n-input
|
<n-input
|
||||||
v-model:value="inputData.filter"
|
v-model:value="inputData.filter"
|
||||||
|
@ -175,10 +175,22 @@ defineExpose({
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
//:deep(.n-input__prefix) {
|
:deep(.n-input) {
|
||||||
// max-width: 50%;
|
width: 100%;
|
||||||
//}
|
overflow: hidden;
|
||||||
//:deep(.n-tag__content) {
|
}
|
||||||
// overflow: hidden;
|
|
||||||
//}
|
:deep(.n-input__prefix) {
|
||||||
|
max-width: 50%;
|
||||||
|
|
||||||
|
& > div {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.n-tag__content) {
|
||||||
|
overflow: hidden;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -335,7 +335,7 @@ defineExpose({
|
||||||
<div class="content-wrapper flex-box-v">
|
<div class="content-wrapper flex-box-v">
|
||||||
<slot name="toolbar" />
|
<slot name="toolbar" />
|
||||||
<div class="tb2 value-item-part flex-box-h">
|
<div class="tb2 value-item-part flex-box-h">
|
||||||
<div class="flex-box-h">
|
<div class="flex-box-h" style="max-width: 50%">
|
||||||
<content-search-input
|
<content-search-input
|
||||||
ref="searchInputRef"
|
ref="searchInputRef"
|
||||||
@filter-changed="onFilterInput"
|
@filter-changed="onFilterInput"
|
||||||
|
|
|
@ -309,7 +309,7 @@ defineExpose({
|
||||||
<div class="content-wrapper flex-box-v">
|
<div class="content-wrapper flex-box-v">
|
||||||
<slot name="toolbar" />
|
<slot name="toolbar" />
|
||||||
<div class="tb2 value-item-part flex-box-h">
|
<div class="tb2 value-item-part flex-box-h">
|
||||||
<div class="flex-box-h">
|
<div class="flex-box-h" style="max-width: 50%">
|
||||||
<content-search-input
|
<content-search-input
|
||||||
ref="searchInputRef"
|
ref="searchInputRef"
|
||||||
@filter-changed="onFilterInput"
|
@filter-changed="onFilterInput"
|
||||||
|
|
|
@ -306,7 +306,7 @@ defineExpose({
|
||||||
<div class="content-wrapper flex-box-v">
|
<div class="content-wrapper flex-box-v">
|
||||||
<slot name="toolbar" />
|
<slot name="toolbar" />
|
||||||
<div class="tb2 value-item-part flex-box-h">
|
<div class="tb2 value-item-part flex-box-h">
|
||||||
<div class="flex-box-h">
|
<div class="flex-box-h" style="max-width: 50%">
|
||||||
<content-search-input
|
<content-search-input
|
||||||
ref="searchInputRef"
|
ref="searchInputRef"
|
||||||
@filter-changed="onFilterInput"
|
@filter-changed="onFilterInput"
|
||||||
|
|
|
@ -341,7 +341,7 @@ defineExpose({
|
||||||
<div class="content-wrapper flex-box-v">
|
<div class="content-wrapper flex-box-v">
|
||||||
<slot name="toolbar" />
|
<slot name="toolbar" />
|
||||||
<div class="tb2 value-item-part flex-box-h">
|
<div class="tb2 value-item-part flex-box-h">
|
||||||
<div class="flex-box-h">
|
<div class="flex-box-h" style="max-width: 50%">
|
||||||
<content-search-input
|
<content-search-input
|
||||||
ref="searchInputRef"
|
ref="searchInputRef"
|
||||||
@filter-changed="onFilterInput"
|
@filter-changed="onFilterInput"
|
||||||
|
|
|
@ -142,7 +142,7 @@
|
||||||
"remove_key": "Remove Key",
|
"remove_key": "Remove Key",
|
||||||
"new_key": "New Key",
|
"new_key": "New Key",
|
||||||
"load_more": "Load More Keys",
|
"load_more": "Load More Keys",
|
||||||
"load_all": "Load All Left Keys",
|
"load_all": "Load Remaining Keys",
|
||||||
"load_more_entries": "Load More",
|
"load_more_entries": "Load More",
|
||||||
"load_all_entries": "Load All",
|
"load_all_entries": "Load All",
|
||||||
"more_action": "More Actions",
|
"more_action": "More Actions",
|
||||||
|
|
Loading…
Reference in New Issue