@solfacil/girassol 0.2.5 → 0.2.8

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 (46) hide show
  1. package/README.md +1 -1
  2. package/dist/components.d.ts +1 -0
  3. package/dist/components.json +1 -1
  4. package/dist/girassol.es.js +988 -894
  5. package/dist/girassol.umd.js +4 -4
  6. package/dist/main.css +29 -29
  7. package/dist/style.css +1 -1
  8. package/dist/theme/solfacil/index.d.ts +2 -1
  9. package/dist/theme/solfacil/screens.d.ts +11 -0
  10. package/dist/theme/solfacil/spacing.d.ts +32 -36
  11. package/dist/theme/solfacil/typography.d.ts +0 -1
  12. package/dist/types/components/accordion/Accordion.vue.d.ts +5 -4
  13. package/dist/types/components/forms/button/Button.vue.d.ts +4 -4
  14. package/dist/types/components/informations/chip/Chip.vue.d.ts +1 -1
  15. package/dist/types/components/{menu → menus/menu}/Menu.vue.d.ts +18 -26
  16. package/dist/types/components/{menu → menus/menu}/index.d.ts +0 -0
  17. package/dist/types/components/{menu → menus/menu}/menu.spec.d.ts +0 -0
  18. package/dist/types/components/menus/menu-item/menu-item-link/MenuItemLink.vue.d.ts +100 -0
  19. package/dist/types/components/{menu-item → menus/menu-item/menu-item-link}/index.d.ts +0 -0
  20. package/dist/types/components/menus/menu-item/menu-item-link/types.d.ts +6 -0
  21. package/dist/types/components/{menu-item/MenuItemLink.vue.d.ts → menus/menu-navigation-links/MenuNavigationLinks.vue.d.ts} +12 -16
  22. package/dist/types/components/menus/menu-navigation-links/index.d.ts +2 -0
  23. package/dist/types/index.d.ts +212 -102
  24. package/package.json +11 -11
  25. package/public/main.css +29 -29
  26. package/theme/solfacil/index.ts +3 -1
  27. package/theme/solfacil/screens.ts +5 -0
  28. package/theme/solfacil/spacing.ts +2 -2
  29. package/theme/solfacil/typography.ts +1 -2
  30. package/theme/solfacil/utilities.ts +15 -8
  31. package/vite.config.ts +2 -1
  32. package/windi.config.ts +2 -1
  33. package/dist/fonts/lato/Lato-Bold.ttf +0 -0
  34. package/dist/fonts/lato/Lato-Medium.ttf +0 -0
  35. package/dist/fonts/lato/Lato-Regular.ttf +0 -0
  36. package/dist/fonts/roboto-slab/RobotoSlab.ttf +0 -0
  37. package/dist/fonts/rubik/Rubik-Bold.ttf +0 -0
  38. package/dist/fonts/rubik/Rubik-Medium.ttf +0 -0
  39. package/dist/fonts/rubik/Rubik-Regular.ttf +0 -0
  40. package/public/fonts/lato/Lato-Bold.ttf +0 -0
  41. package/public/fonts/lato/Lato-Medium.ttf +0 -0
  42. package/public/fonts/lato/Lato-Regular.ttf +0 -0
  43. package/public/fonts/roboto-slab/RobotoSlab.ttf +0 -0
  44. package/public/fonts/rubik/Rubik-Bold.ttf +0 -0
  45. package/public/fonts/rubik/Rubik-Medium.ttf +0 -0
  46. package/public/fonts/rubik/Rubik-Regular.ttf +0 -0
package/README.md CHANGED
@@ -59,7 +59,7 @@ yarn add @solfacil/girassol
59
59
  e colocar no `scripts` dentro do `package.json` para ter acesso ao nosso CLI:
60
60
 
61
61
  ```json dark
62
- "girassol": "girassol"
62
+ "girassol-cli": "girassol-cli"
63
63
  ```
64
64
 
65
65
  # Licença
@@ -18,6 +18,7 @@ import '@vue/runtime-core'
18
18
  SolAccordion: typeof import('@solfacil/girassol')['SolAccordion']
19
19
  SolMenu: typeof import('@solfacil/girassol')['SolMenu']
20
20
  SolMenuItemLink: typeof import('@solfacil/girassol')['SolMenuItemLink']
21
+ SolMenuNavigationLinks: typeof import('@solfacil/girassol')['SolMenuNavigationLinks']
21
22
  }
22
23
  }
23
24
 
@@ -1 +1 @@
1
- {"components":["SolButton","SolButtonDestructive","SolInput","SolTextarea","SolTextfield","SolTextfieldPassword","SolRadio","SolRadioGroup","SolCheckbox","SolCheckboxGroup","SolSwitch","SolDropdown","SolSelect","SolChip","SolAccordion","SolMenu","SolMenuItemLink"]}
1
+ {"components":["SolButton","SolButtonDestructive","SolInput","SolTextarea","SolTextfield","SolTextfieldPassword","SolRadio","SolRadioGroup","SolCheckbox","SolCheckboxGroup","SolSwitch","SolDropdown","SolSelect","SolChip","SolAccordion","SolMenu","SolMenuItemLink","SolMenuNavigationLinks"]}