@geode/opengeodeweb-front 10.26.4-rc.1 → 10.27.0-rc.1

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.
@@ -32,6 +32,7 @@ watch(
32
32
  :class="{ 'is-expanded': showSearch }"
33
33
  >
34
34
  <ActionButton
35
+ data-testid="searchObjectsButton"
35
36
  :tooltip="showSearch ? 'Hide search' : 'Show search'"
36
37
  icon="mdi-magnify"
37
38
  tooltipLocation="bottom"
@@ -43,6 +44,7 @@ watch(
43
44
  <v-expand-x-transition>
44
45
  <div v-if="showSearch" class="flex-grow-1 ms-1 text-no-wrap overflow-hidden">
45
46
  <SearchBar
47
+ data-testid="searchObjectsInput"
46
48
  :model-value="search"
47
49
  placeholder="Search objects..."
48
50
  color="black"
@@ -67,6 +69,7 @@ watch(
67
69
  />
68
70
  </v-fade-transition>
69
71
  <ActionButton
72
+ data-testid="sortObjectsButton"
70
73
  :tooltip="'Sort by ' + (sortType === 'name' ? 'ID' : 'Name')"
71
74
  :icon="
72
75
  sortType === 'name' ? 'mdi-sort-alphabetical-ascending' : 'mdi-sort-numeric-ascending'
@@ -79,6 +82,7 @@ watch(
79
82
  <v-menu :close-on-content-click="false">
80
83
  <template #activator="{ props: menuProps }">
81
84
  <ActionButton
85
+ data-testid="filterObjectsButton"
82
86
  tooltip="Filter options"
83
87
  icon="mdi-filter-variant"
84
88
  variant="text"
@@ -94,6 +98,7 @@ watch(
94
98
  :label="category_id"
95
99
  hide-details
96
100
  density="compact"
101
+ :data-testid="'filterCheckbox-' + category_id"
97
102
  />
98
103
  </v-list-item>
99
104
  </v-list>
@@ -50,7 +50,11 @@ const tooltipDisabled = computed(() => {
50
50
  </script>
51
51
 
52
52
  <template>
53
- <div ref="label-container" class="tree-item-label-container w-100">
53
+ <div
54
+ ref="label-container"
55
+ :data-testid="'treeRow-' + actualItem.id"
56
+ class="tree-item-label-container w-100"
57
+ >
54
58
  <v-tooltip :disabled="tooltipDisabled" location="right" open-delay="400">
55
59
  <template #activator="{ props: tooltipProps }">
56
60
  <span
@@ -52,6 +52,7 @@ watch(pressed, (value) => {
52
52
  flat
53
53
  canvas-height="75"
54
54
  hide-inputs
55
+ hide-eye-dropper
55
56
  width="220"
56
57
  mode="rgba"
57
58
  class="mx-auto"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geode/opengeodeweb-front",
3
- "version": "10.26.4-rc.1",
3
+ "version": "10.27.0-rc.1",
4
4
  "description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
5
5
  "homepage": "https://github.com/Geode-solutions/OpenGeodeWeb-Front",
6
6
  "bugs": {