carbon-components-svelte 0.64.2 → 0.64.3

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
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  <!-- ## Unreleased -->
9
9
 
10
+ ## [0.64.3](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.64.3) - 2022-05-29
11
+
12
+ **Fixes**
13
+
14
+ - active tab in `Tabs` should not steal focus if programmatically selected
15
+ - set title attribute in `CheckBox`, `MultiSelect`, `Dropdown`, `ComboBox` if label is truncated
16
+
17
+ **Refactor**
18
+
19
+ - refactor components to use `class:` directive instead of the class attribute
20
+
21
+ **Documentation**
22
+
23
+ - add `Tabs` example "Disabled tabs"
24
+
10
25
  ## [0.64.2](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.64.2) - 2022-05-25
11
26
 
12
27
  **Fixes**
package/README.md CHANGED
@@ -31,21 +31,14 @@ Other forms of documentation are auto-generated:
31
31
 
32
32
  Install `carbon-components-svelte` as a development dependency.
33
33
 
34
- **Yarn**
35
-
36
34
  ```sh
35
+ # Yarn
37
36
  yarn add -D carbon-components-svelte
38
- ```
39
37
 
40
- **NPM**
41
-
42
- ```sh
38
+ # npm
43
39
  npm i -D carbon-components-svelte
44
- ```
45
-
46
- **pnpm**
47
40
 
48
- ```sh
41
+ # pnpm
49
42
  pnpm i -D carbon-components-svelte
50
43
  ```
51
44
 
@@ -184,21 +177,14 @@ Import components from `carbon-components-svelte` in the `script` tag of your Sv
184
177
 
185
178
  [carbon-preprocess-svelte](https://github.com/carbon-design-system/carbon-preprocess-svelte) is a collection of Svelte preprocessors for Carbon.
186
179
 
187
- **Yarn**
188
-
189
180
  ```sh
181
+ # Yarn
190
182
  yarn add -D carbon-preprocess-svelte
191
- ```
192
183
 
193
- **NPM**
194
-
195
- ```sh
184
+ # npm
196
185
  npm i -D carbon-preprocess-svelte
197
- ```
198
-
199
- **pnpm**
200
186
 
201
- ```sh
187
+ # pnpm
202
188
  pnpm i -D carbon-preprocess-svelte
203
189
  ```
204
190