@solfacil/girassol 0.3.1 → 0.3.4

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 (55) hide show
  1. package/.vscode/settings.json +1 -0
  2. package/dist/components.d.ts +3 -5
  3. package/dist/components.json +1 -1
  4. package/dist/girassol.es.js +3371 -1299
  5. package/dist/girassol.umd.js +14 -6
  6. package/dist/style.css +1 -1
  7. package/dist/theme/solfacil/index.d.ts +1 -0
  8. package/dist/theme/solfacil/utilities.d.ts +1 -0
  9. package/dist/types/components/accordion/Accordion.vue.d.ts +2 -2
  10. package/dist/types/components/forms/button/button/Button.vue.d.ts +2 -2
  11. package/dist/types/components/forms/button/button-destructive/ButtonDestructive.vue.d.ts +2 -2
  12. package/dist/types/components/forms/checkbox/checkbox/Checkbox.vue.d.ts +12 -80
  13. package/dist/types/components/forms/checkbox/checkbox-group/CheckboxGroup.vue.d.ts +55 -16
  14. package/dist/types/components/forms/inputs/index.d.ts +4 -0
  15. package/dist/types/components/forms/inputs/input-core/Input.vue.d.ts +44 -0
  16. package/dist/types/components/forms/{input → inputs/input-core}/input.spec.d.ts +0 -0
  17. package/dist/types/components/forms/inputs/input-password/InputPassword.vue.d.ts +58 -0
  18. package/dist/types/components/{dropdown/dropdown.spec.d.ts → forms/inputs/input-password/input-password.spec.d.ts} +0 -0
  19. package/dist/types/components/forms/{textarea/Textarea.vue.d.ts → inputs/input-text/InputText.vue.d.ts} +92 -52
  20. package/dist/types/components/forms/{textarea/textarea.spec.d.ts → inputs/input-text/input-text.spec.d.ts} +0 -0
  21. package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +70 -0
  22. package/dist/types/components/forms/{textfield/textfield-password.spec.d.ts → inputs/input-textarea/textarea.spec.d.ts} +0 -0
  23. package/dist/types/components/forms/inputs/types.d.ts +24 -0
  24. package/dist/types/components/forms/radio/radio/Radio.vue.d.ts +11 -77
  25. package/dist/types/components/forms/radio/radio-group/RadioGroup.vue.d.ts +53 -14
  26. package/dist/types/components/forms/select/ListOption.vue.d.ts +4 -9
  27. package/dist/types/components/forms/select/Select.vue.d.ts +139 -184
  28. package/dist/types/components/forms/select/types.d.ts +23 -0
  29. package/dist/types/components/forms/switch/Switch.vue.d.ts +18 -102
  30. package/dist/types/components/informations/chip/Chip.vue.d.ts +5 -5
  31. package/dist/types/components/loader/CircleLoader.vue.d.ts +15 -68
  32. package/dist/types/components/menus/menu/Menu.vue.d.ts +2 -2
  33. package/dist/types/components/menus/menu-navigation-links/MenuNavigationLinks.vue.d.ts +2 -2
  34. package/dist/types/composables/use-mask/index.d.ts +18 -0
  35. package/dist/types/composables/use-toast/Toast.vue.d.ts +2 -2
  36. package/dist/types/composables/use-validate-field/index.d.ts +5 -0
  37. package/dist/types/composables/use-validate-field/types.d.ts +22 -0
  38. package/dist/types/index.d.ts +1183 -1730
  39. package/package.json +7 -5
  40. package/theme/solfacil/colors.ts +1 -1
  41. package/theme/solfacil/index.ts +2 -1
  42. package/theme/solfacil/utilities.ts +27 -0
  43. package/windi.config.ts +12 -11
  44. package/dist/README.md.d.ts +0 -2
  45. package/dist/cli/readme.md.d.ts +0 -2
  46. package/dist/theme/safelist.d.ts +0 -14
  47. package/dist/types/components/dropdown/Dropdown.vue.d.ts +0 -238
  48. package/dist/types/components/dropdown/index.d.ts +0 -2
  49. package/dist/types/components/forms/input/Input.vue.d.ts +0 -93
  50. package/dist/types/components/forms/input/index.d.ts +0 -2
  51. package/dist/types/components/forms/textarea/index.d.ts +0 -2
  52. package/dist/types/components/forms/textfield/Textfield.vue.d.ts +0 -129
  53. package/dist/types/components/forms/textfield/TextfieldPassword.vue.d.ts +0 -93
  54. package/dist/types/components/forms/textfield/index.d.ts +0 -3
  55. package/dist/types/components/forms/textfield/textfield.spec.d.ts +0 -1
@@ -9,6 +9,7 @@
9
9
  "iconify",
10
10
  "IIFE",
11
11
  "informations",
12
+ "maska",
12
13
  "nuxt",
13
14
  "solfacil",
14
15
  "Solfácil",
@@ -3,16 +3,14 @@ import '@vue/runtime-core'
3
3
  export interface GlobalComponents {
4
4
  SolButton: typeof import('@solfacil/girassol')['SolButton']
5
5
  SolButtonDestructive: typeof import('@solfacil/girassol')['SolButtonDestructive']
6
- SolInput: typeof import('@solfacil/girassol')['SolInput']
7
- SolTextarea: typeof import('@solfacil/girassol')['SolTextarea']
8
- SolTextfield: typeof import('@solfacil/girassol')['SolTextfield']
9
- SolTextfieldPassword: typeof import('@solfacil/girassol')['SolTextfieldPassword']
6
+ SolInputTextarea: typeof import('@solfacil/girassol')['SolInputTextarea']
7
+ SolInputText: typeof import('@solfacil/girassol')['SolInputText']
8
+ SolInputTextPassword: typeof import('@solfacil/girassol')['SolInputTextPassword']
10
9
  SolRadio: typeof import('@solfacil/girassol')['SolRadio']
11
10
  SolRadioGroup: typeof import('@solfacil/girassol')['SolRadioGroup']
12
11
  SolCheckbox: typeof import('@solfacil/girassol')['SolCheckbox']
13
12
  SolCheckboxGroup: typeof import('@solfacil/girassol')['SolCheckboxGroup']
14
13
  SolSwitch: typeof import('@solfacil/girassol')['SolSwitch']
15
- SolDropdown: typeof import('@solfacil/girassol')['SolDropdown']
16
14
  SolSelect: typeof import('@solfacil/girassol')['SolSelect']
17
15
  SolChip: typeof import('@solfacil/girassol')['SolChip']
18
16
  SolAccordion: typeof import('@solfacil/girassol')['SolAccordion']
@@ -1 +1 @@
1
- {"components":["SolButton","SolButtonDestructive","SolInput","SolTextarea","SolTextfield","SolTextfieldPassword","SolRadio","SolRadioGroup","SolCheckbox","SolCheckboxGroup","SolSwitch","SolDropdown","SolSelect","SolChip","SolAccordion","SolMenu","SolMenuItemLink","SolMenuNavigationLinks"]}
1
+ {"components":["SolButton","SolButtonDestructive","SolInputTextarea","SolInputText","SolInputTextPassword","SolRadio","SolRadioGroup","SolCheckbox","SolCheckboxGroup","SolSwitch","SolSelect","SolChip","SolAccordion","SolMenu","SolMenuItemLink","SolMenuNavigationLinks"]}