@lobb-js/studio 0.28.1 → 0.28.2
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/components/dataTable/dataTable.svelte +1 -1
- package/dist/components/dataTable/filter.svelte +1 -1
- package/dist/components/dataTable/sort.svelte +1 -1
- package/dist/components/dataTable/table.svelte +1 -1
- package/dist/components/workflowEditor.svelte +1 -1
- package/dist/utils.js +1 -1
- package/package.json +6 -6
- package/src/lib/components/dataTable/dataTable.svelte +1 -1
- package/src/lib/components/dataTable/filter.svelte +1 -1
- package/src/lib/components/dataTable/sort.svelte +1 -1
- package/src/lib/components/dataTable/table.svelte +1 -1
- package/src/lib/components/workflowEditor.svelte +1 -1
- package/src/lib/utils.ts +1 -1
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
CircleOff,
|
|
53
53
|
} from "lucide-svelte";
|
|
54
54
|
import Checkbox from "../ui/checkbox/checkbox.svelte";
|
|
55
|
-
import { orderBy } from "lodash";
|
|
55
|
+
import { orderBy } from "lodash-es";
|
|
56
56
|
import type { Snippet } from "svelte";
|
|
57
57
|
import Button from "../ui/button/button.svelte";
|
|
58
58
|
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
import { location } from "@wjfe/n-savant";
|
|
21
21
|
import { Edit, Plus } from "lucide-svelte";
|
|
22
22
|
import { toast } from "svelte-sonner";
|
|
23
|
-
import { isEqual } from "lodash";
|
|
23
|
+
import { isEqual } from "lodash-es";
|
|
24
24
|
|
|
25
25
|
interface Props {
|
|
26
26
|
workflow: WorkflowEntry;
|
package/dist/utils.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobb-js/studio",
|
|
3
3
|
"license": "UNLICENSED",
|
|
4
|
-
"version": "0.28.
|
|
4
|
+
"version": "0.28.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"postpublish": "./scripts/postpublish.sh"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@lobb-js/core": "^0.31.
|
|
43
|
+
"@lobb-js/core": "^0.31.9",
|
|
44
44
|
"@chromatic-com/storybook": "^4.1.2",
|
|
45
45
|
"@storybook/addon-a11y": "^10.0.1",
|
|
46
46
|
"@storybook/addon-docs": "^10.0.1",
|
|
@@ -50,7 +50,6 @@
|
|
|
50
50
|
"@sveltejs/package": "^2.5.7",
|
|
51
51
|
"@sveltejs/vite-plugin-svelte": "6.2.1",
|
|
52
52
|
"@tsconfig/svelte": "^5.0.6",
|
|
53
|
-
"@types/lodash": "^4.17.17",
|
|
54
53
|
"@types/mustache": "^4.2.6",
|
|
55
54
|
"@types/node": "^24.10.1",
|
|
56
55
|
"@types/qs": "^6.9.18",
|
|
@@ -67,7 +66,8 @@
|
|
|
67
66
|
"tw-animate-css": "^1.4.0",
|
|
68
67
|
"typescript": "~5.9.3",
|
|
69
68
|
"vite": "6.3.3",
|
|
70
|
-
"vitest": "^4.0.5"
|
|
69
|
+
"vitest": "^4.0.5",
|
|
70
|
+
"@types/lodash-es": "^4.17.12"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
73
|
"svelte": "^5.0.0",
|
|
@@ -101,7 +101,6 @@
|
|
|
101
101
|
"fuse.js": "^7.3.0",
|
|
102
102
|
"javascript-time-ago": "^2.6.4",
|
|
103
103
|
"json-stable-stringify": "^1.3.0",
|
|
104
|
-
"lodash": "^4.17.21",
|
|
105
104
|
"lucide-svelte": "^0.488.0",
|
|
106
105
|
"mode-watcher": "^0.5.1",
|
|
107
106
|
"mustache": "^4.2.0",
|
|
@@ -109,6 +108,7 @@
|
|
|
109
108
|
"svelte-portal": "^2.2.1",
|
|
110
109
|
"svelte-sonner": "^0.3.28",
|
|
111
110
|
"tailwind-merge": "^3.4.0",
|
|
112
|
-
"tailwind-variants": "^3.2.2"
|
|
111
|
+
"tailwind-variants": "^3.2.2",
|
|
112
|
+
"lodash-es": "^4.17.21"
|
|
113
113
|
}
|
|
114
114
|
}
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
CircleOff,
|
|
53
53
|
} from "lucide-svelte";
|
|
54
54
|
import Checkbox from "../ui/checkbox/checkbox.svelte";
|
|
55
|
-
import { orderBy } from "lodash";
|
|
55
|
+
import { orderBy } from "lodash-es";
|
|
56
56
|
import type { Snippet } from "svelte";
|
|
57
57
|
import Button from "../ui/button/button.svelte";
|
|
58
58
|
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
import { location } from "@wjfe/n-savant";
|
|
21
21
|
import { Edit, Plus } from "lucide-svelte";
|
|
22
22
|
import { toast } from "svelte-sonner";
|
|
23
|
-
import { isEqual } from "lodash";
|
|
23
|
+
import { isEqual } from "lodash-es";
|
|
24
24
|
|
|
25
25
|
interface Props {
|
|
26
26
|
workflow: WorkflowEntry;
|