carbon-components-svelte/types
Jonathan Quintin 7ddbf17cbb
feat(progress-bar): add status prop (#1560)
* ProgressBar status feature added

* ProgressBar: Removed the css variables and use carbon-css instead.
The way of assigning the ProgressBar value has change. It is now a style
variable and scale-x is calculated in the css. This way prevent the
override of carbon css.

* Removed an unessacery span.

* Removed an unnecessary span.

* Added the status for the ProgressBarUx

* Remove `style css` and update docs.

* - Fixed the `capped` variable for more readability
- Updated docs `label` and `helperText`
- Updated docs and css

* fix: finished/error states cannot be indeterminate

* Run "yarn build:css"

* Re-run "yarn build:docs"

* test(progress-bar): assert `status` prop

* chore: add aria-busy and set valuenow to 0 when not active

---------

Co-authored-by: Eric Liu <ericyl.us@gmail.com>
Co-authored-by: Enrico Sacchetti <enrico@theetrain.ca>
2023-02-19 12:34:41 -05:00
..
Accordion feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
AspectRatio fix(aspect-ratio): add missing "2x3" ratio value (#1276) 2022-04-30 09:14:18 -07:00
Breadcrumb feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
Breakpoint chore: improve lint, release workflows (#1627) 2023-01-15 15:34:09 -08:00
Button chore(types)!: remove sveltekit: attributes from types (#1581) 2022-12-11 15:58:19 -05:00
Checkbox fix(types): add missing $$restProps for Checkbox, Filename, FluidForm (#1655) 2023-02-11 13:50:01 -05:00
CodeSnippet chore(code-snippet): preserve custom copy event type (#1375) 2022-06-27 05:44:05 -07:00
ComboBox breaking(types): type arrays as read-only (#1335) 2022-06-05 13:25:43 -07:00
ComposedModal fix(types): narrow dispatched events without detail to use null instead of any (#1295) 2022-05-13 09:56:21 -07:00
ContentSwitcher feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
ContextMenu breaking(types): type arrays as read-only (#1335) 2022-06-05 13:25:43 -07:00
CopyButton fix: CopyButton text prop and Dropdown selectedId prop should be required (#1311) 2022-05-22 12:39:53 -07:00
DataTable fix(toolbar-search): forward keyup, keydown, paste events to Search (#1490) 2022-09-21 08:25:27 -07:00
DatePicker feat: forward paste event to input/textarea elements (#1332) 2022-06-02 18:39:49 -07:00
Dropdown breaking(types): type arrays as read-only (#1335) 2022-06-05 13:25:43 -07:00
FileUploader fix(types): add missing $$restProps for Checkbox, Filename, FluidForm (#1655) 2023-02-11 13:50:01 -05:00
FluidForm fix(types): add missing $$restProps for Checkbox, Filename, FluidForm (#1655) 2023-02-11 13:50:01 -05:00
Form feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
FormGroup feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
FormItem feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
FormLabel feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
Grid feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
icons refactor: use icons from carbon-icons-svelte@11 (#1227) 2022-04-03 11:57:28 -07:00
ImageLoader feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
InlineLoading fix(types): narrow dispatched events without detail to use null instead of any (#1295) 2022-05-13 09:56:21 -07:00
Link chore(types)!: remove sveltekit: attributes from types (#1581) 2022-12-11 15:58:19 -05:00
ListBox feat: support item.disabled key for Dropdown, MultiSelect, ComboBox (#1328) 2022-06-02 17:56:30 -07:00
ListItem feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
Loading feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
LocalStorage feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
Modal fix(types): narrow dispatched events without detail to use null instead of any (#1295) 2022-05-13 09:56:21 -07:00
MultiSelect breaking(types): type arrays as read-only (#1335) 2022-06-05 13:25:43 -07:00
Notification feat(notification)!: replace iconDescription prop with statusIconDescription, closeButtonDescription (#1591) 2022-12-18 15:28:23 -08:00
NumberInput fix(number-input): forward keydown, keyup events (#1424) 2022-08-05 04:50:40 -07:00
OrderedList feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
OverflowMenu fix(overflow-menu): dispatch "close" event when clicking outside (#1546) 2022-12-07 20:25:47 -08:00
Pagination feat!: dispatch "change" event in Pagination, rename "change" to "update" in Select (#1497) 2022-12-13 10:22:17 -08:00
PaginationNav docs(pagination-nav): add change event docs (#1592) 2022-12-17 09:06:40 -05:00
Popover fix(popover): fire "click:outside" event when clicking sibling elements (#1570) 2022-12-07 20:10:45 -08:00
ProgressBar feat(progress-bar): add status prop (#1560) 2023-02-19 12:34:41 -05:00
ProgressIndicator feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
RadioButton feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
RadioButtonGroup feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
RecursiveList feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
Search fix(search): prop types should extend input attributes (#1523) 2022-10-13 22:04:32 -07:00
Select feat!: dispatch "change" event in Pagination, rename "change" to "update" in Select (#1497) 2022-12-13 10:22:17 -08:00
SkeletonPlaceholder feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
SkeletonText feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
Slider feat(slider): add fullWidth prop (#1354) 2022-06-18 12:47:10 -07:00
StructuredList feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
Tabs feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
Tag fix(types): narrow dispatched events without detail to use null instead of any (#1295) 2022-05-13 09:56:21 -07:00
TextArea feat: forward paste event to input/textarea elements (#1332) 2022-06-02 18:39:49 -07:00
TextInput feat: forward paste event to input/textarea elements (#1332) 2022-06-02 18:39:49 -07:00
Theme fix(theme): use @see tag for link in tokens prop description (#1309) 2022-05-18 19:28:38 -07:00
Tile chore(types)!: remove sveltekit: attributes from types (#1581) 2022-12-11 15:58:19 -05:00
TimePicker fix(time-picker): use native binding for value prop (#1344) 2022-06-12 08:09:43 -07:00
Toggle fix(toggle): add missing hideLabel prop (#1414) 2022-07-26 07:12:57 -07:00
Tooltip feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
TooltipDefinition feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
TooltipIcon feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
TreeView fix(tree-view)!: remove expanded property from TreeNode interface (#1631) 2023-01-17 20:55:46 -05:00
Truncate feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
UIShell chore(types)!: remove sveltekit: attributes from types (#1581) 2022-12-11 15:58:19 -05:00
UnorderedList feat(types): support sveltekit:prefetch, sveltekit:noscroll attributes in type definitions (#1234) 2022-04-09 14:13:56 -07:00
index.d.ts breaking(actions): move truncate action to src/Truncate (#1224) 2022-04-02 12:04:33 -07:00
README.md chore: change all ibm org references to carbon-design-system 2021-09-05 15:54:37 -07:00

types

The TypeScript definitions in this folder are auto-generated by sveld.

Do not edit these types directly. To add or update property types or definitions, update the JSDoc annotations in the component source code in the src folder.

Tests are located in the tests folder.