@shuriken-ui/tailwind 1.5.0 → 1.5.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/preset.d.cts +1 -1
- package/dist/preset.d.mts +1 -1
- package/dist/preset.d.ts +1 -1
- package/dist/shared/{tailwind.6e716239.d.cts → tailwind.dcb2d0ce.d.cts} +3 -3
- package/dist/shared/{tailwind.6e716239.d.mts → tailwind.dcb2d0ce.d.mts} +3 -3
- package/dist/shared/{tailwind.6e716239.d.ts → tailwind.dcb2d0ce.d.ts} +3 -3
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import { S as ShurikenUIConfig } from './shared/tailwind.
|
2
|
-
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.
|
1
|
+
import { S as ShurikenUIConfig } from './shared/tailwind.dcb2d0ce.cjs';
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.dcb2d0ce.cjs';
|
3
3
|
import 'tailwindcss/types/config';
|
4
4
|
import 'tailwindcss';
|
5
5
|
import '@tailwindcss/typography';
|
package/dist/index.d.mts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import { S as ShurikenUIConfig } from './shared/tailwind.
|
2
|
-
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.
|
1
|
+
import { S as ShurikenUIConfig } from './shared/tailwind.dcb2d0ce.mjs';
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.dcb2d0ce.mjs';
|
3
3
|
import 'tailwindcss/types/config';
|
4
4
|
import 'tailwindcss';
|
5
5
|
import '@tailwindcss/typography';
|
package/dist/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import { S as ShurikenUIConfig } from './shared/tailwind.
|
2
|
-
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.
|
1
|
+
import { S as ShurikenUIConfig } from './shared/tailwind.dcb2d0ce.js';
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.dcb2d0ce.js';
|
3
3
|
import 'tailwindcss/types/config';
|
4
4
|
import 'tailwindcss';
|
5
5
|
import '@tailwindcss/typography';
|
package/dist/preset.d.cts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
1
|
import 'tailwindcss/types/config';
|
2
|
-
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.dcb2d0ce.cjs';
|
3
3
|
import '@tailwindcss/typography';
|
4
4
|
import 'tailwindcss';
|
package/dist/preset.d.mts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
1
|
import 'tailwindcss/types/config';
|
2
|
-
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.dcb2d0ce.mjs';
|
3
3
|
import '@tailwindcss/typography';
|
4
4
|
import 'tailwindcss';
|
package/dist/preset.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
1
|
import 'tailwindcss/types/config';
|
2
|
-
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.dcb2d0ce.js';
|
3
3
|
import '@tailwindcss/typography';
|
4
4
|
import 'tailwindcss';
|
@@ -4331,7 +4331,7 @@ type BaseTheme = Config['theme'];
|
|
4331
4331
|
type ShurikenUITheme = BaseTheme & DeepPartial<{
|
4332
4332
|
shurikenUi: ShurikenUIPlugins;
|
4333
4333
|
}>;
|
4334
|
-
type ShurikenUIConfig =
|
4334
|
+
type ShurikenUIConfig = Config & {
|
4335
4335
|
theme?: ShurikenUITheme & {
|
4336
4336
|
extend?: ShurikenUITheme;
|
4337
4337
|
};
|
@@ -4343,7 +4343,7 @@ interface PluginOption {
|
|
4343
4343
|
|
4344
4344
|
declare function hasPreset(config: ShurikenUIConfig): boolean;
|
4345
4345
|
declare function createPreset(options?: PluginOption): {
|
4346
|
-
darkMode:
|
4346
|
+
darkMode: "class";
|
4347
4347
|
content: never[];
|
4348
4348
|
plugins: (typeof typography | {
|
4349
4349
|
handler: tailwindcss_types_config.PluginCreator;
|
@@ -4532,7 +4532,7 @@ declare function createPreset(options?: PluginOption): {
|
|
4532
4532
|
};
|
4533
4533
|
};
|
4534
4534
|
declare const preset: {
|
4535
|
-
darkMode:
|
4535
|
+
darkMode: "class";
|
4536
4536
|
content: never[];
|
4537
4537
|
plugins: (typeof typography | {
|
4538
4538
|
handler: tailwindcss_types_config.PluginCreator;
|
@@ -4331,7 +4331,7 @@ type BaseTheme = Config['theme'];
|
|
4331
4331
|
type ShurikenUITheme = BaseTheme & DeepPartial<{
|
4332
4332
|
shurikenUi: ShurikenUIPlugins;
|
4333
4333
|
}>;
|
4334
|
-
type ShurikenUIConfig =
|
4334
|
+
type ShurikenUIConfig = Config & {
|
4335
4335
|
theme?: ShurikenUITheme & {
|
4336
4336
|
extend?: ShurikenUITheme;
|
4337
4337
|
};
|
@@ -4343,7 +4343,7 @@ interface PluginOption {
|
|
4343
4343
|
|
4344
4344
|
declare function hasPreset(config: ShurikenUIConfig): boolean;
|
4345
4345
|
declare function createPreset(options?: PluginOption): {
|
4346
|
-
darkMode:
|
4346
|
+
darkMode: "class";
|
4347
4347
|
content: never[];
|
4348
4348
|
plugins: (typeof typography | {
|
4349
4349
|
handler: tailwindcss_types_config.PluginCreator;
|
@@ -4532,7 +4532,7 @@ declare function createPreset(options?: PluginOption): {
|
|
4532
4532
|
};
|
4533
4533
|
};
|
4534
4534
|
declare const preset: {
|
4535
|
-
darkMode:
|
4535
|
+
darkMode: "class";
|
4536
4536
|
content: never[];
|
4537
4537
|
plugins: (typeof typography | {
|
4538
4538
|
handler: tailwindcss_types_config.PluginCreator;
|
@@ -4331,7 +4331,7 @@ type BaseTheme = Config['theme'];
|
|
4331
4331
|
type ShurikenUITheme = BaseTheme & DeepPartial<{
|
4332
4332
|
shurikenUi: ShurikenUIPlugins;
|
4333
4333
|
}>;
|
4334
|
-
type ShurikenUIConfig =
|
4334
|
+
type ShurikenUIConfig = Config & {
|
4335
4335
|
theme?: ShurikenUITheme & {
|
4336
4336
|
extend?: ShurikenUITheme;
|
4337
4337
|
};
|
@@ -4343,7 +4343,7 @@ interface PluginOption {
|
|
4343
4343
|
|
4344
4344
|
declare function hasPreset(config: ShurikenUIConfig): boolean;
|
4345
4345
|
declare function createPreset(options?: PluginOption): {
|
4346
|
-
darkMode:
|
4346
|
+
darkMode: "class";
|
4347
4347
|
content: never[];
|
4348
4348
|
plugins: (typeof typography | {
|
4349
4349
|
handler: tailwindcss_types_config.PluginCreator;
|
@@ -4532,7 +4532,7 @@ declare function createPreset(options?: PluginOption): {
|
|
4532
4532
|
};
|
4533
4533
|
};
|
4534
4534
|
declare const preset: {
|
4535
|
-
darkMode:
|
4535
|
+
darkMode: "class";
|
4536
4536
|
content: never[];
|
4537
4537
|
plugins: (typeof typography | {
|
4538
4538
|
handler: tailwindcss_types_config.PluginCreator;
|