@verdnatura/vn-front-lib 0.0.6 → 0.0.8
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/components-DYhCRzkD.cjs +1 -0
- package/dist/components-DyCtjyed.js +2392 -0
- package/dist/components.cjs +1 -1
- package/dist/components.js +1 -1
- package/dist/utils-DEjhADAQ.js +19 -0
- package/dist/utils-lBWNXW70.cjs +1 -0
- package/dist/utils.cjs +1 -0
- package/dist/utils.js +2 -0
- package/dist/vn-front-lib.cjs +1 -1
- package/dist/vn-front-lib.js +1925 -6
- package/lib/components/inputs/VnInput.vue +2 -1
- package/package.json +5 -1
- package/dist/components-BK0ivbyE.js +0 -2473
- package/dist/components-CcyuocvQ.cjs +0 -1
|
@@ -165,6 +165,7 @@ onMounted(() => {
|
|
|
165
165
|
:lazy-rules="true"
|
|
166
166
|
hide-bottom-space
|
|
167
167
|
:data-cy="($attrs['data-cy'] ?? $attrs.label) + '_input'"
|
|
168
|
+
dense
|
|
168
169
|
>
|
|
169
170
|
<template #hint v-if="$slots.hint">
|
|
170
171
|
<slot name="hint" />
|
|
@@ -230,7 +231,7 @@ onMounted(() => {
|
|
|
230
231
|
}
|
|
231
232
|
|
|
232
233
|
.uppercase-icon:hover {
|
|
233
|
-
color:
|
|
234
|
+
color: var(--q-color-primary);
|
|
234
235
|
transform: scale(1.2);
|
|
235
236
|
}
|
|
236
237
|
</style>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdnatura/vn-front-lib",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "Vue 3 component and composable library",
|
|
5
5
|
"license": "GPL-3.0",
|
|
6
6
|
"author": "Verdnatura Levante SL",
|
|
@@ -32,6 +32,10 @@
|
|
|
32
32
|
"import": "./dist/stores.js",
|
|
33
33
|
"require": "./dist/stores.cjs"
|
|
34
34
|
},
|
|
35
|
+
"./utils": {
|
|
36
|
+
"import": "./dist/utils.js",
|
|
37
|
+
"require": "./dist/utils.cjs"
|
|
38
|
+
},
|
|
35
39
|
"./style.css": "./dist/vn-front-lib.css"
|
|
36
40
|
},
|
|
37
41
|
"scripts": {
|