@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.
- package/dist/index.cjs.js +25 -25
- package/dist/index.d.ts +8 -1
- package/dist/index.es.js +1875 -1843
- package/dist/mockServiceWorker.js +349 -0
- package/dist/style.css +1 -1
- package/dist/tailwind.config.js +6 -5
- package/dist/tailwind.tokens.js +1 -1
- package/dist/tokens.utilities.js +1 -1
- package/package.json +9 -2
- package/tailwind.config.js +6 -5
- package/tailwind.tokens.js +1 -1
- package/tokens.utilities.js +1 -1
package/tailwind.config.js
CHANGED
|
@@ -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
|
-
|
|
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',
|
package/tailwind.tokens.js
CHANGED
package/tokens.utilities.js
CHANGED