@shuriken-ui/tailwind 0.0.3 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE.md +21 -0
- package/README.md +54 -0
- package/dist/config.cjs +2 -0
- package/dist/config.d.ts +7 -12
- package/dist/config.mjs +2 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts +19 -36
- package/dist/index.mjs +1 -0
- package/dist/options-cff79ff9.d.ts +5 -0
- package/dist/preset.cjs +547 -120
- package/dist/preset.d.ts +7 -12
- package/dist/preset.mjs +546 -120
- package/package.json +1 -1
package/dist/preset.d.ts
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
import { P as PluginOption } from './options-cff79ff9.js';
|
1
2
|
import * as tailwindcss_types_config from 'tailwindcss/types/config';
|
2
3
|
import { Config } from 'tailwindcss';
|
3
4
|
import _tailwindcss_typography__default from '@tailwindcss/typography';
|
@@ -8,7 +9,10 @@ declare const _default: {
|
|
8
9
|
plugins: (typeof _tailwindcss_typography__default | {
|
9
10
|
handler: () => void;
|
10
11
|
} | {
|
11
|
-
|
12
|
+
handler: tailwindcss_types_config.PluginCreator;
|
13
|
+
config?: Partial<Config> | undefined;
|
14
|
+
} | {
|
15
|
+
(options: PluginOption): {
|
12
16
|
handler: tailwindcss_types_config.PluginCreator;
|
13
17
|
config?: Partial<Config> | undefined;
|
14
18
|
};
|
@@ -194,7 +198,7 @@ declare const _default: {
|
|
194
198
|
};
|
195
199
|
};
|
196
200
|
keyframes: {
|
197
|
-
indeterminate: {
|
201
|
+
'nui-indeterminate': {
|
198
202
|
'0%': {
|
199
203
|
'margin-left': string;
|
200
204
|
};
|
@@ -202,18 +206,9 @@ declare const _default: {
|
|
202
206
|
'margin-left': string;
|
203
207
|
};
|
204
208
|
};
|
205
|
-
placeload: {
|
206
|
-
'0%': {
|
207
|
-
'background-position': string;
|
208
|
-
};
|
209
|
-
'100%': {
|
210
|
-
'background-position': string;
|
211
|
-
};
|
212
|
-
};
|
213
209
|
};
|
214
210
|
animation: {
|
215
|
-
indeterminate: string;
|
216
|
-
placeload: string;
|
211
|
+
'nui-indeterminate': string;
|
217
212
|
};
|
218
213
|
};
|
219
214
|
};
|