@solfacil/girassol 0.2.12 → 0.3.2

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 (36) hide show
  1. package/dist/components.d.ts +2 -3
  2. package/dist/components.json +1 -1
  3. package/dist/girassol.es.js +3010 -985
  4. package/dist/girassol.umd.js +10 -6
  5. package/dist/style.css +1 -1
  6. package/dist/types/components/forms/button/{Button.vue.d.ts → button/Button.vue.d.ts} +0 -0
  7. package/dist/types/components/forms/button/{button.spec.d.ts → button/button.spec.d.ts} +0 -0
  8. package/dist/types/components/forms/button/{ButtonDestructive.vue.d.ts → button-destructive/ButtonDestructive.vue.d.ts} +0 -0
  9. package/dist/types/components/forms/button/index.d.ts +2 -2
  10. package/dist/types/components/forms/checkbox/{Checkbox.vue.d.ts → checkbox/Checkbox.vue.d.ts} +12 -8
  11. package/dist/types/components/forms/checkbox/{checkbox.spec.d.ts → checkbox/checkbox.spec.d.ts} +0 -0
  12. package/dist/types/components/forms/checkbox/{CheckboxGroup.vue.d.ts → checkbox-group/CheckboxGroup.vue.d.ts} +12 -12
  13. package/dist/types/components/forms/checkbox/{checkbox-group.spec.d.ts → checkbox-group/checkbox-group.spec.d.ts} +0 -0
  14. package/dist/types/components/forms/checkbox/index.d.ts +2 -2
  15. package/dist/types/components/forms/checkbox/{checkbox-type.d.ts → type.d.ts} +1 -0
  16. package/dist/types/components/forms/inputs/index.d.ts +3 -0
  17. package/dist/types/components/forms/{input → inputs/input-core}/Input.vue.d.ts +47 -23
  18. package/dist/types/components/forms/{input → inputs/input-core}/input.spec.d.ts +0 -0
  19. package/dist/types/components/forms/{textfield/TextfieldPassword.vue.d.ts → inputs/input-password/InputPassword.vue.d.ts} +76 -23
  20. package/dist/types/components/forms/{textfield/textfield-password.spec.d.ts → inputs/input-password/input-password.spec.d.ts} +0 -0
  21. package/dist/types/components/forms/inputs/input-text/InputText.vue.d.ts +181 -0
  22. package/dist/types/components/forms/{textfield/textfield.spec.d.ts → inputs/input-text/input-text.spec.d.ts} +0 -0
  23. package/dist/types/components/forms/inputs/types.d.ts +24 -0
  24. package/dist/types/components/forms/switch/Switch.vue.d.ts +52 -22
  25. package/dist/types/components/loader/CircleLoader.vue.d.ts +19 -8
  26. package/dist/types/components/menus/menu/Menu.vue.d.ts +7 -7
  27. package/dist/types/composables/use-validate-field/index.d.ts +5 -0
  28. package/dist/types/composables/use-validate-field/types.d.ts +9 -0
  29. package/dist/types/index.d.ts +544 -302
  30. package/package.json +22 -19
  31. package/theme/solfacil/colors.ts +1 -1
  32. package/windi.config.ts +11 -11
  33. package/dist/theme/safelist.d.ts +0 -14
  34. package/dist/types/components/forms/input/index.d.ts +0 -2
  35. package/dist/types/components/forms/textfield/Textfield.vue.d.ts +0 -129
  36. package/dist/types/components/forms/textfield/index.d.ts +0 -3
@@ -3,10 +3,9 @@ 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
6
  SolTextarea: typeof import('@solfacil/girassol')['SolTextarea']
8
- SolTextfield: typeof import('@solfacil/girassol')['SolTextfield']
9
- SolTextfieldPassword: typeof import('@solfacil/girassol')['SolTextfieldPassword']
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']
@@ -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","SolTextarea","SolInputText","SolInputTextPassword","SolRadio","SolRadioGroup","SolCheckbox","SolCheckboxGroup","SolSwitch","SolDropdown","SolSelect","SolChip","SolAccordion","SolMenu","SolMenuItemLink","SolMenuNavigationLinks"]}