@dataloop-ai/components 0.19.151 → 0.19.153
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/package.json +1 -1
- package/src/assets/globals.scss +1 -1
- package/src/components/compound/DlSearches/DlSmartSearch/components/DlSmartSearchInput.vue +6 -4
- package/src/components/compound/DlTable/hooks/tablePagination.ts +2 -2
- package/src/components/compound/DlTable/styles/dl-table-styles.scss +0 -8
- package/src/demos/DlInputDemo.vue +1 -1
- package/src/demos/DlTableDemo.vue +2 -1
package/package.json
CHANGED
package/src/assets/globals.scss
CHANGED
|
@@ -205,7 +205,7 @@ body {
|
|
|
205
205
|
--dl-color-fill-third: #fbfbfb;
|
|
206
206
|
--dl-color-link: #20abfa;
|
|
207
207
|
--dl-color-cell-background: #fffae2;
|
|
208
|
-
--dl-color-disabled-slider: #
|
|
208
|
+
--dl-color-disabled-slider: #B3B3B3;
|
|
209
209
|
--q-color-positive: #38d079;
|
|
210
210
|
--q-color-warning: #e1b75b;
|
|
211
211
|
|
|
@@ -468,13 +468,15 @@ export default defineComponent({
|
|
|
468
468
|
emit('focus')
|
|
469
469
|
}
|
|
470
470
|
|
|
471
|
-
const processBlur = () => {
|
|
471
|
+
const processBlur = (force: boolean = false) => {
|
|
472
472
|
input.value.scrollLeft = 0
|
|
473
473
|
input.value.scrollTop = 0
|
|
474
474
|
focused.value = false
|
|
475
475
|
expanded.value = true
|
|
476
|
-
|
|
477
|
-
|
|
476
|
+
if (!force) {
|
|
477
|
+
updateJSONQuery()
|
|
478
|
+
emit('blur')
|
|
479
|
+
}
|
|
478
480
|
}
|
|
479
481
|
|
|
480
482
|
const blur = (
|
|
@@ -497,7 +499,7 @@ export default defineComponent({
|
|
|
497
499
|
return
|
|
498
500
|
}
|
|
499
501
|
|
|
500
|
-
processBlur()
|
|
502
|
+
processBlur(force)
|
|
501
503
|
} else {
|
|
502
504
|
focus()
|
|
503
505
|
cancelBlur.value = cancelBlur.value - 1
|
|
@@ -97,8 +97,8 @@ export function useTablePaginationState(
|
|
|
97
97
|
const computedPagination = computed(() => {
|
|
98
98
|
const pag = pagination.value
|
|
99
99
|
? {
|
|
100
|
-
...
|
|
101
|
-
...
|
|
100
|
+
...pagination.value,
|
|
101
|
+
...innerPagination.value
|
|
102
102
|
}
|
|
103
103
|
: innerPagination.value
|
|
104
104
|
|