@data-fair/lib-vuetify 2.0.0 → 2.0.2

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/index.js CHANGED
@@ -58,10 +58,13 @@ export function vuetifySessionOptions(session, cspNonce) {
58
58
  VSwitch: {
59
59
  color: 'primary'
60
60
  },
61
- vAutocomplete: {
61
+ VAutocomplete: {
62
62
  autocomplete: 'suppress'
63
63
  },
64
- vSelect: {
64
+ VSelect: {
65
+ autocomplete: 'suppress'
66
+ },
67
+ VCombobox: {
65
68
  autocomplete: 'suppress'
66
69
  }
67
70
  }
@@ -1,5 +1,6 @@
1
1
  <template>
2
2
  <!-- Right-side navigation drawer for larger screens -->
3
+ <!-- order=1 is to be to the left of the agent chat -->
3
4
  <v-navigation-drawer
4
5
  v-if="display.lgAndUp.value"
5
6
  color="background"
@@ -7,6 +8,7 @@
7
8
  location="right"
8
9
  permanent
9
10
  floating
11
+ order="1"
10
12
  >
11
13
  <template #default>
12
14
  <v-list
@@ -40,6 +40,7 @@ if (__VLS_ctx.display.lgAndUp.value) {
40
40
  location: "right",
41
41
  permanent: true,
42
42
  floating: true,
43
+ order: "1",
43
44
  }));
44
45
  const __VLS_2 = __VLS_1({
45
46
  color: "background",
@@ -47,6 +48,7 @@ if (__VLS_ctx.display.lgAndUp.value) {
47
48
  location: "right",
48
49
  permanent: true,
49
50
  floating: true,
51
+ order: "1",
50
52
  }, ...__VLS_functionalComponentArgsRest(__VLS_1));
51
53
  __VLS_3.slots.default;
52
54
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@data-fair/lib-vuetify",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "Components based on the Vuetify 3 UI lib for the data-fair stack.",
5
5
  "main": "index.js",
6
6
  "files": [
package/search-field.vue CHANGED
@@ -7,6 +7,7 @@
7
7
  color="primary"
8
8
  density="compact"
9
9
  variant="outlined"
10
+ autocomplete="suppress"
10
11
  autofocus
11
12
  hide-details
12
13
  clearable
@@ -16,6 +16,7 @@ const __VLS_1 = __VLS_asFunctionalComponent(__VLS_0, new __VLS_0({
16
16
  color: "primary",
17
17
  density: "compact",
18
18
  variant: "outlined",
19
+ autocomplete: "suppress",
19
20
  autofocus: true,
20
21
  hideDetails: true,
21
22
  clearable: true,
@@ -27,6 +28,7 @@ const __VLS_2 = __VLS_1({
27
28
  color: "primary",
28
29
  density: "compact",
29
30
  variant: "outlined",
31
+ autocomplete: "suppress",
30
32
  autofocus: true,
31
33
  hideDetails: true,
32
34
  clearable: true,
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <v-toolbar-items class="theme-switcher" v-if="session.fullSite.value?.theme.dark || session.fullSite.value?.theme.hc || session.fullSite.value?.theme.hcDark">
2
+ <v-toolbar-items class="theme-switcher" v-if="session.fullSite.value?.theme.dark || session.fullSite.value?.theme.hc || session.fullSite.value?.theme.hcDark">
3
3
  <v-menu
4
4
  offset-y
5
5
  class="ml-n4"