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 +15 -0
- package/README.md +6 -20
- package/lib/index.js +1 -1
- package/lib/index.mjs +415 -318
- package/package.json +1 -1
- package/src/Accordion/AccordionSkeleton.svelte +3 -3
- package/src/Checkbox/Checkbox.svelte +6 -0
- package/src/DatePicker/DatePicker.svelte +5 -4
- package/src/Dropdown/Dropdown.svelte +1 -1
- package/src/FileUploader/FileUploaderButton.svelte +5 -1
- package/src/ListBox/ListBoxMenuItem.svelte +10 -1
- package/src/MultiSelect/MultiSelect.svelte +1 -1
- package/src/NumberInput/NumberInput.svelte +2 -1
- package/src/Select/Select.svelte +4 -2
- package/src/Tabs/Tab.svelte +1 -15
- package/src/Tabs/Tabs.svelte +10 -2
- package/src/TextInput/PasswordInput.svelte +9 -3
- package/src/TextInput/TextInput.svelte +4 -2
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
|
-
|
|
41
|
-
|
|
42
|
-
```sh
|
|
38
|
+
# npm
|
|
43
39
|
npm i -D carbon-components-svelte
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
**pnpm**
|
|
47
40
|
|
|
48
|
-
|
|
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
|
-
|
|
194
|
-
|
|
195
|
-
```sh
|
|
184
|
+
# npm
|
|
196
185
|
npm i -D carbon-preprocess-svelte
|
|
197
|
-
```
|
|
198
|
-
|
|
199
|
-
**pnpm**
|
|
200
186
|
|
|
201
|
-
|
|
187
|
+
# pnpm
|
|
202
188
|
pnpm i -D carbon-preprocess-svelte
|
|
203
189
|
```
|
|
204
190
|
|