@shuriken-ui/tailwind 1.5.0 → 1.5.2

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.d.cts CHANGED
@@ -1,5 +1,5 @@
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';
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.6e716239.mjs';
2
- export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.6e716239.mjs';
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.6e716239.js';
2
- export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.6e716239.js';
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.cjs CHANGED
@@ -5453,9 +5453,10 @@ const inputNumber = plugin__default.withOptions(
5453
5453
  [`.${prefix}input-number-buttons button`]: {
5454
5454
  [`@apply outline-none flex items-center justify-center`]: {},
5455
5455
  [`@apply border border-muted-200 dark:border-muted-800 last:border-s-0`]: {},
5456
- [`@apply text-muted-400 hover:text-muted-600 dark:hover:text-muted-100`]: {},
5457
- [`@apply focus:text-muted-600 dark:focus:text-muted-100`]: {},
5458
- [`@apply transition-colors duration-300`]: {}
5456
+ [`@apply text-muted-400 enabled:hover:text-muted-600 dark:enabled:hover:text-muted-100`]: {},
5457
+ [`@apply enabled:focus:text-muted-600 dark:enabled:focus:text-muted-100`]: {},
5458
+ [`@apply transition-colors duration-300`]: {},
5459
+ [`@apply disabled:cursor-not-allowed`]: {}
5459
5460
  },
5460
5461
  [`.${prefix}input-number-buttons svg`]: {
5461
5462
  [`@apply h-4 w-4`]: {}
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.6e716239.cjs';
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.6e716239.mjs';
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.6e716239.js';
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';
package/dist/preset.mjs CHANGED
@@ -5443,9 +5443,10 @@ const inputNumber = plugin.withOptions(
5443
5443
  [`.${prefix}input-number-buttons button`]: {
5444
5444
  [`@apply outline-none flex items-center justify-center`]: {},
5445
5445
  [`@apply border border-muted-200 dark:border-muted-800 last:border-s-0`]: {},
5446
- [`@apply text-muted-400 hover:text-muted-600 dark:hover:text-muted-100`]: {},
5447
- [`@apply focus:text-muted-600 dark:focus:text-muted-100`]: {},
5448
- [`@apply transition-colors duration-300`]: {}
5446
+ [`@apply text-muted-400 enabled:hover:text-muted-600 dark:enabled:hover:text-muted-100`]: {},
5447
+ [`@apply enabled:focus:text-muted-600 dark:enabled:focus:text-muted-100`]: {},
5448
+ [`@apply transition-colors duration-300`]: {},
5449
+ [`@apply disabled:cursor-not-allowed`]: {}
5449
5450
  },
5450
5451
  [`.${prefix}input-number-buttons svg`]: {
5451
5452
  [`@apply h-4 w-4`]: {}
@@ -4331,7 +4331,7 @@ type BaseTheme = Config['theme'];
4331
4331
  type ShurikenUITheme = BaseTheme & DeepPartial<{
4332
4332
  shurikenUi: ShurikenUIPlugins;
4333
4333
  }>;
4334
- type ShurikenUIConfig = Omit<Config, 'theme'> & {
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: string;
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: string;
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 = Omit<Config, 'theme'> & {
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: string;
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: string;
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 = Omit<Config, 'theme'> & {
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: string;
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: string;
4535
+ darkMode: "class";
4536
4536
  content: never[];
4537
4537
  plugins: (typeof typography | {
4538
4538
  handler: tailwindcss_types_config.PluginCreator;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shuriken-ui/tailwind",
3
- "version": "1.5.0",
3
+ "version": "1.5.2",
4
4
  "license": "MIT",
5
5
  "author": "Css Ninja <hello@cssninja.io> (https://cssninja.io)",
6
6
  "repository": "shuriken-ui/tailwind",