mobigrid-module 1.1.12 → 1.1.13
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/tailwind.config.d.ts +83 -0
- package/package.json +9 -9
@@ -0,0 +1,83 @@
|
|
1
|
+
declare const config: {
|
2
|
+
darkMode: ["class"];
|
3
|
+
content: string[];
|
4
|
+
prefix: string;
|
5
|
+
theme: {
|
6
|
+
container: {
|
7
|
+
center: true;
|
8
|
+
padding: string;
|
9
|
+
screens: {
|
10
|
+
"2xl": string;
|
11
|
+
};
|
12
|
+
};
|
13
|
+
extend: {
|
14
|
+
colors: {
|
15
|
+
border: string;
|
16
|
+
input: string;
|
17
|
+
ring: string;
|
18
|
+
background: string;
|
19
|
+
foreground: string;
|
20
|
+
primary: {
|
21
|
+
DEFAULT: string;
|
22
|
+
foreground: string;
|
23
|
+
};
|
24
|
+
secondary: {
|
25
|
+
DEFAULT: string;
|
26
|
+
foreground: string;
|
27
|
+
};
|
28
|
+
destructive: {
|
29
|
+
DEFAULT: string;
|
30
|
+
foreground: string;
|
31
|
+
};
|
32
|
+
muted: {
|
33
|
+
DEFAULT: string;
|
34
|
+
foreground: string;
|
35
|
+
};
|
36
|
+
accent: {
|
37
|
+
DEFAULT: string;
|
38
|
+
foreground: string;
|
39
|
+
};
|
40
|
+
popover: {
|
41
|
+
DEFAULT: string;
|
42
|
+
foreground: string;
|
43
|
+
};
|
44
|
+
card: {
|
45
|
+
DEFAULT: string;
|
46
|
+
foreground: string;
|
47
|
+
};
|
48
|
+
};
|
49
|
+
borderRadius: {
|
50
|
+
lg: string;
|
51
|
+
md: string;
|
52
|
+
sm: string;
|
53
|
+
};
|
54
|
+
fontFamily: {
|
55
|
+
sans: [string, ...string[]];
|
56
|
+
};
|
57
|
+
keyframes: {
|
58
|
+
"accordion-down": {
|
59
|
+
from: {
|
60
|
+
height: string;
|
61
|
+
};
|
62
|
+
to: {
|
63
|
+
height: string;
|
64
|
+
};
|
65
|
+
};
|
66
|
+
"accordion-up": {
|
67
|
+
from: {
|
68
|
+
height: string;
|
69
|
+
};
|
70
|
+
to: {
|
71
|
+
height: string;
|
72
|
+
};
|
73
|
+
};
|
74
|
+
};
|
75
|
+
animation: {
|
76
|
+
"accordion-down": string;
|
77
|
+
"accordion-up": string;
|
78
|
+
};
|
79
|
+
};
|
80
|
+
};
|
81
|
+
plugins: any[];
|
82
|
+
};
|
83
|
+
export default config;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "mobigrid-module",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.13",
|
4
4
|
"description": "",
|
5
5
|
"type": "module",
|
6
6
|
"main": "dist/index.js",
|
@@ -13,8 +13,7 @@
|
|
13
13
|
},
|
14
14
|
"scripts": {
|
15
15
|
"test": "echo \"Error: no test specified\" && exit 1",
|
16
|
-
"build": "rollup -c"
|
17
|
-
"publish": "npm run build && npm publish"
|
16
|
+
"build": "rollup -c"
|
18
17
|
},
|
19
18
|
"keywords": [],
|
20
19
|
"author": "",
|
@@ -31,23 +30,21 @@
|
|
31
30
|
"next-themes": "^0.4.3",
|
32
31
|
"react-day-picker": "8.10.1",
|
33
32
|
"react-feather": "^2.0.10",
|
33
|
+
"rollup-plugin-postcss": "^4.0.2",
|
34
34
|
"sonner": "^1.7.0",
|
35
35
|
"tslib": "^2.8.1"
|
36
36
|
},
|
37
37
|
"devDependencies": {
|
38
|
-
"rollup-plugin-node-polyfills": "^0.2.1",
|
39
|
-
"rollup-plugin-peer-deps-external": "^2.2.4",
|
40
|
-
"rollup-plugin-terser": "^7.0.2",
|
41
|
-
"@rollup/plugin-commonjs": "^28.0.1",
|
42
|
-
"@rollup/plugin-node-resolve": "^15.3.0",
|
43
|
-
"@rollup/plugin-typescript": "^12.1.1",
|
44
38
|
"@babel/cli": "^7.25.9",
|
45
39
|
"@babel/core": "^7.26.0",
|
46
40
|
"@babel/preset-env": "^7.26.0",
|
47
41
|
"@babel/preset-react": "^7.25.9",
|
48
42
|
"@babel/preset-typescript": "^7.26.0",
|
49
43
|
"@eslint/js": "^9.13.0",
|
44
|
+
"@rollup/plugin-commonjs": "^28.0.1",
|
50
45
|
"@rollup/plugin-json": "^6.1.0",
|
46
|
+
"@rollup/plugin-node-resolve": "^15.3.0",
|
47
|
+
"@rollup/plugin-typescript": "^12.1.1",
|
51
48
|
"@shadcn/ui": "^0.0.4",
|
52
49
|
"@types/node": "^22.10.1",
|
53
50
|
"@types/react": "^18.3.12",
|
@@ -62,6 +59,9 @@
|
|
62
59
|
"postcss": "^8.4.47",
|
63
60
|
"react": "^18.3.1",
|
64
61
|
"react-dom": "^18.3.1",
|
62
|
+
"rollup-plugin-node-polyfills": "^0.2.1",
|
63
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
64
|
+
"rollup-plugin-terser": "^7.0.2",
|
65
65
|
"tailwind-merge": "^2.5.5",
|
66
66
|
"tailwindcss": "^3.4.14",
|
67
67
|
"tailwindcss-animate": "^1.0.7",
|