@solfacil/girassol 0.3.5 → 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.
- package/dist/components.d.ts +3 -0
- package/dist/components.json +1 -1
- package/dist/girassol.es.js +2412 -1774
- package/dist/girassol.umd.js +6 -6
- package/dist/list-slots-disclaimer.png +0 -0
- package/dist/style.css +1 -1
- package/dist/theme/solfacil/screens.d.ts +4 -1
- package/dist/types/components/forms/checkbox/checkbox/Checkbox.vue.d.ts +2 -0
- package/dist/types/components/forms/checkbox/type.d.ts +1 -0
- package/dist/types/components/forms/radio/radio/Radio.vue.d.ts +2 -0
- package/dist/types/components/forms/radio/types.d.ts +1 -0
- package/dist/types/components/informations/alert/Alert.vue.d.ts +126 -0
- package/dist/types/components/informations/alert/alert.spec.d.ts +1 -0
- package/dist/types/components/informations/alert/index.d.ts +2 -0
- package/dist/types/components/informations/tag/Tag.vue.d.ts +121 -0
- package/dist/types/components/informations/tag/index.d.ts +2 -0
- package/dist/types/components/informations/tag/tag.spec.d.ts +1 -0
- package/dist/types/components/informations/text-value/TextValue.vue.d.ts +105 -0
- package/dist/types/components/list/List.vue.d.ts +204 -0
- package/dist/types/components/list/ListItem.vue.d.ts +151 -0
- package/dist/types/components/list/index.d.ts +2 -0
- package/dist/types/components/list/list.spec.d.ts +1 -0
- package/dist/types/components/list/types.d.ts +51 -0
- package/dist/types/components/menus/menu/Menu.vue.d.ts +11 -0
- package/dist/types/components/menus/menu-item/menu-item/MenuItem.vue.d.ts +77 -0
- package/dist/types/components/menus/menu-item/menu-item/index.d.ts +2 -0
- package/dist/types/composables/use-navigate/index.d.ts +7 -0
- package/dist/types/index.d.ts +639 -8
- package/package.json +1 -1
- package/public/list-slots-disclaimer.png +0 -0
- package/theme/solfacil/screens.ts +5 -4
- package/theme/solfacil/utilities.ts +9 -13
package/package.json
CHANGED
|
Binary file
|
|
@@ -287,20 +287,16 @@ export const debug = plugin(({ addUtilities }) => {
|
|
|
287
287
|
})
|
|
288
288
|
})
|
|
289
289
|
|
|
290
|
-
export const placeholder = plugin(({
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
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
|
|