flowcore-fn 3.5.0 → 3.7.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/pkg-index.css +705 -705
- package/dist/pkg-index.js +1 -1
- package/dist/pkg-index.mjs +1 -1
- package/package.json +9 -2
package/dist/pkg-index.js
CHANGED
|
@@ -5433,7 +5433,7 @@ function Sidebar({ isOpen, onToggle, childrens }) {
|
|
|
5433
5433
|
const Icon = item.icon;
|
|
5434
5434
|
const handleClick = () => {
|
|
5435
5435
|
if (item.component) {
|
|
5436
|
-
router.push("/
|
|
5436
|
+
router.push("/", void 0, { shallow: true });
|
|
5437
5437
|
setActiveComponent(item.component);
|
|
5438
5438
|
} else if (item.path) {
|
|
5439
5439
|
setActiveComponent(null);
|
package/dist/pkg-index.mjs
CHANGED
|
@@ -5427,7 +5427,7 @@ function Sidebar({ isOpen, onToggle, childrens }) {
|
|
|
5427
5427
|
const Icon = item.icon;
|
|
5428
5428
|
const handleClick = () => {
|
|
5429
5429
|
if (item.component) {
|
|
5430
|
-
router.push("/
|
|
5430
|
+
router.push("/", void 0, { shallow: true });
|
|
5431
5431
|
setActiveComponent(item.component);
|
|
5432
5432
|
} else if (item.path) {
|
|
5433
5433
|
setActiveComponent(null);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flowcore-fn",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"main": "dist/pkg-index.js",
|
|
5
5
|
"module": "dist/pkg-index.mjs",
|
|
6
6
|
"files": [
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"dev": "next dev",
|
|
11
11
|
"build": "next build",
|
|
12
|
-
"build:pkg": "tsup"
|
|
12
|
+
"build:pkg": "tsup",
|
|
13
|
+
"prefix": "node prefix-tailwind.js"
|
|
13
14
|
},
|
|
14
15
|
"peerDependencies": {
|
|
15
16
|
"next": ">=14.0.0",
|
|
@@ -17,6 +18,10 @@
|
|
|
17
18
|
"react-dom": ">=18.0.0"
|
|
18
19
|
},
|
|
19
20
|
"devDependencies": {
|
|
21
|
+
"@babel/generator": "^8.0.0",
|
|
22
|
+
"@babel/parser": "^8.0.4",
|
|
23
|
+
"@babel/traverse": "^8.0.4",
|
|
24
|
+
"@babel/types": "^8.0.4",
|
|
20
25
|
"@tailwindcss/postcss": "^4",
|
|
21
26
|
"@types/node": "^20",
|
|
22
27
|
"@types/react": "^19",
|
|
@@ -24,6 +29,7 @@
|
|
|
24
29
|
"esbuild-plugin-postcss2": "^0.1.2",
|
|
25
30
|
"eslint": "^9",
|
|
26
31
|
"eslint-config-next": "16.2.10",
|
|
32
|
+
"jscodeshift": "^17.4.0",
|
|
27
33
|
"next": "^16.2.10",
|
|
28
34
|
"postcss-prefix-selector": "^2.1.1",
|
|
29
35
|
"react": "^19.2.4",
|
|
@@ -36,6 +42,7 @@
|
|
|
36
42
|
"@remixicon/react": "^4.9.0",
|
|
37
43
|
"axios": "^1.18.1",
|
|
38
44
|
"lucide-react": "^1.24.0",
|
|
45
|
+
"react-shadow": "^20.6.0",
|
|
39
46
|
"remixicon-react": "^1.0.0"
|
|
40
47
|
}
|
|
41
48
|
}
|