@tenerife.music/ui 0.0.3 → 0.0.5
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/index.cjs +1 -1
- package/dist/index.mjs +1081 -1333
- package/dist/preset.cjs +2 -0
- package/dist/preset.d.ts +20 -0
- package/dist/preset.d.ts.map +1 -0
- package/dist/preset.mjs +69 -0
- package/dist/radius-CuOZD6Mk.cjs +2 -0
- package/dist/radius-NOytgRst.js +22 -0
- package/dist/theme/index.cjs +2 -0
- package/dist/theme/index.mjs +303 -0
- package/dist/tokens/index.cjs +2 -0
- package/dist/tokens/index.mjs +250 -0
- package/package.json +17 -3
package/dist/preset.cjs
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use strict";const r=require("./radius-CuOZD6Mk.cjs"),o={darkMode:["class",'[data-mode="night"]'],theme:{extend:{colors:{background:"var(--background)",foreground:"var(--foreground)",border:"var(--border)",input:"var(--input)",ring:"var(--ring)",muted:{DEFAULT:"var(--muted)",foreground:"var(--muted-foreground)"},popover:{DEFAULT:"var(--popover)",foreground:"var(--popover-foreground)"},primary:{DEFAULT:"hsl(var(--tm-primary))",foreground:"hsl(var(--tm-primary-foreground))"},secondary:{DEFAULT:"hsl(var(--tm-secondary))",foreground:"hsl(var(--tm-secondary-foreground))"},accent:{DEFAULT:"hsl(var(--tm-accent))",foreground:"hsl(var(--tm-accent-foreground))"},destructive:{DEFAULT:"var(--destructive)",foreground:"var(--destructive-foreground)"}},borderRadius:{lg:"var(--radius)",md:"calc(var(--radius) - 2px)",sm:"calc(var(--radius) - 4px)",none:r.borderRadius.none,DEFAULT:r.borderRadius.DEFAULT,xl:r.borderRadius.xl,"2xl":r.borderRadius["2xl"],"3xl":r.borderRadius["3xl"],full:r.borderRadius.full},keyframes:{"accordion-down":{from:{height:"0"},to:{height:"var(--radix-accordion-content-height)"}},"accordion-up":{from:{height:"var(--radix-accordion-content-height)"},to:{height:"0"}}},animation:{"accordion-down":"accordion-down 0.2s ease-out","accordion-up":"accordion-up 0.2s ease-out"}}},plugins:[]};module.exports=o;
|
package/dist/preset.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Config } from 'tailwindcss';
|
|
2
|
+
/**
|
|
3
|
+
* Tailwind CSS preset for Tenerife.Music UI
|
|
4
|
+
*
|
|
5
|
+
* This preset can be imported and used in your application's tailwind.config.ts:
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* import type { Config } from "tailwindcss";
|
|
9
|
+
* import preset from "@tenerife.music/ui/preset";
|
|
10
|
+
*
|
|
11
|
+
* const config: Config = {
|
|
12
|
+
* content: ["./src/**\/*.{js,ts,jsx,tsx}"],
|
|
13
|
+
* presets: [preset],
|
|
14
|
+
* };
|
|
15
|
+
*
|
|
16
|
+
* export default config;
|
|
17
|
+
*/
|
|
18
|
+
declare const preset: Partial<Config>;
|
|
19
|
+
export default preset;
|
|
20
|
+
//# sourceMappingURL=preset.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"preset.d.ts","sourceRoot":"","sources":["../src/preset.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAG1C;;;;;;;;;;;;;;;GAeG;AACH,QAAA,MAAM,MAAM,EAAE,OAAO,CAAC,MAAM,CA+D3B,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
package/dist/preset.mjs
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { b as r } from "./radius-NOytgRst.js";
|
|
3
|
+
const a = {
|
|
4
|
+
darkMode: ["class", '[data-mode="night"]'],
|
|
5
|
+
theme: {
|
|
6
|
+
extend: {
|
|
7
|
+
colors: {
|
|
8
|
+
background: "var(--background)",
|
|
9
|
+
foreground: "var(--foreground)",
|
|
10
|
+
border: "var(--border)",
|
|
11
|
+
input: "var(--input)",
|
|
12
|
+
ring: "var(--ring)",
|
|
13
|
+
muted: {
|
|
14
|
+
DEFAULT: "var(--muted)",
|
|
15
|
+
foreground: "var(--muted-foreground)"
|
|
16
|
+
},
|
|
17
|
+
popover: {
|
|
18
|
+
DEFAULT: "var(--popover)",
|
|
19
|
+
foreground: "var(--popover-foreground)"
|
|
20
|
+
},
|
|
21
|
+
primary: {
|
|
22
|
+
DEFAULT: "hsl(var(--tm-primary))",
|
|
23
|
+
foreground: "hsl(var(--tm-primary-foreground))"
|
|
24
|
+
},
|
|
25
|
+
secondary: {
|
|
26
|
+
DEFAULT: "hsl(var(--tm-secondary))",
|
|
27
|
+
foreground: "hsl(var(--tm-secondary-foreground))"
|
|
28
|
+
},
|
|
29
|
+
accent: {
|
|
30
|
+
DEFAULT: "hsl(var(--tm-accent))",
|
|
31
|
+
foreground: "hsl(var(--tm-accent-foreground))"
|
|
32
|
+
},
|
|
33
|
+
destructive: {
|
|
34
|
+
DEFAULT: "var(--destructive)",
|
|
35
|
+
foreground: "var(--destructive-foreground)"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
borderRadius: {
|
|
39
|
+
lg: "var(--radius)",
|
|
40
|
+
md: "calc(var(--radius) - 2px)",
|
|
41
|
+
sm: "calc(var(--radius) - 4px)",
|
|
42
|
+
none: r.none,
|
|
43
|
+
DEFAULT: r.DEFAULT,
|
|
44
|
+
xl: r.xl,
|
|
45
|
+
"2xl": r["2xl"],
|
|
46
|
+
"3xl": r["3xl"],
|
|
47
|
+
full: r.full
|
|
48
|
+
},
|
|
49
|
+
keyframes: {
|
|
50
|
+
"accordion-down": {
|
|
51
|
+
from: { height: "0" },
|
|
52
|
+
to: { height: "var(--radix-accordion-content-height)" }
|
|
53
|
+
},
|
|
54
|
+
"accordion-up": {
|
|
55
|
+
from: { height: "var(--radix-accordion-content-height)" },
|
|
56
|
+
to: { height: "0" }
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
animation: {
|
|
60
|
+
"accordion-down": "accordion-down 0.2s ease-out",
|
|
61
|
+
"accordion-up": "accordion-up 0.2s ease-out"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
plugins: []
|
|
66
|
+
};
|
|
67
|
+
export {
|
|
68
|
+
a as default
|
|
69
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const e = {
|
|
3
|
+
none: "0px",
|
|
4
|
+
sm: "0.125rem",
|
|
5
|
+
// 2px
|
|
6
|
+
DEFAULT: "0.25rem",
|
|
7
|
+
// 4px
|
|
8
|
+
md: "0.375rem",
|
|
9
|
+
// 6px
|
|
10
|
+
lg: "0.5rem",
|
|
11
|
+
// 8px
|
|
12
|
+
xl: "0.75rem",
|
|
13
|
+
// 12px
|
|
14
|
+
"2xl": "1rem",
|
|
15
|
+
// 16px
|
|
16
|
+
"3xl": "1.5rem",
|
|
17
|
+
// 24px
|
|
18
|
+
full: "9999px"
|
|
19
|
+
};
|
|
20
|
+
export {
|
|
21
|
+
e as b
|
|
22
|
+
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={day:{background:"hsl(var(--background))",foreground:"hsl(var(--foreground))",card:"hsl(var(--card))",cardForeground:"hsl(var(--card-foreground))",popover:"hsl(var(--popover))",popoverForeground:"hsl(var(--popover-foreground))",primary:"hsl(var(--tm-primary))",primaryForeground:"hsl(var(--tm-primary-foreground))",secondary:"hsl(var(--tm-secondary))",secondaryForeground:"hsl(var(--tm-secondary-foreground))",muted:"hsl(var(--muted))",mutedForeground:"hsl(var(--muted-foreground))",accent:"hsl(var(--tm-accent))",accentForeground:"hsl(var(--tm-accent-foreground))",destructive:"hsl(var(--destructive))",destructiveForeground:"hsl(var(--destructive-foreground))",border:"hsl(var(--border))",input:"hsl(var(--input))",ring:"hsl(var(--ring))",chart1:"hsl(12, 76%, 61%)",chart2:"hsl(173, 58%, 39%)",chart3:"hsl(197, 37%, 24%)",chart4:"hsl(43, 74%, 66%)",chart5:"hsl(27, 87%, 67%)"},night:{background:"hsl(var(--background))",foreground:"hsl(var(--foreground))",card:"hsl(var(--card))",cardForeground:"hsl(var(--card-foreground))",popover:"hsl(var(--popover))",popoverForeground:"hsl(var(--popover-foreground))",primary:"hsl(var(--tm-primary))",primaryForeground:"hsl(var(--tm-primary-foreground))",secondary:"hsl(var(--tm-secondary))",secondaryForeground:"hsl(var(--tm-secondary-foreground))",muted:"hsl(var(--muted))",mutedForeground:"hsl(var(--muted-foreground))",accent:"hsl(var(--tm-accent))",accentForeground:"hsl(var(--tm-accent-foreground))",destructive:"hsl(var(--destructive))",destructiveForeground:"hsl(var(--destructive-foreground))",border:"hsl(var(--border))",input:"hsl(var(--input))",ring:"hsl(var(--ring))",chart1:"hsl(220, 70%, 50%)",chart2:"hsl(160, 60%, 45%)",chart3:"hsl(30, 80%, 55%)",chart4:"hsl(280, 65%, 60%)",chart5:"hsl(340, 75%, 55%)"}},a={background:"hsl(var(--background))",foreground:"hsl(var(--foreground))",card:{DEFAULT:"hsl(var(--card))",foreground:"hsl(var(--card-foreground))"},popover:{DEFAULT:"hsl(var(--popover))",foreground:"hsl(var(--popover-foreground))"},primary:{DEFAULT:"hsl(var(--tm-primary))",foreground:"hsl(var(--tm-primary-foreground))"},secondary:{DEFAULT:"hsl(var(--tm-secondary))",foreground:"hsl(var(--tm-secondary-foreground))"},muted:{DEFAULT:"hsl(var(--muted))",foreground:"hsl(var(--muted-foreground))"},accent:{DEFAULT:"hsl(var(--tm-accent))",foreground:"hsl(var(--tm-accent-foreground))"},destructive:{DEFAULT:"hsl(var(--destructive))",foreground:"hsl(var(--destructive-foreground))"},border:"hsl(var(--border))",input:"hsl(var(--input))",ring:"hsl(var(--ring))",chart:{1:"hsl(var(--chart-1))",2:"hsl(var(--chart-2))",3:"hsl(var(--chart-3))",4:"hsl(var(--chart-4))",5:"hsl(var(--chart-5))"}},t={none:"0",xs:"0.25rem",sm:"0.5rem",md:"1rem",lg:"1.5rem",xl:"2rem","2xl":"2.5rem","3xl":"3rem","4xl":"4rem","5xl":"5rem"},s={none:"0px",sm:"0.125rem",base:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},n={none:"none",sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",base:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)"},l={sans:["ui-sans-serif","system-ui","-apple-system","Segoe UI","Roboto","Ubuntu","Cantarell","Noto Sans","Helvetica Neue","Arial","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"].join(", "),serif:["ui-serif","Georgia","Cambria","Times New Roman","Times","serif"].join(", "),mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas","Liberation Mono","Courier New","monospace"].join(", ")},i={xs:"0.75rem",sm:"0.875rem",base:"1rem",lg:"1.125rem",xl:"1.25rem","2xl":"1.5rem","3xl":"1.875rem","4xl":"2.25rem","5xl":"3rem","6xl":"3.75rem"},c={thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},m={none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2"},d={tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},r={instant:"0ms",fast:"150ms",normal:"300ms",slow:"500ms",slower:"700ms",slowest:"1000ms"},o={linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)",inOut:"cubic-bezier(0.4, 0, 0.2, 1)",bounce:"cubic-bezier(0.68, -0.55, 0.265, 1.55)",elastic:"cubic-bezier(0.175, 0.885, 0.32, 1.275)"},u={fast:`${r.fast} ${o.out}`,normal:`${r.normal} ${o.inOut}`,slow:`${r.slow} ${o.inOut}`,bounce:`${r.normal} ${o.bounce}`,elastic:`${r.slow} ${o.elastic}`},g={fadeIn:{from:{opacity:0},to:{opacity:1}},fadeOut:{from:{opacity:1},to:{opacity:0}},slideInUp:{from:{transform:"translateY(100%)",opacity:0},to:{transform:"translateY(0)",opacity:1}},slideInDown:{from:{transform:"translateY(-100%)",opacity:0},to:{transform:"translateY(0)",opacity:1}},slideInLeft:{from:{transform:"translateX(-100%)",opacity:0},to:{transform:"translateX(0)",opacity:1}},slideInRight:{from:{transform:"translateX(100%)",opacity:0},to:{transform:"translateX(0)",opacity:1}},scaleIn:{from:{transform:"scale(0.95)",opacity:0},to:{transform:"scale(1)",opacity:1}},scaleOut:{from:{transform:"scale(1)",opacity:1},to:{transform:"scale(0.95)",opacity:0}},spin:{from:{transform:"rotate(0deg)"},to:{transform:"rotate(360deg)"}},pulse:{"0%, 100%":{opacity:1},"50%":{opacity:.5}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8, 0, 1, 1)"},"50%":{transform:"translateY(0)",animationTimingFunction:"cubic-bezier(0, 0, 0.2, 1)"}}};exports.animations=g;exports.borderRadius=s;exports.cssVariableColorTokens=e;exports.durations=r;exports.easings=o;exports.fontFamilies=l;exports.fontSizes=i;exports.fontWeights=c;exports.letterSpacings=d;exports.lineHeights=m;exports.shadows=n;exports.spacing=t;exports.tailwindThemeColors=a;exports.transitions=u;
|
|
@@ -0,0 +1,303 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const e = {
|
|
3
|
+
day: {
|
|
4
|
+
background: "hsl(var(--background))",
|
|
5
|
+
foreground: "hsl(var(--foreground))",
|
|
6
|
+
card: "hsl(var(--card))",
|
|
7
|
+
cardForeground: "hsl(var(--card-foreground))",
|
|
8
|
+
popover: "hsl(var(--popover))",
|
|
9
|
+
popoverForeground: "hsl(var(--popover-foreground))",
|
|
10
|
+
primary: "hsl(var(--tm-primary))",
|
|
11
|
+
primaryForeground: "hsl(var(--tm-primary-foreground))",
|
|
12
|
+
secondary: "hsl(var(--tm-secondary))",
|
|
13
|
+
secondaryForeground: "hsl(var(--tm-secondary-foreground))",
|
|
14
|
+
muted: "hsl(var(--muted))",
|
|
15
|
+
mutedForeground: "hsl(var(--muted-foreground))",
|
|
16
|
+
accent: "hsl(var(--tm-accent))",
|
|
17
|
+
accentForeground: "hsl(var(--tm-accent-foreground))",
|
|
18
|
+
destructive: "hsl(var(--destructive))",
|
|
19
|
+
destructiveForeground: "hsl(var(--destructive-foreground))",
|
|
20
|
+
border: "hsl(var(--border))",
|
|
21
|
+
input: "hsl(var(--input))",
|
|
22
|
+
ring: "hsl(var(--ring))",
|
|
23
|
+
chart1: "hsl(12, 76%, 61%)",
|
|
24
|
+
chart2: "hsl(173, 58%, 39%)",
|
|
25
|
+
chart3: "hsl(197, 37%, 24%)",
|
|
26
|
+
chart4: "hsl(43, 74%, 66%)",
|
|
27
|
+
chart5: "hsl(27, 87%, 67%)"
|
|
28
|
+
},
|
|
29
|
+
night: {
|
|
30
|
+
background: "hsl(var(--background))",
|
|
31
|
+
foreground: "hsl(var(--foreground))",
|
|
32
|
+
card: "hsl(var(--card))",
|
|
33
|
+
cardForeground: "hsl(var(--card-foreground))",
|
|
34
|
+
popover: "hsl(var(--popover))",
|
|
35
|
+
popoverForeground: "hsl(var(--popover-foreground))",
|
|
36
|
+
primary: "hsl(var(--tm-primary))",
|
|
37
|
+
primaryForeground: "hsl(var(--tm-primary-foreground))",
|
|
38
|
+
secondary: "hsl(var(--tm-secondary))",
|
|
39
|
+
secondaryForeground: "hsl(var(--tm-secondary-foreground))",
|
|
40
|
+
muted: "hsl(var(--muted))",
|
|
41
|
+
mutedForeground: "hsl(var(--muted-foreground))",
|
|
42
|
+
accent: "hsl(var(--tm-accent))",
|
|
43
|
+
accentForeground: "hsl(var(--tm-accent-foreground))",
|
|
44
|
+
destructive: "hsl(var(--destructive))",
|
|
45
|
+
destructiveForeground: "hsl(var(--destructive-foreground))",
|
|
46
|
+
border: "hsl(var(--border))",
|
|
47
|
+
input: "hsl(var(--input))",
|
|
48
|
+
ring: "hsl(var(--ring))",
|
|
49
|
+
chart1: "hsl(220, 70%, 50%)",
|
|
50
|
+
chart2: "hsl(160, 60%, 45%)",
|
|
51
|
+
chart3: "hsl(30, 80%, 55%)",
|
|
52
|
+
chart4: "hsl(280, 65%, 60%)",
|
|
53
|
+
chart5: "hsl(340, 75%, 55%)"
|
|
54
|
+
}
|
|
55
|
+
}, a = {
|
|
56
|
+
background: "hsl(var(--background))",
|
|
57
|
+
foreground: "hsl(var(--foreground))",
|
|
58
|
+
card: {
|
|
59
|
+
DEFAULT: "hsl(var(--card))",
|
|
60
|
+
foreground: "hsl(var(--card-foreground))"
|
|
61
|
+
},
|
|
62
|
+
popover: {
|
|
63
|
+
DEFAULT: "hsl(var(--popover))",
|
|
64
|
+
foreground: "hsl(var(--popover-foreground))"
|
|
65
|
+
},
|
|
66
|
+
primary: {
|
|
67
|
+
DEFAULT: "hsl(var(--tm-primary))",
|
|
68
|
+
foreground: "hsl(var(--tm-primary-foreground))"
|
|
69
|
+
},
|
|
70
|
+
secondary: {
|
|
71
|
+
DEFAULT: "hsl(var(--tm-secondary))",
|
|
72
|
+
foreground: "hsl(var(--tm-secondary-foreground))"
|
|
73
|
+
},
|
|
74
|
+
muted: {
|
|
75
|
+
DEFAULT: "hsl(var(--muted))",
|
|
76
|
+
foreground: "hsl(var(--muted-foreground))"
|
|
77
|
+
},
|
|
78
|
+
accent: {
|
|
79
|
+
DEFAULT: "hsl(var(--tm-accent))",
|
|
80
|
+
foreground: "hsl(var(--tm-accent-foreground))"
|
|
81
|
+
},
|
|
82
|
+
destructive: {
|
|
83
|
+
DEFAULT: "hsl(var(--destructive))",
|
|
84
|
+
foreground: "hsl(var(--destructive-foreground))"
|
|
85
|
+
},
|
|
86
|
+
border: "hsl(var(--border))",
|
|
87
|
+
input: "hsl(var(--input))",
|
|
88
|
+
ring: "hsl(var(--ring))",
|
|
89
|
+
chart: {
|
|
90
|
+
1: "hsl(var(--chart-1))",
|
|
91
|
+
2: "hsl(var(--chart-2))",
|
|
92
|
+
3: "hsl(var(--chart-3))",
|
|
93
|
+
4: "hsl(var(--chart-4))",
|
|
94
|
+
5: "hsl(var(--chart-5))"
|
|
95
|
+
}
|
|
96
|
+
}, t = {
|
|
97
|
+
none: "0",
|
|
98
|
+
xs: "0.25rem",
|
|
99
|
+
// 4px
|
|
100
|
+
sm: "0.5rem",
|
|
101
|
+
// 8px
|
|
102
|
+
md: "1rem",
|
|
103
|
+
// 16px
|
|
104
|
+
lg: "1.5rem",
|
|
105
|
+
// 24px
|
|
106
|
+
xl: "2rem",
|
|
107
|
+
// 32px
|
|
108
|
+
"2xl": "2.5rem",
|
|
109
|
+
// 40px
|
|
110
|
+
"3xl": "3rem",
|
|
111
|
+
// 48px
|
|
112
|
+
"4xl": "4rem",
|
|
113
|
+
// 64px
|
|
114
|
+
"5xl": "5rem"
|
|
115
|
+
// 80px
|
|
116
|
+
}, s = {
|
|
117
|
+
none: "0px",
|
|
118
|
+
sm: "0.125rem",
|
|
119
|
+
// 2px
|
|
120
|
+
base: "0.25rem",
|
|
121
|
+
// 4px
|
|
122
|
+
md: "0.375rem",
|
|
123
|
+
// 6px
|
|
124
|
+
lg: "0.5rem",
|
|
125
|
+
// 8px
|
|
126
|
+
xl: "0.75rem",
|
|
127
|
+
// 12px
|
|
128
|
+
"2xl": "1rem",
|
|
129
|
+
// 16px
|
|
130
|
+
"3xl": "1.5rem",
|
|
131
|
+
// 24px
|
|
132
|
+
full: "9999px"
|
|
133
|
+
}, n = {
|
|
134
|
+
none: "none",
|
|
135
|
+
sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
|
|
136
|
+
base: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
|
|
137
|
+
md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
|
|
138
|
+
lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
|
|
139
|
+
xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
|
|
140
|
+
"2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
|
|
141
|
+
inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)"
|
|
142
|
+
}, l = {
|
|
143
|
+
sans: [
|
|
144
|
+
"ui-sans-serif",
|
|
145
|
+
"system-ui",
|
|
146
|
+
"-apple-system",
|
|
147
|
+
"Segoe UI",
|
|
148
|
+
"Roboto",
|
|
149
|
+
"Ubuntu",
|
|
150
|
+
"Cantarell",
|
|
151
|
+
"Noto Sans",
|
|
152
|
+
"Helvetica Neue",
|
|
153
|
+
"Arial",
|
|
154
|
+
"Apple Color Emoji",
|
|
155
|
+
"Segoe UI Emoji",
|
|
156
|
+
"Segoe UI Symbol",
|
|
157
|
+
"Noto Color Emoji"
|
|
158
|
+
].join(", "),
|
|
159
|
+
serif: [
|
|
160
|
+
"ui-serif",
|
|
161
|
+
"Georgia",
|
|
162
|
+
"Cambria",
|
|
163
|
+
"Times New Roman",
|
|
164
|
+
"Times",
|
|
165
|
+
"serif"
|
|
166
|
+
].join(", "),
|
|
167
|
+
mono: [
|
|
168
|
+
"ui-monospace",
|
|
169
|
+
"SFMono-Regular",
|
|
170
|
+
"Menlo",
|
|
171
|
+
"Monaco",
|
|
172
|
+
"Consolas",
|
|
173
|
+
"Liberation Mono",
|
|
174
|
+
"Courier New",
|
|
175
|
+
"monospace"
|
|
176
|
+
].join(", ")
|
|
177
|
+
}, i = {
|
|
178
|
+
xs: "0.75rem",
|
|
179
|
+
// 12px
|
|
180
|
+
sm: "0.875rem",
|
|
181
|
+
// 14px
|
|
182
|
+
base: "1rem",
|
|
183
|
+
// 16px
|
|
184
|
+
lg: "1.125rem",
|
|
185
|
+
// 18px
|
|
186
|
+
xl: "1.25rem",
|
|
187
|
+
// 20px
|
|
188
|
+
"2xl": "1.5rem",
|
|
189
|
+
// 24px
|
|
190
|
+
"3xl": "1.875rem",
|
|
191
|
+
// 30px
|
|
192
|
+
"4xl": "2.25rem",
|
|
193
|
+
// 36px
|
|
194
|
+
"5xl": "3rem",
|
|
195
|
+
// 48px
|
|
196
|
+
"6xl": "3.75rem"
|
|
197
|
+
// 60px
|
|
198
|
+
}, c = {
|
|
199
|
+
thin: "100",
|
|
200
|
+
extralight: "200",
|
|
201
|
+
light: "300",
|
|
202
|
+
normal: "400",
|
|
203
|
+
medium: "500",
|
|
204
|
+
semibold: "600",
|
|
205
|
+
bold: "700",
|
|
206
|
+
extrabold: "800",
|
|
207
|
+
black: "900"
|
|
208
|
+
}, m = {
|
|
209
|
+
none: "1",
|
|
210
|
+
tight: "1.25",
|
|
211
|
+
snug: "1.375",
|
|
212
|
+
normal: "1.5",
|
|
213
|
+
relaxed: "1.625",
|
|
214
|
+
loose: "2"
|
|
215
|
+
}, d = {
|
|
216
|
+
tighter: "-0.05em",
|
|
217
|
+
tight: "-0.025em",
|
|
218
|
+
normal: "0em",
|
|
219
|
+
wide: "0.025em",
|
|
220
|
+
wider: "0.05em",
|
|
221
|
+
widest: "0.1em"
|
|
222
|
+
}, r = {
|
|
223
|
+
instant: "0ms",
|
|
224
|
+
fast: "150ms",
|
|
225
|
+
normal: "300ms",
|
|
226
|
+
slow: "500ms",
|
|
227
|
+
slower: "700ms",
|
|
228
|
+
slowest: "1000ms"
|
|
229
|
+
}, o = {
|
|
230
|
+
linear: "linear",
|
|
231
|
+
in: "cubic-bezier(0.4, 0, 1, 1)",
|
|
232
|
+
out: "cubic-bezier(0, 0, 0.2, 1)",
|
|
233
|
+
inOut: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
234
|
+
bounce: "cubic-bezier(0.68, -0.55, 0.265, 1.55)",
|
|
235
|
+
elastic: "cubic-bezier(0.175, 0.885, 0.32, 1.275)"
|
|
236
|
+
}, u = {
|
|
237
|
+
fast: `${r.fast} ${o.out}`,
|
|
238
|
+
normal: `${r.normal} ${o.inOut}`,
|
|
239
|
+
slow: `${r.slow} ${o.inOut}`,
|
|
240
|
+
bounce: `${r.normal} ${o.bounce}`,
|
|
241
|
+
elastic: `${r.slow} ${o.elastic}`
|
|
242
|
+
}, p = {
|
|
243
|
+
fadeIn: {
|
|
244
|
+
from: { opacity: 0 },
|
|
245
|
+
to: { opacity: 1 }
|
|
246
|
+
},
|
|
247
|
+
fadeOut: {
|
|
248
|
+
from: { opacity: 1 },
|
|
249
|
+
to: { opacity: 0 }
|
|
250
|
+
},
|
|
251
|
+
slideInUp: {
|
|
252
|
+
from: { transform: "translateY(100%)", opacity: 0 },
|
|
253
|
+
to: { transform: "translateY(0)", opacity: 1 }
|
|
254
|
+
},
|
|
255
|
+
slideInDown: {
|
|
256
|
+
from: { transform: "translateY(-100%)", opacity: 0 },
|
|
257
|
+
to: { transform: "translateY(0)", opacity: 1 }
|
|
258
|
+
},
|
|
259
|
+
slideInLeft: {
|
|
260
|
+
from: { transform: "translateX(-100%)", opacity: 0 },
|
|
261
|
+
to: { transform: "translateX(0)", opacity: 1 }
|
|
262
|
+
},
|
|
263
|
+
slideInRight: {
|
|
264
|
+
from: { transform: "translateX(100%)", opacity: 0 },
|
|
265
|
+
to: { transform: "translateX(0)", opacity: 1 }
|
|
266
|
+
},
|
|
267
|
+
scaleIn: {
|
|
268
|
+
from: { transform: "scale(0.95)", opacity: 0 },
|
|
269
|
+
to: { transform: "scale(1)", opacity: 1 }
|
|
270
|
+
},
|
|
271
|
+
scaleOut: {
|
|
272
|
+
from: { transform: "scale(1)", opacity: 1 },
|
|
273
|
+
to: { transform: "scale(0.95)", opacity: 0 }
|
|
274
|
+
},
|
|
275
|
+
spin: {
|
|
276
|
+
from: { transform: "rotate(0deg)" },
|
|
277
|
+
to: { transform: "rotate(360deg)" }
|
|
278
|
+
},
|
|
279
|
+
pulse: {
|
|
280
|
+
"0%, 100%": { opacity: 1 },
|
|
281
|
+
"50%": { opacity: 0.5 }
|
|
282
|
+
},
|
|
283
|
+
bounce: {
|
|
284
|
+
"0%, 100%": { transform: "translateY(-25%)", animationTimingFunction: "cubic-bezier(0.8, 0, 1, 1)" },
|
|
285
|
+
"50%": { transform: "translateY(0)", animationTimingFunction: "cubic-bezier(0, 0, 0.2, 1)" }
|
|
286
|
+
}
|
|
287
|
+
};
|
|
288
|
+
export {
|
|
289
|
+
p as animations,
|
|
290
|
+
s as borderRadius,
|
|
291
|
+
e as cssVariableColorTokens,
|
|
292
|
+
r as durations,
|
|
293
|
+
o as easings,
|
|
294
|
+
l as fontFamilies,
|
|
295
|
+
i as fontSizes,
|
|
296
|
+
c as fontWeights,
|
|
297
|
+
d as letterSpacings,
|
|
298
|
+
m as lineHeights,
|
|
299
|
+
n as shadows,
|
|
300
|
+
t as spacing,
|
|
301
|
+
a as tailwindThemeColors,
|
|
302
|
+
u as transitions
|
|
303
|
+
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("../radius-CuOZD6Mk.cjs"),e={day:{background:"hsl(var(--background))",foreground:"hsl(var(--foreground))",card:"hsl(var(--card))",cardForeground:"hsl(var(--card-foreground))",popover:"hsl(var(--popover))",popoverForeground:"hsl(var(--popover-foreground))",primary:"hsl(var(--tm-primary))",primaryForeground:"hsl(var(--tm-primary-foreground))",secondary:"hsl(var(--tm-secondary))",secondaryForeground:"hsl(var(--tm-secondary-foreground))",muted:"hsl(var(--muted))",mutedForeground:"hsl(var(--muted-foreground))",accent:"hsl(var(--tm-accent))",accentForeground:"hsl(var(--tm-accent-foreground))",destructive:"hsl(var(--destructive))",destructiveForeground:"hsl(var(--destructive-foreground))",border:"hsl(var(--border))",input:"hsl(var(--input))",ring:"hsl(var(--ring))",chart1:"hsl(12, 76%, 61%)",chart2:"hsl(173, 58%, 39%)",chart3:"hsl(197, 37%, 24%)",chart4:"hsl(43, 74%, 66%)",chart5:"hsl(27, 87%, 67%)"},night:{background:"hsl(var(--background))",foreground:"hsl(var(--foreground))",card:"hsl(var(--card))",cardForeground:"hsl(var(--card-foreground))",popover:"hsl(var(--popover))",popoverForeground:"hsl(var(--popover-foreground))",primary:"hsl(var(--tm-primary))",primaryForeground:"hsl(var(--tm-primary-foreground))",secondary:"hsl(var(--tm-secondary))",secondaryForeground:"hsl(var(--tm-secondary-foreground))",muted:"hsl(var(--muted))",mutedForeground:"hsl(var(--muted-foreground))",accent:"hsl(var(--tm-accent))",accentForeground:"hsl(var(--tm-accent-foreground))",destructive:"hsl(var(--destructive))",destructiveForeground:"hsl(var(--destructive-foreground))",border:"hsl(var(--border))",input:"hsl(var(--input))",ring:"hsl(var(--ring))",chart1:"hsl(220, 70%, 50%)",chart2:"hsl(160, 60%, 45%)",chart3:"hsl(30, 80%, 55%)",chart4:"hsl(280, 65%, 60%)",chart5:"hsl(340, 75%, 55%)"}},o={background:"hsl(var(--background))",foreground:"hsl(var(--foreground))",card:{DEFAULT:"hsl(var(--card))",foreground:"hsl(var(--card-foreground))"},popover:{DEFAULT:"hsl(var(--popover))",foreground:"hsl(var(--popover-foreground))"},primary:{DEFAULT:"hsl(var(--tm-primary))",foreground:"hsl(var(--tm-primary-foreground))"},secondary:{DEFAULT:"hsl(var(--tm-secondary))",foreground:"hsl(var(--tm-secondary-foreground))"},muted:{DEFAULT:"hsl(var(--muted))",foreground:"hsl(var(--muted-foreground))"},accent:{DEFAULT:"hsl(var(--tm-accent))",foreground:"hsl(var(--tm-accent-foreground))"},destructive:{DEFAULT:"hsl(var(--destructive))",foreground:"hsl(var(--destructive-foreground))"},border:"hsl(var(--border))",input:"hsl(var(--input))",ring:"hsl(var(--ring))",chart:{1:"hsl(var(--chart-1))",2:"hsl(var(--chart-2))",3:"hsl(var(--chart-3))",4:"hsl(var(--chart-4))",5:"hsl(var(--chart-5))"}},a={px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},n={sans:["ui-sans-serif","system-ui","-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],serif:["ui-serif","Georgia","Cambria","Times New Roman","Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas","Liberation Mono","Courier New","monospace"]},t={xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},s={thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},l={tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},m={none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2"};exports.borderRadius=r.borderRadius;exports.cssVariableColorTokens=e;exports.fontFamily=n;exports.fontSize=t;exports.fontWeight=s;exports.letterSpacing=l;exports.lineHeight=m;exports.spacing=a;exports.tailwindThemeColors=o;
|