@solfacil/girassol 0.3.6 → 0.4.0

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/dist/components.d.ts +2 -0
  2. package/dist/components.json +1 -1
  3. package/dist/girassol.es.js +2400 -1785
  4. package/dist/girassol.umd.js +6 -6
  5. package/dist/list-slots-disclaimer.png +0 -0
  6. package/dist/style.css +1 -1
  7. package/dist/theme/solfacil/screens.d.ts +4 -1
  8. package/dist/types/components/forms/checkbox/checkbox/Checkbox.vue.d.ts +2 -0
  9. package/dist/types/components/forms/checkbox/type.d.ts +1 -0
  10. package/dist/types/components/forms/radio/radio/Radio.vue.d.ts +2 -0
  11. package/dist/types/components/forms/radio/types.d.ts +1 -0
  12. package/dist/types/components/informations/alert/Alert.vue.d.ts +126 -0
  13. package/dist/types/components/informations/alert/alert.spec.d.ts +1 -0
  14. package/dist/types/components/informations/alert/index.d.ts +2 -0
  15. package/dist/types/components/informations/tag/Tag.vue.d.ts +93 -15
  16. package/dist/types/components/informations/text-value/TextValue.vue.d.ts +105 -0
  17. package/dist/types/components/list/List.vue.d.ts +204 -0
  18. package/dist/types/components/list/ListItem.vue.d.ts +151 -0
  19. package/dist/types/components/list/index.d.ts +2 -0
  20. package/dist/types/components/list/list.spec.d.ts +1 -0
  21. package/dist/types/components/list/types.d.ts +51 -0
  22. package/dist/types/components/menus/menu/Menu.vue.d.ts +11 -0
  23. package/dist/types/components/menus/menu-item/menu-item/MenuItem.vue.d.ts +77 -0
  24. package/dist/types/components/menus/menu-item/menu-item/index.d.ts +2 -0
  25. package/dist/types/composables/use-navigate/index.d.ts +7 -0
  26. package/dist/types/index.d.ts +601 -27
  27. package/package.json +1 -1
  28. package/public/list-slots-disclaimer.png +0 -0
  29. package/theme/solfacil/screens.ts +5 -4
  30. package/theme/solfacil/utilities.ts +9 -13
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@solfacil/girassol",
3
3
  "description": "Girassol design system",
4
- "version": "0.3.6",
4
+ "version": "0.4.0",
5
5
  "authors": [
6
6
  {
7
7
  "name": "Kevin Martin",
Binary file
@@ -1,6 +1,7 @@
1
1
  export const screens = {
2
- 'sm': { max: '767px' },
3
- 'md': { min: '768px' },
4
- 'lg': { min: '1180px' },
5
- 'xl': { min: '1440px' },
2
+ xsm: { max: '767px' },
3
+ sm: { min: '768px' },
4
+ md: { min: '1024px' },
5
+ lg: { min: '1366px' },
6
+ xl: { min: '1440px' },
6
7
  }
@@ -287,20 +287,16 @@ export const debug = plugin(({ addUtilities }) => {
287
287
  })
288
288
  })
289
289
 
290
- export const placeholder = plugin(({ addUtilities, theme }) => {
291
- const placeholderSettings = {
292
- color: `${theme('colors.neutral.low.light')} !important`,
293
- fontSize: `${theme('fonts.3xs')} !important`,
294
- fontFamily: `${theme('fonts.base')} !important`,
295
- lineHeight: `${theme('fonts.leading-xs')} !important`,
296
- }
297
-
298
- addUtilities({
299
- '.placeholder': {
300
- '&::placeholder': placeholderSettings,
290
+ export const placeholder = plugin(({ addBase, theme }) => {
291
+ addBase({
292
+ 'input::placeholder': {
293
+ color: 'rgb(117 117 177 / 64%)',
294
+ fontFamily: `${theme('fontFamily.base')}`,
295
+ fontSize: `${theme('fontSize.2xs')} `,
296
+ lineHeight: `${theme('lineHeight.xs')}`,
297
+ fontWeight: '400',
298
+
301
299
  },
302
-
303
- '.placeholder-inline': placeholderSettings,
304
300
  })
305
301
  })
306
302