Skip to content

Commit 3145839

Browse files
committed
v0.15.0
1 parent 7f149c4 commit 3145839

File tree

4 files changed

+43
-3
lines changed

4 files changed

+43
-3
lines changed

CHANGELOG.md

+40
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,46 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- Selectable/expandable `DataTable`
1111

12+
## [0.15.0](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.15.0) - 2020-10-01
13+
14+
**Features**
15+
16+
- DataTableSkeleton: add `size` prop to support "compact", "small", "tall" row heights ([PR #279](https://github.com/IBM/carbon-components-svelte/pull/279), thanks [@albertms10](https://github.com/albertms10))
17+
18+
- HeaderPanelLink: forward click event ([PR #286](https://github.com/IBM/carbon-components-svelte/pull/286), thanks [@weaseldotro](https://github.com/weaseldotro))
19+
20+
- FluidForm: add `FluidForm` component and support fluid variants for `TextInput`, `PasswordInput` ([PR #293](https://github.com/IBM/carbon-components-svelte/pull/293), thanks [@josefaidt](https://github.com/josefaidt))
21+
22+
- UI Shell: add `ref` prop to interactive (i.e. anchor links, buttons) UI Shell elements ([PR #297](https://github.com/IBM/carbon-components-svelte/pull/297), thanks [@josefaidt](https://github.com/josefaidt))
23+
24+
**Fixes**
25+
26+
- Slider: attach mousemove/touch events to document body, not slider input ([issue #288](https://github.com/IBM/carbon-components-svelte/issues/288))
27+
28+
- Slider: `value` prop type should be a `number`, not a `string` ([issue #289](https://github.com/IBM/carbon-components-svelte/issues/289))
29+
30+
- Slider: input value should not update if `disabled` is `true`
31+
32+
- Slider: `change` event should only be dispatched if the value changes
33+
34+
- UI Shell: correctly bind `ref` prop in `HeaderGlobalAction` ([PR #297](https://github.com/IBM/carbon-components-svelte/pull/297), thanks [@josefaidt](https://github.com/josefaidt))
35+
36+
- export `DatePickerSkeleton`, `FileUploaderSkeleton` components
37+
38+
**Breaking Changes**
39+
40+
- DataTableSkeleton: `compact` prop is removed in favor of `size="compact"`
41+
42+
**Dependencies**
43+
44+
- upgrade `carbon-icons-svelte` to version ^10.17.0
45+
46+
**Housekeeping**
47+
48+
- prettier: enable `svelteBracketNewLine` for improved readability ([PR #281](https://github.com/IBM/carbon-components-svelte/pull/281), thanks [@josefaidt](https://github.com/josefaidt))
49+
50+
- git: add husky, lint-staged to development workflow ([PR #295](https://github.com/IBM/carbon-components-svelte/pull/295), thanks [@josefaidt](https://github.com/josefaidt))
51+
1252
## [0.14.0](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.14.0) - 2020-09-23
1353

1454
**Features**

COMPONENT_INDEX.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Component Index
22

3-
> 147 components exported from carbon-components-svelte 0.14.0
3+
> 147 components exported from carbon-components-svelte 0.15.0
44
55
- Accordion
66
- [AccordionSkeleton](#accordionskeleton)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "carbon-components-svelte",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"license": "Apache-2.0",
55
"description": "Svelte implementation of the Carbon Design System",
66
"svelte": "./src/index.js",

types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for carbon-components-svelte 0.14.0
1+
// Type definitions for carbon-components-svelte 0.15.0
22
// Project: https://github.com/IBM/carbon-components-svelte
33

44
export class CarbonSvelteComponent {

0 commit comments

Comments
 (0)