carbon-components-svelte 0.58.3 → 0.60.0
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 +65 -0
- package/css/.DS_Store +0 -0
- package/css/all.css +1 -1
- package/css/g10.css +1 -1
- package/css/g100.css +1 -1
- package/css/g80.css +1 -1
- package/css/g90.css +1 -1
- package/css/white.css +1 -1
- package/lib/index.js +1 -1
- package/lib/index.mjs +655 -507
- package/package.json +2 -2
- package/preprocess/api.json +2 -2
- package/src/DataTable/DataTable.svelte +1 -0
- package/src/DatePicker/DatePicker.svelte +22 -7
- package/src/FileUploader/FileUploader.svelte +40 -12
- package/src/FileUploader/FileUploaderButton.svelte +26 -4
- package/src/FileUploader/FileUploaderDropContainer.svelte +15 -5
- package/src/ImageLoader/ImageLoader.svelte +2 -2
- package/src/LocalStorage/LocalStorage.svelte +1 -1
- package/src/MultiSelect/MultiSelect.svelte +1 -1
- package/src/ProgressBar/ProgressBar.svelte +8 -0
- package/src/RadioButtonGroup/RadioButtonGroup.svelte +4 -1
- package/src/Search/Search.svelte +3 -3
- package/src/StructuredList/StructuredList.svelte +0 -1
- package/src/TextArea/TextArea.svelte +24 -10
- package/src/Tooltip/Tooltip.svelte +2 -2
- package/src/TooltipDefinition/TooltipDefinition.svelte +2 -2
- package/src/UIShell/HeaderSearch.svelte +3 -3
- package/src/UIShell/SideNav/SideNav.svelte +3 -3
- package/types/FileUploader/FileUploader.svelte.d.ts +9 -3
- package/types/FileUploader/FileUploaderButton.svelte.d.ts +7 -1
- package/types/FileUploader/FileUploaderDropContainer.svelte.d.ts +9 -3
- package/types/ImageLoader/ImageLoader.svelte.d.ts +1 -1
- package/types/LocalStorage/LocalStorage.svelte.d.ts +1 -1
- package/types/MultiSelect/MultiSelect.svelte.d.ts +1 -1
- package/types/ProgressBar/ProgressBar.svelte.d.ts +6 -0
- package/types/RadioButtonGroup/RadioButtonGroup.svelte.d.ts +6 -0
- package/types/Search/Search.svelte.d.ts +2 -2
- package/types/TextArea/TextArea.svelte.d.ts +6 -0
- package/types/Tooltip/Tooltip.svelte.d.ts +2 -2
- package/types/TooltipDefinition/TooltipDefinition.svelte.d.ts +2 -2
- package/types/UIShell/HeaderSearch.svelte.d.ts +3 -3
- package/types/UIShell/SideNav/SideNav.svelte.d.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,71 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
<!-- ## Unreleased -->
|
|
9
9
|
|
|
10
|
+
## [0.60.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.60.0) - 2022-02-26
|
|
11
|
+
|
|
12
|
+
**Features**
|
|
13
|
+
|
|
14
|
+
- add `RadioButtonGroup` `hiddenLegend` prop to visually hide the legend
|
|
15
|
+
- add `ProgressBar` `size` prop to support small size variant
|
|
16
|
+
|
|
17
|
+
**Fixes**
|
|
18
|
+
|
|
19
|
+
- update `DatePicker` calendar instance if options change
|
|
20
|
+
|
|
21
|
+
**Refactor**
|
|
22
|
+
|
|
23
|
+
- remove `StructuredList` `overflow-y` style monkey patch
|
|
24
|
+
|
|
25
|
+
**Documentation**
|
|
26
|
+
|
|
27
|
+
- add `RadioButton` "Hidden legend" example
|
|
28
|
+
- add `ProgressBar` "Small size" example
|
|
29
|
+
|
|
30
|
+
**Housekeeping**
|
|
31
|
+
|
|
32
|
+
- upgrade `carbon-components` to v10.54.0
|
|
33
|
+
|
|
34
|
+
## [0.59.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.59.0) - 2022-02-21
|
|
35
|
+
|
|
36
|
+
**Features**
|
|
37
|
+
|
|
38
|
+
- add `maxCount` prop to `TextArea`
|
|
39
|
+
- add `disabled` prop to `FileUploader`
|
|
40
|
+
- add `files` prop to `FileUploaderDropContainer`
|
|
41
|
+
- add `files` prop to `FileUploaderButton`
|
|
42
|
+
|
|
43
|
+
**Fixes**
|
|
44
|
+
|
|
45
|
+
- change `add`, `change` events in `FileUploaderDropContainer` to dispatch `File[]` instead of `FileList`
|
|
46
|
+
- update `files` prop description in `FileUploader`
|
|
47
|
+
|
|
48
|
+
**Documentation**
|
|
49
|
+
|
|
50
|
+
- add `TextArea` "Maximum character count" example
|
|
51
|
+
- add `FileUploader` disabled state example
|
|
52
|
+
- add `FileUploader` "Clear files" example
|
|
53
|
+
- document `validateFiles` prop for `FileUploaderDropContainer`
|
|
54
|
+
- add descriptions for `FileUploaderButton`, `FileUploader` examples
|
|
55
|
+
|
|
56
|
+
**Housekeeping**
|
|
57
|
+
|
|
58
|
+
- upgrade `carbon-components` to v10.53.0
|
|
59
|
+
|
|
60
|
+
## [0.58.4](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.58.4) - 2022-02-21
|
|
61
|
+
|
|
62
|
+
**Fixes**
|
|
63
|
+
|
|
64
|
+
- dispatched events without a `detail` type should be `null` instead of `any`
|
|
65
|
+
- `FileUploader` `clearFiles` description should reflect that it's an accessor, not a prop
|
|
66
|
+
- `FileUploader` should correctly fire `add` and `remove` events
|
|
67
|
+
- `FileUploader` files should not be keyed by file name
|
|
68
|
+
- `FileUploader` change event detail signature should be `File[]`
|
|
69
|
+
- fix `DataTable` regression where sort icon indicators don't update
|
|
70
|
+
|
|
71
|
+
**Refactor**
|
|
72
|
+
|
|
73
|
+
- remove unnecessary JSDoc default type notation
|
|
74
|
+
|
|
10
75
|
## [0.58.3](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.58.3) - 2022-02-20
|
|
11
76
|
|
|
12
77
|
**Fixes**
|
package/css/.DS_Store
ADDED
|
Binary file
|