@vcita/design-system 0.6.12 → 0.6.14-beta.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.
Files changed (32) hide show
  1. package/config/locales/ds.de.yml +8 -6
  2. package/config/locales/ds.en.yml +2 -0
  3. package/config/locales/ds.es.yml +8 -6
  4. package/config/locales/ds.fr.yml +2 -0
  5. package/config/locales/ds.he.yml +2 -0
  6. package/config/locales/ds.it.yml +8 -6
  7. package/config/locales/ds.keys.yml +2 -0
  8. package/config/locales/ds.nl.yml +8 -6
  9. package/config/locales/ds.pl.yml +2 -0
  10. package/config/locales/ds.pseudo.yml +2 -0
  11. package/config/locales/ds.pt.yml +8 -6
  12. package/dist/@vcita/design-system.esm.js +1072 -859
  13. package/dist/@vcita/design-system.min.js +1 -1
  14. package/dist/@vcita/design-system.ssr.js +940 -720
  15. package/package.json +1 -1
  16. package/src/components/VcButton/VcButton.vue +4 -3
  17. package/src/components/VcDropzone/VcDropzone.spec.js +233 -0
  18. package/src/components/VcDropzone/VcDropzone.stories.js +49 -0
  19. package/src/components/VcDropzone/VcDropzone.vue +187 -0
  20. package/src/components/VcIconWithTooltip/VcIconWithTooltip.spec.js +5 -5
  21. package/src/components/VcInputPopover/VcInputPopover.spec.js +1 -1
  22. package/src/components/VcSelectField/VcSelectField.spec.js +14 -0
  23. package/src/components/VcSelectField/VcSelectField.stories.js +19 -1
  24. package/src/components/VcSelectField/VcSelectField.vue +5 -0
  25. package/src/components/VcTextField/VcTextField.spec.js +24 -2
  26. package/src/components/VcTextField/VcTextField.stories.js +22 -3
  27. package/src/components/VcTextField/VcTextField.vue +12 -1
  28. package/src/components/index.js +1 -0
  29. package/src/components/modal/elements/VcModalContainer.vue +1 -1
  30. package/src/stories/welcome.stories.mdx +7 -0
  31. package/styles/variables.scss +6 -2
  32. package/CHANGELOG.MD +0 -179
@@ -2,13 +2,15 @@
2
2
  de:
3
3
  ds:
4
4
  wizard:
5
- back:
6
- next:
5
+ back: Zurück
6
+ next: Weiter
7
7
  modal:
8
8
  cancel: Abbrechen
9
- ok:
10
- done:
9
+ ok: OK
10
+ done: Fertig
11
11
  progress_circular:
12
- next:
12
+ next: 'Weiter:'
13
13
  listbox:
14
- add:
14
+ add: Neuen Kontakt hinzufügen
15
+ dropzone:
16
+ default_title:
@@ -12,3 +12,5 @@ en:
12
12
  next: 'Next:'
13
13
  listbox:
14
14
  add: Add new contact
15
+ dropzone:
16
+ default_title: Submit
@@ -2,13 +2,15 @@
2
2
  es:
3
3
  ds:
4
4
  wizard:
5
- back:
6
- next:
5
+ back: Atrás
6
+ next: Siguiente
7
7
  modal:
8
8
  cancel: Cancelar
9
- ok:
10
- done:
9
+ ok: Ok
10
+ done: Hecho
11
11
  progress_circular:
12
- next:
12
+ next: 'Siguiente:'
13
13
  listbox:
14
- add:
14
+ add: Agregar nuevo contacto
15
+ dropzone:
16
+ default_title:
@@ -12,3 +12,5 @@ fr:
12
12
  next: 'Suivant :'
13
13
  listbox:
14
14
  add: Ajouter nouveau contact
15
+ dropzone:
16
+ default_title:
@@ -12,3 +12,5 @@ he:
12
12
  next: "הבא:"
13
13
  listbox:
14
14
  add: "הוספה של איש קשר חדש"
15
+ dropzone:
16
+ default_title:
@@ -2,13 +2,15 @@
2
2
  it:
3
3
  ds:
4
4
  wizard:
5
- back:
6
- next:
5
+ back: Indietro
6
+ next: Avanti
7
7
  modal:
8
8
  cancel: Cancella
9
- ok:
10
- done:
9
+ ok: Ok
10
+ done: Fatto
11
11
  progress_circular:
12
- next:
12
+ next: 'Avanti:'
13
13
  listbox:
14
- add:
14
+ add: Aggiungi nuovo contatto
15
+ dropzone:
16
+ default_title:
@@ -12,3 +12,5 @@ keys:
12
12
  next: ds.progress_circular.next
13
13
  listbox:
14
14
  add: ds.listbox.add
15
+ dropzone:
16
+ default_title: ds.dropzone.default_title
@@ -2,13 +2,15 @@
2
2
  nl:
3
3
  ds:
4
4
  wizard:
5
- back:
6
- next:
5
+ back: Terug
6
+ next: Volgende
7
7
  modal:
8
8
  cancel: Annuleren
9
- ok:
10
- done:
9
+ ok: Ok
10
+ done: Gereed
11
11
  progress_circular:
12
- next:
12
+ next: 'Volgende:'
13
13
  listbox:
14
- add:
14
+ add: Nieuw contact toevoegen
15
+ dropzone:
16
+ default_title:
@@ -12,3 +12,5 @@ pl:
12
12
  next: 'Dalej:'
13
13
  listbox:
14
14
  add: Dodaj nowy kontakt
15
+ dropzone:
16
+ default_title:
@@ -12,3 +12,5 @@ pseudo:
12
12
  next: 'Néxt: Néx'
13
13
  listbox:
14
14
  add: "Ädd néw çontåçt Ädd néw"
15
+ dropzone:
16
+ default_title: Submit Sub
@@ -2,13 +2,15 @@
2
2
  pt:
3
3
  ds:
4
4
  wizard:
5
- back:
6
- next:
5
+ back: Voltar
6
+ next: Próximo
7
7
  modal:
8
8
  cancel: Cancelar
9
- ok:
10
- done:
9
+ ok: Ok
10
+ done: Pronto
11
11
  progress_circular:
12
- next:
12
+ next: Próximo;
13
13
  listbox:
14
- add:
14
+ add: Adicionar contato novo
15
+ dropzone:
16
+ default_title: