@storybook/addon-svelte-csf 2.0.0 → 2.0.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v2.0.2 (Sun Apr 17 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Fix names with special char at end [#55](https://github.com/storybookjs/addon-svelte-csf/pull/55) ([@j3rem1e](https://github.com/j3rem1e))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jérémie ([@j3rem1e](https://github.com/j3rem1e))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v2.0.1 (Fri Apr 08 2022)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- Remove knobs references [#49](https://github.com/storybookjs/addon-svelte-csf/pull/49) ([@j3rem1e](https://github.com/j3rem1e))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Jérémie ([@j3rem1e](https://github.com/j3rem1e))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v2.0.0 (Fri Apr 08 2022)
|
|
2
26
|
|
|
3
27
|
#### 💥 Breaking Change
|
|
@@ -8,6 +8,11 @@ describe('extract-id', function () {
|
|
|
8
8
|
name: 'Name with spaces'
|
|
9
9
|
})).toBe('NameWithSpaces');
|
|
10
10
|
});
|
|
11
|
+
test('name with parenthesis', function () {
|
|
12
|
+
expect((0, _extractId.extractId)({
|
|
13
|
+
name: 'Name with (parenthesis)'
|
|
14
|
+
})).toBe('NameWithParenthesis');
|
|
15
|
+
});
|
|
11
16
|
test('duplicates id', function () {
|
|
12
17
|
expect((0, _extractId.extractId)({
|
|
13
18
|
name: 'Button'
|
|
@@ -5,6 +5,11 @@ describe('extract-id', function () {
|
|
|
5
5
|
name: 'Name with spaces'
|
|
6
6
|
})).toBe('NameWithSpaces');
|
|
7
7
|
});
|
|
8
|
+
test('name with parenthesis', function () {
|
|
9
|
+
expect(extractId({
|
|
10
|
+
name: 'Name with (parenthesis)'
|
|
11
|
+
})).toBe('NameWithParenthesis');
|
|
12
|
+
});
|
|
8
13
|
test('duplicates id', function () {
|
|
9
14
|
expect(extractId({
|
|
10
15
|
name: 'Button'
|