@vcita/design-system 1.1.0 → 1.1.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.
- package/CHANGELOG.MD +1 -0
- package/config/locales/ds.de.yml +20 -2
- package/config/locales/ds.en.yml +8 -8
- package/config/locales/ds.es.yml +19 -1
- package/config/locales/ds.fr.yml +19 -1
- package/config/locales/ds.he.yml +19 -1
- package/config/locales/ds.it.yml +19 -1
- package/config/locales/ds.keys.yml +18 -0
- package/config/locales/ds.nl.yml +19 -1
- package/config/locales/ds.pl.yml +20 -2
- package/config/locales/ds.pseudo.yml +18 -0
- package/config/locales/ds.pt.yml +19 -1
- package/dist/@vcita/design-system.esm.js +103 -3
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +169 -4
- package/package.json +1 -1
- package/src/components/VcTextField/VcTextField.spec.js +63 -1
- package/src/components/VcTextField/VcTextField.stories.js +41 -0
- package/src/components/VcTextField/VcTextField.vue +82 -0
- package/src/components/VcTextField/VcTextFieldPreload.spec.js +86 -0
- package/src/components/VcTextField/googleAddressMock.js +28 -0
package/CHANGELOG.MD
CHANGED
|
@@ -5,6 +5,7 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
### Unreleased changes
|
|
8
|
+
- VcTextField - add google address autocomplete
|
|
8
9
|
|
|
9
10
|
### 1.1.0 (2022-08-08)
|
|
10
11
|
- VcDocItem - implemented uploaded and corrupted states
|
package/config/locales/ds.de.yml
CHANGED
|
@@ -6,11 +6,29 @@ de:
|
|
|
6
6
|
next: Weiter
|
|
7
7
|
modal:
|
|
8
8
|
cancel: Abbrechen
|
|
9
|
-
ok:
|
|
9
|
+
ok: Ok
|
|
10
10
|
done: Fertig
|
|
11
11
|
progress_circular:
|
|
12
12
|
next: 'Weiter:'
|
|
13
13
|
listbox:
|
|
14
14
|
add: Neuen Kontakt hinzufügen
|
|
15
|
+
empty_list: Keine Ergebnisse gefunden
|
|
15
16
|
dropzone:
|
|
16
|
-
default_title:
|
|
17
|
+
default_title: Absenden
|
|
18
|
+
search_bar:
|
|
19
|
+
label: Suchen
|
|
20
|
+
time_since:
|
|
21
|
+
years: Vor {years} Jahren
|
|
22
|
+
months: Vor {months} Monaten
|
|
23
|
+
days: Vor {days} Tagen
|
|
24
|
+
yesterday: Gestern
|
|
25
|
+
hours: Vor {hours} Stunden
|
|
26
|
+
minutes: Vor {minutes} Minuten
|
|
27
|
+
now: Jetzt
|
|
28
|
+
document:
|
|
29
|
+
signature:
|
|
30
|
+
corrupted: Dateityp wird nicht unterstützt und konnte nicht hochgeladen werden
|
|
31
|
+
multi_select:
|
|
32
|
+
no_data: Keine Daten verfügbar.
|
|
33
|
+
placeholder:
|
|
34
|
+
error_label: Bitte eine Dienstleistung auswählen
|
package/config/locales/ds.en.yml
CHANGED
|
@@ -18,17 +18,17 @@ en:
|
|
|
18
18
|
search_bar:
|
|
19
19
|
label: Search
|
|
20
20
|
time_since:
|
|
21
|
-
years:
|
|
22
|
-
months:
|
|
23
|
-
days:
|
|
24
|
-
yesterday:
|
|
25
|
-
hours:
|
|
26
|
-
minutes:
|
|
27
|
-
now:
|
|
21
|
+
years: "{years} years ago"
|
|
22
|
+
months: "{months} months ago"
|
|
23
|
+
days: "{days} days ago"
|
|
24
|
+
yesterday: Yesterday
|
|
25
|
+
hours: "{hours} hours ago"
|
|
26
|
+
minutes: "{minutes} minutes ago"
|
|
27
|
+
now: Just now
|
|
28
28
|
document:
|
|
29
29
|
signature: E-Signature
|
|
30
30
|
corrupted: File type not supported and could not be uploaded
|
|
31
31
|
multi_select:
|
|
32
32
|
no_data: No data available
|
|
33
33
|
placeholder: Select items
|
|
34
|
-
error_label: Please select an item
|
|
34
|
+
error_label: Please select an item
|
package/config/locales/ds.es.yml
CHANGED
|
@@ -12,5 +12,23 @@ es:
|
|
|
12
12
|
next: 'Siguiente:'
|
|
13
13
|
listbox:
|
|
14
14
|
add: Agregar nuevo contacto
|
|
15
|
+
empty_list: No se encontró ningún resultado
|
|
15
16
|
dropzone:
|
|
16
|
-
default_title:
|
|
17
|
+
default_title: Enviar
|
|
18
|
+
search_bar:
|
|
19
|
+
label: Buscar
|
|
20
|
+
time_since:
|
|
21
|
+
years: Hace {years} años
|
|
22
|
+
months: Hace {months} meses
|
|
23
|
+
days: Hace {days} días
|
|
24
|
+
yesterday: Ayer
|
|
25
|
+
hours: Hace {hours} horas
|
|
26
|
+
minutes: Hace {minutes} minutos
|
|
27
|
+
now: Justo ahora
|
|
28
|
+
document:
|
|
29
|
+
signature:
|
|
30
|
+
corrupted: El tipo de archivo no es compatible y no se pudo subir
|
|
31
|
+
multi_select:
|
|
32
|
+
no_data: No hay datos disponibles
|
|
33
|
+
placeholder:
|
|
34
|
+
error_label: Por favor seleccione un producto
|
package/config/locales/ds.fr.yml
CHANGED
|
@@ -12,5 +12,23 @@ fr:
|
|
|
12
12
|
next: 'Suivant :'
|
|
13
13
|
listbox:
|
|
14
14
|
add: Ajouter nouveau contact
|
|
15
|
+
empty_list: Aucun résultat à afficher
|
|
15
16
|
dropzone:
|
|
16
|
-
default_title:
|
|
17
|
+
default_title: Envoyer
|
|
18
|
+
search_bar:
|
|
19
|
+
label: Lancer une recherche
|
|
20
|
+
time_since:
|
|
21
|
+
years: il y a {years} années
|
|
22
|
+
months: il y a {months} mois
|
|
23
|
+
days: il y a {days} jours
|
|
24
|
+
yesterday: Hier
|
|
25
|
+
hours: il y a {hours} heures
|
|
26
|
+
minutes: il y a {minutes} minutes
|
|
27
|
+
now: A l'instant
|
|
28
|
+
document:
|
|
29
|
+
signature:
|
|
30
|
+
corrupted: Ce type de fichier n'est pas pris en charge et n'a pas pu être chargé
|
|
31
|
+
multi_select:
|
|
32
|
+
no_data: Aucune donnée à afficher
|
|
33
|
+
placeholder:
|
|
34
|
+
error_label: Veuillez sélectionner un article
|
package/config/locales/ds.he.yml
CHANGED
|
@@ -12,5 +12,23 @@ he:
|
|
|
12
12
|
next: "הבא:"
|
|
13
13
|
listbox:
|
|
14
14
|
add: "הוספה של איש קשר חדש"
|
|
15
|
+
empty_list: "לא נמצאו תוצאות"
|
|
15
16
|
dropzone:
|
|
16
|
-
default_title:
|
|
17
|
+
default_title: "שלח"
|
|
18
|
+
search_bar:
|
|
19
|
+
label: "חיפוש"
|
|
20
|
+
time_since:
|
|
21
|
+
years: "לפני {years} שנים"
|
|
22
|
+
months: "לפני {months} חודשים"
|
|
23
|
+
days: "לפני {days} ימים"
|
|
24
|
+
yesterday: "אתמול"
|
|
25
|
+
hours: "לפני {hours} שעות"
|
|
26
|
+
minutes: "לפני {minutes} דקות"
|
|
27
|
+
now: "הרגע"
|
|
28
|
+
document:
|
|
29
|
+
signature:
|
|
30
|
+
corrupted: "אין אפשרות להעלות את הקובץ מאחר וסוג קובץ זה לא נתמך"
|
|
31
|
+
multi_select:
|
|
32
|
+
no_data: "לא קיימים נתונים שאפשר להציג"
|
|
33
|
+
placeholder:
|
|
34
|
+
error_label: "בחרו פריט מהרשימה"
|
package/config/locales/ds.it.yml
CHANGED
|
@@ -12,5 +12,23 @@ it:
|
|
|
12
12
|
next: 'Avanti:'
|
|
13
13
|
listbox:
|
|
14
14
|
add: Aggiungi nuovo contatto
|
|
15
|
+
empty_list: Nessun risultato trovato
|
|
15
16
|
dropzone:
|
|
16
|
-
default_title:
|
|
17
|
+
default_title: Invia
|
|
18
|
+
search_bar:
|
|
19
|
+
label: Cerca
|
|
20
|
+
time_since:
|
|
21
|
+
years: "{years} anni fa"
|
|
22
|
+
months: "{months} mesi fa"
|
|
23
|
+
days: "{days} anni fa"
|
|
24
|
+
yesterday: Ieri
|
|
25
|
+
hours: "{hours} anni fa"
|
|
26
|
+
minutes: "{minutes} minuti fa"
|
|
27
|
+
now: Adesso
|
|
28
|
+
document:
|
|
29
|
+
signature:
|
|
30
|
+
corrupted: Tipo di file non supportato e non può essere caricato
|
|
31
|
+
multi_select:
|
|
32
|
+
no_data: Nessun dato disponibile
|
|
33
|
+
placeholder:
|
|
34
|
+
error_label: Per favore seleziona una voce
|
|
@@ -12,5 +12,23 @@ keys:
|
|
|
12
12
|
next: ds.progress_circular.next
|
|
13
13
|
listbox:
|
|
14
14
|
add: ds.listbox.add
|
|
15
|
+
empty_list: ds.listbox.empty_list
|
|
15
16
|
dropzone:
|
|
16
17
|
default_title: ds.dropzone.default_title
|
|
18
|
+
search_bar:
|
|
19
|
+
label: ds.search_bar.label
|
|
20
|
+
time_since:
|
|
21
|
+
years: ds.time_since.years
|
|
22
|
+
months: ds.time_since.months
|
|
23
|
+
days: ds.time_since.days
|
|
24
|
+
yesterday: ds.time_since.yesterday
|
|
25
|
+
hours: ds.time_since.hours
|
|
26
|
+
minutes: ds.time_since.minutes
|
|
27
|
+
now: ds.time_since.now
|
|
28
|
+
document:
|
|
29
|
+
signature: ds.document.signature
|
|
30
|
+
corrupted: ds.document.corrupted
|
|
31
|
+
multi_select:
|
|
32
|
+
no_data: ds.multi_select.no_data
|
|
33
|
+
placeholder: ds.multi_select.placeholder
|
|
34
|
+
error_label: ds.multi_select.error_label
|
package/config/locales/ds.nl.yml
CHANGED
|
@@ -12,5 +12,23 @@ nl:
|
|
|
12
12
|
next: 'Volgende:'
|
|
13
13
|
listbox:
|
|
14
14
|
add: Nieuw contact toevoegen
|
|
15
|
+
empty_list: Geen resultaat gevonden
|
|
15
16
|
dropzone:
|
|
16
|
-
default_title:
|
|
17
|
+
default_title: Opslaan
|
|
18
|
+
search_bar:
|
|
19
|
+
label: Zoek
|
|
20
|
+
time_since:
|
|
21
|
+
years: "{years} jaar geleden"
|
|
22
|
+
months: "{months} maanden geleden"
|
|
23
|
+
days: "{days} dagen geleden"
|
|
24
|
+
yesterday: Gisteren
|
|
25
|
+
hours: "{hours} uur geleden"
|
|
26
|
+
minutes: "{minutes} minuten geleden"
|
|
27
|
+
now: Precies nu
|
|
28
|
+
document:
|
|
29
|
+
signature:
|
|
30
|
+
corrupted: Bestandstype niet ondersteund en kon niet worden geüpload
|
|
31
|
+
multi_select:
|
|
32
|
+
no_data: Geen data beschikbaar
|
|
33
|
+
placeholder:
|
|
34
|
+
error_label: Selecteer een item
|
package/config/locales/ds.pl.yml
CHANGED
|
@@ -6,11 +6,29 @@ pl:
|
|
|
6
6
|
next: Dalej
|
|
7
7
|
modal:
|
|
8
8
|
cancel: Anuluj
|
|
9
|
-
ok:
|
|
9
|
+
ok: OK
|
|
10
10
|
done: Gotowe
|
|
11
11
|
progress_circular:
|
|
12
12
|
next: 'Dalej:'
|
|
13
13
|
listbox:
|
|
14
14
|
add: Dodaj nowy kontakt
|
|
15
|
+
empty_list: Brak wyników
|
|
15
16
|
dropzone:
|
|
16
|
-
default_title:
|
|
17
|
+
default_title: Wyślij
|
|
18
|
+
search_bar:
|
|
19
|
+
label: Szukaj
|
|
20
|
+
time_since:
|
|
21
|
+
years: "{years} lat(a) temu"
|
|
22
|
+
months: "{months} miesiące(-y) temu"
|
|
23
|
+
days: "{days} dni temu"
|
|
24
|
+
yesterday: Wczoraj
|
|
25
|
+
hours: "{hours} godz. temu"
|
|
26
|
+
minutes: "{minutes} min temu"
|
|
27
|
+
now: Teraz
|
|
28
|
+
document:
|
|
29
|
+
signature:
|
|
30
|
+
corrupted: Typ pliku jest nieobsługiwany i nie można go wgrać
|
|
31
|
+
multi_select:
|
|
32
|
+
no_data: Brak danych
|
|
33
|
+
placeholder:
|
|
34
|
+
error_label: Wybierz element
|
|
@@ -12,5 +12,23 @@ pseudo:
|
|
|
12
12
|
next: 'Néxt: Néx'
|
|
13
13
|
listbox:
|
|
14
14
|
add: "Ädd néw çontåçt Ädd néw"
|
|
15
|
+
empty_list: No réšult found No réšu
|
|
15
16
|
dropzone:
|
|
16
17
|
default_title: Submit Sub
|
|
18
|
+
search_bar:
|
|
19
|
+
label: Séårçh Séå
|
|
20
|
+
time_since:
|
|
21
|
+
years: "{yéårš} yéårš ågo {yéårš} "
|
|
22
|
+
months: "{monthš} monthš ågo {monthš} "
|
|
23
|
+
days: "{dåyš} dåyš ågo {dåyš} "
|
|
24
|
+
yesterday: Yéštérdåy Yéšté
|
|
25
|
+
hours: "{hourš} hourš ågo {hourš} "
|
|
26
|
+
minutes: "{minutéš} minutéš ågo {minutéš}"
|
|
27
|
+
now: Jušt now Jušt
|
|
28
|
+
document:
|
|
29
|
+
signature: "Ę-Signåturé Ę-Sig"
|
|
30
|
+
corrupted: Filé typé not šupportéd ånd çould not bé uploådéd Filé typé not šupport
|
|
31
|
+
multi_select:
|
|
32
|
+
no_data: 'No dåtå åvåilåblé No dåtå '
|
|
33
|
+
placeholder: Séléçt itémš Séléçt
|
|
34
|
+
error_label: Pléåšé šéléçt ån itém Pléåšé šé
|
package/config/locales/ds.pt.yml
CHANGED
|
@@ -12,5 +12,23 @@ pt:
|
|
|
12
12
|
next: Próximo;
|
|
13
13
|
listbox:
|
|
14
14
|
add: Adicionar contato novo
|
|
15
|
+
empty_list: Nenhum resultado encontrado
|
|
15
16
|
dropzone:
|
|
16
|
-
default_title:
|
|
17
|
+
default_title: Enviar
|
|
18
|
+
search_bar:
|
|
19
|
+
label: Procurar
|
|
20
|
+
time_since:
|
|
21
|
+
years: Há {years} anos
|
|
22
|
+
months: Há {months} meses
|
|
23
|
+
days: Há {days} dias
|
|
24
|
+
yesterday: Ontem
|
|
25
|
+
hours: Há {hours} horas
|
|
26
|
+
minutes: Há {minutes} minutos
|
|
27
|
+
now: Agora mesmo
|
|
28
|
+
document:
|
|
29
|
+
signature:
|
|
30
|
+
corrupted: O tipo de arquivo não é suportado e não pode ser carregado
|
|
31
|
+
multi_select:
|
|
32
|
+
no_data: Sem data disponível
|
|
33
|
+
placeholder:
|
|
34
|
+
error_label: Selecionar um item
|
|
@@ -3601,7 +3601,107 @@ var script$A = {
|
|
|
3601
3601
|
singleLine: {
|
|
3602
3602
|
type: Boolean,
|
|
3603
3603
|
default: false
|
|
3604
|
+
},
|
|
3605
|
+
googleAddressAutoComplete: {
|
|
3606
|
+
type: Boolean,
|
|
3607
|
+
default: false
|
|
3608
|
+
},
|
|
3609
|
+
googleAddressCountryOptions: {
|
|
3610
|
+
type: Array,
|
|
3611
|
+
default: () => []
|
|
3612
|
+
}
|
|
3613
|
+
},
|
|
3614
|
+
|
|
3615
|
+
mounted() {
|
|
3616
|
+
if (this.googleAddressAutoComplete) {
|
|
3617
|
+
var _window$google;
|
|
3618
|
+
|
|
3619
|
+
const googleAddressScriptId = 'googleAddressScript';
|
|
3620
|
+
const existingScript = document.getElementById(googleAddressScriptId);
|
|
3621
|
+
const autoCompleteClass = (_window$google = window.google) === null || _window$google === void 0 ? void 0 : _window$google.maps.places.Autocomplete; // Script loading completed
|
|
3622
|
+
|
|
3623
|
+
if (existingScript && autoCompleteClass) {
|
|
3624
|
+
this.initAutoComplete();
|
|
3625
|
+
} else {
|
|
3626
|
+
let googleAutocompleteScript = existingScript;
|
|
3627
|
+
|
|
3628
|
+
if (!googleAutocompleteScript) {
|
|
3629
|
+
googleAutocompleteScript = document.createElement('script');
|
|
3630
|
+
googleAutocompleteScript.setAttribute('id', googleAddressScriptId);
|
|
3631
|
+
googleAutocompleteScript.setAttribute('src', `https://maps.googleapis.com/maps/api/js?key=${this.$ds.googleAppKey}&channel=1&libraries=places`);
|
|
3632
|
+
}
|
|
3633
|
+
|
|
3634
|
+
googleAutocompleteScript.addEventListener('load', this.initAutoComplete);
|
|
3635
|
+
document.body.appendChild(googleAutocompleteScript);
|
|
3636
|
+
}
|
|
3637
|
+
}
|
|
3638
|
+
},
|
|
3639
|
+
|
|
3640
|
+
methods: {
|
|
3641
|
+
initAutoComplete() {
|
|
3642
|
+
let options = {
|
|
3643
|
+
fields: ['name', 'address_component'],
|
|
3644
|
+
types: ['address']
|
|
3645
|
+
};
|
|
3646
|
+
|
|
3647
|
+
if (this.googleAddressCountryOptions.length > 0) {
|
|
3648
|
+
options['componentRestrictions'] = {
|
|
3649
|
+
country: this.googleAddressCountryOptions
|
|
3650
|
+
};
|
|
3651
|
+
}
|
|
3652
|
+
|
|
3653
|
+
const input = this.$children[0].$el.getElementsByClassName('v-text-field__slot')[0].getElementsByTagName("input")[0]; // this deny google default placeholder to be added, and doesn't overrides placeholder prop.
|
|
3654
|
+
|
|
3655
|
+
input.placeholder = '';
|
|
3656
|
+
this.autocomplete = new window.google.maps.places.Autocomplete(input, options);
|
|
3657
|
+
this.autocomplete.addListener('place_changed', this.emitGoogleSelectedPlace);
|
|
3658
|
+
},
|
|
3659
|
+
|
|
3660
|
+
emitGoogleSelectedPlace() {
|
|
3661
|
+
let googlePlace = this.autocomplete.getPlace();
|
|
3662
|
+
let selectedPlace = {};
|
|
3663
|
+
selectedPlace['address'] = googlePlace.name;
|
|
3664
|
+
|
|
3665
|
+
for (const component of googlePlace.address_components) {
|
|
3666
|
+
const componentType = component.types[0];
|
|
3667
|
+
|
|
3668
|
+
switch (componentType) {
|
|
3669
|
+
case "postal_code":
|
|
3670
|
+
{
|
|
3671
|
+
selectedPlace['postcode'] = component.long_name;
|
|
3672
|
+
break;
|
|
3673
|
+
}
|
|
3674
|
+
|
|
3675
|
+
case "administrative_area_level_1":
|
|
3676
|
+
{
|
|
3677
|
+
selectedPlace['state'] = component.long_name;
|
|
3678
|
+
selectedPlace['stateCode'] = component.short_name;
|
|
3679
|
+
break;
|
|
3680
|
+
}
|
|
3681
|
+
|
|
3682
|
+
case "country":
|
|
3683
|
+
selectedPlace['country'] = component.long_name;
|
|
3684
|
+
selectedPlace['countryCode'] = component.short_name;
|
|
3685
|
+
break;
|
|
3686
|
+
|
|
3687
|
+
case "locality":
|
|
3688
|
+
selectedPlace['city'] = component.long_name;
|
|
3689
|
+
break;
|
|
3690
|
+
|
|
3691
|
+
case "sublocality_level_1":
|
|
3692
|
+
if (!selectedPlace['city']) {
|
|
3693
|
+
selectedPlace['city'] = component.long_name;
|
|
3694
|
+
}
|
|
3695
|
+
|
|
3696
|
+
break;
|
|
3697
|
+
}
|
|
3698
|
+
}
|
|
3699
|
+
|
|
3700
|
+
this.$emit('onPlaceSelected', { ...selectedPlace,
|
|
3701
|
+
googlePlace
|
|
3702
|
+
});
|
|
3604
3703
|
}
|
|
3704
|
+
|
|
3605
3705
|
}
|
|
3606
3706
|
};
|
|
3607
3707
|
|
|
@@ -3672,8 +3772,8 @@ var __vue_staticRenderFns__$A = [];
|
|
|
3672
3772
|
|
|
3673
3773
|
const __vue_inject_styles__$A = function (inject) {
|
|
3674
3774
|
if (!inject) return;
|
|
3675
|
-
inject("data-v-
|
|
3676
|
-
source: ".VcTextInput.v-text-field[data-v-
|
|
3775
|
+
inject("data-v-347e8306_0", {
|
|
3776
|
+
source: ".VcTextInput.v-text-field[data-v-347e8306]{font-family:var(--primary-font-family)}.VcTextInput.v-text-field[data-v-347e8306] .v-input__slot{padding:0 var(--size-value3);height:var(--size-value13);background:#fff;border:1px solid var(--gray-lighten-1);box-sizing:border-box;border-radius:6px}.VcTextInput.v-text-field[data-v-347e8306] .v-input__slot label{font-size:var(--font-size-small2);line-height:var(--size-value5);color:var(--gray-darken-3);font-weight:var(--font-weight-medium)}.VcTextInput.v-text-field[data-v-347e8306] .v-input__slot .v-text-field__prefix{color:var(--gray-darken-5)}.VcTextInput.v-text-field[data-v-347e8306] .v-input__slot input{font-weight:var(--font-weight-medium2);font-size:var(--font-size-small2);line-height:var(--size-value5);color:var(--gray-darken-5);caret-color:var(--gray-darken-3)}.VcTextInput.v-text-field[data-v-347e8306] .v-input__slot input::placeholder{font-weight:var(--font-weight-medium)}.VcTextInput.v-text-field[data-v-347e8306] .v-input__slot:after,.VcTextInput.v-text-field[data-v-347e8306] .v-input__slot:before{display:none}.VcTextInput.v-text-field[data-v-347e8306] .v-input__slot:hover{border-color:var(--gray-darken-3)}.VcTextInput.v-text-field[data-v-347e8306] .v-input__slot:active,.VcTextInput.v-text-field[data-v-347e8306] .v-input__slot:focus,.VcTextInput.v-text-field[data-v-347e8306] .v-input__slot:focus-within{border:1px solid var(--v-secondary-base);box-shadow:0 0 0 3px var(--v-secondary-lighten1)}.VcTextInput.v-text-field[data-v-347e8306] .v-input__slot:active input,.VcTextInput.v-text-field[data-v-347e8306] .v-input__slot:focus input,.VcTextInput.v-text-field[data-v-347e8306] .v-input__slot:focus-within input{color:var(--gray-darken-3)}.VcTextInput.v-text-field[data-v-347e8306].error--text .v-input__slot{border-color:var(--red);color:unset;box-shadow:unset;font-size:var(--font-size-xx-small);line-height:var(--size-value4)}.VcTextInput.v-text-field[data-v-347e8306].v-input--is-focused label,.VcTextInput.v-text-field[data-v-347e8306].v-input--is-label-active label{font-size:var(--font-size-small);line-height:1.17;letter-spacing:-.3px;color:var(--gray-darken-4)!important;transform:translateY(-100%) scale(.85);top:var(--size-value2)}.VcTextInput.v-text-field[data-v-347e8306].v-input--is-focused .v-text-field__slot,.VcTextInput.v-text-field[data-v-347e8306].v-input--is-label-active .v-text-field__slot{margin-bottom:-14px}.VcTextInput.v-text-field[data-v-347e8306].v-input--is-disabled .v-input__slot{background:var(--gray-lighten-3);border:1px solid var(--gray-lighten-1)}.VcTextInput.v-text-field[data-v-347e8306].v-input--is-disabled .v-input__slot input,.VcTextInput.v-text-field[data-v-347e8306].v-input--is-disabled .v-input__slot label{color:var(--gray-darken-2)}.VcTextInput.v-text-field[data-v-347e8306]:not(.v-input--is-label-active):not(.v-input--is-focused) input{padding:var(--size-value2) 0}.VcTextInput.v-text-field[data-v-347e8306] .v-messages__message{line-height:var(--size-value4)}.VcTextInput.v-text-field[data-v-347e8306] .v-input__append-inner{align-self:center;fill:var(--gray-darken-3)}.VcTextInput.v-text-field[data-v-347e8306].v-input--dense:not(.v-text-field--outlined) input{padding-block:var(--size-value2)}",
|
|
3677
3777
|
map: undefined,
|
|
3678
3778
|
media: undefined
|
|
3679
3779
|
});
|
|
@@ -3681,7 +3781,7 @@ const __vue_inject_styles__$A = function (inject) {
|
|
|
3681
3781
|
/* scoped */
|
|
3682
3782
|
|
|
3683
3783
|
|
|
3684
|
-
const __vue_scope_id__$A = "data-v-
|
|
3784
|
+
const __vue_scope_id__$A = "data-v-347e8306";
|
|
3685
3785
|
/* module identifier */
|
|
3686
3786
|
|
|
3687
3787
|
const __vue_module_identifier__$A = undefined;
|