@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 +5 -2
- package/navigation-right.vue +2 -0
- package/navigation-right.vue.js +2 -0
- package/package.json +1 -1
- package/search-field.vue +1 -0
- package/search-field.vue.js +2 -0
- package/theme-switcher.vue +1 -1
package/index.js
CHANGED
|
@@ -58,10 +58,13 @@ export function vuetifySessionOptions(session, cspNonce) {
|
|
|
58
58
|
VSwitch: {
|
|
59
59
|
color: 'primary'
|
|
60
60
|
},
|
|
61
|
-
|
|
61
|
+
VAutocomplete: {
|
|
62
62
|
autocomplete: 'suppress'
|
|
63
63
|
},
|
|
64
|
-
|
|
64
|
+
VSelect: {
|
|
65
|
+
autocomplete: 'suppress'
|
|
66
|
+
},
|
|
67
|
+
VCombobox: {
|
|
65
68
|
autocomplete: 'suppress'
|
|
66
69
|
}
|
|
67
70
|
}
|
package/navigation-right.vue
CHANGED
|
@@ -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
|
package/navigation-right.vue.js
CHANGED
|
@@ -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
package/search-field.vue
CHANGED
package/search-field.vue.js
CHANGED
|
@@ -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,
|
package/theme-switcher.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<v-toolbar-items class="theme-switcher" v-if="session.fullSite.value?.theme.dark ||
|
|
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"
|