@data-fair/lib-vuetify 1.12.3 → 1.12.5
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 +9 -0
- package/package.json +3 -2
package/index.js
CHANGED
|
@@ -84,6 +84,15 @@ export function defaultOptions(searchParams, darkCookie = false, locale = 'fr')
|
|
|
84
84
|
// grey outlined card by default
|
|
85
85
|
variant: 'outlined',
|
|
86
86
|
style: 'border-color: rgba(var(--v-theme-on-surface), var(--v-focus-opacity)) !important;'
|
|
87
|
+
},
|
|
88
|
+
VColorPicker: {
|
|
89
|
+
mode: 'hex'
|
|
90
|
+
},
|
|
91
|
+
VCheckbox: {
|
|
92
|
+
color: 'primary'
|
|
93
|
+
},
|
|
94
|
+
VSwitch: {
|
|
95
|
+
color: 'primary'
|
|
87
96
|
}
|
|
88
97
|
}
|
|
89
98
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@data-fair/lib-vuetify",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.5",
|
|
4
4
|
"description": "Components based on the Vuetify 3 UI lib for the data-fair stack.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"type": "module",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@data-fair/lib-common-types": "^1.10.4",
|
|
27
|
-
"@mdi/js": "^7.4.47"
|
|
27
|
+
"@mdi/js": "^7.4.47",
|
|
28
|
+
"@vueuse/core": "^14.0.0"
|
|
28
29
|
}
|
|
29
30
|
}
|