Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .changeset/good-glasses-design.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
'shadcn-svelte-1': patch
'svelteux-2': patch
'skeleton-3': patch
'skeleton4': patch
'standalone': patch
'layerchart': patch
'daisyui-5': patch
'docs': patch
---

Removed lodash-es dependency
10 changes: 5 additions & 5 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
"@iconify-json/lucide": "^1.2.81",
"@iconify-json/simple-icons": "^1.2.63",
"@iconify-json/vscode-icons": "^1.2.37",
"@layerstack/svelte-actions": "1.0.1-next.14",
"@layerstack/svelte-state": "0.1.0-next.19",
"@layerstack/svelte-table": "1.0.1-next.16",
"@layerstack/tailwind": "2.0.0-next.19",
"@layerstack/utils": "2.0.0-next.16",
"@layerstack/svelte-actions": "1.0.1-next.18",
"@layerstack/svelte-state": "0.1.0-next.23",
"@layerstack/svelte-table": "1.0.1-next.18",
"@layerstack/tailwind": "2.0.0-next.21",
"@layerstack/utils": "2.0.0-next.18",
"@playwright/test": "^1.57.0",
"@shikijs/transformers": "^3.20.0",
"@sveltejs/adapter-cloudflare": "^7.2.4",
Expand Down
4 changes: 2 additions & 2 deletions docs/scripts/stackblitz-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
},
"devDependencies": {
"@iconify-json/lucide": "^1.2.71",
"@layerstack/tailwind": "2.0.0-next.19",
"@layerstack/utils": "2.0.0-next.16",
"@layerstack/tailwind": "2.0.0-next.21",
"@layerstack/utils": "2.0.0-next.18",
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/kit": "^2.15.3",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/svelte-ux-2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lint": "prettier --check ."
},
"devDependencies": {
"@layerstack/tailwind": "2.0.0-next.18",
"@layerstack/tailwind": "2.0.0-next.21",
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/kit": "^2.49.2",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
Expand Down
10 changes: 4 additions & 6 deletions packages/layerchart/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
"@types/d3-scale-chromatic": "^3.1.0",
"@types/d3-shape": "^3.1.7",
"@types/d3-time": "^3.0.4",
"@types/lodash-es": "^4.17.12",
"@types/shapefile": "^0.6.4",
"@types/topojson-client": "^3.1.5",
"@types/topojson-simplify": "^3.0.3",
Expand Down Expand Up @@ -84,10 +83,10 @@
"type": "module",
"dependencies": {
"@dagrejs/dagre": "^1.1.8",
"@layerstack/svelte-actions": "1.0.1-next.14",
"@layerstack/svelte-state": "0.1.0-next.19",
"@layerstack/tailwind": "2.0.0-next.17",
"@layerstack/utils": "2.0.0-next.14",
"@layerstack/svelte-actions": "1.0.1-next.18",
"@layerstack/svelte-state": "0.1.0-next.23",
"@layerstack/tailwind": "2.0.0-next.21",
"@layerstack/utils": "2.0.0-next.18",
"d3-array": "^3.2.4",
"d3-color": "^3.1.0",
"d3-delaunay": "^6.0.4",
Expand All @@ -107,7 +106,6 @@
"d3-shape": "^3.2.0",
"d3-tile": "^1.0.0",
"d3-time": "^3.1.0",
"lodash-es": "^4.17.21",
"memoize": "^10.2.0",
"runed": "^0.37.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/layerchart/src/lib/components/Area.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
import type { CurveFactory } from 'd3-shape';
import { max, min } from 'd3-array';
import { interpolatePath } from 'd3-interpolate-path';
import { merge } from 'lodash-es';
import { merge } from '@layerstack/utils';

import { getLayerContext } from '$lib/contexts/layer.js';
import Spline from './Spline.svelte';
Expand Down
2 changes: 1 addition & 1 deletion packages/layerchart/src/lib/components/Circle.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

<script lang="ts">
import { cls } from '@layerstack/tailwind';
import { merge } from 'lodash-es';
import { merge } from '@layerstack/utils';

import { getLayerContext } from '$lib/contexts/layer.js';
import { createMotion, type MotionProp } from '$lib/utils/motion.svelte.js';
Expand Down
2 changes: 1 addition & 1 deletion packages/layerchart/src/lib/components/Ellipse.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

<script lang="ts">
import { cls } from '@layerstack/tailwind';
import { merge } from 'lodash-es';
import { merge } from '@layerstack/utils';

import { getLayerContext } from '$lib/contexts/layer.js';
import { createMotion, type MotionProp } from '$lib/utils/motion.svelte.js';
Expand Down
2 changes: 1 addition & 1 deletion packages/layerchart/src/lib/components/Line.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@

<script lang="ts">
import { cls } from '@layerstack/tailwind';
import { merge } from 'lodash-es';
import { merge } from '@layerstack/utils';

import { registerCanvasComponent } from './layers/Canvas.svelte';
import { getLayerContext } from '$lib/contexts/layer.js';
Expand Down
2 changes: 1 addition & 1 deletion packages/layerchart/src/lib/components/Path.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<script lang="ts">
import { draw as _drawTransition } from 'svelte/transition';
import { cubicInOut } from 'svelte/easing';
import { merge } from 'lodash-es';
import { merge } from '@layerstack/utils';

import { interpolatePath } from 'd3-interpolate-path';
import { cls } from '@layerstack/tailwind';
Expand Down
2 changes: 1 addition & 1 deletion packages/layerchart/src/lib/components/Polygon.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
<script lang="ts">
import type { SVGAttributes } from 'svelte/elements';
import { cls } from '@layerstack/tailwind';
import { merge } from 'lodash-es';
import { merge } from '@layerstack/utils';
import { interpolatePath } from 'd3-interpolate-path';

import { getLayerContext } from '$lib/contexts/layer.js';
Expand Down
2 changes: 1 addition & 1 deletion packages/layerchart/src/lib/components/Rect.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

<script lang="ts">
import { cls } from '@layerstack/tailwind';
import { merge } from 'lodash-es';
import { merge } from '@layerstack/utils';

import { getLayerContext } from '$lib/contexts/layer.js';
import { registerCanvasComponent } from './layers/Canvas.svelte';
Expand Down
2 changes: 1 addition & 1 deletion packages/layerchart/src/lib/components/Text.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@

<script lang="ts">
import { cls } from '@layerstack/tailwind';
import { merge } from 'lodash-es';
import { merge } from '@layerstack/utils';

import { getLayerContext } from '$lib/contexts/layer.js';
import { registerCanvasComponent } from './layers/Canvas.svelte';
Expand Down
2 changes: 1 addition & 1 deletion packages/layerchart/src/lib/utils/common.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Component, ComponentProps } from 'svelte';
import { get } from 'lodash-es';
import { get } from '@layerstack/utils';

import type Chart from '../components/Chart.svelte';
import type { SimplifiedChartProps } from '$lib/components/charts/types.js';
Expand Down
Loading