@pequity/squirrel 1.0.9 → 1.0.11

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pequity/squirrel",
3
3
  "description": "Squirrel component library",
4
- "version": "1.0.9",
4
+ "version": "1.0.11",
5
5
  "packageManager": "pnpm@8.9.2",
6
6
  "scripts": {
7
7
  "preinstall": "npx only-allow pnpm",
@@ -1,8 +1,7 @@
1
- import defaultTheme from 'tailwindcss/defaultTheme';
2
1
  import type { Config } from 'tailwindcss';
3
2
 
4
3
  export const squirrelTailwindConfig = {
5
- content: ['./index.html', './**/*.{vue,js,ts,jsx,tsx,mdx}'],
4
+ content: ['./index.html', './squirrel/**/*.{vue,js,ts,jsx,tsx,mdx}', './src/**/*.{vue,js,ts,jsx,tsx,mdx}'],
6
5
  theme: {
7
6
  colors: {
8
7
  transparent: 'transparent',
@@ -75,7 +74,7 @@ export const squirrelTailwindConfig = {
75
74
  'on-warning': 'var(--color-on-warning)',
76
75
  },
77
76
  fontFamily: {
78
- sans: ['Inter', ...defaultTheme.fontFamily.sans],
77
+ sans: ['Inter', 'Helvetica', 'Arial', 'sans-serif'],
79
78
  },
80
79
  fontSize: {
81
80
  xs: '0.75rem',
@@ -102,5 +101,4 @@ export const squirrelTailwindConfig = {
102
101
  screens: {},
103
102
  },
104
103
  },
105
- plugins: [],
106
104
  } satisfies Config;