Skip to content

Commit cba20e2

Browse files
committed
[docs](docs): changelog for version 0.15.0
1 parent eb9fe98 commit cba20e2

File tree

2 files changed

+65
-0
lines changed

2 files changed

+65
-0
lines changed

apps/docs/src/lib/components/Sidebar.svelte

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
</h3>
7575
{#if sidebar[0].expand}
7676
<ul transition:fly|local={{ y: -20, duration: 150 }}>
77+
<li><a href={`${base}/changelog/v0-15-0`}>Version 0.15.0</a></li>
7778
<li><a href={`${base}/changelog/v0-14-0`}>Version 0.14.0</a></li>
7879
<li><a href={`${base}/changelog/v0-13-0`}>Version 0.13.0</a></li>
7980
<li><a href={`${base}/changelog/v0-12-0`}>Version 0.12.0</a></li>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
---
2+
title: 'Version 0.15.0'
3+
order: 6
4+
release: https://github.com/svelteuidev/svelteui/releases/tag/0.15.0
5+
date: 'August 20th, 2023'
6+
---
7+
8+
<script>
9+
import { Demo, BlockquoteDemos, JsonInputDemos, MarkDemos, PasswordInputDemos } from '@svelteuidev/demos';
10+
import { MinorHeading } from '$lib/components';
11+
import { base } from '$app/paths';
12+
</script>
13+
14+
<svelte:head>
15+
<title>{title} - SvelteUI</title>
16+
</svelte:head>
17+
18+
<MinorHeading {title} {order} {release} {date} />
19+
20+
## Improvements
21+
22+
### _Components:_
23+
24+
## [JsonInput]({base}/core/json-input)
25+
26+
<Demo demo={JsonInputDemos.configurator} hideCode />
27+
28+
## [Blockquote]({base}/core/blockquote)
29+
30+
<Demo demo={BlockquoteDemos.usage} toggle={true} />
31+
32+
## [PasswordInput]({base}/core/password-input)
33+
34+
<Demo demo={PasswordInputDemos.configurator} hideCode />
35+
36+
## [Mark]({base}/core/mark)
37+
38+
<Demo demo={MarkDemos.usage} toggle={true} />
39+
40+
- Contributing and Code of conduct now available in Korean
41+
- Add slots for icons in all components that have them
42+
- Add slot to override `Modal` title
43+
- New props to change `Modal` transitions (`transition`, `transitionOptions`, `overlayTransition`, `overlayTransitionOptions`)
44+
- Set `fixed` to true as the default value in `AppShell`
45+
- Add new prop `insideLabelSize` to `Switch`
46+
47+
### _Docs:_
48+
49+
- Improve documentation regarding the controlled behaviour of `Tooltip`
50+
51+
## Bug fixes and improvements
52+
53+
- Fix `Installation` guide style in docs
54+
- Fix `createStyles` check for variants
55+
- Fix resize issue in `Modal` for smaller viewports
56+
- Fix `Menu` type export to allow typing `this` prop
57+
- Fix dependency cycle happening in `@svelteuidev/core`
58+
- Add missing `fontFamily` to some components
59+
- Add missing reactivity in `Box` when `css` prop changes
60+
- Fix broken `Collapse` animations when using Svelte 4
61+
- Fix missing interaction when clicking right section of `NativeSelect`
62+
- Fix `Menu` being cut when used inside a container
63+
- Fix `TextArea` bind:value propagation
64+
- Fix type errors for `Menu.Item` prop icon

0 commit comments

Comments
 (0)