henry-search 1.0.29 → 1.0.30
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/HenrySearch.css +1 -1
- package/dist/HenrySearch.js +160 -156
- package/dist/HenrySearch.umd.cjs +3 -3
- package/package.json +1 -1
- package/src/components/SearchTab.vue +7 -2
- package/src/styles/molecules/dateRange/index.scss +18 -1
- package/src/styles/organisms/filters/index.scss +1 -1
- package/src/styles/templates/eventsSearch/index.scss +1 -1
package/package.json
CHANGED
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
import pSelect from '@vueform/multiselect'
|
|
28
|
+
import { truncate } from 'lodash';
|
|
28
29
|
|
|
29
30
|
const props = defineProps({
|
|
30
31
|
indexName: {
|
|
@@ -514,13 +515,15 @@
|
|
|
514
515
|
});
|
|
515
516
|
|
|
516
517
|
}"
|
|
518
|
+
:auto-apply="true"
|
|
519
|
+
:year-range="[1850,2050]"
|
|
517
520
|
:teleport="true"
|
|
518
521
|
:clearable="false"
|
|
519
522
|
:multi-calendars="false"
|
|
520
523
|
:enable-time-picker="false"
|
|
521
524
|
:enter-submit="true"
|
|
522
525
|
:tab-submit="true"
|
|
523
|
-
:text-input="
|
|
526
|
+
:text-input="false"
|
|
524
527
|
placeholder="Start"
|
|
525
528
|
id="start"
|
|
526
529
|
/>
|
|
@@ -532,9 +535,11 @@
|
|
|
532
535
|
min: formatMinValue(currentRefinement.min, range.min),
|
|
533
536
|
max: formatMaxValue(modelValue/1000, range.max),
|
|
534
537
|
})}"
|
|
538
|
+
:auto-apply="true"
|
|
539
|
+
:year-range="[1850,2050]"
|
|
535
540
|
:teleport="true"
|
|
536
541
|
:clearable="false"
|
|
537
|
-
:text-input="
|
|
542
|
+
:text-input="false"
|
|
538
543
|
:enter-submit="true"
|
|
539
544
|
:tab-submit="true"
|
|
540
545
|
:multi-calendars="false"
|
|
@@ -188,4 +188,21 @@
|
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
|
|
191
|
-
}
|
|
191
|
+
}
|
|
192
|
+
#start {
|
|
193
|
+
.dp__menu {
|
|
194
|
+
left: 8rem !important;
|
|
195
|
+
@include at(md) {
|
|
196
|
+
left: 0 !important;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
// #end {
|
|
202
|
+
// .dp__menu {
|
|
203
|
+
// left: 4rem !important;
|
|
204
|
+
// @include at(md) {
|
|
205
|
+
// left: 0 !important;
|
|
206
|
+
// }
|
|
207
|
+
// }
|
|
208
|
+
// }
|