Skip to content

Commit df3404b

Browse files
committed
v1.31.0
1 parent 9a46566 commit df3404b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+443
-105
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flowbite-svelte",
3-
"version": "1.30.1",
3+
"version": "1.31.0",
44
"description": "Flowbite components for Svelte",
55
"main": "dist/index.js",
66
"author": {
@@ -915,4 +915,4 @@
915915
},
916916
"./package.json": "./package.json"
917917
}
918-
}
918+
}

src/lib/command-palette/CommandPalette.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
@component
195195
[Go to docs](https://flowbite-svelte.com/)
196196
## Type
197-
[CommandPaletteProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2312)
197+
[CommandPaletteProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2313)
198198
## Props
199199
@prop open = $bindable(false)
200200
@prop items = []

src/lib/kanban/KanbanCard.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
@component
4848
[Go to docs](https://flowbite-svelte.com/)
4949
## Type
50-
[KanbanCardProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2229)
50+
[KanbanCardProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2230)
5151
## Props
5252
@prop card
5353
@prop isDragging = false

src/lib/scroll-spy/ScrollSpy.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@
258258
@component
259259
[Go to docs](https://flowbite-svelte.com/)
260260
## Type
261-
[ScrollSpyProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2327)
261+
[ScrollSpyProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2328)
262262
## Props
263263
@prop items
264264
@prop position = "top"

src/lib/split-pane/Divider.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
@component
3838
[Go to docs](https://flowbite-svelte.com/)
3939
## Type
40-
[DividerProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2258)
40+
[DividerProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2259)
4141
## Props
4242
@prop direction
4343
@prop index

src/lib/split-pane/Pane.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
@component
4848
[Go to docs](https://flowbite-svelte.com/)
4949
## Type
50-
[PaneProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2252)
50+
[PaneProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2253)
5151
## Props
5252
@prop children
5353
@prop class: className = ""

src/lib/split-pane/SplitPane.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@
385385
@component
386386
[Go to docs](https://flowbite-svelte.com/)
387387
## Type
388-
[SplitPaneProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2238)
388+
[SplitPaneProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2239)
389389
## Props
390390
@prop direction = "horizontal"
391391
@prop minSize = 100

src/lib/timeline/Timeline.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
@component
2222
[Go to docs](https://flowbite-svelte.com/)
2323
## Type
24-
[TimelineProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1811)
24+
[TimelineProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1953)
2525
## Props
2626
@prop children
2727
@prop order = "default"
2828
@prop class: className
2929
@prop ...restProps
30-
-->
30+
-->

src/lib/timeline/TimelineItem.svelte

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
<script lang="ts">
32
import { getContext, untrack } from "svelte";
43
import { timelineItem, type TimelineVariants } from "./theme";
@@ -48,7 +47,6 @@
4847
connector: connectorClass
4948
});
5049
51-
5250
const theme = $derived(getTheme("timelineItem"));
5351
let order = getContext<TimelineVariants["order"]>("order");
5452
@@ -146,6 +144,7 @@
146144
@prop isLast = false
147145
@prop svgClass
148146
@prop liClass
147+
@prop defaultDivClass
149148
@prop divClass
150149
@prop timeClass
151150
@prop h3Class

0 commit comments

Comments
 (0)