mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
feat: upgrade carbon-components to v10.56.0 (#1213)
* chore(deps-dev): upgrade carbon-components to v10.56.0 * feat(progress-bar): add kind prop * Run "yarn build:docs" * test(progress-bar): assert kind prop
This commit is contained in:
parent
21714d0e3a
commit
ade0557448
10 changed files with 71 additions and 35 deletions
|
@ -12,7 +12,7 @@
|
|||
"@sveltech/routify": "^1.9.9",
|
||||
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.33",
|
||||
"autoprefixer": "^10.2.3",
|
||||
"carbon-components": "10.54.0",
|
||||
"carbon-components": "10.56.0",
|
||||
"carbon-components-10.47": "npm:carbon-components@10.47",
|
||||
"carbon-components-svelte": "../",
|
||||
"carbon-icons-svelte": "^10.44.3",
|
||||
|
|
|
@ -8260,6 +8260,17 @@
|
|||
"constant": false,
|
||||
"reactive": false
|
||||
},
|
||||
{
|
||||
"name": "kind",
|
||||
"kind": "let",
|
||||
"description": "Specify the kind of progress bar",
|
||||
"type": "\"default\" | \"inline\" | \"indented\"",
|
||||
"value": "\"default\"",
|
||||
"isFunction": false,
|
||||
"isFunctionDeclaration": false,
|
||||
"constant": false,
|
||||
"reactive": false
|
||||
},
|
||||
{
|
||||
"name": "size",
|
||||
"kind": "let",
|
||||
|
|
|
@ -35,6 +35,16 @@ Use `hideLabel` to visually hide the label text.
|
|||
|
||||
<ProgressBar hideLabel value={40} labelText="Upload status" helperText="40 MB of 100 MB" />
|
||||
|
||||
### Inline variant
|
||||
|
||||
The inline variant visually hides the `helperText`.
|
||||
|
||||
<ProgressBar kind="inline" value={40} labelText="Upload status" helperText="40 MB of 100 MB" />
|
||||
|
||||
### Indented variant
|
||||
|
||||
<ProgressBar kind="indented" value={40} labelText="Upload status" helperText="40 MB of 100 MB" />
|
||||
|
||||
### UX example
|
||||
|
||||
This example shows how to animate the progress bar from 0 to 100% with start and end states.
|
||||
|
|
|
@ -114,6 +114,11 @@
|
|||
winston "^3.3.3"
|
||||
yargs "^16.1.1"
|
||||
|
||||
"@carbon/telemetry@0.1.0":
|
||||
version "0.1.0"
|
||||
resolved "https://registry.yarnpkg.com/@carbon/telemetry/-/telemetry-0.1.0.tgz#57b331cd5a855b4abbf55457456da8211624d879"
|
||||
integrity sha512-kNWt0bkgPwGW0i5h7HFuljbKRXPvIhsKbB+1tEURAYLXoJg9iJLF1eGvWN5iVoFCS2zje4GR3OGOsvvKVe7Hlg==
|
||||
|
||||
"@dabh/diagnostics@^2.0.2":
|
||||
version "2.0.2"
|
||||
resolved "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.2.tgz#290d08f7b381b8f94607dc8f471a12c675f9db31"
|
||||
|
@ -467,16 +472,16 @@ caniuse-lite@^1.0.30001173, caniuse-lite@^1.0.30001178:
|
|||
warning "^3.0.0"
|
||||
|
||||
carbon-components-svelte@../:
|
||||
version "0.59.0"
|
||||
version "0.62.2"
|
||||
dependencies:
|
||||
flatpickr "4.6.9"
|
||||
|
||||
carbon-components@10.54.0:
|
||||
version "10.54.0"
|
||||
resolved "https://registry.yarnpkg.com/carbon-components/-/carbon-components-10.54.0.tgz#f70d0a9fcc7e84f8fb00a45b6b9894d77155acce"
|
||||
integrity sha512-gl0b4wRG1E/ns02nG/M0FaNm4FCT91iTr1XFzqY+h1wFsjG1/2OOu7A6lth8Qtk0jsr//YZcB0MNjq8WFaFciw==
|
||||
carbon-components@10.56.0:
|
||||
version "10.56.0"
|
||||
resolved "https://registry.yarnpkg.com/carbon-components/-/carbon-components-10.56.0.tgz#bb5890f00f81cebcddfa2dbae4794477deb539f4"
|
||||
integrity sha512-GPLqHiu2SWvMxcQOi/CcgA/XA3aX/5HiEPSQjLwzjKAJsnkpzq043Jf7QwgLOVbTBzGSjFbFkJnE2lc73I2WBw==
|
||||
dependencies:
|
||||
"@carbon/telemetry" "0.0.0-alpha.6"
|
||||
"@carbon/telemetry" "0.1.0"
|
||||
flatpickr "4.6.1"
|
||||
lodash.debounce "^4.0.8"
|
||||
warning "^3.0.0"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue