@shuriken-ui/tailwind 0.0.5 → 0.1.0
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/config.cjs +1 -0
- package/dist/config.mjs +1 -0
- package/dist/index.cjs +1 -0
- package/dist/index.mjs +1 -0
- package/dist/preset.cjs +3 -0
- package/dist/preset.mjs +2 -0
- package/package.json +13 -13
package/dist/config.cjs
CHANGED
package/dist/config.mjs
CHANGED
package/dist/index.cjs
CHANGED
@@ -7,6 +7,7 @@ require('tailwindcss/defaultTheme');
|
|
7
7
|
require('tailwindcss/colors');
|
8
8
|
require('@tailwindcss/typography');
|
9
9
|
require('@tailwindcss/aspect-ratio');
|
10
|
+
require('@tailwindcss/container-queries');
|
10
11
|
require('tailwindcss/plugin');
|
11
12
|
|
12
13
|
function withShurikenUI(userConfig) {
|
package/dist/index.mjs
CHANGED
package/dist/preset.cjs
CHANGED
@@ -4,6 +4,7 @@ const defaultTheme = require('tailwindcss/defaultTheme');
|
|
4
4
|
const colors = require('tailwindcss/colors');
|
5
5
|
const typography = require('@tailwindcss/typography');
|
6
6
|
const aspectRatio = require('@tailwindcss/aspect-ratio');
|
7
|
+
const containerQueries = require('@tailwindcss/container-queries');
|
7
8
|
const plugin = require('tailwindcss/plugin');
|
8
9
|
const defu = require('defu');
|
9
10
|
|
@@ -13,6 +14,7 @@ const defaultTheme__default = /*#__PURE__*/_interopDefaultCompat(defaultTheme);
|
|
13
14
|
const colors__default = /*#__PURE__*/_interopDefaultCompat(colors);
|
14
15
|
const typography__default = /*#__PURE__*/_interopDefaultCompat(typography);
|
15
16
|
const aspectRatio__default = /*#__PURE__*/_interopDefaultCompat(aspectRatio);
|
17
|
+
const containerQueries__default = /*#__PURE__*/_interopDefaultCompat(containerQueries);
|
16
18
|
const plugin__default = /*#__PURE__*/_interopDefaultCompat(plugin);
|
17
19
|
|
18
20
|
const shurikenUIBase = plugin__default(function({ addBase }) {
|
@@ -622,6 +624,7 @@ const shurikenUIPreset = {
|
|
622
624
|
plugins: [
|
623
625
|
typography__default,
|
624
626
|
aspectRatio__default,
|
627
|
+
containerQueries__default,
|
625
628
|
shurikenUIBase,
|
626
629
|
shurikenUIComponents,
|
627
630
|
shurikenUIUtilities
|
package/dist/preset.mjs
CHANGED
@@ -2,6 +2,7 @@ import defaultTheme from 'tailwindcss/defaultTheme';
|
|
2
2
|
import colors from 'tailwindcss/colors';
|
3
3
|
import typography from '@tailwindcss/typography';
|
4
4
|
import aspectRatio from '@tailwindcss/aspect-ratio';
|
5
|
+
import containerQueries from '@tailwindcss/container-queries';
|
5
6
|
import plugin from 'tailwindcss/plugin';
|
6
7
|
import { defu } from 'defu';
|
7
8
|
|
@@ -612,6 +613,7 @@ const shurikenUIPreset = {
|
|
612
613
|
plugins: [
|
613
614
|
typography,
|
614
615
|
aspectRatio,
|
616
|
+
containerQueries,
|
615
617
|
shurikenUIBase,
|
616
618
|
shurikenUIComponents,
|
617
619
|
shurikenUIUtilities
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@shuriken-ui/tailwind",
|
3
|
-
"version": "0.0
|
3
|
+
"version": "0.1.0",
|
4
4
|
"license": "MIT",
|
5
5
|
"author": "Css Ninja <hello@cssninja.io> (https://cssninja.io)",
|
6
6
|
"repository": "shuriken-ui/tailwind",
|
@@ -63,27 +63,27 @@
|
|
63
63
|
},
|
64
64
|
"dependencies": {
|
65
65
|
"@tailwindcss/aspect-ratio": "^0.4.2",
|
66
|
-
"@tailwindcss/
|
66
|
+
"@tailwindcss/container-queries": "^0.1.1",
|
67
67
|
"@tailwindcss/typography": "^0.5.9",
|
68
68
|
"defu": "^6.1.2",
|
69
|
-
"tailwindcss": "^3.3.
|
69
|
+
"tailwindcss": "^3.3.2"
|
70
70
|
},
|
71
71
|
"devDependencies": {
|
72
|
-
"@commitlint/cli": "^17.5
|
73
|
-
"@commitlint/config-conventional": "^17.
|
72
|
+
"@commitlint/cli": "^17.6.5",
|
73
|
+
"@commitlint/config-conventional": "^17.6.5",
|
74
74
|
"@types/node": "18.15.11",
|
75
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
76
|
-
"commitlint": "^17.5
|
77
|
-
"eslint": "8.
|
75
|
+
"@typescript-eslint/eslint-plugin": "^5.59.8",
|
76
|
+
"commitlint": "^17.6.5",
|
77
|
+
"eslint": "8.42.0",
|
78
78
|
"eslint-config-prettier": "8.8.0",
|
79
|
-
"eslint-plugin-tailwindcss": "3.
|
80
|
-
"eslint-plugin-unicorn": "^
|
81
|
-
"lint-staged": "^13.2.
|
79
|
+
"eslint-plugin-tailwindcss": "3.12.1",
|
80
|
+
"eslint-plugin-unicorn": "^47.0.0",
|
81
|
+
"lint-staged": "^13.2.2",
|
82
82
|
"npm-run-all": "^4.1.5",
|
83
|
-
"prettier": "^2.8.
|
83
|
+
"prettier": "^2.8.8",
|
84
84
|
"simple-git-hooks": "^2.8.1",
|
85
85
|
"standard-version": "^9.5.0",
|
86
|
-
"typescript": "^5.
|
86
|
+
"typescript": "^5.1.3",
|
87
87
|
"unbuild": "^1.2.1"
|
88
88
|
},
|
89
89
|
"simple-git-hooks": {
|