ingeniuscliq-core 0.2.13 → 0.2.15

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.
@@ -1,85 +0,0 @@
1
- /** @type {import('tailwindcss').Config} */
2
- export default {
3
- content: [
4
- "./core/**/*.{js,ts,jsx,tsx}",
5
- "./dist/**/*.{js,ts,jsx,tsx}",
6
- ],
7
- prefix: 'ic-', // Namespace all Tailwind classes with 'ic-'
8
- theme: {
9
- extend: {
10
- colors: {
11
- // Map your namespaced variables to Tailwind colors
12
- background: 'var(--ic-background)',
13
- foreground: 'var(--ic-foreground)',
14
- card: 'var(--ic-card)',
15
- 'card-foreground': 'var(--ic-card-foreground)',
16
- popover: 'var(--ic-popover)',
17
- 'popover-foreground': 'var(--ic-popover-foreground)',
18
- primary: 'var(--ic-primary)',
19
- 'primary-foreground': 'var(--ic-primary-foreground)',
20
- secondary: 'var(--ic-secondary)',
21
- 'secondary-foreground': 'var(--ic-secondary-foreground)',
22
- muted: 'var(--ic-muted)',
23
- 'muted-foreground': 'var(--ic-muted-foreground)',
24
- accent: 'var(--ic-accent)',
25
- 'accent-foreground': 'var(--ic-accent-foreground)',
26
- destructive: 'var(--ic-destructive)',
27
- 'destructive-foreground': 'var(--ic-destructive-foreground)',
28
- border: 'var(--ic-border)',
29
- input: 'var(--ic-input)',
30
- ring: 'var(--ic-ring)',
31
- chart: {
32
- 1: 'var(--ic-chart-1)',
33
- 2: 'var(--ic-chart-2)',
34
- 3: 'var(--ic-chart-3)',
35
- 4: 'var(--ic-chart-4)',
36
- 5: 'var(--ic-chart-5)',
37
- },
38
- sidebar: {
39
- DEFAULT: 'var(--ic-sidebar)',
40
- foreground: 'var(--ic-sidebar-foreground)',
41
- primary: 'var(--ic-sidebar-primary)',
42
- 'primary-foreground': 'var(--ic-sidebar-primary-foreground)',
43
- accent: 'var(--ic-sidebar-accent)',
44
- 'accent-foreground': 'var(--ic-sidebar-accent-foreground)',
45
- border: 'var(--ic-sidebar-border)',
46
- ring: 'var(--ic-sidebar-ring)',
47
- },
48
- },
49
- borderRadius: {
50
- sm: 'var(--ic-radius-sm)',
51
- md: 'var(--ic-radius-md)',
52
- lg: 'var(--ic-radius-lg)',
53
- xl: 'var(--ic-radius-xl)',
54
- },
55
- animation: {
56
- 'ic-fade-in': 'fadeIn 1s ease-in-out',
57
- 'ic-fade-in-normal': 'fadeIn 1s ease-in-out',
58
- 'ic-translate-up': 'translateUp 2s ease-in-out',
59
- 'ic-translate-up-normal': 'translateUp 2s ease-in-out',
60
- 'ic-shake': 'shakeIn 1.5s ease-in-out',
61
- },
62
- keyframes: {
63
- fadeIn: {
64
- from: { opacity: '0', transform: 'scale(0)' },
65
- '20%': { opacity: '1' },
66
- to: { transform: 'scale(1)' },
67
- },
68
- translateUp: {
69
- from: { opacity: '0', transform: 'translateY(30%)' },
70
- to: { opacity: '1', transform: 'translateY(0%)' },
71
- },
72
- shakeIn: {
73
- 'from, 50%': { transform: 'rotate(20deg)' },
74
- '25%, 75%': { transform: 'rotate(-20deg)' },
75
- to: { transform: 'rotate(0deg)' },
76
- },
77
- },
78
- },
79
- },
80
- plugins: [],
81
- corePlugins: {
82
- // Disable core plugins that might conflict
83
- preflight: false, // Disable Tailwind's base styles
84
- },
85
- }