@shuriken-ui/tailwind 1.2.6 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/config.d.cts +1 -193
- package/dist/config.d.mts +1 -193
- package/dist/config.d.ts +1 -193
- package/dist/index.d.cts +4 -3
- package/dist/index.d.mts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/preset.cjs +1025 -447
- package/dist/preset.d.cts +4 -389
- package/dist/preset.d.mts +4 -389
- package/dist/preset.d.ts +4 -389
- package/dist/preset.mjs +1025 -447
- package/dist/shared/tailwind.6e716239.d.cts +4724 -0
- package/dist/shared/tailwind.6e716239.d.mts +4724 -0
- package/dist/shared/tailwind.6e716239.d.ts +4724 -0
- package/package.json +24 -24
package/dist/config.d.cts
CHANGED
@@ -1,198 +1,6 @@
|
|
1
|
-
import * as typography from '@tailwindcss/typography';
|
2
|
-
import * as tailwindcss_types_config from 'tailwindcss/types/config';
|
3
|
-
import { Config } from 'tailwindcss';
|
4
|
-
|
5
1
|
declare const _default: {
|
6
2
|
content: never[];
|
7
|
-
presets:
|
8
|
-
darkMode: "class";
|
9
|
-
content: never[];
|
10
|
-
plugins: ({
|
11
|
-
handler: tailwindcss_types_config.PluginCreator;
|
12
|
-
config?: Partial<Config> | undefined;
|
13
|
-
} | typeof typography)[];
|
14
|
-
theme: {
|
15
|
-
fontFamily: {
|
16
|
-
sans: string[];
|
17
|
-
heading: string[];
|
18
|
-
alt: string[];
|
19
|
-
mono: string[];
|
20
|
-
};
|
21
|
-
extend: {
|
22
|
-
colors: {
|
23
|
-
muted: {
|
24
|
-
'50': "#f8fafc";
|
25
|
-
'100': "#f1f5f9";
|
26
|
-
'200': "#e2e8f0";
|
27
|
-
'300': "#cbd5e1";
|
28
|
-
'400': "#94a3b8";
|
29
|
-
'500': "#64748b";
|
30
|
-
'600': "#475569";
|
31
|
-
'700': "#334155";
|
32
|
-
'800': "#1e293b";
|
33
|
-
'900': "#0f172a";
|
34
|
-
'950': "#020617";
|
35
|
-
};
|
36
|
-
primary: {
|
37
|
-
'50': "#f5f3ff";
|
38
|
-
'100': "#ede9fe";
|
39
|
-
'200': "#ddd6fe";
|
40
|
-
'300': "#c4b5fd";
|
41
|
-
'400': "#a78bfa";
|
42
|
-
'500': "#8b5cf6";
|
43
|
-
'600': "#7c3aed";
|
44
|
-
'700': "#6d28d9";
|
45
|
-
'800': "#5b21b6";
|
46
|
-
'900': "#4c1d95";
|
47
|
-
'950': "#2e1065";
|
48
|
-
};
|
49
|
-
info: {
|
50
|
-
'50': "#f0f9ff";
|
51
|
-
'100': "#e0f2fe";
|
52
|
-
'200': "#bae6fd";
|
53
|
-
'300': "#7dd3fc";
|
54
|
-
'400': "#38bdf8";
|
55
|
-
'500': "#0ea5e9";
|
56
|
-
'600': "#0284c7";
|
57
|
-
'700': "#0369a1";
|
58
|
-
'800': "#075985";
|
59
|
-
'900': "#0c4a6e";
|
60
|
-
'950': "#082f49";
|
61
|
-
};
|
62
|
-
success: {
|
63
|
-
'50': "#f0fdfa";
|
64
|
-
'100': "#ccfbf1";
|
65
|
-
'200': "#99f6e4";
|
66
|
-
'300': "#5eead4";
|
67
|
-
'400': "#2dd4bf";
|
68
|
-
'500': "#14b8a6";
|
69
|
-
'600': "#0d9488";
|
70
|
-
'700': "#0f766e";
|
71
|
-
'800': "#115e59";
|
72
|
-
'900': "#134e4a";
|
73
|
-
'950': "#042f2e";
|
74
|
-
};
|
75
|
-
warning: {
|
76
|
-
'50': "#fffbeb";
|
77
|
-
'100': "#fef3c7";
|
78
|
-
'200': "#fde68a";
|
79
|
-
'300': "#fcd34d";
|
80
|
-
'400': "#fbbf24";
|
81
|
-
'500': "#f59e0b";
|
82
|
-
'600': "#d97706";
|
83
|
-
'700': "#b45309";
|
84
|
-
'800': "#92400e";
|
85
|
-
'900': "#78350f";
|
86
|
-
'950': "#451a03";
|
87
|
-
};
|
88
|
-
danger: {
|
89
|
-
'50': "#fff1f2";
|
90
|
-
'100': "#ffe4e6";
|
91
|
-
'200': "#fecdd3";
|
92
|
-
'300': "#fda4af";
|
93
|
-
'400': "#fb7185";
|
94
|
-
'500': "#f43f5e";
|
95
|
-
'600': "#e11d48";
|
96
|
-
'700': "#be123c";
|
97
|
-
'800': "#9f1239";
|
98
|
-
'900': "#881337";
|
99
|
-
'950': "#4c0519";
|
100
|
-
};
|
101
|
-
};
|
102
|
-
screens: {
|
103
|
-
xs: {
|
104
|
-
max: string;
|
105
|
-
};
|
106
|
-
lg: string;
|
107
|
-
ptablet: {
|
108
|
-
raw: string;
|
109
|
-
};
|
110
|
-
ltablet: {
|
111
|
-
raw: string;
|
112
|
-
};
|
113
|
-
};
|
114
|
-
typography: ({ theme }: any) => {
|
115
|
-
primary: {
|
116
|
-
css: {
|
117
|
-
'--tw-prose-links': any;
|
118
|
-
'--tw-prose-quote-borders': any;
|
119
|
-
'--tw-prose-invert-links': any;
|
120
|
-
'--tw-prose-invert-quote-borders': any;
|
121
|
-
};
|
122
|
-
};
|
123
|
-
muted: {
|
124
|
-
css: {
|
125
|
-
'--tw-prose-body': any;
|
126
|
-
'--tw-prose-headings': any;
|
127
|
-
'--tw-prose-lead': any;
|
128
|
-
'--tw-prose-bold': any;
|
129
|
-
'--tw-prose-counters': any;
|
130
|
-
'--tw-prose-bullets': any;
|
131
|
-
'--tw-prose-hr': any;
|
132
|
-
'--tw-prose-quotes': any;
|
133
|
-
'--tw-prose-captions': any;
|
134
|
-
'--tw-prose-code': any;
|
135
|
-
'--tw-prose-pre-code': any;
|
136
|
-
'--tw-prose-pre-bg': any;
|
137
|
-
'--tw-prose-th-borders': any;
|
138
|
-
'--tw-prose-td-borders': any;
|
139
|
-
'--tw-prose-invert-body': any;
|
140
|
-
'--tw-prose-invert-headings': any;
|
141
|
-
'--tw-prose-invert-lead': any;
|
142
|
-
'--tw-prose-invert-bold': any;
|
143
|
-
'--tw-prose-invert-counters': any;
|
144
|
-
'--tw-prose-invert-bullets': any;
|
145
|
-
'--tw-prose-invert-hr': any;
|
146
|
-
'--tw-prose-invert-quotes': any;
|
147
|
-
'--tw-prose-invert-captions': any;
|
148
|
-
'--tw-prose-invert-code': any;
|
149
|
-
'--tw-prose-invert-pre-code': any;
|
150
|
-
'--tw-prose-invert-pre-bg': any;
|
151
|
-
'--tw-prose-invert-th-borders': any;
|
152
|
-
'--tw-prose-invert-td-borders': any;
|
153
|
-
};
|
154
|
-
};
|
155
|
-
css: {
|
156
|
-
h1: {
|
157
|
-
fontWeight: number;
|
158
|
-
};
|
159
|
-
h2: {
|
160
|
-
fontWeight: number;
|
161
|
-
};
|
162
|
-
h3: {
|
163
|
-
fontWeight: number;
|
164
|
-
};
|
165
|
-
h4: {
|
166
|
-
fontWeight: number;
|
167
|
-
};
|
168
|
-
li: {
|
169
|
-
fontSize: string;
|
170
|
-
padding: string;
|
171
|
-
};
|
172
|
-
em: {
|
173
|
-
fontSize: string;
|
174
|
-
lineHeight: number;
|
175
|
-
};
|
176
|
-
blockquote: {
|
177
|
-
fontSize: string;
|
178
|
-
lineHeight: number;
|
179
|
-
fontWeight: number;
|
180
|
-
padding: string;
|
181
|
-
};
|
182
|
-
pre: {
|
183
|
-
fontFamily: any;
|
184
|
-
};
|
185
|
-
code: {
|
186
|
-
fontFamily: any;
|
187
|
-
padding: string;
|
188
|
-
fontWeight: number;
|
189
|
-
fontSize: string;
|
190
|
-
};
|
191
|
-
};
|
192
|
-
};
|
193
|
-
};
|
194
|
-
};
|
195
|
-
}[];
|
3
|
+
presets: any[];
|
196
4
|
};
|
197
5
|
|
198
6
|
export { _default as default };
|
package/dist/config.d.mts
CHANGED
@@ -1,198 +1,6 @@
|
|
1
|
-
import * as typography from '@tailwindcss/typography';
|
2
|
-
import * as tailwindcss_types_config from 'tailwindcss/types/config';
|
3
|
-
import { Config } from 'tailwindcss';
|
4
|
-
|
5
1
|
declare const _default: {
|
6
2
|
content: never[];
|
7
|
-
presets:
|
8
|
-
darkMode: "class";
|
9
|
-
content: never[];
|
10
|
-
plugins: ({
|
11
|
-
handler: tailwindcss_types_config.PluginCreator;
|
12
|
-
config?: Partial<Config> | undefined;
|
13
|
-
} | typeof typography)[];
|
14
|
-
theme: {
|
15
|
-
fontFamily: {
|
16
|
-
sans: string[];
|
17
|
-
heading: string[];
|
18
|
-
alt: string[];
|
19
|
-
mono: string[];
|
20
|
-
};
|
21
|
-
extend: {
|
22
|
-
colors: {
|
23
|
-
muted: {
|
24
|
-
'50': "#f8fafc";
|
25
|
-
'100': "#f1f5f9";
|
26
|
-
'200': "#e2e8f0";
|
27
|
-
'300': "#cbd5e1";
|
28
|
-
'400': "#94a3b8";
|
29
|
-
'500': "#64748b";
|
30
|
-
'600': "#475569";
|
31
|
-
'700': "#334155";
|
32
|
-
'800': "#1e293b";
|
33
|
-
'900': "#0f172a";
|
34
|
-
'950': "#020617";
|
35
|
-
};
|
36
|
-
primary: {
|
37
|
-
'50': "#f5f3ff";
|
38
|
-
'100': "#ede9fe";
|
39
|
-
'200': "#ddd6fe";
|
40
|
-
'300': "#c4b5fd";
|
41
|
-
'400': "#a78bfa";
|
42
|
-
'500': "#8b5cf6";
|
43
|
-
'600': "#7c3aed";
|
44
|
-
'700': "#6d28d9";
|
45
|
-
'800': "#5b21b6";
|
46
|
-
'900': "#4c1d95";
|
47
|
-
'950': "#2e1065";
|
48
|
-
};
|
49
|
-
info: {
|
50
|
-
'50': "#f0f9ff";
|
51
|
-
'100': "#e0f2fe";
|
52
|
-
'200': "#bae6fd";
|
53
|
-
'300': "#7dd3fc";
|
54
|
-
'400': "#38bdf8";
|
55
|
-
'500': "#0ea5e9";
|
56
|
-
'600': "#0284c7";
|
57
|
-
'700': "#0369a1";
|
58
|
-
'800': "#075985";
|
59
|
-
'900': "#0c4a6e";
|
60
|
-
'950': "#082f49";
|
61
|
-
};
|
62
|
-
success: {
|
63
|
-
'50': "#f0fdfa";
|
64
|
-
'100': "#ccfbf1";
|
65
|
-
'200': "#99f6e4";
|
66
|
-
'300': "#5eead4";
|
67
|
-
'400': "#2dd4bf";
|
68
|
-
'500': "#14b8a6";
|
69
|
-
'600': "#0d9488";
|
70
|
-
'700': "#0f766e";
|
71
|
-
'800': "#115e59";
|
72
|
-
'900': "#134e4a";
|
73
|
-
'950': "#042f2e";
|
74
|
-
};
|
75
|
-
warning: {
|
76
|
-
'50': "#fffbeb";
|
77
|
-
'100': "#fef3c7";
|
78
|
-
'200': "#fde68a";
|
79
|
-
'300': "#fcd34d";
|
80
|
-
'400': "#fbbf24";
|
81
|
-
'500': "#f59e0b";
|
82
|
-
'600': "#d97706";
|
83
|
-
'700': "#b45309";
|
84
|
-
'800': "#92400e";
|
85
|
-
'900': "#78350f";
|
86
|
-
'950': "#451a03";
|
87
|
-
};
|
88
|
-
danger: {
|
89
|
-
'50': "#fff1f2";
|
90
|
-
'100': "#ffe4e6";
|
91
|
-
'200': "#fecdd3";
|
92
|
-
'300': "#fda4af";
|
93
|
-
'400': "#fb7185";
|
94
|
-
'500': "#f43f5e";
|
95
|
-
'600': "#e11d48";
|
96
|
-
'700': "#be123c";
|
97
|
-
'800': "#9f1239";
|
98
|
-
'900': "#881337";
|
99
|
-
'950': "#4c0519";
|
100
|
-
};
|
101
|
-
};
|
102
|
-
screens: {
|
103
|
-
xs: {
|
104
|
-
max: string;
|
105
|
-
};
|
106
|
-
lg: string;
|
107
|
-
ptablet: {
|
108
|
-
raw: string;
|
109
|
-
};
|
110
|
-
ltablet: {
|
111
|
-
raw: string;
|
112
|
-
};
|
113
|
-
};
|
114
|
-
typography: ({ theme }: any) => {
|
115
|
-
primary: {
|
116
|
-
css: {
|
117
|
-
'--tw-prose-links': any;
|
118
|
-
'--tw-prose-quote-borders': any;
|
119
|
-
'--tw-prose-invert-links': any;
|
120
|
-
'--tw-prose-invert-quote-borders': any;
|
121
|
-
};
|
122
|
-
};
|
123
|
-
muted: {
|
124
|
-
css: {
|
125
|
-
'--tw-prose-body': any;
|
126
|
-
'--tw-prose-headings': any;
|
127
|
-
'--tw-prose-lead': any;
|
128
|
-
'--tw-prose-bold': any;
|
129
|
-
'--tw-prose-counters': any;
|
130
|
-
'--tw-prose-bullets': any;
|
131
|
-
'--tw-prose-hr': any;
|
132
|
-
'--tw-prose-quotes': any;
|
133
|
-
'--tw-prose-captions': any;
|
134
|
-
'--tw-prose-code': any;
|
135
|
-
'--tw-prose-pre-code': any;
|
136
|
-
'--tw-prose-pre-bg': any;
|
137
|
-
'--tw-prose-th-borders': any;
|
138
|
-
'--tw-prose-td-borders': any;
|
139
|
-
'--tw-prose-invert-body': any;
|
140
|
-
'--tw-prose-invert-headings': any;
|
141
|
-
'--tw-prose-invert-lead': any;
|
142
|
-
'--tw-prose-invert-bold': any;
|
143
|
-
'--tw-prose-invert-counters': any;
|
144
|
-
'--tw-prose-invert-bullets': any;
|
145
|
-
'--tw-prose-invert-hr': any;
|
146
|
-
'--tw-prose-invert-quotes': any;
|
147
|
-
'--tw-prose-invert-captions': any;
|
148
|
-
'--tw-prose-invert-code': any;
|
149
|
-
'--tw-prose-invert-pre-code': any;
|
150
|
-
'--tw-prose-invert-pre-bg': any;
|
151
|
-
'--tw-prose-invert-th-borders': any;
|
152
|
-
'--tw-prose-invert-td-borders': any;
|
153
|
-
};
|
154
|
-
};
|
155
|
-
css: {
|
156
|
-
h1: {
|
157
|
-
fontWeight: number;
|
158
|
-
};
|
159
|
-
h2: {
|
160
|
-
fontWeight: number;
|
161
|
-
};
|
162
|
-
h3: {
|
163
|
-
fontWeight: number;
|
164
|
-
};
|
165
|
-
h4: {
|
166
|
-
fontWeight: number;
|
167
|
-
};
|
168
|
-
li: {
|
169
|
-
fontSize: string;
|
170
|
-
padding: string;
|
171
|
-
};
|
172
|
-
em: {
|
173
|
-
fontSize: string;
|
174
|
-
lineHeight: number;
|
175
|
-
};
|
176
|
-
blockquote: {
|
177
|
-
fontSize: string;
|
178
|
-
lineHeight: number;
|
179
|
-
fontWeight: number;
|
180
|
-
padding: string;
|
181
|
-
};
|
182
|
-
pre: {
|
183
|
-
fontFamily: any;
|
184
|
-
};
|
185
|
-
code: {
|
186
|
-
fontFamily: any;
|
187
|
-
padding: string;
|
188
|
-
fontWeight: number;
|
189
|
-
fontSize: string;
|
190
|
-
};
|
191
|
-
};
|
192
|
-
};
|
193
|
-
};
|
194
|
-
};
|
195
|
-
}[];
|
3
|
+
presets: any[];
|
196
4
|
};
|
197
5
|
|
198
6
|
export { _default as default };
|
package/dist/config.d.ts
CHANGED
@@ -1,198 +1,6 @@
|
|
1
|
-
import * as typography from '@tailwindcss/typography';
|
2
|
-
import * as tailwindcss_types_config from 'tailwindcss/types/config';
|
3
|
-
import { Config } from 'tailwindcss';
|
4
|
-
|
5
1
|
declare const _default: {
|
6
2
|
content: never[];
|
7
|
-
presets:
|
8
|
-
darkMode: "class";
|
9
|
-
content: never[];
|
10
|
-
plugins: ({
|
11
|
-
handler: tailwindcss_types_config.PluginCreator;
|
12
|
-
config?: Partial<Config> | undefined;
|
13
|
-
} | typeof typography)[];
|
14
|
-
theme: {
|
15
|
-
fontFamily: {
|
16
|
-
sans: string[];
|
17
|
-
heading: string[];
|
18
|
-
alt: string[];
|
19
|
-
mono: string[];
|
20
|
-
};
|
21
|
-
extend: {
|
22
|
-
colors: {
|
23
|
-
muted: {
|
24
|
-
'50': "#f8fafc";
|
25
|
-
'100': "#f1f5f9";
|
26
|
-
'200': "#e2e8f0";
|
27
|
-
'300': "#cbd5e1";
|
28
|
-
'400': "#94a3b8";
|
29
|
-
'500': "#64748b";
|
30
|
-
'600': "#475569";
|
31
|
-
'700': "#334155";
|
32
|
-
'800': "#1e293b";
|
33
|
-
'900': "#0f172a";
|
34
|
-
'950': "#020617";
|
35
|
-
};
|
36
|
-
primary: {
|
37
|
-
'50': "#f5f3ff";
|
38
|
-
'100': "#ede9fe";
|
39
|
-
'200': "#ddd6fe";
|
40
|
-
'300': "#c4b5fd";
|
41
|
-
'400': "#a78bfa";
|
42
|
-
'500': "#8b5cf6";
|
43
|
-
'600': "#7c3aed";
|
44
|
-
'700': "#6d28d9";
|
45
|
-
'800': "#5b21b6";
|
46
|
-
'900': "#4c1d95";
|
47
|
-
'950': "#2e1065";
|
48
|
-
};
|
49
|
-
info: {
|
50
|
-
'50': "#f0f9ff";
|
51
|
-
'100': "#e0f2fe";
|
52
|
-
'200': "#bae6fd";
|
53
|
-
'300': "#7dd3fc";
|
54
|
-
'400': "#38bdf8";
|
55
|
-
'500': "#0ea5e9";
|
56
|
-
'600': "#0284c7";
|
57
|
-
'700': "#0369a1";
|
58
|
-
'800': "#075985";
|
59
|
-
'900': "#0c4a6e";
|
60
|
-
'950': "#082f49";
|
61
|
-
};
|
62
|
-
success: {
|
63
|
-
'50': "#f0fdfa";
|
64
|
-
'100': "#ccfbf1";
|
65
|
-
'200': "#99f6e4";
|
66
|
-
'300': "#5eead4";
|
67
|
-
'400': "#2dd4bf";
|
68
|
-
'500': "#14b8a6";
|
69
|
-
'600': "#0d9488";
|
70
|
-
'700': "#0f766e";
|
71
|
-
'800': "#115e59";
|
72
|
-
'900': "#134e4a";
|
73
|
-
'950': "#042f2e";
|
74
|
-
};
|
75
|
-
warning: {
|
76
|
-
'50': "#fffbeb";
|
77
|
-
'100': "#fef3c7";
|
78
|
-
'200': "#fde68a";
|
79
|
-
'300': "#fcd34d";
|
80
|
-
'400': "#fbbf24";
|
81
|
-
'500': "#f59e0b";
|
82
|
-
'600': "#d97706";
|
83
|
-
'700': "#b45309";
|
84
|
-
'800': "#92400e";
|
85
|
-
'900': "#78350f";
|
86
|
-
'950': "#451a03";
|
87
|
-
};
|
88
|
-
danger: {
|
89
|
-
'50': "#fff1f2";
|
90
|
-
'100': "#ffe4e6";
|
91
|
-
'200': "#fecdd3";
|
92
|
-
'300': "#fda4af";
|
93
|
-
'400': "#fb7185";
|
94
|
-
'500': "#f43f5e";
|
95
|
-
'600': "#e11d48";
|
96
|
-
'700': "#be123c";
|
97
|
-
'800': "#9f1239";
|
98
|
-
'900': "#881337";
|
99
|
-
'950': "#4c0519";
|
100
|
-
};
|
101
|
-
};
|
102
|
-
screens: {
|
103
|
-
xs: {
|
104
|
-
max: string;
|
105
|
-
};
|
106
|
-
lg: string;
|
107
|
-
ptablet: {
|
108
|
-
raw: string;
|
109
|
-
};
|
110
|
-
ltablet: {
|
111
|
-
raw: string;
|
112
|
-
};
|
113
|
-
};
|
114
|
-
typography: ({ theme }: any) => {
|
115
|
-
primary: {
|
116
|
-
css: {
|
117
|
-
'--tw-prose-links': any;
|
118
|
-
'--tw-prose-quote-borders': any;
|
119
|
-
'--tw-prose-invert-links': any;
|
120
|
-
'--tw-prose-invert-quote-borders': any;
|
121
|
-
};
|
122
|
-
};
|
123
|
-
muted: {
|
124
|
-
css: {
|
125
|
-
'--tw-prose-body': any;
|
126
|
-
'--tw-prose-headings': any;
|
127
|
-
'--tw-prose-lead': any;
|
128
|
-
'--tw-prose-bold': any;
|
129
|
-
'--tw-prose-counters': any;
|
130
|
-
'--tw-prose-bullets': any;
|
131
|
-
'--tw-prose-hr': any;
|
132
|
-
'--tw-prose-quotes': any;
|
133
|
-
'--tw-prose-captions': any;
|
134
|
-
'--tw-prose-code': any;
|
135
|
-
'--tw-prose-pre-code': any;
|
136
|
-
'--tw-prose-pre-bg': any;
|
137
|
-
'--tw-prose-th-borders': any;
|
138
|
-
'--tw-prose-td-borders': any;
|
139
|
-
'--tw-prose-invert-body': any;
|
140
|
-
'--tw-prose-invert-headings': any;
|
141
|
-
'--tw-prose-invert-lead': any;
|
142
|
-
'--tw-prose-invert-bold': any;
|
143
|
-
'--tw-prose-invert-counters': any;
|
144
|
-
'--tw-prose-invert-bullets': any;
|
145
|
-
'--tw-prose-invert-hr': any;
|
146
|
-
'--tw-prose-invert-quotes': any;
|
147
|
-
'--tw-prose-invert-captions': any;
|
148
|
-
'--tw-prose-invert-code': any;
|
149
|
-
'--tw-prose-invert-pre-code': any;
|
150
|
-
'--tw-prose-invert-pre-bg': any;
|
151
|
-
'--tw-prose-invert-th-borders': any;
|
152
|
-
'--tw-prose-invert-td-borders': any;
|
153
|
-
};
|
154
|
-
};
|
155
|
-
css: {
|
156
|
-
h1: {
|
157
|
-
fontWeight: number;
|
158
|
-
};
|
159
|
-
h2: {
|
160
|
-
fontWeight: number;
|
161
|
-
};
|
162
|
-
h3: {
|
163
|
-
fontWeight: number;
|
164
|
-
};
|
165
|
-
h4: {
|
166
|
-
fontWeight: number;
|
167
|
-
};
|
168
|
-
li: {
|
169
|
-
fontSize: string;
|
170
|
-
padding: string;
|
171
|
-
};
|
172
|
-
em: {
|
173
|
-
fontSize: string;
|
174
|
-
lineHeight: number;
|
175
|
-
};
|
176
|
-
blockquote: {
|
177
|
-
fontSize: string;
|
178
|
-
lineHeight: number;
|
179
|
-
fontWeight: number;
|
180
|
-
padding: string;
|
181
|
-
};
|
182
|
-
pre: {
|
183
|
-
fontFamily: any;
|
184
|
-
};
|
185
|
-
code: {
|
186
|
-
fontFamily: any;
|
187
|
-
padding: string;
|
188
|
-
fontWeight: number;
|
189
|
-
fontSize: string;
|
190
|
-
};
|
191
|
-
};
|
192
|
-
};
|
193
|
-
};
|
194
|
-
};
|
195
|
-
}[];
|
3
|
+
presets: any[];
|
196
4
|
};
|
197
5
|
|
198
6
|
export { _default as default };
|
package/dist/index.d.cts
CHANGED
@@ -1,8 +1,9 @@
|
|
1
|
-
import {
|
2
|
-
export { createPreset, hasPreset, preset } from './
|
1
|
+
import { S as ShurikenUIConfig } from './shared/tailwind.6e716239.cjs';
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.6e716239.cjs';
|
3
3
|
import 'tailwindcss/types/config';
|
4
|
+
import 'tailwindcss';
|
4
5
|
import '@tailwindcss/typography';
|
5
6
|
|
6
|
-
declare function withShurikenUI(config:
|
7
|
+
declare function withShurikenUI(config: ShurikenUIConfig): ShurikenUIConfig;
|
7
8
|
|
8
9
|
export { withShurikenUI };
|
package/dist/index.d.mts
CHANGED
@@ -1,8 +1,9 @@
|
|
1
|
-
import {
|
2
|
-
export { createPreset, hasPreset, preset } from './
|
1
|
+
import { S as ShurikenUIConfig } from './shared/tailwind.6e716239.mjs';
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.6e716239.mjs';
|
3
3
|
import 'tailwindcss/types/config';
|
4
|
+
import 'tailwindcss';
|
4
5
|
import '@tailwindcss/typography';
|
5
6
|
|
6
|
-
declare function withShurikenUI(config:
|
7
|
+
declare function withShurikenUI(config: ShurikenUIConfig): ShurikenUIConfig;
|
7
8
|
|
8
9
|
export { withShurikenUI };
|
package/dist/index.d.ts
CHANGED
@@ -1,8 +1,9 @@
|
|
1
|
-
import {
|
2
|
-
export { createPreset, hasPreset, preset } from './
|
1
|
+
import { S as ShurikenUIConfig } from './shared/tailwind.6e716239.js';
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.6e716239.js';
|
3
3
|
import 'tailwindcss/types/config';
|
4
|
+
import 'tailwindcss';
|
4
5
|
import '@tailwindcss/typography';
|
5
6
|
|
6
|
-
declare function withShurikenUI(config:
|
7
|
+
declare function withShurikenUI(config: ShurikenUIConfig): ShurikenUIConfig;
|
7
8
|
|
8
9
|
export { withShurikenUI };
|