@nd-storybook/storybook 0.3.12 → 0.3.14

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.
@@ -12,8 +12,6 @@ import {
12
12
 
13
13
  import tokenUtilities from './tokens.utilities.js';
14
14
 
15
- // No longer needed as we're using CSS classes directly
16
-
17
15
  /** @type {import('tailwindcss').Config} */
18
16
  export default {
19
17
  content: [
@@ -29,9 +27,12 @@ export default {
29
27
  'line-clamp-3',
30
28
  'line-clamp-2',
31
29
  'line-clamp-1',
32
- {
33
- pattern: /^(sm|md|lg|xl|2xl):(flex|block|hidden|grid|inline-flex)$/,
34
- }
30
+ // Safelist responsive display utilities
31
+ 'sm:flex', 'sm:block', 'sm:hidden', 'sm:grid', 'sm:inline-flex',
32
+ 'md:flex', 'md:block', 'md:hidden', 'md:grid', 'md:inline-flex',
33
+ 'lg:flex', 'lg:block', 'lg:hidden', 'lg:grid', 'lg:inline-flex',
34
+ 'xl:flex', 'xl:block', 'xl:hidden', 'xl:grid', 'xl:inline-flex',
35
+ '2xl:flex', '2xl:block', '2xl:hidden', '2xl:grid', '2xl:inline-flex',
35
36
  ],
36
37
 
37
38
  darkMode: 'media',
@@ -1,5 +1,5 @@
1
1
  // Generated from design tokens - DO NOT EDIT DIRECTLY
2
- // Last generated: 2025-12-08T13:56:43.110Z
2
+ // Last generated: 2026-01-13T11:57:44.252Z
3
3
 
4
4
  export const primitiveColors = {
5
5
  "blue-400": "var(--color-blue-400)",
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Tailwind CSS Utilities Plugin
3
3
  * Generated from design tokens - DO NOT EDIT DIRECTLY
4
- * Last generated: 2025-12-08T13:56:43.112Z
4
+ * Last generated: 2026-01-13T11:57:44.254Z
5
5
  */
6
6
 
7
7
  export default function ({ addUtilities }) {