@solfacil/girassol 0.3.2 → 0.3.3

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 (30) hide show
  1. package/.vscode/settings.json +1 -0
  2. package/dist/components.d.ts +1 -2
  3. package/dist/components.json +1 -1
  4. package/dist/girassol.es.js +1638 -1664
  5. package/dist/girassol.umd.js +10 -6
  6. package/dist/style.css +1 -1
  7. package/dist/types/components/accordion/Accordion.vue.d.ts +2 -2
  8. package/dist/types/components/forms/button/button/Button.vue.d.ts +2 -2
  9. package/dist/types/components/forms/button/button-destructive/ButtonDestructive.vue.d.ts +2 -2
  10. package/dist/types/components/forms/checkbox/checkbox/Checkbox.vue.d.ts +12 -80
  11. package/dist/types/components/forms/inputs/index.d.ts +2 -1
  12. package/dist/types/components/forms/inputs/input-core/Input.vue.d.ts +17 -90
  13. package/dist/types/components/forms/inputs/input-password/InputPassword.vue.d.ts +21 -109
  14. package/dist/types/components/forms/inputs/input-text/InputText.vue.d.ts +7 -10
  15. package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +63 -0
  16. package/dist/types/components/forms/{textarea → inputs/input-textarea}/textarea.spec.d.ts +0 -0
  17. package/dist/types/components/forms/radio/radio/Radio.vue.d.ts +11 -77
  18. package/dist/types/components/forms/switch/Switch.vue.d.ts +18 -102
  19. package/dist/types/components/loader/CircleLoader.vue.d.ts +10 -74
  20. package/dist/types/components/menus/menu/Menu.vue.d.ts +2 -2
  21. package/dist/types/components/menus/menu-navigation-links/MenuNavigationLinks.vue.d.ts +2 -2
  22. package/dist/types/composables/use-mask/index.d.ts +18 -0
  23. package/dist/types/composables/use-toast/Toast.vue.d.ts +2 -2
  24. package/dist/types/index.d.ts +565 -1481
  25. package/package.json +2 -1
  26. package/dist/README.md.d.ts +0 -2
  27. package/dist/cli/readme.md.d.ts +0 -2
  28. package/dist/types/components/dropdown/index.d.ts +0 -2
  29. package/dist/types/components/forms/textarea/Textarea.vue.d.ts +0 -139
  30. package/dist/types/components/forms/textarea/index.d.ts +0 -2
@@ -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,7 +3,7 @@ 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
- SolTextarea: typeof import('@solfacil/girassol')['SolTextarea']
6
+ SolInputTextarea: typeof import('@solfacil/girassol')['SolInputTextarea']
7
7
  SolInputText: typeof import('@solfacil/girassol')['SolInputText']
8
8
  SolInputTextPassword: typeof import('@solfacil/girassol')['SolInputTextPassword']
9
9
  SolRadio: typeof import('@solfacil/girassol')['SolRadio']
@@ -11,7 +11,6 @@ import '@vue/runtime-core'
11
11
  SolCheckbox: typeof import('@solfacil/girassol')['SolCheckbox']
12
12
  SolCheckboxGroup: typeof import('@solfacil/girassol')['SolCheckboxGroup']
13
13
  SolSwitch: typeof import('@solfacil/girassol')['SolSwitch']
14
- SolDropdown: typeof import('@solfacil/girassol')['SolDropdown']
15
14
  SolSelect: typeof import('@solfacil/girassol')['SolSelect']
16
15
  SolChip: typeof import('@solfacil/girassol')['SolChip']
17
16
  SolAccordion: typeof import('@solfacil/girassol')['SolAccordion']
@@ -1 +1 @@
1
- {"components":["SolButton","SolButtonDestructive","SolTextarea","SolInputText","SolInputTextPassword","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"]}