@chekinapp/ui 0.0.79 → 0.0.80

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 (2) hide show
  1. package/package.json +1 -1
  2. package/tailwind.config.js +17 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chekinapp/ui",
3
- "version": "0.0.79",
3
+ "version": "0.0.80",
4
4
  "description": "Chekin UI — React components on Radix primitives, styled with Chekin tokens",
5
5
  "private": false,
6
6
  "license": "UNLICENSED",
@@ -7,6 +7,23 @@ export default {
7
7
  content: ['./node_modules/@chekinapp/ui/dist/**/*.{js,cjs,mjs}'],
8
8
  theme: {
9
9
  extend: {
10
+ screens: {
11
+ '2md': '53rem',
12
+ 'max-2md': {max: '53rem'},
13
+ },
14
+ fontFamily: {
15
+ proxima: ['ProximaNova', 'sans-serif'],
16
+ },
17
+ borderRadius: {
18
+ lg: 'var(--radius)',
19
+ md: 'calc(var(--radius) - 2px)',
20
+ sm: 'calc(var(--radius) - 4px)',
21
+ },
22
+ boxShadow: {
23
+ card: 'var(--chekin-shadow-card, 0px 0px 5px rgba(26, 148, 255, 0.173))',
24
+ neutral20: 'var(--neutral20-shadow)',
25
+ 'custom-blue': '0px 10px 10px 0px rgba(33, 72, 255, 0.10)',
26
+ },
10
27
  colors: {
11
28
  background: 'hsl(var(--background, 0 0% 100%))',
12
29
  foreground: 'hsl(var(--foreground, 240 50.6% 17.5%))',
@@ -74,9 +91,6 @@ export default {
74
91
  5: 'hsl(var(--chart-5))',
75
92
  },
76
93
  },
77
- boxShadow: {
78
- card: 'var(--chekin-shadow-card, 0px 0px 5px rgba(26, 148, 255, 0.173))',
79
- },
80
94
  keyframes: {
81
95
  'accordion-down': {
82
96
  from: {height: '0px', opacity: '0'},